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

52621 строка
1.3 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,
  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. "avian"
  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. "avian"
  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: ["avian"]
  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: ["monster-hunter"]
  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: ["avian"]
  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. }
  2007. //species
  2008. function getSpeciesInfo(speciesList) {
  2009. let result = new Set();
  2010. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2011. result.add(entry)
  2012. });
  2013. return Array.from(result);
  2014. };
  2015. function getSpeciesInfoHelper(species) {
  2016. if (!speciesData[species]) {
  2017. console.warn(species + " doesn't exist");
  2018. return [];
  2019. }
  2020. if (speciesData[species].parents) {
  2021. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2022. } else {
  2023. return [species];
  2024. }
  2025. }
  2026. characterMakers.push(() => makeCharacter(
  2027. {
  2028. name: "Fen",
  2029. species: ["crux"],
  2030. description: {
  2031. title: "Bio",
  2032. text: "Very furry. Sheds on everything."
  2033. },
  2034. tags: [
  2035. "anthro",
  2036. "goo"
  2037. ]
  2038. },
  2039. {
  2040. front: {
  2041. height: math.unit(12, "feet"),
  2042. weight: math.unit(2400, "lb"),
  2043. name: "Front",
  2044. image: {
  2045. source: "./media/characters/fen/front.svg",
  2046. extra: 1804/1562,
  2047. bottom: 205/2009
  2048. },
  2049. extraAttributes: {
  2050. pawSize: {
  2051. name: "Paw Size",
  2052. power: 2,
  2053. type: "area",
  2054. base: math.unit(0.35, "m^2")
  2055. }
  2056. }
  2057. },
  2058. diving: {
  2059. height: math.unit(4.9, "meters"),
  2060. weight: math.unit(2400, "lb"),
  2061. name: "Diving",
  2062. image: {
  2063. source: "./media/characters/fen/diving.svg"
  2064. }
  2065. },
  2066. goo: {
  2067. height: math.unit(12, "feet"),
  2068. weight: math.unit(3600, "lb"),
  2069. volume: math.unit(1000, "liters"),
  2070. preyCapacity: math.unit(6, "people"),
  2071. name: "Goo",
  2072. image: {
  2073. source: "./media/characters/fen/goo.svg",
  2074. extra: 1307/1071,
  2075. bottom: 134/1441
  2076. }
  2077. },
  2078. maw: {
  2079. height: math.unit(5.03, "feet"),
  2080. name: "Maw",
  2081. image: {
  2082. source: "./media/characters/fen/maw.svg"
  2083. }
  2084. },
  2085. gooCeiling: {
  2086. height: math.unit(6.6, "feet"),
  2087. weight: math.unit(3000, "lb"),
  2088. volume: math.unit(1000, "liters"),
  2089. preyCapacity: math.unit(6, "people"),
  2090. name: "Goo (Ceiling)",
  2091. image: {
  2092. source: "./media/characters/fen/goo-ceiling.svg"
  2093. }
  2094. },
  2095. paw: {
  2096. height: math.unit(3.77, "feet"),
  2097. name: "Paw",
  2098. image: {
  2099. source: "./media/characters/fen/paw.svg"
  2100. },
  2101. extraAttributes: {
  2102. "toeSize": {
  2103. name: "Toe Size",
  2104. power: 2,
  2105. type: "area",
  2106. base: math.unit(0.02875, "m^2")
  2107. },
  2108. "pawSize": {
  2109. name: "Paw Size",
  2110. power: 2,
  2111. type: "area",
  2112. base: math.unit(0.378, "m^2")
  2113. },
  2114. }
  2115. },
  2116. tail: {
  2117. height: math.unit(12.1, "feet"),
  2118. name: "Tail",
  2119. image: {
  2120. source: "./media/characters/fen/tail.svg"
  2121. }
  2122. },
  2123. tailFull: {
  2124. height: math.unit(12.1, "feet"),
  2125. name: "Full Tail",
  2126. image: {
  2127. source: "./media/characters/fen/tail-full.svg"
  2128. }
  2129. },
  2130. back: {
  2131. height: math.unit(12, "feet"),
  2132. weight: math.unit(2400, "lb"),
  2133. name: "Back",
  2134. image: {
  2135. source: "./media/characters/fen/back.svg",
  2136. },
  2137. info: {
  2138. description: {
  2139. mode: "append",
  2140. text: "\n\nHe is not currently looking at you."
  2141. }
  2142. }
  2143. },
  2144. full: {
  2145. height: math.unit(1.85, "meter"),
  2146. weight: math.unit(3200, "lb"),
  2147. name: "Full",
  2148. image: {
  2149. source: "./media/characters/fen/full.svg",
  2150. extra: 1133/859,
  2151. bottom: 145/1278
  2152. },
  2153. info: {
  2154. description: {
  2155. mode: "append",
  2156. text: "\n\nMunch."
  2157. }
  2158. }
  2159. },
  2160. gooLounging: {
  2161. height: math.unit(4.53, "feet"),
  2162. weight: math.unit(3000, "lb"),
  2163. preyCapacity: math.unit(6, "people"),
  2164. name: "Goo (Lounging)",
  2165. image: {
  2166. source: "./media/characters/fen/goo-lounging.svg",
  2167. bottom: 116 / 613
  2168. }
  2169. },
  2170. lounging: {
  2171. height: math.unit(10.52, "feet"),
  2172. weight: math.unit(2400, "lb"),
  2173. name: "Lounging",
  2174. image: {
  2175. source: "./media/characters/fen/lounging.svg"
  2176. }
  2177. },
  2178. },
  2179. [
  2180. {
  2181. name: "Small",
  2182. height: math.unit(2.2428, "meter")
  2183. },
  2184. {
  2185. name: "Normal",
  2186. height: math.unit(12, "feet"),
  2187. default: true,
  2188. },
  2189. {
  2190. name: "Big",
  2191. height: math.unit(20, "feet")
  2192. },
  2193. {
  2194. name: "Minimacro",
  2195. height: math.unit(40, "feet"),
  2196. info: {
  2197. description: {
  2198. mode: "append",
  2199. text: "\n\nTOO DAMN BIG"
  2200. }
  2201. }
  2202. },
  2203. {
  2204. name: "Macro",
  2205. height: math.unit(100, "feet"),
  2206. info: {
  2207. description: {
  2208. mode: "append",
  2209. text: "\n\nTOO DAMN BIG"
  2210. }
  2211. }
  2212. },
  2213. {
  2214. name: "Megamacro",
  2215. height: math.unit(2, "miles")
  2216. },
  2217. {
  2218. name: "Gigamacro",
  2219. height: math.unit(10, "earths")
  2220. },
  2221. ]
  2222. ))
  2223. characterMakers.push(() => makeCharacter(
  2224. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2225. {
  2226. front: {
  2227. height: math.unit(183, "cm"),
  2228. weight: math.unit(80, "kg"),
  2229. name: "Front",
  2230. image: {
  2231. source: "./media/characters/sofia-fluttertail/front.svg",
  2232. bottom: 0.01,
  2233. extra: 2154 / 2081
  2234. }
  2235. },
  2236. frontAlt: {
  2237. height: math.unit(183, "cm"),
  2238. weight: math.unit(80, "kg"),
  2239. name: "Front (alt)",
  2240. image: {
  2241. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2242. }
  2243. },
  2244. back: {
  2245. height: math.unit(183, "cm"),
  2246. weight: math.unit(80, "kg"),
  2247. name: "Back",
  2248. image: {
  2249. source: "./media/characters/sofia-fluttertail/back.svg"
  2250. }
  2251. },
  2252. kneeling: {
  2253. height: math.unit(125, "cm"),
  2254. weight: math.unit(80, "kg"),
  2255. name: "Kneeling",
  2256. image: {
  2257. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2258. extra: 1033 / 977,
  2259. bottom: 23.7 / 1057
  2260. }
  2261. },
  2262. maw: {
  2263. height: math.unit(183 / 5, "cm"),
  2264. name: "Maw",
  2265. image: {
  2266. source: "./media/characters/sofia-fluttertail/maw.svg"
  2267. }
  2268. },
  2269. mawcloseup: {
  2270. height: math.unit(183 / 5 * 0.41, "cm"),
  2271. name: "Maw (Closeup)",
  2272. image: {
  2273. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2274. }
  2275. },
  2276. paws: {
  2277. height: math.unit(1.17, "feet"),
  2278. name: "Paws",
  2279. image: {
  2280. source: "./media/characters/sofia-fluttertail/paws.svg",
  2281. extra: 851 / 851,
  2282. bottom: 17 / 868
  2283. }
  2284. },
  2285. },
  2286. [
  2287. {
  2288. name: "Normal",
  2289. height: math.unit(1.83, "meter")
  2290. },
  2291. {
  2292. name: "Size Thief",
  2293. height: math.unit(18, "feet")
  2294. },
  2295. {
  2296. name: "50 Foot Collie",
  2297. height: math.unit(50, "feet")
  2298. },
  2299. {
  2300. name: "Macro",
  2301. height: math.unit(96, "feet"),
  2302. default: true
  2303. },
  2304. {
  2305. name: "Megamerger",
  2306. height: math.unit(650, "feet")
  2307. },
  2308. ]
  2309. ))
  2310. characterMakers.push(() => makeCharacter(
  2311. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2312. {
  2313. front: {
  2314. height: math.unit(7, "feet"),
  2315. weight: math.unit(100, "kg"),
  2316. name: "Front",
  2317. image: {
  2318. source: "./media/characters/march/front.svg",
  2319. extra: 1992/1851,
  2320. bottom: 39/2031
  2321. }
  2322. },
  2323. foot: {
  2324. height: math.unit(0.9, "feet"),
  2325. name: "Foot",
  2326. image: {
  2327. source: "./media/characters/march/foot.svg"
  2328. }
  2329. },
  2330. },
  2331. [
  2332. {
  2333. name: "Normal",
  2334. height: math.unit(7.9, "feet")
  2335. },
  2336. {
  2337. name: "Macro",
  2338. height: math.unit(220, "meters")
  2339. },
  2340. {
  2341. name: "Megamacro",
  2342. height: math.unit(2.98, "km"),
  2343. default: true
  2344. },
  2345. {
  2346. name: "Gigamacro",
  2347. height: math.unit(15963, "km")
  2348. },
  2349. {
  2350. name: "Teramacro",
  2351. height: math.unit(2980000000, "km")
  2352. },
  2353. {
  2354. name: "Examacro",
  2355. height: math.unit(250, "parsecs")
  2356. },
  2357. ]
  2358. ))
  2359. characterMakers.push(() => makeCharacter(
  2360. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2361. {
  2362. front: {
  2363. height: math.unit(6, "feet"),
  2364. weight: math.unit(60, "kg"),
  2365. name: "Front",
  2366. image: {
  2367. source: "./media/characters/noir/front.svg",
  2368. extra: 1,
  2369. bottom: 0.032
  2370. }
  2371. },
  2372. },
  2373. [
  2374. {
  2375. name: "Normal",
  2376. height: math.unit(6.6, "feet")
  2377. },
  2378. {
  2379. name: "Macro",
  2380. height: math.unit(500, "feet")
  2381. },
  2382. {
  2383. name: "Megamacro",
  2384. height: math.unit(2.5, "km"),
  2385. default: true
  2386. },
  2387. {
  2388. name: "Gigamacro",
  2389. height: math.unit(22500, "km")
  2390. },
  2391. {
  2392. name: "Teramacro",
  2393. height: math.unit(2500000000, "km")
  2394. },
  2395. {
  2396. name: "Examacro",
  2397. height: math.unit(200, "parsecs")
  2398. },
  2399. ]
  2400. ))
  2401. characterMakers.push(() => makeCharacter(
  2402. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2403. {
  2404. front: {
  2405. height: math.unit(7, "feet"),
  2406. weight: math.unit(100, "kg"),
  2407. name: "Front",
  2408. image: {
  2409. source: "./media/characters/okuri/front.svg",
  2410. extra: 739/665,
  2411. bottom: 39/778
  2412. }
  2413. },
  2414. back: {
  2415. height: math.unit(7, "feet"),
  2416. weight: math.unit(100, "kg"),
  2417. name: "Back",
  2418. image: {
  2419. source: "./media/characters/okuri/back.svg",
  2420. extra: 734/653,
  2421. bottom: 13/747
  2422. }
  2423. },
  2424. sitting: {
  2425. height: math.unit(2.95, "feet"),
  2426. weight: math.unit(100, "kg"),
  2427. name: "Sitting",
  2428. image: {
  2429. source: "./media/characters/okuri/sitting.svg",
  2430. extra: 370/318,
  2431. bottom: 99/469
  2432. }
  2433. },
  2434. },
  2435. [
  2436. {
  2437. name: "Smallest",
  2438. height: math.unit(5 + 2/12, "feet")
  2439. },
  2440. {
  2441. name: "Smaller",
  2442. height: math.unit(300, "feet")
  2443. },
  2444. {
  2445. name: "Small",
  2446. height: math.unit(1000, "feet")
  2447. },
  2448. {
  2449. name: "Macro",
  2450. height: math.unit(1, "mile")
  2451. },
  2452. {
  2453. name: "Mega Macro (Small)",
  2454. height: math.unit(20, "km")
  2455. },
  2456. {
  2457. name: "Mega Macro (Large)",
  2458. height: math.unit(600, "km")
  2459. },
  2460. {
  2461. name: "Giga Macro",
  2462. height: math.unit(10000, "km")
  2463. },
  2464. {
  2465. name: "Normal",
  2466. height: math.unit(577560, "km"),
  2467. default: true
  2468. },
  2469. {
  2470. name: "Large",
  2471. height: math.unit(4, "galaxies")
  2472. },
  2473. {
  2474. name: "Largest",
  2475. height: math.unit(15, "multiverses")
  2476. },
  2477. ]
  2478. ))
  2479. characterMakers.push(() => makeCharacter(
  2480. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2481. {
  2482. front: {
  2483. height: math.unit(7, "feet"),
  2484. weight: math.unit(100, "kg"),
  2485. name: "Front",
  2486. image: {
  2487. source: "./media/characters/manny/front.svg",
  2488. extra: 1,
  2489. bottom: 0.06
  2490. }
  2491. },
  2492. back: {
  2493. height: math.unit(7, "feet"),
  2494. weight: math.unit(100, "kg"),
  2495. name: "Back",
  2496. image: {
  2497. source: "./media/characters/manny/back.svg",
  2498. extra: 1,
  2499. bottom: 0.014
  2500. }
  2501. },
  2502. },
  2503. [
  2504. {
  2505. name: "Normal",
  2506. height: math.unit(7, "feet"),
  2507. },
  2508. {
  2509. name: "Macro",
  2510. height: math.unit(78, "feet"),
  2511. default: true
  2512. },
  2513. {
  2514. name: "Macro+",
  2515. height: math.unit(300, "meters")
  2516. },
  2517. {
  2518. name: "Macro++",
  2519. height: math.unit(2400, "meters")
  2520. },
  2521. {
  2522. name: "Megamacro",
  2523. height: math.unit(5167, "meters")
  2524. },
  2525. {
  2526. name: "Gigamacro",
  2527. height: math.unit(41769, "miles")
  2528. },
  2529. ]
  2530. ))
  2531. characterMakers.push(() => makeCharacter(
  2532. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2533. {
  2534. front: {
  2535. height: math.unit(7, "feet"),
  2536. weight: math.unit(100, "kg"),
  2537. name: "Front",
  2538. image: {
  2539. source: "./media/characters/adake/front-1.svg"
  2540. }
  2541. },
  2542. frontAlt: {
  2543. height: math.unit(7, "feet"),
  2544. weight: math.unit(100, "kg"),
  2545. name: "Front (Alt)",
  2546. image: {
  2547. source: "./media/characters/adake/front-2.svg",
  2548. extra: 1,
  2549. bottom: 0.01
  2550. }
  2551. },
  2552. back: {
  2553. height: math.unit(7, "feet"),
  2554. weight: math.unit(100, "kg"),
  2555. name: "Back",
  2556. image: {
  2557. source: "./media/characters/adake/back.svg",
  2558. }
  2559. },
  2560. kneel: {
  2561. height: math.unit(5.385, "feet"),
  2562. weight: math.unit(100, "kg"),
  2563. name: "Kneeling",
  2564. image: {
  2565. source: "./media/characters/adake/kneel.svg",
  2566. bottom: 0.052
  2567. }
  2568. },
  2569. },
  2570. [
  2571. {
  2572. name: "Normal",
  2573. height: math.unit(7, "feet"),
  2574. },
  2575. {
  2576. name: "Macro",
  2577. height: math.unit(78, "feet"),
  2578. default: true
  2579. },
  2580. {
  2581. name: "Macro+",
  2582. height: math.unit(300, "meters")
  2583. },
  2584. {
  2585. name: "Macro++",
  2586. height: math.unit(2400, "meters")
  2587. },
  2588. {
  2589. name: "Megamacro",
  2590. height: math.unit(5167, "meters")
  2591. },
  2592. {
  2593. name: "Gigamacro",
  2594. height: math.unit(41769, "miles")
  2595. },
  2596. ]
  2597. ))
  2598. characterMakers.push(() => makeCharacter(
  2599. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2600. {
  2601. front: {
  2602. height: math.unit(1.65, "meters"),
  2603. weight: math.unit(50, "kg"),
  2604. name: "Front",
  2605. image: {
  2606. source: "./media/characters/elijah/front.svg",
  2607. extra: 858 / 830,
  2608. bottom: 95.5 / 953.8559
  2609. }
  2610. },
  2611. back: {
  2612. height: math.unit(1.65, "meters"),
  2613. weight: math.unit(50, "kg"),
  2614. name: "Back",
  2615. image: {
  2616. source: "./media/characters/elijah/back.svg",
  2617. extra: 895 / 850,
  2618. bottom: 5.3 / 897.956
  2619. }
  2620. },
  2621. frontNsfw: {
  2622. height: math.unit(1.65, "meters"),
  2623. weight: math.unit(50, "kg"),
  2624. name: "Front (NSFW)",
  2625. image: {
  2626. source: "./media/characters/elijah/front-nsfw.svg",
  2627. extra: 858 / 830,
  2628. bottom: 95.5 / 953.8559
  2629. }
  2630. },
  2631. backNsfw: {
  2632. height: math.unit(1.65, "meters"),
  2633. weight: math.unit(50, "kg"),
  2634. name: "Back (NSFW)",
  2635. image: {
  2636. source: "./media/characters/elijah/back-nsfw.svg",
  2637. extra: 895 / 850,
  2638. bottom: 5.3 / 897.956
  2639. }
  2640. },
  2641. dick: {
  2642. height: math.unit(1, "feet"),
  2643. name: "Dick",
  2644. image: {
  2645. source: "./media/characters/elijah/dick.svg"
  2646. }
  2647. },
  2648. beakOpen: {
  2649. height: math.unit(1.25, "feet"),
  2650. name: "Beak (Open)",
  2651. image: {
  2652. source: "./media/characters/elijah/beak-open.svg"
  2653. }
  2654. },
  2655. beakShut: {
  2656. height: math.unit(1.25, "feet"),
  2657. name: "Beak (Shut)",
  2658. image: {
  2659. source: "./media/characters/elijah/beak-shut.svg"
  2660. }
  2661. },
  2662. footFlexing: {
  2663. height: math.unit(1.61, "feet"),
  2664. name: "Foot (Flexing)",
  2665. image: {
  2666. source: "./media/characters/elijah/foot-flexing.svg"
  2667. }
  2668. },
  2669. footStepping: {
  2670. height: math.unit(1.44, "feet"),
  2671. name: "Foot (Stepping)",
  2672. image: {
  2673. source: "./media/characters/elijah/foot-stepping.svg"
  2674. }
  2675. },
  2676. plantigradeLeg: {
  2677. height: math.unit(2.34, "feet"),
  2678. name: "Plantigrade Leg",
  2679. image: {
  2680. source: "./media/characters/elijah/plantigrade-leg.svg"
  2681. }
  2682. },
  2683. plantigradeFootLeft: {
  2684. height: math.unit(0.9, "feet"),
  2685. name: "Plantigrade Foot (Left)",
  2686. image: {
  2687. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2688. }
  2689. },
  2690. plantigradeFootRight: {
  2691. height: math.unit(0.9, "feet"),
  2692. name: "Plantigrade Foot (Right)",
  2693. image: {
  2694. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2695. }
  2696. },
  2697. },
  2698. [
  2699. {
  2700. name: "Normal",
  2701. height: math.unit(1.65, "meters")
  2702. },
  2703. {
  2704. name: "Macro",
  2705. height: math.unit(55, "meters"),
  2706. default: true
  2707. },
  2708. {
  2709. name: "Macro+",
  2710. height: math.unit(105, "meters")
  2711. },
  2712. ]
  2713. ))
  2714. characterMakers.push(() => makeCharacter(
  2715. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2716. {
  2717. front: {
  2718. height: math.unit(7 + 2/12, "feet"),
  2719. weight: math.unit(320, "kg"),
  2720. name: "Front",
  2721. image: {
  2722. source: "./media/characters/rai/front.svg",
  2723. extra: 1802/1696,
  2724. bottom: 68/1870
  2725. }
  2726. },
  2727. frontDressed: {
  2728. height: math.unit(7 + 2/12, "feet"),
  2729. weight: math.unit(320, "kg"),
  2730. name: "Front (Dressed)",
  2731. image: {
  2732. source: "./media/characters/rai/front-dressed.svg",
  2733. extra: 1802/1696,
  2734. bottom: 68/1870
  2735. }
  2736. },
  2737. side: {
  2738. height: math.unit(7 + 2/12, "feet"),
  2739. weight: math.unit(320, "kg"),
  2740. name: "Side",
  2741. image: {
  2742. source: "./media/characters/rai/side.svg",
  2743. extra: 1789/1710,
  2744. bottom: 115/1904
  2745. }
  2746. },
  2747. back: {
  2748. height: math.unit(7 + 2/12, "feet"),
  2749. weight: math.unit(320, "kg"),
  2750. name: "Back",
  2751. image: {
  2752. source: "./media/characters/rai/back.svg",
  2753. extra: 1770/1707,
  2754. bottom: 28/1798
  2755. }
  2756. },
  2757. feral: {
  2758. height: math.unit(9.5, "feet"),
  2759. weight: math.unit(640, "kg"),
  2760. name: "Feral",
  2761. image: {
  2762. source: "./media/characters/rai/feral.svg",
  2763. extra: 945/553,
  2764. bottom: 176/1121
  2765. }
  2766. },
  2767. dragon: {
  2768. height: math.unit(23, "feet"),
  2769. weight: math.unit(50000, "lb"),
  2770. name: "Dragon",
  2771. image: {
  2772. source: "./media/characters/rai/dragon.svg",
  2773. extra: 2498 / 2030,
  2774. bottom: 85.2 / 2584
  2775. }
  2776. },
  2777. maw: {
  2778. height: math.unit(1.69, "feet"),
  2779. name: "Maw",
  2780. image: {
  2781. source: "./media/characters/rai/maw.svg"
  2782. }
  2783. },
  2784. },
  2785. [
  2786. {
  2787. name: "Normal",
  2788. height: math.unit(7 + 2/12, "feet")
  2789. },
  2790. {
  2791. name: "Big",
  2792. height: math.unit(11, "feet")
  2793. },
  2794. {
  2795. name: "Macro",
  2796. height: math.unit(302, "feet"),
  2797. default: true
  2798. },
  2799. ]
  2800. ))
  2801. characterMakers.push(() => makeCharacter(
  2802. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2803. {
  2804. frontDressed: {
  2805. height: math.unit(216, "feet"),
  2806. weight: math.unit(7000000, "lb"),
  2807. name: "Front (Dressed)",
  2808. image: {
  2809. source: "./media/characters/jazzy/front-dressed.svg",
  2810. extra: 2738 / 2651,
  2811. bottom: 41.8 / 2786
  2812. }
  2813. },
  2814. backDressed: {
  2815. height: math.unit(216, "feet"),
  2816. weight: math.unit(7000000, "lb"),
  2817. name: "Back (Dressed)",
  2818. image: {
  2819. source: "./media/characters/jazzy/back-dressed.svg",
  2820. extra: 2775 / 2673,
  2821. bottom: 36.8 / 2817
  2822. }
  2823. },
  2824. front: {
  2825. height: math.unit(216, "feet"),
  2826. weight: math.unit(7000000, "lb"),
  2827. name: "Front",
  2828. image: {
  2829. source: "./media/characters/jazzy/front.svg",
  2830. extra: 2738 / 2651,
  2831. bottom: 41.8 / 2786
  2832. }
  2833. },
  2834. back: {
  2835. height: math.unit(216, "feet"),
  2836. weight: math.unit(7000000, "lb"),
  2837. name: "Back",
  2838. image: {
  2839. source: "./media/characters/jazzy/back.svg",
  2840. extra: 2775 / 2673,
  2841. bottom: 36.8 / 2817
  2842. }
  2843. },
  2844. maw: {
  2845. height: math.unit(20, "feet"),
  2846. name: "Maw",
  2847. image: {
  2848. source: "./media/characters/jazzy/maw.svg"
  2849. }
  2850. },
  2851. paws: {
  2852. height: math.unit(27.5, "feet"),
  2853. name: "Paws",
  2854. image: {
  2855. source: "./media/characters/jazzy/paws.svg"
  2856. }
  2857. },
  2858. eye: {
  2859. height: math.unit(4.4, "feet"),
  2860. name: "Eye",
  2861. image: {
  2862. source: "./media/characters/jazzy/eye.svg"
  2863. }
  2864. },
  2865. droneOffense: {
  2866. height: math.unit(9.5, "inches"),
  2867. name: "Drone (Offense)",
  2868. image: {
  2869. source: "./media/characters/jazzy/drone-offense.svg"
  2870. }
  2871. },
  2872. droneRecon: {
  2873. height: math.unit(9.5, "inches"),
  2874. name: "Drone (Recon)",
  2875. image: {
  2876. source: "./media/characters/jazzy/drone-recon.svg"
  2877. }
  2878. },
  2879. droneDefense: {
  2880. height: math.unit(9.5, "inches"),
  2881. name: "Drone (Defense)",
  2882. image: {
  2883. source: "./media/characters/jazzy/drone-defense.svg"
  2884. }
  2885. },
  2886. },
  2887. [
  2888. {
  2889. name: "Macro",
  2890. height: math.unit(216, "feet"),
  2891. default: true
  2892. },
  2893. ]
  2894. ))
  2895. characterMakers.push(() => makeCharacter(
  2896. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2897. {
  2898. front: {
  2899. height: math.unit(9 + 6/12, "feet"),
  2900. weight: math.unit(700, "lb"),
  2901. name: "Front",
  2902. image: {
  2903. source: "./media/characters/flamm/front.svg",
  2904. extra: 1751/1632,
  2905. bottom: 46/1797
  2906. }
  2907. },
  2908. buff: {
  2909. height: math.unit(9 + 6/12, "feet"),
  2910. weight: math.unit(950, "lb"),
  2911. name: "Buff",
  2912. image: {
  2913. source: "./media/characters/flamm/buff.svg",
  2914. extra: 3018/2874,
  2915. bottom: 221/3239
  2916. }
  2917. },
  2918. },
  2919. [
  2920. {
  2921. name: "Normal",
  2922. height: math.unit(9.5, "feet")
  2923. },
  2924. {
  2925. name: "Macro",
  2926. height: math.unit(200, "feet"),
  2927. default: true
  2928. },
  2929. ]
  2930. ))
  2931. characterMakers.push(() => makeCharacter(
  2932. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2933. {
  2934. front: {
  2935. height: math.unit(5 + 3/12, "feet"),
  2936. weight: math.unit(60, "kg"),
  2937. name: "Front",
  2938. image: {
  2939. source: "./media/characters/zephiro/front.svg",
  2940. extra: 2309 / 2162,
  2941. bottom: 0.069
  2942. }
  2943. },
  2944. side: {
  2945. height: math.unit(5 + 3/12, "feet"),
  2946. weight: math.unit(60, "kg"),
  2947. name: "Side",
  2948. image: {
  2949. source: "./media/characters/zephiro/side.svg",
  2950. extra: 2403 / 2279,
  2951. bottom: 0.015
  2952. }
  2953. },
  2954. back: {
  2955. height: math.unit(5 + 3/12, "feet"),
  2956. weight: math.unit(60, "kg"),
  2957. name: "Back",
  2958. image: {
  2959. source: "./media/characters/zephiro/back.svg",
  2960. extra: 2373 / 2244,
  2961. bottom: 0.013
  2962. }
  2963. },
  2964. hand: {
  2965. height: math.unit(0.68, "feet"),
  2966. name: "Hand",
  2967. image: {
  2968. source: "./media/characters/zephiro/hand.svg"
  2969. }
  2970. },
  2971. paw: {
  2972. height: math.unit(1, "feet"),
  2973. name: "Paw",
  2974. image: {
  2975. source: "./media/characters/zephiro/paw.svg"
  2976. }
  2977. },
  2978. beans: {
  2979. height: math.unit(0.93, "feet"),
  2980. name: "Beans",
  2981. image: {
  2982. source: "./media/characters/zephiro/beans.svg"
  2983. }
  2984. },
  2985. },
  2986. [
  2987. {
  2988. name: "Micro",
  2989. height: math.unit(3, "inches")
  2990. },
  2991. {
  2992. name: "Normal",
  2993. height: math.unit(5 + 3 / 12, "feet"),
  2994. default: true
  2995. },
  2996. {
  2997. name: "Macro",
  2998. height: math.unit(118, "feet")
  2999. },
  3000. ]
  3001. ))
  3002. characterMakers.push(() => makeCharacter(
  3003. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3004. {
  3005. front: {
  3006. height: math.unit(5, "feet"),
  3007. weight: math.unit(90, "kg"),
  3008. name: "Front",
  3009. image: {
  3010. source: "./media/characters/fory/front.svg",
  3011. extra: 2862 / 2674,
  3012. bottom: 180 / 3043.8
  3013. }
  3014. },
  3015. back: {
  3016. height: math.unit(5, "feet"),
  3017. weight: math.unit(90, "kg"),
  3018. name: "Back",
  3019. image: {
  3020. source: "./media/characters/fory/back.svg",
  3021. extra: 2962 / 2791,
  3022. bottom: 106 / 3071.8
  3023. }
  3024. },
  3025. foot: {
  3026. height: math.unit(2.14, "feet"),
  3027. name: "Foot",
  3028. image: {
  3029. source: "./media/characters/fory/foot.svg"
  3030. }
  3031. },
  3032. },
  3033. [
  3034. {
  3035. name: "Normal",
  3036. height: math.unit(5, "feet")
  3037. },
  3038. {
  3039. name: "Macro",
  3040. height: math.unit(50, "feet"),
  3041. default: true
  3042. },
  3043. {
  3044. name: "Megamacro",
  3045. height: math.unit(10, "miles")
  3046. },
  3047. {
  3048. name: "Gigamacro",
  3049. height: math.unit(5, "earths")
  3050. },
  3051. ]
  3052. ))
  3053. characterMakers.push(() => makeCharacter(
  3054. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3055. {
  3056. front: {
  3057. height: math.unit(7, "feet"),
  3058. weight: math.unit(90, "kg"),
  3059. name: "Front",
  3060. image: {
  3061. source: "./media/characters/kurrikage/front.svg",
  3062. extra: 1845/1733,
  3063. bottom: 119/1964
  3064. }
  3065. },
  3066. back: {
  3067. height: math.unit(7, "feet"),
  3068. weight: math.unit(90, "kg"),
  3069. name: "Back",
  3070. image: {
  3071. source: "./media/characters/kurrikage/back.svg",
  3072. extra: 1790/1677,
  3073. bottom: 61/1851
  3074. }
  3075. },
  3076. dressed: {
  3077. height: math.unit(7, "feet"),
  3078. weight: math.unit(90, "kg"),
  3079. name: "Dressed",
  3080. image: {
  3081. source: "./media/characters/kurrikage/dressed.svg",
  3082. extra: 1845/1733,
  3083. bottom: 119/1964
  3084. }
  3085. },
  3086. foot: {
  3087. height: math.unit(1.5, "feet"),
  3088. name: "Foot",
  3089. image: {
  3090. source: "./media/characters/kurrikage/foot.svg"
  3091. }
  3092. },
  3093. staff: {
  3094. height: math.unit(6.7, "feet"),
  3095. name: "Staff",
  3096. image: {
  3097. source: "./media/characters/kurrikage/staff.svg"
  3098. }
  3099. },
  3100. peek: {
  3101. height: math.unit(1.05, "feet"),
  3102. name: "Peeking",
  3103. image: {
  3104. source: "./media/characters/kurrikage/peek.svg",
  3105. bottom: 0.08
  3106. }
  3107. },
  3108. },
  3109. [
  3110. {
  3111. name: "Normal",
  3112. height: math.unit(12, "feet"),
  3113. default: true
  3114. },
  3115. {
  3116. name: "Big",
  3117. height: math.unit(20, "feet")
  3118. },
  3119. {
  3120. name: "Macro",
  3121. height: math.unit(500, "feet")
  3122. },
  3123. {
  3124. name: "Megamacro",
  3125. height: math.unit(20, "miles")
  3126. },
  3127. ]
  3128. ))
  3129. characterMakers.push(() => makeCharacter(
  3130. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3131. {
  3132. front: {
  3133. height: math.unit(6, "feet"),
  3134. weight: math.unit(75, "kg"),
  3135. name: "Front",
  3136. image: {
  3137. source: "./media/characters/shingo/front.svg",
  3138. extra: 1900/1825,
  3139. bottom: 82/1982
  3140. }
  3141. },
  3142. side: {
  3143. height: math.unit(6, "feet"),
  3144. weight: math.unit(75, "kg"),
  3145. name: "Side",
  3146. image: {
  3147. source: "./media/characters/shingo/side.svg",
  3148. extra: 1930/1865,
  3149. bottom: 16/1946
  3150. }
  3151. },
  3152. back: {
  3153. height: math.unit(6, "feet"),
  3154. weight: math.unit(75, "kg"),
  3155. name: "Back",
  3156. image: {
  3157. source: "./media/characters/shingo/back.svg",
  3158. extra: 1922/1852,
  3159. bottom: 16/1938
  3160. }
  3161. },
  3162. frontDressed: {
  3163. height: math.unit(6, "feet"),
  3164. weight: math.unit(150, "lb"),
  3165. name: "Front-dressed",
  3166. image: {
  3167. source: "./media/characters/shingo/front-dressed.svg",
  3168. extra: 1900/1825,
  3169. bottom: 82/1982
  3170. }
  3171. },
  3172. paw: {
  3173. height: math.unit(1.29, "feet"),
  3174. name: "Paw",
  3175. image: {
  3176. source: "./media/characters/shingo/paw.svg"
  3177. }
  3178. },
  3179. hand: {
  3180. height: math.unit(1.07, "feet"),
  3181. name: "Hand",
  3182. image: {
  3183. source: "./media/characters/shingo/hand.svg"
  3184. }
  3185. },
  3186. frontAlt: {
  3187. height: math.unit(6, "feet"),
  3188. weight: math.unit(75, "kg"),
  3189. name: "Front (Alt)",
  3190. image: {
  3191. source: "./media/characters/shingo/front-alt.svg",
  3192. extra: 3511 / 3338,
  3193. bottom: 0.005
  3194. }
  3195. },
  3196. frontAlt2: {
  3197. height: math.unit(6, "feet"),
  3198. weight: math.unit(75, "kg"),
  3199. name: "Front (Alt 2)",
  3200. image: {
  3201. source: "./media/characters/shingo/front-alt-2.svg",
  3202. extra: 706/681,
  3203. bottom: 11/717
  3204. }
  3205. },
  3206. pawAlt: {
  3207. height: math.unit(1, "feet"),
  3208. name: "Paw (Alt)",
  3209. image: {
  3210. source: "./media/characters/shingo/paw-alt.svg"
  3211. }
  3212. },
  3213. },
  3214. [
  3215. {
  3216. name: "Micro",
  3217. height: math.unit(4, "inches")
  3218. },
  3219. {
  3220. name: "Normal",
  3221. height: math.unit(6, "feet"),
  3222. default: true
  3223. },
  3224. {
  3225. name: "Macro",
  3226. height: math.unit(108, "feet")
  3227. },
  3228. {
  3229. name: "Macro+",
  3230. height: math.unit(1500, "feet")
  3231. },
  3232. ]
  3233. ))
  3234. characterMakers.push(() => makeCharacter(
  3235. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3236. {
  3237. side: {
  3238. height: math.unit(6, "feet"),
  3239. weight: math.unit(75, "kg"),
  3240. name: "Side",
  3241. image: {
  3242. source: "./media/characters/aigey/side.svg"
  3243. }
  3244. },
  3245. },
  3246. [
  3247. {
  3248. name: "Macro",
  3249. height: math.unit(200, "feet"),
  3250. default: true
  3251. },
  3252. {
  3253. name: "Megamacro",
  3254. height: math.unit(100, "miles")
  3255. },
  3256. ]
  3257. )
  3258. )
  3259. characterMakers.push(() => makeCharacter(
  3260. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3261. {
  3262. front: {
  3263. height: math.unit(5 + 5 / 12, "feet"),
  3264. weight: math.unit(75, "kg"),
  3265. name: "Front",
  3266. image: {
  3267. source: "./media/characters/natasha/front.svg",
  3268. extra: 859 / 824,
  3269. bottom: 23 / 879.6
  3270. }
  3271. },
  3272. frontNsfw: {
  3273. height: math.unit(5 + 5 / 12, "feet"),
  3274. weight: math.unit(75, "kg"),
  3275. name: "Front (NSFW)",
  3276. image: {
  3277. source: "./media/characters/natasha/front-nsfw.svg",
  3278. extra: 859 / 824,
  3279. bottom: 23 / 879.6
  3280. }
  3281. },
  3282. frontErect: {
  3283. height: math.unit(5 + 5 / 12, "feet"),
  3284. weight: math.unit(75, "kg"),
  3285. name: "Front (Erect)",
  3286. image: {
  3287. source: "./media/characters/natasha/front-erect.svg",
  3288. extra: 859 / 824,
  3289. bottom: 23 / 879.6
  3290. }
  3291. },
  3292. back: {
  3293. height: math.unit(5 + 5 / 12, "feet"),
  3294. weight: math.unit(75, "kg"),
  3295. name: "Back",
  3296. image: {
  3297. source: "./media/characters/natasha/back.svg",
  3298. extra: 887.9 / 852.6,
  3299. bottom: 9.7 / 896.4
  3300. }
  3301. },
  3302. backAlt: {
  3303. height: math.unit(5 + 5 / 12, "feet"),
  3304. weight: math.unit(75, "kg"),
  3305. name: "Back (Alt)",
  3306. image: {
  3307. source: "./media/characters/natasha/back-alt.svg",
  3308. extra: 1236.7 / 1192,
  3309. bottom: 22.3 / 1258.2
  3310. }
  3311. },
  3312. dick: {
  3313. height: math.unit(1.772, "feet"),
  3314. name: "Dick",
  3315. image: {
  3316. source: "./media/characters/natasha/dick.svg"
  3317. }
  3318. },
  3319. paw: {
  3320. height: math.unit(0.250, "meters"),
  3321. name: "Paw",
  3322. image: {
  3323. source: "./media/characters/natasha/paw.svg"
  3324. },
  3325. extraAttributes: {
  3326. "toeSize": {
  3327. name: "Toe Size",
  3328. power: 2,
  3329. type: "area",
  3330. base: math.unit(0.0024, "m^2")
  3331. },
  3332. "padSize": {
  3333. name: "Pad Size",
  3334. power: 2,
  3335. type: "area",
  3336. base: math.unit(0.00889, "m^2")
  3337. },
  3338. "pawSize": {
  3339. name: "Paw Size",
  3340. power: 2,
  3341. type: "area",
  3342. base: math.unit(0.023667, "m^2")
  3343. },
  3344. }
  3345. },
  3346. },
  3347. [
  3348. {
  3349. name: "Normal",
  3350. height: math.unit(5 + 5 / 12, "feet")
  3351. },
  3352. {
  3353. name: "Large",
  3354. height: math.unit(12, "feet")
  3355. },
  3356. {
  3357. name: "Macro",
  3358. height: math.unit(100, "feet"),
  3359. default: true
  3360. },
  3361. {
  3362. name: "Macro+",
  3363. height: math.unit(260, "feet")
  3364. },
  3365. {
  3366. name: "Macro++",
  3367. height: math.unit(1, "mile")
  3368. },
  3369. ]
  3370. ))
  3371. characterMakers.push(() => makeCharacter(
  3372. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3373. {
  3374. front: {
  3375. height: math.unit(6, "feet"),
  3376. weight: math.unit(75, "kg"),
  3377. name: "Front",
  3378. image: {
  3379. source: "./media/characters/malik/front.svg",
  3380. extra: 1750/1561,
  3381. bottom: 80/1830
  3382. },
  3383. extraAttributes: {
  3384. "toeSize": {
  3385. name: "Toe Size",
  3386. power: 2,
  3387. type: "area",
  3388. base: math.unit(0.0159, "m^2")
  3389. },
  3390. "pawSize": {
  3391. name: "Paw Size",
  3392. power: 2,
  3393. type: "area",
  3394. base: math.unit(0.09834, "m^2")
  3395. },
  3396. }
  3397. },
  3398. side: {
  3399. height: math.unit(6, "feet"),
  3400. weight: math.unit(75, "kg"),
  3401. name: "Side",
  3402. image: {
  3403. source: "./media/characters/malik/side.svg",
  3404. extra: 1802/1685,
  3405. bottom: 42/1844
  3406. },
  3407. extraAttributes: {
  3408. "toeSize": {
  3409. name: "Toe Size",
  3410. power: 2,
  3411. type: "area",
  3412. base: math.unit(0.0159, "m^2")
  3413. },
  3414. "pawSize": {
  3415. name: "Paw Size",
  3416. power: 2,
  3417. type: "area",
  3418. base: math.unit(0.09834, "m^2")
  3419. },
  3420. }
  3421. },
  3422. back: {
  3423. height: math.unit(6, "feet"),
  3424. weight: math.unit(75, "kg"),
  3425. name: "Back",
  3426. image: {
  3427. source: "./media/characters/malik/back.svg",
  3428. extra: 1803/1607,
  3429. bottom: 33/1836
  3430. },
  3431. extraAttributes: {
  3432. "toeSize": {
  3433. name: "Toe Size",
  3434. power: 2,
  3435. type: "area",
  3436. base: math.unit(0.0159, "m^2")
  3437. },
  3438. "pawSize": {
  3439. name: "Paw Size",
  3440. power: 2,
  3441. type: "area",
  3442. base: math.unit(0.09834, "m^2")
  3443. },
  3444. }
  3445. },
  3446. },
  3447. [
  3448. {
  3449. name: "Macro",
  3450. height: math.unit(156, "feet"),
  3451. default: true
  3452. },
  3453. {
  3454. name: "Macro+",
  3455. height: math.unit(1188, "feet")
  3456. },
  3457. ]
  3458. ))
  3459. characterMakers.push(() => makeCharacter(
  3460. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3461. {
  3462. front: {
  3463. height: math.unit(6, "feet"),
  3464. weight: math.unit(75, "kg"),
  3465. name: "Front",
  3466. image: {
  3467. source: "./media/characters/sefer/front.svg",
  3468. extra: 848 / 659,
  3469. bottom: 28.3 / 876.442
  3470. }
  3471. },
  3472. back: {
  3473. height: math.unit(6, "feet"),
  3474. weight: math.unit(75, "kg"),
  3475. name: "Back",
  3476. image: {
  3477. source: "./media/characters/sefer/back.svg",
  3478. extra: 864 / 695,
  3479. bottom: 10 / 871
  3480. }
  3481. },
  3482. frontDressed: {
  3483. height: math.unit(6, "feet"),
  3484. weight: math.unit(75, "kg"),
  3485. name: "Front (Dressed)",
  3486. image: {
  3487. source: "./media/characters/sefer/front-dressed.svg",
  3488. extra: 839 / 653,
  3489. bottom: 37.6 / 878
  3490. }
  3491. },
  3492. },
  3493. [
  3494. {
  3495. name: "Normal",
  3496. height: math.unit(6, "feet"),
  3497. default: true
  3498. },
  3499. ]
  3500. ))
  3501. characterMakers.push(() => makeCharacter(
  3502. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3503. {
  3504. body: {
  3505. height: math.unit(2.2428, "meter"),
  3506. weight: math.unit(124.738, "kg"),
  3507. name: "Body",
  3508. image: {
  3509. extra: 1225 / 1050,
  3510. source: "./media/characters/north/front.svg"
  3511. }
  3512. }
  3513. },
  3514. [
  3515. {
  3516. name: "Micro",
  3517. height: math.unit(4, "inches")
  3518. },
  3519. {
  3520. name: "Macro",
  3521. height: math.unit(63, "meters")
  3522. },
  3523. {
  3524. name: "Megamacro",
  3525. height: math.unit(101, "miles"),
  3526. default: true
  3527. }
  3528. ]
  3529. ))
  3530. characterMakers.push(() => makeCharacter(
  3531. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3532. {
  3533. angled: {
  3534. height: math.unit(4, "meter"),
  3535. weight: math.unit(150, "kg"),
  3536. name: "Angled",
  3537. image: {
  3538. source: "./media/characters/talan/angled-sfw.svg",
  3539. bottom: 29 / 3734
  3540. }
  3541. },
  3542. angledNsfw: {
  3543. height: math.unit(4, "meter"),
  3544. weight: math.unit(150, "kg"),
  3545. name: "Angled (NSFW)",
  3546. image: {
  3547. source: "./media/characters/talan/angled-nsfw.svg",
  3548. bottom: 29 / 3734
  3549. }
  3550. },
  3551. frontNsfw: {
  3552. height: math.unit(4, "meter"),
  3553. weight: math.unit(150, "kg"),
  3554. name: "Front (NSFW)",
  3555. image: {
  3556. source: "./media/characters/talan/front-nsfw.svg",
  3557. bottom: 29 / 3734
  3558. }
  3559. },
  3560. sideNsfw: {
  3561. height: math.unit(4, "meter"),
  3562. weight: math.unit(150, "kg"),
  3563. name: "Side (NSFW)",
  3564. image: {
  3565. source: "./media/characters/talan/side-nsfw.svg",
  3566. bottom: 29 / 3734
  3567. }
  3568. },
  3569. back: {
  3570. height: math.unit(4, "meter"),
  3571. weight: math.unit(150, "kg"),
  3572. name: "Back",
  3573. image: {
  3574. source: "./media/characters/talan/back.svg"
  3575. }
  3576. },
  3577. dickBottom: {
  3578. height: math.unit(0.621, "meter"),
  3579. name: "Dick (Bottom)",
  3580. image: {
  3581. source: "./media/characters/talan/dick-bottom.svg"
  3582. }
  3583. },
  3584. dickTop: {
  3585. height: math.unit(0.621, "meter"),
  3586. name: "Dick (Top)",
  3587. image: {
  3588. source: "./media/characters/talan/dick-top.svg"
  3589. }
  3590. },
  3591. dickSide: {
  3592. height: math.unit(0.305, "meter"),
  3593. name: "Dick (Side)",
  3594. image: {
  3595. source: "./media/characters/talan/dick-side.svg"
  3596. }
  3597. },
  3598. dickFront: {
  3599. height: math.unit(0.305, "meter"),
  3600. name: "Dick (Front)",
  3601. image: {
  3602. source: "./media/characters/talan/dick-front.svg"
  3603. }
  3604. },
  3605. },
  3606. [
  3607. {
  3608. name: "Normal",
  3609. height: math.unit(4, "meters")
  3610. },
  3611. {
  3612. name: "Macro",
  3613. height: math.unit(100, "meters")
  3614. },
  3615. {
  3616. name: "Megamacro",
  3617. height: math.unit(2, "miles"),
  3618. default: true
  3619. },
  3620. {
  3621. name: "Gigamacro",
  3622. height: math.unit(5000, "miles")
  3623. },
  3624. {
  3625. name: "Teramacro",
  3626. height: math.unit(100, "parsecs")
  3627. }
  3628. ]
  3629. ))
  3630. characterMakers.push(() => makeCharacter(
  3631. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3632. {
  3633. front: {
  3634. height: math.unit(2, "meter"),
  3635. weight: math.unit(90, "kg"),
  3636. name: "Front",
  3637. image: {
  3638. source: "./media/characters/gael'rathus/front.svg"
  3639. }
  3640. },
  3641. frontAlt: {
  3642. height: math.unit(2, "meter"),
  3643. weight: math.unit(90, "kg"),
  3644. name: "Front (alt)",
  3645. image: {
  3646. source: "./media/characters/gael'rathus/front-alt.svg"
  3647. }
  3648. },
  3649. frontAlt2: {
  3650. height: math.unit(2, "meter"),
  3651. weight: math.unit(90, "kg"),
  3652. name: "Front (alt 2)",
  3653. image: {
  3654. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3655. }
  3656. }
  3657. },
  3658. [
  3659. {
  3660. name: "Normal",
  3661. height: math.unit(9, "feet"),
  3662. default: true
  3663. },
  3664. {
  3665. name: "Large",
  3666. height: math.unit(25, "feet")
  3667. },
  3668. {
  3669. name: "Macro",
  3670. height: math.unit(0.25, "miles")
  3671. },
  3672. {
  3673. name: "Megamacro",
  3674. height: math.unit(10, "miles")
  3675. }
  3676. ]
  3677. ))
  3678. characterMakers.push(() => makeCharacter(
  3679. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3680. {
  3681. side: {
  3682. height: math.unit(2, "meter"),
  3683. weight: math.unit(140, "kg"),
  3684. name: "Side",
  3685. image: {
  3686. source: "./media/characters/sosha/side.svg",
  3687. extra: 1170/1006,
  3688. bottom: 94/1264
  3689. }
  3690. },
  3691. maw: {
  3692. height: math.unit(2.87, "feet"),
  3693. name: "Maw",
  3694. image: {
  3695. source: "./media/characters/sosha/maw.svg",
  3696. extra: 966/865,
  3697. bottom: 0/966
  3698. }
  3699. },
  3700. cooch: {
  3701. height: math.unit(5.6, "feet"),
  3702. name: "Cooch",
  3703. image: {
  3704. source: "./media/characters/sosha/cooch.svg"
  3705. }
  3706. },
  3707. },
  3708. [
  3709. {
  3710. name: "Normal",
  3711. height: math.unit(12, "feet"),
  3712. default: true
  3713. }
  3714. ]
  3715. ))
  3716. characterMakers.push(() => makeCharacter(
  3717. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3718. {
  3719. side: {
  3720. height: math.unit(5 + 5 / 12, "feet"),
  3721. weight: math.unit(170, "kg"),
  3722. name: "Side",
  3723. image: {
  3724. source: "./media/characters/runnola/side.svg",
  3725. extra: 741 / 448,
  3726. bottom: 0.05
  3727. }
  3728. },
  3729. },
  3730. [
  3731. {
  3732. name: "Small",
  3733. height: math.unit(3, "feet")
  3734. },
  3735. {
  3736. name: "Normal",
  3737. height: math.unit(5 + 5 / 12, "feet"),
  3738. default: true
  3739. },
  3740. {
  3741. name: "Big",
  3742. height: math.unit(10, "feet")
  3743. },
  3744. ]
  3745. ))
  3746. characterMakers.push(() => makeCharacter(
  3747. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3748. {
  3749. front: {
  3750. height: math.unit(2, "meter"),
  3751. weight: math.unit(50, "kg"),
  3752. name: "Front",
  3753. image: {
  3754. source: "./media/characters/kurribird/front.svg",
  3755. bottom: 0.015
  3756. }
  3757. },
  3758. frontAlt: {
  3759. height: math.unit(1.5, "meter"),
  3760. weight: math.unit(50, "kg"),
  3761. name: "Front (Alt)",
  3762. image: {
  3763. source: "./media/characters/kurribird/front-alt.svg",
  3764. extra: 1.45
  3765. }
  3766. },
  3767. },
  3768. [
  3769. {
  3770. name: "Normal",
  3771. height: math.unit(7, "feet")
  3772. },
  3773. {
  3774. name: "Big",
  3775. height: math.unit(12, "feet"),
  3776. default: true
  3777. },
  3778. {
  3779. name: "Macro",
  3780. height: math.unit(1500, "feet")
  3781. },
  3782. {
  3783. name: "Megamacro",
  3784. height: math.unit(2, "miles")
  3785. }
  3786. ]
  3787. ))
  3788. characterMakers.push(() => makeCharacter(
  3789. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3790. {
  3791. front: {
  3792. height: math.unit(2, "meter"),
  3793. weight: math.unit(80, "kg"),
  3794. name: "Front",
  3795. image: {
  3796. source: "./media/characters/elbial/front.svg",
  3797. extra: 1643 / 1556,
  3798. bottom: 60.2 / 1696
  3799. }
  3800. },
  3801. side: {
  3802. height: math.unit(2, "meter"),
  3803. weight: math.unit(80, "kg"),
  3804. name: "Side",
  3805. image: {
  3806. source: "./media/characters/elbial/side.svg",
  3807. extra: 1601/1528,
  3808. bottom: 97/1698
  3809. }
  3810. },
  3811. back: {
  3812. height: math.unit(2, "meter"),
  3813. weight: math.unit(80, "kg"),
  3814. name: "Back",
  3815. image: {
  3816. source: "./media/characters/elbial/back.svg",
  3817. extra: 1653/1569,
  3818. bottom: 20/1673
  3819. }
  3820. },
  3821. frontDressed: {
  3822. height: math.unit(2, "meter"),
  3823. weight: math.unit(80, "kg"),
  3824. name: "Front (Dressed)",
  3825. image: {
  3826. source: "./media/characters/elbial/front-dressed.svg",
  3827. extra: 1638/1569,
  3828. bottom: 70/1708
  3829. }
  3830. },
  3831. genitals: {
  3832. height: math.unit(2 / 3.367, "meter"),
  3833. name: "Genitals",
  3834. image: {
  3835. source: "./media/characters/elbial/genitals.svg"
  3836. }
  3837. },
  3838. },
  3839. [
  3840. {
  3841. name: "Large",
  3842. height: math.unit(100, "feet")
  3843. },
  3844. {
  3845. name: "Macro",
  3846. height: math.unit(500, "feet"),
  3847. default: true
  3848. },
  3849. {
  3850. name: "Megamacro",
  3851. height: math.unit(10, "miles")
  3852. },
  3853. {
  3854. name: "Gigamacro",
  3855. height: math.unit(25000, "miles")
  3856. },
  3857. {
  3858. name: "Full-Size",
  3859. height: math.unit(8000000, "gigaparsecs")
  3860. }
  3861. ]
  3862. ))
  3863. characterMakers.push(() => makeCharacter(
  3864. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3865. {
  3866. front: {
  3867. height: math.unit(2, "meter"),
  3868. weight: math.unit(60, "kg"),
  3869. name: "Front",
  3870. image: {
  3871. source: "./media/characters/noah/front.svg"
  3872. }
  3873. },
  3874. talons: {
  3875. height: math.unit(0.315, "meter"),
  3876. name: "Talons",
  3877. image: {
  3878. source: "./media/characters/noah/talons.svg"
  3879. }
  3880. }
  3881. },
  3882. [
  3883. {
  3884. name: "Large",
  3885. height: math.unit(50, "feet")
  3886. },
  3887. {
  3888. name: "Macro",
  3889. height: math.unit(750, "feet"),
  3890. default: true
  3891. },
  3892. {
  3893. name: "Megamacro",
  3894. height: math.unit(50, "miles")
  3895. },
  3896. {
  3897. name: "Gigamacro",
  3898. height: math.unit(100000, "miles")
  3899. },
  3900. {
  3901. name: "Full-Size",
  3902. height: math.unit(3000000000, "miles")
  3903. }
  3904. ]
  3905. ))
  3906. characterMakers.push(() => makeCharacter(
  3907. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3908. {
  3909. front: {
  3910. height: math.unit(2, "meter"),
  3911. weight: math.unit(80, "kg"),
  3912. name: "Front",
  3913. image: {
  3914. source: "./media/characters/natalya/front.svg"
  3915. }
  3916. },
  3917. back: {
  3918. height: math.unit(2, "meter"),
  3919. weight: math.unit(80, "kg"),
  3920. name: "Back",
  3921. image: {
  3922. source: "./media/characters/natalya/back.svg"
  3923. }
  3924. }
  3925. },
  3926. [
  3927. {
  3928. name: "Normal",
  3929. height: math.unit(150, "feet"),
  3930. default: true
  3931. },
  3932. {
  3933. name: "Megamacro",
  3934. height: math.unit(5, "miles")
  3935. },
  3936. {
  3937. name: "Full-Size",
  3938. height: math.unit(600, "kiloparsecs")
  3939. }
  3940. ]
  3941. ))
  3942. characterMakers.push(() => makeCharacter(
  3943. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3944. {
  3945. front: {
  3946. height: math.unit(2, "meter"),
  3947. weight: math.unit(50, "kg"),
  3948. name: "Front",
  3949. image: {
  3950. source: "./media/characters/erestrebah/front.svg",
  3951. extra: 1262/1162,
  3952. bottom: 96/1358
  3953. }
  3954. },
  3955. back: {
  3956. height: math.unit(2, "meter"),
  3957. weight: math.unit(50, "kg"),
  3958. name: "Back",
  3959. image: {
  3960. source: "./media/characters/erestrebah/back.svg",
  3961. extra: 1257/1139,
  3962. bottom: 13/1270
  3963. }
  3964. },
  3965. wing: {
  3966. height: math.unit(2, "meter"),
  3967. weight: math.unit(50, "kg"),
  3968. name: "Wing",
  3969. image: {
  3970. source: "./media/characters/erestrebah/wing.svg",
  3971. extra: 1262/1162,
  3972. bottom: 96/1358
  3973. }
  3974. },
  3975. mouth: {
  3976. height: math.unit(0.39, "feet"),
  3977. name: "Mouth",
  3978. image: {
  3979. source: "./media/characters/erestrebah/mouth.svg"
  3980. }
  3981. }
  3982. },
  3983. [
  3984. {
  3985. name: "Normal",
  3986. height: math.unit(10, "feet")
  3987. },
  3988. {
  3989. name: "Large",
  3990. height: math.unit(50, "feet"),
  3991. default: true
  3992. },
  3993. {
  3994. name: "Macro",
  3995. height: math.unit(300, "feet")
  3996. },
  3997. {
  3998. name: "Macro+",
  3999. height: math.unit(750, "feet")
  4000. },
  4001. {
  4002. name: "Megamacro",
  4003. height: math.unit(3, "miles")
  4004. }
  4005. ]
  4006. ))
  4007. characterMakers.push(() => makeCharacter(
  4008. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4009. {
  4010. front: {
  4011. height: math.unit(2, "meter"),
  4012. weight: math.unit(80, "kg"),
  4013. name: "Front",
  4014. image: {
  4015. source: "./media/characters/jennifer/front.svg",
  4016. bottom: 0.11,
  4017. extra: 1.16
  4018. }
  4019. },
  4020. frontAlt: {
  4021. height: math.unit(2, "meter"),
  4022. weight: math.unit(80, "kg"),
  4023. name: "Front (Alt)",
  4024. image: {
  4025. source: "./media/characters/jennifer/front-alt.svg"
  4026. }
  4027. }
  4028. },
  4029. [
  4030. {
  4031. name: "Canon Height",
  4032. height: math.unit(120, "feet"),
  4033. default: true
  4034. },
  4035. {
  4036. name: "Macro+",
  4037. height: math.unit(300, "feet")
  4038. },
  4039. {
  4040. name: "Megamacro",
  4041. height: math.unit(20000, "feet")
  4042. }
  4043. ]
  4044. ))
  4045. characterMakers.push(() => makeCharacter(
  4046. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4047. {
  4048. front: {
  4049. height: math.unit(2, "meter"),
  4050. weight: math.unit(50, "kg"),
  4051. name: "Front",
  4052. image: {
  4053. source: "./media/characters/kalista/front.svg",
  4054. extra: 1314/1145,
  4055. bottom: 101/1415
  4056. }
  4057. },
  4058. back: {
  4059. height: math.unit(2, "meter"),
  4060. weight: math.unit(50, "kg"),
  4061. name: "Back",
  4062. image: {
  4063. source: "./media/characters/kalista/back.svg",
  4064. extra: 1366 / 1156,
  4065. bottom: 33.9 / 1362.78
  4066. }
  4067. }
  4068. },
  4069. [
  4070. {
  4071. name: "Uncomfortably Small",
  4072. height: math.unit(10, "feet")
  4073. },
  4074. {
  4075. name: "Small",
  4076. height: math.unit(30, "feet")
  4077. },
  4078. {
  4079. name: "Macro",
  4080. height: math.unit(100, "feet"),
  4081. default: true
  4082. },
  4083. {
  4084. name: "Macro+",
  4085. height: math.unit(2000, "feet")
  4086. },
  4087. {
  4088. name: "True Form",
  4089. height: math.unit(8924, "miles")
  4090. }
  4091. ]
  4092. ))
  4093. characterMakers.push(() => makeCharacter(
  4094. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4095. {
  4096. front: {
  4097. height: math.unit(2, "meter"),
  4098. weight: math.unit(120, "kg"),
  4099. name: "Front",
  4100. image: {
  4101. source: "./media/characters/ggv/front.svg"
  4102. }
  4103. },
  4104. side: {
  4105. height: math.unit(2, "meter"),
  4106. weight: math.unit(120, "kg"),
  4107. name: "Side",
  4108. image: {
  4109. source: "./media/characters/ggv/side.svg"
  4110. }
  4111. }
  4112. },
  4113. [
  4114. {
  4115. name: "Extremely Puny",
  4116. height: math.unit(9 + 5 / 12, "feet")
  4117. },
  4118. {
  4119. name: "Horribly Small",
  4120. height: math.unit(47.7, "miles"),
  4121. default: true
  4122. },
  4123. {
  4124. name: "Reasonably Sized",
  4125. height: math.unit(25000, "parsecs")
  4126. },
  4127. {
  4128. name: "Slightly Uncompressed",
  4129. height: math.unit(7.77e31, "parsecs")
  4130. },
  4131. {
  4132. name: "Omniversal",
  4133. height: math.unit(1e300, "meters")
  4134. },
  4135. ]
  4136. ))
  4137. characterMakers.push(() => makeCharacter(
  4138. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4139. {
  4140. front: {
  4141. height: math.unit(2, "meter"),
  4142. weight: math.unit(75, "lb"),
  4143. name: "Front",
  4144. image: {
  4145. source: "./media/characters/napalm/front.svg"
  4146. }
  4147. },
  4148. back: {
  4149. height: math.unit(2, "meter"),
  4150. weight: math.unit(75, "lb"),
  4151. name: "Back",
  4152. image: {
  4153. source: "./media/characters/napalm/back.svg"
  4154. }
  4155. }
  4156. },
  4157. [
  4158. {
  4159. name: "Standard",
  4160. height: math.unit(55, "feet"),
  4161. default: true
  4162. }
  4163. ]
  4164. ))
  4165. characterMakers.push(() => makeCharacter(
  4166. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4167. {
  4168. front: {
  4169. height: math.unit(7 + 5 / 6, "feet"),
  4170. weight: math.unit(325, "lb"),
  4171. name: "Front",
  4172. image: {
  4173. source: "./media/characters/asana/front.svg",
  4174. extra: 1133 / 1060,
  4175. bottom: 15.2 / 1148.6
  4176. }
  4177. },
  4178. back: {
  4179. height: math.unit(7 + 5 / 6, "feet"),
  4180. weight: math.unit(325, "lb"),
  4181. name: "Back",
  4182. image: {
  4183. source: "./media/characters/asana/back.svg",
  4184. extra: 1114 / 1043,
  4185. bottom: 5 / 1120
  4186. }
  4187. },
  4188. dressedDark: {
  4189. height: math.unit(7 + 5 / 6, "feet"),
  4190. weight: math.unit(325, "lb"),
  4191. name: "Dressed (Dark)",
  4192. image: {
  4193. source: "./media/characters/asana/dressed-dark.svg",
  4194. extra: 1133 / 1060,
  4195. bottom: 15.2 / 1148.6
  4196. }
  4197. },
  4198. dressedLight: {
  4199. height: math.unit(7 + 5 / 6, "feet"),
  4200. weight: math.unit(325, "lb"),
  4201. name: "Dressed (Light)",
  4202. image: {
  4203. source: "./media/characters/asana/dressed-light.svg",
  4204. extra: 1133 / 1060,
  4205. bottom: 15.2 / 1148.6
  4206. }
  4207. },
  4208. },
  4209. [
  4210. {
  4211. name: "Standard",
  4212. height: math.unit(7 + 5 / 6, "feet"),
  4213. default: true
  4214. },
  4215. {
  4216. name: "Large",
  4217. height: math.unit(10, "meters")
  4218. },
  4219. {
  4220. name: "Macro",
  4221. height: math.unit(2500, "meters")
  4222. },
  4223. {
  4224. name: "Megamacro",
  4225. height: math.unit(5e6, "meters")
  4226. },
  4227. {
  4228. name: "Examacro",
  4229. height: math.unit(5e12, "lightyears")
  4230. },
  4231. {
  4232. name: "Max Size",
  4233. height: math.unit(1e31, "lightyears")
  4234. }
  4235. ]
  4236. ))
  4237. characterMakers.push(() => makeCharacter(
  4238. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4239. {
  4240. front: {
  4241. height: math.unit(2, "meter"),
  4242. weight: math.unit(60, "kg"),
  4243. name: "Front",
  4244. image: {
  4245. source: "./media/characters/ebony/front.svg",
  4246. bottom: 0.03,
  4247. extra: 1045 / 810 + 0.03
  4248. }
  4249. },
  4250. side: {
  4251. height: math.unit(2, "meter"),
  4252. weight: math.unit(60, "kg"),
  4253. name: "Side",
  4254. image: {
  4255. source: "./media/characters/ebony/side.svg",
  4256. bottom: 0.03,
  4257. extra: 1045 / 810 + 0.03
  4258. }
  4259. },
  4260. back: {
  4261. height: math.unit(2, "meter"),
  4262. weight: math.unit(60, "kg"),
  4263. name: "Back",
  4264. image: {
  4265. source: "./media/characters/ebony/back.svg",
  4266. bottom: 0.01,
  4267. extra: 1045 / 810 + 0.01
  4268. }
  4269. },
  4270. },
  4271. [
  4272. // TODO check why I did this lol
  4273. {
  4274. name: "Standard",
  4275. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4276. default: true
  4277. },
  4278. {
  4279. name: "Macro",
  4280. height: math.unit(200, "feet")
  4281. },
  4282. {
  4283. name: "Gigamacro",
  4284. height: math.unit(13000, "km")
  4285. }
  4286. ]
  4287. ))
  4288. characterMakers.push(() => makeCharacter(
  4289. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4290. {
  4291. front: {
  4292. height: math.unit(6, "feet"),
  4293. weight: math.unit(175, "lb"),
  4294. name: "Front",
  4295. image: {
  4296. source: "./media/characters/mountain/front.svg",
  4297. extra: 972 / 955,
  4298. bottom: 64 / 1036.6
  4299. }
  4300. },
  4301. back: {
  4302. height: math.unit(6, "feet"),
  4303. weight: math.unit(175, "lb"),
  4304. name: "Back",
  4305. image: {
  4306. source: "./media/characters/mountain/back.svg",
  4307. extra: 970 / 950,
  4308. bottom: 28.25 / 999
  4309. }
  4310. },
  4311. },
  4312. [
  4313. {
  4314. name: "Large",
  4315. height: math.unit(20, "meters")
  4316. },
  4317. {
  4318. name: "Macro",
  4319. height: math.unit(300, "meters")
  4320. },
  4321. {
  4322. name: "Gigamacro",
  4323. height: math.unit(10000, "km"),
  4324. default: true
  4325. },
  4326. {
  4327. name: "Examacro",
  4328. height: math.unit(10e9, "lightyears")
  4329. }
  4330. ]
  4331. ))
  4332. characterMakers.push(() => makeCharacter(
  4333. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4334. {
  4335. front: {
  4336. height: math.unit(8, "feet"),
  4337. weight: math.unit(500, "lb"),
  4338. name: "Front",
  4339. image: {
  4340. source: "./media/characters/rick/front.svg"
  4341. }
  4342. }
  4343. },
  4344. [
  4345. {
  4346. name: "Normal",
  4347. height: math.unit(8, "feet"),
  4348. default: true
  4349. },
  4350. {
  4351. name: "Macro",
  4352. height: math.unit(5, "km")
  4353. }
  4354. ]
  4355. ))
  4356. characterMakers.push(() => makeCharacter(
  4357. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4358. {
  4359. front: {
  4360. height: math.unit(8, "feet"),
  4361. weight: math.unit(120, "lb"),
  4362. name: "Front",
  4363. image: {
  4364. source: "./media/characters/ona/front.svg"
  4365. }
  4366. },
  4367. frontAlt: {
  4368. height: math.unit(8, "feet"),
  4369. weight: math.unit(120, "lb"),
  4370. name: "Front (Alt)",
  4371. image: {
  4372. source: "./media/characters/ona/front-alt.svg"
  4373. }
  4374. },
  4375. back: {
  4376. height: math.unit(8, "feet"),
  4377. weight: math.unit(120, "lb"),
  4378. name: "Back",
  4379. image: {
  4380. source: "./media/characters/ona/back.svg"
  4381. }
  4382. },
  4383. foot: {
  4384. height: math.unit(1.1, "feet"),
  4385. name: "Foot",
  4386. image: {
  4387. source: "./media/characters/ona/foot.svg"
  4388. }
  4389. }
  4390. },
  4391. [
  4392. {
  4393. name: "Megamacro",
  4394. height: math.unit(70, "km"),
  4395. default: true
  4396. },
  4397. {
  4398. name: "Gigamacro",
  4399. height: math.unit(681818, "miles")
  4400. },
  4401. {
  4402. name: "Examacro",
  4403. height: math.unit(3800000, "lightyears")
  4404. },
  4405. ]
  4406. ))
  4407. characterMakers.push(() => makeCharacter(
  4408. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4409. {
  4410. front: {
  4411. height: math.unit(12, "feet"),
  4412. weight: math.unit(3000, "lb"),
  4413. name: "Front",
  4414. image: {
  4415. source: "./media/characters/mech/front.svg",
  4416. extra: 2900 / 2770,
  4417. bottom: 110 / 3010
  4418. }
  4419. },
  4420. back: {
  4421. height: math.unit(12, "feet"),
  4422. weight: math.unit(3000, "lb"),
  4423. name: "Back",
  4424. image: {
  4425. source: "./media/characters/mech/back.svg",
  4426. extra: 3011 / 2890,
  4427. bottom: 94 / 3105
  4428. }
  4429. },
  4430. maw: {
  4431. height: math.unit(3.07, "feet"),
  4432. name: "Maw",
  4433. image: {
  4434. source: "./media/characters/mech/maw.svg"
  4435. }
  4436. },
  4437. head: {
  4438. height: math.unit(3.07, "feet"),
  4439. name: "Head",
  4440. image: {
  4441. source: "./media/characters/mech/head.svg"
  4442. }
  4443. },
  4444. dick: {
  4445. height: math.unit(1.43, "feet"),
  4446. name: "Dick",
  4447. image: {
  4448. source: "./media/characters/mech/dick.svg"
  4449. }
  4450. },
  4451. },
  4452. [
  4453. {
  4454. name: "Normal",
  4455. height: math.unit(12, "feet")
  4456. },
  4457. {
  4458. name: "Macro",
  4459. height: math.unit(300, "feet"),
  4460. default: true
  4461. },
  4462. {
  4463. name: "Macro+",
  4464. height: math.unit(1500, "feet")
  4465. },
  4466. ]
  4467. ))
  4468. characterMakers.push(() => makeCharacter(
  4469. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4470. {
  4471. front: {
  4472. height: math.unit(1.3, "meter"),
  4473. weight: math.unit(30, "kg"),
  4474. name: "Front",
  4475. image: {
  4476. source: "./media/characters/gregory/front.svg",
  4477. }
  4478. }
  4479. },
  4480. [
  4481. {
  4482. name: "Normal",
  4483. height: math.unit(1.3, "meter"),
  4484. default: true
  4485. },
  4486. {
  4487. name: "Macro",
  4488. height: math.unit(20, "meter")
  4489. }
  4490. ]
  4491. ))
  4492. characterMakers.push(() => makeCharacter(
  4493. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4494. {
  4495. front: {
  4496. height: math.unit(2.8, "meter"),
  4497. weight: math.unit(200, "kg"),
  4498. name: "Front",
  4499. image: {
  4500. source: "./media/characters/elory/front.svg",
  4501. }
  4502. }
  4503. },
  4504. [
  4505. {
  4506. name: "Normal",
  4507. height: math.unit(2.8, "meter"),
  4508. default: true
  4509. },
  4510. {
  4511. name: "Macro",
  4512. height: math.unit(38, "meter")
  4513. }
  4514. ]
  4515. ))
  4516. characterMakers.push(() => makeCharacter(
  4517. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4518. {
  4519. front: {
  4520. height: math.unit(470, "feet"),
  4521. weight: math.unit(924, "tons"),
  4522. name: "Front",
  4523. image: {
  4524. source: "./media/characters/angelpatamon/front.svg",
  4525. }
  4526. }
  4527. },
  4528. [
  4529. {
  4530. name: "Normal",
  4531. height: math.unit(470, "feet"),
  4532. default: true
  4533. },
  4534. {
  4535. name: "Deity Size I",
  4536. height: math.unit(28651.2, "km")
  4537. },
  4538. {
  4539. name: "Deity Size II",
  4540. height: math.unit(171907.2, "km")
  4541. }
  4542. ]
  4543. ))
  4544. characterMakers.push(() => makeCharacter(
  4545. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4546. {
  4547. side: {
  4548. height: math.unit(7.2, "meter"),
  4549. weight: math.unit(8.2, "tons"),
  4550. name: "Side",
  4551. image: {
  4552. source: "./media/characters/cryae/side.svg",
  4553. extra: 3500 / 1500
  4554. }
  4555. }
  4556. },
  4557. [
  4558. {
  4559. name: "Normal",
  4560. height: math.unit(7.2, "meter"),
  4561. default: true
  4562. }
  4563. ]
  4564. ))
  4565. characterMakers.push(() => makeCharacter(
  4566. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4567. {
  4568. front: {
  4569. height: math.unit(6, "feet"),
  4570. weight: math.unit(175, "lb"),
  4571. name: "Front",
  4572. image: {
  4573. source: "./media/characters/xera/front.svg",
  4574. extra: 2377 / 1972,
  4575. bottom: 75.5 / 2452
  4576. }
  4577. },
  4578. side: {
  4579. height: math.unit(6, "feet"),
  4580. weight: math.unit(175, "lb"),
  4581. name: "Side",
  4582. image: {
  4583. source: "./media/characters/xera/side.svg",
  4584. extra: 2345 / 2019,
  4585. bottom: 39.7 / 2384
  4586. }
  4587. },
  4588. back: {
  4589. height: math.unit(6, "feet"),
  4590. weight: math.unit(175, "lb"),
  4591. name: "Back",
  4592. image: {
  4593. source: "./media/characters/xera/back.svg",
  4594. extra: 2095 / 1984,
  4595. bottom: 67 / 2166
  4596. }
  4597. },
  4598. },
  4599. [
  4600. {
  4601. name: "Small",
  4602. height: math.unit(10, "feet")
  4603. },
  4604. {
  4605. name: "Macro",
  4606. height: math.unit(500, "meters"),
  4607. default: true
  4608. },
  4609. {
  4610. name: "Macro+",
  4611. height: math.unit(10, "km")
  4612. },
  4613. {
  4614. name: "Gigamacro",
  4615. height: math.unit(25000, "km")
  4616. },
  4617. {
  4618. name: "Teramacro",
  4619. height: math.unit(3e6, "km")
  4620. }
  4621. ]
  4622. ))
  4623. characterMakers.push(() => makeCharacter(
  4624. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4625. {
  4626. front: {
  4627. height: math.unit(6, "feet"),
  4628. weight: math.unit(175, "lb"),
  4629. name: "Front",
  4630. image: {
  4631. source: "./media/characters/nebula/front.svg",
  4632. extra: 2566 / 2362,
  4633. bottom: 81 / 2644
  4634. }
  4635. }
  4636. },
  4637. [
  4638. {
  4639. name: "Small",
  4640. height: math.unit(4.5, "meters")
  4641. },
  4642. {
  4643. name: "Macro",
  4644. height: math.unit(1500, "meters"),
  4645. default: true
  4646. },
  4647. {
  4648. name: "Megamacro",
  4649. height: math.unit(150, "km")
  4650. },
  4651. {
  4652. name: "Gigamacro",
  4653. height: math.unit(27000, "km")
  4654. }
  4655. ]
  4656. ))
  4657. characterMakers.push(() => makeCharacter(
  4658. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4659. {
  4660. front: {
  4661. height: math.unit(6, "feet"),
  4662. weight: math.unit(225, "lb"),
  4663. name: "Front",
  4664. image: {
  4665. source: "./media/characters/abysgar/front.svg",
  4666. extra: 1739/1614,
  4667. bottom: 71/1810
  4668. }
  4669. },
  4670. frontNsfw: {
  4671. height: math.unit(6, "feet"),
  4672. weight: math.unit(225, "lb"),
  4673. name: "Front (NSFW)",
  4674. image: {
  4675. source: "./media/characters/abysgar/front-nsfw.svg",
  4676. extra: 1739/1614,
  4677. bottom: 71/1810
  4678. }
  4679. },
  4680. back: {
  4681. height: math.unit(4.6, "feet"),
  4682. weight: math.unit(225, "lb"),
  4683. name: "Back",
  4684. image: {
  4685. source: "./media/characters/abysgar/back.svg",
  4686. extra: 1384/1327,
  4687. bottom: 0/1384
  4688. }
  4689. },
  4690. head: {
  4691. height: math.unit(1.25, "feet"),
  4692. name: "Head",
  4693. image: {
  4694. source: "./media/characters/abysgar/head.svg",
  4695. extra: 669/569,
  4696. bottom: 0/669
  4697. }
  4698. },
  4699. },
  4700. [
  4701. {
  4702. name: "Small",
  4703. height: math.unit(4.5, "meters")
  4704. },
  4705. {
  4706. name: "Macro",
  4707. height: math.unit(1250, "meters"),
  4708. default: true
  4709. },
  4710. {
  4711. name: "Megamacro",
  4712. height: math.unit(125, "km")
  4713. },
  4714. {
  4715. name: "Gigamacro",
  4716. height: math.unit(26000, "km")
  4717. }
  4718. ]
  4719. ))
  4720. characterMakers.push(() => makeCharacter(
  4721. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4722. {
  4723. front: {
  4724. height: math.unit(6, "feet"),
  4725. weight: math.unit(180, "lb"),
  4726. name: "Front",
  4727. image: {
  4728. source: "./media/characters/yakuz/front.svg"
  4729. }
  4730. }
  4731. },
  4732. [
  4733. {
  4734. name: "Small",
  4735. height: math.unit(5, "meters")
  4736. },
  4737. {
  4738. name: "Macro",
  4739. height: math.unit(1500, "meters"),
  4740. default: true
  4741. },
  4742. {
  4743. name: "Megamacro",
  4744. height: math.unit(200, "km")
  4745. },
  4746. {
  4747. name: "Gigamacro",
  4748. height: math.unit(100000, "km")
  4749. }
  4750. ]
  4751. ))
  4752. characterMakers.push(() => makeCharacter(
  4753. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4754. {
  4755. front: {
  4756. height: math.unit(6, "feet"),
  4757. weight: math.unit(175, "lb"),
  4758. name: "Front",
  4759. image: {
  4760. source: "./media/characters/mirova/front.svg",
  4761. extra: 3334 / 3071,
  4762. bottom: 42 / 3375.6
  4763. }
  4764. }
  4765. },
  4766. [
  4767. {
  4768. name: "Small",
  4769. height: math.unit(5, "meters")
  4770. },
  4771. {
  4772. name: "Macro",
  4773. height: math.unit(900, "meters"),
  4774. default: true
  4775. },
  4776. {
  4777. name: "Megamacro",
  4778. height: math.unit(135, "km")
  4779. },
  4780. {
  4781. name: "Gigamacro",
  4782. height: math.unit(20000, "km")
  4783. }
  4784. ]
  4785. ))
  4786. characterMakers.push(() => makeCharacter(
  4787. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4788. {
  4789. side: {
  4790. height: math.unit(28.35, "feet"),
  4791. weight: math.unit(99.75, "tons"),
  4792. name: "Side",
  4793. image: {
  4794. source: "./media/characters/asana-mech/side.svg",
  4795. extra: 923 / 699,
  4796. bottom: 50 / 975
  4797. }
  4798. },
  4799. chaingun: {
  4800. height: math.unit(7, "feet"),
  4801. weight: math.unit(2400, "lb"),
  4802. name: "Chaingun",
  4803. image: {
  4804. source: "./media/characters/asana-mech/chaingun.svg"
  4805. }
  4806. },
  4807. laser: {
  4808. height: math.unit(7.12, "feet"),
  4809. weight: math.unit(2000, "lb"),
  4810. name: "Laser",
  4811. image: {
  4812. source: "./media/characters/asana-mech/laser.svg"
  4813. }
  4814. },
  4815. },
  4816. [
  4817. {
  4818. name: "Normal",
  4819. height: math.unit(28.35, "feet"),
  4820. default: true
  4821. },
  4822. {
  4823. name: "Macro",
  4824. height: math.unit(2500, "feet")
  4825. },
  4826. {
  4827. name: "Megamacro",
  4828. height: math.unit(25, "miles")
  4829. },
  4830. {
  4831. name: "Examacro",
  4832. height: math.unit(6e8, "lightyears")
  4833. },
  4834. ]
  4835. ))
  4836. characterMakers.push(() => makeCharacter(
  4837. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4838. {
  4839. front: {
  4840. height: math.unit(5, "meters"),
  4841. weight: math.unit(1000, "kg"),
  4842. name: "Front",
  4843. image: {
  4844. source: "./media/characters/asche/front.svg",
  4845. extra: 1258 / 1190,
  4846. bottom: 47 / 1305
  4847. }
  4848. },
  4849. frontUnderwear: {
  4850. height: math.unit(5, "meters"),
  4851. weight: math.unit(1000, "kg"),
  4852. name: "Front (Underwear)",
  4853. image: {
  4854. source: "./media/characters/asche/front-underwear.svg",
  4855. extra: 1258 / 1190,
  4856. bottom: 47 / 1305
  4857. }
  4858. },
  4859. frontDressed: {
  4860. height: math.unit(5, "meters"),
  4861. weight: math.unit(1000, "kg"),
  4862. name: "Front (Dressed)",
  4863. image: {
  4864. source: "./media/characters/asche/front-dressed.svg",
  4865. extra: 1258 / 1190,
  4866. bottom: 47 / 1305
  4867. }
  4868. },
  4869. frontArmor: {
  4870. height: math.unit(5, "meters"),
  4871. weight: math.unit(1000, "kg"),
  4872. name: "Front (Armored)",
  4873. image: {
  4874. source: "./media/characters/asche/front-armored.svg",
  4875. extra: 1374 / 1308,
  4876. bottom: 23 / 1397
  4877. }
  4878. },
  4879. mp724: {
  4880. height: math.unit(0.96, "meters"),
  4881. weight: math.unit(38, "kg"),
  4882. name: "H&K MP724",
  4883. image: {
  4884. source: "./media/characters/asche/h&k-mp724.svg"
  4885. }
  4886. },
  4887. side: {
  4888. height: math.unit(5, "meters"),
  4889. weight: math.unit(1000, "kg"),
  4890. name: "Side",
  4891. image: {
  4892. source: "./media/characters/asche/side.svg",
  4893. extra: 1717 / 1609,
  4894. bottom: 0.005
  4895. }
  4896. },
  4897. back: {
  4898. height: math.unit(5, "meters"),
  4899. weight: math.unit(1000, "kg"),
  4900. name: "Back",
  4901. image: {
  4902. source: "./media/characters/asche/back.svg",
  4903. extra: 1570 / 1501
  4904. }
  4905. },
  4906. },
  4907. [
  4908. {
  4909. name: "DEFCON 5",
  4910. height: math.unit(5, "meters")
  4911. },
  4912. {
  4913. name: "DEFCON 4",
  4914. height: math.unit(500, "meters"),
  4915. default: true
  4916. },
  4917. {
  4918. name: "DEFCON 3",
  4919. height: math.unit(5, "km")
  4920. },
  4921. {
  4922. name: "DEFCON 2",
  4923. height: math.unit(500, "km")
  4924. },
  4925. {
  4926. name: "DEFCON 1",
  4927. height: math.unit(500000, "km")
  4928. },
  4929. {
  4930. name: "DEFCON 0",
  4931. height: math.unit(3, "gigaparsecs")
  4932. },
  4933. ]
  4934. ))
  4935. characterMakers.push(() => makeCharacter(
  4936. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4937. {
  4938. front: {
  4939. height: math.unit(2, "meters"),
  4940. weight: math.unit(76, "kg"),
  4941. name: "Front",
  4942. image: {
  4943. source: "./media/characters/gale/front.svg"
  4944. }
  4945. },
  4946. frontAlt1: {
  4947. height: math.unit(2, "meters"),
  4948. weight: math.unit(76, "kg"),
  4949. name: "Front (Alt 1)",
  4950. image: {
  4951. source: "./media/characters/gale/front-alt-1.svg"
  4952. }
  4953. },
  4954. frontAlt2: {
  4955. height: math.unit(2, "meters"),
  4956. weight: math.unit(76, "kg"),
  4957. name: "Front (Alt 2)",
  4958. image: {
  4959. source: "./media/characters/gale/front-alt-2.svg"
  4960. }
  4961. },
  4962. },
  4963. [
  4964. {
  4965. name: "Normal",
  4966. height: math.unit(7, "feet")
  4967. },
  4968. {
  4969. name: "Macro",
  4970. height: math.unit(150, "feet"),
  4971. default: true
  4972. },
  4973. {
  4974. name: "Macro+",
  4975. height: math.unit(300, "feet")
  4976. },
  4977. ]
  4978. ))
  4979. characterMakers.push(() => makeCharacter(
  4980. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4981. {
  4982. front: {
  4983. height: math.unit(5 + 10/12, "feet"),
  4984. weight: math.unit(67, "kg"),
  4985. name: "Front",
  4986. image: {
  4987. source: "./media/characters/draylen/front.svg",
  4988. extra: 832/777,
  4989. bottom: 85/917
  4990. }
  4991. }
  4992. },
  4993. [
  4994. {
  4995. name: "Normal",
  4996. height: math.unit(5 + 10/12, "feet")
  4997. },
  4998. {
  4999. name: "Macro",
  5000. height: math.unit(150, "feet"),
  5001. default: true
  5002. }
  5003. ]
  5004. ))
  5005. characterMakers.push(() => makeCharacter(
  5006. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5007. {
  5008. front: {
  5009. height: math.unit(7 + 9 / 12, "feet"),
  5010. weight: math.unit(379, "lbs"),
  5011. name: "Front",
  5012. image: {
  5013. source: "./media/characters/chez/front.svg"
  5014. }
  5015. },
  5016. side: {
  5017. height: math.unit(7 + 9 / 12, "feet"),
  5018. weight: math.unit(379, "lbs"),
  5019. name: "Side",
  5020. image: {
  5021. source: "./media/characters/chez/side.svg"
  5022. }
  5023. }
  5024. },
  5025. [
  5026. {
  5027. name: "Normal",
  5028. height: math.unit(7 + 9 / 12, "feet"),
  5029. default: true
  5030. },
  5031. {
  5032. name: "God King",
  5033. height: math.unit(9750000, "meters")
  5034. }
  5035. ]
  5036. ))
  5037. characterMakers.push(() => makeCharacter(
  5038. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5039. {
  5040. front: {
  5041. height: math.unit(6, "feet"),
  5042. weight: math.unit(275, "lbs"),
  5043. name: "Front",
  5044. image: {
  5045. source: "./media/characters/kaylum/front.svg",
  5046. bottom: 0.01,
  5047. extra: 1166 / 1031
  5048. }
  5049. },
  5050. frontWingless: {
  5051. height: math.unit(6, "feet"),
  5052. weight: math.unit(275, "lbs"),
  5053. name: "Front (Wingless)",
  5054. image: {
  5055. source: "./media/characters/kaylum/front-wingless.svg",
  5056. bottom: 0.01,
  5057. extra: 1117 / 1031
  5058. }
  5059. }
  5060. },
  5061. [
  5062. {
  5063. name: "Normal",
  5064. height: math.unit(3.05, "meters")
  5065. },
  5066. {
  5067. name: "Master",
  5068. height: math.unit(5.5, "meters")
  5069. },
  5070. {
  5071. name: "Rampage",
  5072. height: math.unit(19, "meters")
  5073. },
  5074. {
  5075. name: "Macro Lite",
  5076. height: math.unit(37, "meters")
  5077. },
  5078. {
  5079. name: "Hyper Predator",
  5080. height: math.unit(61, "meters")
  5081. },
  5082. {
  5083. name: "Macro",
  5084. height: math.unit(138, "meters"),
  5085. default: true
  5086. }
  5087. ]
  5088. ))
  5089. characterMakers.push(() => makeCharacter(
  5090. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5091. {
  5092. front: {
  5093. height: math.unit(5 + 5 / 12, "feet"),
  5094. weight: math.unit(120, "lbs"),
  5095. name: "Front",
  5096. image: {
  5097. source: "./media/characters/geta/front.svg",
  5098. extra: 1003/933,
  5099. bottom: 21/1024
  5100. }
  5101. },
  5102. paw: {
  5103. height: math.unit(0.35, "feet"),
  5104. name: "Paw",
  5105. image: {
  5106. source: "./media/characters/geta/paw.svg"
  5107. }
  5108. },
  5109. },
  5110. [
  5111. {
  5112. name: "Micro",
  5113. height: math.unit(3, "inches"),
  5114. default: true
  5115. },
  5116. {
  5117. name: "Normal",
  5118. height: math.unit(5 + 5 / 12, "feet")
  5119. }
  5120. ]
  5121. ))
  5122. characterMakers.push(() => makeCharacter(
  5123. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5124. {
  5125. front: {
  5126. height: math.unit(6, "feet"),
  5127. weight: math.unit(300, "lbs"),
  5128. name: "Front",
  5129. image: {
  5130. source: "./media/characters/tyrnn/front.svg"
  5131. }
  5132. }
  5133. },
  5134. [
  5135. {
  5136. name: "Main Height",
  5137. height: math.unit(355, "feet"),
  5138. default: true
  5139. },
  5140. {
  5141. name: "Fave. Height",
  5142. height: math.unit(2400, "feet")
  5143. }
  5144. ]
  5145. ))
  5146. characterMakers.push(() => makeCharacter(
  5147. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5148. {
  5149. front: {
  5150. height: math.unit(6, "feet"),
  5151. weight: math.unit(300, "lbs"),
  5152. name: "Front",
  5153. image: {
  5154. source: "./media/characters/appledectomy/front.svg"
  5155. }
  5156. }
  5157. },
  5158. [
  5159. {
  5160. name: "Macro",
  5161. height: math.unit(2500, "feet")
  5162. },
  5163. {
  5164. name: "Megamacro",
  5165. height: math.unit(50, "miles"),
  5166. default: true
  5167. },
  5168. {
  5169. name: "Gigamacro",
  5170. height: math.unit(5000, "miles")
  5171. },
  5172. {
  5173. name: "Teramacro",
  5174. height: math.unit(250000, "miles")
  5175. },
  5176. ]
  5177. ))
  5178. characterMakers.push(() => makeCharacter(
  5179. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5180. {
  5181. front: {
  5182. height: math.unit(6, "feet"),
  5183. weight: math.unit(200, "lbs"),
  5184. name: "Front",
  5185. image: {
  5186. source: "./media/characters/vulpes/front.svg",
  5187. extra: 573 / 543,
  5188. bottom: 0.033
  5189. }
  5190. },
  5191. side: {
  5192. height: math.unit(6, "feet"),
  5193. weight: math.unit(200, "lbs"),
  5194. name: "Side",
  5195. image: {
  5196. source: "./media/characters/vulpes/side.svg",
  5197. extra: 577 / 549,
  5198. bottom: 11 / 588
  5199. }
  5200. },
  5201. back: {
  5202. height: math.unit(6, "feet"),
  5203. weight: math.unit(200, "lbs"),
  5204. name: "Back",
  5205. image: {
  5206. source: "./media/characters/vulpes/back.svg",
  5207. extra: 573 / 549,
  5208. bottom: 20 / 593
  5209. }
  5210. },
  5211. feet: {
  5212. height: math.unit(1.276, "feet"),
  5213. name: "Feet",
  5214. image: {
  5215. source: "./media/characters/vulpes/feet.svg"
  5216. }
  5217. },
  5218. maw: {
  5219. height: math.unit(1.18, "feet"),
  5220. name: "Maw",
  5221. image: {
  5222. source: "./media/characters/vulpes/maw.svg"
  5223. }
  5224. },
  5225. },
  5226. [
  5227. {
  5228. name: "Micro",
  5229. height: math.unit(2, "inches")
  5230. },
  5231. {
  5232. name: "Normal",
  5233. height: math.unit(6.3, "feet")
  5234. },
  5235. {
  5236. name: "Macro",
  5237. height: math.unit(850, "feet")
  5238. },
  5239. {
  5240. name: "Megamacro",
  5241. height: math.unit(7500, "feet"),
  5242. default: true
  5243. },
  5244. {
  5245. name: "Gigamacro",
  5246. height: math.unit(570000, "miles")
  5247. }
  5248. ]
  5249. ))
  5250. characterMakers.push(() => makeCharacter(
  5251. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5252. {
  5253. front: {
  5254. height: math.unit(6, "feet"),
  5255. weight: math.unit(210, "lbs"),
  5256. name: "Front",
  5257. image: {
  5258. source: "./media/characters/rain-fallen/front.svg"
  5259. }
  5260. },
  5261. side: {
  5262. height: math.unit(6, "feet"),
  5263. weight: math.unit(210, "lbs"),
  5264. name: "Side",
  5265. image: {
  5266. source: "./media/characters/rain-fallen/side.svg"
  5267. }
  5268. },
  5269. back: {
  5270. height: math.unit(6, "feet"),
  5271. weight: math.unit(210, "lbs"),
  5272. name: "Back",
  5273. image: {
  5274. source: "./media/characters/rain-fallen/back.svg"
  5275. }
  5276. },
  5277. feral: {
  5278. height: math.unit(9, "feet"),
  5279. weight: math.unit(700, "lbs"),
  5280. name: "Feral",
  5281. image: {
  5282. source: "./media/characters/rain-fallen/feral.svg"
  5283. }
  5284. },
  5285. },
  5286. [
  5287. {
  5288. name: "Meddling with Mortals",
  5289. height: math.unit(8 + 8/12, "feet")
  5290. },
  5291. {
  5292. name: "Normal",
  5293. height: math.unit(5, "meter")
  5294. },
  5295. {
  5296. name: "Macro",
  5297. height: math.unit(150, "meter"),
  5298. default: true
  5299. },
  5300. {
  5301. name: "Megamacro",
  5302. height: math.unit(278e6, "meter")
  5303. },
  5304. {
  5305. name: "Gigamacro",
  5306. height: math.unit(2e9, "meter")
  5307. },
  5308. {
  5309. name: "Teramacro",
  5310. height: math.unit(8e12, "meter")
  5311. },
  5312. {
  5313. name: "Devourer",
  5314. height: math.unit(14, "zettameters")
  5315. },
  5316. {
  5317. name: "Scarlet King",
  5318. height: math.unit(18, "yottameters")
  5319. },
  5320. {
  5321. name: "Void",
  5322. height: math.unit(1e88, "yottameters")
  5323. }
  5324. ]
  5325. ))
  5326. characterMakers.push(() => makeCharacter(
  5327. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5328. {
  5329. standing: {
  5330. height: math.unit(6, "feet"),
  5331. weight: math.unit(180, "lbs"),
  5332. name: "Standing",
  5333. image: {
  5334. source: "./media/characters/zaakira/standing.svg",
  5335. extra: 1599/1504,
  5336. bottom: 39/1638
  5337. }
  5338. },
  5339. laying: {
  5340. height: math.unit(3.3, "feet"),
  5341. weight: math.unit(180, "lbs"),
  5342. name: "Laying",
  5343. image: {
  5344. source: "./media/characters/zaakira/laying.svg"
  5345. }
  5346. },
  5347. },
  5348. [
  5349. {
  5350. name: "Normal",
  5351. height: math.unit(12, "feet")
  5352. },
  5353. {
  5354. name: "Macro",
  5355. height: math.unit(279, "feet"),
  5356. default: true
  5357. }
  5358. ]
  5359. ))
  5360. characterMakers.push(() => makeCharacter(
  5361. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5362. {
  5363. femSfw: {
  5364. height: math.unit(8, "feet"),
  5365. weight: math.unit(350, "lb"),
  5366. name: "Fem",
  5367. image: {
  5368. source: "./media/characters/sigvald/fem-sfw.svg",
  5369. extra: 182 / 164,
  5370. bottom: 8.7 / 190.5
  5371. }
  5372. },
  5373. femNsfw: {
  5374. height: math.unit(8, "feet"),
  5375. weight: math.unit(350, "lb"),
  5376. name: "Fem (NSFW)",
  5377. image: {
  5378. source: "./media/characters/sigvald/fem-nsfw.svg",
  5379. extra: 182 / 164,
  5380. bottom: 8.7 / 190.5
  5381. }
  5382. },
  5383. maleNsfw: {
  5384. height: math.unit(8, "feet"),
  5385. weight: math.unit(350, "lb"),
  5386. name: "Male (NSFW)",
  5387. image: {
  5388. source: "./media/characters/sigvald/male-nsfw.svg",
  5389. extra: 182 / 164,
  5390. bottom: 8.7 / 190.5
  5391. }
  5392. },
  5393. hermNsfw: {
  5394. height: math.unit(8, "feet"),
  5395. weight: math.unit(350, "lb"),
  5396. name: "Herm (NSFW)",
  5397. image: {
  5398. source: "./media/characters/sigvald/herm-nsfw.svg",
  5399. extra: 182 / 164,
  5400. bottom: 8.7 / 190.5
  5401. }
  5402. },
  5403. dick: {
  5404. height: math.unit(2.36, "feet"),
  5405. name: "Dick",
  5406. image: {
  5407. source: "./media/characters/sigvald/dick.svg"
  5408. }
  5409. },
  5410. eye: {
  5411. height: math.unit(0.31, "feet"),
  5412. name: "Eye",
  5413. image: {
  5414. source: "./media/characters/sigvald/eye.svg"
  5415. }
  5416. },
  5417. mouth: {
  5418. height: math.unit(0.92, "feet"),
  5419. name: "Mouth",
  5420. image: {
  5421. source: "./media/characters/sigvald/mouth.svg"
  5422. }
  5423. },
  5424. paws: {
  5425. height: math.unit(2.2, "feet"),
  5426. name: "Paws",
  5427. image: {
  5428. source: "./media/characters/sigvald/paws.svg"
  5429. }
  5430. }
  5431. },
  5432. [
  5433. {
  5434. name: "Normal",
  5435. height: math.unit(8, "feet")
  5436. },
  5437. {
  5438. name: "Large",
  5439. height: math.unit(12, "feet")
  5440. },
  5441. {
  5442. name: "Larger",
  5443. height: math.unit(20, "feet")
  5444. },
  5445. {
  5446. name: "Macro",
  5447. height: math.unit(150, "feet")
  5448. },
  5449. {
  5450. name: "Macro+",
  5451. height: math.unit(200, "feet"),
  5452. default: true
  5453. },
  5454. ]
  5455. ))
  5456. characterMakers.push(() => makeCharacter(
  5457. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5458. {
  5459. side: {
  5460. height: math.unit(12, "feet"),
  5461. weight: math.unit(2000, "kg"),
  5462. name: "Side",
  5463. image: {
  5464. source: "./media/characters/scott/side.svg",
  5465. extra: 754 / 724,
  5466. bottom: 0.069
  5467. }
  5468. },
  5469. upright: {
  5470. height: math.unit(12, "feet"),
  5471. weight: math.unit(2000, "kg"),
  5472. name: "Upright",
  5473. image: {
  5474. source: "./media/characters/scott/upright.svg",
  5475. extra: 3881 / 3722,
  5476. bottom: 0.05
  5477. }
  5478. },
  5479. },
  5480. [
  5481. {
  5482. name: "Normal",
  5483. height: math.unit(12, "feet"),
  5484. default: true
  5485. },
  5486. ]
  5487. ))
  5488. characterMakers.push(() => makeCharacter(
  5489. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5490. {
  5491. side: {
  5492. height: math.unit(8, "meters"),
  5493. weight: math.unit(84755, "lbs"),
  5494. name: "Side",
  5495. image: {
  5496. source: "./media/characters/tobias/side.svg",
  5497. extra: 1474 / 1096,
  5498. bottom: 38.9 / 1513.1235
  5499. }
  5500. },
  5501. },
  5502. [
  5503. {
  5504. name: "Normal",
  5505. height: math.unit(8, "meters"),
  5506. default: true
  5507. },
  5508. ]
  5509. ))
  5510. characterMakers.push(() => makeCharacter(
  5511. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5512. {
  5513. front: {
  5514. height: math.unit(5.5, "feet"),
  5515. weight: math.unit(400, "lbs"),
  5516. name: "Front",
  5517. image: {
  5518. source: "./media/characters/kieran/front.svg",
  5519. extra: 2694 / 2364,
  5520. bottom: 217 / 2908
  5521. }
  5522. },
  5523. side: {
  5524. height: math.unit(5.5, "feet"),
  5525. weight: math.unit(400, "lbs"),
  5526. name: "Side",
  5527. image: {
  5528. source: "./media/characters/kieran/side.svg",
  5529. extra: 875 / 777,
  5530. bottom: 84.6 / 959
  5531. }
  5532. },
  5533. },
  5534. [
  5535. {
  5536. name: "Normal",
  5537. height: math.unit(5.5, "feet"),
  5538. default: true
  5539. },
  5540. ]
  5541. ))
  5542. characterMakers.push(() => makeCharacter(
  5543. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5544. {
  5545. side: {
  5546. height: math.unit(2, "meters"),
  5547. weight: math.unit(70, "kg"),
  5548. name: "Side",
  5549. image: {
  5550. source: "./media/characters/sanya/side.svg",
  5551. bottom: 0.02,
  5552. extra: 1.02
  5553. }
  5554. },
  5555. },
  5556. [
  5557. {
  5558. name: "Small",
  5559. height: math.unit(2, "meters")
  5560. },
  5561. {
  5562. name: "Normal",
  5563. height: math.unit(3, "meters")
  5564. },
  5565. {
  5566. name: "Macro",
  5567. height: math.unit(16, "meters"),
  5568. default: true
  5569. },
  5570. ]
  5571. ))
  5572. characterMakers.push(() => makeCharacter(
  5573. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5574. {
  5575. front: {
  5576. height: math.unit(2, "meters"),
  5577. weight: math.unit(120, "kg"),
  5578. name: "Front",
  5579. image: {
  5580. source: "./media/characters/miranda/front.svg",
  5581. extra: 195 / 185,
  5582. bottom: 10.9 / 206.5
  5583. }
  5584. },
  5585. back: {
  5586. height: math.unit(2, "meters"),
  5587. weight: math.unit(120, "kg"),
  5588. name: "Back",
  5589. image: {
  5590. source: "./media/characters/miranda/back.svg",
  5591. extra: 201 / 193,
  5592. bottom: 2.3 / 203.7
  5593. }
  5594. },
  5595. },
  5596. [
  5597. {
  5598. name: "Normal",
  5599. height: math.unit(10, "feet"),
  5600. default: true
  5601. }
  5602. ]
  5603. ))
  5604. characterMakers.push(() => makeCharacter(
  5605. { name: "James", species: ["deer"], tags: ["anthro"] },
  5606. {
  5607. side: {
  5608. height: math.unit(2, "meters"),
  5609. weight: math.unit(100, "kg"),
  5610. name: "Front",
  5611. image: {
  5612. source: "./media/characters/james/front.svg",
  5613. extra: 10 / 8.5
  5614. }
  5615. },
  5616. },
  5617. [
  5618. {
  5619. name: "Normal",
  5620. height: math.unit(8.5, "feet"),
  5621. default: true
  5622. }
  5623. ]
  5624. ))
  5625. characterMakers.push(() => makeCharacter(
  5626. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5627. {
  5628. side: {
  5629. height: math.unit(9.5, "feet"),
  5630. weight: math.unit(2500, "lbs"),
  5631. name: "Side",
  5632. image: {
  5633. source: "./media/characters/heather/side.svg"
  5634. }
  5635. },
  5636. },
  5637. [
  5638. {
  5639. name: "Normal",
  5640. height: math.unit(9.5, "feet"),
  5641. default: true
  5642. }
  5643. ]
  5644. ))
  5645. characterMakers.push(() => makeCharacter(
  5646. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5647. {
  5648. side: {
  5649. height: math.unit(6.5, "feet"),
  5650. weight: math.unit(400, "lbs"),
  5651. name: "Side",
  5652. image: {
  5653. source: "./media/characters/lukas/side.svg",
  5654. extra: 7.25 / 6.5
  5655. }
  5656. },
  5657. },
  5658. [
  5659. {
  5660. name: "Normal",
  5661. height: math.unit(6.5, "feet"),
  5662. default: true
  5663. }
  5664. ]
  5665. ))
  5666. characterMakers.push(() => makeCharacter(
  5667. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5668. {
  5669. side: {
  5670. height: math.unit(5, "feet"),
  5671. weight: math.unit(3000, "lbs"),
  5672. name: "Side",
  5673. image: {
  5674. source: "./media/characters/louise/side.svg"
  5675. }
  5676. },
  5677. },
  5678. [
  5679. {
  5680. name: "Normal",
  5681. height: math.unit(5, "feet"),
  5682. default: true
  5683. }
  5684. ]
  5685. ))
  5686. characterMakers.push(() => makeCharacter(
  5687. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5688. {
  5689. side: {
  5690. height: math.unit(6, "feet"),
  5691. weight: math.unit(150, "lbs"),
  5692. name: "Side",
  5693. image: {
  5694. source: "./media/characters/ramona/side.svg",
  5695. extra: 871/854,
  5696. bottom: 41/912
  5697. }
  5698. },
  5699. },
  5700. [
  5701. {
  5702. name: "Normal",
  5703. height: math.unit(5.3, "meters"),
  5704. default: true
  5705. },
  5706. {
  5707. name: "Macro",
  5708. height: math.unit(20, "stories")
  5709. },
  5710. {
  5711. name: "Macro+",
  5712. height: math.unit(50, "stories")
  5713. },
  5714. ]
  5715. ))
  5716. characterMakers.push(() => makeCharacter(
  5717. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5718. {
  5719. standing: {
  5720. height: math.unit(5.75, "feet"),
  5721. weight: math.unit(160, "lbs"),
  5722. name: "Standing",
  5723. image: {
  5724. source: "./media/characters/deerpuff/standing.svg",
  5725. extra: 682 / 624
  5726. }
  5727. },
  5728. sitting: {
  5729. height: math.unit(5.75 / 1.79, "feet"),
  5730. weight: math.unit(160, "lbs"),
  5731. name: "Sitting",
  5732. image: {
  5733. source: "./media/characters/deerpuff/sitting.svg",
  5734. bottom: 44 / 400,
  5735. extra: 1
  5736. }
  5737. },
  5738. taurLaying: {
  5739. height: math.unit(6, "feet"),
  5740. weight: math.unit(400, "lbs"),
  5741. name: "Taur (Laying)",
  5742. image: {
  5743. source: "./media/characters/deerpuff/taur-laying.svg"
  5744. }
  5745. },
  5746. },
  5747. [
  5748. {
  5749. name: "Puffball",
  5750. height: math.unit(6, "inches")
  5751. },
  5752. {
  5753. name: "Normalpuff",
  5754. height: math.unit(5.75, "feet")
  5755. },
  5756. {
  5757. name: "Macropuff",
  5758. height: math.unit(1500, "feet"),
  5759. default: true
  5760. },
  5761. {
  5762. name: "Megapuff",
  5763. height: math.unit(500, "miles")
  5764. },
  5765. {
  5766. name: "Gigapuff",
  5767. height: math.unit(250000, "miles")
  5768. },
  5769. {
  5770. name: "Omegapuff",
  5771. height: math.unit(1000, "lightyears")
  5772. },
  5773. ]
  5774. ))
  5775. characterMakers.push(() => makeCharacter(
  5776. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5777. {
  5778. stomping: {
  5779. height: math.unit(6, "feet"),
  5780. weight: math.unit(170, "lbs"),
  5781. name: "Stomping",
  5782. image: {
  5783. source: "./media/characters/vivian/stomping.svg"
  5784. }
  5785. },
  5786. sitting: {
  5787. height: math.unit(6 / 1.75, "feet"),
  5788. weight: math.unit(170, "lbs"),
  5789. name: "Sitting",
  5790. image: {
  5791. source: "./media/characters/vivian/sitting.svg",
  5792. bottom: 1 / 6.4,
  5793. extra: 1,
  5794. }
  5795. },
  5796. },
  5797. [
  5798. {
  5799. name: "Normal",
  5800. height: math.unit(7, "feet"),
  5801. default: true
  5802. },
  5803. {
  5804. name: "Macro",
  5805. height: math.unit(10, "stories")
  5806. },
  5807. {
  5808. name: "Macro+",
  5809. height: math.unit(30, "stories")
  5810. },
  5811. {
  5812. name: "Megamacro",
  5813. height: math.unit(10, "miles")
  5814. },
  5815. {
  5816. name: "Megamacro+",
  5817. height: math.unit(2750000, "meters")
  5818. },
  5819. ]
  5820. ))
  5821. characterMakers.push(() => makeCharacter(
  5822. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5823. {
  5824. front: {
  5825. height: math.unit(6, "feet"),
  5826. weight: math.unit(160, "lbs"),
  5827. name: "Front",
  5828. image: {
  5829. source: "./media/characters/prince/front.svg",
  5830. extra: 3400 / 3000
  5831. }
  5832. },
  5833. jumping: {
  5834. height: math.unit(6, "feet"),
  5835. weight: math.unit(160, "lbs"),
  5836. name: "Jumping",
  5837. image: {
  5838. source: "./media/characters/prince/jump.svg",
  5839. extra: 2555 / 2134
  5840. }
  5841. },
  5842. },
  5843. [
  5844. {
  5845. name: "Normal",
  5846. height: math.unit(7.75, "feet"),
  5847. default: true
  5848. },
  5849. {
  5850. name: "Not cute",
  5851. height: math.unit(17, "feet")
  5852. },
  5853. {
  5854. name: "I said NOT",
  5855. height: math.unit(91, "feet")
  5856. },
  5857. {
  5858. name: "Please stop",
  5859. height: math.unit(560, "feet")
  5860. },
  5861. {
  5862. name: "What have you done",
  5863. height: math.unit(2200, "feet")
  5864. },
  5865. {
  5866. name: "Deer God",
  5867. height: math.unit(3.6, "miles")
  5868. },
  5869. ]
  5870. ))
  5871. characterMakers.push(() => makeCharacter(
  5872. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5873. {
  5874. standing: {
  5875. height: math.unit(6, "feet"),
  5876. weight: math.unit(300, "lbs"),
  5877. name: "Standing",
  5878. image: {
  5879. source: "./media/characters/psymon/standing.svg",
  5880. extra: 1888 / 1810,
  5881. bottom: 0.05
  5882. }
  5883. },
  5884. slithering: {
  5885. height: math.unit(6, "feet"),
  5886. weight: math.unit(300, "lbs"),
  5887. name: "Slithering",
  5888. image: {
  5889. source: "./media/characters/psymon/slithering.svg",
  5890. extra: 1330 / 1224
  5891. }
  5892. },
  5893. slitheringAlt: {
  5894. height: math.unit(6, "feet"),
  5895. weight: math.unit(300, "lbs"),
  5896. name: "Slithering (Alt)",
  5897. image: {
  5898. source: "./media/characters/psymon/slithering-alt.svg",
  5899. extra: 1330 / 1224
  5900. }
  5901. },
  5902. },
  5903. [
  5904. {
  5905. name: "Normal",
  5906. height: math.unit(11.25, "feet"),
  5907. default: true
  5908. },
  5909. {
  5910. name: "Large",
  5911. height: math.unit(27, "feet")
  5912. },
  5913. {
  5914. name: "Giant",
  5915. height: math.unit(87, "feet")
  5916. },
  5917. {
  5918. name: "Macro",
  5919. height: math.unit(365, "feet")
  5920. },
  5921. {
  5922. name: "Megamacro",
  5923. height: math.unit(3, "miles")
  5924. },
  5925. {
  5926. name: "World Serpent",
  5927. height: math.unit(8000, "miles")
  5928. },
  5929. ]
  5930. ))
  5931. characterMakers.push(() => makeCharacter(
  5932. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5933. {
  5934. front: {
  5935. height: math.unit(6, "feet"),
  5936. weight: math.unit(180, "lbs"),
  5937. name: "Front",
  5938. image: {
  5939. source: "./media/characters/daimos/front.svg",
  5940. extra: 4160 / 3897,
  5941. bottom: 0.021
  5942. }
  5943. }
  5944. },
  5945. [
  5946. {
  5947. name: "Normal",
  5948. height: math.unit(8, "feet"),
  5949. default: true
  5950. },
  5951. {
  5952. name: "Big Dog",
  5953. height: math.unit(22, "feet")
  5954. },
  5955. {
  5956. name: "Macro",
  5957. height: math.unit(127, "feet")
  5958. },
  5959. {
  5960. name: "Megamacro",
  5961. height: math.unit(3600, "feet")
  5962. },
  5963. ]
  5964. ))
  5965. characterMakers.push(() => makeCharacter(
  5966. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5967. {
  5968. side: {
  5969. height: math.unit(6, "feet"),
  5970. weight: math.unit(180, "lbs"),
  5971. name: "Side",
  5972. image: {
  5973. source: "./media/characters/blake/side.svg",
  5974. extra: 1212 / 1120,
  5975. bottom: 0.05
  5976. }
  5977. },
  5978. crouched: {
  5979. height: math.unit(6 * 0.57, "feet"),
  5980. weight: math.unit(180, "lbs"),
  5981. name: "Crouched",
  5982. image: {
  5983. source: "./media/characters/blake/crouched.svg",
  5984. extra: 840 / 587,
  5985. bottom: 0.04
  5986. }
  5987. },
  5988. bent: {
  5989. height: math.unit(6 * 0.75, "feet"),
  5990. weight: math.unit(180, "lbs"),
  5991. name: "Bent",
  5992. image: {
  5993. source: "./media/characters/blake/bent.svg",
  5994. extra: 592 / 544,
  5995. bottom: 0.035
  5996. }
  5997. },
  5998. },
  5999. [
  6000. {
  6001. name: "Normal",
  6002. height: math.unit(8 + 1 / 6, "feet"),
  6003. default: true
  6004. },
  6005. {
  6006. name: "Big Backside",
  6007. height: math.unit(37, "feet")
  6008. },
  6009. {
  6010. name: "Subway Shredder",
  6011. height: math.unit(72, "feet")
  6012. },
  6013. {
  6014. name: "City Carver",
  6015. height: math.unit(1675, "feet")
  6016. },
  6017. {
  6018. name: "Tectonic Tweaker",
  6019. height: math.unit(2300, "miles")
  6020. },
  6021. ]
  6022. ))
  6023. characterMakers.push(() => makeCharacter(
  6024. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6025. {
  6026. front: {
  6027. height: math.unit(6, "feet"),
  6028. weight: math.unit(180, "lbs"),
  6029. name: "Front",
  6030. image: {
  6031. source: "./media/characters/guisetto/front.svg",
  6032. extra: 856 / 817,
  6033. bottom: 0.06
  6034. }
  6035. },
  6036. airborne: {
  6037. height: math.unit(6, "feet"),
  6038. weight: math.unit(180, "lbs"),
  6039. name: "Airborne",
  6040. image: {
  6041. source: "./media/characters/guisetto/airborne.svg",
  6042. extra: 584 / 525
  6043. }
  6044. },
  6045. },
  6046. [
  6047. {
  6048. name: "Normal",
  6049. height: math.unit(10 + 11 / 12, "feet"),
  6050. default: true
  6051. },
  6052. {
  6053. name: "Large",
  6054. height: math.unit(35, "feet")
  6055. },
  6056. {
  6057. name: "Macro",
  6058. height: math.unit(475, "feet")
  6059. },
  6060. ]
  6061. ))
  6062. characterMakers.push(() => makeCharacter(
  6063. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6064. {
  6065. front: {
  6066. height: math.unit(6, "feet"),
  6067. weight: math.unit(180, "lbs"),
  6068. name: "Front",
  6069. image: {
  6070. source: "./media/characters/luxor/front.svg",
  6071. extra: 2940 / 2152
  6072. }
  6073. },
  6074. back: {
  6075. height: math.unit(6, "feet"),
  6076. weight: math.unit(180, "lbs"),
  6077. name: "Back",
  6078. image: {
  6079. source: "./media/characters/luxor/back.svg",
  6080. extra: 1083 / 960
  6081. }
  6082. },
  6083. },
  6084. [
  6085. {
  6086. name: "Normal",
  6087. height: math.unit(5 + 5 / 6, "feet"),
  6088. default: true
  6089. },
  6090. {
  6091. name: "Lamp",
  6092. height: math.unit(50, "feet")
  6093. },
  6094. {
  6095. name: "Lämp",
  6096. height: math.unit(300, "feet")
  6097. },
  6098. {
  6099. name: "The sun is a lamp",
  6100. height: math.unit(250000, "miles")
  6101. },
  6102. ]
  6103. ))
  6104. characterMakers.push(() => makeCharacter(
  6105. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6106. {
  6107. front: {
  6108. height: math.unit(6, "feet"),
  6109. weight: math.unit(50, "lbs"),
  6110. name: "Front",
  6111. image: {
  6112. source: "./media/characters/huoyan/front.svg"
  6113. }
  6114. },
  6115. side: {
  6116. height: math.unit(6, "feet"),
  6117. weight: math.unit(180, "lbs"),
  6118. name: "Side",
  6119. image: {
  6120. source: "./media/characters/huoyan/side.svg"
  6121. }
  6122. },
  6123. },
  6124. [
  6125. {
  6126. name: "Chef",
  6127. height: math.unit(9, "feet")
  6128. },
  6129. {
  6130. name: "Normal",
  6131. height: math.unit(65, "feet"),
  6132. default: true
  6133. },
  6134. {
  6135. name: "Macro",
  6136. height: math.unit(780, "feet")
  6137. },
  6138. {
  6139. name: "Flaming Mountain",
  6140. height: math.unit(4.8, "miles")
  6141. },
  6142. {
  6143. name: "Celestial",
  6144. height: math.unit(765000, "miles")
  6145. },
  6146. ]
  6147. ))
  6148. characterMakers.push(() => makeCharacter(
  6149. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6150. {
  6151. front: {
  6152. height: math.unit(5 + 3 / 4, "feet"),
  6153. weight: math.unit(120, "lbs"),
  6154. name: "Front",
  6155. image: {
  6156. source: "./media/characters/tails/front.svg"
  6157. }
  6158. }
  6159. },
  6160. [
  6161. {
  6162. name: "Normal",
  6163. height: math.unit(5 + 3 / 4, "feet"),
  6164. default: true
  6165. }
  6166. ]
  6167. ))
  6168. characterMakers.push(() => makeCharacter(
  6169. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6170. {
  6171. front: {
  6172. height: math.unit(4, "feet"),
  6173. weight: math.unit(50, "lbs"),
  6174. name: "Front",
  6175. image: {
  6176. source: "./media/characters/rainy/front.svg"
  6177. }
  6178. }
  6179. },
  6180. [
  6181. {
  6182. name: "Macro",
  6183. height: math.unit(800, "feet"),
  6184. default: true
  6185. }
  6186. ]
  6187. ))
  6188. characterMakers.push(() => makeCharacter(
  6189. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6190. {
  6191. front: {
  6192. height: math.unit(6, "feet"),
  6193. weight: math.unit(150, "lbs"),
  6194. name: "Front",
  6195. image: {
  6196. source: "./media/characters/rainier/front.svg"
  6197. }
  6198. }
  6199. },
  6200. [
  6201. {
  6202. name: "Micro",
  6203. height: math.unit(2, "mm"),
  6204. default: true
  6205. }
  6206. ]
  6207. ))
  6208. characterMakers.push(() => makeCharacter(
  6209. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6210. {
  6211. front: {
  6212. height: math.unit(8 + 4/12, "feet"),
  6213. weight: math.unit(450, "kilograms"),
  6214. volume: math.unit(5, "cups"),
  6215. name: "Front",
  6216. image: {
  6217. source: "./media/characters/andy-renard/front.svg",
  6218. extra: 1839/1726,
  6219. bottom: 134/1973
  6220. }
  6221. },
  6222. back: {
  6223. height: math.unit(8 + 4/12, "feet"),
  6224. weight: math.unit(450, "kilograms"),
  6225. volume: math.unit(5, "cups"),
  6226. name: "Back",
  6227. image: {
  6228. source: "./media/characters/andy-renard/back.svg",
  6229. extra: 1838/1710,
  6230. bottom: 105/1943
  6231. }
  6232. },
  6233. },
  6234. [
  6235. {
  6236. name: "Tall",
  6237. height: math.unit(8 + 4/12, "feet")
  6238. },
  6239. {
  6240. name: "Mini Macro",
  6241. height: math.unit(15, "feet"),
  6242. default: true
  6243. },
  6244. {
  6245. name: "Macro",
  6246. height: math.unit(100, "feet")
  6247. },
  6248. {
  6249. name: "Mega Macro",
  6250. height: math.unit(1000, "feet")
  6251. },
  6252. {
  6253. name: "Giga Macro",
  6254. height: math.unit(10, "miles")
  6255. },
  6256. {
  6257. name: "God Macro",
  6258. height: math.unit(1, "multiverse")
  6259. },
  6260. ]
  6261. ))
  6262. characterMakers.push(() => makeCharacter(
  6263. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6264. {
  6265. front: {
  6266. height: math.unit(6, "feet"),
  6267. weight: math.unit(210, "lbs"),
  6268. name: "Front",
  6269. image: {
  6270. source: "./media/characters/cimmaron/front-sfw.svg",
  6271. extra: 701 / 676,
  6272. bottom: 0.046
  6273. }
  6274. },
  6275. back: {
  6276. height: math.unit(6, "feet"),
  6277. weight: math.unit(210, "lbs"),
  6278. name: "Back",
  6279. image: {
  6280. source: "./media/characters/cimmaron/back-sfw.svg",
  6281. extra: 701 / 676,
  6282. bottom: 0.046
  6283. }
  6284. },
  6285. frontNsfw: {
  6286. height: math.unit(6, "feet"),
  6287. weight: math.unit(210, "lbs"),
  6288. name: "Front (NSFW)",
  6289. image: {
  6290. source: "./media/characters/cimmaron/front-nsfw.svg",
  6291. extra: 701 / 676,
  6292. bottom: 0.046
  6293. }
  6294. },
  6295. backNsfw: {
  6296. height: math.unit(6, "feet"),
  6297. weight: math.unit(210, "lbs"),
  6298. name: "Back (NSFW)",
  6299. image: {
  6300. source: "./media/characters/cimmaron/back-nsfw.svg",
  6301. extra: 701 / 676,
  6302. bottom: 0.046
  6303. }
  6304. },
  6305. dick: {
  6306. height: math.unit(1.714, "feet"),
  6307. name: "Dick",
  6308. image: {
  6309. source: "./media/characters/cimmaron/dick.svg"
  6310. }
  6311. },
  6312. },
  6313. [
  6314. {
  6315. name: "Normal",
  6316. height: math.unit(6, "feet"),
  6317. default: true
  6318. },
  6319. {
  6320. name: "Macro Mayor",
  6321. height: math.unit(350, "meters")
  6322. },
  6323. ]
  6324. ))
  6325. characterMakers.push(() => makeCharacter(
  6326. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6327. {
  6328. front: {
  6329. height: math.unit(6, "feet"),
  6330. weight: math.unit(200, "lbs"),
  6331. name: "Front",
  6332. image: {
  6333. source: "./media/characters/akari/front.svg",
  6334. extra: 962 / 901,
  6335. bottom: 0.04
  6336. }
  6337. }
  6338. },
  6339. [
  6340. {
  6341. name: "Micro",
  6342. height: math.unit(5, "inches"),
  6343. default: true
  6344. },
  6345. {
  6346. name: "Normal",
  6347. height: math.unit(7, "feet")
  6348. },
  6349. ]
  6350. ))
  6351. characterMakers.push(() => makeCharacter(
  6352. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6353. {
  6354. front: {
  6355. height: math.unit(6, "feet"),
  6356. weight: math.unit(140, "lbs"),
  6357. name: "Front",
  6358. image: {
  6359. source: "./media/characters/cynosura/front.svg",
  6360. extra: 896 / 847
  6361. }
  6362. },
  6363. back: {
  6364. height: math.unit(6, "feet"),
  6365. weight: math.unit(140, "lbs"),
  6366. name: "Back",
  6367. image: {
  6368. source: "./media/characters/cynosura/back.svg",
  6369. extra: 1365 / 1250
  6370. }
  6371. },
  6372. },
  6373. [
  6374. {
  6375. name: "Micro",
  6376. height: math.unit(4, "inches")
  6377. },
  6378. {
  6379. name: "Normal",
  6380. height: math.unit(5.75, "feet"),
  6381. default: true
  6382. },
  6383. {
  6384. name: "Tall",
  6385. height: math.unit(10, "feet")
  6386. },
  6387. {
  6388. name: "Big",
  6389. height: math.unit(20, "feet")
  6390. },
  6391. {
  6392. name: "Macro",
  6393. height: math.unit(50, "feet")
  6394. },
  6395. ]
  6396. ))
  6397. characterMakers.push(() => makeCharacter(
  6398. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6399. {
  6400. front: {
  6401. height: math.unit(13 + 2/12, "feet"),
  6402. weight: math.unit(800, "kg"),
  6403. name: "Front",
  6404. image: {
  6405. source: "./media/characters/gin/front.svg",
  6406. extra: 1312/1191,
  6407. bottom: 45/1357
  6408. }
  6409. },
  6410. mouth: {
  6411. height: math.unit(2.39 * 1.8, "feet"),
  6412. name: "Mouth",
  6413. image: {
  6414. source: "./media/characters/gin/mouth.svg"
  6415. }
  6416. },
  6417. hand: {
  6418. height: math.unit(1.57 * 2.19, "feet"),
  6419. name: "Hand",
  6420. image: {
  6421. source: "./media/characters/gin/hand.svg"
  6422. }
  6423. },
  6424. foot: {
  6425. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6426. name: "Foot",
  6427. image: {
  6428. source: "./media/characters/gin/foot.svg"
  6429. }
  6430. },
  6431. sole: {
  6432. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6433. name: "Sole",
  6434. image: {
  6435. source: "./media/characters/gin/sole.svg"
  6436. }
  6437. },
  6438. },
  6439. [
  6440. {
  6441. name: "Very Small",
  6442. height: math.unit(13 + 2 / 12, "feet")
  6443. },
  6444. {
  6445. name: "Micro",
  6446. height: math.unit(600, "miles")
  6447. },
  6448. {
  6449. name: "Regular",
  6450. height: math.unit(20, "earths"),
  6451. default: true
  6452. },
  6453. {
  6454. name: "Macro",
  6455. height: math.unit(2.2, "solarradii")
  6456. },
  6457. {
  6458. name: "Teramacro",
  6459. height: math.unit(1.2, "galaxies")
  6460. },
  6461. {
  6462. name: "Omegamacro",
  6463. height: math.unit(200, "universes")
  6464. },
  6465. ]
  6466. ))
  6467. characterMakers.push(() => makeCharacter(
  6468. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6469. {
  6470. front: {
  6471. height: math.unit(6 + 1 / 6, "feet"),
  6472. weight: math.unit(178, "lbs"),
  6473. name: "Front",
  6474. image: {
  6475. source: "./media/characters/guy/front.svg"
  6476. }
  6477. }
  6478. },
  6479. [
  6480. {
  6481. name: "Normal",
  6482. height: math.unit(6 + 1 / 6, "feet"),
  6483. default: true
  6484. },
  6485. {
  6486. name: "Large",
  6487. height: math.unit(25 + 7 / 12, "feet")
  6488. },
  6489. {
  6490. name: "Macro",
  6491. height: math.unit(60 + 9 / 12, "feet")
  6492. },
  6493. {
  6494. name: "Macro+",
  6495. height: math.unit(246, "feet")
  6496. },
  6497. {
  6498. name: "Macro++",
  6499. height: math.unit(878, "feet")
  6500. }
  6501. ]
  6502. ))
  6503. characterMakers.push(() => makeCharacter(
  6504. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6505. {
  6506. front: {
  6507. height: math.unit(9, "feet"),
  6508. weight: math.unit(800, "lbs"),
  6509. name: "Front",
  6510. image: {
  6511. source: "./media/characters/tiberius/front.svg",
  6512. extra: 2295 / 2071
  6513. }
  6514. },
  6515. back: {
  6516. height: math.unit(9, "feet"),
  6517. weight: math.unit(800, "lbs"),
  6518. name: "Back",
  6519. image: {
  6520. source: "./media/characters/tiberius/back.svg",
  6521. extra: 2373 / 2160
  6522. }
  6523. },
  6524. },
  6525. [
  6526. {
  6527. name: "Normal",
  6528. height: math.unit(9, "feet"),
  6529. default: true
  6530. }
  6531. ]
  6532. ))
  6533. characterMakers.push(() => makeCharacter(
  6534. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6535. {
  6536. front: {
  6537. height: math.unit(6, "feet"),
  6538. weight: math.unit(600, "lbs"),
  6539. name: "Front",
  6540. image: {
  6541. source: "./media/characters/surgo/front.svg",
  6542. extra: 3591 / 2227
  6543. }
  6544. },
  6545. back: {
  6546. height: math.unit(6, "feet"),
  6547. weight: math.unit(600, "lbs"),
  6548. name: "Back",
  6549. image: {
  6550. source: "./media/characters/surgo/back.svg",
  6551. extra: 3557 / 2228
  6552. }
  6553. },
  6554. laying: {
  6555. height: math.unit(6 * 0.85, "feet"),
  6556. weight: math.unit(600, "lbs"),
  6557. name: "Laying",
  6558. image: {
  6559. source: "./media/characters/surgo/laying.svg"
  6560. }
  6561. },
  6562. },
  6563. [
  6564. {
  6565. name: "Normal",
  6566. height: math.unit(6, "feet"),
  6567. default: true
  6568. }
  6569. ]
  6570. ))
  6571. characterMakers.push(() => makeCharacter(
  6572. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6573. {
  6574. side: {
  6575. height: math.unit(6, "feet"),
  6576. weight: math.unit(150, "lbs"),
  6577. name: "Side",
  6578. image: {
  6579. source: "./media/characters/cibus/side.svg",
  6580. extra: 800 / 400
  6581. }
  6582. },
  6583. },
  6584. [
  6585. {
  6586. name: "Normal",
  6587. height: math.unit(6, "feet"),
  6588. default: true
  6589. }
  6590. ]
  6591. ))
  6592. characterMakers.push(() => makeCharacter(
  6593. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6594. {
  6595. front: {
  6596. height: math.unit(6, "feet"),
  6597. weight: math.unit(240, "lbs"),
  6598. name: "Front",
  6599. image: {
  6600. source: "./media/characters/nibbles/front.svg"
  6601. }
  6602. },
  6603. side: {
  6604. height: math.unit(6, "feet"),
  6605. weight: math.unit(240, "lbs"),
  6606. name: "Side",
  6607. image: {
  6608. source: "./media/characters/nibbles/side.svg"
  6609. }
  6610. },
  6611. },
  6612. [
  6613. {
  6614. name: "Normal",
  6615. height: math.unit(9, "feet"),
  6616. default: true
  6617. }
  6618. ]
  6619. ))
  6620. characterMakers.push(() => makeCharacter(
  6621. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6622. {
  6623. side: {
  6624. height: math.unit(5 + 1 / 6, "feet"),
  6625. weight: math.unit(130, "lbs"),
  6626. name: "Side",
  6627. image: {
  6628. source: "./media/characters/rikky/side.svg",
  6629. extra: 851 / 801
  6630. }
  6631. },
  6632. },
  6633. [
  6634. {
  6635. name: "Normal",
  6636. height: math.unit(5 + 1 / 6, "feet")
  6637. },
  6638. {
  6639. name: "Macro",
  6640. height: math.unit(152, "feet"),
  6641. default: true
  6642. },
  6643. {
  6644. name: "Megamacro",
  6645. height: math.unit(7, "miles")
  6646. }
  6647. ]
  6648. ))
  6649. characterMakers.push(() => makeCharacter(
  6650. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6651. {
  6652. side: {
  6653. height: math.unit(370, "cm"),
  6654. weight: math.unit(350, "lbs"),
  6655. name: "Side",
  6656. image: {
  6657. source: "./media/characters/malfressa/side.svg"
  6658. }
  6659. },
  6660. walking: {
  6661. height: math.unit(370, "cm"),
  6662. weight: math.unit(350, "lbs"),
  6663. name: "Walking",
  6664. image: {
  6665. source: "./media/characters/malfressa/walking.svg"
  6666. }
  6667. },
  6668. feral: {
  6669. height: math.unit(2500, "cm"),
  6670. weight: math.unit(100000, "lbs"),
  6671. name: "Feral",
  6672. image: {
  6673. source: "./media/characters/malfressa/feral.svg",
  6674. extra: 2108 / 837,
  6675. bottom: 0.02
  6676. }
  6677. },
  6678. },
  6679. [
  6680. {
  6681. name: "Normal",
  6682. height: math.unit(370, "cm")
  6683. },
  6684. {
  6685. name: "Macro",
  6686. height: math.unit(300, "meters"),
  6687. default: true
  6688. }
  6689. ]
  6690. ))
  6691. characterMakers.push(() => makeCharacter(
  6692. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6693. {
  6694. front: {
  6695. height: math.unit(6, "feet"),
  6696. weight: math.unit(60, "kg"),
  6697. name: "Front",
  6698. image: {
  6699. source: "./media/characters/jaro/front.svg",
  6700. extra: 845/817,
  6701. bottom: 45/890
  6702. }
  6703. },
  6704. back: {
  6705. height: math.unit(6, "feet"),
  6706. weight: math.unit(60, "kg"),
  6707. name: "Back",
  6708. image: {
  6709. source: "./media/characters/jaro/back.svg",
  6710. extra: 847/817,
  6711. bottom: 34/881
  6712. }
  6713. },
  6714. },
  6715. [
  6716. {
  6717. name: "Micro",
  6718. height: math.unit(7, "inches")
  6719. },
  6720. {
  6721. name: "Normal",
  6722. height: math.unit(5.5, "feet"),
  6723. default: true
  6724. },
  6725. {
  6726. name: "Minimacro",
  6727. height: math.unit(20, "feet")
  6728. },
  6729. {
  6730. name: "Macro",
  6731. height: math.unit(200, "meters")
  6732. }
  6733. ]
  6734. ))
  6735. characterMakers.push(() => makeCharacter(
  6736. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6737. {
  6738. front: {
  6739. height: math.unit(6, "feet"),
  6740. weight: math.unit(195, "lb"),
  6741. name: "Front",
  6742. image: {
  6743. source: "./media/characters/rogue/front.svg"
  6744. }
  6745. },
  6746. },
  6747. [
  6748. {
  6749. name: "Macro",
  6750. height: math.unit(90, "feet"),
  6751. default: true
  6752. },
  6753. ]
  6754. ))
  6755. characterMakers.push(() => makeCharacter(
  6756. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6757. {
  6758. standing: {
  6759. height: math.unit(5 + 8 / 12, "feet"),
  6760. weight: math.unit(140, "lb"),
  6761. name: "Standing",
  6762. image: {
  6763. source: "./media/characters/piper/standing.svg",
  6764. extra: 1440/1284,
  6765. bottom: 66/1506
  6766. }
  6767. },
  6768. running: {
  6769. height: math.unit(5 + 8 / 12, "feet"),
  6770. weight: math.unit(140, "lb"),
  6771. name: "Running",
  6772. image: {
  6773. source: "./media/characters/piper/running.svg",
  6774. extra: 3948/3655,
  6775. bottom: 0/3948
  6776. }
  6777. },
  6778. sole: {
  6779. height: math.unit(0.81, "feet"),
  6780. weight: math.unit(2, "kg"),
  6781. name: "Sole",
  6782. image: {
  6783. source: "./media/characters/piper/sole.svg"
  6784. }
  6785. },
  6786. nipple: {
  6787. height: math.unit(0.25, "feet"),
  6788. weight: math.unit(1.5, "lb"),
  6789. name: "Nipple",
  6790. image: {
  6791. source: "./media/characters/piper/nipple.svg"
  6792. }
  6793. },
  6794. head: {
  6795. height: math.unit(1.1, "feet"),
  6796. name: "Head",
  6797. image: {
  6798. source: "./media/characters/piper/head.svg"
  6799. }
  6800. },
  6801. },
  6802. [
  6803. {
  6804. name: "Micro",
  6805. height: math.unit(2, "inches")
  6806. },
  6807. {
  6808. name: "Normal",
  6809. height: math.unit(5 + 8 / 12, "feet")
  6810. },
  6811. {
  6812. name: "Macro",
  6813. height: math.unit(250, "feet"),
  6814. default: true
  6815. },
  6816. {
  6817. name: "Megamacro",
  6818. height: math.unit(7, "miles")
  6819. },
  6820. ]
  6821. ))
  6822. characterMakers.push(() => makeCharacter(
  6823. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6824. {
  6825. front: {
  6826. height: math.unit(6, "feet"),
  6827. weight: math.unit(220, "lb"),
  6828. name: "Front",
  6829. image: {
  6830. source: "./media/characters/gemini/front.svg"
  6831. }
  6832. },
  6833. back: {
  6834. height: math.unit(6, "feet"),
  6835. weight: math.unit(220, "lb"),
  6836. name: "Back",
  6837. image: {
  6838. source: "./media/characters/gemini/back.svg"
  6839. }
  6840. },
  6841. kneeling: {
  6842. height: math.unit(6 / 1.5, "feet"),
  6843. weight: math.unit(220, "lb"),
  6844. name: "Kneeling",
  6845. image: {
  6846. source: "./media/characters/gemini/kneeling.svg",
  6847. bottom: 0.02
  6848. }
  6849. },
  6850. },
  6851. [
  6852. {
  6853. name: "Macro",
  6854. height: math.unit(300, "meters"),
  6855. default: true
  6856. },
  6857. {
  6858. name: "Megamacro",
  6859. height: math.unit(6900, "meters")
  6860. },
  6861. ]
  6862. ))
  6863. characterMakers.push(() => makeCharacter(
  6864. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6865. {
  6866. anthro: {
  6867. height: math.unit(2.35, "meters"),
  6868. weight: math.unit(73, "kg"),
  6869. name: "Anthro",
  6870. image: {
  6871. source: "./media/characters/alicia/anthro.svg",
  6872. extra: 2571 / 2385,
  6873. bottom: 75 / 2648
  6874. }
  6875. },
  6876. paw: {
  6877. height: math.unit(1.32, "feet"),
  6878. name: "Paw",
  6879. image: {
  6880. source: "./media/characters/alicia/paw.svg"
  6881. }
  6882. },
  6883. feral: {
  6884. height: math.unit(1.69, "meters"),
  6885. weight: math.unit(73, "kg"),
  6886. name: "Feral",
  6887. image: {
  6888. source: "./media/characters/alicia/feral.svg",
  6889. extra: 2123 / 1715,
  6890. bottom: 222 / 2349
  6891. }
  6892. },
  6893. },
  6894. [
  6895. {
  6896. name: "Normal",
  6897. height: math.unit(2.35, "meters")
  6898. },
  6899. {
  6900. name: "Macro",
  6901. height: math.unit(60, "meters"),
  6902. default: true
  6903. },
  6904. {
  6905. name: "Megamacro",
  6906. height: math.unit(10000, "kilometers")
  6907. },
  6908. ]
  6909. ))
  6910. characterMakers.push(() => makeCharacter(
  6911. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6912. {
  6913. front: {
  6914. height: math.unit(7, "feet"),
  6915. weight: math.unit(250, "lbs"),
  6916. name: "Front",
  6917. image: {
  6918. source: "./media/characters/archy/front.svg"
  6919. }
  6920. }
  6921. },
  6922. [
  6923. {
  6924. name: "Micro",
  6925. height: math.unit(1, "inch")
  6926. },
  6927. {
  6928. name: "Shorty",
  6929. height: math.unit(5, "feet")
  6930. },
  6931. {
  6932. name: "Normal",
  6933. height: math.unit(7, "feet")
  6934. },
  6935. {
  6936. name: "Macro",
  6937. height: math.unit(600, "meters"),
  6938. default: true
  6939. },
  6940. {
  6941. name: "Megamacro",
  6942. height: math.unit(1, "mile")
  6943. },
  6944. ]
  6945. ))
  6946. characterMakers.push(() => makeCharacter(
  6947. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6948. {
  6949. front: {
  6950. height: math.unit(1.65, "meters"),
  6951. weight: math.unit(74, "kg"),
  6952. name: "Front",
  6953. image: {
  6954. source: "./media/characters/berri/front.svg",
  6955. extra: 857 / 837,
  6956. bottom: 18 / 877
  6957. }
  6958. },
  6959. bum: {
  6960. height: math.unit(1.46, "feet"),
  6961. name: "Bum",
  6962. image: {
  6963. source: "./media/characters/berri/bum.svg"
  6964. }
  6965. },
  6966. mouth: {
  6967. height: math.unit(0.44, "feet"),
  6968. name: "Mouth",
  6969. image: {
  6970. source: "./media/characters/berri/mouth.svg"
  6971. }
  6972. },
  6973. paw: {
  6974. height: math.unit(0.826, "feet"),
  6975. name: "Paw",
  6976. image: {
  6977. source: "./media/characters/berri/paw.svg"
  6978. }
  6979. },
  6980. },
  6981. [
  6982. {
  6983. name: "Normal",
  6984. height: math.unit(1.65, "meters")
  6985. },
  6986. {
  6987. name: "Macro",
  6988. height: math.unit(60, "m"),
  6989. default: true
  6990. },
  6991. {
  6992. name: "Megamacro",
  6993. height: math.unit(9.213, "km")
  6994. },
  6995. {
  6996. name: "Planet Eater",
  6997. height: math.unit(489, "megameters")
  6998. },
  6999. {
  7000. name: "Teramacro",
  7001. height: math.unit(2471635000000, "meters")
  7002. },
  7003. {
  7004. name: "Examacro",
  7005. height: math.unit(8.0624e+26, "meters")
  7006. }
  7007. ]
  7008. ))
  7009. characterMakers.push(() => makeCharacter(
  7010. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7011. {
  7012. front: {
  7013. height: math.unit(1.72, "meters"),
  7014. weight: math.unit(68, "kg"),
  7015. name: "Front",
  7016. image: {
  7017. source: "./media/characters/lexi/front.svg"
  7018. }
  7019. }
  7020. },
  7021. [
  7022. {
  7023. name: "Very Smol",
  7024. height: math.unit(10, "mm")
  7025. },
  7026. {
  7027. name: "Micro",
  7028. height: math.unit(6.8, "cm"),
  7029. default: true
  7030. },
  7031. {
  7032. name: "Normal",
  7033. height: math.unit(1.72, "m")
  7034. }
  7035. ]
  7036. ))
  7037. characterMakers.push(() => makeCharacter(
  7038. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7039. {
  7040. front: {
  7041. height: math.unit(1.69, "meters"),
  7042. weight: math.unit(68, "kg"),
  7043. name: "Front",
  7044. image: {
  7045. source: "./media/characters/martin/front.svg",
  7046. extra: 596 / 581
  7047. }
  7048. }
  7049. },
  7050. [
  7051. {
  7052. name: "Micro",
  7053. height: math.unit(6.85, "cm"),
  7054. default: true
  7055. },
  7056. {
  7057. name: "Normal",
  7058. height: math.unit(1.69, "m")
  7059. }
  7060. ]
  7061. ))
  7062. characterMakers.push(() => makeCharacter(
  7063. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7064. {
  7065. front: {
  7066. height: math.unit(1.69, "meters"),
  7067. weight: math.unit(68, "kg"),
  7068. name: "Front",
  7069. image: {
  7070. source: "./media/characters/juno/front.svg"
  7071. }
  7072. }
  7073. },
  7074. [
  7075. {
  7076. name: "Micro",
  7077. height: math.unit(7, "cm")
  7078. },
  7079. {
  7080. name: "Normal",
  7081. height: math.unit(1.89, "m")
  7082. },
  7083. {
  7084. name: "Macro",
  7085. height: math.unit(353, "meters"),
  7086. default: true
  7087. }
  7088. ]
  7089. ))
  7090. characterMakers.push(() => makeCharacter(
  7091. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7092. {
  7093. front: {
  7094. height: math.unit(1.93, "meters"),
  7095. weight: math.unit(83, "kg"),
  7096. name: "Front",
  7097. image: {
  7098. source: "./media/characters/samantha/front.svg"
  7099. }
  7100. },
  7101. frontClothed: {
  7102. height: math.unit(1.93, "meters"),
  7103. weight: math.unit(83, "kg"),
  7104. name: "Front (Clothed)",
  7105. image: {
  7106. source: "./media/characters/samantha/front-clothed.svg"
  7107. }
  7108. },
  7109. back: {
  7110. height: math.unit(1.93, "meters"),
  7111. weight: math.unit(83, "kg"),
  7112. name: "Back",
  7113. image: {
  7114. source: "./media/characters/samantha/back.svg"
  7115. }
  7116. },
  7117. },
  7118. [
  7119. {
  7120. name: "Normal",
  7121. height: math.unit(1.93, "m")
  7122. },
  7123. {
  7124. name: "Macro",
  7125. height: math.unit(74, "meters"),
  7126. default: true
  7127. },
  7128. {
  7129. name: "Macro+",
  7130. height: math.unit(223, "meters"),
  7131. },
  7132. {
  7133. name: "Megamacro",
  7134. height: math.unit(8381, "meters"),
  7135. },
  7136. {
  7137. name: "Megamacro+",
  7138. height: math.unit(12000, "kilometers")
  7139. },
  7140. ]
  7141. ))
  7142. characterMakers.push(() => makeCharacter(
  7143. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7144. {
  7145. front: {
  7146. height: math.unit(1.92, "meters"),
  7147. weight: math.unit(80, "kg"),
  7148. name: "Front",
  7149. image: {
  7150. source: "./media/characters/dr-clay/front.svg"
  7151. }
  7152. },
  7153. frontClothed: {
  7154. height: math.unit(1.92, "meters"),
  7155. weight: math.unit(80, "kg"),
  7156. name: "Front (Clothed)",
  7157. image: {
  7158. source: "./media/characters/dr-clay/front-clothed.svg"
  7159. }
  7160. }
  7161. },
  7162. [
  7163. {
  7164. name: "Normal",
  7165. height: math.unit(1.92, "m")
  7166. },
  7167. {
  7168. name: "Macro",
  7169. height: math.unit(214, "meters"),
  7170. default: true
  7171. },
  7172. {
  7173. name: "Macro+",
  7174. height: math.unit(12.237, "meters"),
  7175. },
  7176. {
  7177. name: "Megamacro",
  7178. height: math.unit(557, "megameters"),
  7179. },
  7180. {
  7181. name: "Unimaginable",
  7182. height: math.unit(120e9, "lightyears")
  7183. },
  7184. ]
  7185. ))
  7186. characterMakers.push(() => makeCharacter(
  7187. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7188. {
  7189. front: {
  7190. height: math.unit(2, "meters"),
  7191. weight: math.unit(80, "kg"),
  7192. name: "Front",
  7193. image: {
  7194. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7195. }
  7196. }
  7197. },
  7198. [
  7199. {
  7200. name: "Teramacro",
  7201. height: math.unit(500000, "lightyears"),
  7202. default: true
  7203. },
  7204. ]
  7205. ))
  7206. characterMakers.push(() => makeCharacter(
  7207. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7208. {
  7209. crux: {
  7210. height: math.unit(2, "meters"),
  7211. weight: math.unit(150, "kg"),
  7212. name: "Crux",
  7213. image: {
  7214. source: "./media/characters/vemus/crux.svg",
  7215. extra: 1074/936,
  7216. bottom: 23/1097
  7217. }
  7218. },
  7219. skunkTanuki: {
  7220. height: math.unit(2, "meters"),
  7221. weight: math.unit(150, "kg"),
  7222. name: "Skunk-Tanuki",
  7223. image: {
  7224. source: "./media/characters/vemus/skunk-tanuki.svg",
  7225. extra: 926/893,
  7226. bottom: 20/946
  7227. }
  7228. },
  7229. },
  7230. [
  7231. {
  7232. name: "Normal",
  7233. height: math.unit(4, "meters"),
  7234. default: true
  7235. },
  7236. {
  7237. name: "Big",
  7238. height: math.unit(8, "meters")
  7239. },
  7240. {
  7241. name: "Macro",
  7242. height: math.unit(100, "meters")
  7243. },
  7244. {
  7245. name: "Macro+",
  7246. height: math.unit(1500, "meters")
  7247. },
  7248. {
  7249. name: "Stellar",
  7250. height: math.unit(14e8, "meters")
  7251. },
  7252. ]
  7253. ))
  7254. characterMakers.push(() => makeCharacter(
  7255. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7256. {
  7257. front: {
  7258. height: math.unit(2, "meters"),
  7259. weight: math.unit(70, "kg"),
  7260. name: "Front",
  7261. image: {
  7262. source: "./media/characters/beherit/front.svg",
  7263. extra: 1234/1109,
  7264. bottom: 55/1289
  7265. }
  7266. }
  7267. },
  7268. [
  7269. {
  7270. name: "Normal",
  7271. height: math.unit(6, "feet")
  7272. },
  7273. {
  7274. name: "Lorg",
  7275. height: math.unit(25, "feet"),
  7276. default: true
  7277. },
  7278. {
  7279. name: "Lorger",
  7280. height: math.unit(75, "feet")
  7281. },
  7282. {
  7283. name: "Macro",
  7284. height: math.unit(200, "meters")
  7285. },
  7286. ]
  7287. ))
  7288. characterMakers.push(() => makeCharacter(
  7289. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7290. {
  7291. front: {
  7292. height: math.unit(2, "meters"),
  7293. weight: math.unit(150, "kg"),
  7294. name: "Front",
  7295. image: {
  7296. source: "./media/characters/everett/front.svg",
  7297. extra: 1017/866,
  7298. bottom: 86/1103
  7299. }
  7300. },
  7301. paw: {
  7302. height: math.unit(2 / 3.6, "meters"),
  7303. name: "Paw",
  7304. image: {
  7305. source: "./media/characters/everett/paw.svg"
  7306. }
  7307. },
  7308. },
  7309. [
  7310. {
  7311. name: "Normal",
  7312. height: math.unit(15, "feet"),
  7313. default: true
  7314. },
  7315. {
  7316. name: "Lorg",
  7317. height: math.unit(70, "feet"),
  7318. default: true
  7319. },
  7320. {
  7321. name: "Lorger",
  7322. height: math.unit(250, "feet")
  7323. },
  7324. {
  7325. name: "Macro",
  7326. height: math.unit(500, "meters")
  7327. },
  7328. ]
  7329. ))
  7330. characterMakers.push(() => makeCharacter(
  7331. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7332. {
  7333. front: {
  7334. height: math.unit(2, "meters"),
  7335. weight: math.unit(86, "kg"),
  7336. name: "Front",
  7337. image: {
  7338. source: "./media/characters/rose/front.svg",
  7339. extra: 1785/1636,
  7340. bottom: 30/1815
  7341. },
  7342. form: "liom",
  7343. default: true
  7344. },
  7345. frontSporty: {
  7346. height: math.unit(2, "meters"),
  7347. weight: math.unit(86, "kg"),
  7348. name: "Front (Sporty)",
  7349. image: {
  7350. source: "./media/characters/rose/front-sporty.svg",
  7351. extra: 350/335,
  7352. bottom: 10/360
  7353. },
  7354. form: "liom"
  7355. },
  7356. frontAlt: {
  7357. height: math.unit(1.6, "meters"),
  7358. weight: math.unit(86, "kg"),
  7359. name: "Front (Alt)",
  7360. image: {
  7361. source: "./media/characters/rose/front-alt.svg",
  7362. extra: 299/283,
  7363. bottom: 3/302
  7364. },
  7365. form: "liom"
  7366. },
  7367. plush: {
  7368. height: math.unit(2, "meters"),
  7369. weight: math.unit(86/3, "kg"),
  7370. name: "Plush",
  7371. image: {
  7372. source: "./media/characters/rose/plush.svg",
  7373. extra: 361/337,
  7374. bottom: 11/372
  7375. },
  7376. form: "plush",
  7377. default: true
  7378. },
  7379. faeStanding: {
  7380. height: math.unit(10, "cm"),
  7381. weight: math.unit(10, "grams"),
  7382. name: "Standing",
  7383. image: {
  7384. source: "./media/characters/rose/fae-standing.svg",
  7385. extra: 1189/1060,
  7386. bottom: 27/1216
  7387. },
  7388. form: "fae",
  7389. default: true
  7390. },
  7391. faeSitting: {
  7392. height: math.unit(5, "cm"),
  7393. weight: math.unit(10, "grams"),
  7394. name: "Sitting",
  7395. image: {
  7396. source: "./media/characters/rose/fae-sitting.svg",
  7397. extra: 737/577,
  7398. bottom: 356/1093
  7399. },
  7400. form: "fae"
  7401. },
  7402. faePaw: {
  7403. height: math.unit(1.35, "cm"),
  7404. name: "Paw",
  7405. image: {
  7406. source: "./media/characters/rose/fae-paw.svg"
  7407. },
  7408. form: "fae"
  7409. },
  7410. },
  7411. [
  7412. {
  7413. name: "True Micro",
  7414. height: math.unit(9, "cm"),
  7415. form: "liom"
  7416. },
  7417. {
  7418. name: "Micro",
  7419. height: math.unit(16, "cm"),
  7420. form: "liom"
  7421. },
  7422. {
  7423. name: "Normal",
  7424. height: math.unit(1.85, "meters"),
  7425. default: true,
  7426. form: "liom"
  7427. },
  7428. {
  7429. name: "Mini-Macro",
  7430. height: math.unit(5, "meters"),
  7431. form: "liom"
  7432. },
  7433. {
  7434. name: "Macro",
  7435. height: math.unit(15, "meters"),
  7436. form: "liom"
  7437. },
  7438. {
  7439. name: "True Macro",
  7440. height: math.unit(40, "meters"),
  7441. form: "liom"
  7442. },
  7443. {
  7444. name: "City Scale",
  7445. height: math.unit(1, "km"),
  7446. form: "liom"
  7447. },
  7448. {
  7449. name: "Plushie",
  7450. height: math.unit(9, "cm"),
  7451. form: "plush",
  7452. default: true
  7453. },
  7454. {
  7455. name: "Fae",
  7456. height: math.unit(10, "cm"),
  7457. form: "fae",
  7458. default: true
  7459. },
  7460. ],
  7461. {
  7462. "liom": {
  7463. name: "Liom"
  7464. },
  7465. "plush": {
  7466. name: "Plush"
  7467. },
  7468. "fae": {
  7469. name: "Fae Fox",
  7470. default: true
  7471. }
  7472. }
  7473. ))
  7474. characterMakers.push(() => makeCharacter(
  7475. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7476. {
  7477. front: {
  7478. height: math.unit(2, "meters"),
  7479. weight: math.unit(350, "lbs"),
  7480. name: "Front",
  7481. image: {
  7482. source: "./media/characters/regal/front.svg"
  7483. }
  7484. },
  7485. back: {
  7486. height: math.unit(2, "meters"),
  7487. weight: math.unit(350, "lbs"),
  7488. name: "Back",
  7489. image: {
  7490. source: "./media/characters/regal/back.svg"
  7491. }
  7492. },
  7493. },
  7494. [
  7495. {
  7496. name: "Macro",
  7497. height: math.unit(350, "feet"),
  7498. default: true
  7499. }
  7500. ]
  7501. ))
  7502. characterMakers.push(() => makeCharacter(
  7503. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7504. {
  7505. front: {
  7506. height: math.unit(4 + 11 / 12, "feet"),
  7507. weight: math.unit(100, "lbs"),
  7508. name: "Front",
  7509. image: {
  7510. source: "./media/characters/opal/front.svg"
  7511. }
  7512. },
  7513. frontAlt: {
  7514. height: math.unit(4 + 11 / 12, "feet"),
  7515. weight: math.unit(100, "lbs"),
  7516. name: "Front (Alt)",
  7517. image: {
  7518. source: "./media/characters/opal/front-alt.svg"
  7519. }
  7520. },
  7521. },
  7522. [
  7523. {
  7524. name: "Small",
  7525. height: math.unit(4 + 11 / 12, "feet")
  7526. },
  7527. {
  7528. name: "Normal",
  7529. height: math.unit(20, "feet"),
  7530. default: true
  7531. },
  7532. {
  7533. name: "Macro",
  7534. height: math.unit(120, "feet")
  7535. },
  7536. {
  7537. name: "Megamacro",
  7538. height: math.unit(80, "miles")
  7539. },
  7540. {
  7541. name: "True Size",
  7542. height: math.unit(100000, "lightyears")
  7543. },
  7544. ]
  7545. ))
  7546. characterMakers.push(() => makeCharacter(
  7547. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7548. {
  7549. front: {
  7550. height: math.unit(6, "feet"),
  7551. weight: math.unit(200, "lbs"),
  7552. name: "Front",
  7553. image: {
  7554. source: "./media/characters/vector-wuff/front.svg"
  7555. }
  7556. }
  7557. },
  7558. [
  7559. {
  7560. name: "Normal",
  7561. height: math.unit(2.8, "meters")
  7562. },
  7563. {
  7564. name: "Macro",
  7565. height: math.unit(450, "meters"),
  7566. default: true
  7567. },
  7568. {
  7569. name: "Megamacro",
  7570. height: math.unit(15, "kilometers")
  7571. }
  7572. ]
  7573. ))
  7574. characterMakers.push(() => makeCharacter(
  7575. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7576. {
  7577. front: {
  7578. height: math.unit(6, "feet"),
  7579. weight: math.unit(256, "lbs"),
  7580. name: "Front",
  7581. image: {
  7582. source: "./media/characters/dannik/front.svg"
  7583. }
  7584. }
  7585. },
  7586. [
  7587. {
  7588. name: "Macro",
  7589. height: math.unit(69.57, "meters"),
  7590. default: true
  7591. },
  7592. ]
  7593. ))
  7594. characterMakers.push(() => makeCharacter(
  7595. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7596. {
  7597. front: {
  7598. height: math.unit(6, "feet"),
  7599. weight: math.unit(120, "lbs"),
  7600. name: "Front",
  7601. image: {
  7602. source: "./media/characters/azura-saharah/front.svg"
  7603. }
  7604. },
  7605. back: {
  7606. height: math.unit(6, "feet"),
  7607. weight: math.unit(120, "lbs"),
  7608. name: "Back",
  7609. image: {
  7610. source: "./media/characters/azura-saharah/back.svg"
  7611. }
  7612. },
  7613. },
  7614. [
  7615. {
  7616. name: "Macro",
  7617. height: math.unit(100, "feet"),
  7618. default: true
  7619. },
  7620. ]
  7621. ))
  7622. characterMakers.push(() => makeCharacter(
  7623. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7624. {
  7625. side: {
  7626. height: math.unit(5 + 4 / 12, "feet"),
  7627. weight: math.unit(163, "lbs"),
  7628. name: "Side",
  7629. image: {
  7630. source: "./media/characters/kennedy/side.svg"
  7631. }
  7632. }
  7633. },
  7634. [
  7635. {
  7636. name: "Standard Doggo",
  7637. height: math.unit(5 + 4 / 12, "feet")
  7638. },
  7639. {
  7640. name: "Big Doggo",
  7641. height: math.unit(25 + 3 / 12, "feet"),
  7642. default: true
  7643. },
  7644. ]
  7645. ))
  7646. characterMakers.push(() => makeCharacter(
  7647. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7648. {
  7649. front: {
  7650. height: math.unit(5 + 5/12, "feet"),
  7651. weight: math.unit(100, "lbs"),
  7652. name: "Front",
  7653. image: {
  7654. source: "./media/characters/odios-de-lunar/front.svg",
  7655. extra: 1468/1323,
  7656. bottom: 22/1490
  7657. }
  7658. }
  7659. },
  7660. [
  7661. {
  7662. name: "Micro",
  7663. height: math.unit(3, "inches")
  7664. },
  7665. {
  7666. name: "Normal",
  7667. height: math.unit(5.5, "feet"),
  7668. default: true
  7669. },
  7670. {
  7671. name: "Macro",
  7672. height: math.unit(100, "feet")
  7673. },
  7674. ]
  7675. ))
  7676. characterMakers.push(() => makeCharacter(
  7677. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7678. {
  7679. back: {
  7680. height: math.unit(6, "feet"),
  7681. weight: math.unit(220, "lbs"),
  7682. name: "Back",
  7683. image: {
  7684. source: "./media/characters/mandake/back.svg"
  7685. }
  7686. }
  7687. },
  7688. [
  7689. {
  7690. name: "Normal",
  7691. height: math.unit(7, "feet"),
  7692. default: true
  7693. },
  7694. {
  7695. name: "Macro",
  7696. height: math.unit(78, "feet")
  7697. },
  7698. {
  7699. name: "Macro+",
  7700. height: math.unit(300, "meters")
  7701. },
  7702. {
  7703. name: "Macro++",
  7704. height: math.unit(2400, "feet")
  7705. },
  7706. {
  7707. name: "Megamacro",
  7708. height: math.unit(5167, "meters")
  7709. },
  7710. {
  7711. name: "Gigamacro",
  7712. height: math.unit(41769, "miles")
  7713. },
  7714. ]
  7715. ))
  7716. characterMakers.push(() => makeCharacter(
  7717. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7718. {
  7719. front: {
  7720. height: math.unit(6, "feet"),
  7721. weight: math.unit(120, "lbs"),
  7722. name: "Front",
  7723. image: {
  7724. source: "./media/characters/yozey/front.svg"
  7725. }
  7726. },
  7727. frontAlt: {
  7728. height: math.unit(6, "feet"),
  7729. weight: math.unit(120, "lbs"),
  7730. name: "Front (Alt)",
  7731. image: {
  7732. source: "./media/characters/yozey/front-alt.svg"
  7733. }
  7734. },
  7735. side: {
  7736. height: math.unit(6, "feet"),
  7737. weight: math.unit(120, "lbs"),
  7738. name: "Side",
  7739. image: {
  7740. source: "./media/characters/yozey/side.svg"
  7741. }
  7742. },
  7743. },
  7744. [
  7745. {
  7746. name: "Micro",
  7747. height: math.unit(3, "inches"),
  7748. default: true
  7749. },
  7750. {
  7751. name: "Normal",
  7752. height: math.unit(6, "feet")
  7753. }
  7754. ]
  7755. ))
  7756. characterMakers.push(() => makeCharacter(
  7757. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7758. {
  7759. front: {
  7760. height: math.unit(6, "feet"),
  7761. weight: math.unit(103, "lbs"),
  7762. name: "Front",
  7763. image: {
  7764. source: "./media/characters/valeska-voss/front.svg"
  7765. }
  7766. }
  7767. },
  7768. [
  7769. {
  7770. name: "Mini-Sized Sub",
  7771. height: math.unit(3.1, "inches")
  7772. },
  7773. {
  7774. name: "Mid-Sized Sub",
  7775. height: math.unit(6.2, "inches")
  7776. },
  7777. {
  7778. name: "Full-Sized Sub",
  7779. height: math.unit(9.3, "inches")
  7780. },
  7781. {
  7782. name: "Normal",
  7783. height: math.unit(5 + 2 / 12, "foot"),
  7784. default: true
  7785. },
  7786. ]
  7787. ))
  7788. characterMakers.push(() => makeCharacter(
  7789. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7790. {
  7791. front: {
  7792. height: math.unit(6, "feet"),
  7793. weight: math.unit(160, "lbs"),
  7794. name: "Front",
  7795. image: {
  7796. source: "./media/characters/gene-zeta/front.svg",
  7797. extra: 3006 / 2826,
  7798. bottom: 182 / 3188
  7799. }
  7800. }
  7801. },
  7802. [
  7803. {
  7804. name: "Micro",
  7805. height: math.unit(6, "inches")
  7806. },
  7807. {
  7808. name: "Normal",
  7809. height: math.unit(5 + 11 / 12, "foot"),
  7810. default: true
  7811. },
  7812. {
  7813. name: "Macro",
  7814. height: math.unit(140, "feet")
  7815. },
  7816. {
  7817. name: "Supercharged",
  7818. height: math.unit(2500, "feet")
  7819. },
  7820. ]
  7821. ))
  7822. characterMakers.push(() => makeCharacter(
  7823. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7824. {
  7825. front: {
  7826. height: math.unit(6, "feet"),
  7827. weight: math.unit(350, "lbs"),
  7828. name: "Front",
  7829. image: {
  7830. source: "./media/characters/razinox/front.svg",
  7831. extra: 1686 / 1548,
  7832. bottom: 28.2 / 1868
  7833. }
  7834. },
  7835. back: {
  7836. height: math.unit(6, "feet"),
  7837. weight: math.unit(350, "lbs"),
  7838. name: "Back",
  7839. image: {
  7840. source: "./media/characters/razinox/back.svg",
  7841. extra: 1660 / 1590,
  7842. bottom: 15 / 1665
  7843. }
  7844. },
  7845. },
  7846. [
  7847. {
  7848. name: "Normal",
  7849. height: math.unit(10 + 8 / 12, "foot")
  7850. },
  7851. {
  7852. name: "Minimacro",
  7853. height: math.unit(15, "foot")
  7854. },
  7855. {
  7856. name: "Macro",
  7857. height: math.unit(60, "foot"),
  7858. default: true
  7859. },
  7860. {
  7861. name: "Megamacro",
  7862. height: math.unit(5, "miles")
  7863. },
  7864. {
  7865. name: "Gigamacro",
  7866. height: math.unit(6000, "miles")
  7867. },
  7868. ]
  7869. ))
  7870. characterMakers.push(() => makeCharacter(
  7871. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7872. {
  7873. front: {
  7874. height: math.unit(6, "feet"),
  7875. weight: math.unit(150, "lbs"),
  7876. name: "Front",
  7877. image: {
  7878. source: "./media/characters/cobalt/front.svg"
  7879. }
  7880. }
  7881. },
  7882. [
  7883. {
  7884. name: "Normal",
  7885. height: math.unit(8 + 1 / 12, "foot")
  7886. },
  7887. {
  7888. name: "Macro",
  7889. height: math.unit(111, "foot"),
  7890. default: true
  7891. },
  7892. {
  7893. name: "Supracosmic",
  7894. height: math.unit(1e42, "feet")
  7895. },
  7896. ]
  7897. ))
  7898. characterMakers.push(() => makeCharacter(
  7899. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7900. {
  7901. front: {
  7902. height: math.unit(5, "inches"),
  7903. name: "Front",
  7904. image: {
  7905. source: "./media/characters/amanda/front.svg",
  7906. extra: 926/791,
  7907. bottom: 38/964
  7908. }
  7909. },
  7910. back: {
  7911. height: math.unit(5, "inches"),
  7912. name: "Back",
  7913. image: {
  7914. source: "./media/characters/amanda/back.svg",
  7915. extra: 909/805,
  7916. bottom: 43/952
  7917. }
  7918. },
  7919. },
  7920. [
  7921. {
  7922. name: "Micro",
  7923. height: math.unit(5, "inches"),
  7924. default: true
  7925. },
  7926. ]
  7927. ))
  7928. characterMakers.push(() => makeCharacter(
  7929. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7930. {
  7931. front: {
  7932. height: math.unit(2.75, "meters"),
  7933. weight: math.unit(1200, "lb"),
  7934. name: "Front",
  7935. image: {
  7936. source: "./media/characters/teal/front.svg",
  7937. extra: 2463 / 2320,
  7938. bottom: 166 / 2629
  7939. }
  7940. },
  7941. back: {
  7942. height: math.unit(2.75, "meters"),
  7943. weight: math.unit(1200, "lb"),
  7944. name: "Back",
  7945. image: {
  7946. source: "./media/characters/teal/back.svg",
  7947. extra: 2580 / 2489,
  7948. bottom: 151 / 2731
  7949. }
  7950. },
  7951. sitting: {
  7952. height: math.unit(1.9, "meters"),
  7953. weight: math.unit(1200, "lb"),
  7954. name: "Sitting",
  7955. image: {
  7956. source: "./media/characters/teal/sitting.svg",
  7957. extra: 623 / 590,
  7958. bottom: 121 / 744
  7959. }
  7960. },
  7961. standing: {
  7962. height: math.unit(2.75, "meters"),
  7963. weight: math.unit(1200, "lb"),
  7964. name: "Standing",
  7965. image: {
  7966. source: "./media/characters/teal/standing.svg",
  7967. extra: 923 / 893,
  7968. bottom: 60 / 983
  7969. }
  7970. },
  7971. stretching: {
  7972. height: math.unit(3.65, "meters"),
  7973. weight: math.unit(1200, "lb"),
  7974. name: "Stretching",
  7975. image: {
  7976. source: "./media/characters/teal/stretching.svg",
  7977. extra: 1276 / 1244,
  7978. bottom: 0 / 1276
  7979. }
  7980. },
  7981. legged: {
  7982. height: math.unit(1.3, "meters"),
  7983. weight: math.unit(100, "lb"),
  7984. name: "Legged",
  7985. image: {
  7986. source: "./media/characters/teal/legged.svg",
  7987. extra: 462 / 437,
  7988. bottom: 24 / 486
  7989. }
  7990. },
  7991. naga: {
  7992. height: math.unit(5.4, "meters"),
  7993. weight: math.unit(4000, "lb"),
  7994. name: "Naga",
  7995. image: {
  7996. source: "./media/characters/teal/naga.svg",
  7997. extra: 1902 / 1858,
  7998. bottom: 0 / 1902
  7999. }
  8000. },
  8001. hand: {
  8002. height: math.unit(0.52, "meters"),
  8003. name: "Hand",
  8004. image: {
  8005. source: "./media/characters/teal/hand.svg"
  8006. }
  8007. },
  8008. maw: {
  8009. height: math.unit(0.43, "meters"),
  8010. name: "Maw",
  8011. image: {
  8012. source: "./media/characters/teal/maw.svg"
  8013. }
  8014. },
  8015. slit: {
  8016. height: math.unit(0.25, "meters"),
  8017. name: "Slit",
  8018. image: {
  8019. source: "./media/characters/teal/slit.svg"
  8020. }
  8021. },
  8022. },
  8023. [
  8024. {
  8025. name: "Normal",
  8026. height: math.unit(2.75, "meters"),
  8027. default: true
  8028. },
  8029. {
  8030. name: "Macro",
  8031. height: math.unit(300, "feet")
  8032. },
  8033. {
  8034. name: "Macro+",
  8035. height: math.unit(2000, "feet")
  8036. },
  8037. ]
  8038. ))
  8039. characterMakers.push(() => makeCharacter(
  8040. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8041. {
  8042. frontCat: {
  8043. height: math.unit(6, "feet"),
  8044. weight: math.unit(180, "lbs"),
  8045. name: "Front (Cat)",
  8046. image: {
  8047. source: "./media/characters/ravin-amulet/front-cat.svg"
  8048. }
  8049. },
  8050. frontCatAlt: {
  8051. height: math.unit(6, "feet"),
  8052. weight: math.unit(180, "lbs"),
  8053. name: "Front (Alt, Cat)",
  8054. image: {
  8055. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8056. }
  8057. },
  8058. frontWerewolf: {
  8059. height: math.unit(6 * 1.2, "feet"),
  8060. weight: math.unit(225, "lbs"),
  8061. name: "Front (Werewolf)",
  8062. image: {
  8063. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8064. }
  8065. },
  8066. backWerewolf: {
  8067. height: math.unit(6 * 1.2, "feet"),
  8068. weight: math.unit(225, "lbs"),
  8069. name: "Back (Werewolf)",
  8070. image: {
  8071. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8072. }
  8073. },
  8074. },
  8075. [
  8076. {
  8077. name: "Nano",
  8078. height: math.unit(1, "micrometer")
  8079. },
  8080. {
  8081. name: "Micro",
  8082. height: math.unit(1, "inch")
  8083. },
  8084. {
  8085. name: "Normal",
  8086. height: math.unit(6, "feet"),
  8087. default: true
  8088. },
  8089. {
  8090. name: "Macro",
  8091. height: math.unit(60, "feet")
  8092. }
  8093. ]
  8094. ))
  8095. characterMakers.push(() => makeCharacter(
  8096. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8097. {
  8098. front: {
  8099. height: math.unit(6, "feet"),
  8100. weight: math.unit(165, "lbs"),
  8101. name: "Front",
  8102. image: {
  8103. source: "./media/characters/fluoresce/front.svg"
  8104. }
  8105. }
  8106. },
  8107. [
  8108. {
  8109. name: "Micro",
  8110. height: math.unit(6, "cm")
  8111. },
  8112. {
  8113. name: "Normal",
  8114. height: math.unit(5 + 7 / 12, "feet"),
  8115. default: true
  8116. },
  8117. {
  8118. name: "Macro",
  8119. height: math.unit(56, "feet")
  8120. },
  8121. {
  8122. name: "Megamacro",
  8123. height: math.unit(1.9, "miles")
  8124. },
  8125. ]
  8126. ))
  8127. characterMakers.push(() => makeCharacter(
  8128. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8129. {
  8130. front: {
  8131. height: math.unit(9 + 6 / 12, "feet"),
  8132. weight: math.unit(523, "lbs"),
  8133. name: "Side",
  8134. image: {
  8135. source: "./media/characters/aurora/side.svg"
  8136. }
  8137. }
  8138. },
  8139. [
  8140. {
  8141. name: "Normal",
  8142. height: math.unit(9 + 6 / 12, "feet")
  8143. },
  8144. {
  8145. name: "Macro",
  8146. height: math.unit(96, "feet"),
  8147. default: true
  8148. },
  8149. {
  8150. name: "Macro+",
  8151. height: math.unit(243, "feet")
  8152. },
  8153. ]
  8154. ))
  8155. characterMakers.push(() => makeCharacter(
  8156. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8157. {
  8158. front: {
  8159. height: math.unit(194, "cm"),
  8160. weight: math.unit(90, "kg"),
  8161. name: "Front",
  8162. image: {
  8163. source: "./media/characters/ranek/front.svg",
  8164. extra: 1862/1791,
  8165. bottom: 80/1942
  8166. }
  8167. },
  8168. back: {
  8169. height: math.unit(194, "cm"),
  8170. weight: math.unit(90, "kg"),
  8171. name: "Back",
  8172. image: {
  8173. source: "./media/characters/ranek/back.svg",
  8174. extra: 1853/1787,
  8175. bottom: 74/1927
  8176. }
  8177. },
  8178. feral: {
  8179. height: math.unit(30, "cm"),
  8180. weight: math.unit(1.6, "lbs"),
  8181. name: "Feral",
  8182. image: {
  8183. source: "./media/characters/ranek/feral.svg",
  8184. extra: 990/631,
  8185. bottom: 29/1019
  8186. }
  8187. },
  8188. },
  8189. [
  8190. {
  8191. name: "Normal",
  8192. height: math.unit(194, "cm"),
  8193. default: true
  8194. },
  8195. {
  8196. name: "Macro",
  8197. height: math.unit(100, "meters")
  8198. },
  8199. ]
  8200. ))
  8201. characterMakers.push(() => makeCharacter(
  8202. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8203. {
  8204. front: {
  8205. height: math.unit(5 + 6 / 12, "feet"),
  8206. weight: math.unit(153, "lbs"),
  8207. name: "Front",
  8208. image: {
  8209. source: "./media/characters/andrew-cooper/front.svg"
  8210. }
  8211. },
  8212. },
  8213. [
  8214. {
  8215. name: "Nano",
  8216. height: math.unit(1, "mm")
  8217. },
  8218. {
  8219. name: "Micro",
  8220. height: math.unit(2, "inches")
  8221. },
  8222. {
  8223. name: "Normal",
  8224. height: math.unit(5 + 6 / 12, "feet"),
  8225. default: true
  8226. }
  8227. ]
  8228. ))
  8229. characterMakers.push(() => makeCharacter(
  8230. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8231. {
  8232. front: {
  8233. height: math.unit(6, "feet"),
  8234. weight: math.unit(180, "lbs"),
  8235. name: "Front",
  8236. image: {
  8237. source: "./media/characters/akane-sato/front.svg",
  8238. extra: 1219 / 1140
  8239. }
  8240. },
  8241. back: {
  8242. height: math.unit(6, "feet"),
  8243. weight: math.unit(180, "lbs"),
  8244. name: "Back",
  8245. image: {
  8246. source: "./media/characters/akane-sato/back.svg",
  8247. extra: 1219 / 1170
  8248. }
  8249. },
  8250. },
  8251. [
  8252. {
  8253. name: "Normal",
  8254. height: math.unit(2.5, "meters")
  8255. },
  8256. {
  8257. name: "Macro",
  8258. height: math.unit(250, "meters"),
  8259. default: true
  8260. },
  8261. {
  8262. name: "Megamacro",
  8263. height: math.unit(25, "km")
  8264. },
  8265. ]
  8266. ))
  8267. characterMakers.push(() => makeCharacter(
  8268. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8269. {
  8270. front: {
  8271. height: math.unit(6, "feet"),
  8272. weight: math.unit(65, "kg"),
  8273. name: "Front",
  8274. image: {
  8275. source: "./media/characters/rook/front.svg",
  8276. extra: 960 / 950
  8277. }
  8278. }
  8279. },
  8280. [
  8281. {
  8282. name: "Normal",
  8283. height: math.unit(8.8, "feet")
  8284. },
  8285. {
  8286. name: "Macro",
  8287. height: math.unit(88, "feet"),
  8288. default: true
  8289. },
  8290. {
  8291. name: "Megamacro",
  8292. height: math.unit(8, "miles")
  8293. },
  8294. ]
  8295. ))
  8296. characterMakers.push(() => makeCharacter(
  8297. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8298. {
  8299. front: {
  8300. height: math.unit(12 + 2 / 12, "feet"),
  8301. weight: math.unit(808, "lbs"),
  8302. name: "Front",
  8303. image: {
  8304. source: "./media/characters/prodigy/front.svg"
  8305. }
  8306. }
  8307. },
  8308. [
  8309. {
  8310. name: "Normal",
  8311. height: math.unit(12 + 2 / 12, "feet"),
  8312. default: true
  8313. },
  8314. {
  8315. name: "Macro",
  8316. height: math.unit(143, "feet")
  8317. },
  8318. {
  8319. name: "Macro+",
  8320. height: math.unit(400, "feet")
  8321. },
  8322. ]
  8323. ))
  8324. characterMakers.push(() => makeCharacter(
  8325. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8326. {
  8327. front: {
  8328. height: math.unit(6, "feet"),
  8329. weight: math.unit(225, "lbs"),
  8330. name: "Front",
  8331. image: {
  8332. source: "./media/characters/daniel/front.svg"
  8333. }
  8334. },
  8335. leaning: {
  8336. height: math.unit(6, "feet"),
  8337. weight: math.unit(225, "lbs"),
  8338. name: "Leaning",
  8339. image: {
  8340. source: "./media/characters/daniel/leaning.svg"
  8341. }
  8342. },
  8343. },
  8344. [
  8345. {
  8346. name: "Macro",
  8347. height: math.unit(1000, "feet"),
  8348. default: true
  8349. },
  8350. ]
  8351. ))
  8352. characterMakers.push(() => makeCharacter(
  8353. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8354. {
  8355. front: {
  8356. height: math.unit(6, "feet"),
  8357. weight: math.unit(88, "lbs"),
  8358. name: "Front",
  8359. image: {
  8360. source: "./media/characters/chiros/front.svg",
  8361. extra: 306 / 226
  8362. }
  8363. },
  8364. side: {
  8365. height: math.unit(6, "feet"),
  8366. weight: math.unit(88, "lbs"),
  8367. name: "Side",
  8368. image: {
  8369. source: "./media/characters/chiros/side.svg",
  8370. extra: 306 / 226
  8371. }
  8372. },
  8373. },
  8374. [
  8375. {
  8376. name: "Normal",
  8377. height: math.unit(6, "cm"),
  8378. default: true
  8379. },
  8380. ]
  8381. ))
  8382. characterMakers.push(() => makeCharacter(
  8383. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8384. {
  8385. front: {
  8386. height: math.unit(6, "feet"),
  8387. weight: math.unit(100, "lbs"),
  8388. name: "Front",
  8389. image: {
  8390. source: "./media/characters/selka/front.svg",
  8391. extra: 947 / 887
  8392. }
  8393. }
  8394. },
  8395. [
  8396. {
  8397. name: "Normal",
  8398. height: math.unit(5, "cm"),
  8399. default: true
  8400. },
  8401. ]
  8402. ))
  8403. characterMakers.push(() => makeCharacter(
  8404. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8405. {
  8406. front: {
  8407. height: math.unit(8 + 3 / 12, "feet"),
  8408. weight: math.unit(424, "lbs"),
  8409. name: "Front",
  8410. image: {
  8411. source: "./media/characters/verin/front.svg",
  8412. extra: 1845 / 1550
  8413. }
  8414. },
  8415. frontArmored: {
  8416. height: math.unit(8 + 3 / 12, "feet"),
  8417. weight: math.unit(424, "lbs"),
  8418. name: "Front (Armored)",
  8419. image: {
  8420. source: "./media/characters/verin/front-armor.svg",
  8421. extra: 1845 / 1550,
  8422. bottom: 0.01
  8423. }
  8424. },
  8425. back: {
  8426. height: math.unit(8 + 3 / 12, "feet"),
  8427. weight: math.unit(424, "lbs"),
  8428. name: "Back",
  8429. image: {
  8430. source: "./media/characters/verin/back.svg",
  8431. bottom: 0.1,
  8432. extra: 1
  8433. }
  8434. },
  8435. foot: {
  8436. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8437. name: "Foot",
  8438. image: {
  8439. source: "./media/characters/verin/foot.svg"
  8440. }
  8441. },
  8442. },
  8443. [
  8444. {
  8445. name: "Normal",
  8446. height: math.unit(8 + 3 / 12, "feet")
  8447. },
  8448. {
  8449. name: "Minimacro",
  8450. height: math.unit(21, "feet"),
  8451. default: true
  8452. },
  8453. {
  8454. name: "Macro",
  8455. height: math.unit(626, "feet")
  8456. },
  8457. ]
  8458. ))
  8459. characterMakers.push(() => makeCharacter(
  8460. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8461. {
  8462. front: {
  8463. height: math.unit(2.718, "meters"),
  8464. weight: math.unit(150, "lbs"),
  8465. name: "Front",
  8466. image: {
  8467. source: "./media/characters/sovrim-terraquian/front.svg",
  8468. extra: 1752/1689,
  8469. bottom: 36/1788
  8470. }
  8471. },
  8472. back: {
  8473. height: math.unit(2.718, "meters"),
  8474. weight: math.unit(150, "lbs"),
  8475. name: "Back",
  8476. image: {
  8477. source: "./media/characters/sovrim-terraquian/back.svg",
  8478. extra: 1698/1657,
  8479. bottom: 58/1756
  8480. }
  8481. },
  8482. tongue: {
  8483. height: math.unit(2.865, "feet"),
  8484. name: "Tongue",
  8485. image: {
  8486. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8487. }
  8488. },
  8489. hand: {
  8490. height: math.unit(1.61, "feet"),
  8491. name: "Hand",
  8492. image: {
  8493. source: "./media/characters/sovrim-terraquian/hand.svg"
  8494. }
  8495. },
  8496. foot: {
  8497. height: math.unit(1.05, "feet"),
  8498. name: "Foot",
  8499. image: {
  8500. source: "./media/characters/sovrim-terraquian/foot.svg"
  8501. }
  8502. },
  8503. footAlt: {
  8504. height: math.unit(0.88, "feet"),
  8505. name: "Foot (Alt)",
  8506. image: {
  8507. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8508. }
  8509. },
  8510. },
  8511. [
  8512. {
  8513. name: "Micro",
  8514. height: math.unit(2, "inches")
  8515. },
  8516. {
  8517. name: "Small",
  8518. height: math.unit(1, "meter")
  8519. },
  8520. {
  8521. name: "Normal",
  8522. height: math.unit(Math.E, "meters"),
  8523. default: true
  8524. },
  8525. {
  8526. name: "Macro",
  8527. height: math.unit(20, "meters")
  8528. },
  8529. {
  8530. name: "Macro+",
  8531. height: math.unit(400, "meters")
  8532. },
  8533. ]
  8534. ))
  8535. characterMakers.push(() => makeCharacter(
  8536. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8537. {
  8538. front: {
  8539. height: math.unit(7, "feet"),
  8540. weight: math.unit(489, "lbs"),
  8541. name: "Front",
  8542. image: {
  8543. source: "./media/characters/reece-silvermane/front.svg",
  8544. bottom: 0.02,
  8545. extra: 1
  8546. }
  8547. },
  8548. },
  8549. [
  8550. {
  8551. name: "Macro",
  8552. height: math.unit(1.5, "miles"),
  8553. default: true
  8554. },
  8555. ]
  8556. ))
  8557. characterMakers.push(() => makeCharacter(
  8558. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8559. {
  8560. front: {
  8561. height: math.unit(6, "feet"),
  8562. weight: math.unit(78, "kg"),
  8563. name: "Front",
  8564. image: {
  8565. source: "./media/characters/kane/front.svg",
  8566. extra: 978 / 899
  8567. }
  8568. },
  8569. },
  8570. [
  8571. {
  8572. name: "Normal",
  8573. height: math.unit(2.1, "m"),
  8574. },
  8575. {
  8576. name: "Macro",
  8577. height: math.unit(1, "km"),
  8578. default: true
  8579. },
  8580. ]
  8581. ))
  8582. characterMakers.push(() => makeCharacter(
  8583. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8584. {
  8585. front: {
  8586. height: math.unit(6, "feet"),
  8587. weight: math.unit(200, "kg"),
  8588. name: "Front",
  8589. image: {
  8590. source: "./media/characters/tegon/front.svg",
  8591. bottom: 0.01,
  8592. extra: 1
  8593. }
  8594. },
  8595. },
  8596. [
  8597. {
  8598. name: "Micro",
  8599. height: math.unit(1, "inch")
  8600. },
  8601. {
  8602. name: "Normal",
  8603. height: math.unit(6 + 3 / 12, "feet"),
  8604. default: true
  8605. },
  8606. {
  8607. name: "Macro",
  8608. height: math.unit(300, "feet")
  8609. },
  8610. {
  8611. name: "Megamacro",
  8612. height: math.unit(69, "miles")
  8613. },
  8614. ]
  8615. ))
  8616. characterMakers.push(() => makeCharacter(
  8617. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8618. {
  8619. side: {
  8620. height: math.unit(6, "feet"),
  8621. weight: math.unit(2304, "lbs"),
  8622. name: "Side",
  8623. image: {
  8624. source: "./media/characters/arcturax/side.svg",
  8625. extra: 790 / 376,
  8626. bottom: 0.01
  8627. }
  8628. },
  8629. },
  8630. [
  8631. {
  8632. name: "Micro",
  8633. height: math.unit(2, "inch")
  8634. },
  8635. {
  8636. name: "Normal",
  8637. height: math.unit(6, "feet")
  8638. },
  8639. {
  8640. name: "Macro",
  8641. height: math.unit(39, "feet"),
  8642. default: true
  8643. },
  8644. {
  8645. name: "Megamacro",
  8646. height: math.unit(7, "miles")
  8647. },
  8648. ]
  8649. ))
  8650. characterMakers.push(() => makeCharacter(
  8651. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8652. {
  8653. front: {
  8654. height: math.unit(6, "feet"),
  8655. weight: math.unit(50, "lbs"),
  8656. name: "Front",
  8657. image: {
  8658. source: "./media/characters/sentri/front.svg",
  8659. extra: 1750 / 1570,
  8660. bottom: 0.025
  8661. }
  8662. },
  8663. frontAlt: {
  8664. height: math.unit(6, "feet"),
  8665. weight: math.unit(50, "lbs"),
  8666. name: "Front (Alt)",
  8667. image: {
  8668. source: "./media/characters/sentri/front-alt.svg",
  8669. extra: 1750 / 1570,
  8670. bottom: 0.025
  8671. }
  8672. },
  8673. },
  8674. [
  8675. {
  8676. name: "Normal",
  8677. height: math.unit(15, "feet"),
  8678. default: true
  8679. },
  8680. {
  8681. name: "Macro",
  8682. height: math.unit(2500, "feet")
  8683. }
  8684. ]
  8685. ))
  8686. characterMakers.push(() => makeCharacter(
  8687. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8688. {
  8689. front: {
  8690. height: math.unit(5 + 8 / 12, "feet"),
  8691. weight: math.unit(130, "lbs"),
  8692. name: "Front",
  8693. image: {
  8694. source: "./media/characters/corvin/front.svg",
  8695. extra: 1803 / 1629
  8696. }
  8697. },
  8698. frontShirt: {
  8699. height: math.unit(5 + 8 / 12, "feet"),
  8700. weight: math.unit(130, "lbs"),
  8701. name: "Front (Shirt)",
  8702. image: {
  8703. source: "./media/characters/corvin/front-shirt.svg",
  8704. extra: 1803 / 1629
  8705. }
  8706. },
  8707. frontPoncho: {
  8708. height: math.unit(5 + 8 / 12, "feet"),
  8709. weight: math.unit(130, "lbs"),
  8710. name: "Front (Poncho)",
  8711. image: {
  8712. source: "./media/characters/corvin/front-poncho.svg",
  8713. extra: 1803 / 1629
  8714. }
  8715. },
  8716. side: {
  8717. height: math.unit(5 + 8 / 12, "feet"),
  8718. weight: math.unit(130, "lbs"),
  8719. name: "Side",
  8720. image: {
  8721. source: "./media/characters/corvin/side.svg",
  8722. extra: 1012 / 945
  8723. }
  8724. },
  8725. back: {
  8726. height: math.unit(5 + 8 / 12, "feet"),
  8727. weight: math.unit(130, "lbs"),
  8728. name: "Back",
  8729. image: {
  8730. source: "./media/characters/corvin/back.svg",
  8731. extra: 1803 / 1629
  8732. }
  8733. },
  8734. },
  8735. [
  8736. {
  8737. name: "Micro",
  8738. height: math.unit(3, "inches")
  8739. },
  8740. {
  8741. name: "Normal",
  8742. height: math.unit(5 + 8 / 12, "feet")
  8743. },
  8744. {
  8745. name: "Macro",
  8746. height: math.unit(300, "feet"),
  8747. default: true
  8748. },
  8749. {
  8750. name: "Megamacro",
  8751. height: math.unit(500, "miles")
  8752. }
  8753. ]
  8754. ))
  8755. characterMakers.push(() => makeCharacter(
  8756. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8757. {
  8758. front: {
  8759. height: math.unit(6, "feet"),
  8760. weight: math.unit(135, "lbs"),
  8761. name: "Front",
  8762. image: {
  8763. source: "./media/characters/q/front.svg",
  8764. extra: 854 / 752,
  8765. bottom: 0.005
  8766. }
  8767. },
  8768. back: {
  8769. height: math.unit(6, "feet"),
  8770. weight: math.unit(130, "lbs"),
  8771. name: "Back",
  8772. image: {
  8773. source: "./media/characters/q/back.svg",
  8774. extra: 854 / 752
  8775. }
  8776. },
  8777. },
  8778. [
  8779. {
  8780. name: "Macro",
  8781. height: math.unit(90, "feet"),
  8782. default: true
  8783. },
  8784. {
  8785. name: "Extra Macro",
  8786. height: math.unit(300, "feet"),
  8787. },
  8788. {
  8789. name: "BIG WALF",
  8790. height: math.unit(750, "feet"),
  8791. },
  8792. ]
  8793. ))
  8794. characterMakers.push(() => makeCharacter(
  8795. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8796. {
  8797. front: {
  8798. height: math.unit(6, "feet"),
  8799. weight: math.unit(150, "lbs"),
  8800. name: "Front",
  8801. image: {
  8802. source: "./media/characters/carley/front.svg",
  8803. extra: 3927 / 3540,
  8804. bottom: 29.2 / 735
  8805. }
  8806. }
  8807. },
  8808. [
  8809. {
  8810. name: "Normal",
  8811. height: math.unit(6 + 3 / 12, "feet")
  8812. },
  8813. {
  8814. name: "Macro",
  8815. height: math.unit(185, "feet"),
  8816. default: true
  8817. },
  8818. {
  8819. name: "Megamacro",
  8820. height: math.unit(8, "miles"),
  8821. },
  8822. ]
  8823. ))
  8824. characterMakers.push(() => makeCharacter(
  8825. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8826. {
  8827. front: {
  8828. height: math.unit(3, "feet"),
  8829. weight: math.unit(28, "lbs"),
  8830. name: "Front",
  8831. image: {
  8832. source: "./media/characters/citrine/front.svg"
  8833. }
  8834. }
  8835. },
  8836. [
  8837. {
  8838. name: "Normal",
  8839. height: math.unit(3, "feet"),
  8840. default: true
  8841. }
  8842. ]
  8843. ))
  8844. characterMakers.push(() => makeCharacter(
  8845. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8846. {
  8847. front: {
  8848. height: math.unit(14, "feet"),
  8849. weight: math.unit(1450, "kg"),
  8850. preyCapacity: math.unit(15, "people"),
  8851. name: "Front",
  8852. image: {
  8853. source: "./media/characters/aura-starwind/front.svg",
  8854. extra: 1440/1327,
  8855. bottom: 11/1451
  8856. }
  8857. },
  8858. side: {
  8859. height: math.unit(14, "feet"),
  8860. weight: math.unit(1450, "kg"),
  8861. preyCapacity: math.unit(15, "people"),
  8862. name: "Side",
  8863. image: {
  8864. source: "./media/characters/aura-starwind/side.svg",
  8865. extra: 1654 / 1497
  8866. }
  8867. },
  8868. taur: {
  8869. height: math.unit(18, "feet"),
  8870. weight: math.unit(5500, "kg"),
  8871. preyCapacity: math.unit(50, "people"),
  8872. name: "Taur",
  8873. image: {
  8874. source: "./media/characters/aura-starwind/taur.svg",
  8875. extra: 1760 / 1650
  8876. }
  8877. },
  8878. feral: {
  8879. height: math.unit(46, "feet"),
  8880. weight: math.unit(25000, "kg"),
  8881. preyCapacity: math.unit(120, "people"),
  8882. name: "Feral",
  8883. image: {
  8884. source: "./media/characters/aura-starwind/feral.svg"
  8885. }
  8886. },
  8887. },
  8888. [
  8889. {
  8890. name: "Normal",
  8891. height: math.unit(14, "feet"),
  8892. default: true
  8893. },
  8894. {
  8895. name: "Macro",
  8896. height: math.unit(50, "meters")
  8897. },
  8898. {
  8899. name: "Megamacro",
  8900. height: math.unit(5000, "meters")
  8901. },
  8902. {
  8903. name: "Gigamacro",
  8904. height: math.unit(100000, "kilometers")
  8905. },
  8906. ]
  8907. ))
  8908. characterMakers.push(() => makeCharacter(
  8909. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8910. {
  8911. front: {
  8912. height: math.unit(2 + 7 / 12, "feet"),
  8913. weight: math.unit(32, "lbs"),
  8914. name: "Front",
  8915. image: {
  8916. source: "./media/characters/rivet/front.svg",
  8917. extra: 1716 / 1658,
  8918. bottom: 0.03
  8919. }
  8920. },
  8921. foot: {
  8922. height: math.unit(0.551, "feet"),
  8923. name: "Rivet's Foot",
  8924. image: {
  8925. source: "./media/characters/rivet/foot.svg"
  8926. },
  8927. rename: true
  8928. }
  8929. },
  8930. [
  8931. {
  8932. name: "Micro",
  8933. height: math.unit(1.5, "inches"),
  8934. },
  8935. {
  8936. name: "Normal",
  8937. height: math.unit(2 + 7 / 12, "feet"),
  8938. default: true
  8939. },
  8940. {
  8941. name: "Macro",
  8942. height: math.unit(85, "feet")
  8943. },
  8944. {
  8945. name: "Megamacro",
  8946. height: math.unit(2.2, "km")
  8947. }
  8948. ]
  8949. ))
  8950. characterMakers.push(() => makeCharacter(
  8951. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8952. {
  8953. front: {
  8954. height: math.unit(5 + 9 / 12, "feet"),
  8955. weight: math.unit(150, "lbs"),
  8956. name: "Front",
  8957. image: {
  8958. source: "./media/characters/coffee/front.svg",
  8959. extra: 3666 / 3032,
  8960. bottom: 0.04
  8961. }
  8962. },
  8963. foot: {
  8964. height: math.unit(1.29, "feet"),
  8965. name: "Foot",
  8966. image: {
  8967. source: "./media/characters/coffee/foot.svg"
  8968. }
  8969. },
  8970. },
  8971. [
  8972. {
  8973. name: "Micro",
  8974. height: math.unit(2, "inches"),
  8975. },
  8976. {
  8977. name: "Normal",
  8978. height: math.unit(5 + 9 / 12, "feet"),
  8979. default: true
  8980. },
  8981. {
  8982. name: "Macro",
  8983. height: math.unit(800, "feet")
  8984. },
  8985. {
  8986. name: "Megamacro",
  8987. height: math.unit(25, "miles")
  8988. }
  8989. ]
  8990. ))
  8991. characterMakers.push(() => makeCharacter(
  8992. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8993. {
  8994. front: {
  8995. height: math.unit(6, "feet"),
  8996. weight: math.unit(200, "lbs"),
  8997. name: "Front",
  8998. image: {
  8999. source: "./media/characters/chari-gal/front.svg",
  9000. extra: 1568 / 1385,
  9001. bottom: 0.047
  9002. }
  9003. },
  9004. gigantamax: {
  9005. height: math.unit(6 * 16, "feet"),
  9006. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9007. name: "Gigantamax",
  9008. image: {
  9009. source: "./media/characters/chari-gal/gigantamax.svg",
  9010. extra: 1124 / 888,
  9011. bottom: 0.03
  9012. }
  9013. },
  9014. },
  9015. [
  9016. {
  9017. name: "Normal",
  9018. height: math.unit(5 + 7 / 12, "feet")
  9019. },
  9020. {
  9021. name: "Macro",
  9022. height: math.unit(200, "feet"),
  9023. default: true
  9024. }
  9025. ]
  9026. ))
  9027. characterMakers.push(() => makeCharacter(
  9028. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9029. {
  9030. front: {
  9031. height: math.unit(6, "feet"),
  9032. weight: math.unit(150, "lbs"),
  9033. name: "Front",
  9034. image: {
  9035. source: "./media/characters/nova/front.svg",
  9036. extra: 5000 / 4722,
  9037. bottom: 0.02
  9038. }
  9039. }
  9040. },
  9041. [
  9042. {
  9043. name: "Micro-",
  9044. height: math.unit(0.8, "inches")
  9045. },
  9046. {
  9047. name: "Micro",
  9048. height: math.unit(2, "inches"),
  9049. default: true
  9050. },
  9051. ]
  9052. ))
  9053. characterMakers.push(() => makeCharacter(
  9054. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9055. {
  9056. front: {
  9057. height: math.unit(3 + 1 / 12, "feet"),
  9058. weight: math.unit(21.7, "lbs"),
  9059. name: "Front",
  9060. image: {
  9061. source: "./media/characters/argent/front.svg",
  9062. extra: 1471 / 1331,
  9063. bottom: 100.8 / 1575.5
  9064. }
  9065. }
  9066. },
  9067. [
  9068. {
  9069. name: "Micro",
  9070. height: math.unit(2, "inches")
  9071. },
  9072. {
  9073. name: "Normal",
  9074. height: math.unit(3 + 1 / 12, "feet"),
  9075. default: true
  9076. },
  9077. {
  9078. name: "Macro",
  9079. height: math.unit(120, "feet")
  9080. },
  9081. ]
  9082. ))
  9083. characterMakers.push(() => makeCharacter(
  9084. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9085. {
  9086. lamp: {
  9087. height: math.unit(7 * 1559 / 989, "feet"),
  9088. name: "Magic Lamp",
  9089. image: {
  9090. source: "./media/characters/mira-al-cul/lamp.svg",
  9091. extra: 1617 / 1559
  9092. }
  9093. },
  9094. front: {
  9095. height: math.unit(7, "feet"),
  9096. name: "Front",
  9097. image: {
  9098. source: "./media/characters/mira-al-cul/front.svg",
  9099. extra: 1044 / 990
  9100. }
  9101. },
  9102. },
  9103. [
  9104. {
  9105. name: "Heavily Restricted",
  9106. height: math.unit(7 * 1559 / 989, "feet")
  9107. },
  9108. {
  9109. name: "Freshly Freed",
  9110. height: math.unit(50 * 1559 / 989, "feet")
  9111. },
  9112. {
  9113. name: "World Encompassing",
  9114. height: math.unit(10000 * 1559 / 989, "miles")
  9115. },
  9116. {
  9117. name: "Galactic",
  9118. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9119. },
  9120. {
  9121. name: "Palmed Universe",
  9122. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9123. default: true
  9124. },
  9125. {
  9126. name: "Multiversal Matriarch",
  9127. height: math.unit(8.87e10, "yottameters")
  9128. },
  9129. {
  9130. name: "Void Mother",
  9131. height: math.unit(3.14e110, "yottaparsecs")
  9132. },
  9133. {
  9134. name: "Toying with Transcendence",
  9135. height: math.unit(1e307, "meters")
  9136. },
  9137. ]
  9138. ))
  9139. characterMakers.push(() => makeCharacter(
  9140. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9141. {
  9142. front: {
  9143. height: math.unit(17 + 1 / 12, "feet"),
  9144. weight: math.unit(476.2 * 5, "lbs"),
  9145. name: "Front",
  9146. image: {
  9147. source: "./media/characters/kuro-shi-uchū/front.svg",
  9148. extra: 2329 / 1835,
  9149. bottom: 0.02
  9150. }
  9151. },
  9152. },
  9153. [
  9154. {
  9155. name: "Micro",
  9156. height: math.unit(2, "inches")
  9157. },
  9158. {
  9159. name: "Normal",
  9160. height: math.unit(12, "meters")
  9161. },
  9162. {
  9163. name: "Planetary",
  9164. height: math.unit(0.00929, "AU"),
  9165. default: true
  9166. },
  9167. {
  9168. name: "Universal",
  9169. height: math.unit(20, "gigaparsecs")
  9170. },
  9171. ]
  9172. ))
  9173. characterMakers.push(() => makeCharacter(
  9174. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9175. {
  9176. front: {
  9177. height: math.unit(5 + 2 / 12, "feet"),
  9178. weight: math.unit(120, "lbs"),
  9179. name: "Front",
  9180. image: {
  9181. source: "./media/characters/katherine/front.svg",
  9182. extra: 2075 / 1969
  9183. }
  9184. },
  9185. dress: {
  9186. height: math.unit(5 + 2 / 12, "feet"),
  9187. weight: math.unit(120, "lbs"),
  9188. name: "Dress",
  9189. image: {
  9190. source: "./media/characters/katherine/dress.svg",
  9191. extra: 2258 / 2064
  9192. }
  9193. },
  9194. },
  9195. [
  9196. {
  9197. name: "Micro",
  9198. height: math.unit(1, "inches"),
  9199. default: true
  9200. },
  9201. {
  9202. name: "Normal",
  9203. height: math.unit(5 + 2 / 12, "feet")
  9204. },
  9205. {
  9206. name: "Macro",
  9207. height: math.unit(100, "meters")
  9208. },
  9209. {
  9210. name: "Megamacro",
  9211. height: math.unit(80, "miles")
  9212. },
  9213. ]
  9214. ))
  9215. characterMakers.push(() => makeCharacter(
  9216. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9217. {
  9218. front: {
  9219. height: math.unit(7 + 8 / 12, "feet"),
  9220. weight: math.unit(250, "lbs"),
  9221. name: "Front",
  9222. image: {
  9223. source: "./media/characters/yevis/front.svg",
  9224. extra: 1938 / 1755
  9225. }
  9226. }
  9227. },
  9228. [
  9229. {
  9230. name: "Mortal",
  9231. height: math.unit(7 + 8 / 12, "feet")
  9232. },
  9233. {
  9234. name: "Battle",
  9235. height: math.unit(25 + 11 / 12, "feet")
  9236. },
  9237. {
  9238. name: "Wrath",
  9239. height: math.unit(1654 + 11 / 12, "feet")
  9240. },
  9241. {
  9242. name: "Planet Destroyer",
  9243. height: math.unit(12000, "miles")
  9244. },
  9245. {
  9246. name: "Galaxy Conqueror",
  9247. height: math.unit(1.45, "zettameters"),
  9248. default: true
  9249. },
  9250. {
  9251. name: "Universal War",
  9252. height: math.unit(184, "gigaparsecs")
  9253. },
  9254. {
  9255. name: "Eternity War",
  9256. height: math.unit(1.98e55, "yottaparsecs")
  9257. },
  9258. ]
  9259. ))
  9260. characterMakers.push(() => makeCharacter(
  9261. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9262. {
  9263. front: {
  9264. height: math.unit(5 + 8 / 12, "feet"),
  9265. weight: math.unit(63, "kg"),
  9266. name: "Front",
  9267. image: {
  9268. source: "./media/characters/xavier/front.svg",
  9269. extra: 944 / 883
  9270. }
  9271. },
  9272. frontStretch: {
  9273. height: math.unit(5 + 8 / 12, "feet"),
  9274. weight: math.unit(63, "kg"),
  9275. name: "Stretching",
  9276. image: {
  9277. source: "./media/characters/xavier/front-stretch.svg",
  9278. extra: 962 / 820
  9279. }
  9280. },
  9281. },
  9282. [
  9283. {
  9284. name: "Normal",
  9285. height: math.unit(5 + 8 / 12, "feet")
  9286. },
  9287. {
  9288. name: "Macro",
  9289. height: math.unit(100, "meters"),
  9290. default: true
  9291. },
  9292. {
  9293. name: "McLargeHuge",
  9294. height: math.unit(10, "miles")
  9295. },
  9296. ]
  9297. ))
  9298. characterMakers.push(() => makeCharacter(
  9299. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9300. {
  9301. front: {
  9302. height: math.unit(5 + 5 / 12, "feet"),
  9303. weight: math.unit(150, "lb"),
  9304. name: "Front",
  9305. image: {
  9306. source: "./media/characters/joshii/front.svg",
  9307. extra: 765 / 653,
  9308. bottom: 51 / 816
  9309. }
  9310. },
  9311. foot: {
  9312. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9313. name: "Foot",
  9314. image: {
  9315. source: "./media/characters/joshii/foot.svg"
  9316. }
  9317. },
  9318. },
  9319. [
  9320. {
  9321. name: "Micro",
  9322. height: math.unit(2, "inches"),
  9323. default: true
  9324. },
  9325. {
  9326. name: "Normal",
  9327. height: math.unit(5 + 5 / 12, "feet")
  9328. },
  9329. {
  9330. name: "Macro",
  9331. height: math.unit(785, "feet")
  9332. },
  9333. {
  9334. name: "Megamacro",
  9335. height: math.unit(24.5, "miles")
  9336. },
  9337. ]
  9338. ))
  9339. characterMakers.push(() => makeCharacter(
  9340. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9341. {
  9342. front: {
  9343. height: math.unit(6, "feet"),
  9344. weight: math.unit(150, "lb"),
  9345. name: "Front",
  9346. image: {
  9347. source: "./media/characters/goddess-elizabeth/front.svg",
  9348. extra: 1800 / 1525,
  9349. bottom: 0.005
  9350. }
  9351. },
  9352. foot: {
  9353. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9354. name: "Foot",
  9355. image: {
  9356. source: "./media/characters/goddess-elizabeth/foot.svg"
  9357. }
  9358. },
  9359. mouth: {
  9360. height: math.unit(6, "feet"),
  9361. name: "Mouth",
  9362. image: {
  9363. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9364. }
  9365. },
  9366. },
  9367. [
  9368. {
  9369. name: "Micro",
  9370. height: math.unit(12, "feet")
  9371. },
  9372. {
  9373. name: "Normal",
  9374. height: math.unit(80, "miles"),
  9375. default: true
  9376. },
  9377. {
  9378. name: "Macro",
  9379. height: math.unit(15000, "parsecs")
  9380. },
  9381. ]
  9382. ))
  9383. characterMakers.push(() => makeCharacter(
  9384. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9385. {
  9386. front: {
  9387. height: math.unit(5 + 9 / 12, "feet"),
  9388. weight: math.unit(144, "lb"),
  9389. name: "Front",
  9390. image: {
  9391. source: "./media/characters/kara/front.svg"
  9392. }
  9393. },
  9394. feet: {
  9395. height: math.unit(6 / 6.765, "feet"),
  9396. name: "Kara's Feet",
  9397. rename: true,
  9398. image: {
  9399. source: "./media/characters/kara/feet.svg"
  9400. }
  9401. },
  9402. },
  9403. [
  9404. {
  9405. name: "Normal",
  9406. height: math.unit(5 + 9 / 12, "feet")
  9407. },
  9408. {
  9409. name: "Macro",
  9410. height: math.unit(174, "feet"),
  9411. default: true
  9412. },
  9413. ]
  9414. ))
  9415. characterMakers.push(() => makeCharacter(
  9416. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9417. {
  9418. front: {
  9419. height: math.unit(18, "feet"),
  9420. weight: math.unit(4050, "lb"),
  9421. name: "Front",
  9422. image: {
  9423. source: "./media/characters/tyrone/front.svg",
  9424. extra: 2405 / 2270,
  9425. bottom: 182 / 2587
  9426. }
  9427. },
  9428. },
  9429. [
  9430. {
  9431. name: "Normal",
  9432. height: math.unit(18, "feet"),
  9433. default: true
  9434. },
  9435. {
  9436. name: "Macro",
  9437. height: math.unit(300, "feet")
  9438. },
  9439. {
  9440. name: "Megamacro",
  9441. height: math.unit(15, "km")
  9442. },
  9443. {
  9444. name: "Gigamacro",
  9445. height: math.unit(500, "km")
  9446. },
  9447. {
  9448. name: "Teramacro",
  9449. height: math.unit(0.5, "gigameters")
  9450. },
  9451. {
  9452. name: "Omnimacro",
  9453. height: math.unit(1e252, "yottauniverse")
  9454. },
  9455. ]
  9456. ))
  9457. characterMakers.push(() => makeCharacter(
  9458. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9459. {
  9460. front: {
  9461. height: math.unit(7 + 8 / 12, "feet"),
  9462. weight: math.unit(120, "lb"),
  9463. name: "Front",
  9464. image: {
  9465. source: "./media/characters/danny/front.svg",
  9466. extra: 1490 / 1350
  9467. }
  9468. },
  9469. back: {
  9470. height: math.unit(7 + 8 / 12, "feet"),
  9471. weight: math.unit(120, "lb"),
  9472. name: "Back",
  9473. image: {
  9474. source: "./media/characters/danny/back.svg",
  9475. extra: 1490 / 1350
  9476. }
  9477. },
  9478. },
  9479. [
  9480. {
  9481. name: "Normal",
  9482. height: math.unit(7 + 8 / 12, "feet"),
  9483. default: true
  9484. },
  9485. ]
  9486. ))
  9487. characterMakers.push(() => makeCharacter(
  9488. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9489. {
  9490. front: {
  9491. height: math.unit(3.5, "inches"),
  9492. weight: math.unit(19, "grams"),
  9493. name: "Front",
  9494. image: {
  9495. source: "./media/characters/mallow/front.svg",
  9496. extra: 471 / 431
  9497. }
  9498. },
  9499. back: {
  9500. height: math.unit(3.5, "inches"),
  9501. weight: math.unit(19, "grams"),
  9502. name: "Back",
  9503. image: {
  9504. source: "./media/characters/mallow/back.svg",
  9505. extra: 471 / 431
  9506. }
  9507. },
  9508. },
  9509. [
  9510. {
  9511. name: "Normal",
  9512. height: math.unit(3.5, "inches"),
  9513. default: true
  9514. },
  9515. ]
  9516. ))
  9517. characterMakers.push(() => makeCharacter(
  9518. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9519. {
  9520. front: {
  9521. height: math.unit(9, "feet"),
  9522. weight: math.unit(230, "kg"),
  9523. name: "Front",
  9524. image: {
  9525. source: "./media/characters/starry-aqua/front.svg"
  9526. }
  9527. },
  9528. back: {
  9529. height: math.unit(9, "feet"),
  9530. weight: math.unit(230, "kg"),
  9531. name: "Back",
  9532. image: {
  9533. source: "./media/characters/starry-aqua/back.svg"
  9534. }
  9535. },
  9536. hand: {
  9537. height: math.unit(9 * 0.1168, "feet"),
  9538. name: "Hand",
  9539. image: {
  9540. source: "./media/characters/starry-aqua/hand.svg"
  9541. }
  9542. },
  9543. foot: {
  9544. height: math.unit(9 * 0.18, "feet"),
  9545. name: "Foot",
  9546. image: {
  9547. source: "./media/characters/starry-aqua/foot.svg"
  9548. }
  9549. }
  9550. },
  9551. [
  9552. {
  9553. name: "Micro",
  9554. height: math.unit(3, "inches")
  9555. },
  9556. {
  9557. name: "Normal",
  9558. height: math.unit(9, "feet")
  9559. },
  9560. {
  9561. name: "Macro",
  9562. height: math.unit(300, "feet"),
  9563. default: true
  9564. },
  9565. {
  9566. name: "Megamacro",
  9567. height: math.unit(3200, "feet")
  9568. }
  9569. ]
  9570. ))
  9571. characterMakers.push(() => makeCharacter(
  9572. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9573. {
  9574. front: {
  9575. height: math.unit(15, "feet"),
  9576. weight: math.unit(5026, "lb"),
  9577. name: "Front",
  9578. image: {
  9579. source: "./media/characters/luka-towers/front.svg",
  9580. extra: 1269/1133,
  9581. bottom: 51/1320
  9582. }
  9583. },
  9584. },
  9585. [
  9586. {
  9587. name: "Normal",
  9588. height: math.unit(15, "feet"),
  9589. default: true
  9590. },
  9591. {
  9592. name: "Minimacro",
  9593. height: math.unit(25, "feet")
  9594. },
  9595. {
  9596. name: "Macro",
  9597. height: math.unit(320, "feet")
  9598. },
  9599. {
  9600. name: "Megamacro",
  9601. height: math.unit(35000, "feet")
  9602. },
  9603. {
  9604. name: "Gigamacro",
  9605. height: math.unit(4000, "miles")
  9606. },
  9607. {
  9608. name: "Teramacro",
  9609. height: math.unit(15000, "miles")
  9610. },
  9611. ]
  9612. ))
  9613. characterMakers.push(() => makeCharacter(
  9614. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9615. {
  9616. front: {
  9617. height: math.unit(6, "feet"),
  9618. weight: math.unit(150, "lb"),
  9619. name: "Front",
  9620. image: {
  9621. source: "./media/characters/natalie-nightring/front.svg",
  9622. extra: 1,
  9623. bottom: 0.06
  9624. }
  9625. },
  9626. },
  9627. [
  9628. {
  9629. name: "Uh Oh",
  9630. height: math.unit(0.1, "mm")
  9631. },
  9632. {
  9633. name: "Small",
  9634. height: math.unit(3, "inches")
  9635. },
  9636. {
  9637. name: "Human Scale",
  9638. height: math.unit(6, "feet")
  9639. },
  9640. {
  9641. name: "Librarian",
  9642. height: math.unit(50, "feet"),
  9643. default: true
  9644. },
  9645. {
  9646. name: "Immense",
  9647. height: math.unit(200, "miles")
  9648. },
  9649. ]
  9650. ))
  9651. characterMakers.push(() => makeCharacter(
  9652. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9653. {
  9654. front: {
  9655. height: math.unit(6, "feet"),
  9656. weight: math.unit(180, "lbs"),
  9657. name: "Front",
  9658. image: {
  9659. source: "./media/characters/danni-rosie/front.svg",
  9660. extra: 1260 / 1128,
  9661. bottom: 0.022
  9662. }
  9663. },
  9664. },
  9665. [
  9666. {
  9667. name: "Micro",
  9668. height: math.unit(2, "inches"),
  9669. default: true
  9670. },
  9671. ]
  9672. ))
  9673. characterMakers.push(() => makeCharacter(
  9674. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9675. {
  9676. front: {
  9677. height: math.unit(5 + 9 / 12, "feet"),
  9678. weight: math.unit(220, "lb"),
  9679. name: "Front",
  9680. image: {
  9681. source: "./media/characters/samantha-kruse/front.svg",
  9682. extra: (985 / 935),
  9683. bottom: 0.03
  9684. }
  9685. },
  9686. frontUndressed: {
  9687. height: math.unit(5 + 9 / 12, "feet"),
  9688. weight: math.unit(220, "lb"),
  9689. name: "Front (Undressed)",
  9690. image: {
  9691. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9692. extra: (973 / 923),
  9693. bottom: 0.025
  9694. }
  9695. },
  9696. fat: {
  9697. height: math.unit(5 + 9 / 12, "feet"),
  9698. weight: math.unit(900, "lb"),
  9699. name: "Front (Fat)",
  9700. image: {
  9701. source: "./media/characters/samantha-kruse/fat.svg",
  9702. extra: 2688 / 2561
  9703. }
  9704. },
  9705. },
  9706. [
  9707. {
  9708. name: "Normal",
  9709. height: math.unit(5 + 9 / 12, "feet"),
  9710. default: true
  9711. }
  9712. ]
  9713. ))
  9714. characterMakers.push(() => makeCharacter(
  9715. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9716. {
  9717. back: {
  9718. height: math.unit(5 + 4 / 12, "feet"),
  9719. weight: math.unit(4963, "lb"),
  9720. name: "Back",
  9721. image: {
  9722. source: "./media/characters/amelia-rosie/back.svg",
  9723. extra: 1113 / 963,
  9724. bottom: 0.01
  9725. }
  9726. },
  9727. },
  9728. [
  9729. {
  9730. name: "Level 0",
  9731. height: math.unit(5 + 4 / 12, "feet")
  9732. },
  9733. {
  9734. name: "Level 1",
  9735. height: math.unit(164597, "feet"),
  9736. default: true
  9737. },
  9738. {
  9739. name: "Level 2",
  9740. height: math.unit(956243, "miles")
  9741. },
  9742. {
  9743. name: "Level 3",
  9744. height: math.unit(29421709423, "miles")
  9745. },
  9746. {
  9747. name: "Level 4",
  9748. height: math.unit(154, "lightyears")
  9749. },
  9750. {
  9751. name: "Level 5",
  9752. height: math.unit(4738272, "lightyears")
  9753. },
  9754. {
  9755. name: "Level 6",
  9756. height: math.unit(145787152896, "lightyears")
  9757. },
  9758. ]
  9759. ))
  9760. characterMakers.push(() => makeCharacter(
  9761. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9762. {
  9763. front: {
  9764. height: math.unit(5 + 11 / 12, "feet"),
  9765. weight: math.unit(65, "kg"),
  9766. name: "Front",
  9767. image: {
  9768. source: "./media/characters/rook-kitara/front.svg",
  9769. extra: 1347 / 1274,
  9770. bottom: 0.005
  9771. }
  9772. },
  9773. },
  9774. [
  9775. {
  9776. name: "Totally Unfair",
  9777. height: math.unit(1.8, "mm")
  9778. },
  9779. {
  9780. name: "Lap Rookie",
  9781. height: math.unit(1.4, "feet")
  9782. },
  9783. {
  9784. name: "Normal",
  9785. height: math.unit(5 + 11 / 12, "feet"),
  9786. default: true
  9787. },
  9788. {
  9789. name: "How Did This Happen",
  9790. height: math.unit(80, "miles")
  9791. }
  9792. ]
  9793. ))
  9794. characterMakers.push(() => makeCharacter(
  9795. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9796. {
  9797. front: {
  9798. height: math.unit(7, "feet"),
  9799. weight: math.unit(300, "lb"),
  9800. name: "Front",
  9801. image: {
  9802. source: "./media/characters/pisces/front.svg",
  9803. extra: 2255 / 2115,
  9804. bottom: 0.03
  9805. }
  9806. },
  9807. back: {
  9808. height: math.unit(7, "feet"),
  9809. weight: math.unit(300, "lb"),
  9810. name: "Back",
  9811. image: {
  9812. source: "./media/characters/pisces/back.svg",
  9813. extra: 2146 / 2055,
  9814. bottom: 0.04
  9815. }
  9816. },
  9817. },
  9818. [
  9819. {
  9820. name: "Normal",
  9821. height: math.unit(7, "feet"),
  9822. default: true
  9823. },
  9824. {
  9825. name: "Swimming Pool",
  9826. height: math.unit(12.2, "meters")
  9827. },
  9828. {
  9829. name: "Olympic Swimming Pool",
  9830. height: math.unit(56.3, "meters")
  9831. },
  9832. {
  9833. name: "Lake Superior",
  9834. height: math.unit(93900, "meters")
  9835. },
  9836. {
  9837. name: "Mediterranean Sea",
  9838. height: math.unit(644457, "meters")
  9839. },
  9840. {
  9841. name: "World's Oceans",
  9842. height: math.unit(4567491, "meters")
  9843. },
  9844. ]
  9845. ))
  9846. characterMakers.push(() => makeCharacter(
  9847. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9848. {
  9849. front: {
  9850. height: math.unit(2.3, "meters"),
  9851. weight: math.unit(120, "kg"),
  9852. name: "Front",
  9853. image: {
  9854. source: "./media/characters/zelas/front.svg"
  9855. }
  9856. },
  9857. side: {
  9858. height: math.unit(2.3, "meters"),
  9859. weight: math.unit(120, "kg"),
  9860. name: "Side",
  9861. image: {
  9862. source: "./media/characters/zelas/side.svg"
  9863. }
  9864. },
  9865. back: {
  9866. height: math.unit(2.3, "meters"),
  9867. weight: math.unit(120, "kg"),
  9868. name: "Back",
  9869. image: {
  9870. source: "./media/characters/zelas/back.svg"
  9871. }
  9872. },
  9873. foot: {
  9874. height: math.unit(1.116, "feet"),
  9875. name: "Foot",
  9876. image: {
  9877. source: "./media/characters/zelas/foot.svg"
  9878. }
  9879. },
  9880. },
  9881. [
  9882. {
  9883. name: "Normal",
  9884. height: math.unit(2.3, "meters")
  9885. },
  9886. {
  9887. name: "Macro",
  9888. height: math.unit(30, "meters"),
  9889. default: true
  9890. },
  9891. ]
  9892. ))
  9893. characterMakers.push(() => makeCharacter(
  9894. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9895. {
  9896. front: {
  9897. height: math.unit(1, "inch"),
  9898. weight: math.unit(0.21, "grams"),
  9899. name: "Front",
  9900. image: {
  9901. source: "./media/characters/talbot/front.svg",
  9902. extra: 594 / 544
  9903. }
  9904. },
  9905. },
  9906. [
  9907. {
  9908. name: "Micro",
  9909. height: math.unit(1, "inch"),
  9910. default: true
  9911. },
  9912. ]
  9913. ))
  9914. characterMakers.push(() => makeCharacter(
  9915. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9916. {
  9917. front: {
  9918. height: math.unit(3 + 3 / 12, "feet"),
  9919. weight: math.unit(51.8, "lb"),
  9920. name: "Front",
  9921. image: {
  9922. source: "./media/characters/fliss/front.svg",
  9923. extra: 840 / 640
  9924. }
  9925. },
  9926. },
  9927. [
  9928. {
  9929. name: "Teeny Tiny",
  9930. height: math.unit(1, "mm")
  9931. },
  9932. {
  9933. name: "Small",
  9934. height: math.unit(1, "inch"),
  9935. default: true
  9936. },
  9937. {
  9938. name: "Standard Sylveon",
  9939. height: math.unit(3 + 3 / 12, "feet")
  9940. },
  9941. {
  9942. name: "Large Nuisance",
  9943. height: math.unit(33, "feet")
  9944. },
  9945. {
  9946. name: "City Filler",
  9947. height: math.unit(3000, "feet")
  9948. },
  9949. {
  9950. name: "New Horizon",
  9951. height: math.unit(6000, "miles")
  9952. },
  9953. ]
  9954. ))
  9955. characterMakers.push(() => makeCharacter(
  9956. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9957. {
  9958. front: {
  9959. height: math.unit(5, "cm"),
  9960. weight: math.unit(1.94, "g"),
  9961. name: "Front",
  9962. image: {
  9963. source: "./media/characters/fleta/front.svg",
  9964. extra: 835 / 803
  9965. }
  9966. },
  9967. back: {
  9968. height: math.unit(5, "cm"),
  9969. weight: math.unit(1.94, "g"),
  9970. name: "Back",
  9971. image: {
  9972. source: "./media/characters/fleta/back.svg",
  9973. extra: 835 / 803
  9974. }
  9975. },
  9976. },
  9977. [
  9978. {
  9979. name: "Micro",
  9980. height: math.unit(5, "cm"),
  9981. default: true
  9982. },
  9983. ]
  9984. ))
  9985. characterMakers.push(() => makeCharacter(
  9986. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9987. {
  9988. front: {
  9989. height: math.unit(6, "feet"),
  9990. weight: math.unit(225, "lb"),
  9991. name: "Front",
  9992. image: {
  9993. source: "./media/characters/dominic/front.svg",
  9994. extra: 1770 / 1620,
  9995. bottom: 0.025
  9996. }
  9997. },
  9998. back: {
  9999. height: math.unit(6, "feet"),
  10000. weight: math.unit(225, "lb"),
  10001. name: "Back",
  10002. image: {
  10003. source: "./media/characters/dominic/back.svg",
  10004. extra: 1745 / 1620,
  10005. bottom: 0.065
  10006. }
  10007. },
  10008. },
  10009. [
  10010. {
  10011. name: "Nano",
  10012. height: math.unit(0.1, "mm")
  10013. },
  10014. {
  10015. name: "Micro-",
  10016. height: math.unit(1, "mm")
  10017. },
  10018. {
  10019. name: "Micro",
  10020. height: math.unit(4, "inches")
  10021. },
  10022. {
  10023. name: "Normal",
  10024. height: math.unit(6 + 4 / 12, "feet"),
  10025. default: true
  10026. },
  10027. {
  10028. name: "Macro",
  10029. height: math.unit(115, "feet")
  10030. },
  10031. {
  10032. name: "Macro+",
  10033. height: math.unit(955, "feet")
  10034. },
  10035. {
  10036. name: "Megamacro",
  10037. height: math.unit(8990, "feet")
  10038. },
  10039. {
  10040. name: "Gigmacro",
  10041. height: math.unit(9310, "miles")
  10042. },
  10043. {
  10044. name: "Teramacro",
  10045. height: math.unit(1567005010, "miles")
  10046. },
  10047. {
  10048. name: "Examacro",
  10049. height: math.unit(1425, "parsecs")
  10050. },
  10051. ]
  10052. ))
  10053. characterMakers.push(() => makeCharacter(
  10054. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10055. {
  10056. front: {
  10057. height: math.unit(400, "feet"),
  10058. weight: math.unit(44444444, "lb"),
  10059. name: "Front",
  10060. image: {
  10061. source: "./media/characters/major-colonel/front.svg"
  10062. }
  10063. },
  10064. back: {
  10065. height: math.unit(400, "feet"),
  10066. weight: math.unit(44444444, "lb"),
  10067. name: "Back",
  10068. image: {
  10069. source: "./media/characters/major-colonel/back.svg"
  10070. }
  10071. },
  10072. },
  10073. [
  10074. {
  10075. name: "Macro",
  10076. height: math.unit(400, "feet"),
  10077. default: true
  10078. },
  10079. ]
  10080. ))
  10081. characterMakers.push(() => makeCharacter(
  10082. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10083. {
  10084. catFront: {
  10085. height: math.unit(6, "feet"),
  10086. weight: math.unit(120, "lb"),
  10087. name: "Front (Cat Side)",
  10088. image: {
  10089. source: "./media/characters/axel-lycan/cat-front.svg",
  10090. extra: 430 / 402,
  10091. bottom: 43 / 472.35
  10092. }
  10093. },
  10094. catBack: {
  10095. height: math.unit(6, "feet"),
  10096. weight: math.unit(120, "lb"),
  10097. name: "Back (Cat Side)",
  10098. image: {
  10099. source: "./media/characters/axel-lycan/cat-back.svg",
  10100. extra: 447 / 419,
  10101. bottom: 23.3 / 469
  10102. }
  10103. },
  10104. wolfFront: {
  10105. height: math.unit(6, "feet"),
  10106. weight: math.unit(120, "lb"),
  10107. name: "Front (Wolf Side)",
  10108. image: {
  10109. source: "./media/characters/axel-lycan/wolf-front.svg",
  10110. extra: 485 / 456,
  10111. bottom: 19 / 504
  10112. }
  10113. },
  10114. wolfBack: {
  10115. height: math.unit(6, "feet"),
  10116. weight: math.unit(120, "lb"),
  10117. name: "Back (Wolf Side)",
  10118. image: {
  10119. source: "./media/characters/axel-lycan/wolf-back.svg",
  10120. extra: 475 / 438,
  10121. bottom: 39.2 / 514
  10122. }
  10123. },
  10124. },
  10125. [
  10126. {
  10127. name: "Macro",
  10128. height: math.unit(1, "km"),
  10129. default: true
  10130. },
  10131. ]
  10132. ))
  10133. characterMakers.push(() => makeCharacter(
  10134. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10135. {
  10136. front: {
  10137. height: math.unit(5 + 9 / 12, "feet"),
  10138. weight: math.unit(175, "lb"),
  10139. name: "Front",
  10140. image: {
  10141. source: "./media/characters/vanrel-hyena/front.svg",
  10142. extra: 1086 / 1010,
  10143. bottom: 0.04
  10144. }
  10145. },
  10146. },
  10147. [
  10148. {
  10149. name: "Normal",
  10150. height: math.unit(5 + 9 / 12, "feet"),
  10151. default: true
  10152. },
  10153. ]
  10154. ))
  10155. characterMakers.push(() => makeCharacter(
  10156. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10157. {
  10158. front: {
  10159. height: math.unit(6, "feet"),
  10160. weight: math.unit(103, "lb"),
  10161. name: "Front",
  10162. image: {
  10163. source: "./media/characters/abbott-absol/front.svg",
  10164. extra: 2010 / 1842
  10165. }
  10166. },
  10167. },
  10168. [
  10169. {
  10170. name: "Megamicro",
  10171. height: math.unit(0.1, "mm")
  10172. },
  10173. {
  10174. name: "Micro",
  10175. height: math.unit(1, "inch")
  10176. },
  10177. {
  10178. name: "Normal",
  10179. height: math.unit(6, "feet"),
  10180. default: true
  10181. },
  10182. ]
  10183. ))
  10184. characterMakers.push(() => makeCharacter(
  10185. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10186. {
  10187. front: {
  10188. height: math.unit(6, "feet"),
  10189. weight: math.unit(264, "lb"),
  10190. name: "Front",
  10191. image: {
  10192. source: "./media/characters/hector/front.svg",
  10193. extra: 2280 / 2130,
  10194. bottom: 0.07
  10195. }
  10196. },
  10197. },
  10198. [
  10199. {
  10200. name: "Normal",
  10201. height: math.unit(12.25, "foot"),
  10202. default: true
  10203. },
  10204. {
  10205. name: "Macro",
  10206. height: math.unit(160, "feet")
  10207. },
  10208. ]
  10209. ))
  10210. characterMakers.push(() => makeCharacter(
  10211. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10212. {
  10213. front: {
  10214. height: math.unit(6, "feet"),
  10215. weight: math.unit(150, "lb"),
  10216. name: "Front",
  10217. image: {
  10218. source: "./media/characters/sal/front.svg",
  10219. extra: 1846 / 1699,
  10220. bottom: 0.04
  10221. }
  10222. },
  10223. },
  10224. [
  10225. {
  10226. name: "Megamacro",
  10227. height: math.unit(10, "miles"),
  10228. default: true
  10229. },
  10230. ]
  10231. ))
  10232. characterMakers.push(() => makeCharacter(
  10233. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10234. {
  10235. front: {
  10236. height: math.unit(3, "meters"),
  10237. weight: math.unit(450, "kg"),
  10238. name: "front",
  10239. image: {
  10240. source: "./media/characters/ranger/front.svg",
  10241. extra: 2401 / 2243,
  10242. bottom: 0.05
  10243. }
  10244. },
  10245. },
  10246. [
  10247. {
  10248. name: "Normal",
  10249. height: math.unit(3, "meters"),
  10250. default: true
  10251. },
  10252. ]
  10253. ))
  10254. characterMakers.push(() => makeCharacter(
  10255. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10256. {
  10257. front: {
  10258. height: math.unit(14, "feet"),
  10259. weight: math.unit(800, "kg"),
  10260. name: "Front",
  10261. image: {
  10262. source: "./media/characters/theresa/front.svg",
  10263. extra: 3575 / 3346,
  10264. bottom: 0.03
  10265. }
  10266. },
  10267. },
  10268. [
  10269. {
  10270. name: "Normal",
  10271. height: math.unit(14, "feet"),
  10272. default: true
  10273. },
  10274. ]
  10275. ))
  10276. characterMakers.push(() => makeCharacter(
  10277. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10278. {
  10279. front: {
  10280. height: math.unit(6, "feet"),
  10281. weight: math.unit(3, "kg"),
  10282. name: "Front",
  10283. image: {
  10284. source: "./media/characters/ine/front.svg",
  10285. extra: 678 / 539,
  10286. bottom: 0.023
  10287. }
  10288. },
  10289. },
  10290. [
  10291. {
  10292. name: "Normal",
  10293. height: math.unit(2.265, "feet"),
  10294. default: true
  10295. },
  10296. ]
  10297. ))
  10298. characterMakers.push(() => makeCharacter(
  10299. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10300. {
  10301. front: {
  10302. height: math.unit(5, "feet"),
  10303. weight: math.unit(30, "kg"),
  10304. name: "Front",
  10305. image: {
  10306. source: "./media/characters/vial/front.svg",
  10307. extra: 1365 / 1277,
  10308. bottom: 0.04
  10309. }
  10310. },
  10311. },
  10312. [
  10313. {
  10314. name: "Normal",
  10315. height: math.unit(5, "feet"),
  10316. default: true
  10317. },
  10318. ]
  10319. ))
  10320. characterMakers.push(() => makeCharacter(
  10321. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10322. {
  10323. side: {
  10324. height: math.unit(3.4, "meters"),
  10325. weight: math.unit(1000, "lb"),
  10326. name: "Side",
  10327. image: {
  10328. source: "./media/characters/rovoska/side.svg",
  10329. extra: 4403 / 1515
  10330. }
  10331. },
  10332. },
  10333. [
  10334. {
  10335. name: "Normal",
  10336. height: math.unit(3.4, "meters"),
  10337. default: true
  10338. },
  10339. ]
  10340. ))
  10341. characterMakers.push(() => makeCharacter(
  10342. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10343. {
  10344. front: {
  10345. height: math.unit(8, "feet"),
  10346. weight: math.unit(315, "lb"),
  10347. name: "Front",
  10348. image: {
  10349. source: "./media/characters/gunner-rotthbauer/front.svg"
  10350. }
  10351. },
  10352. back: {
  10353. height: math.unit(8, "feet"),
  10354. weight: math.unit(315, "lb"),
  10355. name: "Back",
  10356. image: {
  10357. source: "./media/characters/gunner-rotthbauer/back.svg"
  10358. }
  10359. },
  10360. },
  10361. [
  10362. {
  10363. name: "Micro",
  10364. height: math.unit(3.5, "inches")
  10365. },
  10366. {
  10367. name: "Normal",
  10368. height: math.unit(8, "feet"),
  10369. default: true
  10370. },
  10371. {
  10372. name: "Macro",
  10373. height: math.unit(250, "feet")
  10374. },
  10375. {
  10376. name: "Megamacro",
  10377. height: math.unit(1, "AU")
  10378. },
  10379. ]
  10380. ))
  10381. characterMakers.push(() => makeCharacter(
  10382. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10383. {
  10384. front: {
  10385. height: math.unit(5 + 5 / 12, "feet"),
  10386. weight: math.unit(140, "lb"),
  10387. name: "Front",
  10388. image: {
  10389. source: "./media/characters/allatia/front.svg",
  10390. extra: 1227 / 1180,
  10391. bottom: 0.027
  10392. }
  10393. },
  10394. },
  10395. [
  10396. {
  10397. name: "Normal",
  10398. height: math.unit(5 + 5 / 12, "feet")
  10399. },
  10400. {
  10401. name: "Macro",
  10402. height: math.unit(250, "feet"),
  10403. default: true
  10404. },
  10405. {
  10406. name: "Megamacro",
  10407. height: math.unit(8, "miles")
  10408. }
  10409. ]
  10410. ))
  10411. characterMakers.push(() => makeCharacter(
  10412. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10413. {
  10414. front: {
  10415. height: math.unit(6, "feet"),
  10416. weight: math.unit(120, "lb"),
  10417. name: "Front",
  10418. image: {
  10419. source: "./media/characters/tene/front.svg",
  10420. extra: 814/750,
  10421. bottom: 36/850
  10422. }
  10423. },
  10424. stomping: {
  10425. height: math.unit(2.025, "meters"),
  10426. weight: math.unit(120, "lb"),
  10427. name: "Stomping",
  10428. image: {
  10429. source: "./media/characters/tene/stomping.svg",
  10430. extra: 885/821,
  10431. bottom: 15/900
  10432. }
  10433. },
  10434. sitting: {
  10435. height: math.unit(1, "meter"),
  10436. weight: math.unit(120, "lb"),
  10437. name: "Sitting",
  10438. image: {
  10439. source: "./media/characters/tene/sitting.svg",
  10440. extra: 396/366,
  10441. bottom: 79/475
  10442. }
  10443. },
  10444. smiling: {
  10445. height: math.unit(1.2, "feet"),
  10446. name: "Smiling",
  10447. image: {
  10448. source: "./media/characters/tene/smiling.svg",
  10449. extra: 1364/1071,
  10450. bottom: 0/1364
  10451. }
  10452. },
  10453. smug: {
  10454. height: math.unit(1.3, "feet"),
  10455. name: "Smug",
  10456. image: {
  10457. source: "./media/characters/tene/smug.svg",
  10458. extra: 1323/1082,
  10459. bottom: 0/1323
  10460. }
  10461. },
  10462. feral: {
  10463. height: math.unit(3.9, "feet"),
  10464. weight: math.unit(250, "lb"),
  10465. name: "Feral",
  10466. image: {
  10467. source: "./media/characters/tene/feral.svg",
  10468. extra: 717 / 458,
  10469. bottom: 0.179
  10470. }
  10471. },
  10472. },
  10473. [
  10474. {
  10475. name: "Normal",
  10476. height: math.unit(6, "feet")
  10477. },
  10478. {
  10479. name: "Macro",
  10480. height: math.unit(300, "feet"),
  10481. default: true
  10482. },
  10483. {
  10484. name: "Megamacro",
  10485. height: math.unit(5, "miles")
  10486. },
  10487. ]
  10488. ))
  10489. characterMakers.push(() => makeCharacter(
  10490. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10491. {
  10492. side: {
  10493. height: math.unit(6, "feet"),
  10494. name: "Side",
  10495. image: {
  10496. source: "./media/characters/evander/side.svg",
  10497. extra: 877 / 477
  10498. }
  10499. },
  10500. },
  10501. [
  10502. {
  10503. name: "Normal",
  10504. height: math.unit(0.83, "meters"),
  10505. default: true
  10506. },
  10507. ]
  10508. ))
  10509. characterMakers.push(() => makeCharacter(
  10510. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10511. {
  10512. front: {
  10513. height: math.unit(12, "feet"),
  10514. weight: math.unit(1000, "lb"),
  10515. name: "Front",
  10516. image: {
  10517. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10518. extra: 1762 / 1611
  10519. }
  10520. },
  10521. back: {
  10522. height: math.unit(12, "feet"),
  10523. weight: math.unit(1000, "lb"),
  10524. name: "Back",
  10525. image: {
  10526. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10527. extra: 1762 / 1611
  10528. }
  10529. },
  10530. },
  10531. [
  10532. {
  10533. name: "Normal",
  10534. height: math.unit(12, "feet"),
  10535. default: true
  10536. },
  10537. {
  10538. name: "Kaiju",
  10539. height: math.unit(150, "feet")
  10540. },
  10541. ]
  10542. ))
  10543. characterMakers.push(() => makeCharacter(
  10544. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10545. {
  10546. front: {
  10547. height: math.unit(6, "feet"),
  10548. weight: math.unit(150, "lb"),
  10549. name: "Front",
  10550. image: {
  10551. source: "./media/characters/zero-alurus/front.svg"
  10552. }
  10553. },
  10554. back: {
  10555. height: math.unit(6, "feet"),
  10556. weight: math.unit(150, "lb"),
  10557. name: "Back",
  10558. image: {
  10559. source: "./media/characters/zero-alurus/back.svg"
  10560. }
  10561. },
  10562. },
  10563. [
  10564. {
  10565. name: "Normal",
  10566. height: math.unit(5 + 10 / 12, "feet")
  10567. },
  10568. {
  10569. name: "Macro",
  10570. height: math.unit(60, "feet"),
  10571. default: true
  10572. },
  10573. {
  10574. name: "Macro+",
  10575. height: math.unit(450, "feet")
  10576. },
  10577. ]
  10578. ))
  10579. characterMakers.push(() => makeCharacter(
  10580. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10581. {
  10582. front: {
  10583. height: math.unit(6, "feet"),
  10584. weight: math.unit(200, "lb"),
  10585. name: "Front",
  10586. image: {
  10587. source: "./media/characters/mega-shi/front.svg",
  10588. extra: 1279 / 1250,
  10589. bottom: 0.02
  10590. }
  10591. },
  10592. back: {
  10593. height: math.unit(6, "feet"),
  10594. weight: math.unit(200, "lb"),
  10595. name: "Back",
  10596. image: {
  10597. source: "./media/characters/mega-shi/back.svg",
  10598. extra: 1279 / 1250,
  10599. bottom: 0.02
  10600. }
  10601. },
  10602. },
  10603. [
  10604. {
  10605. name: "Micro",
  10606. height: math.unit(16 + 6 / 12, "feet")
  10607. },
  10608. {
  10609. name: "Third Dimension",
  10610. height: math.unit(40, "meters")
  10611. },
  10612. {
  10613. name: "Normal",
  10614. height: math.unit(660, "feet"),
  10615. default: true
  10616. },
  10617. {
  10618. name: "Megamacro",
  10619. height: math.unit(10, "miles")
  10620. },
  10621. {
  10622. name: "Planetary Launch",
  10623. height: math.unit(500, "miles")
  10624. },
  10625. {
  10626. name: "Interstellar",
  10627. height: math.unit(1e9, "miles")
  10628. },
  10629. {
  10630. name: "Leaving the Universe",
  10631. height: math.unit(1, "gigaparsec")
  10632. },
  10633. {
  10634. name: "Travelling Universes",
  10635. height: math.unit(30e15, "parsecs")
  10636. },
  10637. ]
  10638. ))
  10639. characterMakers.push(() => makeCharacter(
  10640. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10641. {
  10642. front: {
  10643. height: math.unit(5 + 4/12, "feet"),
  10644. weight: math.unit(120, "lb"),
  10645. name: "Front",
  10646. image: {
  10647. source: "./media/characters/odyssey/front.svg",
  10648. extra: 1747/1571,
  10649. bottom: 47/1794
  10650. }
  10651. },
  10652. side: {
  10653. height: math.unit(5.1, "feet"),
  10654. weight: math.unit(120, "lb"),
  10655. name: "Side",
  10656. image: {
  10657. source: "./media/characters/odyssey/side.svg",
  10658. extra: 1847/1619,
  10659. bottom: 47/1894
  10660. }
  10661. },
  10662. lounging: {
  10663. height: math.unit(1.464, "feet"),
  10664. weight: math.unit(120, "lb"),
  10665. name: "Lounging",
  10666. image: {
  10667. source: "./media/characters/odyssey/lounging.svg",
  10668. extra: 1235/837,
  10669. bottom: 551/1786
  10670. }
  10671. },
  10672. },
  10673. [
  10674. {
  10675. name: "Normal",
  10676. height: math.unit(5 + 4 / 12, "feet")
  10677. },
  10678. {
  10679. name: "Macro",
  10680. height: math.unit(1, "km")
  10681. },
  10682. {
  10683. name: "Megamacro",
  10684. height: math.unit(3000, "km")
  10685. },
  10686. {
  10687. name: "Gigamacro",
  10688. height: math.unit(1, "AU"),
  10689. default: true
  10690. },
  10691. {
  10692. name: "Omniversal",
  10693. height: math.unit(100e14, "lightyears")
  10694. },
  10695. ]
  10696. ))
  10697. characterMakers.push(() => makeCharacter(
  10698. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10699. {
  10700. front: {
  10701. height: math.unit(6, "feet"),
  10702. weight: math.unit(300, "lb"),
  10703. name: "Front",
  10704. image: {
  10705. source: "./media/characters/mekuto/front.svg",
  10706. extra: 921 / 832,
  10707. bottom: 0.03
  10708. }
  10709. },
  10710. hand: {
  10711. height: math.unit(6 / 10.24, "feet"),
  10712. name: "Hand",
  10713. image: {
  10714. source: "./media/characters/mekuto/hand.svg"
  10715. }
  10716. },
  10717. foot: {
  10718. height: math.unit(6 / 5.05, "feet"),
  10719. name: "Foot",
  10720. image: {
  10721. source: "./media/characters/mekuto/foot.svg"
  10722. }
  10723. },
  10724. },
  10725. [
  10726. {
  10727. name: "Minimicro",
  10728. height: math.unit(0.2, "inches")
  10729. },
  10730. {
  10731. name: "Micro",
  10732. height: math.unit(1.5, "inches")
  10733. },
  10734. {
  10735. name: "Normal",
  10736. height: math.unit(5 + 11 / 12, "feet"),
  10737. default: true
  10738. },
  10739. {
  10740. name: "Minimacro",
  10741. height: math.unit(17 + 9 / 12, "feet")
  10742. },
  10743. {
  10744. name: "Macro",
  10745. height: math.unit(177.5, "feet")
  10746. },
  10747. {
  10748. name: "Megamacro",
  10749. height: math.unit(152, "miles")
  10750. },
  10751. ]
  10752. ))
  10753. characterMakers.push(() => makeCharacter(
  10754. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10755. {
  10756. front: {
  10757. height: math.unit(6.5, "inches"),
  10758. weight: math.unit(13, "oz"),
  10759. name: "Front",
  10760. image: {
  10761. source: "./media/characters/dafydd-tomos/front.svg",
  10762. extra: 2990 / 2603,
  10763. bottom: 0.03
  10764. }
  10765. },
  10766. },
  10767. [
  10768. {
  10769. name: "Micro",
  10770. height: math.unit(6.5, "inches"),
  10771. default: true
  10772. },
  10773. ]
  10774. ))
  10775. characterMakers.push(() => makeCharacter(
  10776. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10777. {
  10778. front: {
  10779. height: math.unit(6, "feet"),
  10780. weight: math.unit(150, "lb"),
  10781. name: "Front",
  10782. image: {
  10783. source: "./media/characters/splinter/front.svg",
  10784. extra: 2990 / 2882,
  10785. bottom: 0.04
  10786. }
  10787. },
  10788. back: {
  10789. height: math.unit(6, "feet"),
  10790. weight: math.unit(150, "lb"),
  10791. name: "Back",
  10792. image: {
  10793. source: "./media/characters/splinter/back.svg",
  10794. extra: 2990 / 2882,
  10795. bottom: 0.04
  10796. }
  10797. },
  10798. },
  10799. [
  10800. {
  10801. name: "Normal",
  10802. height: math.unit(6, "feet")
  10803. },
  10804. {
  10805. name: "Macro",
  10806. height: math.unit(230, "meters"),
  10807. default: true
  10808. },
  10809. ]
  10810. ))
  10811. characterMakers.push(() => makeCharacter(
  10812. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10813. {
  10814. front: {
  10815. height: math.unit(4 + 10 / 12, "feet"),
  10816. weight: math.unit(480, "lb"),
  10817. name: "Front",
  10818. image: {
  10819. source: "./media/characters/snow-gabumon/front.svg",
  10820. extra: 1140 / 963,
  10821. bottom: 0.058
  10822. }
  10823. },
  10824. back: {
  10825. height: math.unit(4 + 10 / 12, "feet"),
  10826. weight: math.unit(480, "lb"),
  10827. name: "Back",
  10828. image: {
  10829. source: "./media/characters/snow-gabumon/back.svg",
  10830. extra: 1115 / 962,
  10831. bottom: 0.041
  10832. }
  10833. },
  10834. frontUndresed: {
  10835. height: math.unit(4 + 10 / 12, "feet"),
  10836. weight: math.unit(480, "lb"),
  10837. name: "Front (Undressed)",
  10838. image: {
  10839. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10840. extra: 1061 / 960,
  10841. bottom: 0.045
  10842. }
  10843. },
  10844. },
  10845. [
  10846. {
  10847. name: "Micro",
  10848. height: math.unit(1, "inch")
  10849. },
  10850. {
  10851. name: "Normal",
  10852. height: math.unit(4 + 10 / 12, "feet"),
  10853. default: true
  10854. },
  10855. {
  10856. name: "Macro",
  10857. height: math.unit(200, "feet")
  10858. },
  10859. {
  10860. name: "Megamacro",
  10861. height: math.unit(120, "miles")
  10862. },
  10863. {
  10864. name: "Gigamacro",
  10865. height: math.unit(9800, "miles")
  10866. },
  10867. ]
  10868. ))
  10869. characterMakers.push(() => makeCharacter(
  10870. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10871. {
  10872. front: {
  10873. height: math.unit(1.7, "meters"),
  10874. weight: math.unit(140, "lb"),
  10875. name: "Front",
  10876. image: {
  10877. source: "./media/characters/moody/front.svg",
  10878. extra: 3226 / 3007,
  10879. bottom: 0.087
  10880. }
  10881. },
  10882. },
  10883. [
  10884. {
  10885. name: "Micro",
  10886. height: math.unit(1, "mm")
  10887. },
  10888. {
  10889. name: "Normal",
  10890. height: math.unit(1.7, "meters"),
  10891. default: true
  10892. },
  10893. {
  10894. name: "Macro",
  10895. height: math.unit(80, "meters")
  10896. },
  10897. {
  10898. name: "Macro+",
  10899. height: math.unit(500, "meters")
  10900. },
  10901. ]
  10902. ))
  10903. characterMakers.push(() => makeCharacter(
  10904. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10905. {
  10906. front: {
  10907. height: math.unit(6, "feet"),
  10908. weight: math.unit(150, "lb"),
  10909. name: "Front",
  10910. image: {
  10911. source: "./media/characters/zyas/front.svg",
  10912. extra: 1180 / 1120,
  10913. bottom: 0.045
  10914. }
  10915. },
  10916. },
  10917. [
  10918. {
  10919. name: "Normal",
  10920. height: math.unit(10, "feet"),
  10921. default: true
  10922. },
  10923. {
  10924. name: "Macro",
  10925. height: math.unit(500, "feet")
  10926. },
  10927. {
  10928. name: "Megamacro",
  10929. height: math.unit(5, "miles")
  10930. },
  10931. {
  10932. name: "Teramacro",
  10933. height: math.unit(150000, "miles")
  10934. },
  10935. ]
  10936. ))
  10937. characterMakers.push(() => makeCharacter(
  10938. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10939. {
  10940. front: {
  10941. height: math.unit(6, "feet"),
  10942. weight: math.unit(150, "lb"),
  10943. name: "Front",
  10944. image: {
  10945. source: "./media/characters/cuon/front.svg",
  10946. extra: 1390 / 1320,
  10947. bottom: 0.008
  10948. }
  10949. },
  10950. },
  10951. [
  10952. {
  10953. name: "Micro",
  10954. height: math.unit(3, "inches")
  10955. },
  10956. {
  10957. name: "Normal",
  10958. height: math.unit(18 + 9 / 12, "feet"),
  10959. default: true
  10960. },
  10961. {
  10962. name: "Macro",
  10963. height: math.unit(360, "feet")
  10964. },
  10965. {
  10966. name: "Megamacro",
  10967. height: math.unit(360, "miles")
  10968. },
  10969. ]
  10970. ))
  10971. characterMakers.push(() => makeCharacter(
  10972. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10973. {
  10974. front: {
  10975. height: math.unit(2.4, "meters"),
  10976. weight: math.unit(70, "kg"),
  10977. name: "Front",
  10978. image: {
  10979. source: "./media/characters/nyanuxk/front.svg",
  10980. extra: 1172 / 1084,
  10981. bottom: 0.065
  10982. }
  10983. },
  10984. side: {
  10985. height: math.unit(2.4, "meters"),
  10986. weight: math.unit(70, "kg"),
  10987. name: "Side",
  10988. image: {
  10989. source: "./media/characters/nyanuxk/side.svg",
  10990. extra: 1190 / 1132,
  10991. bottom: 0.007
  10992. }
  10993. },
  10994. back: {
  10995. height: math.unit(2.4, "meters"),
  10996. weight: math.unit(70, "kg"),
  10997. name: "Back",
  10998. image: {
  10999. source: "./media/characters/nyanuxk/back.svg",
  11000. extra: 1200 / 1141,
  11001. bottom: 0.015
  11002. }
  11003. },
  11004. foot: {
  11005. height: math.unit(0.52, "meters"),
  11006. name: "Foot",
  11007. image: {
  11008. source: "./media/characters/nyanuxk/foot.svg"
  11009. }
  11010. },
  11011. },
  11012. [
  11013. {
  11014. name: "Micro",
  11015. height: math.unit(2, "cm")
  11016. },
  11017. {
  11018. name: "Normal",
  11019. height: math.unit(2.4, "meters"),
  11020. default: true
  11021. },
  11022. {
  11023. name: "Smaller Macro",
  11024. height: math.unit(120, "meters")
  11025. },
  11026. {
  11027. name: "Bigger Macro",
  11028. height: math.unit(1.2, "km")
  11029. },
  11030. {
  11031. name: "Megamacro",
  11032. height: math.unit(15, "kilometers")
  11033. },
  11034. {
  11035. name: "Gigamacro",
  11036. height: math.unit(2000, "km")
  11037. },
  11038. {
  11039. name: "Teramacro",
  11040. height: math.unit(500000, "km")
  11041. },
  11042. ]
  11043. ))
  11044. characterMakers.push(() => makeCharacter(
  11045. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11046. {
  11047. side: {
  11048. height: math.unit(6, "feet"),
  11049. name: "Side",
  11050. image: {
  11051. source: "./media/characters/ailbhe/side.svg",
  11052. extra: 757 / 464,
  11053. bottom: 0.041
  11054. }
  11055. },
  11056. },
  11057. [
  11058. {
  11059. name: "Normal",
  11060. height: math.unit(1.07, "meters"),
  11061. default: true
  11062. },
  11063. ]
  11064. ))
  11065. characterMakers.push(() => makeCharacter(
  11066. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11067. {
  11068. front: {
  11069. height: math.unit(6, "feet"),
  11070. weight: math.unit(120, "kg"),
  11071. name: "Front",
  11072. image: {
  11073. source: "./media/characters/zevulfius/front.svg",
  11074. extra: 965 / 903
  11075. }
  11076. },
  11077. side: {
  11078. height: math.unit(6, "feet"),
  11079. weight: math.unit(120, "kg"),
  11080. name: "Side",
  11081. image: {
  11082. source: "./media/characters/zevulfius/side.svg",
  11083. extra: 939 / 900
  11084. }
  11085. },
  11086. back: {
  11087. height: math.unit(6, "feet"),
  11088. weight: math.unit(120, "kg"),
  11089. name: "Back",
  11090. image: {
  11091. source: "./media/characters/zevulfius/back.svg",
  11092. extra: 918 / 854,
  11093. bottom: 0.005
  11094. }
  11095. },
  11096. foot: {
  11097. height: math.unit(6 / 3.72, "feet"),
  11098. name: "Foot",
  11099. image: {
  11100. source: "./media/characters/zevulfius/foot.svg"
  11101. }
  11102. },
  11103. },
  11104. [
  11105. {
  11106. name: "Macro",
  11107. height: math.unit(750, "meters")
  11108. },
  11109. {
  11110. name: "Megamacro",
  11111. height: math.unit(20, "km"),
  11112. default: true
  11113. },
  11114. {
  11115. name: "Gigamacro",
  11116. height: math.unit(2000, "km")
  11117. },
  11118. {
  11119. name: "Teramacro",
  11120. height: math.unit(250000, "km")
  11121. },
  11122. ]
  11123. ))
  11124. characterMakers.push(() => makeCharacter(
  11125. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11126. {
  11127. front: {
  11128. height: math.unit(100, "feet"),
  11129. weight: math.unit(350, "kg"),
  11130. name: "Front",
  11131. image: {
  11132. source: "./media/characters/rikes/front.svg",
  11133. extra: 1565 / 1483,
  11134. bottom: 0.017
  11135. }
  11136. },
  11137. },
  11138. [
  11139. {
  11140. name: "Macro",
  11141. height: math.unit(100, "feet"),
  11142. default: true
  11143. },
  11144. ]
  11145. ))
  11146. characterMakers.push(() => makeCharacter(
  11147. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11148. {
  11149. front: {
  11150. height: math.unit(8, "feet"),
  11151. weight: math.unit(356, "lb"),
  11152. name: "Front",
  11153. image: {
  11154. source: "./media/characters/adam-silver-mane/front.svg",
  11155. extra: 1036/937,
  11156. bottom: 63/1099
  11157. }
  11158. },
  11159. side: {
  11160. height: math.unit(8, "feet"),
  11161. weight: math.unit(356, "lb"),
  11162. name: "Side",
  11163. image: {
  11164. source: "./media/characters/adam-silver-mane/side.svg",
  11165. extra: 997/901,
  11166. bottom: 59/1056
  11167. }
  11168. },
  11169. frontNsfw: {
  11170. height: math.unit(8, "feet"),
  11171. weight: math.unit(356, "lb"),
  11172. name: "Front (NSFW)",
  11173. image: {
  11174. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11175. extra: 1036/937,
  11176. bottom: 63/1099
  11177. }
  11178. },
  11179. sideNsfw: {
  11180. height: math.unit(8, "feet"),
  11181. weight: math.unit(356, "lb"),
  11182. name: "Side (NSFW)",
  11183. image: {
  11184. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11185. extra: 997/901,
  11186. bottom: 59/1056
  11187. }
  11188. },
  11189. dick: {
  11190. height: math.unit(2.1, "feet"),
  11191. name: "Dick",
  11192. image: {
  11193. source: "./media/characters/adam-silver-mane/dick.svg"
  11194. }
  11195. },
  11196. taur: {
  11197. height: math.unit(16, "feet"),
  11198. weight: math.unit(1500, "kg"),
  11199. name: "Taur",
  11200. image: {
  11201. source: "./media/characters/adam-silver-mane/taur.svg",
  11202. extra: 1713 / 1571,
  11203. bottom: 0.01
  11204. }
  11205. },
  11206. },
  11207. [
  11208. {
  11209. name: "Normal",
  11210. height: math.unit(8, "feet")
  11211. },
  11212. {
  11213. name: "Minimacro",
  11214. height: math.unit(80, "feet")
  11215. },
  11216. {
  11217. name: "MDA",
  11218. height: math.unit(80, "meters")
  11219. },
  11220. {
  11221. name: "Macro",
  11222. height: math.unit(800, "feet"),
  11223. default: true
  11224. },
  11225. {
  11226. name: "Megamacro",
  11227. height: math.unit(8000, "feet")
  11228. },
  11229. {
  11230. name: "Gigamacro",
  11231. height: math.unit(800, "miles")
  11232. },
  11233. {
  11234. name: "Teramacro",
  11235. height: math.unit(80000, "miles")
  11236. },
  11237. {
  11238. name: "Celestial",
  11239. height: math.unit(8e6, "miles")
  11240. },
  11241. {
  11242. name: "Star Dragon",
  11243. height: math.unit(800000, "parsecs")
  11244. },
  11245. {
  11246. name: "Godly",
  11247. height: math.unit(800, "teraparsecs")
  11248. },
  11249. ]
  11250. ))
  11251. characterMakers.push(() => makeCharacter(
  11252. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11253. {
  11254. front: {
  11255. height: math.unit(6, "feet"),
  11256. weight: math.unit(150, "lb"),
  11257. name: "Front",
  11258. image: {
  11259. source: "./media/characters/ky'owin/front.svg",
  11260. extra: 3888 / 3068,
  11261. bottom: 0.015
  11262. }
  11263. },
  11264. },
  11265. [
  11266. {
  11267. name: "Normal",
  11268. height: math.unit(6 + 8 / 12, "feet")
  11269. },
  11270. {
  11271. name: "Large",
  11272. height: math.unit(68, "feet")
  11273. },
  11274. {
  11275. name: "Macro",
  11276. height: math.unit(132, "feet")
  11277. },
  11278. {
  11279. name: "Macro+",
  11280. height: math.unit(340, "feet")
  11281. },
  11282. {
  11283. name: "Macro++",
  11284. height: math.unit(680, "feet"),
  11285. default: true
  11286. },
  11287. {
  11288. name: "Megamacro",
  11289. height: math.unit(1, "mile")
  11290. },
  11291. {
  11292. name: "Megamacro+",
  11293. height: math.unit(10, "miles")
  11294. },
  11295. ]
  11296. ))
  11297. characterMakers.push(() => makeCharacter(
  11298. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11299. {
  11300. front: {
  11301. height: math.unit(4, "feet"),
  11302. weight: math.unit(50, "lb"),
  11303. name: "Front",
  11304. image: {
  11305. source: "./media/characters/mal/front.svg",
  11306. extra: 785 / 724,
  11307. bottom: 0.07
  11308. }
  11309. },
  11310. },
  11311. [
  11312. {
  11313. name: "Micro",
  11314. height: math.unit(4, "inches")
  11315. },
  11316. {
  11317. name: "Normal",
  11318. height: math.unit(4, "feet"),
  11319. default: true
  11320. },
  11321. {
  11322. name: "Macro",
  11323. height: math.unit(200, "feet")
  11324. },
  11325. ]
  11326. ))
  11327. characterMakers.push(() => makeCharacter(
  11328. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11329. {
  11330. front: {
  11331. height: math.unit(6, "feet"),
  11332. weight: math.unit(150, "lb"),
  11333. name: "Front",
  11334. image: {
  11335. source: "./media/characters/jordan-deware/front.svg",
  11336. extra: 1191 / 1012
  11337. }
  11338. },
  11339. },
  11340. [
  11341. {
  11342. name: "Nano",
  11343. height: math.unit(0.01, "mm")
  11344. },
  11345. {
  11346. name: "Minimicro",
  11347. height: math.unit(1, "mm")
  11348. },
  11349. {
  11350. name: "Micro",
  11351. height: math.unit(0.5, "inches")
  11352. },
  11353. {
  11354. name: "Normal",
  11355. height: math.unit(4, "feet"),
  11356. default: true
  11357. },
  11358. {
  11359. name: "Minimacro",
  11360. height: math.unit(40, "meters")
  11361. },
  11362. {
  11363. name: "Small Macro",
  11364. height: math.unit(400, "meters")
  11365. },
  11366. {
  11367. name: "Macro",
  11368. height: math.unit(4, "miles")
  11369. },
  11370. {
  11371. name: "Megamacro",
  11372. height: math.unit(40, "miles")
  11373. },
  11374. {
  11375. name: "Megamacro+",
  11376. height: math.unit(400, "miles")
  11377. },
  11378. {
  11379. name: "Gigamacro",
  11380. height: math.unit(400000, "miles")
  11381. },
  11382. ]
  11383. ))
  11384. characterMakers.push(() => makeCharacter(
  11385. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11386. {
  11387. side: {
  11388. height: math.unit(6, "feet"),
  11389. weight: math.unit(150, "lb"),
  11390. name: "Side",
  11391. image: {
  11392. source: "./media/characters/kimiko/side.svg",
  11393. extra: 600 / 358
  11394. }
  11395. },
  11396. },
  11397. [
  11398. {
  11399. name: "Normal",
  11400. height: math.unit(15, "feet"),
  11401. default: true
  11402. },
  11403. {
  11404. name: "Macro",
  11405. height: math.unit(220, "feet")
  11406. },
  11407. {
  11408. name: "Macro+",
  11409. height: math.unit(1450, "feet")
  11410. },
  11411. {
  11412. name: "Megamacro",
  11413. height: math.unit(11500, "feet")
  11414. },
  11415. {
  11416. name: "Gigamacro",
  11417. height: math.unit(9500, "miles")
  11418. },
  11419. {
  11420. name: "Teramacro",
  11421. height: math.unit(2208005005, "miles")
  11422. },
  11423. {
  11424. name: "Examacro",
  11425. height: math.unit(2750, "parsecs")
  11426. },
  11427. {
  11428. name: "Zettamacro",
  11429. height: math.unit(101500, "parsecs")
  11430. },
  11431. ]
  11432. ))
  11433. characterMakers.push(() => makeCharacter(
  11434. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11435. {
  11436. front: {
  11437. height: math.unit(6, "feet"),
  11438. weight: math.unit(70, "kg"),
  11439. name: "Front",
  11440. image: {
  11441. source: "./media/characters/andrew-sleepy/front.svg"
  11442. }
  11443. },
  11444. side: {
  11445. height: math.unit(6, "feet"),
  11446. weight: math.unit(70, "kg"),
  11447. name: "Side",
  11448. image: {
  11449. source: "./media/characters/andrew-sleepy/side.svg"
  11450. }
  11451. },
  11452. },
  11453. [
  11454. {
  11455. name: "Micro",
  11456. height: math.unit(1, "mm"),
  11457. default: true
  11458. },
  11459. ]
  11460. ))
  11461. characterMakers.push(() => makeCharacter(
  11462. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11463. {
  11464. front: {
  11465. height: math.unit(6, "feet"),
  11466. weight: math.unit(150, "lb"),
  11467. name: "Front",
  11468. image: {
  11469. source: "./media/characters/judio/front.svg",
  11470. extra: 1258 / 1110
  11471. }
  11472. },
  11473. },
  11474. [
  11475. {
  11476. name: "Normal",
  11477. height: math.unit(5 + 6 / 12, "feet")
  11478. },
  11479. {
  11480. name: "Macro",
  11481. height: math.unit(1000, "feet"),
  11482. default: true
  11483. },
  11484. {
  11485. name: "Megamacro",
  11486. height: math.unit(10, "miles")
  11487. },
  11488. ]
  11489. ))
  11490. characterMakers.push(() => makeCharacter(
  11491. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11492. {
  11493. frontDressed: {
  11494. height: math.unit(6, "feet"),
  11495. weight: math.unit(68, "kg"),
  11496. name: "Front (Dressed)",
  11497. image: {
  11498. source: "./media/characters/nomaxice/front-dressed.svg",
  11499. extra: 1137/824,
  11500. bottom: 74/1211
  11501. }
  11502. },
  11503. frontShorts: {
  11504. height: math.unit(6, "feet"),
  11505. weight: math.unit(68, "kg"),
  11506. name: "Front (Shorts)",
  11507. image: {
  11508. source: "./media/characters/nomaxice/front-shorts.svg",
  11509. extra: 1137/824,
  11510. bottom: 74/1211
  11511. }
  11512. },
  11513. back: {
  11514. height: math.unit(6, "feet"),
  11515. weight: math.unit(68, "kg"),
  11516. name: "Back",
  11517. image: {
  11518. source: "./media/characters/nomaxice/back.svg",
  11519. extra: 822/786,
  11520. bottom: 39/861
  11521. }
  11522. },
  11523. hand: {
  11524. height: math.unit(0.565, "feet"),
  11525. name: "Hand",
  11526. image: {
  11527. source: "./media/characters/nomaxice/hand.svg"
  11528. }
  11529. },
  11530. foot: {
  11531. height: math.unit(1, "feet"),
  11532. name: "Foot",
  11533. image: {
  11534. source: "./media/characters/nomaxice/foot.svg"
  11535. }
  11536. },
  11537. },
  11538. [
  11539. {
  11540. name: "Micro",
  11541. height: math.unit(8, "cm")
  11542. },
  11543. {
  11544. name: "Norm",
  11545. height: math.unit(1.82, "m")
  11546. },
  11547. {
  11548. name: "Norm+",
  11549. height: math.unit(8.8, "feet"),
  11550. default: true
  11551. },
  11552. {
  11553. name: "Big",
  11554. height: math.unit(8, "meters")
  11555. },
  11556. {
  11557. name: "Macro",
  11558. height: math.unit(18, "meters")
  11559. },
  11560. {
  11561. name: "Macro+",
  11562. height: math.unit(88, "meters")
  11563. },
  11564. ]
  11565. ))
  11566. characterMakers.push(() => makeCharacter(
  11567. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11568. {
  11569. front: {
  11570. height: math.unit(12, "feet"),
  11571. weight: math.unit(1.5, "tons"),
  11572. name: "Front",
  11573. image: {
  11574. source: "./media/characters/dydros/front.svg",
  11575. extra: 863 / 800,
  11576. bottom: 0.015
  11577. }
  11578. },
  11579. back: {
  11580. height: math.unit(12, "feet"),
  11581. weight: math.unit(1.5, "tons"),
  11582. name: "Back",
  11583. image: {
  11584. source: "./media/characters/dydros/back.svg",
  11585. extra: 900 / 843,
  11586. bottom: 0.005
  11587. }
  11588. },
  11589. },
  11590. [
  11591. {
  11592. name: "Normal",
  11593. height: math.unit(12, "feet"),
  11594. default: true
  11595. },
  11596. ]
  11597. ))
  11598. characterMakers.push(() => makeCharacter(
  11599. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11600. {
  11601. front: {
  11602. height: math.unit(6, "feet"),
  11603. weight: math.unit(100, "kg"),
  11604. name: "Front",
  11605. image: {
  11606. source: "./media/characters/riggi/front.svg",
  11607. extra: 5787 / 5303
  11608. }
  11609. },
  11610. hyper: {
  11611. height: math.unit(6 * 5 / 3, "feet"),
  11612. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11613. name: "Hyper",
  11614. image: {
  11615. source: "./media/characters/riggi/hyper.svg",
  11616. extra: 3595 / 3485
  11617. }
  11618. },
  11619. },
  11620. [
  11621. {
  11622. name: "Small Macro",
  11623. height: math.unit(50, "feet")
  11624. },
  11625. {
  11626. name: "Default",
  11627. height: math.unit(200, "feet"),
  11628. default: true
  11629. },
  11630. {
  11631. name: "Loom",
  11632. height: math.unit(10000, "feet")
  11633. },
  11634. {
  11635. name: "Cruising Altitude",
  11636. height: math.unit(30000, "feet")
  11637. },
  11638. {
  11639. name: "Megamacro",
  11640. height: math.unit(100, "miles")
  11641. },
  11642. {
  11643. name: "Continent Sized",
  11644. height: math.unit(2800, "miles")
  11645. },
  11646. {
  11647. name: "Earth Sized",
  11648. height: math.unit(8000, "miles")
  11649. },
  11650. ]
  11651. ))
  11652. characterMakers.push(() => makeCharacter(
  11653. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11654. {
  11655. front: {
  11656. height: math.unit(6, "feet"),
  11657. weight: math.unit(250, "lb"),
  11658. name: "Front",
  11659. image: {
  11660. source: "./media/characters/alexi/front.svg",
  11661. extra: 3483 / 3291,
  11662. bottom: 0.04
  11663. }
  11664. },
  11665. back: {
  11666. height: math.unit(6, "feet"),
  11667. weight: math.unit(250, "lb"),
  11668. name: "Back",
  11669. image: {
  11670. source: "./media/characters/alexi/back.svg",
  11671. extra: 3533 / 3356,
  11672. bottom: 0.021
  11673. }
  11674. },
  11675. frontTransforming: {
  11676. height: math.unit(8.58, "feet"),
  11677. weight: math.unit(1300, "lb"),
  11678. name: "Transforming",
  11679. image: {
  11680. source: "./media/characters/alexi/front-transforming.svg",
  11681. extra: 437 / 409,
  11682. bottom: 19 / 458.66
  11683. }
  11684. },
  11685. frontTransformed: {
  11686. height: math.unit(12.5, "feet"),
  11687. weight: math.unit(4000, "lb"),
  11688. name: "Transformed",
  11689. image: {
  11690. source: "./media/characters/alexi/front-transformed.svg",
  11691. extra: 639 / 614,
  11692. bottom: 30.55 / 671
  11693. }
  11694. },
  11695. },
  11696. [
  11697. {
  11698. name: "Normal",
  11699. height: math.unit(14, "feet"),
  11700. default: true
  11701. },
  11702. {
  11703. name: "Minimacro",
  11704. height: math.unit(30, "meters")
  11705. },
  11706. {
  11707. name: "Macro",
  11708. height: math.unit(500, "meters")
  11709. },
  11710. {
  11711. name: "Megamacro",
  11712. height: math.unit(9000, "km")
  11713. },
  11714. {
  11715. name: "Teramacro",
  11716. height: math.unit(384000, "km")
  11717. },
  11718. ]
  11719. ))
  11720. characterMakers.push(() => makeCharacter(
  11721. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11722. {
  11723. front: {
  11724. height: math.unit(6, "feet"),
  11725. weight: math.unit(150, "lb"),
  11726. name: "Front",
  11727. image: {
  11728. source: "./media/characters/kayroo/front.svg",
  11729. extra: 1153 / 1038,
  11730. bottom: 0.06
  11731. }
  11732. },
  11733. foot: {
  11734. height: math.unit(6, "feet"),
  11735. weight: math.unit(150, "lb"),
  11736. name: "Foot",
  11737. image: {
  11738. source: "./media/characters/kayroo/foot.svg"
  11739. }
  11740. },
  11741. },
  11742. [
  11743. {
  11744. name: "Normal",
  11745. height: math.unit(8, "feet"),
  11746. default: true
  11747. },
  11748. {
  11749. name: "Minimacro",
  11750. height: math.unit(250, "feet")
  11751. },
  11752. {
  11753. name: "Macro",
  11754. height: math.unit(2800, "feet")
  11755. },
  11756. {
  11757. name: "Megamacro",
  11758. height: math.unit(5200, "feet")
  11759. },
  11760. {
  11761. name: "Gigamacro",
  11762. height: math.unit(27000, "feet")
  11763. },
  11764. {
  11765. name: "Omega",
  11766. height: math.unit(45000, "feet")
  11767. },
  11768. ]
  11769. ))
  11770. characterMakers.push(() => makeCharacter(
  11771. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11772. {
  11773. front: {
  11774. height: math.unit(18, "feet"),
  11775. weight: math.unit(5800, "lb"),
  11776. name: "Front",
  11777. image: {
  11778. source: "./media/characters/rhys/front.svg",
  11779. extra: 3386 / 3090,
  11780. bottom: 0.07
  11781. }
  11782. },
  11783. },
  11784. [
  11785. {
  11786. name: "Normal",
  11787. height: math.unit(18, "feet"),
  11788. default: true
  11789. },
  11790. {
  11791. name: "Working Size",
  11792. height: math.unit(200, "feet")
  11793. },
  11794. {
  11795. name: "Demolition Size",
  11796. height: math.unit(2000, "feet")
  11797. },
  11798. {
  11799. name: "Maximum Licensed Size",
  11800. height: math.unit(5, "miles")
  11801. },
  11802. {
  11803. name: "Maximum Observed Size",
  11804. height: math.unit(10, "yottameters")
  11805. },
  11806. ]
  11807. ))
  11808. characterMakers.push(() => makeCharacter(
  11809. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11810. {
  11811. front: {
  11812. height: math.unit(6, "feet"),
  11813. weight: math.unit(250, "lb"),
  11814. name: "Front",
  11815. image: {
  11816. source: "./media/characters/toto/front.svg",
  11817. extra: 527 / 479,
  11818. bottom: 0.05
  11819. }
  11820. },
  11821. },
  11822. [
  11823. {
  11824. name: "Micro",
  11825. height: math.unit(3, "feet")
  11826. },
  11827. {
  11828. name: "Normal",
  11829. height: math.unit(10, "feet")
  11830. },
  11831. {
  11832. name: "Macro",
  11833. height: math.unit(150, "feet"),
  11834. default: true
  11835. },
  11836. {
  11837. name: "Megamacro",
  11838. height: math.unit(1200, "feet")
  11839. },
  11840. ]
  11841. ))
  11842. characterMakers.push(() => makeCharacter(
  11843. { name: "King", species: ["lion"], tags: ["anthro"] },
  11844. {
  11845. back: {
  11846. height: math.unit(6, "feet"),
  11847. weight: math.unit(150, "lb"),
  11848. name: "Back",
  11849. image: {
  11850. source: "./media/characters/king/back.svg"
  11851. }
  11852. },
  11853. },
  11854. [
  11855. {
  11856. name: "Micro",
  11857. height: math.unit(2, "inches")
  11858. },
  11859. {
  11860. name: "Normal",
  11861. height: math.unit(8, "feet")
  11862. },
  11863. {
  11864. name: "Macro",
  11865. height: math.unit(200, "feet"),
  11866. default: true
  11867. },
  11868. {
  11869. name: "Megamacro",
  11870. height: math.unit(50, "miles")
  11871. },
  11872. ]
  11873. ))
  11874. characterMakers.push(() => makeCharacter(
  11875. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11876. {
  11877. front: {
  11878. height: math.unit(11, "feet"),
  11879. weight: math.unit(1400, "lb"),
  11880. name: "Front",
  11881. image: {
  11882. source: "./media/characters/cordite/front.svg",
  11883. extra: 1919/1827,
  11884. bottom: 40/1959
  11885. }
  11886. },
  11887. side: {
  11888. height: math.unit(11, "feet"),
  11889. weight: math.unit(1400, "lb"),
  11890. name: "Side",
  11891. image: {
  11892. source: "./media/characters/cordite/side.svg",
  11893. extra: 1908/1793,
  11894. bottom: 38/1946
  11895. }
  11896. },
  11897. back: {
  11898. height: math.unit(11, "feet"),
  11899. weight: math.unit(1400, "lb"),
  11900. name: "Back",
  11901. image: {
  11902. source: "./media/characters/cordite/back.svg",
  11903. extra: 1938/1837,
  11904. bottom: 10/1948
  11905. }
  11906. },
  11907. feral: {
  11908. height: math.unit(2, "feet"),
  11909. weight: math.unit(90, "lb"),
  11910. name: "Feral",
  11911. image: {
  11912. source: "./media/characters/cordite/feral.svg",
  11913. extra: 1260 / 755,
  11914. bottom: 0.05
  11915. }
  11916. },
  11917. },
  11918. [
  11919. {
  11920. name: "Normal",
  11921. height: math.unit(11, "feet"),
  11922. default: true
  11923. },
  11924. ]
  11925. ))
  11926. characterMakers.push(() => makeCharacter(
  11927. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11928. {
  11929. front: {
  11930. height: math.unit(6, "feet"),
  11931. weight: math.unit(150, "lb"),
  11932. name: "Front",
  11933. image: {
  11934. source: "./media/characters/pianostrong/front.svg",
  11935. extra: 6577 / 6254,
  11936. bottom: 0.02
  11937. }
  11938. },
  11939. side: {
  11940. height: math.unit(6, "feet"),
  11941. weight: math.unit(150, "lb"),
  11942. name: "Side",
  11943. image: {
  11944. source: "./media/characters/pianostrong/side.svg",
  11945. extra: 6106 / 5730
  11946. }
  11947. },
  11948. back: {
  11949. height: math.unit(6, "feet"),
  11950. weight: math.unit(150, "lb"),
  11951. name: "Back",
  11952. image: {
  11953. source: "./media/characters/pianostrong/back.svg",
  11954. extra: 6085 / 5733,
  11955. bottom: 0.01
  11956. }
  11957. },
  11958. },
  11959. [
  11960. {
  11961. name: "Macro",
  11962. height: math.unit(100, "feet")
  11963. },
  11964. {
  11965. name: "Macro+",
  11966. height: math.unit(300, "feet"),
  11967. default: true
  11968. },
  11969. {
  11970. name: "Macro++",
  11971. height: math.unit(1000, "feet")
  11972. },
  11973. ]
  11974. ))
  11975. characterMakers.push(() => makeCharacter(
  11976. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11977. {
  11978. front: {
  11979. height: math.unit(6, "feet"),
  11980. weight: math.unit(150, "lb"),
  11981. name: "Front",
  11982. image: {
  11983. source: "./media/characters/kona/front.svg",
  11984. extra: 2960 / 2629,
  11985. bottom: 0.005
  11986. }
  11987. },
  11988. },
  11989. [
  11990. {
  11991. name: "Normal",
  11992. height: math.unit(11 + 8 / 12, "feet")
  11993. },
  11994. {
  11995. name: "Macro",
  11996. height: math.unit(850, "feet"),
  11997. default: true
  11998. },
  11999. {
  12000. name: "Macro+",
  12001. height: math.unit(1.5, "km"),
  12002. default: true
  12003. },
  12004. {
  12005. name: "Megamacro",
  12006. height: math.unit(80, "miles")
  12007. },
  12008. {
  12009. name: "Gigamacro",
  12010. height: math.unit(3500, "miles")
  12011. },
  12012. ]
  12013. ))
  12014. characterMakers.push(() => makeCharacter(
  12015. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12016. {
  12017. side: {
  12018. height: math.unit(1.9, "meters"),
  12019. weight: math.unit(326, "kg"),
  12020. name: "Side",
  12021. image: {
  12022. source: "./media/characters/levi/side.svg",
  12023. extra: 1704 / 1334,
  12024. bottom: 0.02
  12025. }
  12026. },
  12027. },
  12028. [
  12029. {
  12030. name: "Normal",
  12031. height: math.unit(1.9, "meters"),
  12032. default: true
  12033. },
  12034. {
  12035. name: "Macro",
  12036. height: math.unit(20, "meters")
  12037. },
  12038. {
  12039. name: "Macro+",
  12040. height: math.unit(200, "meters")
  12041. },
  12042. {
  12043. name: "Megamacro",
  12044. height: math.unit(2, "km")
  12045. },
  12046. {
  12047. name: "Megamacro+",
  12048. height: math.unit(20, "km")
  12049. },
  12050. {
  12051. name: "Gigamacro",
  12052. height: math.unit(2500, "km")
  12053. },
  12054. {
  12055. name: "Gigamacro+",
  12056. height: math.unit(120000, "km")
  12057. },
  12058. {
  12059. name: "Teramacro",
  12060. height: math.unit(7.77e6, "km")
  12061. },
  12062. ]
  12063. ))
  12064. characterMakers.push(() => makeCharacter(
  12065. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12066. {
  12067. front: {
  12068. height: math.unit(6 + 4/12, "feet"),
  12069. weight: math.unit(190, "lb"),
  12070. name: "Front",
  12071. image: {
  12072. source: "./media/characters/bmc/front.svg",
  12073. extra: 1626/1472,
  12074. bottom: 79/1705
  12075. }
  12076. },
  12077. back: {
  12078. height: math.unit(6 + 4/12, "feet"),
  12079. weight: math.unit(190, "lb"),
  12080. name: "Back",
  12081. image: {
  12082. source: "./media/characters/bmc/back.svg",
  12083. extra: 1640/1479,
  12084. bottom: 45/1685
  12085. }
  12086. },
  12087. frontArmor: {
  12088. height: math.unit(6 + 4/12, "feet"),
  12089. weight: math.unit(190, "lb"),
  12090. name: "Front-armor",
  12091. image: {
  12092. source: "./media/characters/bmc/front-armor.svg",
  12093. extra: 1538/1468,
  12094. bottom: 79/1617
  12095. }
  12096. },
  12097. },
  12098. [
  12099. {
  12100. name: "Human-sized",
  12101. height: math.unit(6 + 4 / 12, "feet")
  12102. },
  12103. {
  12104. name: "Interactive Size",
  12105. height: math.unit(25, "feet")
  12106. },
  12107. {
  12108. name: "Small",
  12109. height: math.unit(250, "feet")
  12110. },
  12111. {
  12112. name: "Normal",
  12113. height: math.unit(1250, "feet"),
  12114. default: true
  12115. },
  12116. {
  12117. name: "Good Day",
  12118. height: math.unit(88, "miles")
  12119. },
  12120. {
  12121. name: "Largest Measured Size",
  12122. height: math.unit(105.960, "galaxies")
  12123. },
  12124. ]
  12125. ))
  12126. characterMakers.push(() => makeCharacter(
  12127. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12128. {
  12129. front: {
  12130. height: math.unit(20, "feet"),
  12131. weight: math.unit(2016, "kg"),
  12132. name: "Front",
  12133. image: {
  12134. source: "./media/characters/sven-the-kaiju/front.svg",
  12135. extra: 1277/1250,
  12136. bottom: 35/1312
  12137. }
  12138. },
  12139. mouth: {
  12140. height: math.unit(1.85, "feet"),
  12141. name: "Mouth",
  12142. image: {
  12143. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12144. }
  12145. },
  12146. },
  12147. [
  12148. {
  12149. name: "Fairy",
  12150. height: math.unit(6, "inches")
  12151. },
  12152. {
  12153. name: "Normal",
  12154. height: math.unit(20, "feet"),
  12155. default: true
  12156. },
  12157. {
  12158. name: "Rampage",
  12159. height: math.unit(200, "feet")
  12160. },
  12161. {
  12162. name: "Archfey Forest Guardian",
  12163. height: math.unit(1, "mile")
  12164. },
  12165. ]
  12166. ))
  12167. characterMakers.push(() => makeCharacter(
  12168. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12169. {
  12170. front: {
  12171. height: math.unit(4, "meters"),
  12172. weight: math.unit(2, "tons"),
  12173. name: "Front",
  12174. image: {
  12175. source: "./media/characters/marik/front.svg",
  12176. extra: 1057 / 1003,
  12177. bottom: 0.08
  12178. }
  12179. },
  12180. },
  12181. [
  12182. {
  12183. name: "Normal",
  12184. height: math.unit(4, "meters"),
  12185. default: true
  12186. },
  12187. {
  12188. name: "Macro",
  12189. height: math.unit(20, "meters")
  12190. },
  12191. {
  12192. name: "Megamacro",
  12193. height: math.unit(50, "km")
  12194. },
  12195. {
  12196. name: "Gigamacro",
  12197. height: math.unit(100, "km")
  12198. },
  12199. {
  12200. name: "Alpha Macro",
  12201. height: math.unit(7.88e7, "yottameters")
  12202. },
  12203. ]
  12204. ))
  12205. characterMakers.push(() => makeCharacter(
  12206. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12207. {
  12208. front: {
  12209. height: math.unit(6, "feet"),
  12210. weight: math.unit(110, "lb"),
  12211. name: "Front",
  12212. image: {
  12213. source: "./media/characters/mel/front.svg",
  12214. extra: 736 / 617,
  12215. bottom: 0.017
  12216. }
  12217. },
  12218. },
  12219. [
  12220. {
  12221. name: "Pico",
  12222. height: math.unit(3, "pm")
  12223. },
  12224. {
  12225. name: "Nano",
  12226. height: math.unit(3, "nm")
  12227. },
  12228. {
  12229. name: "Micro",
  12230. height: math.unit(0.3, "mm"),
  12231. default: true
  12232. },
  12233. {
  12234. name: "Micro+",
  12235. height: math.unit(3, "mm")
  12236. },
  12237. {
  12238. name: "Normal",
  12239. height: math.unit(5 + 10.5 / 12, "feet")
  12240. },
  12241. ]
  12242. ))
  12243. characterMakers.push(() => makeCharacter(
  12244. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12245. {
  12246. kaiju: {
  12247. height: math.unit(1.75, "meters"),
  12248. weight: math.unit(55, "kg"),
  12249. name: "Kaiju",
  12250. image: {
  12251. source: "./media/characters/lykonous/kaiju.svg",
  12252. extra: 1055 / 946,
  12253. bottom: 0.135
  12254. }
  12255. },
  12256. },
  12257. [
  12258. {
  12259. name: "Normal",
  12260. height: math.unit(2.5, "meters"),
  12261. default: true
  12262. },
  12263. {
  12264. name: "Kaiju Dragon",
  12265. height: math.unit(60, "meters")
  12266. },
  12267. {
  12268. name: "Mega Kaiju",
  12269. height: math.unit(120, "km")
  12270. },
  12271. {
  12272. name: "Giga Kaiju",
  12273. height: math.unit(200, "megameters")
  12274. },
  12275. {
  12276. name: "Terra Kaiju",
  12277. height: math.unit(400, "gigameters")
  12278. },
  12279. {
  12280. name: "Kaiju Dragon God",
  12281. height: math.unit(13000, "exaparsecs")
  12282. },
  12283. ]
  12284. ))
  12285. characterMakers.push(() => makeCharacter(
  12286. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12287. {
  12288. front: {
  12289. height: math.unit(6, "feet"),
  12290. weight: math.unit(150, "lb"),
  12291. name: "Front",
  12292. image: {
  12293. source: "./media/characters/blü/front.svg",
  12294. extra: 1883 / 1564,
  12295. bottom: 0.031
  12296. }
  12297. },
  12298. },
  12299. [
  12300. {
  12301. name: "Normal",
  12302. height: math.unit(13, "feet"),
  12303. default: true
  12304. },
  12305. {
  12306. name: "Big Boi",
  12307. height: math.unit(150, "meters")
  12308. },
  12309. {
  12310. name: "Mini Stomper",
  12311. height: math.unit(300, "meters")
  12312. },
  12313. {
  12314. name: "Macro",
  12315. height: math.unit(1000, "meters")
  12316. },
  12317. {
  12318. name: "Megamacro",
  12319. height: math.unit(11000, "meters")
  12320. },
  12321. {
  12322. name: "Gigamacro",
  12323. height: math.unit(11000, "km")
  12324. },
  12325. {
  12326. name: "Teramacro",
  12327. height: math.unit(420000, "km")
  12328. },
  12329. {
  12330. name: "Examacro",
  12331. height: math.unit(120, "parsecs")
  12332. },
  12333. {
  12334. name: "God Tho",
  12335. height: math.unit(98000000000, "parsecs")
  12336. },
  12337. ]
  12338. ))
  12339. characterMakers.push(() => makeCharacter(
  12340. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12341. {
  12342. taurFront: {
  12343. height: math.unit(6, "feet"),
  12344. weight: math.unit(200, "lb"),
  12345. name: "Taur (Front)",
  12346. image: {
  12347. source: "./media/characters/scales/taur-front.svg",
  12348. extra: 1,
  12349. bottom: 0.05
  12350. }
  12351. },
  12352. taurBack: {
  12353. height: math.unit(6, "feet"),
  12354. weight: math.unit(200, "lb"),
  12355. name: "Taur (Back)",
  12356. image: {
  12357. source: "./media/characters/scales/taur-back.svg",
  12358. extra: 1,
  12359. bottom: 0.08
  12360. }
  12361. },
  12362. anthro: {
  12363. height: math.unit(6 * 7 / 12, "feet"),
  12364. weight: math.unit(100, "lb"),
  12365. name: "Anthro",
  12366. image: {
  12367. source: "./media/characters/scales/anthro.svg",
  12368. extra: 1,
  12369. bottom: 0.06
  12370. }
  12371. },
  12372. },
  12373. [
  12374. {
  12375. name: "Normal",
  12376. height: math.unit(12, "feet"),
  12377. default: true
  12378. },
  12379. ]
  12380. ))
  12381. characterMakers.push(() => makeCharacter(
  12382. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12383. {
  12384. front: {
  12385. height: math.unit(6, "feet"),
  12386. weight: math.unit(150, "lb"),
  12387. name: "Front",
  12388. image: {
  12389. source: "./media/characters/koragos/front.svg",
  12390. extra: 841 / 794,
  12391. bottom: 0.035
  12392. }
  12393. },
  12394. back: {
  12395. height: math.unit(6, "feet"),
  12396. weight: math.unit(150, "lb"),
  12397. name: "Back",
  12398. image: {
  12399. source: "./media/characters/koragos/back.svg",
  12400. extra: 841 / 810,
  12401. bottom: 0.022
  12402. }
  12403. },
  12404. },
  12405. [
  12406. {
  12407. name: "Normal",
  12408. height: math.unit(6 + 11 / 12, "feet"),
  12409. default: true
  12410. },
  12411. {
  12412. name: "Macro",
  12413. height: math.unit(490, "feet")
  12414. },
  12415. {
  12416. name: "Megamacro",
  12417. height: math.unit(10, "miles")
  12418. },
  12419. {
  12420. name: "Gigamacro",
  12421. height: math.unit(50, "miles")
  12422. },
  12423. ]
  12424. ))
  12425. characterMakers.push(() => makeCharacter(
  12426. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12427. {
  12428. front: {
  12429. height: math.unit(6, "feet"),
  12430. weight: math.unit(250, "lb"),
  12431. name: "Front",
  12432. image: {
  12433. source: "./media/characters/xylrem/front.svg",
  12434. extra: 3323 / 3050,
  12435. bottom: 0.065
  12436. }
  12437. },
  12438. },
  12439. [
  12440. {
  12441. name: "Micro",
  12442. height: math.unit(4, "feet")
  12443. },
  12444. {
  12445. name: "Normal",
  12446. height: math.unit(16, "feet"),
  12447. default: true
  12448. },
  12449. {
  12450. name: "Macro",
  12451. height: math.unit(2720, "feet")
  12452. },
  12453. {
  12454. name: "Megamacro",
  12455. height: math.unit(25000, "miles")
  12456. },
  12457. ]
  12458. ))
  12459. characterMakers.push(() => makeCharacter(
  12460. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12461. {
  12462. front: {
  12463. height: math.unit(8, "feet"),
  12464. weight: math.unit(250, "kg"),
  12465. name: "Front",
  12466. image: {
  12467. source: "./media/characters/ikideru/front.svg",
  12468. extra: 930 / 870,
  12469. bottom: 0.087
  12470. }
  12471. },
  12472. back: {
  12473. height: math.unit(8, "feet"),
  12474. weight: math.unit(250, "kg"),
  12475. name: "Back",
  12476. image: {
  12477. source: "./media/characters/ikideru/back.svg",
  12478. extra: 919 / 852,
  12479. bottom: 0.055
  12480. }
  12481. },
  12482. },
  12483. [
  12484. {
  12485. name: "Rare",
  12486. height: math.unit(8, "feet"),
  12487. default: true
  12488. },
  12489. {
  12490. name: "Playful Loom",
  12491. height: math.unit(80, "feet")
  12492. },
  12493. {
  12494. name: "City Leaner",
  12495. height: math.unit(230, "feet")
  12496. },
  12497. {
  12498. name: "Megamacro",
  12499. height: math.unit(2500, "feet")
  12500. },
  12501. {
  12502. name: "Gigamacro",
  12503. height: math.unit(26400, "feet")
  12504. },
  12505. {
  12506. name: "Tectonic Shifter",
  12507. height: math.unit(1.7, "megameters")
  12508. },
  12509. {
  12510. name: "Planet Carer",
  12511. height: math.unit(21, "megameters")
  12512. },
  12513. {
  12514. name: "God",
  12515. height: math.unit(11157.22, "parsecs")
  12516. },
  12517. ]
  12518. ))
  12519. characterMakers.push(() => makeCharacter(
  12520. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12521. {
  12522. front: {
  12523. height: math.unit(6, "feet"),
  12524. weight: math.unit(120, "lb"),
  12525. name: "Front",
  12526. image: {
  12527. source: "./media/characters/neo/front.svg"
  12528. }
  12529. },
  12530. },
  12531. [
  12532. {
  12533. name: "Micro",
  12534. height: math.unit(2, "inches"),
  12535. default: true
  12536. },
  12537. {
  12538. name: "Human Size",
  12539. height: math.unit(5 + 8 / 12, "feet")
  12540. },
  12541. ]
  12542. ))
  12543. characterMakers.push(() => makeCharacter(
  12544. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12545. {
  12546. front: {
  12547. height: math.unit(13 + 10 / 12, "feet"),
  12548. weight: math.unit(5320, "lb"),
  12549. name: "Front",
  12550. image: {
  12551. source: "./media/characters/chauncey-chantz/front.svg",
  12552. extra: 1587 / 1435,
  12553. bottom: 0.02
  12554. }
  12555. },
  12556. },
  12557. [
  12558. {
  12559. name: "Normal",
  12560. height: math.unit(13 + 10 / 12, "feet"),
  12561. default: true
  12562. },
  12563. {
  12564. name: "Macro",
  12565. height: math.unit(45, "feet")
  12566. },
  12567. {
  12568. name: "Megamacro",
  12569. height: math.unit(250, "miles")
  12570. },
  12571. {
  12572. name: "Planetary",
  12573. height: math.unit(10000, "miles")
  12574. },
  12575. {
  12576. name: "Galactic",
  12577. height: math.unit(40000, "parsecs")
  12578. },
  12579. {
  12580. name: "Universal",
  12581. height: math.unit(1, "yottameter")
  12582. },
  12583. ]
  12584. ))
  12585. characterMakers.push(() => makeCharacter(
  12586. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12587. {
  12588. front: {
  12589. height: math.unit(6, "feet"),
  12590. weight: math.unit(150, "lb"),
  12591. name: "Front",
  12592. image: {
  12593. source: "./media/characters/epifox/front.svg",
  12594. extra: 1,
  12595. bottom: 0.075
  12596. }
  12597. },
  12598. },
  12599. [
  12600. {
  12601. name: "Micro",
  12602. height: math.unit(6, "inches")
  12603. },
  12604. {
  12605. name: "Normal",
  12606. height: math.unit(12, "feet"),
  12607. default: true
  12608. },
  12609. {
  12610. name: "Macro",
  12611. height: math.unit(3810, "feet")
  12612. },
  12613. {
  12614. name: "Megamacro",
  12615. height: math.unit(500, "miles")
  12616. },
  12617. ]
  12618. ))
  12619. characterMakers.push(() => makeCharacter(
  12620. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12621. {
  12622. front: {
  12623. height: math.unit(1.8796, "m"),
  12624. weight: math.unit(230, "lb"),
  12625. name: "Front",
  12626. image: {
  12627. source: "./media/characters/colin-t/front.svg",
  12628. extra: 1272 / 1193,
  12629. bottom: 0.07
  12630. }
  12631. },
  12632. },
  12633. [
  12634. {
  12635. name: "Micro",
  12636. height: math.unit(0.571, "meters")
  12637. },
  12638. {
  12639. name: "Normal",
  12640. height: math.unit(1.8796, "meters"),
  12641. default: true
  12642. },
  12643. {
  12644. name: "Tall",
  12645. height: math.unit(4, "meters")
  12646. },
  12647. {
  12648. name: "Macro",
  12649. height: math.unit(67.241, "meters")
  12650. },
  12651. {
  12652. name: "Megamacro",
  12653. height: math.unit(371.856, "meters")
  12654. },
  12655. {
  12656. name: "Planetary",
  12657. height: math.unit(12631.5689, "km")
  12658. },
  12659. ]
  12660. ))
  12661. characterMakers.push(() => makeCharacter(
  12662. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12663. {
  12664. front: {
  12665. height: math.unit(1.85, "meters"),
  12666. weight: math.unit(80, "kg"),
  12667. name: "Front",
  12668. image: {
  12669. source: "./media/characters/matvei/front.svg",
  12670. extra: 614 / 594,
  12671. bottom: 0.01
  12672. }
  12673. },
  12674. },
  12675. [
  12676. {
  12677. name: "Normal",
  12678. height: math.unit(1.85, "meters"),
  12679. default: true
  12680. },
  12681. ]
  12682. ))
  12683. characterMakers.push(() => makeCharacter(
  12684. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12685. {
  12686. front: {
  12687. height: math.unit(5 + 9 / 12, "feet"),
  12688. weight: math.unit(70, "lb"),
  12689. name: "Front",
  12690. image: {
  12691. source: "./media/characters/quincy/front.svg",
  12692. extra: 3041 / 2751
  12693. }
  12694. },
  12695. back: {
  12696. height: math.unit(5 + 9 / 12, "feet"),
  12697. weight: math.unit(70, "lb"),
  12698. name: "Back",
  12699. image: {
  12700. source: "./media/characters/quincy/back.svg",
  12701. extra: 3041 / 2751
  12702. }
  12703. },
  12704. flying: {
  12705. height: math.unit(5 + 4 / 12, "feet"),
  12706. weight: math.unit(70, "lb"),
  12707. name: "Flying",
  12708. image: {
  12709. source: "./media/characters/quincy/flying.svg",
  12710. extra: 1044 / 930
  12711. }
  12712. },
  12713. },
  12714. [
  12715. {
  12716. name: "Micro",
  12717. height: math.unit(3, "cm")
  12718. },
  12719. {
  12720. name: "Normal",
  12721. height: math.unit(5 + 9 / 12, "feet")
  12722. },
  12723. {
  12724. name: "Macro",
  12725. height: math.unit(200, "meters"),
  12726. default: true
  12727. },
  12728. {
  12729. name: "Megamacro",
  12730. height: math.unit(1000, "meters")
  12731. },
  12732. ]
  12733. ))
  12734. characterMakers.push(() => makeCharacter(
  12735. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12736. {
  12737. front: {
  12738. height: math.unit(3 + 11/12, "feet"),
  12739. weight: math.unit(50, "lb"),
  12740. name: "Front",
  12741. image: {
  12742. source: "./media/characters/vanrel/front.svg",
  12743. extra: 1104/949,
  12744. bottom: 52/1156
  12745. }
  12746. },
  12747. back: {
  12748. height: math.unit(3 + 11/12, "feet"),
  12749. weight: math.unit(50, "lb"),
  12750. name: "Back",
  12751. image: {
  12752. source: "./media/characters/vanrel/back.svg",
  12753. extra: 1119/976,
  12754. bottom: 37/1156
  12755. }
  12756. },
  12757. tome: {
  12758. height: math.unit(1.35, "feet"),
  12759. weight: math.unit(10, "lb"),
  12760. name: "Vanrel's Tome",
  12761. rename: true,
  12762. image: {
  12763. source: "./media/characters/vanrel/tome.svg"
  12764. }
  12765. },
  12766. beans: {
  12767. height: math.unit(0.89, "feet"),
  12768. name: "Beans",
  12769. image: {
  12770. source: "./media/characters/vanrel/beans.svg"
  12771. }
  12772. },
  12773. },
  12774. [
  12775. {
  12776. name: "Normal",
  12777. height: math.unit(3 + 11/12, "feet"),
  12778. default: true
  12779. },
  12780. ]
  12781. ))
  12782. characterMakers.push(() => makeCharacter(
  12783. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12784. {
  12785. front: {
  12786. height: math.unit(7 + 5 / 12, "feet"),
  12787. name: "Front",
  12788. image: {
  12789. source: "./media/characters/kuiper-vanrel/front.svg",
  12790. extra: 1219/1169,
  12791. bottom: 69/1288
  12792. }
  12793. },
  12794. back: {
  12795. height: math.unit(7 + 5 / 12, "feet"),
  12796. name: "Back",
  12797. image: {
  12798. source: "./media/characters/kuiper-vanrel/back.svg",
  12799. extra: 1236/1193,
  12800. bottom: 27/1263
  12801. }
  12802. },
  12803. foot: {
  12804. height: math.unit(0.55, "meters"),
  12805. name: "Foot",
  12806. image: {
  12807. source: "./media/characters/kuiper-vanrel/foot.svg",
  12808. }
  12809. },
  12810. battle: {
  12811. height: math.unit(6.824, "feet"),
  12812. name: "Battle",
  12813. image: {
  12814. source: "./media/characters/kuiper-vanrel/battle.svg",
  12815. extra: 1466 / 1327,
  12816. bottom: 29 / 1492.5
  12817. }
  12818. },
  12819. meerkui: {
  12820. height: math.unit(18, "inches"),
  12821. name: "Meerkui",
  12822. image: {
  12823. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12824. extra: 1354/1289,
  12825. bottom: 69/1423
  12826. }
  12827. },
  12828. },
  12829. [
  12830. {
  12831. name: "Normal",
  12832. height: math.unit(7 + 5 / 12, "feet"),
  12833. default: true
  12834. },
  12835. ]
  12836. ))
  12837. characterMakers.push(() => makeCharacter(
  12838. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12839. {
  12840. front: {
  12841. height: math.unit(8 + 5 / 12, "feet"),
  12842. name: "Front",
  12843. image: {
  12844. source: "./media/characters/keset-vanrel/front.svg",
  12845. extra: 1231/1148,
  12846. bottom: 82/1313
  12847. }
  12848. },
  12849. back: {
  12850. height: math.unit(8 + 5 / 12, "feet"),
  12851. name: "Back",
  12852. image: {
  12853. source: "./media/characters/keset-vanrel/back.svg",
  12854. extra: 1240/1174,
  12855. bottom: 33/1273
  12856. }
  12857. },
  12858. hand: {
  12859. height: math.unit(0.6, "meters"),
  12860. name: "Hand",
  12861. image: {
  12862. source: "./media/characters/keset-vanrel/hand.svg"
  12863. }
  12864. },
  12865. foot: {
  12866. height: math.unit(0.94978, "meters"),
  12867. name: "Foot",
  12868. image: {
  12869. source: "./media/characters/keset-vanrel/foot.svg"
  12870. }
  12871. },
  12872. battle: {
  12873. height: math.unit(7.408, "feet"),
  12874. name: "Battle",
  12875. image: {
  12876. source: "./media/characters/keset-vanrel/battle.svg",
  12877. extra: 1890 / 1386,
  12878. bottom: 73.28 / 1970
  12879. }
  12880. },
  12881. },
  12882. [
  12883. {
  12884. name: "Normal",
  12885. height: math.unit(8 + 5 / 12, "feet"),
  12886. default: true
  12887. },
  12888. ]
  12889. ))
  12890. characterMakers.push(() => makeCharacter(
  12891. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12892. {
  12893. front: {
  12894. height: math.unit(6, "feet"),
  12895. weight: math.unit(150, "lb"),
  12896. name: "Front",
  12897. image: {
  12898. source: "./media/characters/neos/front.svg",
  12899. extra: 1696 / 992,
  12900. bottom: 0.14
  12901. }
  12902. },
  12903. },
  12904. [
  12905. {
  12906. name: "Normal",
  12907. height: math.unit(54, "cm"),
  12908. default: true
  12909. },
  12910. {
  12911. name: "Macro",
  12912. height: math.unit(100, "m")
  12913. },
  12914. {
  12915. name: "Megamacro",
  12916. height: math.unit(10, "km")
  12917. },
  12918. {
  12919. name: "Megamacro+",
  12920. height: math.unit(100, "km")
  12921. },
  12922. {
  12923. name: "Gigamacro",
  12924. height: math.unit(100, "Mm")
  12925. },
  12926. {
  12927. name: "Teramacro",
  12928. height: math.unit(100, "Gm")
  12929. },
  12930. {
  12931. name: "Examacro",
  12932. height: math.unit(100, "Em")
  12933. },
  12934. {
  12935. name: "Godly",
  12936. height: math.unit(10000, "Ym")
  12937. },
  12938. {
  12939. name: "Beyond Godly",
  12940. height: math.unit(25, "multiverses")
  12941. },
  12942. ]
  12943. ))
  12944. characterMakers.push(() => makeCharacter(
  12945. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12946. {
  12947. feminine: {
  12948. height: math.unit(5, "feet"),
  12949. weight: math.unit(100, "lb"),
  12950. name: "Feminine",
  12951. image: {
  12952. source: "./media/characters/sammy-mouse/feminine.svg",
  12953. extra: 2526 / 2425,
  12954. bottom: 0.123
  12955. }
  12956. },
  12957. masculine: {
  12958. height: math.unit(5, "feet"),
  12959. weight: math.unit(100, "lb"),
  12960. name: "Masculine",
  12961. image: {
  12962. source: "./media/characters/sammy-mouse/masculine.svg",
  12963. extra: 2526 / 2425,
  12964. bottom: 0.123
  12965. }
  12966. },
  12967. },
  12968. [
  12969. {
  12970. name: "Micro",
  12971. height: math.unit(5, "inches")
  12972. },
  12973. {
  12974. name: "Normal",
  12975. height: math.unit(5, "feet"),
  12976. default: true
  12977. },
  12978. {
  12979. name: "Macro",
  12980. height: math.unit(60, "feet")
  12981. },
  12982. ]
  12983. ))
  12984. characterMakers.push(() => makeCharacter(
  12985. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12986. {
  12987. front: {
  12988. height: math.unit(4, "feet"),
  12989. weight: math.unit(50, "lb"),
  12990. name: "Front",
  12991. image: {
  12992. source: "./media/characters/kole/front.svg",
  12993. extra: 1423 / 1303,
  12994. bottom: 0.025
  12995. }
  12996. },
  12997. back: {
  12998. height: math.unit(4, "feet"),
  12999. weight: math.unit(50, "lb"),
  13000. name: "Back",
  13001. image: {
  13002. source: "./media/characters/kole/back.svg",
  13003. extra: 1426 / 1280,
  13004. bottom: 0.02
  13005. }
  13006. },
  13007. },
  13008. [
  13009. {
  13010. name: "Normal",
  13011. height: math.unit(4, "feet"),
  13012. default: true
  13013. },
  13014. ]
  13015. ))
  13016. characterMakers.push(() => makeCharacter(
  13017. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13018. {
  13019. front: {
  13020. height: math.unit(2.5, "feet"),
  13021. weight: math.unit(32, "lb"),
  13022. name: "Front",
  13023. image: {
  13024. source: "./media/characters/rufran/front.svg",
  13025. extra: 1313/885,
  13026. bottom: 94/1407
  13027. }
  13028. },
  13029. side: {
  13030. height: math.unit(2.5, "feet"),
  13031. weight: math.unit(32, "lb"),
  13032. name: "Side",
  13033. image: {
  13034. source: "./media/characters/rufran/side.svg",
  13035. extra: 1109/852,
  13036. bottom: 118/1227
  13037. }
  13038. },
  13039. back: {
  13040. height: math.unit(2.5, "feet"),
  13041. weight: math.unit(32, "lb"),
  13042. name: "Back",
  13043. image: {
  13044. source: "./media/characters/rufran/back.svg",
  13045. extra: 1280/878,
  13046. bottom: 131/1411
  13047. }
  13048. },
  13049. mouth: {
  13050. height: math.unit(1.13, "feet"),
  13051. name: "Mouth",
  13052. image: {
  13053. source: "./media/characters/rufran/mouth.svg"
  13054. }
  13055. },
  13056. foot: {
  13057. height: math.unit(1.33, "feet"),
  13058. name: "Foot",
  13059. image: {
  13060. source: "./media/characters/rufran/foot.svg"
  13061. }
  13062. },
  13063. koboldFront: {
  13064. height: math.unit(2 + 6 / 12, "feet"),
  13065. weight: math.unit(20, "lb"),
  13066. name: "Front (Kobold)",
  13067. image: {
  13068. source: "./media/characters/rufran/kobold-front.svg",
  13069. extra: 2041 / 1839,
  13070. bottom: 0.055
  13071. }
  13072. },
  13073. koboldBack: {
  13074. height: math.unit(2 + 6 / 12, "feet"),
  13075. weight: math.unit(20, "lb"),
  13076. name: "Back (Kobold)",
  13077. image: {
  13078. source: "./media/characters/rufran/kobold-back.svg",
  13079. extra: 2054 / 1839,
  13080. bottom: 0.01
  13081. }
  13082. },
  13083. koboldHand: {
  13084. height: math.unit(0.2166, "meters"),
  13085. name: "Hand (Kobold)",
  13086. image: {
  13087. source: "./media/characters/rufran/kobold-hand.svg"
  13088. }
  13089. },
  13090. koboldFoot: {
  13091. height: math.unit(0.185, "meters"),
  13092. name: "Foot (Kobold)",
  13093. image: {
  13094. source: "./media/characters/rufran/kobold-foot.svg"
  13095. }
  13096. },
  13097. },
  13098. [
  13099. {
  13100. name: "Micro",
  13101. height: math.unit(1, "inch")
  13102. },
  13103. {
  13104. name: "Normal",
  13105. height: math.unit(2 + 6 / 12, "feet"),
  13106. default: true
  13107. },
  13108. {
  13109. name: "Big",
  13110. height: math.unit(60, "feet")
  13111. },
  13112. {
  13113. name: "Macro",
  13114. height: math.unit(325, "feet")
  13115. },
  13116. ]
  13117. ))
  13118. characterMakers.push(() => makeCharacter(
  13119. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13120. {
  13121. front: {
  13122. height: math.unit(0.3, "meters"),
  13123. weight: math.unit(3.5, "kg"),
  13124. name: "Front",
  13125. image: {
  13126. source: "./media/characters/chip/front.svg",
  13127. extra: 748 / 674
  13128. }
  13129. },
  13130. },
  13131. [
  13132. {
  13133. name: "Micro",
  13134. height: math.unit(1, "inch"),
  13135. default: true
  13136. },
  13137. ]
  13138. ))
  13139. characterMakers.push(() => makeCharacter(
  13140. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13141. {
  13142. side: {
  13143. height: math.unit(2.3, "meters"),
  13144. weight: math.unit(3500, "lb"),
  13145. name: "Side",
  13146. image: {
  13147. source: "./media/characters/torvid/side.svg",
  13148. extra: 1972 / 722,
  13149. bottom: 0.035
  13150. }
  13151. },
  13152. },
  13153. [
  13154. {
  13155. name: "Normal",
  13156. height: math.unit(2.3, "meters"),
  13157. default: true
  13158. },
  13159. ]
  13160. ))
  13161. characterMakers.push(() => makeCharacter(
  13162. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13163. {
  13164. front: {
  13165. height: math.unit(2, "meters"),
  13166. weight: math.unit(150.5, "kg"),
  13167. name: "Front",
  13168. image: {
  13169. source: "./media/characters/susan/front.svg",
  13170. extra: 693 / 635,
  13171. bottom: 0.05
  13172. }
  13173. },
  13174. },
  13175. [
  13176. {
  13177. name: "Megamacro",
  13178. height: math.unit(505, "miles"),
  13179. default: true
  13180. },
  13181. ]
  13182. ))
  13183. characterMakers.push(() => makeCharacter(
  13184. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13185. {
  13186. front: {
  13187. height: math.unit(6, "feet"),
  13188. weight: math.unit(150, "lb"),
  13189. name: "Front",
  13190. image: {
  13191. source: "./media/characters/raindrops/front.svg",
  13192. extra: 2655 / 2461,
  13193. bottom: 49 / 2705
  13194. }
  13195. },
  13196. back: {
  13197. height: math.unit(6, "feet"),
  13198. weight: math.unit(150, "lb"),
  13199. name: "Back",
  13200. image: {
  13201. source: "./media/characters/raindrops/back.svg",
  13202. extra: 2574 / 2400,
  13203. bottom: 65 / 2634
  13204. }
  13205. },
  13206. },
  13207. [
  13208. {
  13209. name: "Micro",
  13210. height: math.unit(6, "inches")
  13211. },
  13212. {
  13213. name: "Normal",
  13214. height: math.unit(6 + 2 / 12, "feet")
  13215. },
  13216. {
  13217. name: "Macro",
  13218. height: math.unit(131, "feet"),
  13219. default: true
  13220. },
  13221. {
  13222. name: "Megamacro",
  13223. height: math.unit(15, "miles")
  13224. },
  13225. {
  13226. name: "Gigamacro",
  13227. height: math.unit(4000, "miles")
  13228. },
  13229. {
  13230. name: "Teramacro",
  13231. height: math.unit(315000, "miles")
  13232. },
  13233. ]
  13234. ))
  13235. characterMakers.push(() => makeCharacter(
  13236. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13237. {
  13238. front: {
  13239. height: math.unit(2.794, "meters"),
  13240. weight: math.unit(325, "kg"),
  13241. name: "Front",
  13242. image: {
  13243. source: "./media/characters/tezwa/front.svg",
  13244. extra: 2083 / 1906,
  13245. bottom: 0.031
  13246. }
  13247. },
  13248. foot: {
  13249. height: math.unit(0.687, "meters"),
  13250. name: "Foot",
  13251. image: {
  13252. source: "./media/characters/tezwa/foot.svg"
  13253. }
  13254. },
  13255. },
  13256. [
  13257. {
  13258. name: "Normal",
  13259. height: math.unit(9 + 2 / 12, "feet"),
  13260. default: true
  13261. },
  13262. ]
  13263. ))
  13264. characterMakers.push(() => makeCharacter(
  13265. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13266. {
  13267. front: {
  13268. height: math.unit(58, "feet"),
  13269. weight: math.unit(89000, "lb"),
  13270. name: "Front",
  13271. image: {
  13272. source: "./media/characters/typhus/front.svg",
  13273. extra: 816 / 800,
  13274. bottom: 0.065
  13275. }
  13276. },
  13277. },
  13278. [
  13279. {
  13280. name: "Macro",
  13281. height: math.unit(58, "feet"),
  13282. default: true
  13283. },
  13284. ]
  13285. ))
  13286. characterMakers.push(() => makeCharacter(
  13287. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13288. {
  13289. front: {
  13290. height: math.unit(12, "feet"),
  13291. weight: math.unit(6, "tonnes"),
  13292. name: "Front",
  13293. image: {
  13294. source: "./media/characters/lyra-von-wulf/front.svg",
  13295. extra: 1,
  13296. bottom: 0.10
  13297. }
  13298. },
  13299. frontMecha: {
  13300. height: math.unit(12, "feet"),
  13301. weight: math.unit(12, "tonnes"),
  13302. name: "Front (Mecha)",
  13303. image: {
  13304. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13305. extra: 1,
  13306. bottom: 0.042
  13307. }
  13308. },
  13309. maw: {
  13310. height: math.unit(2.2, "feet"),
  13311. name: "Maw",
  13312. image: {
  13313. source: "./media/characters/lyra-von-wulf/maw.svg"
  13314. }
  13315. },
  13316. },
  13317. [
  13318. {
  13319. name: "Normal",
  13320. height: math.unit(12, "feet"),
  13321. default: true
  13322. },
  13323. {
  13324. name: "Classic",
  13325. height: math.unit(50, "feet")
  13326. },
  13327. {
  13328. name: "Macro",
  13329. height: math.unit(500, "feet")
  13330. },
  13331. {
  13332. name: "Megamacro",
  13333. height: math.unit(1, "mile")
  13334. },
  13335. {
  13336. name: "Gigamacro",
  13337. height: math.unit(400, "miles")
  13338. },
  13339. {
  13340. name: "Teramacro",
  13341. height: math.unit(22000, "miles")
  13342. },
  13343. {
  13344. name: "Solarmacro",
  13345. height: math.unit(8600000, "miles")
  13346. },
  13347. {
  13348. name: "Galactic",
  13349. height: math.unit(1057000, "lightyears")
  13350. },
  13351. ]
  13352. ))
  13353. characterMakers.push(() => makeCharacter(
  13354. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13355. {
  13356. front: {
  13357. height: math.unit(6 + 10 / 12, "feet"),
  13358. weight: math.unit(150, "lb"),
  13359. name: "Front",
  13360. image: {
  13361. source: "./media/characters/dixon/front.svg",
  13362. extra: 3361 / 3209,
  13363. bottom: 0.01
  13364. }
  13365. },
  13366. },
  13367. [
  13368. {
  13369. name: "Normal",
  13370. height: math.unit(6 + 10 / 12, "feet"),
  13371. default: true
  13372. },
  13373. {
  13374. name: "Big",
  13375. height: math.unit(12, "meters")
  13376. },
  13377. {
  13378. name: "Macro",
  13379. height: math.unit(500, "meters")
  13380. },
  13381. {
  13382. name: "Megamacro",
  13383. height: math.unit(2, "km")
  13384. },
  13385. ]
  13386. ))
  13387. characterMakers.push(() => makeCharacter(
  13388. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13389. {
  13390. front: {
  13391. height: math.unit(185, "cm"),
  13392. weight: math.unit(68, "kg"),
  13393. name: "Front",
  13394. image: {
  13395. source: "./media/characters/kauko/front.svg",
  13396. extra: 1455 / 1421,
  13397. bottom: 0.03
  13398. }
  13399. },
  13400. back: {
  13401. height: math.unit(185, "cm"),
  13402. weight: math.unit(68, "kg"),
  13403. name: "Back",
  13404. image: {
  13405. source: "./media/characters/kauko/back.svg",
  13406. extra: 1455 / 1421,
  13407. bottom: 0.004
  13408. }
  13409. },
  13410. },
  13411. [
  13412. {
  13413. name: "Normal",
  13414. height: math.unit(185, "cm"),
  13415. default: true
  13416. },
  13417. ]
  13418. ))
  13419. characterMakers.push(() => makeCharacter(
  13420. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13421. {
  13422. front: {
  13423. height: math.unit(6, "feet"),
  13424. weight: math.unit(150, "kg"),
  13425. name: "Front",
  13426. image: {
  13427. source: "./media/characters/varg/front.svg",
  13428. extra: 1108 / 1018,
  13429. bottom: 0.0375
  13430. }
  13431. },
  13432. },
  13433. [
  13434. {
  13435. name: "Normal",
  13436. height: math.unit(5, "meters")
  13437. },
  13438. {
  13439. name: "Macro",
  13440. height: math.unit(200, "meters")
  13441. },
  13442. {
  13443. name: "Megamacro",
  13444. height: math.unit(20, "kilometers")
  13445. },
  13446. {
  13447. name: "True Size",
  13448. height: math.unit(211, "km"),
  13449. default: true
  13450. },
  13451. {
  13452. name: "Gigamacro",
  13453. height: math.unit(1000, "km")
  13454. },
  13455. {
  13456. name: "Gigamacro+",
  13457. height: math.unit(8000, "km")
  13458. },
  13459. {
  13460. name: "Teramacro",
  13461. height: math.unit(1000000, "km")
  13462. },
  13463. ]
  13464. ))
  13465. characterMakers.push(() => makeCharacter(
  13466. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13467. {
  13468. front: {
  13469. height: math.unit(7 + 7 / 12, "feet"),
  13470. weight: math.unit(267, "lb"),
  13471. name: "Front",
  13472. image: {
  13473. source: "./media/characters/dayza/front.svg",
  13474. extra: 1262 / 1200,
  13475. bottom: 0.035
  13476. }
  13477. },
  13478. side: {
  13479. height: math.unit(7 + 7 / 12, "feet"),
  13480. weight: math.unit(267, "lb"),
  13481. name: "Side",
  13482. image: {
  13483. source: "./media/characters/dayza/side.svg",
  13484. extra: 1295 / 1245,
  13485. bottom: 0.05
  13486. }
  13487. },
  13488. back: {
  13489. height: math.unit(7 + 7 / 12, "feet"),
  13490. weight: math.unit(267, "lb"),
  13491. name: "Back",
  13492. image: {
  13493. source: "./media/characters/dayza/back.svg",
  13494. extra: 1241 / 1170
  13495. }
  13496. },
  13497. },
  13498. [
  13499. {
  13500. name: "Normal",
  13501. height: math.unit(7 + 7 / 12, "feet"),
  13502. default: true
  13503. },
  13504. {
  13505. name: "Macro",
  13506. height: math.unit(155, "feet")
  13507. },
  13508. ]
  13509. ))
  13510. characterMakers.push(() => makeCharacter(
  13511. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13512. {
  13513. front: {
  13514. height: math.unit(6 + 5 / 12, "feet"),
  13515. weight: math.unit(160, "lb"),
  13516. name: "Front",
  13517. image: {
  13518. source: "./media/characters/xanthos/front.svg",
  13519. extra: 1,
  13520. bottom: 0.04
  13521. }
  13522. },
  13523. back: {
  13524. height: math.unit(6 + 5 / 12, "feet"),
  13525. weight: math.unit(160, "lb"),
  13526. name: "Back",
  13527. image: {
  13528. source: "./media/characters/xanthos/back.svg",
  13529. extra: 1,
  13530. bottom: 0.03
  13531. }
  13532. },
  13533. hand: {
  13534. height: math.unit(0.928, "feet"),
  13535. name: "Hand",
  13536. image: {
  13537. source: "./media/characters/xanthos/hand.svg"
  13538. }
  13539. },
  13540. foot: {
  13541. height: math.unit(1.286, "feet"),
  13542. name: "Foot",
  13543. image: {
  13544. source: "./media/characters/xanthos/foot.svg"
  13545. }
  13546. },
  13547. },
  13548. [
  13549. {
  13550. name: "Normal",
  13551. height: math.unit(6 + 5 / 12, "feet"),
  13552. default: true
  13553. },
  13554. {
  13555. name: "Normal+",
  13556. height: math.unit(6, "meters")
  13557. },
  13558. {
  13559. name: "Macro",
  13560. height: math.unit(40, "feet")
  13561. },
  13562. {
  13563. name: "Macro+",
  13564. height: math.unit(200, "meters")
  13565. },
  13566. {
  13567. name: "Megamacro",
  13568. height: math.unit(20, "km")
  13569. },
  13570. {
  13571. name: "Megamacro+",
  13572. height: math.unit(100, "km")
  13573. },
  13574. {
  13575. name: "Gigamacro",
  13576. height: math.unit(200, "megameters")
  13577. },
  13578. {
  13579. name: "Gigamacro+",
  13580. height: math.unit(1.5, "gigameters")
  13581. },
  13582. ]
  13583. ))
  13584. characterMakers.push(() => makeCharacter(
  13585. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13586. {
  13587. front: {
  13588. height: math.unit(6 + 3 / 12, "feet"),
  13589. weight: math.unit(215, "lb"),
  13590. name: "Front",
  13591. image: {
  13592. source: "./media/characters/grynn/front.svg",
  13593. extra: 4627 / 4209,
  13594. bottom: 0.047
  13595. }
  13596. },
  13597. },
  13598. [
  13599. {
  13600. name: "Micro",
  13601. height: math.unit(6, "inches")
  13602. },
  13603. {
  13604. name: "Normal",
  13605. height: math.unit(6 + 3 / 12, "feet"),
  13606. default: true
  13607. },
  13608. {
  13609. name: "Big",
  13610. height: math.unit(104, "feet")
  13611. },
  13612. {
  13613. name: "Macro",
  13614. height: math.unit(944, "feet")
  13615. },
  13616. {
  13617. name: "Macro+",
  13618. height: math.unit(9480, "feet")
  13619. },
  13620. {
  13621. name: "Megamacro",
  13622. height: math.unit(78752, "feet")
  13623. },
  13624. {
  13625. name: "Megamacro+",
  13626. height: math.unit(630128, "feet")
  13627. },
  13628. {
  13629. name: "Megamacro++",
  13630. height: math.unit(3150695, "feet")
  13631. },
  13632. ]
  13633. ))
  13634. characterMakers.push(() => makeCharacter(
  13635. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13636. {
  13637. front: {
  13638. height: math.unit(7 + 5 / 12, "feet"),
  13639. weight: math.unit(450, "lb"),
  13640. name: "Front",
  13641. image: {
  13642. source: "./media/characters/mocha-aura/front.svg",
  13643. extra: 1907 / 1817,
  13644. bottom: 0.04
  13645. }
  13646. },
  13647. back: {
  13648. height: math.unit(7 + 5 / 12, "feet"),
  13649. weight: math.unit(450, "lb"),
  13650. name: "Back",
  13651. image: {
  13652. source: "./media/characters/mocha-aura/back.svg",
  13653. extra: 1900 / 1825,
  13654. bottom: 0.045
  13655. }
  13656. },
  13657. },
  13658. [
  13659. {
  13660. name: "Nano",
  13661. height: math.unit(1, "nm")
  13662. },
  13663. {
  13664. name: "Megamicro",
  13665. height: math.unit(1, "mm")
  13666. },
  13667. {
  13668. name: "Micro",
  13669. height: math.unit(3, "inches")
  13670. },
  13671. {
  13672. name: "Normal",
  13673. height: math.unit(7 + 5 / 12, "feet"),
  13674. default: true
  13675. },
  13676. {
  13677. name: "Macro",
  13678. height: math.unit(30, "feet")
  13679. },
  13680. {
  13681. name: "Megamacro",
  13682. height: math.unit(3500, "feet")
  13683. },
  13684. {
  13685. name: "Teramacro",
  13686. height: math.unit(500000, "miles")
  13687. },
  13688. {
  13689. name: "Petamacro",
  13690. height: math.unit(50000000000000000, "parsecs")
  13691. },
  13692. ]
  13693. ))
  13694. characterMakers.push(() => makeCharacter(
  13695. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13696. {
  13697. front: {
  13698. height: math.unit(6, "feet"),
  13699. weight: math.unit(150, "lb"),
  13700. name: "Front",
  13701. image: {
  13702. source: "./media/characters/ilisha-devya/front.svg",
  13703. extra: 1053/1049,
  13704. bottom: 270/1323
  13705. }
  13706. },
  13707. back: {
  13708. height: math.unit(6, "feet"),
  13709. weight: math.unit(150, "lb"),
  13710. name: "Back",
  13711. image: {
  13712. source: "./media/characters/ilisha-devya/back.svg",
  13713. extra: 1131/1128,
  13714. bottom: 39/1170
  13715. }
  13716. },
  13717. },
  13718. [
  13719. {
  13720. name: "Macro",
  13721. height: math.unit(500, "feet"),
  13722. default: true
  13723. },
  13724. {
  13725. name: "Megamacro",
  13726. height: math.unit(10, "miles")
  13727. },
  13728. {
  13729. name: "Gigamacro",
  13730. height: math.unit(100000, "miles")
  13731. },
  13732. {
  13733. name: "Examacro",
  13734. height: math.unit(1e9, "lightyears")
  13735. },
  13736. {
  13737. name: "Omniversal",
  13738. height: math.unit(1e33, "lightyears")
  13739. },
  13740. {
  13741. name: "Beyond Infinite",
  13742. height: math.unit(1e100, "lightyears")
  13743. },
  13744. ]
  13745. ))
  13746. characterMakers.push(() => makeCharacter(
  13747. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13748. {
  13749. Side: {
  13750. height: math.unit(6, "feet"),
  13751. weight: math.unit(150, "lb"),
  13752. name: "Side",
  13753. image: {
  13754. source: "./media/characters/mira/side.svg",
  13755. extra: 900 / 799,
  13756. bottom: 0.02
  13757. }
  13758. },
  13759. },
  13760. [
  13761. {
  13762. name: "Human Size",
  13763. height: math.unit(6, "feet")
  13764. },
  13765. {
  13766. name: "Macro",
  13767. height: math.unit(100, "feet"),
  13768. default: true
  13769. },
  13770. {
  13771. name: "Megamacro",
  13772. height: math.unit(10, "miles")
  13773. },
  13774. {
  13775. name: "Gigamacro",
  13776. height: math.unit(25000, "miles")
  13777. },
  13778. {
  13779. name: "Teramacro",
  13780. height: math.unit(300, "AU")
  13781. },
  13782. {
  13783. name: "Full Size",
  13784. height: math.unit(4.5e10, "lightyears")
  13785. },
  13786. ]
  13787. ))
  13788. characterMakers.push(() => makeCharacter(
  13789. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13790. {
  13791. front: {
  13792. height: math.unit(6, "feet"),
  13793. weight: math.unit(150, "lb"),
  13794. name: "Front",
  13795. image: {
  13796. source: "./media/characters/holly/front.svg",
  13797. extra: 639 / 606
  13798. }
  13799. },
  13800. back: {
  13801. height: math.unit(6, "feet"),
  13802. weight: math.unit(150, "lb"),
  13803. name: "Back",
  13804. image: {
  13805. source: "./media/characters/holly/back.svg",
  13806. extra: 623 / 598
  13807. }
  13808. },
  13809. frontWorking: {
  13810. height: math.unit(6, "feet"),
  13811. weight: math.unit(150, "lb"),
  13812. name: "Front (Working)",
  13813. image: {
  13814. source: "./media/characters/holly/front-working.svg",
  13815. extra: 607 / 577,
  13816. bottom: 0.048
  13817. }
  13818. },
  13819. },
  13820. [
  13821. {
  13822. name: "Normal",
  13823. height: math.unit(12 + 3 / 12, "feet"),
  13824. default: true
  13825. },
  13826. ]
  13827. ))
  13828. characterMakers.push(() => makeCharacter(
  13829. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13830. {
  13831. front: {
  13832. height: math.unit(6, "feet"),
  13833. weight: math.unit(150, "lb"),
  13834. name: "Front",
  13835. image: {
  13836. source: "./media/characters/porter/front.svg",
  13837. extra: 1,
  13838. bottom: 0.01
  13839. }
  13840. },
  13841. frontRobes: {
  13842. height: math.unit(6, "feet"),
  13843. weight: math.unit(150, "lb"),
  13844. name: "Front (Robes)",
  13845. image: {
  13846. source: "./media/characters/porter/front-robes.svg",
  13847. extra: 1.01,
  13848. bottom: 0.01
  13849. }
  13850. },
  13851. },
  13852. [
  13853. {
  13854. name: "Normal",
  13855. height: math.unit(11 + 9 / 12, "feet"),
  13856. default: true
  13857. },
  13858. ]
  13859. ))
  13860. characterMakers.push(() => makeCharacter(
  13861. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13862. {
  13863. legendary: {
  13864. height: math.unit(6, "feet"),
  13865. weight: math.unit(150, "lb"),
  13866. name: "Legendary",
  13867. image: {
  13868. source: "./media/characters/lucy/legendary.svg",
  13869. extra: 1355 / 1100,
  13870. bottom: 0.045
  13871. }
  13872. },
  13873. },
  13874. [
  13875. {
  13876. name: "Legendary",
  13877. height: math.unit(86882 * 2, "miles"),
  13878. default: true
  13879. },
  13880. ]
  13881. ))
  13882. characterMakers.push(() => makeCharacter(
  13883. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13884. {
  13885. front: {
  13886. height: math.unit(6, "feet"),
  13887. weight: math.unit(150, "lb"),
  13888. name: "Front",
  13889. image: {
  13890. source: "./media/characters/drusilla/front.svg",
  13891. extra: 678 / 635,
  13892. bottom: 0.03
  13893. }
  13894. },
  13895. back: {
  13896. height: math.unit(6, "feet"),
  13897. weight: math.unit(150, "lb"),
  13898. name: "Back",
  13899. image: {
  13900. source: "./media/characters/drusilla/back.svg",
  13901. extra: 678 / 635,
  13902. bottom: 0.005
  13903. }
  13904. },
  13905. },
  13906. [
  13907. {
  13908. name: "Macro",
  13909. height: math.unit(100, "feet")
  13910. },
  13911. {
  13912. name: "Canon Height",
  13913. height: math.unit(2000, "feet"),
  13914. default: true
  13915. },
  13916. ]
  13917. ))
  13918. characterMakers.push(() => makeCharacter(
  13919. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13920. {
  13921. front: {
  13922. height: math.unit(6, "feet"),
  13923. weight: math.unit(180, "lb"),
  13924. name: "Front",
  13925. image: {
  13926. source: "./media/characters/renard-thatch/front.svg",
  13927. extra: 2411 / 2275,
  13928. bottom: 0.01
  13929. }
  13930. },
  13931. frontPosing: {
  13932. height: math.unit(6, "feet"),
  13933. weight: math.unit(180, "lb"),
  13934. name: "Front (Posing)",
  13935. image: {
  13936. source: "./media/characters/renard-thatch/front-posing.svg",
  13937. extra: 2381 / 2261,
  13938. bottom: 0.01
  13939. }
  13940. },
  13941. back: {
  13942. height: math.unit(6, "feet"),
  13943. weight: math.unit(180, "lb"),
  13944. name: "Back",
  13945. image: {
  13946. source: "./media/characters/renard-thatch/back.svg",
  13947. extra: 2428 / 2288
  13948. }
  13949. },
  13950. },
  13951. [
  13952. {
  13953. name: "Micro",
  13954. height: math.unit(3, "inches")
  13955. },
  13956. {
  13957. name: "Default",
  13958. height: math.unit(6, "feet"),
  13959. default: true
  13960. },
  13961. {
  13962. name: "Macro",
  13963. height: math.unit(75, "feet")
  13964. },
  13965. ]
  13966. ))
  13967. characterMakers.push(() => makeCharacter(
  13968. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13969. {
  13970. front: {
  13971. height: math.unit(1450, "feet"),
  13972. weight: math.unit(1.21e6, "tons"),
  13973. name: "Front",
  13974. image: {
  13975. source: "./media/characters/sekvra/front.svg",
  13976. extra: 1193/1190,
  13977. bottom: 78/1271
  13978. }
  13979. },
  13980. side: {
  13981. height: math.unit(1450, "feet"),
  13982. weight: math.unit(1.21e6, "tons"),
  13983. name: "Side",
  13984. image: {
  13985. source: "./media/characters/sekvra/side.svg",
  13986. extra: 1193/1190,
  13987. bottom: 52/1245
  13988. }
  13989. },
  13990. back: {
  13991. height: math.unit(1450, "feet"),
  13992. weight: math.unit(1.21e6, "tons"),
  13993. name: "Back",
  13994. image: {
  13995. source: "./media/characters/sekvra/back.svg",
  13996. extra: 1219/1216,
  13997. bottom: 21/1240
  13998. }
  13999. },
  14000. frontClothed: {
  14001. height: math.unit(1450, "feet"),
  14002. weight: math.unit(1.21e6, "tons"),
  14003. name: "Front (Clothed)",
  14004. image: {
  14005. source: "./media/characters/sekvra/front-clothed.svg",
  14006. extra: 1192/1189,
  14007. bottom: 79/1271
  14008. }
  14009. },
  14010. },
  14011. [
  14012. {
  14013. name: "Macro",
  14014. height: math.unit(1450, "feet"),
  14015. default: true
  14016. },
  14017. {
  14018. name: "Megamacro",
  14019. height: math.unit(15000, "feet")
  14020. },
  14021. ]
  14022. ))
  14023. characterMakers.push(() => makeCharacter(
  14024. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14025. {
  14026. front: {
  14027. height: math.unit(6, "feet"),
  14028. weight: math.unit(150, "lb"),
  14029. name: "Front",
  14030. image: {
  14031. source: "./media/characters/carmine/front.svg",
  14032. extra: 1,
  14033. bottom: 0.035
  14034. }
  14035. },
  14036. frontArmor: {
  14037. height: math.unit(6, "feet"),
  14038. weight: math.unit(150, "lb"),
  14039. name: "Front (Armor)",
  14040. image: {
  14041. source: "./media/characters/carmine/front-armor.svg",
  14042. extra: 1,
  14043. bottom: 0.035
  14044. }
  14045. },
  14046. },
  14047. [
  14048. {
  14049. name: "Large",
  14050. height: math.unit(1, "mile")
  14051. },
  14052. {
  14053. name: "Huge",
  14054. height: math.unit(40, "miles"),
  14055. default: true
  14056. },
  14057. {
  14058. name: "Colossal",
  14059. height: math.unit(2500, "miles")
  14060. },
  14061. ]
  14062. ))
  14063. characterMakers.push(() => makeCharacter(
  14064. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14065. {
  14066. front: {
  14067. height: math.unit(6, "feet"),
  14068. weight: math.unit(150, "lb"),
  14069. name: "Front",
  14070. image: {
  14071. source: "./media/characters/elyssia/front.svg",
  14072. extra: 2201 / 2035,
  14073. bottom: 0.05
  14074. }
  14075. },
  14076. frontClothed: {
  14077. height: math.unit(6, "feet"),
  14078. weight: math.unit(150, "lb"),
  14079. name: "Front (Clothed)",
  14080. image: {
  14081. source: "./media/characters/elyssia/front-clothed.svg",
  14082. extra: 2201 / 2035,
  14083. bottom: 0.05
  14084. }
  14085. },
  14086. back: {
  14087. height: math.unit(6, "feet"),
  14088. weight: math.unit(150, "lb"),
  14089. name: "Back",
  14090. image: {
  14091. source: "./media/characters/elyssia/back.svg",
  14092. extra: 2201 / 2035,
  14093. bottom: 0.013
  14094. }
  14095. },
  14096. },
  14097. [
  14098. {
  14099. name: "Smaller",
  14100. height: math.unit(150, "feet")
  14101. },
  14102. {
  14103. name: "Standard",
  14104. height: math.unit(1400, "feet"),
  14105. default: true
  14106. },
  14107. {
  14108. name: "Distracted",
  14109. height: math.unit(15000, "feet")
  14110. },
  14111. ]
  14112. ))
  14113. characterMakers.push(() => makeCharacter(
  14114. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14115. {
  14116. front: {
  14117. height: math.unit(7 + 4/12, "feet"),
  14118. weight: math.unit(690, "lb"),
  14119. name: "Front",
  14120. image: {
  14121. source: "./media/characters/geno-maxwell/front.svg",
  14122. extra: 984/856,
  14123. bottom: 87/1071
  14124. }
  14125. },
  14126. back: {
  14127. height: math.unit(7 + 4/12, "feet"),
  14128. weight: math.unit(690, "lb"),
  14129. name: "Back",
  14130. image: {
  14131. source: "./media/characters/geno-maxwell/back.svg",
  14132. extra: 981/854,
  14133. bottom: 57/1038
  14134. }
  14135. },
  14136. frontCostume: {
  14137. height: math.unit(7 + 4/12, "feet"),
  14138. weight: math.unit(690, "lb"),
  14139. name: "Front (Costume)",
  14140. image: {
  14141. source: "./media/characters/geno-maxwell/front-costume.svg",
  14142. extra: 984/856,
  14143. bottom: 87/1071
  14144. }
  14145. },
  14146. backcostume: {
  14147. height: math.unit(7 + 4/12, "feet"),
  14148. weight: math.unit(690, "lb"),
  14149. name: "Back (Costume)",
  14150. image: {
  14151. source: "./media/characters/geno-maxwell/back-costume.svg",
  14152. extra: 981/854,
  14153. bottom: 57/1038
  14154. }
  14155. },
  14156. },
  14157. [
  14158. {
  14159. name: "Micro",
  14160. height: math.unit(3, "inches")
  14161. },
  14162. {
  14163. name: "Normal",
  14164. height: math.unit(7 + 4 / 12, "feet"),
  14165. default: true
  14166. },
  14167. {
  14168. name: "Macro",
  14169. height: math.unit(220, "feet")
  14170. },
  14171. {
  14172. name: "Megamacro",
  14173. height: math.unit(11, "miles")
  14174. },
  14175. ]
  14176. ))
  14177. characterMakers.push(() => makeCharacter(
  14178. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14179. {
  14180. front: {
  14181. height: math.unit(7 + 4/12, "feet"),
  14182. weight: math.unit(750, "lb"),
  14183. name: "Front",
  14184. image: {
  14185. source: "./media/characters/regena-maxwell/front.svg",
  14186. extra: 984/856,
  14187. bottom: 87/1071
  14188. }
  14189. },
  14190. back: {
  14191. height: math.unit(7 + 4/12, "feet"),
  14192. weight: math.unit(750, "lb"),
  14193. name: "Back",
  14194. image: {
  14195. source: "./media/characters/regena-maxwell/back.svg",
  14196. extra: 981/854,
  14197. bottom: 57/1038
  14198. }
  14199. },
  14200. frontCostume: {
  14201. height: math.unit(7 + 4/12, "feet"),
  14202. weight: math.unit(750, "lb"),
  14203. name: "Front (Costume)",
  14204. image: {
  14205. source: "./media/characters/regena-maxwell/front-costume.svg",
  14206. extra: 984/856,
  14207. bottom: 87/1071
  14208. }
  14209. },
  14210. backcostume: {
  14211. height: math.unit(7 + 4/12, "feet"),
  14212. weight: math.unit(750, "lb"),
  14213. name: "Back (Costume)",
  14214. image: {
  14215. source: "./media/characters/regena-maxwell/back-costume.svg",
  14216. extra: 981/854,
  14217. bottom: 57/1038
  14218. }
  14219. },
  14220. },
  14221. [
  14222. {
  14223. name: "Normal",
  14224. height: math.unit(7 + 4 / 12, "feet"),
  14225. default: true
  14226. },
  14227. {
  14228. name: "Macro",
  14229. height: math.unit(220, "feet")
  14230. },
  14231. {
  14232. name: "Megamacro",
  14233. height: math.unit(11, "miles")
  14234. },
  14235. ]
  14236. ))
  14237. characterMakers.push(() => makeCharacter(
  14238. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14239. {
  14240. front: {
  14241. height: math.unit(6, "feet"),
  14242. weight: math.unit(150, "lb"),
  14243. name: "Front",
  14244. image: {
  14245. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14246. extra: 860 / 690,
  14247. bottom: 0.03
  14248. }
  14249. },
  14250. },
  14251. [
  14252. {
  14253. name: "Normal",
  14254. height: math.unit(1.7, "meters"),
  14255. default: true
  14256. },
  14257. ]
  14258. ))
  14259. characterMakers.push(() => makeCharacter(
  14260. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14261. {
  14262. front: {
  14263. height: math.unit(6, "feet"),
  14264. weight: math.unit(150, "lb"),
  14265. name: "Front",
  14266. image: {
  14267. source: "./media/characters/quilly/front.svg",
  14268. extra: 890 / 776
  14269. }
  14270. },
  14271. },
  14272. [
  14273. {
  14274. name: "Gigamacro",
  14275. height: math.unit(404090, "miles"),
  14276. default: true
  14277. },
  14278. ]
  14279. ))
  14280. characterMakers.push(() => makeCharacter(
  14281. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14282. {
  14283. front: {
  14284. height: math.unit(7 + 8 / 12, "feet"),
  14285. weight: math.unit(350, "lb"),
  14286. name: "Front",
  14287. image: {
  14288. source: "./media/characters/tempest/front.svg",
  14289. extra: 1175 / 1086,
  14290. bottom: 0.02
  14291. }
  14292. },
  14293. },
  14294. [
  14295. {
  14296. name: "Normal",
  14297. height: math.unit(7 + 8 / 12, "feet"),
  14298. default: true
  14299. },
  14300. ]
  14301. ))
  14302. characterMakers.push(() => makeCharacter(
  14303. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14304. {
  14305. side: {
  14306. height: math.unit(4 + 5 / 12, "feet"),
  14307. weight: math.unit(80, "lb"),
  14308. name: "Side",
  14309. image: {
  14310. source: "./media/characters/rodger/side.svg",
  14311. extra: 1235 / 1118
  14312. }
  14313. },
  14314. },
  14315. [
  14316. {
  14317. name: "Micro",
  14318. height: math.unit(1, "inch")
  14319. },
  14320. {
  14321. name: "Normal",
  14322. height: math.unit(4 + 5 / 12, "feet"),
  14323. default: true
  14324. },
  14325. {
  14326. name: "Macro",
  14327. height: math.unit(120, "feet")
  14328. },
  14329. ]
  14330. ))
  14331. characterMakers.push(() => makeCharacter(
  14332. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14333. {
  14334. front: {
  14335. height: math.unit(6, "feet"),
  14336. weight: math.unit(150, "lb"),
  14337. name: "Front",
  14338. image: {
  14339. source: "./media/characters/danyel/front.svg",
  14340. extra: 1185 / 1123,
  14341. bottom: 0.05
  14342. }
  14343. },
  14344. },
  14345. [
  14346. {
  14347. name: "Shrunken",
  14348. height: math.unit(0.5, "mm")
  14349. },
  14350. {
  14351. name: "Micro",
  14352. height: math.unit(1, "mm"),
  14353. default: true
  14354. },
  14355. {
  14356. name: "Upsized",
  14357. height: math.unit(5 + 5 / 12, "feet")
  14358. },
  14359. ]
  14360. ))
  14361. characterMakers.push(() => makeCharacter(
  14362. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14363. {
  14364. front: {
  14365. height: math.unit(5 + 6 / 12, "feet"),
  14366. weight: math.unit(200, "lb"),
  14367. name: "Front",
  14368. image: {
  14369. source: "./media/characters/vivian-bijoux/front.svg",
  14370. extra: 1217/1209,
  14371. bottom: 76/1293
  14372. }
  14373. },
  14374. back: {
  14375. height: math.unit(5 + 6 / 12, "feet"),
  14376. weight: math.unit(200, "lb"),
  14377. name: "Back",
  14378. image: {
  14379. source: "./media/characters/vivian-bijoux/back.svg",
  14380. extra: 1214/1208,
  14381. bottom: 51/1265
  14382. }
  14383. },
  14384. dressed: {
  14385. height: math.unit(5 + 6 / 12, "feet"),
  14386. weight: math.unit(200, "lb"),
  14387. name: "Dressed",
  14388. image: {
  14389. source: "./media/characters/vivian-bijoux/dressed.svg",
  14390. extra: 1217/1209,
  14391. bottom: 76/1293
  14392. }
  14393. },
  14394. },
  14395. [
  14396. {
  14397. name: "Normal",
  14398. height: math.unit(5 + 6 / 12, "feet"),
  14399. default: true
  14400. },
  14401. {
  14402. name: "Bad Dream",
  14403. height: math.unit(500, "feet")
  14404. },
  14405. {
  14406. name: "Nightmare",
  14407. height: math.unit(500, "miles")
  14408. },
  14409. ]
  14410. ))
  14411. characterMakers.push(() => makeCharacter(
  14412. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14413. {
  14414. front: {
  14415. height: math.unit(6 + 1 / 12, "feet"),
  14416. weight: math.unit(260, "lb"),
  14417. name: "Front",
  14418. image: {
  14419. source: "./media/characters/zeta/front.svg",
  14420. extra: 1968 / 1889,
  14421. bottom: 0.06
  14422. }
  14423. },
  14424. back: {
  14425. height: math.unit(6 + 1 / 12, "feet"),
  14426. weight: math.unit(260, "lb"),
  14427. name: "Back",
  14428. image: {
  14429. source: "./media/characters/zeta/back.svg",
  14430. extra: 1944 / 1858,
  14431. bottom: 0.03
  14432. }
  14433. },
  14434. hand: {
  14435. height: math.unit(1.112, "feet"),
  14436. name: "Hand",
  14437. image: {
  14438. source: "./media/characters/zeta/hand.svg"
  14439. }
  14440. },
  14441. foot: {
  14442. height: math.unit(1.48, "feet"),
  14443. name: "Foot",
  14444. image: {
  14445. source: "./media/characters/zeta/foot.svg"
  14446. }
  14447. },
  14448. },
  14449. [
  14450. {
  14451. name: "Micro",
  14452. height: math.unit(6, "inches")
  14453. },
  14454. {
  14455. name: "Normal",
  14456. height: math.unit(6 + 1 / 12, "feet"),
  14457. default: true
  14458. },
  14459. {
  14460. name: "Macro",
  14461. height: math.unit(20, "feet")
  14462. },
  14463. ]
  14464. ))
  14465. characterMakers.push(() => makeCharacter(
  14466. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14467. {
  14468. front: {
  14469. height: math.unit(6, "feet"),
  14470. weight: math.unit(150, "lb"),
  14471. name: "Front",
  14472. image: {
  14473. source: "./media/characters/jamie-larsen/front.svg",
  14474. extra: 962 / 933,
  14475. bottom: 0.02
  14476. }
  14477. },
  14478. back: {
  14479. height: math.unit(6, "feet"),
  14480. weight: math.unit(150, "lb"),
  14481. name: "Back",
  14482. image: {
  14483. source: "./media/characters/jamie-larsen/back.svg",
  14484. extra: 997 / 946
  14485. }
  14486. },
  14487. },
  14488. [
  14489. {
  14490. name: "Macro",
  14491. height: math.unit(28 + 7 / 12, "feet"),
  14492. default: true
  14493. },
  14494. {
  14495. name: "Macro+",
  14496. height: math.unit(180, "feet")
  14497. },
  14498. {
  14499. name: "Megamacro",
  14500. height: math.unit(10, "miles")
  14501. },
  14502. {
  14503. name: "Gigamacro",
  14504. height: math.unit(200000, "miles")
  14505. },
  14506. ]
  14507. ))
  14508. characterMakers.push(() => makeCharacter(
  14509. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14510. {
  14511. front: {
  14512. height: math.unit(6, "feet"),
  14513. weight: math.unit(120, "lb"),
  14514. name: "Front",
  14515. image: {
  14516. source: "./media/characters/vance/front.svg",
  14517. extra: 1980 / 1890,
  14518. bottom: 0.09
  14519. }
  14520. },
  14521. back: {
  14522. height: math.unit(6, "feet"),
  14523. weight: math.unit(120, "lb"),
  14524. name: "Back",
  14525. image: {
  14526. source: "./media/characters/vance/back.svg",
  14527. extra: 2081 / 1994,
  14528. bottom: 0.014
  14529. }
  14530. },
  14531. hand: {
  14532. height: math.unit(0.88, "feet"),
  14533. name: "Hand",
  14534. image: {
  14535. source: "./media/characters/vance/hand.svg"
  14536. }
  14537. },
  14538. foot: {
  14539. height: math.unit(0.64, "feet"),
  14540. name: "Foot",
  14541. image: {
  14542. source: "./media/characters/vance/foot.svg"
  14543. }
  14544. },
  14545. },
  14546. [
  14547. {
  14548. name: "Small",
  14549. height: math.unit(90, "feet"),
  14550. default: true
  14551. },
  14552. {
  14553. name: "Macro",
  14554. height: math.unit(100, "meters")
  14555. },
  14556. {
  14557. name: "Megamacro",
  14558. height: math.unit(15, "miles")
  14559. },
  14560. ]
  14561. ))
  14562. characterMakers.push(() => makeCharacter(
  14563. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14564. {
  14565. front: {
  14566. height: math.unit(6, "feet"),
  14567. weight: math.unit(180, "lb"),
  14568. name: "Front",
  14569. image: {
  14570. source: "./media/characters/xochitl/front.svg",
  14571. extra: 2297 / 2261,
  14572. bottom: 0.065
  14573. }
  14574. },
  14575. back: {
  14576. height: math.unit(6, "feet"),
  14577. weight: math.unit(180, "lb"),
  14578. name: "Back",
  14579. image: {
  14580. source: "./media/characters/xochitl/back.svg",
  14581. extra: 2386 / 2354,
  14582. bottom: 0.01
  14583. }
  14584. },
  14585. foot: {
  14586. height: math.unit(6 / 5 * 1.15, "feet"),
  14587. weight: math.unit(150, "lb"),
  14588. name: "Foot",
  14589. image: {
  14590. source: "./media/characters/xochitl/foot.svg"
  14591. }
  14592. },
  14593. },
  14594. [
  14595. {
  14596. name: "Macro",
  14597. height: math.unit(80, "feet")
  14598. },
  14599. {
  14600. name: "Macro+",
  14601. height: math.unit(400, "feet"),
  14602. default: true
  14603. },
  14604. {
  14605. name: "Gigamacro",
  14606. height: math.unit(80000, "miles")
  14607. },
  14608. {
  14609. name: "Gigamacro+",
  14610. height: math.unit(400000, "miles")
  14611. },
  14612. {
  14613. name: "Teramacro",
  14614. height: math.unit(300, "AU")
  14615. },
  14616. ]
  14617. ))
  14618. characterMakers.push(() => makeCharacter(
  14619. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14620. {
  14621. front: {
  14622. height: math.unit(6, "feet"),
  14623. weight: math.unit(150, "lb"),
  14624. name: "Front",
  14625. image: {
  14626. source: "./media/characters/vincent/front.svg",
  14627. extra: 1130 / 1080,
  14628. bottom: 0.055
  14629. }
  14630. },
  14631. beak: {
  14632. height: math.unit(6 * 0.1, "feet"),
  14633. name: "Beak",
  14634. image: {
  14635. source: "./media/characters/vincent/beak.svg"
  14636. }
  14637. },
  14638. hand: {
  14639. height: math.unit(6 * 0.85, "feet"),
  14640. weight: math.unit(150, "lb"),
  14641. name: "Hand",
  14642. image: {
  14643. source: "./media/characters/vincent/hand.svg"
  14644. }
  14645. },
  14646. foot: {
  14647. height: math.unit(6 * 0.19, "feet"),
  14648. weight: math.unit(150, "lb"),
  14649. name: "Foot",
  14650. image: {
  14651. source: "./media/characters/vincent/foot.svg"
  14652. }
  14653. },
  14654. },
  14655. [
  14656. {
  14657. name: "Base",
  14658. height: math.unit(6 + 5 / 12, "feet"),
  14659. default: true
  14660. },
  14661. {
  14662. name: "Macro",
  14663. height: math.unit(300, "feet")
  14664. },
  14665. {
  14666. name: "Megamacro",
  14667. height: math.unit(2, "miles")
  14668. },
  14669. {
  14670. name: "Gigamacro",
  14671. height: math.unit(1000, "miles")
  14672. },
  14673. ]
  14674. ))
  14675. characterMakers.push(() => makeCharacter(
  14676. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14677. {
  14678. front: {
  14679. height: math.unit(2, "meters"),
  14680. weight: math.unit(500, "kg"),
  14681. name: "Front",
  14682. image: {
  14683. source: "./media/characters/coatl/front.svg",
  14684. extra: 3948 / 3500,
  14685. bottom: 0.082
  14686. }
  14687. },
  14688. },
  14689. [
  14690. {
  14691. name: "Normal",
  14692. height: math.unit(4, "meters")
  14693. },
  14694. {
  14695. name: "Macro",
  14696. height: math.unit(100, "meters"),
  14697. default: true
  14698. },
  14699. {
  14700. name: "Macro+",
  14701. height: math.unit(300, "meters")
  14702. },
  14703. {
  14704. name: "Megamacro",
  14705. height: math.unit(3, "gigameters")
  14706. },
  14707. {
  14708. name: "Megamacro+",
  14709. height: math.unit(300, "terameters")
  14710. },
  14711. {
  14712. name: "Megamacro++",
  14713. height: math.unit(3, "lightyears")
  14714. },
  14715. ]
  14716. ))
  14717. characterMakers.push(() => makeCharacter(
  14718. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14719. {
  14720. front: {
  14721. height: math.unit(6, "feet"),
  14722. weight: math.unit(50, "kg"),
  14723. name: "front",
  14724. image: {
  14725. source: "./media/characters/shiroryu/front.svg",
  14726. extra: 1990 / 1935
  14727. }
  14728. },
  14729. },
  14730. [
  14731. {
  14732. name: "Mortal Mingling",
  14733. height: math.unit(3, "meters")
  14734. },
  14735. {
  14736. name: "Kaiju-ish",
  14737. height: math.unit(250, "meters")
  14738. },
  14739. {
  14740. name: "Somewhat Godly",
  14741. height: math.unit(400, "km"),
  14742. default: true
  14743. },
  14744. {
  14745. name: "Planetary",
  14746. height: math.unit(300, "megameters")
  14747. },
  14748. {
  14749. name: "Galaxy-dwarfing",
  14750. height: math.unit(450, "kiloparsecs")
  14751. },
  14752. {
  14753. name: "Universe Eater",
  14754. height: math.unit(150, "gigaparsecs")
  14755. },
  14756. {
  14757. name: "Almost Immeasurable",
  14758. height: math.unit(1.3e266, "yottaparsecs")
  14759. },
  14760. ]
  14761. ))
  14762. characterMakers.push(() => makeCharacter(
  14763. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14764. {
  14765. front: {
  14766. height: math.unit(6, "feet"),
  14767. weight: math.unit(150, "lb"),
  14768. name: "Front",
  14769. image: {
  14770. source: "./media/characters/umeko/front.svg",
  14771. extra: 1,
  14772. bottom: 0.019
  14773. }
  14774. },
  14775. frontArmored: {
  14776. height: math.unit(6, "feet"),
  14777. weight: math.unit(150, "lb"),
  14778. name: "Front (Armored)",
  14779. image: {
  14780. source: "./media/characters/umeko/front-armored.svg",
  14781. extra: 1,
  14782. bottom: 0.021
  14783. }
  14784. },
  14785. },
  14786. [
  14787. {
  14788. name: "Macro",
  14789. height: math.unit(220, "feet"),
  14790. default: true
  14791. },
  14792. {
  14793. name: "Guardian Dragon",
  14794. height: math.unit(50, "miles")
  14795. },
  14796. {
  14797. name: "Cosmic",
  14798. height: math.unit(800000, "miles")
  14799. },
  14800. ]
  14801. ))
  14802. characterMakers.push(() => makeCharacter(
  14803. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14804. {
  14805. front: {
  14806. height: math.unit(6, "feet"),
  14807. weight: math.unit(150, "lb"),
  14808. name: "Front",
  14809. image: {
  14810. source: "./media/characters/cassidy/front.svg",
  14811. extra: 810/808,
  14812. bottom: 41/851
  14813. }
  14814. },
  14815. },
  14816. [
  14817. {
  14818. name: "Canon Height",
  14819. height: math.unit(120, "feet"),
  14820. default: true
  14821. },
  14822. {
  14823. name: "Macro+",
  14824. height: math.unit(400, "feet")
  14825. },
  14826. {
  14827. name: "Macro++",
  14828. height: math.unit(4000, "feet")
  14829. },
  14830. {
  14831. name: "Megamacro",
  14832. height: math.unit(3, "miles")
  14833. },
  14834. ]
  14835. ))
  14836. characterMakers.push(() => makeCharacter(
  14837. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14838. {
  14839. front: {
  14840. height: math.unit(6, "feet"),
  14841. weight: math.unit(150, "lb"),
  14842. name: "Front",
  14843. image: {
  14844. source: "./media/characters/isaac/front.svg",
  14845. extra: 896 / 815,
  14846. bottom: 0.11
  14847. }
  14848. },
  14849. },
  14850. [
  14851. {
  14852. name: "Human Size",
  14853. height: math.unit(8, "feet"),
  14854. default: true
  14855. },
  14856. {
  14857. name: "Macro",
  14858. height: math.unit(400, "feet")
  14859. },
  14860. {
  14861. name: "Megamacro",
  14862. height: math.unit(50, "miles")
  14863. },
  14864. {
  14865. name: "Canon Height",
  14866. height: math.unit(200, "AU")
  14867. },
  14868. ]
  14869. ))
  14870. characterMakers.push(() => makeCharacter(
  14871. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14872. {
  14873. front: {
  14874. height: math.unit(6, "feet"),
  14875. weight: math.unit(72, "kg"),
  14876. name: "Front",
  14877. image: {
  14878. source: "./media/characters/sleekit/front.svg",
  14879. extra: 4693 / 4487,
  14880. bottom: 0.012
  14881. }
  14882. },
  14883. },
  14884. [
  14885. {
  14886. name: "Minimum Height",
  14887. height: math.unit(10, "meters")
  14888. },
  14889. {
  14890. name: "Smaller",
  14891. height: math.unit(25, "meters")
  14892. },
  14893. {
  14894. name: "Larger",
  14895. height: math.unit(38, "meters"),
  14896. default: true
  14897. },
  14898. {
  14899. name: "Maximum height",
  14900. height: math.unit(100, "meters")
  14901. },
  14902. ]
  14903. ))
  14904. characterMakers.push(() => makeCharacter(
  14905. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14906. {
  14907. front: {
  14908. height: math.unit(6, "feet"),
  14909. weight: math.unit(150, "lb"),
  14910. name: "Front",
  14911. image: {
  14912. source: "./media/characters/nillia/front.svg",
  14913. extra: 2195 / 2037,
  14914. bottom: 0.005
  14915. }
  14916. },
  14917. back: {
  14918. height: math.unit(6, "feet"),
  14919. weight: math.unit(150, "lb"),
  14920. name: "Back",
  14921. image: {
  14922. source: "./media/characters/nillia/back.svg",
  14923. extra: 2195 / 2037,
  14924. bottom: 0.005
  14925. }
  14926. },
  14927. },
  14928. [
  14929. {
  14930. name: "Canon Height",
  14931. height: math.unit(489, "feet"),
  14932. default: true
  14933. }
  14934. ]
  14935. ))
  14936. characterMakers.push(() => makeCharacter(
  14937. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14938. {
  14939. front: {
  14940. height: math.unit(6, "feet"),
  14941. weight: math.unit(150, "lb"),
  14942. name: "Front",
  14943. image: {
  14944. source: "./media/characters/mesmyriza/front.svg",
  14945. extra: 2067 / 1784,
  14946. bottom: 0.035
  14947. }
  14948. },
  14949. foot: {
  14950. height: math.unit(6 / (250 / 35), "feet"),
  14951. name: "Foot",
  14952. image: {
  14953. source: "./media/characters/mesmyriza/foot.svg"
  14954. }
  14955. },
  14956. },
  14957. [
  14958. {
  14959. name: "Macro",
  14960. height: math.unit(457, "meters"),
  14961. default: true
  14962. },
  14963. {
  14964. name: "Megamacro",
  14965. height: math.unit(8, "megameters")
  14966. },
  14967. ]
  14968. ))
  14969. characterMakers.push(() => makeCharacter(
  14970. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14971. {
  14972. front: {
  14973. height: math.unit(6, "feet"),
  14974. weight: math.unit(250, "lb"),
  14975. name: "Front",
  14976. image: {
  14977. source: "./media/characters/saudade/front.svg",
  14978. extra: 1172 / 1139,
  14979. bottom: 0.035
  14980. }
  14981. },
  14982. },
  14983. [
  14984. {
  14985. name: "Micro",
  14986. height: math.unit(3, "inches")
  14987. },
  14988. {
  14989. name: "Normal",
  14990. height: math.unit(6, "feet"),
  14991. default: true
  14992. },
  14993. {
  14994. name: "Macro",
  14995. height: math.unit(50, "feet")
  14996. },
  14997. {
  14998. name: "Megamacro",
  14999. height: math.unit(2800, "feet")
  15000. },
  15001. ]
  15002. ))
  15003. characterMakers.push(() => makeCharacter(
  15004. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15005. {
  15006. front: {
  15007. height: math.unit(5 + 4 / 12, "feet"),
  15008. weight: math.unit(100, "lb"),
  15009. name: "Front",
  15010. image: {
  15011. source: "./media/characters/keireer/front.svg",
  15012. extra: 716 / 666,
  15013. bottom: 0.05
  15014. }
  15015. },
  15016. },
  15017. [
  15018. {
  15019. name: "Normal",
  15020. height: math.unit(5 + 4 / 12, "feet"),
  15021. default: true
  15022. },
  15023. ]
  15024. ))
  15025. characterMakers.push(() => makeCharacter(
  15026. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15027. {
  15028. front: {
  15029. height: math.unit(6, "feet"),
  15030. weight: math.unit(90, "kg"),
  15031. name: "Front",
  15032. image: {
  15033. source: "./media/characters/mirja/front.svg",
  15034. extra: 1789 / 1683,
  15035. bottom: 0.05
  15036. }
  15037. },
  15038. frontDressed: {
  15039. height: math.unit(6, "feet"),
  15040. weight: math.unit(90, "lb"),
  15041. name: "Front (Dressed)",
  15042. image: {
  15043. source: "./media/characters/mirja/front-dressed.svg",
  15044. extra: 1789 / 1683,
  15045. bottom: 0.05
  15046. }
  15047. },
  15048. back: {
  15049. height: math.unit(6, "feet"),
  15050. weight: math.unit(90, "lb"),
  15051. name: "Back",
  15052. image: {
  15053. source: "./media/characters/mirja/back.svg",
  15054. extra: 953 / 917,
  15055. bottom: 0.017
  15056. }
  15057. },
  15058. },
  15059. [
  15060. {
  15061. name: "\"Incognito\"",
  15062. height: math.unit(3, "meters")
  15063. },
  15064. {
  15065. name: "Strolling Size",
  15066. height: math.unit(15, "km")
  15067. },
  15068. {
  15069. name: "Larger Strolling Size",
  15070. height: math.unit(400, "km")
  15071. },
  15072. {
  15073. name: "Preferred Size",
  15074. height: math.unit(5000, "km")
  15075. },
  15076. {
  15077. name: "True Size",
  15078. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15079. default: true
  15080. },
  15081. ]
  15082. ))
  15083. characterMakers.push(() => makeCharacter(
  15084. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15085. {
  15086. front: {
  15087. height: math.unit(15, "feet"),
  15088. weight: math.unit(880, "kg"),
  15089. name: "Front",
  15090. image: {
  15091. source: "./media/characters/nightraver/front.svg",
  15092. extra: 2444 / 2160,
  15093. bottom: 0.027
  15094. }
  15095. },
  15096. back: {
  15097. height: math.unit(15, "feet"),
  15098. weight: math.unit(880, "kg"),
  15099. name: "Back",
  15100. image: {
  15101. source: "./media/characters/nightraver/back.svg",
  15102. extra: 2309 / 2180,
  15103. bottom: 0.005
  15104. }
  15105. },
  15106. sole: {
  15107. height: math.unit(2.878, "feet"),
  15108. name: "Sole",
  15109. image: {
  15110. source: "./media/characters/nightraver/sole.svg"
  15111. }
  15112. },
  15113. foot: {
  15114. height: math.unit(2.285, "feet"),
  15115. name: "Foot",
  15116. image: {
  15117. source: "./media/characters/nightraver/foot.svg"
  15118. }
  15119. },
  15120. maw: {
  15121. height: math.unit(2.67, "feet"),
  15122. name: "Maw",
  15123. image: {
  15124. source: "./media/characters/nightraver/maw.svg"
  15125. }
  15126. },
  15127. },
  15128. [
  15129. {
  15130. name: "Micro",
  15131. height: math.unit(1, "cm")
  15132. },
  15133. {
  15134. name: "Normal",
  15135. height: math.unit(15, "feet"),
  15136. default: true
  15137. },
  15138. {
  15139. name: "Macro",
  15140. height: math.unit(300, "feet")
  15141. },
  15142. {
  15143. name: "Megamacro",
  15144. height: math.unit(300, "miles")
  15145. },
  15146. {
  15147. name: "Gigamacro",
  15148. height: math.unit(10000, "miles")
  15149. },
  15150. ]
  15151. ))
  15152. characterMakers.push(() => makeCharacter(
  15153. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15154. {
  15155. side: {
  15156. height: math.unit(2, "inches"),
  15157. weight: math.unit(5, "grams"),
  15158. name: "Side",
  15159. image: {
  15160. source: "./media/characters/arc/side.svg"
  15161. }
  15162. },
  15163. },
  15164. [
  15165. {
  15166. name: "Micro",
  15167. height: math.unit(2, "inches"),
  15168. default: true
  15169. },
  15170. ]
  15171. ))
  15172. characterMakers.push(() => makeCharacter(
  15173. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15174. {
  15175. front: {
  15176. height: math.unit(1.1938, "meters"),
  15177. weight: math.unit(54, "kg"),
  15178. name: "Front",
  15179. image: {
  15180. source: "./media/characters/nebula-shahar/front.svg",
  15181. extra: 1642 / 1436,
  15182. bottom: 0.06
  15183. }
  15184. },
  15185. },
  15186. [
  15187. {
  15188. name: "Megamicro",
  15189. height: math.unit(0.3, "mm")
  15190. },
  15191. {
  15192. name: "Micro",
  15193. height: math.unit(3, "cm")
  15194. },
  15195. {
  15196. name: "Normal",
  15197. height: math.unit(138, "cm"),
  15198. default: true
  15199. },
  15200. {
  15201. name: "Macro",
  15202. height: math.unit(30, "m")
  15203. },
  15204. ]
  15205. ))
  15206. characterMakers.push(() => makeCharacter(
  15207. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15208. {
  15209. front: {
  15210. height: math.unit(5.24, "feet"),
  15211. weight: math.unit(150, "lb"),
  15212. name: "Front",
  15213. image: {
  15214. source: "./media/characters/shayla/front.svg",
  15215. extra: 1512 / 1414,
  15216. bottom: 0.01
  15217. }
  15218. },
  15219. back: {
  15220. height: math.unit(5.24, "feet"),
  15221. weight: math.unit(150, "lb"),
  15222. name: "Back",
  15223. image: {
  15224. source: "./media/characters/shayla/back.svg",
  15225. extra: 1512 / 1414
  15226. }
  15227. },
  15228. hand: {
  15229. height: math.unit(0.7781496062992126, "feet"),
  15230. name: "Hand",
  15231. image: {
  15232. source: "./media/characters/shayla/hand.svg"
  15233. }
  15234. },
  15235. foot: {
  15236. height: math.unit(1.4206036745406823, "feet"),
  15237. name: "Foot",
  15238. image: {
  15239. source: "./media/characters/shayla/foot.svg"
  15240. }
  15241. },
  15242. },
  15243. [
  15244. {
  15245. name: "Micro",
  15246. height: math.unit(0.32, "feet")
  15247. },
  15248. {
  15249. name: "Normal",
  15250. height: math.unit(5.24, "feet"),
  15251. default: true
  15252. },
  15253. {
  15254. name: "Macro",
  15255. height: math.unit(492.12, "feet")
  15256. },
  15257. {
  15258. name: "Megamacro",
  15259. height: math.unit(186.41, "miles")
  15260. },
  15261. ]
  15262. ))
  15263. characterMakers.push(() => makeCharacter(
  15264. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15265. {
  15266. front: {
  15267. height: math.unit(2.2, "m"),
  15268. weight: math.unit(120, "kg"),
  15269. name: "Front",
  15270. image: {
  15271. source: "./media/characters/pia-jr/front.svg",
  15272. extra: 1000 / 970,
  15273. bottom: 0.035
  15274. }
  15275. },
  15276. hand: {
  15277. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15278. name: "Hand",
  15279. image: {
  15280. source: "./media/characters/pia-jr/hand.svg"
  15281. }
  15282. },
  15283. paw: {
  15284. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15285. name: "Paw",
  15286. image: {
  15287. source: "./media/characters/pia-jr/paw.svg"
  15288. }
  15289. },
  15290. },
  15291. [
  15292. {
  15293. name: "Micro",
  15294. height: math.unit(1.2, "cm")
  15295. },
  15296. {
  15297. name: "Normal",
  15298. height: math.unit(2.2, "m"),
  15299. default: true
  15300. },
  15301. {
  15302. name: "Macro",
  15303. height: math.unit(180, "m")
  15304. },
  15305. {
  15306. name: "Megamacro",
  15307. height: math.unit(420, "km")
  15308. },
  15309. ]
  15310. ))
  15311. characterMakers.push(() => makeCharacter(
  15312. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15313. {
  15314. front: {
  15315. height: math.unit(2, "m"),
  15316. weight: math.unit(115, "kg"),
  15317. name: "Front",
  15318. image: {
  15319. source: "./media/characters/pia-sr/front.svg",
  15320. extra: 760 / 730,
  15321. bottom: 0.015
  15322. }
  15323. },
  15324. back: {
  15325. height: math.unit(2, "m"),
  15326. weight: math.unit(115, "kg"),
  15327. name: "Back",
  15328. image: {
  15329. source: "./media/characters/pia-sr/back.svg",
  15330. extra: 760 / 730,
  15331. bottom: 0.01
  15332. }
  15333. },
  15334. hand: {
  15335. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15336. name: "Hand",
  15337. image: {
  15338. source: "./media/characters/pia-sr/hand.svg"
  15339. }
  15340. },
  15341. foot: {
  15342. height: math.unit(1.83, "feet"),
  15343. name: "Foot",
  15344. image: {
  15345. source: "./media/characters/pia-sr/foot.svg"
  15346. }
  15347. },
  15348. },
  15349. [
  15350. {
  15351. name: "Micro",
  15352. height: math.unit(88, "mm")
  15353. },
  15354. {
  15355. name: "Normal",
  15356. height: math.unit(2, "m"),
  15357. default: true
  15358. },
  15359. {
  15360. name: "Macro",
  15361. height: math.unit(200, "m")
  15362. },
  15363. {
  15364. name: "Megamacro",
  15365. height: math.unit(420, "km")
  15366. },
  15367. ]
  15368. ))
  15369. characterMakers.push(() => makeCharacter(
  15370. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15371. {
  15372. front: {
  15373. height: math.unit(8 + 2 / 12, "feet"),
  15374. weight: math.unit(300, "lb"),
  15375. name: "Front",
  15376. image: {
  15377. source: "./media/characters/kibibyte/front.svg",
  15378. extra: 2221 / 2098,
  15379. bottom: 0.04
  15380. }
  15381. },
  15382. },
  15383. [
  15384. {
  15385. name: "Normal",
  15386. height: math.unit(8 + 2 / 12, "feet"),
  15387. default: true
  15388. },
  15389. {
  15390. name: "Socialable Macro",
  15391. height: math.unit(50, "feet")
  15392. },
  15393. {
  15394. name: "Macro",
  15395. height: math.unit(300, "feet")
  15396. },
  15397. {
  15398. name: "Megamacro",
  15399. height: math.unit(500, "miles")
  15400. },
  15401. ]
  15402. ))
  15403. characterMakers.push(() => makeCharacter(
  15404. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15405. {
  15406. front: {
  15407. height: math.unit(6, "feet"),
  15408. weight: math.unit(150, "lb"),
  15409. name: "Front",
  15410. image: {
  15411. source: "./media/characters/felix/front.svg",
  15412. extra: 762 / 722,
  15413. bottom: 0.02
  15414. }
  15415. },
  15416. frontClothed: {
  15417. height: math.unit(6, "feet"),
  15418. weight: math.unit(150, "lb"),
  15419. name: "Front (Clothed)",
  15420. image: {
  15421. source: "./media/characters/felix/front-clothed.svg",
  15422. extra: 762 / 722,
  15423. bottom: 0.02
  15424. }
  15425. },
  15426. },
  15427. [
  15428. {
  15429. name: "Normal",
  15430. height: math.unit(6 + 8 / 12, "feet"),
  15431. default: true
  15432. },
  15433. {
  15434. name: "Macro",
  15435. height: math.unit(2600, "feet")
  15436. },
  15437. {
  15438. name: "Megamacro",
  15439. height: math.unit(450, "miles")
  15440. },
  15441. ]
  15442. ))
  15443. characterMakers.push(() => makeCharacter(
  15444. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15445. {
  15446. front: {
  15447. height: math.unit(6 + 1 / 12, "feet"),
  15448. weight: math.unit(250, "lb"),
  15449. name: "Front",
  15450. image: {
  15451. source: "./media/characters/tobo/front.svg",
  15452. extra: 608 / 586,
  15453. bottom: 0.023
  15454. }
  15455. },
  15456. back: {
  15457. height: math.unit(6 + 1 / 12, "feet"),
  15458. weight: math.unit(250, "lb"),
  15459. name: "Back",
  15460. image: {
  15461. source: "./media/characters/tobo/back.svg",
  15462. extra: 608 / 586
  15463. }
  15464. },
  15465. },
  15466. [
  15467. {
  15468. name: "Nano",
  15469. height: math.unit(2, "nm")
  15470. },
  15471. {
  15472. name: "Megamicro",
  15473. height: math.unit(0.1, "mm")
  15474. },
  15475. {
  15476. name: "Micro",
  15477. height: math.unit(1, "inch"),
  15478. default: true
  15479. },
  15480. {
  15481. name: "Human-sized",
  15482. height: math.unit(6 + 1 / 12, "feet")
  15483. },
  15484. {
  15485. name: "Macro",
  15486. height: math.unit(250, "feet")
  15487. },
  15488. {
  15489. name: "Megamacro",
  15490. height: math.unit(75, "miles")
  15491. },
  15492. {
  15493. name: "Texas-sized",
  15494. height: math.unit(750, "miles")
  15495. },
  15496. {
  15497. name: "Teramacro",
  15498. height: math.unit(50000, "miles")
  15499. },
  15500. ]
  15501. ))
  15502. characterMakers.push(() => makeCharacter(
  15503. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15504. {
  15505. front: {
  15506. height: math.unit(6, "feet"),
  15507. weight: math.unit(269, "lb"),
  15508. name: "Front",
  15509. image: {
  15510. source: "./media/characters/danny-kapowsky/front.svg",
  15511. extra: 766 / 736,
  15512. bottom: 0.044
  15513. }
  15514. },
  15515. back: {
  15516. height: math.unit(6, "feet"),
  15517. weight: math.unit(269, "lb"),
  15518. name: "Back",
  15519. image: {
  15520. source: "./media/characters/danny-kapowsky/back.svg",
  15521. extra: 797 / 760,
  15522. bottom: 0.025
  15523. }
  15524. },
  15525. },
  15526. [
  15527. {
  15528. name: "Macro",
  15529. height: math.unit(150, "feet"),
  15530. default: true
  15531. },
  15532. {
  15533. name: "Macro+",
  15534. height: math.unit(200, "feet")
  15535. },
  15536. {
  15537. name: "Macro++",
  15538. height: math.unit(300, "feet")
  15539. },
  15540. {
  15541. name: "Macro+++",
  15542. height: math.unit(400, "feet")
  15543. },
  15544. ]
  15545. ))
  15546. characterMakers.push(() => makeCharacter(
  15547. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15548. {
  15549. side: {
  15550. height: math.unit(6, "feet"),
  15551. weight: math.unit(170, "lb"),
  15552. name: "Side",
  15553. image: {
  15554. source: "./media/characters/finn/side.svg",
  15555. extra: 1953 / 1807,
  15556. bottom: 0.057
  15557. }
  15558. },
  15559. },
  15560. [
  15561. {
  15562. name: "Megamacro",
  15563. height: math.unit(14445, "feet"),
  15564. default: true
  15565. },
  15566. ]
  15567. ))
  15568. characterMakers.push(() => makeCharacter(
  15569. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15570. {
  15571. front: {
  15572. height: math.unit(5 + 6 / 12, "feet"),
  15573. weight: math.unit(125, "lb"),
  15574. name: "Front",
  15575. image: {
  15576. source: "./media/characters/roy/front.svg",
  15577. extra: 1,
  15578. bottom: 0.11
  15579. }
  15580. },
  15581. },
  15582. [
  15583. {
  15584. name: "Micro",
  15585. height: math.unit(3, "inches"),
  15586. default: true
  15587. },
  15588. {
  15589. name: "Normal",
  15590. height: math.unit(5 + 6 / 12, "feet")
  15591. },
  15592. {
  15593. name: "Lesser Macro",
  15594. height: math.unit(60, "feet")
  15595. },
  15596. {
  15597. name: "Greater Macro",
  15598. height: math.unit(120, "feet")
  15599. },
  15600. ]
  15601. ))
  15602. characterMakers.push(() => makeCharacter(
  15603. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15604. {
  15605. front: {
  15606. height: math.unit(6, "feet"),
  15607. weight: math.unit(100, "lb"),
  15608. name: "Front",
  15609. image: {
  15610. source: "./media/characters/aevsivs/front.svg",
  15611. extra: 1,
  15612. bottom: 0.03
  15613. }
  15614. },
  15615. back: {
  15616. height: math.unit(6, "feet"),
  15617. weight: math.unit(100, "lb"),
  15618. name: "Back",
  15619. image: {
  15620. source: "./media/characters/aevsivs/back.svg"
  15621. }
  15622. },
  15623. },
  15624. [
  15625. {
  15626. name: "Micro",
  15627. height: math.unit(2, "inches"),
  15628. default: true
  15629. },
  15630. {
  15631. name: "Normal",
  15632. height: math.unit(5, "feet")
  15633. },
  15634. ]
  15635. ))
  15636. characterMakers.push(() => makeCharacter(
  15637. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15638. {
  15639. front: {
  15640. height: math.unit(5 + 7 / 12, "feet"),
  15641. weight: math.unit(159, "lb"),
  15642. name: "Front",
  15643. image: {
  15644. source: "./media/characters/hildegard/front.svg",
  15645. extra: 289 / 269,
  15646. bottom: 7.63 / 297.8
  15647. }
  15648. },
  15649. back: {
  15650. height: math.unit(5 + 7 / 12, "feet"),
  15651. weight: math.unit(159, "lb"),
  15652. name: "Back",
  15653. image: {
  15654. source: "./media/characters/hildegard/back.svg",
  15655. extra: 280 / 260,
  15656. bottom: 2.3 / 282
  15657. }
  15658. },
  15659. },
  15660. [
  15661. {
  15662. name: "Normal",
  15663. height: math.unit(5 + 7 / 12, "feet"),
  15664. default: true
  15665. },
  15666. ]
  15667. ))
  15668. characterMakers.push(() => makeCharacter(
  15669. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15670. {
  15671. bernard: {
  15672. height: math.unit(2 + 7 / 12, "feet"),
  15673. weight: math.unit(66, "lb"),
  15674. name: "Bernard",
  15675. rename: true,
  15676. image: {
  15677. source: "./media/characters/bernard-wilder/bernard.svg",
  15678. extra: 192 / 128,
  15679. bottom: 0.05
  15680. }
  15681. },
  15682. wilder: {
  15683. height: math.unit(5 + 8 / 12, "feet"),
  15684. weight: math.unit(143, "lb"),
  15685. name: "Wilder",
  15686. rename: true,
  15687. image: {
  15688. source: "./media/characters/bernard-wilder/wilder.svg",
  15689. extra: 361 / 312,
  15690. bottom: 0.02
  15691. }
  15692. },
  15693. },
  15694. [
  15695. {
  15696. name: "Normal",
  15697. height: math.unit(2 + 7 / 12, "feet"),
  15698. default: true
  15699. },
  15700. ]
  15701. ))
  15702. characterMakers.push(() => makeCharacter(
  15703. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15704. {
  15705. anthro: {
  15706. height: math.unit(6 + 1 / 12, "feet"),
  15707. weight: math.unit(155, "lb"),
  15708. name: "Anthro",
  15709. image: {
  15710. source: "./media/characters/hearth/anthro.svg",
  15711. extra: 1178/1136,
  15712. bottom: 28/1206
  15713. }
  15714. },
  15715. feral: {
  15716. height: math.unit(3.78, "feet"),
  15717. weight: math.unit(35, "kg"),
  15718. name: "Feral",
  15719. image: {
  15720. source: "./media/characters/hearth/feral.svg",
  15721. extra: 153 / 135,
  15722. bottom: 0.03
  15723. }
  15724. },
  15725. },
  15726. [
  15727. {
  15728. name: "Normal",
  15729. height: math.unit(6 + 1 / 12, "feet"),
  15730. default: true
  15731. },
  15732. ]
  15733. ))
  15734. characterMakers.push(() => makeCharacter(
  15735. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15736. {
  15737. front: {
  15738. height: math.unit(6, "feet"),
  15739. weight: math.unit(182, "lb"),
  15740. name: "Front",
  15741. image: {
  15742. source: "./media/characters/ingrid/front.svg",
  15743. extra: 294 / 268,
  15744. bottom: 0.027
  15745. }
  15746. },
  15747. },
  15748. [
  15749. {
  15750. name: "Normal",
  15751. height: math.unit(6, "feet"),
  15752. default: true
  15753. },
  15754. ]
  15755. ))
  15756. characterMakers.push(() => makeCharacter(
  15757. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15758. {
  15759. eevee: {
  15760. height: math.unit(2 + 10 / 12, "feet"),
  15761. weight: math.unit(86, "lb"),
  15762. name: "Malgam",
  15763. image: {
  15764. source: "./media/characters/malgam/eevee.svg",
  15765. extra: 952/784,
  15766. bottom: 38/990
  15767. }
  15768. },
  15769. sylveon: {
  15770. height: math.unit(4, "feet"),
  15771. weight: math.unit(101, "lb"),
  15772. name: "Future Malgam",
  15773. rename: true,
  15774. image: {
  15775. source: "./media/characters/malgam/sylveon.svg",
  15776. extra: 371 / 325,
  15777. bottom: 0.015
  15778. }
  15779. },
  15780. gigantamax: {
  15781. height: math.unit(50, "feet"),
  15782. name: "Gigantamax Malgam",
  15783. rename: true,
  15784. image: {
  15785. source: "./media/characters/malgam/gigantamax.svg"
  15786. }
  15787. },
  15788. },
  15789. [
  15790. {
  15791. name: "Normal",
  15792. height: math.unit(2 + 10 / 12, "feet"),
  15793. default: true
  15794. },
  15795. ]
  15796. ))
  15797. characterMakers.push(() => makeCharacter(
  15798. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15799. {
  15800. front: {
  15801. height: math.unit(5 + 11 / 12, "feet"),
  15802. weight: math.unit(188, "lb"),
  15803. name: "Front",
  15804. image: {
  15805. source: "./media/characters/fleur/front.svg",
  15806. extra: 309 / 283,
  15807. bottom: 0.007
  15808. }
  15809. },
  15810. },
  15811. [
  15812. {
  15813. name: "Normal",
  15814. height: math.unit(5 + 11 / 12, "feet"),
  15815. default: true
  15816. },
  15817. ]
  15818. ))
  15819. characterMakers.push(() => makeCharacter(
  15820. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15821. {
  15822. front: {
  15823. height: math.unit(5 + 4 / 12, "feet"),
  15824. weight: math.unit(122, "lb"),
  15825. name: "Front",
  15826. image: {
  15827. source: "./media/characters/jude/front.svg",
  15828. extra: 288 / 273,
  15829. bottom: 0.03
  15830. }
  15831. },
  15832. },
  15833. [
  15834. {
  15835. name: "Normal",
  15836. height: math.unit(5 + 4 / 12, "feet"),
  15837. default: true
  15838. },
  15839. ]
  15840. ))
  15841. characterMakers.push(() => makeCharacter(
  15842. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15843. {
  15844. front: {
  15845. height: math.unit(5 + 11 / 12, "feet"),
  15846. weight: math.unit(190, "lb"),
  15847. name: "Front",
  15848. image: {
  15849. source: "./media/characters/seara/front.svg",
  15850. extra: 1,
  15851. bottom: 0.05
  15852. }
  15853. },
  15854. },
  15855. [
  15856. {
  15857. name: "Normal",
  15858. height: math.unit(5 + 11 / 12, "feet"),
  15859. default: true
  15860. },
  15861. ]
  15862. ))
  15863. characterMakers.push(() => makeCharacter(
  15864. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15865. {
  15866. front: {
  15867. height: math.unit(16 + 5 / 12, "feet"),
  15868. weight: math.unit(524, "lb"),
  15869. name: "Front",
  15870. image: {
  15871. source: "./media/characters/caspian-lugia/front.svg",
  15872. extra: 1,
  15873. bottom: 0.04
  15874. }
  15875. },
  15876. },
  15877. [
  15878. {
  15879. name: "Normal",
  15880. height: math.unit(16 + 5 / 12, "feet"),
  15881. default: true
  15882. },
  15883. ]
  15884. ))
  15885. characterMakers.push(() => makeCharacter(
  15886. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15887. {
  15888. front: {
  15889. height: math.unit(5 + 7 / 12, "feet"),
  15890. weight: math.unit(170, "lb"),
  15891. name: "Front",
  15892. image: {
  15893. source: "./media/characters/mika/front.svg",
  15894. extra: 1,
  15895. bottom: 0.016
  15896. }
  15897. },
  15898. },
  15899. [
  15900. {
  15901. name: "Normal",
  15902. height: math.unit(5 + 7 / 12, "feet"),
  15903. default: true
  15904. },
  15905. ]
  15906. ))
  15907. characterMakers.push(() => makeCharacter(
  15908. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15909. {
  15910. front: {
  15911. height: math.unit(6 + 2 / 12, "feet"),
  15912. weight: math.unit(268, "lb"),
  15913. name: "Front",
  15914. image: {
  15915. source: "./media/characters/sol/front.svg",
  15916. extra: 247 / 231,
  15917. bottom: 0.05
  15918. }
  15919. },
  15920. },
  15921. [
  15922. {
  15923. name: "Normal",
  15924. height: math.unit(6 + 2 / 12, "feet"),
  15925. default: true
  15926. },
  15927. ]
  15928. ))
  15929. characterMakers.push(() => makeCharacter(
  15930. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15931. {
  15932. buizel: {
  15933. height: math.unit(2 + 5 / 12, "feet"),
  15934. weight: math.unit(87, "lb"),
  15935. name: "Front",
  15936. image: {
  15937. source: "./media/characters/umiko/buizel.svg",
  15938. extra: 172 / 157,
  15939. bottom: 0.01
  15940. },
  15941. form: "buizel",
  15942. default: true
  15943. },
  15944. floatzel: {
  15945. height: math.unit(5 + 9 / 12, "feet"),
  15946. weight: math.unit(250, "lb"),
  15947. name: "Front",
  15948. image: {
  15949. source: "./media/characters/umiko/floatzel.svg",
  15950. extra: 1076/1006,
  15951. bottom: 15/1091
  15952. },
  15953. form: "floatzel",
  15954. default: true
  15955. },
  15956. },
  15957. [
  15958. {
  15959. name: "Normal",
  15960. height: math.unit(2 + 5 / 12, "feet"),
  15961. form: "buizel",
  15962. default: true
  15963. },
  15964. {
  15965. name: "Normal",
  15966. height: math.unit(5 + 9 / 12, "feet"),
  15967. form: "floatzel",
  15968. default: true
  15969. },
  15970. ],
  15971. {
  15972. "buizel": {
  15973. name: "Buizel"
  15974. },
  15975. "floatzel": {
  15976. name: "Floatzel",
  15977. default: true
  15978. }
  15979. }
  15980. ))
  15981. characterMakers.push(() => makeCharacter(
  15982. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15983. {
  15984. front: {
  15985. height: math.unit(6 + 2 / 12, "feet"),
  15986. weight: math.unit(146, "lb"),
  15987. name: "Front",
  15988. image: {
  15989. source: "./media/characters/iliac/front.svg",
  15990. extra: 389 / 365,
  15991. bottom: 0.035
  15992. }
  15993. },
  15994. },
  15995. [
  15996. {
  15997. name: "Normal",
  15998. height: math.unit(6 + 2 / 12, "feet"),
  15999. default: true
  16000. },
  16001. ]
  16002. ))
  16003. characterMakers.push(() => makeCharacter(
  16004. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16005. {
  16006. front: {
  16007. height: math.unit(6, "feet"),
  16008. weight: math.unit(170, "lb"),
  16009. name: "Front",
  16010. image: {
  16011. source: "./media/characters/topaz/front.svg",
  16012. extra: 317 / 303,
  16013. bottom: 0.055
  16014. }
  16015. },
  16016. },
  16017. [
  16018. {
  16019. name: "Normal",
  16020. height: math.unit(6, "feet"),
  16021. default: true
  16022. },
  16023. ]
  16024. ))
  16025. characterMakers.push(() => makeCharacter(
  16026. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16027. {
  16028. front: {
  16029. height: math.unit(5 + 11 / 12, "feet"),
  16030. weight: math.unit(144, "lb"),
  16031. name: "Front",
  16032. image: {
  16033. source: "./media/characters/gabriel/front.svg",
  16034. extra: 285 / 262,
  16035. bottom: 0.004
  16036. }
  16037. },
  16038. },
  16039. [
  16040. {
  16041. name: "Normal",
  16042. height: math.unit(5 + 11 / 12, "feet"),
  16043. default: true
  16044. },
  16045. ]
  16046. ))
  16047. characterMakers.push(() => makeCharacter(
  16048. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16049. {
  16050. side: {
  16051. height: math.unit(6 + 5 / 12, "feet"),
  16052. weight: math.unit(300, "lb"),
  16053. name: "Side",
  16054. image: {
  16055. source: "./media/characters/tempest-suicune/side.svg",
  16056. extra: 195 / 154,
  16057. bottom: 0.04
  16058. }
  16059. },
  16060. },
  16061. [
  16062. {
  16063. name: "Normal",
  16064. height: math.unit(6 + 5 / 12, "feet"),
  16065. default: true
  16066. },
  16067. ]
  16068. ))
  16069. characterMakers.push(() => makeCharacter(
  16070. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16071. {
  16072. front: {
  16073. height: math.unit(7 + 2 / 12, "feet"),
  16074. weight: math.unit(322, "lb"),
  16075. name: "Front",
  16076. image: {
  16077. source: "./media/characters/vulcan/front.svg",
  16078. extra: 154 / 147,
  16079. bottom: 0.04
  16080. }
  16081. },
  16082. },
  16083. [
  16084. {
  16085. name: "Normal",
  16086. height: math.unit(7 + 2 / 12, "feet"),
  16087. default: true
  16088. },
  16089. ]
  16090. ))
  16091. characterMakers.push(() => makeCharacter(
  16092. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16093. {
  16094. front: {
  16095. height: math.unit(5 + 10 / 12, "feet"),
  16096. weight: math.unit(264, "lb"),
  16097. name: "Front",
  16098. image: {
  16099. source: "./media/characters/gault/front.svg",
  16100. extra: 161 / 140,
  16101. bottom: 0.028
  16102. }
  16103. },
  16104. },
  16105. [
  16106. {
  16107. name: "Normal",
  16108. height: math.unit(5 + 10 / 12, "feet"),
  16109. default: true
  16110. },
  16111. ]
  16112. ))
  16113. characterMakers.push(() => makeCharacter(
  16114. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16115. {
  16116. front: {
  16117. height: math.unit(6, "feet"),
  16118. weight: math.unit(150, "lb"),
  16119. name: "Front",
  16120. image: {
  16121. source: "./media/characters/shard/front.svg",
  16122. extra: 273 / 238,
  16123. bottom: 0.02
  16124. }
  16125. },
  16126. },
  16127. [
  16128. {
  16129. name: "Normal",
  16130. height: math.unit(3 + 6 / 12, "feet"),
  16131. default: true
  16132. },
  16133. ]
  16134. ))
  16135. characterMakers.push(() => makeCharacter(
  16136. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16137. {
  16138. front: {
  16139. height: math.unit(5 + 11 / 12, "feet"),
  16140. weight: math.unit(146, "lb"),
  16141. name: "Front",
  16142. image: {
  16143. source: "./media/characters/ashe/front.svg",
  16144. extra: 400 / 373,
  16145. bottom: 0.01
  16146. }
  16147. },
  16148. },
  16149. [
  16150. {
  16151. name: "Normal",
  16152. height: math.unit(5 + 11 / 12, "feet"),
  16153. default: true
  16154. },
  16155. ]
  16156. ))
  16157. characterMakers.push(() => makeCharacter(
  16158. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16159. {
  16160. front: {
  16161. height: math.unit(5 + 5 / 12, "feet"),
  16162. weight: math.unit(135, "lb"),
  16163. name: "Front",
  16164. image: {
  16165. source: "./media/characters/beatrix/front.svg",
  16166. extra: 392 / 379,
  16167. bottom: 0.01
  16168. }
  16169. },
  16170. },
  16171. [
  16172. {
  16173. name: "Normal",
  16174. height: math.unit(6, "feet"),
  16175. default: true
  16176. },
  16177. ]
  16178. ))
  16179. characterMakers.push(() => makeCharacter(
  16180. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16181. {
  16182. front: {
  16183. height: math.unit(6 + 2/12, "feet"),
  16184. weight: math.unit(135, "lb"),
  16185. name: "Front",
  16186. image: {
  16187. source: "./media/characters/ignatius/front.svg",
  16188. extra: 1380/1259,
  16189. bottom: 27/1407
  16190. }
  16191. },
  16192. },
  16193. [
  16194. {
  16195. name: "Normal",
  16196. height: math.unit(6 + 2/12, "feet"),
  16197. default: true
  16198. },
  16199. ]
  16200. ))
  16201. characterMakers.push(() => makeCharacter(
  16202. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16203. {
  16204. front: {
  16205. height: math.unit(6 + 2 / 12, "feet"),
  16206. weight: math.unit(138, "lb"),
  16207. name: "Front",
  16208. image: {
  16209. source: "./media/characters/mei-li/front.svg",
  16210. extra: 237 / 229,
  16211. bottom: 0.03
  16212. }
  16213. },
  16214. },
  16215. [
  16216. {
  16217. name: "Normal",
  16218. height: math.unit(6 + 2 / 12, "feet"),
  16219. default: true
  16220. },
  16221. ]
  16222. ))
  16223. characterMakers.push(() => makeCharacter(
  16224. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16225. {
  16226. front: {
  16227. height: math.unit(2 + 4 / 12, "feet"),
  16228. weight: math.unit(62, "lb"),
  16229. name: "Front",
  16230. image: {
  16231. source: "./media/characters/puru/front.svg",
  16232. extra: 206 / 149,
  16233. bottom: 0.06
  16234. }
  16235. },
  16236. },
  16237. [
  16238. {
  16239. name: "Normal",
  16240. height: math.unit(2 + 4 / 12, "feet"),
  16241. default: true
  16242. },
  16243. ]
  16244. ))
  16245. characterMakers.push(() => makeCharacter(
  16246. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16247. {
  16248. anthro: {
  16249. height: math.unit(5 + 8/12, "feet"),
  16250. weight: math.unit(200, "lb"),
  16251. energyNeed: math.unit(2000, "kcal"),
  16252. name: "Anthro",
  16253. image: {
  16254. source: "./media/characters/kee/anthro.svg",
  16255. extra: 3251/3184,
  16256. bottom: 250/3501
  16257. }
  16258. },
  16259. taur: {
  16260. height: math.unit(11, "feet"),
  16261. weight: math.unit(500, "lb"),
  16262. energyNeed: math.unit(5000, "kcal"),
  16263. name: "Taur",
  16264. image: {
  16265. source: "./media/characters/kee/taur.svg",
  16266. extra: 1362/1320,
  16267. bottom: 83/1445
  16268. }
  16269. },
  16270. },
  16271. [
  16272. {
  16273. name: "Normal",
  16274. height: math.unit(5 + 8/12, "feet"),
  16275. default: true
  16276. },
  16277. {
  16278. name: "Macro",
  16279. height: math.unit(35, "feet")
  16280. },
  16281. ]
  16282. ))
  16283. characterMakers.push(() => makeCharacter(
  16284. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16285. {
  16286. anthro: {
  16287. height: math.unit(7, "feet"),
  16288. weight: math.unit(190, "lb"),
  16289. name: "Anthro",
  16290. image: {
  16291. source: "./media/characters/cobalt-dracha/anthro.svg",
  16292. extra: 231 / 225,
  16293. bottom: 0.04
  16294. }
  16295. },
  16296. feral: {
  16297. height: math.unit(9 + 7 / 12, "feet"),
  16298. weight: math.unit(294, "lb"),
  16299. name: "Feral",
  16300. image: {
  16301. source: "./media/characters/cobalt-dracha/feral.svg",
  16302. extra: 692 / 633,
  16303. bottom: 0.05
  16304. }
  16305. },
  16306. },
  16307. [
  16308. {
  16309. name: "Normal",
  16310. height: math.unit(7, "feet"),
  16311. default: true
  16312. },
  16313. ]
  16314. ))
  16315. characterMakers.push(() => makeCharacter(
  16316. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16317. {
  16318. fallen: {
  16319. height: math.unit(11 + 8 / 12, "feet"),
  16320. weight: math.unit(485, "lb"),
  16321. name: "Java (Fallen)",
  16322. rename: true,
  16323. image: {
  16324. source: "./media/characters/java/fallen.svg",
  16325. extra: 226 / 208,
  16326. bottom: 0.005
  16327. }
  16328. },
  16329. godkin: {
  16330. height: math.unit(10 + 6 / 12, "feet"),
  16331. weight: math.unit(328, "lb"),
  16332. name: "Java (Godkin)",
  16333. rename: true,
  16334. image: {
  16335. source: "./media/characters/java/godkin.svg",
  16336. extra: 1104/1068,
  16337. bottom: 36/1140
  16338. }
  16339. },
  16340. },
  16341. [
  16342. {
  16343. name: "Normal",
  16344. height: math.unit(11 + 8 / 12, "feet"),
  16345. default: true
  16346. },
  16347. ]
  16348. ))
  16349. characterMakers.push(() => makeCharacter(
  16350. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16351. {
  16352. front: {
  16353. height: math.unit(5 + 9 / 12, "feet"),
  16354. weight: math.unit(170, "lb"),
  16355. name: "Front",
  16356. image: {
  16357. source: "./media/characters/purna/front.svg",
  16358. extra: 239 / 229,
  16359. bottom: 0.01
  16360. }
  16361. },
  16362. },
  16363. [
  16364. {
  16365. name: "Normal",
  16366. height: math.unit(5 + 9 / 12, "feet"),
  16367. default: true
  16368. },
  16369. ]
  16370. ))
  16371. characterMakers.push(() => makeCharacter(
  16372. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16373. {
  16374. front: {
  16375. height: math.unit(5 + 9 / 12, "feet"),
  16376. weight: math.unit(142, "lb"),
  16377. name: "Front",
  16378. image: {
  16379. source: "./media/characters/kuva/front.svg",
  16380. extra: 281 / 271,
  16381. bottom: 0.006
  16382. }
  16383. },
  16384. },
  16385. [
  16386. {
  16387. name: "Normal",
  16388. height: math.unit(5 + 9 / 12, "feet"),
  16389. default: true
  16390. },
  16391. ]
  16392. ))
  16393. characterMakers.push(() => makeCharacter(
  16394. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16395. {
  16396. anthro: {
  16397. height: math.unit(9 + 2 / 12, "feet"),
  16398. weight: math.unit(270, "lb"),
  16399. name: "Anthro",
  16400. image: {
  16401. source: "./media/characters/embra/anthro.svg",
  16402. extra: 200 / 187,
  16403. bottom: 0.02
  16404. }
  16405. },
  16406. feral: {
  16407. height: math.unit(18 + 8 / 12, "feet"),
  16408. weight: math.unit(576, "lb"),
  16409. name: "Feral",
  16410. image: {
  16411. source: "./media/characters/embra/feral.svg",
  16412. extra: 152 / 137,
  16413. bottom: 0.037
  16414. }
  16415. },
  16416. },
  16417. [
  16418. {
  16419. name: "Normal",
  16420. height: math.unit(9 + 2 / 12, "feet"),
  16421. default: true
  16422. },
  16423. ]
  16424. ))
  16425. characterMakers.push(() => makeCharacter(
  16426. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16427. {
  16428. anthro: {
  16429. height: math.unit(10 + 9 / 12, "feet"),
  16430. weight: math.unit(224, "lb"),
  16431. name: "Anthro",
  16432. image: {
  16433. source: "./media/characters/grottos/anthro.svg",
  16434. extra: 350 / 332,
  16435. bottom: 0.045
  16436. }
  16437. },
  16438. feral: {
  16439. height: math.unit(20 + 7 / 12, "feet"),
  16440. weight: math.unit(629, "lb"),
  16441. name: "Feral",
  16442. image: {
  16443. source: "./media/characters/grottos/feral.svg",
  16444. extra: 207 / 190,
  16445. bottom: 0.05
  16446. }
  16447. },
  16448. },
  16449. [
  16450. {
  16451. name: "Normal",
  16452. height: math.unit(10 + 9 / 12, "feet"),
  16453. default: true
  16454. },
  16455. ]
  16456. ))
  16457. characterMakers.push(() => makeCharacter(
  16458. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16459. {
  16460. anthro: {
  16461. height: math.unit(9 + 6 / 12, "feet"),
  16462. weight: math.unit(298, "lb"),
  16463. name: "Anthro",
  16464. image: {
  16465. source: "./media/characters/frifna/anthro.svg",
  16466. extra: 282 / 269,
  16467. bottom: 0.015
  16468. }
  16469. },
  16470. feral: {
  16471. height: math.unit(16 + 2 / 12, "feet"),
  16472. weight: math.unit(624, "lb"),
  16473. name: "Feral",
  16474. image: {
  16475. source: "./media/characters/frifna/feral.svg"
  16476. }
  16477. },
  16478. },
  16479. [
  16480. {
  16481. name: "Normal",
  16482. height: math.unit(9 + 6 / 12, "feet"),
  16483. default: true
  16484. },
  16485. ]
  16486. ))
  16487. characterMakers.push(() => makeCharacter(
  16488. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16489. {
  16490. front: {
  16491. height: math.unit(6 + 2 / 12, "feet"),
  16492. weight: math.unit(168, "lb"),
  16493. name: "Front",
  16494. image: {
  16495. source: "./media/characters/elise/front.svg",
  16496. extra: 276 / 271
  16497. }
  16498. },
  16499. },
  16500. [
  16501. {
  16502. name: "Normal",
  16503. height: math.unit(6 + 2 / 12, "feet"),
  16504. default: true
  16505. },
  16506. ]
  16507. ))
  16508. characterMakers.push(() => makeCharacter(
  16509. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16510. {
  16511. front: {
  16512. height: math.unit(5 + 10 / 12, "feet"),
  16513. weight: math.unit(210, "lb"),
  16514. name: "Front",
  16515. image: {
  16516. source: "./media/characters/glade/front.svg",
  16517. extra: 258 / 247,
  16518. bottom: 0.008
  16519. }
  16520. },
  16521. },
  16522. [
  16523. {
  16524. name: "Normal",
  16525. height: math.unit(5 + 10 / 12, "feet"),
  16526. default: true
  16527. },
  16528. ]
  16529. ))
  16530. characterMakers.push(() => makeCharacter(
  16531. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16532. {
  16533. front: {
  16534. height: math.unit(5 + 10 / 12, "feet"),
  16535. weight: math.unit(129, "lb"),
  16536. name: "Front",
  16537. image: {
  16538. source: "./media/characters/rina/front.svg",
  16539. extra: 266 / 255,
  16540. bottom: 0.005
  16541. }
  16542. },
  16543. },
  16544. [
  16545. {
  16546. name: "Normal",
  16547. height: math.unit(5 + 10 / 12, "feet"),
  16548. default: true
  16549. },
  16550. ]
  16551. ))
  16552. characterMakers.push(() => makeCharacter(
  16553. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16554. {
  16555. front: {
  16556. height: math.unit(6 + 1 / 12, "feet"),
  16557. weight: math.unit(192, "lb"),
  16558. name: "Front",
  16559. image: {
  16560. source: "./media/characters/veronica/front.svg",
  16561. extra: 319 / 309,
  16562. bottom: 0.005
  16563. }
  16564. },
  16565. },
  16566. [
  16567. {
  16568. name: "Normal",
  16569. height: math.unit(6 + 1 / 12, "feet"),
  16570. default: true
  16571. },
  16572. ]
  16573. ))
  16574. characterMakers.push(() => makeCharacter(
  16575. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16576. {
  16577. front: {
  16578. height: math.unit(9 + 3 / 12, "feet"),
  16579. weight: math.unit(1100, "lb"),
  16580. name: "Front",
  16581. image: {
  16582. source: "./media/characters/braxton/front.svg",
  16583. extra: 1057 / 984,
  16584. bottom: 0.05
  16585. }
  16586. },
  16587. },
  16588. [
  16589. {
  16590. name: "Normal",
  16591. height: math.unit(9 + 3 / 12, "feet")
  16592. },
  16593. {
  16594. name: "Giant",
  16595. height: math.unit(300, "feet"),
  16596. default: true
  16597. },
  16598. {
  16599. name: "Macro",
  16600. height: math.unit(700, "feet")
  16601. },
  16602. {
  16603. name: "Megamacro",
  16604. height: math.unit(6000, "feet")
  16605. },
  16606. ]
  16607. ))
  16608. characterMakers.push(() => makeCharacter(
  16609. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16610. {
  16611. front: {
  16612. height: math.unit(6 + 7 / 12, "feet"),
  16613. weight: math.unit(150, "lb"),
  16614. name: "Front",
  16615. image: {
  16616. source: "./media/characters/blue-feyonics/front.svg",
  16617. extra: 1403 / 1306,
  16618. bottom: 0.047
  16619. }
  16620. },
  16621. },
  16622. [
  16623. {
  16624. name: "Normal",
  16625. height: math.unit(6 + 7 / 12, "feet"),
  16626. default: true
  16627. },
  16628. ]
  16629. ))
  16630. characterMakers.push(() => makeCharacter(
  16631. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16632. {
  16633. front: {
  16634. height: math.unit(1.8, "meters"),
  16635. weight: math.unit(60, "kg"),
  16636. name: "Front",
  16637. image: {
  16638. source: "./media/characters/maxwell/front.svg",
  16639. extra: 2060 / 1873
  16640. }
  16641. },
  16642. },
  16643. [
  16644. {
  16645. name: "Micro",
  16646. height: math.unit(1, "mm")
  16647. },
  16648. {
  16649. name: "Normal",
  16650. height: math.unit(1.8, "meter"),
  16651. default: true
  16652. },
  16653. {
  16654. name: "Macro",
  16655. height: math.unit(30, "meters")
  16656. },
  16657. {
  16658. name: "Megamacro",
  16659. height: math.unit(10, "km")
  16660. },
  16661. ]
  16662. ))
  16663. characterMakers.push(() => makeCharacter(
  16664. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16665. {
  16666. front: {
  16667. height: math.unit(6, "feet"),
  16668. weight: math.unit(150, "lb"),
  16669. name: "Front",
  16670. image: {
  16671. source: "./media/characters/jack/front.svg",
  16672. extra: 1754 / 1640,
  16673. bottom: 0.01
  16674. }
  16675. },
  16676. },
  16677. [
  16678. {
  16679. name: "Normal",
  16680. height: math.unit(80000, "feet"),
  16681. default: true
  16682. },
  16683. {
  16684. name: "Max size",
  16685. height: math.unit(10, "lightyears")
  16686. },
  16687. ]
  16688. ))
  16689. characterMakers.push(() => makeCharacter(
  16690. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16691. {
  16692. urban: {
  16693. height: math.unit(5, "feet"),
  16694. weight: math.unit(240, "lb"),
  16695. name: "Urban",
  16696. image: {
  16697. source: "./media/characters/cafat/urban.svg",
  16698. extra: 1223/1126,
  16699. bottom: 205/1428
  16700. }
  16701. },
  16702. summer: {
  16703. height: math.unit(5, "feet"),
  16704. weight: math.unit(240, "lb"),
  16705. name: "Summer",
  16706. image: {
  16707. source: "./media/characters/cafat/summer.svg",
  16708. extra: 1223/1126,
  16709. bottom: 205/1428
  16710. }
  16711. },
  16712. winter: {
  16713. height: math.unit(5, "feet"),
  16714. weight: math.unit(240, "lb"),
  16715. name: "Winter",
  16716. image: {
  16717. source: "./media/characters/cafat/winter.svg",
  16718. extra: 1223/1126,
  16719. bottom: 205/1428
  16720. }
  16721. },
  16722. lingerie: {
  16723. height: math.unit(5, "feet"),
  16724. weight: math.unit(240, "lb"),
  16725. name: "Lingerie",
  16726. image: {
  16727. source: "./media/characters/cafat/lingerie.svg",
  16728. extra: 1223/1126,
  16729. bottom: 205/1428
  16730. }
  16731. },
  16732. upright: {
  16733. height: math.unit(6.3, "feet"),
  16734. weight: math.unit(240, "lb"),
  16735. name: "Upright",
  16736. image: {
  16737. source: "./media/characters/cafat/upright.svg",
  16738. bottom: 0.01
  16739. }
  16740. },
  16741. uprightFull: {
  16742. height: math.unit(6.3, "feet"),
  16743. weight: math.unit(240, "lb"),
  16744. name: "Upright (Full)",
  16745. image: {
  16746. source: "./media/characters/cafat/upright-full.svg",
  16747. bottom: 0.01
  16748. }
  16749. },
  16750. },
  16751. [
  16752. {
  16753. name: "Small",
  16754. height: math.unit(5, "feet"),
  16755. default: true
  16756. },
  16757. {
  16758. name: "Large",
  16759. height: math.unit(13, "feet")
  16760. },
  16761. ]
  16762. ))
  16763. characterMakers.push(() => makeCharacter(
  16764. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16765. {
  16766. front: {
  16767. height: math.unit(6, "feet"),
  16768. weight: math.unit(150, "lb"),
  16769. name: "Front",
  16770. image: {
  16771. source: "./media/characters/verin-raharra/front.svg",
  16772. extra: 5019 / 4835,
  16773. bottom: 0.023
  16774. }
  16775. },
  16776. },
  16777. [
  16778. {
  16779. name: "Normal",
  16780. height: math.unit(7 + 5 / 12, "feet"),
  16781. default: true
  16782. },
  16783. {
  16784. name: "Upsized",
  16785. height: math.unit(20, "feet")
  16786. },
  16787. ]
  16788. ))
  16789. characterMakers.push(() => makeCharacter(
  16790. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16791. {
  16792. front: {
  16793. height: math.unit(7, "feet"),
  16794. weight: math.unit(230, "lb"),
  16795. name: "Front",
  16796. image: {
  16797. source: "./media/characters/nakata/front.svg",
  16798. extra: 1.005,
  16799. bottom: 0.01
  16800. }
  16801. },
  16802. },
  16803. [
  16804. {
  16805. name: "Normal",
  16806. height: math.unit(7, "feet"),
  16807. default: true
  16808. },
  16809. {
  16810. name: "Big",
  16811. height: math.unit(14, "feet")
  16812. },
  16813. {
  16814. name: "Macro",
  16815. height: math.unit(400, "feet")
  16816. },
  16817. ]
  16818. ))
  16819. characterMakers.push(() => makeCharacter(
  16820. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16821. {
  16822. front: {
  16823. height: math.unit(4.91, "feet"),
  16824. weight: math.unit(100, "lb"),
  16825. name: "Front",
  16826. image: {
  16827. source: "./media/characters/lily/front.svg",
  16828. extra: 1585 / 1415,
  16829. bottom: 0.02
  16830. }
  16831. },
  16832. },
  16833. [
  16834. {
  16835. name: "Normal",
  16836. height: math.unit(4.91, "feet"),
  16837. default: true
  16838. },
  16839. ]
  16840. ))
  16841. characterMakers.push(() => makeCharacter(
  16842. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16843. {
  16844. laying: {
  16845. height: math.unit(4 + 4 / 12, "feet"),
  16846. weight: math.unit(600, "lb"),
  16847. name: "Laying",
  16848. image: {
  16849. source: "./media/characters/sheila/laying.svg",
  16850. extra: 1333 / 1265,
  16851. bottom: 0.16
  16852. }
  16853. },
  16854. },
  16855. [
  16856. {
  16857. name: "Normal",
  16858. height: math.unit(4 + 4 / 12, "feet"),
  16859. default: true
  16860. },
  16861. ]
  16862. ))
  16863. characterMakers.push(() => makeCharacter(
  16864. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16865. {
  16866. front: {
  16867. height: math.unit(6, "feet"),
  16868. weight: math.unit(190, "lb"),
  16869. name: "Front",
  16870. image: {
  16871. source: "./media/characters/sax/front.svg",
  16872. extra: 1187 / 973,
  16873. bottom: 0.042
  16874. }
  16875. },
  16876. },
  16877. [
  16878. {
  16879. name: "Micro",
  16880. height: math.unit(4, "inches"),
  16881. default: true
  16882. },
  16883. ]
  16884. ))
  16885. characterMakers.push(() => makeCharacter(
  16886. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16887. {
  16888. front: {
  16889. height: math.unit(6, "feet"),
  16890. weight: math.unit(150, "lb"),
  16891. name: "Front",
  16892. image: {
  16893. source: "./media/characters/pandora/front.svg",
  16894. extra: 2720 / 2556,
  16895. bottom: 0.015
  16896. }
  16897. },
  16898. back: {
  16899. height: math.unit(6, "feet"),
  16900. weight: math.unit(150, "lb"),
  16901. name: "Back",
  16902. image: {
  16903. source: "./media/characters/pandora/back.svg",
  16904. extra: 2720 / 2556,
  16905. bottom: 0.01
  16906. }
  16907. },
  16908. beans: {
  16909. height: math.unit(6 / 8, "feet"),
  16910. name: "Beans",
  16911. image: {
  16912. source: "./media/characters/pandora/beans.svg"
  16913. }
  16914. },
  16915. collar: {
  16916. height: math.unit(0.31, "feet"),
  16917. name: "Collar",
  16918. image: {
  16919. source: "./media/characters/pandora/collar.svg"
  16920. }
  16921. },
  16922. skirt: {
  16923. height: math.unit(6, "feet"),
  16924. weight: math.unit(150, "lb"),
  16925. name: "Skirt",
  16926. image: {
  16927. source: "./media/characters/pandora/skirt.svg",
  16928. extra: 1622 / 1525,
  16929. bottom: 0.015
  16930. }
  16931. },
  16932. hoodie: {
  16933. height: math.unit(6, "feet"),
  16934. weight: math.unit(150, "lb"),
  16935. name: "Hoodie",
  16936. image: {
  16937. source: "./media/characters/pandora/hoodie.svg",
  16938. extra: 1622 / 1525,
  16939. bottom: 0.015
  16940. }
  16941. },
  16942. casual: {
  16943. height: math.unit(6, "feet"),
  16944. weight: math.unit(150, "lb"),
  16945. name: "Casual",
  16946. image: {
  16947. source: "./media/characters/pandora/casual.svg",
  16948. extra: 1622 / 1525,
  16949. bottom: 0.015
  16950. }
  16951. },
  16952. },
  16953. [
  16954. {
  16955. name: "Normal",
  16956. height: math.unit(6, "feet")
  16957. },
  16958. {
  16959. name: "Big Steppy",
  16960. height: math.unit(1, "km"),
  16961. default: true
  16962. },
  16963. {
  16964. name: "Galactic Steppy",
  16965. height: math.unit(2, "gigameters")
  16966. },
  16967. ]
  16968. ))
  16969. characterMakers.push(() => makeCharacter(
  16970. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16971. {
  16972. side: {
  16973. height: math.unit(10, "feet"),
  16974. weight: math.unit(800, "kg"),
  16975. name: "Side",
  16976. image: {
  16977. source: "./media/characters/venio-darcony/side.svg",
  16978. extra: 1373 / 1003,
  16979. bottom: 0.037
  16980. }
  16981. },
  16982. front: {
  16983. height: math.unit(19, "feet"),
  16984. weight: math.unit(800, "kg"),
  16985. name: "Front",
  16986. image: {
  16987. source: "./media/characters/venio-darcony/front.svg"
  16988. }
  16989. },
  16990. back: {
  16991. height: math.unit(19, "feet"),
  16992. weight: math.unit(800, "kg"),
  16993. name: "Back",
  16994. image: {
  16995. source: "./media/characters/venio-darcony/back.svg"
  16996. }
  16997. },
  16998. sideNsfw: {
  16999. height: math.unit(10, "feet"),
  17000. weight: math.unit(800, "kg"),
  17001. name: "Side (NSFW)",
  17002. image: {
  17003. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17004. extra: 1373 / 1003,
  17005. bottom: 0.037
  17006. }
  17007. },
  17008. frontNsfw: {
  17009. height: math.unit(19, "feet"),
  17010. weight: math.unit(800, "kg"),
  17011. name: "Front (NSFW)",
  17012. image: {
  17013. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17014. }
  17015. },
  17016. backNsfw: {
  17017. height: math.unit(19, "feet"),
  17018. weight: math.unit(800, "kg"),
  17019. name: "Back (NSFW)",
  17020. image: {
  17021. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17022. }
  17023. },
  17024. sideArmored: {
  17025. height: math.unit(10, "feet"),
  17026. weight: math.unit(800, "kg"),
  17027. name: "Side (Armored)",
  17028. image: {
  17029. source: "./media/characters/venio-darcony/side-armored.svg",
  17030. extra: 1373 / 1003,
  17031. bottom: 0.037
  17032. }
  17033. },
  17034. frontArmored: {
  17035. height: math.unit(19, "feet"),
  17036. weight: math.unit(900, "kg"),
  17037. name: "Front (Armored)",
  17038. image: {
  17039. source: "./media/characters/venio-darcony/front-armored.svg"
  17040. }
  17041. },
  17042. backArmored: {
  17043. height: math.unit(19, "feet"),
  17044. weight: math.unit(900, "kg"),
  17045. name: "Back (Armored)",
  17046. image: {
  17047. source: "./media/characters/venio-darcony/back-armored.svg"
  17048. }
  17049. },
  17050. sword: {
  17051. height: math.unit(10, "feet"),
  17052. weight: math.unit(50, "lb"),
  17053. name: "Sword",
  17054. image: {
  17055. source: "./media/characters/venio-darcony/sword.svg"
  17056. }
  17057. },
  17058. },
  17059. [
  17060. {
  17061. name: "Normal",
  17062. height: math.unit(10, "feet")
  17063. },
  17064. {
  17065. name: "Macro",
  17066. height: math.unit(130, "feet"),
  17067. default: true
  17068. },
  17069. {
  17070. name: "Macro+",
  17071. height: math.unit(240, "feet")
  17072. },
  17073. ]
  17074. ))
  17075. characterMakers.push(() => makeCharacter(
  17076. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17077. {
  17078. front: {
  17079. height: math.unit(6, "feet"),
  17080. weight: math.unit(150, "lb"),
  17081. name: "Front",
  17082. image: {
  17083. source: "./media/characters/veski/front.svg",
  17084. extra: 1299 / 1225,
  17085. bottom: 0.04
  17086. }
  17087. },
  17088. back: {
  17089. height: math.unit(6, "feet"),
  17090. weight: math.unit(150, "lb"),
  17091. name: "Back",
  17092. image: {
  17093. source: "./media/characters/veski/back.svg",
  17094. extra: 1299 / 1225,
  17095. bottom: 0.008
  17096. }
  17097. },
  17098. maw: {
  17099. height: math.unit(1.5 * 1.21, "feet"),
  17100. name: "Maw",
  17101. image: {
  17102. source: "./media/characters/veski/maw.svg"
  17103. }
  17104. },
  17105. },
  17106. [
  17107. {
  17108. name: "Macro",
  17109. height: math.unit(2, "km"),
  17110. default: true
  17111. },
  17112. ]
  17113. ))
  17114. characterMakers.push(() => makeCharacter(
  17115. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17116. {
  17117. front: {
  17118. height: math.unit(5 + 7 / 12, "feet"),
  17119. name: "Front",
  17120. image: {
  17121. source: "./media/characters/isabelle/front.svg",
  17122. extra: 2130 / 1976,
  17123. bottom: 0.05
  17124. }
  17125. },
  17126. },
  17127. [
  17128. {
  17129. name: "Supermicro",
  17130. height: math.unit(10, "micrometers")
  17131. },
  17132. {
  17133. name: "Micro",
  17134. height: math.unit(1, "inch")
  17135. },
  17136. {
  17137. name: "Tiny",
  17138. height: math.unit(5, "inches")
  17139. },
  17140. {
  17141. name: "Standard",
  17142. height: math.unit(5 + 7 / 12, "inches")
  17143. },
  17144. {
  17145. name: "Macro",
  17146. height: math.unit(80, "meters"),
  17147. default: true
  17148. },
  17149. {
  17150. name: "Megamacro",
  17151. height: math.unit(250, "meters")
  17152. },
  17153. {
  17154. name: "Gigamacro",
  17155. height: math.unit(5, "km")
  17156. },
  17157. {
  17158. name: "Cosmic",
  17159. height: math.unit(2.5e6, "miles")
  17160. },
  17161. ]
  17162. ))
  17163. characterMakers.push(() => makeCharacter(
  17164. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17165. {
  17166. front: {
  17167. height: math.unit(6, "feet"),
  17168. weight: math.unit(150, "lb"),
  17169. name: "Front",
  17170. image: {
  17171. source: "./media/characters/hanzo/front.svg",
  17172. extra: 374 / 344,
  17173. bottom: 0.02
  17174. }
  17175. },
  17176. },
  17177. [
  17178. {
  17179. name: "Normal",
  17180. height: math.unit(8, "feet"),
  17181. default: true
  17182. },
  17183. ]
  17184. ))
  17185. characterMakers.push(() => makeCharacter(
  17186. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17187. {
  17188. front: {
  17189. height: math.unit(7, "feet"),
  17190. weight: math.unit(130, "lb"),
  17191. name: "Front",
  17192. image: {
  17193. source: "./media/characters/anna/front.svg",
  17194. extra: 169 / 145,
  17195. bottom: 0.06
  17196. }
  17197. },
  17198. full: {
  17199. height: math.unit(4.96, "feet"),
  17200. weight: math.unit(220, "lb"),
  17201. name: "Full",
  17202. image: {
  17203. source: "./media/characters/anna/full.svg",
  17204. extra: 138 / 114,
  17205. bottom: 0.15
  17206. }
  17207. },
  17208. tongue: {
  17209. height: math.unit(2.53, "feet"),
  17210. name: "Tongue",
  17211. image: {
  17212. source: "./media/characters/anna/tongue.svg"
  17213. }
  17214. },
  17215. },
  17216. [
  17217. {
  17218. name: "Normal",
  17219. height: math.unit(7, "feet"),
  17220. default: true
  17221. },
  17222. ]
  17223. ))
  17224. characterMakers.push(() => makeCharacter(
  17225. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17226. {
  17227. front: {
  17228. height: math.unit(7, "feet"),
  17229. weight: math.unit(150, "lb"),
  17230. name: "Front",
  17231. image: {
  17232. source: "./media/characters/ian-corvid/front.svg",
  17233. extra: 150 / 142,
  17234. bottom: 0.02
  17235. }
  17236. },
  17237. back: {
  17238. height: math.unit(7, "feet"),
  17239. weight: math.unit(150, "lb"),
  17240. name: "Back",
  17241. image: {
  17242. source: "./media/characters/ian-corvid/back.svg",
  17243. extra: 150 / 143,
  17244. bottom: 0.01
  17245. }
  17246. },
  17247. stomping: {
  17248. height: math.unit(7, "feet"),
  17249. weight: math.unit(150, "lb"),
  17250. name: "Stomping",
  17251. image: {
  17252. source: "./media/characters/ian-corvid/stomping.svg",
  17253. extra: 76 / 72
  17254. }
  17255. },
  17256. sitting: {
  17257. height: math.unit(7 / 1.8, "feet"),
  17258. weight: math.unit(150, "lb"),
  17259. name: "Sitting",
  17260. image: {
  17261. source: "./media/characters/ian-corvid/sitting.svg",
  17262. extra: 1400 / 1269,
  17263. bottom: 0.15
  17264. }
  17265. },
  17266. },
  17267. [
  17268. {
  17269. name: "Tiny Microw",
  17270. height: math.unit(1, "inch")
  17271. },
  17272. {
  17273. name: "Microw",
  17274. height: math.unit(6, "inches")
  17275. },
  17276. {
  17277. name: "Crow",
  17278. height: math.unit(7 + 1 / 12, "feet"),
  17279. default: true
  17280. },
  17281. {
  17282. name: "Macrow",
  17283. height: math.unit(176, "feet")
  17284. },
  17285. ]
  17286. ))
  17287. characterMakers.push(() => makeCharacter(
  17288. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17289. {
  17290. front: {
  17291. height: math.unit(5 + 7 / 12, "feet"),
  17292. weight: math.unit(147, "lb"),
  17293. name: "Front",
  17294. image: {
  17295. source: "./media/characters/natalie-kellon/front.svg",
  17296. extra: 1214 / 1141,
  17297. bottom: 0.02
  17298. }
  17299. },
  17300. },
  17301. [
  17302. {
  17303. name: "Micro",
  17304. height: math.unit(1 / 16, "inch")
  17305. },
  17306. {
  17307. name: "Tiny",
  17308. height: math.unit(4, "inches")
  17309. },
  17310. {
  17311. name: "Normal",
  17312. height: math.unit(5 + 7 / 12, "feet"),
  17313. default: true
  17314. },
  17315. {
  17316. name: "Amazon",
  17317. height: math.unit(12, "feet")
  17318. },
  17319. {
  17320. name: "Giantess",
  17321. height: math.unit(160, "meters")
  17322. },
  17323. {
  17324. name: "Titaness",
  17325. height: math.unit(800, "meters")
  17326. },
  17327. ]
  17328. ))
  17329. characterMakers.push(() => makeCharacter(
  17330. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17331. {
  17332. front: {
  17333. height: math.unit(6, "feet"),
  17334. weight: math.unit(150, "lb"),
  17335. name: "Front",
  17336. image: {
  17337. source: "./media/characters/alluria/front.svg",
  17338. extra: 806 / 738,
  17339. bottom: 0.01
  17340. }
  17341. },
  17342. side: {
  17343. height: math.unit(6, "feet"),
  17344. weight: math.unit(150, "lb"),
  17345. name: "Side",
  17346. image: {
  17347. source: "./media/characters/alluria/side.svg",
  17348. extra: 800 / 750,
  17349. }
  17350. },
  17351. back: {
  17352. height: math.unit(6, "feet"),
  17353. weight: math.unit(150, "lb"),
  17354. name: "Back",
  17355. image: {
  17356. source: "./media/characters/alluria/back.svg",
  17357. extra: 806 / 738,
  17358. }
  17359. },
  17360. frontMaid: {
  17361. height: math.unit(6, "feet"),
  17362. weight: math.unit(150, "lb"),
  17363. name: "Front (Maid)",
  17364. image: {
  17365. source: "./media/characters/alluria/front-maid.svg",
  17366. extra: 806 / 738,
  17367. bottom: 0.01
  17368. }
  17369. },
  17370. sideMaid: {
  17371. height: math.unit(6, "feet"),
  17372. weight: math.unit(150, "lb"),
  17373. name: "Side (Maid)",
  17374. image: {
  17375. source: "./media/characters/alluria/side-maid.svg",
  17376. extra: 800 / 750,
  17377. bottom: 0.005
  17378. }
  17379. },
  17380. backMaid: {
  17381. height: math.unit(6, "feet"),
  17382. weight: math.unit(150, "lb"),
  17383. name: "Back (Maid)",
  17384. image: {
  17385. source: "./media/characters/alluria/back-maid.svg",
  17386. extra: 806 / 738,
  17387. }
  17388. },
  17389. },
  17390. [
  17391. {
  17392. name: "Micro",
  17393. height: math.unit(6, "inches"),
  17394. default: true
  17395. },
  17396. ]
  17397. ))
  17398. characterMakers.push(() => makeCharacter(
  17399. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17400. {
  17401. front: {
  17402. height: math.unit(6, "feet"),
  17403. weight: math.unit(150, "lb"),
  17404. name: "Front",
  17405. image: {
  17406. source: "./media/characters/kyle/front.svg",
  17407. extra: 1069 / 962,
  17408. bottom: 77.228 / 1727.45
  17409. }
  17410. },
  17411. },
  17412. [
  17413. {
  17414. name: "Macro",
  17415. height: math.unit(150, "feet"),
  17416. default: true
  17417. },
  17418. ]
  17419. ))
  17420. characterMakers.push(() => makeCharacter(
  17421. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17422. {
  17423. front: {
  17424. height: math.unit(6, "feet"),
  17425. weight: math.unit(300, "lb"),
  17426. name: "Front",
  17427. image: {
  17428. source: "./media/characters/duncan/front.svg",
  17429. extra: 1650 / 1482,
  17430. bottom: 0.05
  17431. }
  17432. },
  17433. },
  17434. [
  17435. {
  17436. name: "Macro",
  17437. height: math.unit(100, "feet"),
  17438. default: true
  17439. },
  17440. ]
  17441. ))
  17442. characterMakers.push(() => makeCharacter(
  17443. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17444. {
  17445. front: {
  17446. height: math.unit(5 + 4 / 12, "feet"),
  17447. weight: math.unit(220, "lb"),
  17448. name: "Front",
  17449. image: {
  17450. source: "./media/characters/memory/front.svg",
  17451. extra: 3641 / 3545,
  17452. bottom: 0.03
  17453. }
  17454. },
  17455. back: {
  17456. height: math.unit(5 + 4 / 12, "feet"),
  17457. weight: math.unit(220, "lb"),
  17458. name: "Back",
  17459. image: {
  17460. source: "./media/characters/memory/back.svg",
  17461. extra: 3641 / 3545,
  17462. bottom: 0.025
  17463. }
  17464. },
  17465. frontSkirt: {
  17466. height: math.unit(5 + 4 / 12, "feet"),
  17467. weight: math.unit(220, "lb"),
  17468. name: "Front (Skirt)",
  17469. image: {
  17470. source: "./media/characters/memory/front-skirt.svg",
  17471. extra: 3641 / 3545,
  17472. bottom: 0.03
  17473. }
  17474. },
  17475. frontDress: {
  17476. height: math.unit(5 + 4 / 12, "feet"),
  17477. weight: math.unit(220, "lb"),
  17478. name: "Front (Dress)",
  17479. image: {
  17480. source: "./media/characters/memory/front-dress.svg",
  17481. extra: 3641 / 3545,
  17482. bottom: 0.03
  17483. }
  17484. },
  17485. },
  17486. [
  17487. {
  17488. name: "Micro",
  17489. height: math.unit(6, "inches"),
  17490. default: true
  17491. },
  17492. {
  17493. name: "Normal",
  17494. height: math.unit(5 + 4 / 12, "feet")
  17495. },
  17496. ]
  17497. ))
  17498. characterMakers.push(() => makeCharacter(
  17499. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17500. {
  17501. front: {
  17502. height: math.unit(4 + 11 / 12, "feet"),
  17503. weight: math.unit(100, "lb"),
  17504. name: "Front",
  17505. image: {
  17506. source: "./media/characters/luno/front.svg",
  17507. extra: 1535 / 1487,
  17508. bottom: 0.03
  17509. }
  17510. },
  17511. },
  17512. [
  17513. {
  17514. name: "Micro",
  17515. height: math.unit(3, "inches")
  17516. },
  17517. {
  17518. name: "Normal",
  17519. height: math.unit(4 + 11 / 12, "feet"),
  17520. default: true
  17521. },
  17522. {
  17523. name: "Macro",
  17524. height: math.unit(300, "feet")
  17525. },
  17526. {
  17527. name: "Megamacro",
  17528. height: math.unit(700, "miles")
  17529. },
  17530. ]
  17531. ))
  17532. characterMakers.push(() => makeCharacter(
  17533. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17534. {
  17535. front: {
  17536. height: math.unit(6 + 2 / 12, "feet"),
  17537. weight: math.unit(170, "lb"),
  17538. name: "Front",
  17539. image: {
  17540. source: "./media/characters/jamesy/front.svg",
  17541. extra: 440 / 382,
  17542. bottom: 0.005
  17543. }
  17544. },
  17545. },
  17546. [
  17547. {
  17548. name: "Micro",
  17549. height: math.unit(3, "inches")
  17550. },
  17551. {
  17552. name: "Normal",
  17553. height: math.unit(6 + 2 / 12, "feet"),
  17554. default: true
  17555. },
  17556. {
  17557. name: "Macro",
  17558. height: math.unit(300, "feet")
  17559. },
  17560. {
  17561. name: "Megamacro",
  17562. height: math.unit(700, "miles")
  17563. },
  17564. ]
  17565. ))
  17566. characterMakers.push(() => makeCharacter(
  17567. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17568. {
  17569. front: {
  17570. height: math.unit(6, "feet"),
  17571. weight: math.unit(160, "lb"),
  17572. name: "Front",
  17573. image: {
  17574. source: "./media/characters/mark/front.svg",
  17575. extra: 3300 / 3100,
  17576. bottom: 136.42 / 3440.47
  17577. }
  17578. },
  17579. },
  17580. [
  17581. {
  17582. name: "Macro",
  17583. height: math.unit(120, "meters")
  17584. },
  17585. {
  17586. name: "Bigger Macro",
  17587. height: math.unit(350, "meters")
  17588. },
  17589. {
  17590. name: "Megamacro",
  17591. height: math.unit(8, "km"),
  17592. default: true
  17593. },
  17594. {
  17595. name: "Continental",
  17596. height: math.unit(4550, "km")
  17597. },
  17598. {
  17599. name: "Planetary",
  17600. height: math.unit(65000, "km")
  17601. },
  17602. ]
  17603. ))
  17604. characterMakers.push(() => makeCharacter(
  17605. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17606. {
  17607. front: {
  17608. height: math.unit(6, "feet"),
  17609. weight: math.unit(400, "lb"),
  17610. name: "Front",
  17611. image: {
  17612. source: "./media/characters/mac/front.svg",
  17613. extra: 1048 / 987.7,
  17614. bottom: 60 / 1107.6,
  17615. }
  17616. },
  17617. },
  17618. [
  17619. {
  17620. name: "Macro",
  17621. height: math.unit(500, "feet"),
  17622. default: true
  17623. },
  17624. ]
  17625. ))
  17626. characterMakers.push(() => makeCharacter(
  17627. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17628. {
  17629. front: {
  17630. height: math.unit(5 + 2 / 12, "feet"),
  17631. weight: math.unit(190, "lb"),
  17632. name: "Front",
  17633. image: {
  17634. source: "./media/characters/bari/front.svg",
  17635. extra: 3156 / 2880,
  17636. bottom: 0.03
  17637. }
  17638. },
  17639. back: {
  17640. height: math.unit(5 + 2 / 12, "feet"),
  17641. weight: math.unit(190, "lb"),
  17642. name: "Back",
  17643. image: {
  17644. source: "./media/characters/bari/back.svg",
  17645. extra: 3260 / 2834,
  17646. bottom: 0.025
  17647. }
  17648. },
  17649. frontPlush: {
  17650. height: math.unit(5 + 2 / 12, "feet"),
  17651. weight: math.unit(190, "lb"),
  17652. name: "Front (Plush)",
  17653. image: {
  17654. source: "./media/characters/bari/front-plush.svg",
  17655. extra: 1112 / 1061,
  17656. bottom: 0.002
  17657. }
  17658. },
  17659. },
  17660. [
  17661. {
  17662. name: "Micro",
  17663. height: math.unit(3, "inches")
  17664. },
  17665. {
  17666. name: "Normal",
  17667. height: math.unit(5 + 2 / 12, "feet"),
  17668. default: true
  17669. },
  17670. {
  17671. name: "Macro",
  17672. height: math.unit(20, "feet")
  17673. },
  17674. ]
  17675. ))
  17676. characterMakers.push(() => makeCharacter(
  17677. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17678. {
  17679. front: {
  17680. height: math.unit(6 + 1 / 12, "feet"),
  17681. weight: math.unit(275, "lb"),
  17682. name: "Front",
  17683. image: {
  17684. source: "./media/characters/hunter-misha-raven/front.svg"
  17685. }
  17686. },
  17687. },
  17688. [
  17689. {
  17690. name: "Mortal",
  17691. height: math.unit(6 + 1 / 12, "feet")
  17692. },
  17693. {
  17694. name: "Divine",
  17695. height: math.unit(1.12134e34, "parsecs"),
  17696. default: true
  17697. },
  17698. ]
  17699. ))
  17700. characterMakers.push(() => makeCharacter(
  17701. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17702. {
  17703. front: {
  17704. height: math.unit(6 + 3 / 12, "feet"),
  17705. weight: math.unit(220, "lb"),
  17706. name: "Front",
  17707. image: {
  17708. source: "./media/characters/max-calore/front.svg",
  17709. extra: 1700 / 1648,
  17710. bottom: 0.01
  17711. }
  17712. },
  17713. back: {
  17714. height: math.unit(6 + 3 / 12, "feet"),
  17715. weight: math.unit(220, "lb"),
  17716. name: "Back",
  17717. image: {
  17718. source: "./media/characters/max-calore/back.svg",
  17719. extra: 1700 / 1648,
  17720. bottom: 0.01
  17721. }
  17722. },
  17723. },
  17724. [
  17725. {
  17726. name: "Normal",
  17727. height: math.unit(6 + 3 / 12, "feet"),
  17728. default: true
  17729. },
  17730. ]
  17731. ))
  17732. characterMakers.push(() => makeCharacter(
  17733. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17734. {
  17735. side: {
  17736. height: math.unit(2 + 8 / 12, "feet"),
  17737. weight: math.unit(99, "lb"),
  17738. name: "Side",
  17739. image: {
  17740. source: "./media/characters/aspen/side.svg",
  17741. extra: 152 / 138,
  17742. bottom: 0.032
  17743. }
  17744. },
  17745. },
  17746. [
  17747. {
  17748. name: "Normal",
  17749. height: math.unit(2 + 8 / 12, "feet"),
  17750. default: true
  17751. },
  17752. ]
  17753. ))
  17754. characterMakers.push(() => makeCharacter(
  17755. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17756. {
  17757. side: {
  17758. height: math.unit(3 + 2 / 12, "feet"),
  17759. weight: math.unit(224, "lb"),
  17760. name: "Side",
  17761. image: {
  17762. source: "./media/characters/sheila-feral-wolf/side.svg",
  17763. extra: 179 / 166,
  17764. bottom: 0.03
  17765. }
  17766. },
  17767. },
  17768. [
  17769. {
  17770. name: "Normal",
  17771. height: math.unit(3 + 2 / 12, "feet"),
  17772. default: true
  17773. },
  17774. ]
  17775. ))
  17776. characterMakers.push(() => makeCharacter(
  17777. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17778. {
  17779. side: {
  17780. height: math.unit(1 + 9 / 12, "feet"),
  17781. weight: math.unit(38, "lb"),
  17782. name: "Side",
  17783. image: {
  17784. source: "./media/characters/michelle/side.svg",
  17785. extra: 147 / 136.7,
  17786. bottom: 0.03
  17787. }
  17788. },
  17789. },
  17790. [
  17791. {
  17792. name: "Normal",
  17793. height: math.unit(1 + 9 / 12, "feet"),
  17794. default: true
  17795. },
  17796. ]
  17797. ))
  17798. characterMakers.push(() => makeCharacter(
  17799. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17800. {
  17801. front: {
  17802. height: math.unit(1.54, "feet"),
  17803. weight: math.unit(50, "lb"),
  17804. name: "Front",
  17805. image: {
  17806. source: "./media/characters/nino/front.svg"
  17807. }
  17808. },
  17809. },
  17810. [
  17811. {
  17812. name: "Normal",
  17813. height: math.unit(1.54, "feet"),
  17814. default: true
  17815. },
  17816. ]
  17817. ))
  17818. characterMakers.push(() => makeCharacter(
  17819. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17820. {
  17821. front: {
  17822. height: math.unit(1.49, "feet"),
  17823. weight: math.unit(45, "lb"),
  17824. name: "Front",
  17825. image: {
  17826. source: "./media/characters/viola/front.svg"
  17827. }
  17828. },
  17829. },
  17830. [
  17831. {
  17832. name: "Normal",
  17833. height: math.unit(1.49, "feet"),
  17834. default: true
  17835. },
  17836. ]
  17837. ))
  17838. characterMakers.push(() => makeCharacter(
  17839. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17840. {
  17841. front: {
  17842. height: math.unit(6 + 5 / 12, "feet"),
  17843. weight: math.unit(580, "lb"),
  17844. name: "Front",
  17845. image: {
  17846. source: "./media/characters/atlas/front.svg",
  17847. extra: 298.5 / 290,
  17848. bottom: 0.015
  17849. }
  17850. },
  17851. },
  17852. [
  17853. {
  17854. name: "Normal",
  17855. height: math.unit(6 + 5 / 12, "feet"),
  17856. default: true
  17857. },
  17858. ]
  17859. ))
  17860. characterMakers.push(() => makeCharacter(
  17861. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17862. {
  17863. side: {
  17864. height: math.unit(15.6, "inches"),
  17865. weight: math.unit(10, "lb"),
  17866. name: "Side",
  17867. image: {
  17868. source: "./media/characters/davy/side.svg",
  17869. extra: 200 / 170,
  17870. bottom: 0.01
  17871. }
  17872. },
  17873. },
  17874. [
  17875. {
  17876. name: "Normal",
  17877. height: math.unit(15.6, "inches"),
  17878. default: true
  17879. },
  17880. ]
  17881. ))
  17882. characterMakers.push(() => makeCharacter(
  17883. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17884. {
  17885. side: {
  17886. height: math.unit(4 + 8 / 12, "feet"),
  17887. weight: math.unit(166, "lb"),
  17888. name: "Side",
  17889. image: {
  17890. source: "./media/characters/fiona/side.svg",
  17891. extra: 232 / 220,
  17892. bottom: 0.03
  17893. }
  17894. },
  17895. },
  17896. [
  17897. {
  17898. name: "Normal",
  17899. height: math.unit(4 + 8 / 12, "feet"),
  17900. default: true
  17901. },
  17902. ]
  17903. ))
  17904. characterMakers.push(() => makeCharacter(
  17905. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17906. {
  17907. front: {
  17908. height: math.unit(26, "inches"),
  17909. weight: math.unit(35, "lb"),
  17910. name: "Front",
  17911. image: {
  17912. source: "./media/characters/lyla/front.svg",
  17913. bottom: 0.1
  17914. }
  17915. },
  17916. },
  17917. [
  17918. {
  17919. name: "Normal",
  17920. height: math.unit(3, "feet"),
  17921. default: true
  17922. },
  17923. ]
  17924. ))
  17925. characterMakers.push(() => makeCharacter(
  17926. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17927. {
  17928. side: {
  17929. height: math.unit(1.8, "feet"),
  17930. weight: math.unit(44, "lb"),
  17931. name: "Side",
  17932. image: {
  17933. source: "./media/characters/perseus/side.svg",
  17934. bottom: 0.21
  17935. }
  17936. },
  17937. },
  17938. [
  17939. {
  17940. name: "Normal",
  17941. height: math.unit(1.8, "feet"),
  17942. default: true
  17943. },
  17944. ]
  17945. ))
  17946. characterMakers.push(() => makeCharacter(
  17947. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17948. {
  17949. side: {
  17950. height: math.unit(4 + 2 / 12, "feet"),
  17951. weight: math.unit(20, "lb"),
  17952. name: "Side",
  17953. image: {
  17954. source: "./media/characters/remus/side.svg"
  17955. }
  17956. },
  17957. },
  17958. [
  17959. {
  17960. name: "Normal",
  17961. height: math.unit(4 + 2 / 12, "feet"),
  17962. default: true
  17963. },
  17964. ]
  17965. ))
  17966. characterMakers.push(() => makeCharacter(
  17967. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17968. {
  17969. front: {
  17970. height: math.unit(4 + 11 / 12, "feet"),
  17971. weight: math.unit(114, "lb"),
  17972. name: "Front",
  17973. image: {
  17974. source: "./media/characters/raf/front.svg",
  17975. extra: 1504/1339,
  17976. bottom: 26/1530
  17977. }
  17978. },
  17979. side: {
  17980. height: math.unit(4 + 11 / 12, "feet"),
  17981. weight: math.unit(114, "lb"),
  17982. name: "Side",
  17983. image: {
  17984. source: "./media/characters/raf/side.svg",
  17985. extra: 1466/1316,
  17986. bottom: 29/1495
  17987. }
  17988. },
  17989. paw: {
  17990. height: math.unit(1.45, "feet"),
  17991. name: "Paw",
  17992. image: {
  17993. source: "./media/characters/raf/paw.svg"
  17994. },
  17995. extraAttributes: {
  17996. "toeSize": {
  17997. name: "Toe Size",
  17998. power: 2,
  17999. type: "area",
  18000. base: math.unit(0.004, "m^2")
  18001. },
  18002. "padSize": {
  18003. name: "Pad Size",
  18004. power: 2,
  18005. type: "area",
  18006. base: math.unit(0.04, "m^2")
  18007. },
  18008. "footSize": {
  18009. name: "Foot Size",
  18010. power: 2,
  18011. type: "area",
  18012. base: math.unit(0.08, "m^2")
  18013. },
  18014. }
  18015. },
  18016. },
  18017. [
  18018. {
  18019. name: "Micro",
  18020. height: math.unit(2, "inches")
  18021. },
  18022. {
  18023. name: "Normal",
  18024. height: math.unit(4 + 11 / 12, "feet"),
  18025. default: true
  18026. },
  18027. {
  18028. name: "Macro",
  18029. height: math.unit(70, "feet")
  18030. },
  18031. ]
  18032. ))
  18033. characterMakers.push(() => makeCharacter(
  18034. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18035. {
  18036. front: {
  18037. height: math.unit(1.5, "meters"),
  18038. weight: math.unit(68, "kg"),
  18039. name: "Front",
  18040. image: {
  18041. source: "./media/characters/liam-einarr/front.svg",
  18042. extra: 2822 / 2666
  18043. }
  18044. },
  18045. back: {
  18046. height: math.unit(1.5, "meters"),
  18047. weight: math.unit(68, "kg"),
  18048. name: "Back",
  18049. image: {
  18050. source: "./media/characters/liam-einarr/back.svg",
  18051. extra: 2822 / 2666,
  18052. bottom: 0.015
  18053. }
  18054. },
  18055. },
  18056. [
  18057. {
  18058. name: "Normal",
  18059. height: math.unit(1.5, "meters"),
  18060. default: true
  18061. },
  18062. {
  18063. name: "Macro",
  18064. height: math.unit(150, "meters")
  18065. },
  18066. {
  18067. name: "Megamacro",
  18068. height: math.unit(35, "km")
  18069. },
  18070. ]
  18071. ))
  18072. characterMakers.push(() => makeCharacter(
  18073. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18074. {
  18075. front: {
  18076. height: math.unit(6, "feet"),
  18077. weight: math.unit(75, "kg"),
  18078. name: "Front",
  18079. image: {
  18080. source: "./media/characters/linda/front.svg",
  18081. extra: 930 / 874,
  18082. bottom: 0.004
  18083. }
  18084. },
  18085. },
  18086. [
  18087. {
  18088. name: "Normal",
  18089. height: math.unit(6, "feet"),
  18090. default: true
  18091. },
  18092. ]
  18093. ))
  18094. characterMakers.push(() => makeCharacter(
  18095. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18096. {
  18097. front: {
  18098. height: math.unit(6 + 8 / 12, "feet"),
  18099. weight: math.unit(220, "lb"),
  18100. name: "Front",
  18101. image: {
  18102. source: "./media/characters/caylex/front.svg",
  18103. extra: 821 / 772,
  18104. bottom: 0.07
  18105. }
  18106. },
  18107. back: {
  18108. height: math.unit(6 + 8 / 12, "feet"),
  18109. weight: math.unit(220, "lb"),
  18110. name: "Back",
  18111. image: {
  18112. source: "./media/characters/caylex/back.svg",
  18113. extra: 821 / 772,
  18114. bottom: 0.022
  18115. }
  18116. },
  18117. hand: {
  18118. height: math.unit(1.25, "feet"),
  18119. name: "Hand",
  18120. image: {
  18121. source: "./media/characters/caylex/hand.svg"
  18122. }
  18123. },
  18124. foot: {
  18125. height: math.unit(1.6, "feet"),
  18126. name: "Foot",
  18127. image: {
  18128. source: "./media/characters/caylex/foot.svg"
  18129. }
  18130. },
  18131. armored: {
  18132. height: math.unit(6 + 8 / 12, "feet"),
  18133. weight: math.unit(250, "lb"),
  18134. name: "Armored",
  18135. image: {
  18136. source: "./media/characters/caylex/armored.svg",
  18137. extra: 1420 / 1310,
  18138. bottom: 0.045
  18139. }
  18140. },
  18141. },
  18142. [
  18143. {
  18144. name: "Normal",
  18145. height: math.unit(6 + 8 / 12, "feet"),
  18146. default: true
  18147. },
  18148. {
  18149. name: "Normal+",
  18150. height: math.unit(12, "feet")
  18151. },
  18152. ]
  18153. ))
  18154. characterMakers.push(() => makeCharacter(
  18155. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18156. {
  18157. front: {
  18158. height: math.unit(7 + 6 / 12, "feet"),
  18159. weight: math.unit(288, "lb"),
  18160. name: "Front",
  18161. image: {
  18162. source: "./media/characters/alana/front.svg",
  18163. extra: 679 / 653,
  18164. bottom: 22.5 / 701
  18165. }
  18166. },
  18167. },
  18168. [
  18169. {
  18170. name: "Normal",
  18171. height: math.unit(7 + 6 / 12, "feet")
  18172. },
  18173. {
  18174. name: "Large",
  18175. height: math.unit(50, "feet")
  18176. },
  18177. {
  18178. name: "Macro",
  18179. height: math.unit(100, "feet"),
  18180. default: true
  18181. },
  18182. {
  18183. name: "Macro+",
  18184. height: math.unit(200, "feet")
  18185. },
  18186. ]
  18187. ))
  18188. characterMakers.push(() => makeCharacter(
  18189. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18190. {
  18191. front: {
  18192. height: math.unit(6 + 1 / 12, "feet"),
  18193. weight: math.unit(210, "lb"),
  18194. name: "Front",
  18195. image: {
  18196. source: "./media/characters/hasani/front.svg",
  18197. extra: 244 / 232,
  18198. bottom: 0.01
  18199. }
  18200. },
  18201. back: {
  18202. height: math.unit(6 + 1 / 12, "feet"),
  18203. weight: math.unit(210, "lb"),
  18204. name: "Back",
  18205. image: {
  18206. source: "./media/characters/hasani/back.svg",
  18207. extra: 244 / 232,
  18208. bottom: 0.01
  18209. }
  18210. },
  18211. },
  18212. [
  18213. {
  18214. name: "Normal",
  18215. height: math.unit(6 + 1 / 12, "feet")
  18216. },
  18217. {
  18218. name: "Macro",
  18219. height: math.unit(175, "feet"),
  18220. default: true
  18221. },
  18222. ]
  18223. ))
  18224. characterMakers.push(() => makeCharacter(
  18225. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18226. {
  18227. front: {
  18228. height: math.unit(1.82, "meters"),
  18229. weight: math.unit(140, "lb"),
  18230. name: "Front",
  18231. image: {
  18232. source: "./media/characters/nita/front.svg",
  18233. extra: 2473 / 2363,
  18234. bottom: 0.01
  18235. }
  18236. },
  18237. },
  18238. [
  18239. {
  18240. name: "Normal",
  18241. height: math.unit(1.82, "m")
  18242. },
  18243. {
  18244. name: "Macro",
  18245. height: math.unit(300, "m")
  18246. },
  18247. {
  18248. name: "Mistake Canon",
  18249. height: math.unit(0.5, "miles"),
  18250. default: true
  18251. },
  18252. {
  18253. name: "Big Mistake",
  18254. height: math.unit(13, "miles")
  18255. },
  18256. {
  18257. name: "Playing God",
  18258. height: math.unit(2450, "miles")
  18259. },
  18260. ]
  18261. ))
  18262. characterMakers.push(() => makeCharacter(
  18263. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18264. {
  18265. front: {
  18266. height: math.unit(4, "feet"),
  18267. weight: math.unit(120, "lb"),
  18268. name: "Front",
  18269. image: {
  18270. source: "./media/characters/shiriko/front.svg",
  18271. extra: 970/934,
  18272. bottom: 5/975
  18273. }
  18274. },
  18275. },
  18276. [
  18277. {
  18278. name: "Normal",
  18279. height: math.unit(4, "feet"),
  18280. default: true
  18281. },
  18282. ]
  18283. ))
  18284. characterMakers.push(() => makeCharacter(
  18285. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18286. {
  18287. front: {
  18288. height: math.unit(6, "feet"),
  18289. name: "front",
  18290. image: {
  18291. source: "./media/characters/deja/front.svg",
  18292. extra: 926 / 840,
  18293. bottom: 0.07
  18294. }
  18295. },
  18296. },
  18297. [
  18298. {
  18299. name: "Planck Length",
  18300. height: math.unit(1.6e-35, "meters")
  18301. },
  18302. {
  18303. name: "Normal",
  18304. height: math.unit(30.48, "meters"),
  18305. default: true
  18306. },
  18307. {
  18308. name: "Universal",
  18309. height: math.unit(8.8e26, "meters")
  18310. },
  18311. ]
  18312. ))
  18313. characterMakers.push(() => makeCharacter(
  18314. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18315. {
  18316. side: {
  18317. height: math.unit(8, "feet"),
  18318. weight: math.unit(6300, "lb"),
  18319. name: "Side",
  18320. image: {
  18321. source: "./media/characters/anima/side.svg",
  18322. bottom: 0.035
  18323. }
  18324. },
  18325. },
  18326. [
  18327. {
  18328. name: "Normal",
  18329. height: math.unit(8, "feet"),
  18330. default: true
  18331. },
  18332. ]
  18333. ))
  18334. characterMakers.push(() => makeCharacter(
  18335. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18336. {
  18337. front: {
  18338. height: math.unit(8, "feet"),
  18339. weight: math.unit(350, "lb"),
  18340. name: "Front",
  18341. image: {
  18342. source: "./media/characters/bianca/front.svg",
  18343. extra: 234 / 225,
  18344. bottom: 0.03
  18345. }
  18346. },
  18347. },
  18348. [
  18349. {
  18350. name: "Normal",
  18351. height: math.unit(8, "feet"),
  18352. default: true
  18353. },
  18354. ]
  18355. ))
  18356. characterMakers.push(() => makeCharacter(
  18357. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18358. {
  18359. front: {
  18360. height: math.unit(11 + 5/12, "feet"),
  18361. weight: math.unit(1200, "lb"),
  18362. name: "Front",
  18363. image: {
  18364. source: "./media/characters/adinia/front.svg",
  18365. extra: 1767/1641,
  18366. bottom: 44/1811
  18367. },
  18368. extraAttributes: {
  18369. "energyIntake": {
  18370. name: "Energy Intake",
  18371. power: 3,
  18372. type: "energy",
  18373. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18374. },
  18375. }
  18376. },
  18377. back: {
  18378. height: math.unit(11 + 5/12, "feet"),
  18379. weight: math.unit(1200, "lb"),
  18380. name: "Back",
  18381. image: {
  18382. source: "./media/characters/adinia/back.svg",
  18383. extra: 1834/1684,
  18384. bottom: 14/1848
  18385. },
  18386. extraAttributes: {
  18387. "energyIntake": {
  18388. name: "Energy Intake",
  18389. power: 3,
  18390. type: "energy",
  18391. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18392. },
  18393. }
  18394. },
  18395. maw: {
  18396. height: math.unit(3.79, "feet"),
  18397. name: "Maw",
  18398. image: {
  18399. source: "./media/characters/adinia/maw.svg"
  18400. }
  18401. },
  18402. rump: {
  18403. height: math.unit(4.6, "feet"),
  18404. name: "Rump",
  18405. image: {
  18406. source: "./media/characters/adinia/rump.svg"
  18407. }
  18408. },
  18409. },
  18410. [
  18411. {
  18412. name: "Normal",
  18413. height: math.unit(11 + 5 / 12, "feet"),
  18414. default: true
  18415. },
  18416. ]
  18417. ))
  18418. characterMakers.push(() => makeCharacter(
  18419. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18420. {
  18421. front: {
  18422. height: math.unit(3, "meters"),
  18423. weight: math.unit(200, "kg"),
  18424. name: "Front",
  18425. image: {
  18426. source: "./media/characters/lykasa/front.svg",
  18427. extra: 1076 / 976,
  18428. bottom: 0.06
  18429. }
  18430. },
  18431. },
  18432. [
  18433. {
  18434. name: "Normal",
  18435. height: math.unit(3, "meters")
  18436. },
  18437. {
  18438. name: "Kaiju",
  18439. height: math.unit(120, "meters"),
  18440. default: true
  18441. },
  18442. {
  18443. name: "Mega Kaiju",
  18444. height: math.unit(240, "km")
  18445. },
  18446. {
  18447. name: "Giga Kaiju",
  18448. height: math.unit(400, "megameters")
  18449. },
  18450. {
  18451. name: "Tera Kaiju",
  18452. height: math.unit(800, "gigameters")
  18453. },
  18454. {
  18455. name: "Kaiju Dragon Goddess",
  18456. height: math.unit(26, "zettaparsecs")
  18457. },
  18458. ]
  18459. ))
  18460. characterMakers.push(() => makeCharacter(
  18461. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18462. {
  18463. side: {
  18464. height: math.unit(283 / 124 * 6, "feet"),
  18465. weight: math.unit(35000, "lb"),
  18466. name: "Side",
  18467. image: {
  18468. source: "./media/characters/malfaren/side.svg",
  18469. extra: 1310/529,
  18470. bottom: 24/1334
  18471. }
  18472. },
  18473. front: {
  18474. height: math.unit(22.36, "feet"),
  18475. weight: math.unit(35000, "lb"),
  18476. name: "Front",
  18477. image: {
  18478. source: "./media/characters/malfaren/front.svg",
  18479. extra: 1237/1115,
  18480. bottom: 32/1269
  18481. }
  18482. },
  18483. maw: {
  18484. height: math.unit(6.9, "feet"),
  18485. name: "Maw",
  18486. image: {
  18487. source: "./media/characters/malfaren/maw.svg"
  18488. }
  18489. },
  18490. dick: {
  18491. height: math.unit(6.19, "feet"),
  18492. name: "Dick",
  18493. image: {
  18494. source: "./media/characters/malfaren/dick.svg"
  18495. }
  18496. },
  18497. eye: {
  18498. height: math.unit(0.69, "feet"),
  18499. name: "Eye",
  18500. image: {
  18501. source: "./media/characters/malfaren/eye.svg"
  18502. }
  18503. },
  18504. },
  18505. [
  18506. {
  18507. name: "Big",
  18508. height: math.unit(283 / 162 * 6, "feet"),
  18509. },
  18510. {
  18511. name: "Bigger",
  18512. height: math.unit(283 / 124 * 6, "feet")
  18513. },
  18514. {
  18515. name: "Massive",
  18516. height: math.unit(283 / 92 * 6, "feet"),
  18517. default: true
  18518. },
  18519. {
  18520. name: "👀💦",
  18521. height: math.unit(283 / 73 * 6, "feet"),
  18522. },
  18523. ]
  18524. ))
  18525. characterMakers.push(() => makeCharacter(
  18526. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18527. {
  18528. front: {
  18529. height: math.unit(1.7, "m"),
  18530. weight: math.unit(70, "kg"),
  18531. name: "Front",
  18532. image: {
  18533. source: "./media/characters/kernel/front.svg",
  18534. extra: 222 / 210,
  18535. bottom: 0.007
  18536. }
  18537. },
  18538. },
  18539. [
  18540. {
  18541. name: "Nano",
  18542. height: math.unit(17, "micrometers")
  18543. },
  18544. {
  18545. name: "Micro",
  18546. height: math.unit(1.7, "mm")
  18547. },
  18548. {
  18549. name: "Small",
  18550. height: math.unit(1.7, "cm")
  18551. },
  18552. {
  18553. name: "Normal",
  18554. height: math.unit(1.7, "m"),
  18555. default: true
  18556. },
  18557. ]
  18558. ))
  18559. characterMakers.push(() => makeCharacter(
  18560. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18561. {
  18562. front: {
  18563. height: math.unit(1.75, "meters"),
  18564. weight: math.unit(65, "kg"),
  18565. name: "Front",
  18566. image: {
  18567. source: "./media/characters/jayne-folest/front.svg",
  18568. extra: 2115 / 2007,
  18569. bottom: 0.02
  18570. }
  18571. },
  18572. back: {
  18573. height: math.unit(1.75, "meters"),
  18574. weight: math.unit(65, "kg"),
  18575. name: "Back",
  18576. image: {
  18577. source: "./media/characters/jayne-folest/back.svg",
  18578. extra: 2115 / 2007,
  18579. bottom: 0.005
  18580. }
  18581. },
  18582. frontClothed: {
  18583. height: math.unit(1.75, "meters"),
  18584. weight: math.unit(65, "kg"),
  18585. name: "Front (Clothed)",
  18586. image: {
  18587. source: "./media/characters/jayne-folest/front-clothed.svg",
  18588. extra: 2115 / 2007,
  18589. bottom: 0.035
  18590. }
  18591. },
  18592. hand: {
  18593. height: math.unit(1 / 1.260, "feet"),
  18594. name: "Hand",
  18595. image: {
  18596. source: "./media/characters/jayne-folest/hand.svg"
  18597. }
  18598. },
  18599. foot: {
  18600. height: math.unit(1 / 0.918, "feet"),
  18601. name: "Foot",
  18602. image: {
  18603. source: "./media/characters/jayne-folest/foot.svg"
  18604. }
  18605. },
  18606. },
  18607. [
  18608. {
  18609. name: "Micro",
  18610. height: math.unit(4, "cm")
  18611. },
  18612. {
  18613. name: "Normal",
  18614. height: math.unit(1.75, "meters")
  18615. },
  18616. {
  18617. name: "Macro",
  18618. height: math.unit(47.5, "meters"),
  18619. default: true
  18620. },
  18621. ]
  18622. ))
  18623. characterMakers.push(() => makeCharacter(
  18624. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18625. {
  18626. front: {
  18627. height: math.unit(180, "cm"),
  18628. weight: math.unit(70, "kg"),
  18629. name: "Front",
  18630. image: {
  18631. source: "./media/characters/algier/front.svg",
  18632. extra: 596 / 572,
  18633. bottom: 0.04
  18634. }
  18635. },
  18636. back: {
  18637. height: math.unit(180, "cm"),
  18638. weight: math.unit(70, "kg"),
  18639. name: "Back",
  18640. image: {
  18641. source: "./media/characters/algier/back.svg",
  18642. extra: 596 / 572,
  18643. bottom: 0.025
  18644. }
  18645. },
  18646. frontdressed: {
  18647. height: math.unit(180, "cm"),
  18648. weight: math.unit(150, "kg"),
  18649. name: "Front-dressed",
  18650. image: {
  18651. source: "./media/characters/algier/front-dressed.svg",
  18652. extra: 596 / 572,
  18653. bottom: 0.038
  18654. }
  18655. },
  18656. },
  18657. [
  18658. {
  18659. name: "Micro",
  18660. height: math.unit(5, "cm")
  18661. },
  18662. {
  18663. name: "Normal",
  18664. height: math.unit(180, "cm"),
  18665. default: true
  18666. },
  18667. {
  18668. name: "Macro",
  18669. height: math.unit(64, "m")
  18670. },
  18671. ]
  18672. ))
  18673. characterMakers.push(() => makeCharacter(
  18674. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18675. {
  18676. upright: {
  18677. height: math.unit(7, "feet"),
  18678. weight: math.unit(300, "lb"),
  18679. name: "Upright",
  18680. image: {
  18681. source: "./media/characters/pretzel/upright.svg",
  18682. extra: 534 / 522,
  18683. bottom: 0.065
  18684. }
  18685. },
  18686. sprawling: {
  18687. height: math.unit(3.75, "feet"),
  18688. weight: math.unit(300, "lb"),
  18689. name: "Sprawling",
  18690. image: {
  18691. source: "./media/characters/pretzel/sprawling.svg",
  18692. extra: 314 / 281,
  18693. bottom: 0.1
  18694. }
  18695. },
  18696. tongue: {
  18697. height: math.unit(2, "feet"),
  18698. name: "Tongue",
  18699. image: {
  18700. source: "./media/characters/pretzel/tongue.svg"
  18701. }
  18702. },
  18703. },
  18704. [
  18705. {
  18706. name: "Normal",
  18707. height: math.unit(7, "feet"),
  18708. default: true
  18709. },
  18710. {
  18711. name: "Oversized",
  18712. height: math.unit(15, "feet")
  18713. },
  18714. {
  18715. name: "Huge",
  18716. height: math.unit(30, "feet")
  18717. },
  18718. {
  18719. name: "Macro",
  18720. height: math.unit(250, "feet")
  18721. },
  18722. ]
  18723. ))
  18724. characterMakers.push(() => makeCharacter(
  18725. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18726. {
  18727. sideFront: {
  18728. height: math.unit(5 + 2 / 12, "feet"),
  18729. weight: math.unit(120, "lb"),
  18730. name: "Front Side",
  18731. image: {
  18732. source: "./media/characters/roxi/side-front.svg",
  18733. extra: 2924 / 2717,
  18734. bottom: 0.08
  18735. }
  18736. },
  18737. sideBack: {
  18738. height: math.unit(5 + 2 / 12, "feet"),
  18739. weight: math.unit(120, "lb"),
  18740. name: "Back Side",
  18741. image: {
  18742. source: "./media/characters/roxi/side-back.svg",
  18743. extra: 2904 / 2693,
  18744. bottom: 0.06
  18745. }
  18746. },
  18747. front: {
  18748. height: math.unit(5 + 2 / 12, "feet"),
  18749. weight: math.unit(120, "lb"),
  18750. name: "Front",
  18751. image: {
  18752. source: "./media/characters/roxi/front.svg",
  18753. extra: 2028 / 1907,
  18754. bottom: 0.01
  18755. }
  18756. },
  18757. frontAlt: {
  18758. height: math.unit(5 + 2 / 12, "feet"),
  18759. weight: math.unit(120, "lb"),
  18760. name: "Front (Alt)",
  18761. image: {
  18762. source: "./media/characters/roxi/front-alt.svg",
  18763. extra: 1828 / 1798,
  18764. bottom: 0.01
  18765. }
  18766. },
  18767. sitting: {
  18768. height: math.unit(2.8, "feet"),
  18769. weight: math.unit(120, "lb"),
  18770. name: "Sitting",
  18771. image: {
  18772. source: "./media/characters/roxi/sitting.svg",
  18773. extra: 2660 / 2462,
  18774. bottom: 0.1
  18775. }
  18776. },
  18777. },
  18778. [
  18779. {
  18780. name: "Normal",
  18781. height: math.unit(5 + 2 / 12, "feet"),
  18782. default: true
  18783. },
  18784. ]
  18785. ))
  18786. characterMakers.push(() => makeCharacter(
  18787. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18788. {
  18789. side: {
  18790. height: math.unit(55, "feet"),
  18791. weight: math.unit(153, "tons"),
  18792. name: "Side",
  18793. image: {
  18794. source: "./media/characters/shadow/side.svg",
  18795. extra: 701 / 628,
  18796. bottom: 0.02
  18797. }
  18798. },
  18799. flying: {
  18800. height: math.unit(145, "feet"),
  18801. weight: math.unit(153, "tons"),
  18802. name: "Flying",
  18803. image: {
  18804. source: "./media/characters/shadow/flying.svg"
  18805. }
  18806. },
  18807. },
  18808. [
  18809. {
  18810. name: "Normal",
  18811. height: math.unit(55, "feet"),
  18812. default: true
  18813. },
  18814. ]
  18815. ))
  18816. characterMakers.push(() => makeCharacter(
  18817. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18818. {
  18819. front: {
  18820. height: math.unit(6, "feet"),
  18821. weight: math.unit(200, "lb"),
  18822. name: "Front",
  18823. image: {
  18824. source: "./media/characters/marcie/front.svg",
  18825. extra: 960 / 876,
  18826. bottom: 58 / 1017.87
  18827. }
  18828. },
  18829. },
  18830. [
  18831. {
  18832. name: "Macro",
  18833. height: math.unit(1, "mile"),
  18834. default: true
  18835. },
  18836. ]
  18837. ))
  18838. characterMakers.push(() => makeCharacter(
  18839. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18840. {
  18841. front: {
  18842. height: math.unit(7, "feet"),
  18843. weight: math.unit(200, "lb"),
  18844. name: "Front",
  18845. image: {
  18846. source: "./media/characters/kachina/front.svg",
  18847. extra: 1290.68 / 1119,
  18848. bottom: 36.5 / 1327.18
  18849. }
  18850. },
  18851. },
  18852. [
  18853. {
  18854. name: "Normal",
  18855. height: math.unit(7, "feet"),
  18856. default: true
  18857. },
  18858. ]
  18859. ))
  18860. characterMakers.push(() => makeCharacter(
  18861. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18862. {
  18863. looking: {
  18864. height: math.unit(2, "meters"),
  18865. weight: math.unit(300, "kg"),
  18866. name: "Looking",
  18867. image: {
  18868. source: "./media/characters/kash/looking.svg",
  18869. extra: 474 / 344,
  18870. bottom: 0.03
  18871. }
  18872. },
  18873. side: {
  18874. height: math.unit(2, "meters"),
  18875. weight: math.unit(300, "kg"),
  18876. name: "Side",
  18877. image: {
  18878. source: "./media/characters/kash/side.svg",
  18879. extra: 302 / 251,
  18880. bottom: 0.03
  18881. }
  18882. },
  18883. front: {
  18884. height: math.unit(2, "meters"),
  18885. weight: math.unit(300, "kg"),
  18886. name: "Front",
  18887. image: {
  18888. source: "./media/characters/kash/front.svg",
  18889. extra: 495 / 360,
  18890. bottom: 0.015
  18891. }
  18892. },
  18893. },
  18894. [
  18895. {
  18896. name: "Normal",
  18897. height: math.unit(2, "meters"),
  18898. default: true
  18899. },
  18900. {
  18901. name: "Big",
  18902. height: math.unit(3, "meters")
  18903. },
  18904. {
  18905. name: "Large",
  18906. height: math.unit(5, "meters")
  18907. },
  18908. ]
  18909. ))
  18910. characterMakers.push(() => makeCharacter(
  18911. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18912. {
  18913. feeding: {
  18914. height: math.unit(6.7, "feet"),
  18915. weight: math.unit(350, "lb"),
  18916. name: "Feeding",
  18917. image: {
  18918. source: "./media/characters/lalim/feeding.svg",
  18919. }
  18920. },
  18921. },
  18922. [
  18923. {
  18924. name: "Normal",
  18925. height: math.unit(6.7, "feet"),
  18926. default: true
  18927. },
  18928. ]
  18929. ))
  18930. characterMakers.push(() => makeCharacter(
  18931. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18932. {
  18933. front: {
  18934. height: math.unit(9.5, "feet"),
  18935. weight: math.unit(600, "lb"),
  18936. name: "Front",
  18937. image: {
  18938. source: "./media/characters/de'vout/front.svg",
  18939. extra: 1443 / 1328,
  18940. bottom: 0.025
  18941. }
  18942. },
  18943. back: {
  18944. height: math.unit(9.5, "feet"),
  18945. weight: math.unit(600, "lb"),
  18946. name: "Back",
  18947. image: {
  18948. source: "./media/characters/de'vout/back.svg",
  18949. extra: 1443 / 1328
  18950. }
  18951. },
  18952. frontDressed: {
  18953. height: math.unit(9.5, "feet"),
  18954. weight: math.unit(600, "lb"),
  18955. name: "Front (Dressed",
  18956. image: {
  18957. source: "./media/characters/de'vout/front-dressed.svg",
  18958. extra: 1443 / 1328,
  18959. bottom: 0.025
  18960. }
  18961. },
  18962. backDressed: {
  18963. height: math.unit(9.5, "feet"),
  18964. weight: math.unit(600, "lb"),
  18965. name: "Back (Dressed",
  18966. image: {
  18967. source: "./media/characters/de'vout/back-dressed.svg",
  18968. extra: 1443 / 1328
  18969. }
  18970. },
  18971. },
  18972. [
  18973. {
  18974. name: "Normal",
  18975. height: math.unit(9.5, "feet"),
  18976. default: true
  18977. },
  18978. ]
  18979. ))
  18980. characterMakers.push(() => makeCharacter(
  18981. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18982. {
  18983. front: {
  18984. height: math.unit(8, "feet"),
  18985. weight: math.unit(225, "lb"),
  18986. name: "Front",
  18987. image: {
  18988. source: "./media/characters/talana/front.svg",
  18989. extra: 1410 / 1300,
  18990. bottom: 0.015
  18991. }
  18992. },
  18993. frontDressed: {
  18994. height: math.unit(8, "feet"),
  18995. weight: math.unit(225, "lb"),
  18996. name: "Front (Dressed",
  18997. image: {
  18998. source: "./media/characters/talana/front-dressed.svg",
  18999. extra: 1410 / 1300,
  19000. bottom: 0.015
  19001. }
  19002. },
  19003. },
  19004. [
  19005. {
  19006. name: "Normal",
  19007. height: math.unit(8, "feet"),
  19008. default: true
  19009. },
  19010. ]
  19011. ))
  19012. characterMakers.push(() => makeCharacter(
  19013. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19014. {
  19015. side: {
  19016. height: math.unit(7.2, "feet"),
  19017. weight: math.unit(150, "lb"),
  19018. name: "Side",
  19019. image: {
  19020. source: "./media/characters/xeauvok/side.svg",
  19021. extra: 1975 / 1523,
  19022. bottom: 0.07
  19023. }
  19024. },
  19025. },
  19026. [
  19027. {
  19028. name: "Normal",
  19029. height: math.unit(7.2, "feet"),
  19030. default: true
  19031. },
  19032. ]
  19033. ))
  19034. characterMakers.push(() => makeCharacter(
  19035. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19036. {
  19037. side: {
  19038. height: math.unit(4, "meters"),
  19039. weight: math.unit(2200, "kg"),
  19040. name: "Side",
  19041. image: {
  19042. source: "./media/characters/zara/side.svg",
  19043. extra: 765/744,
  19044. bottom: 156/921
  19045. }
  19046. },
  19047. },
  19048. [
  19049. {
  19050. name: "Normal",
  19051. height: math.unit(4, "meters"),
  19052. default: true
  19053. },
  19054. ]
  19055. ))
  19056. characterMakers.push(() => makeCharacter(
  19057. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19058. {
  19059. side: {
  19060. height: math.unit(6, "feet"),
  19061. weight: math.unit(150, "lb"),
  19062. name: "Side",
  19063. image: {
  19064. source: "./media/characters/richard-dragon/side.svg",
  19065. extra: 845 / 340,
  19066. bottom: 0.017
  19067. }
  19068. },
  19069. maw: {
  19070. height: math.unit(2.97, "feet"),
  19071. name: "Maw",
  19072. image: {
  19073. source: "./media/characters/richard-dragon/maw.svg"
  19074. }
  19075. },
  19076. },
  19077. [
  19078. ]
  19079. ))
  19080. characterMakers.push(() => makeCharacter(
  19081. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19082. {
  19083. front: {
  19084. height: math.unit(4, "feet"),
  19085. weight: math.unit(100, "lb"),
  19086. name: "Front",
  19087. image: {
  19088. source: "./media/characters/richard-smeargle/front.svg",
  19089. extra: 2952 / 2820,
  19090. bottom: 0.028
  19091. }
  19092. },
  19093. },
  19094. [
  19095. {
  19096. name: "Normal",
  19097. height: math.unit(4, "feet"),
  19098. default: true
  19099. },
  19100. {
  19101. name: "Dynamax",
  19102. height: math.unit(20, "meters")
  19103. },
  19104. ]
  19105. ))
  19106. characterMakers.push(() => makeCharacter(
  19107. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19108. {
  19109. front: {
  19110. height: math.unit(6, "feet"),
  19111. weight: math.unit(110, "lb"),
  19112. name: "Front",
  19113. image: {
  19114. source: "./media/characters/klay/front.svg",
  19115. extra: 962 / 883,
  19116. bottom: 0.04
  19117. }
  19118. },
  19119. back: {
  19120. height: math.unit(6, "feet"),
  19121. weight: math.unit(110, "lb"),
  19122. name: "Back",
  19123. image: {
  19124. source: "./media/characters/klay/back.svg",
  19125. extra: 962 / 883
  19126. }
  19127. },
  19128. beans: {
  19129. height: math.unit(1.15, "feet"),
  19130. name: "Beans",
  19131. image: {
  19132. source: "./media/characters/klay/beans.svg"
  19133. }
  19134. },
  19135. },
  19136. [
  19137. {
  19138. name: "Micro",
  19139. height: math.unit(6, "inches")
  19140. },
  19141. {
  19142. name: "Mini",
  19143. height: math.unit(3, "feet")
  19144. },
  19145. {
  19146. name: "Normal",
  19147. height: math.unit(6, "feet"),
  19148. default: true
  19149. },
  19150. {
  19151. name: "Big",
  19152. height: math.unit(25, "feet")
  19153. },
  19154. {
  19155. name: "Macro",
  19156. height: math.unit(100, "feet")
  19157. },
  19158. {
  19159. name: "Megamacro",
  19160. height: math.unit(400, "feet")
  19161. },
  19162. ]
  19163. ))
  19164. characterMakers.push(() => makeCharacter(
  19165. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19166. {
  19167. front: {
  19168. height: math.unit(6, "feet"),
  19169. weight: math.unit(160, "lb"),
  19170. name: "Front",
  19171. image: {
  19172. source: "./media/characters/marcus/front.svg",
  19173. extra: 734 / 676,
  19174. bottom: 0.03
  19175. }
  19176. },
  19177. },
  19178. [
  19179. {
  19180. name: "Little",
  19181. height: math.unit(6, "feet")
  19182. },
  19183. {
  19184. name: "Normal",
  19185. height: math.unit(110, "feet"),
  19186. default: true
  19187. },
  19188. {
  19189. name: "Macro",
  19190. height: math.unit(250, "feet")
  19191. },
  19192. {
  19193. name: "Megamacro",
  19194. height: math.unit(1000, "feet")
  19195. },
  19196. ]
  19197. ))
  19198. characterMakers.push(() => makeCharacter(
  19199. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19200. {
  19201. front: {
  19202. height: math.unit(7, "feet"),
  19203. weight: math.unit(275, "lb"),
  19204. name: "Front",
  19205. image: {
  19206. source: "./media/characters/claude-delroute/front.svg",
  19207. extra: 902/827,
  19208. bottom: 26/928
  19209. }
  19210. },
  19211. side: {
  19212. height: math.unit(7, "feet"),
  19213. weight: math.unit(275, "lb"),
  19214. name: "Side",
  19215. image: {
  19216. source: "./media/characters/claude-delroute/side.svg",
  19217. extra: 908/853,
  19218. bottom: 16/924
  19219. }
  19220. },
  19221. back: {
  19222. height: math.unit(7, "feet"),
  19223. weight: math.unit(275, "lb"),
  19224. name: "Back",
  19225. image: {
  19226. source: "./media/characters/claude-delroute/back.svg",
  19227. extra: 911/829,
  19228. bottom: 18/929
  19229. }
  19230. },
  19231. maw: {
  19232. height: math.unit(0.6407, "meters"),
  19233. name: "Maw",
  19234. image: {
  19235. source: "./media/characters/claude-delroute/maw.svg"
  19236. }
  19237. },
  19238. },
  19239. [
  19240. {
  19241. name: "Normal",
  19242. height: math.unit(7, "feet"),
  19243. default: true
  19244. },
  19245. {
  19246. name: "Lorge",
  19247. height: math.unit(20, "feet")
  19248. },
  19249. ]
  19250. ))
  19251. characterMakers.push(() => makeCharacter(
  19252. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19253. {
  19254. front: {
  19255. height: math.unit(8 + 4 / 12, "feet"),
  19256. weight: math.unit(600, "lb"),
  19257. name: "Front",
  19258. image: {
  19259. source: "./media/characters/dragonien/front.svg",
  19260. extra: 100 / 94,
  19261. bottom: 3.3 / 103.3445
  19262. }
  19263. },
  19264. back: {
  19265. height: math.unit(8 + 4 / 12, "feet"),
  19266. weight: math.unit(600, "lb"),
  19267. name: "Back",
  19268. image: {
  19269. source: "./media/characters/dragonien/back.svg",
  19270. extra: 776 / 746,
  19271. bottom: 6.4 / 782.0616
  19272. }
  19273. },
  19274. foot: {
  19275. height: math.unit(1.54, "feet"),
  19276. name: "Foot",
  19277. image: {
  19278. source: "./media/characters/dragonien/foot.svg",
  19279. }
  19280. },
  19281. },
  19282. [
  19283. {
  19284. name: "Normal",
  19285. height: math.unit(8 + 4 / 12, "feet"),
  19286. default: true
  19287. },
  19288. {
  19289. name: "Macro",
  19290. height: math.unit(200, "feet")
  19291. },
  19292. {
  19293. name: "Megamacro",
  19294. height: math.unit(1, "mile")
  19295. },
  19296. {
  19297. name: "Gigamacro",
  19298. height: math.unit(1000, "miles")
  19299. },
  19300. ]
  19301. ))
  19302. characterMakers.push(() => makeCharacter(
  19303. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19304. {
  19305. front: {
  19306. height: math.unit(5 + 2 / 12, "feet"),
  19307. weight: math.unit(110, "lb"),
  19308. name: "Front",
  19309. image: {
  19310. source: "./media/characters/desta/front.svg",
  19311. extra: 767 / 726,
  19312. bottom: 11.7 / 779
  19313. }
  19314. },
  19315. back: {
  19316. height: math.unit(5 + 2 / 12, "feet"),
  19317. weight: math.unit(110, "lb"),
  19318. name: "Back",
  19319. image: {
  19320. source: "./media/characters/desta/back.svg",
  19321. extra: 777 / 728,
  19322. bottom: 6 / 784
  19323. }
  19324. },
  19325. frontAlt: {
  19326. height: math.unit(5 + 2 / 12, "feet"),
  19327. weight: math.unit(110, "lb"),
  19328. name: "Front",
  19329. image: {
  19330. source: "./media/characters/desta/front-alt.svg",
  19331. extra: 1482 / 1417
  19332. }
  19333. },
  19334. side: {
  19335. height: math.unit(5 + 2 / 12, "feet"),
  19336. weight: math.unit(110, "lb"),
  19337. name: "Side",
  19338. image: {
  19339. source: "./media/characters/desta/side.svg",
  19340. extra: 2579 / 2491,
  19341. bottom: 0.053
  19342. }
  19343. },
  19344. },
  19345. [
  19346. {
  19347. name: "Micro",
  19348. height: math.unit(6, "inches")
  19349. },
  19350. {
  19351. name: "Normal",
  19352. height: math.unit(5 + 2 / 12, "feet"),
  19353. default: true
  19354. },
  19355. {
  19356. name: "Macro",
  19357. height: math.unit(62, "feet")
  19358. },
  19359. {
  19360. name: "Megamacro",
  19361. height: math.unit(1800, "feet")
  19362. },
  19363. ]
  19364. ))
  19365. characterMakers.push(() => makeCharacter(
  19366. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19367. {
  19368. front: {
  19369. height: math.unit(10, "feet"),
  19370. weight: math.unit(700, "lb"),
  19371. name: "Front",
  19372. image: {
  19373. source: "./media/characters/storm-alystar/front.svg",
  19374. extra: 2112 / 1898,
  19375. bottom: 0.034
  19376. }
  19377. },
  19378. },
  19379. [
  19380. {
  19381. name: "Micro",
  19382. height: math.unit(3.5, "inches")
  19383. },
  19384. {
  19385. name: "Normal",
  19386. height: math.unit(10, "feet"),
  19387. default: true
  19388. },
  19389. {
  19390. name: "Macro",
  19391. height: math.unit(400, "feet")
  19392. },
  19393. {
  19394. name: "Deific",
  19395. height: math.unit(60, "miles")
  19396. },
  19397. ]
  19398. ))
  19399. characterMakers.push(() => makeCharacter(
  19400. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19401. {
  19402. front: {
  19403. height: math.unit(2.35, "meters"),
  19404. weight: math.unit(119, "kg"),
  19405. name: "Front",
  19406. image: {
  19407. source: "./media/characters/ilia/front.svg",
  19408. extra: 1285 / 1255,
  19409. bottom: 0.06
  19410. }
  19411. },
  19412. },
  19413. [
  19414. {
  19415. name: "Normal",
  19416. height: math.unit(2.35, "meters")
  19417. },
  19418. {
  19419. name: "Macro",
  19420. height: math.unit(140, "meters"),
  19421. default: true
  19422. },
  19423. {
  19424. name: "Megamacro",
  19425. height: math.unit(100, "miles")
  19426. },
  19427. ]
  19428. ))
  19429. characterMakers.push(() => makeCharacter(
  19430. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19431. {
  19432. front: {
  19433. height: math.unit(6 + 5 / 12, "feet"),
  19434. weight: math.unit(190, "lb"),
  19435. name: "Front",
  19436. image: {
  19437. source: "./media/characters/kingdead/front.svg",
  19438. extra: 1228 / 1177
  19439. }
  19440. },
  19441. },
  19442. [
  19443. {
  19444. name: "Micro",
  19445. height: math.unit(7, "inches")
  19446. },
  19447. {
  19448. name: "Normal",
  19449. height: math.unit(6 + 5 / 12, "feet")
  19450. },
  19451. {
  19452. name: "Macro",
  19453. height: math.unit(150, "feet"),
  19454. default: true
  19455. },
  19456. {
  19457. name: "Megamacro",
  19458. height: math.unit(200, "miles")
  19459. },
  19460. ]
  19461. ))
  19462. characterMakers.push(() => makeCharacter(
  19463. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19464. {
  19465. front: {
  19466. height: math.unit(8, "feet"),
  19467. weight: math.unit(600, "lb"),
  19468. name: "Front",
  19469. image: {
  19470. source: "./media/characters/kyrehx/front.svg",
  19471. extra: 1195 / 1095,
  19472. bottom: 0.034
  19473. }
  19474. },
  19475. },
  19476. [
  19477. {
  19478. name: "Micro",
  19479. height: math.unit(2, "inches")
  19480. },
  19481. {
  19482. name: "Normal",
  19483. height: math.unit(8, "feet"),
  19484. default: true
  19485. },
  19486. {
  19487. name: "Macro",
  19488. height: math.unit(255, "feet")
  19489. },
  19490. ]
  19491. ))
  19492. characterMakers.push(() => makeCharacter(
  19493. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19494. {
  19495. front: {
  19496. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19497. weight: math.unit(184, "lb"),
  19498. name: "Front",
  19499. image: {
  19500. source: "./media/characters/xang/front.svg",
  19501. extra: 845 / 755
  19502. }
  19503. },
  19504. },
  19505. [
  19506. {
  19507. name: "Normal",
  19508. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19509. default: true
  19510. },
  19511. {
  19512. name: "Macro",
  19513. height: math.unit(0.935 * 146, "feet")
  19514. },
  19515. {
  19516. name: "Megamacro",
  19517. height: math.unit(0.935 * 3, "miles")
  19518. },
  19519. ]
  19520. ))
  19521. characterMakers.push(() => makeCharacter(
  19522. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19523. {
  19524. frontDressed: {
  19525. height: math.unit(5 + 7 / 12, "feet"),
  19526. weight: math.unit(140, "lb"),
  19527. name: "Front (Dressed)",
  19528. image: {
  19529. source: "./media/characters/doc-weardno/front-dressed.svg",
  19530. extra: 263 / 234
  19531. }
  19532. },
  19533. backDressed: {
  19534. height: math.unit(5 + 7 / 12, "feet"),
  19535. weight: math.unit(140, "lb"),
  19536. name: "Back (Dressed)",
  19537. image: {
  19538. source: "./media/characters/doc-weardno/back-dressed.svg",
  19539. extra: 266 / 238
  19540. }
  19541. },
  19542. front: {
  19543. height: math.unit(5 + 7 / 12, "feet"),
  19544. weight: math.unit(140, "lb"),
  19545. name: "Front",
  19546. image: {
  19547. source: "./media/characters/doc-weardno/front.svg",
  19548. extra: 254 / 233
  19549. }
  19550. },
  19551. },
  19552. [
  19553. {
  19554. name: "Micro",
  19555. height: math.unit(3, "inches")
  19556. },
  19557. {
  19558. name: "Normal",
  19559. height: math.unit(5 + 7 / 12, "feet"),
  19560. default: true
  19561. },
  19562. {
  19563. name: "Macro",
  19564. height: math.unit(25, "feet")
  19565. },
  19566. {
  19567. name: "Megamacro",
  19568. height: math.unit(2, "miles")
  19569. },
  19570. ]
  19571. ))
  19572. characterMakers.push(() => makeCharacter(
  19573. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19574. {
  19575. front: {
  19576. height: math.unit(6 + 2 / 12, "feet"),
  19577. weight: math.unit(153, "lb"),
  19578. name: "Front",
  19579. image: {
  19580. source: "./media/characters/seth-whilst/front.svg",
  19581. bottom: 0.07
  19582. }
  19583. },
  19584. },
  19585. [
  19586. {
  19587. name: "Micro",
  19588. height: math.unit(5, "inches")
  19589. },
  19590. {
  19591. name: "Normal",
  19592. height: math.unit(6 + 2 / 12, "feet"),
  19593. default: true
  19594. },
  19595. ]
  19596. ))
  19597. characterMakers.push(() => makeCharacter(
  19598. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19599. {
  19600. front: {
  19601. height: math.unit(3, "inches"),
  19602. weight: math.unit(8, "grams"),
  19603. name: "Front",
  19604. image: {
  19605. source: "./media/characters/pocket-jabari/front.svg",
  19606. extra: 1024 / 974,
  19607. bottom: 0.039
  19608. }
  19609. },
  19610. },
  19611. [
  19612. {
  19613. name: "Minimicro",
  19614. height: math.unit(8, "mm")
  19615. },
  19616. {
  19617. name: "Micro",
  19618. height: math.unit(3, "inches"),
  19619. default: true
  19620. },
  19621. {
  19622. name: "Normal",
  19623. height: math.unit(3, "feet")
  19624. },
  19625. ]
  19626. ))
  19627. characterMakers.push(() => makeCharacter(
  19628. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19629. {
  19630. frontDressed: {
  19631. height: math.unit(15, "feet"),
  19632. weight: math.unit(3280, "lb"),
  19633. name: "Front (Dressed)",
  19634. image: {
  19635. source: "./media/characters/sapphy/front-dressed.svg",
  19636. extra: 1951/1654,
  19637. bottom: 194/2145
  19638. },
  19639. form: "anthro",
  19640. default: true
  19641. },
  19642. backDressed: {
  19643. height: math.unit(15, "feet"),
  19644. weight: math.unit(3280, "lb"),
  19645. name: "Back (Dressed)",
  19646. image: {
  19647. source: "./media/characters/sapphy/back-dressed.svg",
  19648. extra: 2058/1918,
  19649. bottom: 125/2183
  19650. },
  19651. form: "anthro"
  19652. },
  19653. frontNude: {
  19654. height: math.unit(15, "feet"),
  19655. weight: math.unit(3280, "lb"),
  19656. name: "Front (Nude)",
  19657. image: {
  19658. source: "./media/characters/sapphy/front-nude.svg",
  19659. extra: 1951/1654,
  19660. bottom: 194/2145
  19661. },
  19662. form: "anthro"
  19663. },
  19664. backNude: {
  19665. height: math.unit(15, "feet"),
  19666. weight: math.unit(3280, "lb"),
  19667. name: "Back (Nude)",
  19668. image: {
  19669. source: "./media/characters/sapphy/back-nude.svg",
  19670. extra: 2058/1918,
  19671. bottom: 125/2183
  19672. },
  19673. form: "anthro"
  19674. },
  19675. full: {
  19676. height: math.unit(15, "feet"),
  19677. weight: math.unit(3280, "lb"),
  19678. name: "Full",
  19679. image: {
  19680. source: "./media/characters/sapphy/full.svg",
  19681. extra: 1396/1317,
  19682. bottom: 44/1440
  19683. },
  19684. form: "anthro"
  19685. },
  19686. dick: {
  19687. height: math.unit(3.8, "feet"),
  19688. name: "Dick",
  19689. image: {
  19690. source: "./media/characters/sapphy/dick.svg"
  19691. },
  19692. form: "anthro"
  19693. },
  19694. feral: {
  19695. height: math.unit(35, "feet"),
  19696. weight: math.unit(160, "tons"),
  19697. name: "Feral",
  19698. image: {
  19699. source: "./media/characters/sapphy/feral.svg",
  19700. extra: 1050/573,
  19701. bottom: 60/1110
  19702. },
  19703. form: "feral",
  19704. default: true
  19705. },
  19706. },
  19707. [
  19708. {
  19709. name: "Normal",
  19710. height: math.unit(15, "feet"),
  19711. form: "anthro"
  19712. },
  19713. {
  19714. name: "Casual Macro",
  19715. height: math.unit(120, "feet"),
  19716. form: "anthro"
  19717. },
  19718. {
  19719. name: "Macro",
  19720. height: math.unit(2150, "feet"),
  19721. default: true,
  19722. form: "anthro"
  19723. },
  19724. {
  19725. name: "Megamacro",
  19726. height: math.unit(8, "miles"),
  19727. form: "anthro"
  19728. },
  19729. {
  19730. name: "Galaxy Mom",
  19731. height: math.unit(6, "megalightyears"),
  19732. form: "anthro"
  19733. },
  19734. {
  19735. name: "Normal",
  19736. height: math.unit(35, "feet"),
  19737. form: "feral",
  19738. default: true
  19739. },
  19740. {
  19741. name: "Macro",
  19742. height: math.unit(300, "feet"),
  19743. form: "feral"
  19744. },
  19745. {
  19746. name: "Galaxy Mom",
  19747. height: math.unit(10, "megalightyears"),
  19748. form: "feral"
  19749. },
  19750. ],
  19751. {
  19752. "anthro": {
  19753. name: "Anthro",
  19754. default: true
  19755. },
  19756. "feral": {
  19757. name: "Feral"
  19758. }
  19759. }
  19760. ))
  19761. characterMakers.push(() => makeCharacter(
  19762. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19763. {
  19764. front: {
  19765. height: math.unit(6, "feet"),
  19766. weight: math.unit(170, "lb"),
  19767. name: "Front",
  19768. image: {
  19769. source: "./media/characters/kiro/front.svg",
  19770. extra: 1064 / 1012,
  19771. bottom: 0.052
  19772. }
  19773. },
  19774. },
  19775. [
  19776. {
  19777. name: "Micro",
  19778. height: math.unit(6, "inches")
  19779. },
  19780. {
  19781. name: "Normal",
  19782. height: math.unit(6, "feet"),
  19783. default: true
  19784. },
  19785. {
  19786. name: "Macro",
  19787. height: math.unit(72, "feet")
  19788. },
  19789. ]
  19790. ))
  19791. characterMakers.push(() => makeCharacter(
  19792. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19793. {
  19794. front: {
  19795. height: math.unit(5 + 9 / 12, "feet"),
  19796. weight: math.unit(175, "lb"),
  19797. name: "Front",
  19798. image: {
  19799. source: "./media/characters/irishfox/front.svg",
  19800. extra: 1912 / 1680,
  19801. bottom: 0.02
  19802. }
  19803. },
  19804. },
  19805. [
  19806. {
  19807. name: "Nano",
  19808. height: math.unit(1, "mm")
  19809. },
  19810. {
  19811. name: "Micro",
  19812. height: math.unit(2, "inches")
  19813. },
  19814. {
  19815. name: "Normal",
  19816. height: math.unit(5 + 9 / 12, "feet"),
  19817. default: true
  19818. },
  19819. {
  19820. name: "Macro",
  19821. height: math.unit(45, "feet")
  19822. },
  19823. ]
  19824. ))
  19825. characterMakers.push(() => makeCharacter(
  19826. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19827. {
  19828. front: {
  19829. height: math.unit(6 + 1 / 12, "feet"),
  19830. weight: math.unit(75, "lb"),
  19831. name: "Front",
  19832. image: {
  19833. source: "./media/characters/aronai-sieyes/front.svg",
  19834. extra: 1532/1450,
  19835. bottom: 42/1574
  19836. }
  19837. },
  19838. side: {
  19839. height: math.unit(6 + 1 / 12, "feet"),
  19840. weight: math.unit(75, "lb"),
  19841. name: "Side",
  19842. image: {
  19843. source: "./media/characters/aronai-sieyes/side.svg",
  19844. extra: 1422/1365,
  19845. bottom: 148/1570
  19846. }
  19847. },
  19848. back: {
  19849. height: math.unit(6 + 1 / 12, "feet"),
  19850. weight: math.unit(75, "lb"),
  19851. name: "Back",
  19852. image: {
  19853. source: "./media/characters/aronai-sieyes/back.svg",
  19854. extra: 1526/1464,
  19855. bottom: 51/1577
  19856. }
  19857. },
  19858. dressed: {
  19859. height: math.unit(6 + 1 / 12, "feet"),
  19860. weight: math.unit(75, "lb"),
  19861. name: "Dressed",
  19862. image: {
  19863. source: "./media/characters/aronai-sieyes/dressed.svg",
  19864. extra: 1559/1483,
  19865. bottom: 39/1598
  19866. }
  19867. },
  19868. slit: {
  19869. height: math.unit(1.3, "feet"),
  19870. name: "Slit",
  19871. image: {
  19872. source: "./media/characters/aronai-sieyes/slit.svg"
  19873. }
  19874. },
  19875. slitSpread: {
  19876. height: math.unit(0.9, "feet"),
  19877. name: "Slit (Spread)",
  19878. image: {
  19879. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19880. }
  19881. },
  19882. rump: {
  19883. height: math.unit(1.3, "feet"),
  19884. name: "Rump",
  19885. image: {
  19886. source: "./media/characters/aronai-sieyes/rump.svg"
  19887. }
  19888. },
  19889. maw: {
  19890. height: math.unit(1.25, "feet"),
  19891. name: "Maw",
  19892. image: {
  19893. source: "./media/characters/aronai-sieyes/maw.svg"
  19894. }
  19895. },
  19896. feral: {
  19897. height: math.unit(18, "feet"),
  19898. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19899. name: "Feral",
  19900. image: {
  19901. source: "./media/characters/aronai-sieyes/feral.svg",
  19902. extra: 1530 / 1240,
  19903. bottom: 0.035
  19904. }
  19905. },
  19906. },
  19907. [
  19908. {
  19909. name: "Micro",
  19910. height: math.unit(2, "inches")
  19911. },
  19912. {
  19913. name: "Normal",
  19914. height: math.unit(6 + 1 / 12, "feet"),
  19915. default: true
  19916. }
  19917. ]
  19918. ))
  19919. characterMakers.push(() => makeCharacter(
  19920. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19921. {
  19922. front: {
  19923. height: math.unit(12, "feet"),
  19924. weight: math.unit(410, "kg"),
  19925. name: "Front",
  19926. image: {
  19927. source: "./media/characters/xuna/front.svg",
  19928. extra: 2184 / 1980
  19929. }
  19930. },
  19931. side: {
  19932. height: math.unit(12, "feet"),
  19933. weight: math.unit(410, "kg"),
  19934. name: "Side",
  19935. image: {
  19936. source: "./media/characters/xuna/side.svg",
  19937. extra: 2184 / 1980
  19938. }
  19939. },
  19940. back: {
  19941. height: math.unit(12, "feet"),
  19942. weight: math.unit(410, "kg"),
  19943. name: "Back",
  19944. image: {
  19945. source: "./media/characters/xuna/back.svg",
  19946. extra: 2184 / 1980
  19947. }
  19948. },
  19949. },
  19950. [
  19951. {
  19952. name: "Nano glow",
  19953. height: math.unit(10, "nm")
  19954. },
  19955. {
  19956. name: "Micro floof",
  19957. height: math.unit(0.3, "m")
  19958. },
  19959. {
  19960. name: "Huggable softy boi",
  19961. height: math.unit(3.6576, "m"),
  19962. default: true
  19963. },
  19964. {
  19965. name: "Admirable floof",
  19966. height: math.unit(80, "meters")
  19967. },
  19968. {
  19969. name: "Gentle macro",
  19970. height: math.unit(300, "meters")
  19971. },
  19972. {
  19973. name: "Very careful floof",
  19974. height: math.unit(3200, "meters")
  19975. },
  19976. {
  19977. name: "The mega floof",
  19978. height: math.unit(36000, "meters")
  19979. },
  19980. {
  19981. name: "Giga-fur-Wicker",
  19982. height: math.unit(4800000, "meters")
  19983. },
  19984. {
  19985. name: "Licky world",
  19986. height: math.unit(20000000, "meters")
  19987. },
  19988. {
  19989. name: "Floofy cyan sun",
  19990. height: math.unit(1500000000, "meters")
  19991. },
  19992. {
  19993. name: "Milky Wicker",
  19994. height: math.unit(1000000000000000000000, "meters")
  19995. },
  19996. {
  19997. name: "The observing Wicker",
  19998. height: math.unit(999999999999999999999999999, "meters")
  19999. },
  20000. ]
  20001. ))
  20002. characterMakers.push(() => makeCharacter(
  20003. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20004. {
  20005. front: {
  20006. height: math.unit(5 + 9 / 12, "feet"),
  20007. weight: math.unit(150, "lb"),
  20008. name: "Front",
  20009. image: {
  20010. source: "./media/characters/arokha-sieyes/front.svg",
  20011. extra: 1425 / 1284,
  20012. bottom: 0.05
  20013. }
  20014. },
  20015. },
  20016. [
  20017. {
  20018. name: "Normal",
  20019. height: math.unit(5 + 9 / 12, "feet")
  20020. },
  20021. {
  20022. name: "Macro",
  20023. height: math.unit(30, "meters"),
  20024. default: true
  20025. },
  20026. ]
  20027. ))
  20028. characterMakers.push(() => makeCharacter(
  20029. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20030. {
  20031. front: {
  20032. height: math.unit(6, "feet"),
  20033. weight: math.unit(180, "lb"),
  20034. name: "Front",
  20035. image: {
  20036. source: "./media/characters/arokh-sieyes/front.svg",
  20037. extra: 1830 / 1769,
  20038. bottom: 0.01
  20039. }
  20040. },
  20041. },
  20042. [
  20043. {
  20044. name: "Normal",
  20045. height: math.unit(6, "feet")
  20046. },
  20047. {
  20048. name: "Macro",
  20049. height: math.unit(30, "meters"),
  20050. default: true
  20051. },
  20052. ]
  20053. ))
  20054. characterMakers.push(() => makeCharacter(
  20055. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20056. {
  20057. side: {
  20058. height: math.unit(13 + 1 / 12, "feet"),
  20059. weight: math.unit(8.5, "tonnes"),
  20060. name: "Side",
  20061. image: {
  20062. source: "./media/characters/goldeneye/side.svg",
  20063. extra: 1182 / 778,
  20064. bottom: 0.067
  20065. }
  20066. },
  20067. paw: {
  20068. height: math.unit(3.4, "feet"),
  20069. name: "Paw",
  20070. image: {
  20071. source: "./media/characters/goldeneye/paw.svg"
  20072. }
  20073. },
  20074. },
  20075. [
  20076. {
  20077. name: "Normal",
  20078. height: math.unit(13 + 1 / 12, "feet"),
  20079. default: true
  20080. },
  20081. ]
  20082. ))
  20083. characterMakers.push(() => makeCharacter(
  20084. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20085. {
  20086. front: {
  20087. height: math.unit(6 + 1 / 12, "feet"),
  20088. weight: math.unit(210, "lb"),
  20089. name: "Front",
  20090. image: {
  20091. source: "./media/characters/leonardo-lycheborne/front.svg",
  20092. extra: 776/723,
  20093. bottom: 34/810
  20094. }
  20095. },
  20096. side: {
  20097. height: math.unit(6 + 1 / 12, "feet"),
  20098. weight: math.unit(210, "lb"),
  20099. name: "Side",
  20100. image: {
  20101. source: "./media/characters/leonardo-lycheborne/side.svg",
  20102. extra: 780/728,
  20103. bottom: 12/792
  20104. }
  20105. },
  20106. back: {
  20107. height: math.unit(6 + 1 / 12, "feet"),
  20108. weight: math.unit(210, "lb"),
  20109. name: "Back",
  20110. image: {
  20111. source: "./media/characters/leonardo-lycheborne/back.svg",
  20112. extra: 775/721,
  20113. bottom: 17/792
  20114. }
  20115. },
  20116. hand: {
  20117. height: math.unit(1.08, "feet"),
  20118. name: "Hand",
  20119. image: {
  20120. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20121. }
  20122. },
  20123. foot: {
  20124. height: math.unit(1.32, "feet"),
  20125. name: "Foot",
  20126. image: {
  20127. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20128. }
  20129. },
  20130. maw: {
  20131. height: math.unit(1, "feet"),
  20132. name: "Maw",
  20133. image: {
  20134. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20135. }
  20136. },
  20137. were: {
  20138. height: math.unit(20, "feet"),
  20139. weight: math.unit(7800, "lb"),
  20140. name: "Were",
  20141. image: {
  20142. source: "./media/characters/leonardo-lycheborne/were.svg",
  20143. extra: 1224/1165,
  20144. bottom: 72/1296
  20145. }
  20146. },
  20147. feral: {
  20148. height: math.unit(7.5, "feet"),
  20149. weight: math.unit(600, "lb"),
  20150. name: "Feral",
  20151. image: {
  20152. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20153. extra: 797/702,
  20154. bottom: 139/936
  20155. }
  20156. },
  20157. taur: {
  20158. height: math.unit(11, "feet"),
  20159. weight: math.unit(3300, "lb"),
  20160. name: "Taur",
  20161. image: {
  20162. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20163. extra: 1271/1197,
  20164. bottom: 47/1318
  20165. }
  20166. },
  20167. barghest: {
  20168. height: math.unit(11, "feet"),
  20169. weight: math.unit(1300, "lb"),
  20170. name: "Barghest",
  20171. image: {
  20172. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20173. extra: 1291/1204,
  20174. bottom: 37/1328
  20175. }
  20176. },
  20177. dick: {
  20178. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20179. name: "Dick",
  20180. image: {
  20181. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20182. }
  20183. },
  20184. dickWere: {
  20185. height: math.unit((20) / 3.8, "feet"),
  20186. name: "Dick (Were)",
  20187. image: {
  20188. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20189. }
  20190. },
  20191. },
  20192. [
  20193. {
  20194. name: "Normal",
  20195. height: math.unit(6 + 1 / 12, "feet"),
  20196. default: true
  20197. },
  20198. ]
  20199. ))
  20200. characterMakers.push(() => makeCharacter(
  20201. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20202. {
  20203. front: {
  20204. height: math.unit(10, "feet"),
  20205. weight: math.unit(350, "lb"),
  20206. name: "Front",
  20207. image: {
  20208. source: "./media/characters/jet/front.svg",
  20209. extra: 2050 / 1980,
  20210. bottom: 0.013
  20211. }
  20212. },
  20213. back: {
  20214. height: math.unit(10, "feet"),
  20215. weight: math.unit(350, "lb"),
  20216. name: "Back",
  20217. image: {
  20218. source: "./media/characters/jet/back.svg",
  20219. extra: 2050 / 1980,
  20220. bottom: 0.013
  20221. }
  20222. },
  20223. },
  20224. [
  20225. {
  20226. name: "Micro",
  20227. height: math.unit(6, "inches")
  20228. },
  20229. {
  20230. name: "Normal",
  20231. height: math.unit(10, "feet"),
  20232. default: true
  20233. },
  20234. {
  20235. name: "Macro",
  20236. height: math.unit(100, "feet")
  20237. },
  20238. ]
  20239. ))
  20240. characterMakers.push(() => makeCharacter(
  20241. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20242. {
  20243. front: {
  20244. height: math.unit(15, "feet"),
  20245. weight: math.unit(2800, "lb"),
  20246. name: "Front",
  20247. image: {
  20248. source: "./media/characters/tanarath/front.svg",
  20249. extra: 2392 / 2220,
  20250. bottom: 0.03
  20251. }
  20252. },
  20253. back: {
  20254. height: math.unit(15, "feet"),
  20255. weight: math.unit(2800, "lb"),
  20256. name: "Back",
  20257. image: {
  20258. source: "./media/characters/tanarath/back.svg",
  20259. extra: 2392 / 2220,
  20260. bottom: 0.03
  20261. }
  20262. },
  20263. },
  20264. [
  20265. {
  20266. name: "Normal",
  20267. height: math.unit(15, "feet"),
  20268. default: true
  20269. },
  20270. ]
  20271. ))
  20272. characterMakers.push(() => makeCharacter(
  20273. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20274. {
  20275. front: {
  20276. height: math.unit(7 + 1 / 12, "feet"),
  20277. weight: math.unit(175, "lb"),
  20278. name: "Front",
  20279. image: {
  20280. source: "./media/characters/patty-cattybatty/front.svg",
  20281. extra: 908 / 874,
  20282. bottom: 0.025
  20283. }
  20284. },
  20285. },
  20286. [
  20287. {
  20288. name: "Micro",
  20289. height: math.unit(1, "inch")
  20290. },
  20291. {
  20292. name: "Normal",
  20293. height: math.unit(7 + 1 / 12, "feet")
  20294. },
  20295. {
  20296. name: "Mini Macro",
  20297. height: math.unit(155, "feet")
  20298. },
  20299. {
  20300. name: "Macro",
  20301. height: math.unit(1077, "feet")
  20302. },
  20303. {
  20304. name: "Mega Macro",
  20305. height: math.unit(47650, "feet"),
  20306. default: true
  20307. },
  20308. {
  20309. name: "Giga Macro",
  20310. height: math.unit(440, "miles")
  20311. },
  20312. {
  20313. name: "Tera Macro",
  20314. height: math.unit(8700, "miles")
  20315. },
  20316. {
  20317. name: "Planetary Macro",
  20318. height: math.unit(32700, "miles")
  20319. },
  20320. {
  20321. name: "Solar Macro",
  20322. height: math.unit(550000, "miles")
  20323. },
  20324. {
  20325. name: "Celestial Macro",
  20326. height: math.unit(2.5, "AU")
  20327. },
  20328. ]
  20329. ))
  20330. characterMakers.push(() => makeCharacter(
  20331. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20332. {
  20333. front: {
  20334. height: math.unit(4 + 5 / 12, "feet"),
  20335. weight: math.unit(90, "lb"),
  20336. name: "Front",
  20337. image: {
  20338. source: "./media/characters/cappu/front.svg",
  20339. extra: 1247 / 1152,
  20340. bottom: 0.012
  20341. }
  20342. },
  20343. },
  20344. [
  20345. {
  20346. name: "Normal",
  20347. height: math.unit(4 + 5 / 12, "feet"),
  20348. default: true
  20349. },
  20350. ]
  20351. ))
  20352. characterMakers.push(() => makeCharacter(
  20353. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20354. {
  20355. frontDressed: {
  20356. height: math.unit(70, "cm"),
  20357. weight: math.unit(6, "kg"),
  20358. name: "Front (Dressed)",
  20359. image: {
  20360. source: "./media/characters/sebi/front-dressed.svg",
  20361. extra: 713.5 / 686.5,
  20362. bottom: 0.003
  20363. }
  20364. },
  20365. front: {
  20366. height: math.unit(70, "cm"),
  20367. weight: math.unit(5, "kg"),
  20368. name: "Front",
  20369. image: {
  20370. source: "./media/characters/sebi/front.svg",
  20371. extra: 713.5 / 686.5,
  20372. bottom: 0.003
  20373. }
  20374. }
  20375. },
  20376. [
  20377. {
  20378. name: "Normal",
  20379. height: math.unit(70, "cm"),
  20380. default: true
  20381. },
  20382. {
  20383. name: "Macro",
  20384. height: math.unit(8, "meters")
  20385. },
  20386. ]
  20387. ))
  20388. characterMakers.push(() => makeCharacter(
  20389. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20390. {
  20391. front: {
  20392. height: math.unit(6, "feet"),
  20393. weight: math.unit(150, "lb"),
  20394. name: "Front",
  20395. image: {
  20396. source: "./media/characters/typhek/front.svg",
  20397. extra: 1948 / 1929,
  20398. bottom: 0.025
  20399. }
  20400. },
  20401. side: {
  20402. height: math.unit(6, "feet"),
  20403. weight: math.unit(150, "lb"),
  20404. name: "Side",
  20405. image: {
  20406. source: "./media/characters/typhek/side.svg",
  20407. extra: 2034 / 2010,
  20408. bottom: 0.003
  20409. }
  20410. },
  20411. back: {
  20412. height: math.unit(6, "feet"),
  20413. weight: math.unit(150, "lb"),
  20414. name: "Back",
  20415. image: {
  20416. source: "./media/characters/typhek/back.svg",
  20417. extra: 2005 / 1978,
  20418. bottom: 0.004
  20419. }
  20420. },
  20421. palm: {
  20422. height: math.unit(1.2, "feet"),
  20423. name: "Palm",
  20424. image: {
  20425. source: "./media/characters/typhek/palm.svg"
  20426. }
  20427. },
  20428. fist: {
  20429. height: math.unit(1.1, "feet"),
  20430. name: "Fist",
  20431. image: {
  20432. source: "./media/characters/typhek/fist.svg"
  20433. }
  20434. },
  20435. foot: {
  20436. height: math.unit(1.57, "feet"),
  20437. name: "Foot",
  20438. image: {
  20439. source: "./media/characters/typhek/foot.svg"
  20440. }
  20441. },
  20442. sole: {
  20443. height: math.unit(2.05, "feet"),
  20444. name: "Sole",
  20445. image: {
  20446. source: "./media/characters/typhek/sole.svg"
  20447. }
  20448. },
  20449. },
  20450. [
  20451. {
  20452. name: "Macro",
  20453. height: math.unit(40, "stories"),
  20454. default: true
  20455. },
  20456. {
  20457. name: "Megamacro",
  20458. height: math.unit(1, "mile")
  20459. },
  20460. {
  20461. name: "Gigamacro",
  20462. height: math.unit(4000, "solarradii")
  20463. },
  20464. {
  20465. name: "Universal",
  20466. height: math.unit(1.1, "universes")
  20467. }
  20468. ]
  20469. ))
  20470. characterMakers.push(() => makeCharacter(
  20471. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20472. {
  20473. side: {
  20474. height: math.unit(5 + 7 / 12, "feet"),
  20475. weight: math.unit(150, "lb"),
  20476. name: "Side",
  20477. image: {
  20478. source: "./media/characters/kassy/side.svg",
  20479. extra: 1280 / 1225,
  20480. bottom: 0.002
  20481. }
  20482. },
  20483. front: {
  20484. height: math.unit(5 + 7 / 12, "feet"),
  20485. weight: math.unit(150, "lb"),
  20486. name: "Front",
  20487. image: {
  20488. source: "./media/characters/kassy/front.svg",
  20489. extra: 1280 / 1225,
  20490. bottom: 0.025
  20491. }
  20492. },
  20493. back: {
  20494. height: math.unit(5 + 7 / 12, "feet"),
  20495. weight: math.unit(150, "lb"),
  20496. name: "Back",
  20497. image: {
  20498. source: "./media/characters/kassy/back.svg",
  20499. extra: 1280 / 1225,
  20500. bottom: 0.002
  20501. }
  20502. },
  20503. foot: {
  20504. height: math.unit(1.266, "feet"),
  20505. name: "Foot",
  20506. image: {
  20507. source: "./media/characters/kassy/foot.svg"
  20508. }
  20509. },
  20510. },
  20511. [
  20512. {
  20513. name: "Normal",
  20514. height: math.unit(5 + 7 / 12, "feet")
  20515. },
  20516. {
  20517. name: "Macro",
  20518. height: math.unit(137, "feet"),
  20519. default: true
  20520. },
  20521. {
  20522. name: "Megamacro",
  20523. height: math.unit(1, "mile")
  20524. },
  20525. ]
  20526. ))
  20527. characterMakers.push(() => makeCharacter(
  20528. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20529. {
  20530. front: {
  20531. height: math.unit(6 + 1 / 12, "feet"),
  20532. weight: math.unit(200, "lb"),
  20533. name: "Front",
  20534. image: {
  20535. source: "./media/characters/neil/front.svg",
  20536. extra: 1326 / 1250,
  20537. bottom: 0.023
  20538. }
  20539. },
  20540. },
  20541. [
  20542. {
  20543. name: "Normal",
  20544. height: math.unit(6 + 1 / 12, "feet"),
  20545. default: true
  20546. },
  20547. {
  20548. name: "Macro",
  20549. height: math.unit(200, "feet")
  20550. },
  20551. ]
  20552. ))
  20553. characterMakers.push(() => makeCharacter(
  20554. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20555. {
  20556. front: {
  20557. height: math.unit(5 + 9 / 12, "feet"),
  20558. weight: math.unit(190, "lb"),
  20559. name: "Front",
  20560. image: {
  20561. source: "./media/characters/atticus/front.svg",
  20562. extra: 2934 / 2785,
  20563. bottom: 0.025
  20564. }
  20565. },
  20566. },
  20567. [
  20568. {
  20569. name: "Normal",
  20570. height: math.unit(5 + 9 / 12, "feet"),
  20571. default: true
  20572. },
  20573. {
  20574. name: "Macro",
  20575. height: math.unit(180, "feet")
  20576. },
  20577. ]
  20578. ))
  20579. characterMakers.push(() => makeCharacter(
  20580. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20581. {
  20582. side: {
  20583. height: math.unit(9, "feet"),
  20584. weight: math.unit(650, "lb"),
  20585. name: "Side",
  20586. image: {
  20587. source: "./media/characters/milo/side.svg",
  20588. extra: 2644 / 2310,
  20589. bottom: 0.032
  20590. }
  20591. },
  20592. },
  20593. [
  20594. {
  20595. name: "Normal",
  20596. height: math.unit(9, "feet"),
  20597. default: true
  20598. },
  20599. {
  20600. name: "Macro",
  20601. height: math.unit(300, "feet")
  20602. },
  20603. ]
  20604. ))
  20605. characterMakers.push(() => makeCharacter(
  20606. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20607. {
  20608. side: {
  20609. height: math.unit(8, "meters"),
  20610. weight: math.unit(90000, "kg"),
  20611. name: "Side",
  20612. image: {
  20613. source: "./media/characters/ijzer/side.svg",
  20614. extra: 2756 / 1600,
  20615. bottom: 0.01
  20616. }
  20617. },
  20618. },
  20619. [
  20620. {
  20621. name: "Small",
  20622. height: math.unit(3, "meters")
  20623. },
  20624. {
  20625. name: "Normal",
  20626. height: math.unit(8, "meters"),
  20627. default: true
  20628. },
  20629. {
  20630. name: "Normal+",
  20631. height: math.unit(10, "meters")
  20632. },
  20633. {
  20634. name: "Bigger",
  20635. height: math.unit(24, "meters")
  20636. },
  20637. {
  20638. name: "Huge",
  20639. height: math.unit(80, "meters")
  20640. },
  20641. ]
  20642. ))
  20643. characterMakers.push(() => makeCharacter(
  20644. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20645. {
  20646. front: {
  20647. height: math.unit(6 + 2 / 12, "feet"),
  20648. weight: math.unit(153, "lb"),
  20649. name: "Front",
  20650. image: {
  20651. source: "./media/characters/luca-cervicum/front.svg",
  20652. extra: 370 / 327,
  20653. bottom: 0.015
  20654. }
  20655. },
  20656. back: {
  20657. height: math.unit(6 + 2 / 12, "feet"),
  20658. weight: math.unit(153, "lb"),
  20659. name: "Back",
  20660. image: {
  20661. source: "./media/characters/luca-cervicum/back.svg",
  20662. extra: 367 / 333,
  20663. bottom: 0.005
  20664. }
  20665. },
  20666. frontGear: {
  20667. height: math.unit(6 + 2 / 12, "feet"),
  20668. weight: math.unit(173, "lb"),
  20669. name: "Front (Gear)",
  20670. image: {
  20671. source: "./media/characters/luca-cervicum/front-gear.svg",
  20672. extra: 377 / 333,
  20673. bottom: 0.006
  20674. }
  20675. },
  20676. },
  20677. [
  20678. {
  20679. name: "Normal",
  20680. height: math.unit(6 + 2 / 12, "feet"),
  20681. default: true
  20682. },
  20683. ]
  20684. ))
  20685. characterMakers.push(() => makeCharacter(
  20686. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20687. {
  20688. front: {
  20689. height: math.unit(6 + 1 / 12, "feet"),
  20690. weight: math.unit(304, "lb"),
  20691. name: "Front",
  20692. image: {
  20693. source: "./media/characters/oliver/front.svg",
  20694. extra: 157 / 143,
  20695. bottom: 0.08
  20696. }
  20697. },
  20698. },
  20699. [
  20700. {
  20701. name: "Normal",
  20702. height: math.unit(6 + 1 / 12, "feet"),
  20703. default: true
  20704. },
  20705. ]
  20706. ))
  20707. characterMakers.push(() => makeCharacter(
  20708. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20709. {
  20710. front: {
  20711. height: math.unit(5 + 7 / 12, "feet"),
  20712. weight: math.unit(140, "lb"),
  20713. name: "Front",
  20714. image: {
  20715. source: "./media/characters/shane/front.svg",
  20716. extra: 304 / 289,
  20717. bottom: 0.005
  20718. }
  20719. },
  20720. },
  20721. [
  20722. {
  20723. name: "Normal",
  20724. height: math.unit(5 + 7 / 12, "feet"),
  20725. default: true
  20726. },
  20727. ]
  20728. ))
  20729. characterMakers.push(() => makeCharacter(
  20730. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20731. {
  20732. front: {
  20733. height: math.unit(5 + 9 / 12, "feet"),
  20734. weight: math.unit(178, "lb"),
  20735. name: "Front",
  20736. image: {
  20737. source: "./media/characters/shin/front.svg",
  20738. extra: 159 / 151,
  20739. bottom: 0.015
  20740. }
  20741. },
  20742. },
  20743. [
  20744. {
  20745. name: "Normal",
  20746. height: math.unit(5 + 9 / 12, "feet"),
  20747. default: true
  20748. },
  20749. ]
  20750. ))
  20751. characterMakers.push(() => makeCharacter(
  20752. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20753. {
  20754. front: {
  20755. height: math.unit(5 + 10 / 12, "feet"),
  20756. weight: math.unit(168, "lb"),
  20757. name: "Front",
  20758. image: {
  20759. source: "./media/characters/xerxes/front.svg",
  20760. extra: 282 / 260,
  20761. bottom: 0.045
  20762. }
  20763. },
  20764. },
  20765. [
  20766. {
  20767. name: "Normal",
  20768. height: math.unit(5 + 10 / 12, "feet"),
  20769. default: true
  20770. },
  20771. ]
  20772. ))
  20773. characterMakers.push(() => makeCharacter(
  20774. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20775. {
  20776. front: {
  20777. height: math.unit(6 + 7 / 12, "feet"),
  20778. weight: math.unit(208, "lb"),
  20779. name: "Front",
  20780. image: {
  20781. source: "./media/characters/chaska/front.svg",
  20782. extra: 332 / 319,
  20783. bottom: 0.015
  20784. }
  20785. },
  20786. },
  20787. [
  20788. {
  20789. name: "Normal",
  20790. height: math.unit(6 + 7 / 12, "feet"),
  20791. default: true
  20792. },
  20793. ]
  20794. ))
  20795. characterMakers.push(() => makeCharacter(
  20796. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20797. {
  20798. front: {
  20799. height: math.unit(5 + 8 / 12, "feet"),
  20800. weight: math.unit(208, "lb"),
  20801. name: "Front",
  20802. image: {
  20803. source: "./media/characters/enuk/front.svg",
  20804. extra: 437 / 406,
  20805. bottom: 0.02
  20806. }
  20807. },
  20808. },
  20809. [
  20810. {
  20811. name: "Normal",
  20812. height: math.unit(5 + 8 / 12, "feet"),
  20813. default: true
  20814. },
  20815. ]
  20816. ))
  20817. characterMakers.push(() => makeCharacter(
  20818. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20819. {
  20820. front: {
  20821. height: math.unit(5 + 10 / 12, "feet"),
  20822. weight: math.unit(252, "lb"),
  20823. name: "Front",
  20824. image: {
  20825. source: "./media/characters/bruun/front.svg",
  20826. extra: 197 / 187,
  20827. bottom: 0.012
  20828. }
  20829. },
  20830. },
  20831. [
  20832. {
  20833. name: "Normal",
  20834. height: math.unit(5 + 10 / 12, "feet"),
  20835. default: true
  20836. },
  20837. ]
  20838. ))
  20839. characterMakers.push(() => makeCharacter(
  20840. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20841. {
  20842. front: {
  20843. height: math.unit(6 + 10 / 12, "feet"),
  20844. weight: math.unit(255, "lb"),
  20845. name: "Front",
  20846. image: {
  20847. source: "./media/characters/alexeev/front.svg",
  20848. extra: 213 / 200,
  20849. bottom: 0.05
  20850. }
  20851. },
  20852. },
  20853. [
  20854. {
  20855. name: "Normal",
  20856. height: math.unit(6 + 10 / 12, "feet"),
  20857. default: true
  20858. },
  20859. ]
  20860. ))
  20861. characterMakers.push(() => makeCharacter(
  20862. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20863. {
  20864. front: {
  20865. height: math.unit(2 + 8 / 12, "feet"),
  20866. weight: math.unit(22, "lb"),
  20867. name: "Front",
  20868. image: {
  20869. source: "./media/characters/evelyn/front.svg",
  20870. extra: 208 / 180
  20871. }
  20872. },
  20873. },
  20874. [
  20875. {
  20876. name: "Normal",
  20877. height: math.unit(2 + 8 / 12, "feet"),
  20878. default: true
  20879. },
  20880. ]
  20881. ))
  20882. characterMakers.push(() => makeCharacter(
  20883. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20884. {
  20885. front: {
  20886. height: math.unit(5 + 9 / 12, "feet"),
  20887. weight: math.unit(139, "lb"),
  20888. name: "Front",
  20889. image: {
  20890. source: "./media/characters/inca/front.svg",
  20891. extra: 294 / 291,
  20892. bottom: 0.03
  20893. }
  20894. },
  20895. },
  20896. [
  20897. {
  20898. name: "Normal",
  20899. height: math.unit(5 + 9 / 12, "feet"),
  20900. default: true
  20901. },
  20902. ]
  20903. ))
  20904. characterMakers.push(() => makeCharacter(
  20905. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20906. {
  20907. front: {
  20908. height: math.unit(6 + 3 / 12, "feet"),
  20909. weight: math.unit(185, "lb"),
  20910. name: "Front",
  20911. image: {
  20912. source: "./media/characters/mera/front.svg",
  20913. extra: 291 / 277,
  20914. bottom: 0.03
  20915. }
  20916. },
  20917. },
  20918. [
  20919. {
  20920. name: "Normal",
  20921. height: math.unit(6 + 3 / 12, "feet"),
  20922. default: true
  20923. },
  20924. ]
  20925. ))
  20926. characterMakers.push(() => makeCharacter(
  20927. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20928. {
  20929. front: {
  20930. height: math.unit(6 + 7 / 12, "feet"),
  20931. weight: math.unit(160, "lb"),
  20932. name: "Front",
  20933. image: {
  20934. source: "./media/characters/ceres/front.svg",
  20935. extra: 1023 / 950,
  20936. bottom: 0.027
  20937. }
  20938. },
  20939. back: {
  20940. height: math.unit(6 + 7 / 12, "feet"),
  20941. weight: math.unit(160, "lb"),
  20942. name: "Back",
  20943. image: {
  20944. source: "./media/characters/ceres/back.svg",
  20945. extra: 1023 / 950
  20946. }
  20947. },
  20948. },
  20949. [
  20950. {
  20951. name: "Normal",
  20952. height: math.unit(6 + 7 / 12, "feet"),
  20953. default: true
  20954. },
  20955. ]
  20956. ))
  20957. characterMakers.push(() => makeCharacter(
  20958. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20959. {
  20960. front: {
  20961. height: math.unit(5 + 10 / 12, "feet"),
  20962. weight: math.unit(150, "lb"),
  20963. name: "Front",
  20964. image: {
  20965. source: "./media/characters/kris/front.svg",
  20966. extra: 885 / 803,
  20967. bottom: 0.03
  20968. }
  20969. },
  20970. },
  20971. [
  20972. {
  20973. name: "Normal",
  20974. height: math.unit(5 + 10 / 12, "feet"),
  20975. default: true
  20976. },
  20977. ]
  20978. ))
  20979. characterMakers.push(() => makeCharacter(
  20980. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20981. {
  20982. front: {
  20983. height: math.unit(7, "feet"),
  20984. weight: math.unit(120, "kg"),
  20985. name: "Front",
  20986. image: {
  20987. source: "./media/characters/taluthus/front.svg",
  20988. extra: 903 / 833,
  20989. bottom: 0.015
  20990. }
  20991. },
  20992. },
  20993. [
  20994. {
  20995. name: "Normal",
  20996. height: math.unit(7, "feet"),
  20997. default: true
  20998. },
  20999. {
  21000. name: "Macro",
  21001. height: math.unit(300, "feet")
  21002. },
  21003. ]
  21004. ))
  21005. characterMakers.push(() => makeCharacter(
  21006. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21007. {
  21008. front: {
  21009. height: math.unit(5 + 9 / 12, "feet"),
  21010. weight: math.unit(145, "lb"),
  21011. name: "Front",
  21012. image: {
  21013. source: "./media/characters/dawn/front.svg",
  21014. extra: 2094 / 2016,
  21015. bottom: 0.025
  21016. }
  21017. },
  21018. back: {
  21019. height: math.unit(5 + 9 / 12, "feet"),
  21020. weight: math.unit(160, "lb"),
  21021. name: "Back",
  21022. image: {
  21023. source: "./media/characters/dawn/back.svg",
  21024. extra: 2112 / 2080,
  21025. bottom: 0.005
  21026. }
  21027. },
  21028. },
  21029. [
  21030. {
  21031. name: "Normal",
  21032. height: math.unit(6 + 7 / 12, "feet"),
  21033. default: true
  21034. },
  21035. ]
  21036. ))
  21037. characterMakers.push(() => makeCharacter(
  21038. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21039. {
  21040. anthro: {
  21041. height: math.unit(8 + 3 / 12, "feet"),
  21042. weight: math.unit(450, "lb"),
  21043. name: "Anthro",
  21044. image: {
  21045. source: "./media/characters/arador/anthro.svg",
  21046. extra: 1835 / 1718,
  21047. bottom: 0.025
  21048. }
  21049. },
  21050. feral: {
  21051. height: math.unit(4, "feet"),
  21052. weight: math.unit(200, "lb"),
  21053. name: "Feral",
  21054. image: {
  21055. source: "./media/characters/arador/feral.svg",
  21056. extra: 1683 / 1514,
  21057. bottom: 0.07
  21058. }
  21059. },
  21060. },
  21061. [
  21062. {
  21063. name: "Normal",
  21064. height: math.unit(8 + 3 / 12, "feet")
  21065. },
  21066. {
  21067. name: "Macro",
  21068. height: math.unit(82.5, "feet"),
  21069. default: true
  21070. },
  21071. ]
  21072. ))
  21073. characterMakers.push(() => makeCharacter(
  21074. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21075. {
  21076. front: {
  21077. height: math.unit(5 + 10 / 12, "feet"),
  21078. weight: math.unit(125, "lb"),
  21079. name: "Front",
  21080. image: {
  21081. source: "./media/characters/dharsi/front.svg",
  21082. extra: 716 / 630,
  21083. bottom: 0.035
  21084. }
  21085. },
  21086. },
  21087. [
  21088. {
  21089. name: "Nano",
  21090. height: math.unit(100, "nm")
  21091. },
  21092. {
  21093. name: "Micro",
  21094. height: math.unit(2, "inches")
  21095. },
  21096. {
  21097. name: "Normal",
  21098. height: math.unit(5 + 10 / 12, "feet"),
  21099. default: true
  21100. },
  21101. {
  21102. name: "Macro",
  21103. height: math.unit(1000, "feet")
  21104. },
  21105. {
  21106. name: "Megamacro",
  21107. height: math.unit(10, "miles")
  21108. },
  21109. {
  21110. name: "Gigamacro",
  21111. height: math.unit(3000, "miles")
  21112. },
  21113. {
  21114. name: "Teramacro",
  21115. height: math.unit(500000, "miles")
  21116. },
  21117. {
  21118. name: "Teramacro+",
  21119. height: math.unit(30, "galaxies")
  21120. },
  21121. ]
  21122. ))
  21123. characterMakers.push(() => makeCharacter(
  21124. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21125. {
  21126. front: {
  21127. height: math.unit(6, "feet"),
  21128. weight: math.unit(150, "lb"),
  21129. name: "Front",
  21130. image: {
  21131. source: "./media/characters/deathy/front.svg",
  21132. extra: 1552 / 1463,
  21133. bottom: 0.025
  21134. }
  21135. },
  21136. side: {
  21137. height: math.unit(6, "feet"),
  21138. weight: math.unit(150, "lb"),
  21139. name: "Side",
  21140. image: {
  21141. source: "./media/characters/deathy/side.svg",
  21142. extra: 1604 / 1455,
  21143. bottom: 0.025
  21144. }
  21145. },
  21146. back: {
  21147. height: math.unit(6, "feet"),
  21148. weight: math.unit(150, "lb"),
  21149. name: "Back",
  21150. image: {
  21151. source: "./media/characters/deathy/back.svg",
  21152. extra: 1580 / 1463,
  21153. bottom: 0.005
  21154. }
  21155. },
  21156. },
  21157. [
  21158. {
  21159. name: "Micro",
  21160. height: math.unit(5, "millimeters")
  21161. },
  21162. {
  21163. name: "Normal",
  21164. height: math.unit(6 + 5 / 12, "feet"),
  21165. default: true
  21166. },
  21167. ]
  21168. ))
  21169. characterMakers.push(() => makeCharacter(
  21170. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21171. {
  21172. front: {
  21173. height: math.unit(16, "feet"),
  21174. weight: math.unit(4000, "lb"),
  21175. name: "Front",
  21176. image: {
  21177. source: "./media/characters/juniper/front.svg",
  21178. bottom: 0.04
  21179. }
  21180. },
  21181. },
  21182. [
  21183. {
  21184. name: "Normal",
  21185. height: math.unit(16, "feet"),
  21186. default: true
  21187. },
  21188. ]
  21189. ))
  21190. characterMakers.push(() => makeCharacter(
  21191. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21192. {
  21193. front: {
  21194. height: math.unit(6, "feet"),
  21195. weight: math.unit(150, "lb"),
  21196. name: "Front",
  21197. image: {
  21198. source: "./media/characters/hipster/front.svg",
  21199. extra: 1312 / 1209,
  21200. bottom: 0.025
  21201. }
  21202. },
  21203. back: {
  21204. height: math.unit(6, "feet"),
  21205. weight: math.unit(150, "lb"),
  21206. name: "Back",
  21207. image: {
  21208. source: "./media/characters/hipster/back.svg",
  21209. extra: 1281 / 1196,
  21210. bottom: 0.01
  21211. }
  21212. },
  21213. },
  21214. [
  21215. {
  21216. name: "Micro",
  21217. height: math.unit(1, "mm")
  21218. },
  21219. {
  21220. name: "Normal",
  21221. height: math.unit(4, "inches"),
  21222. default: true
  21223. },
  21224. {
  21225. name: "Macro",
  21226. height: math.unit(500, "feet")
  21227. },
  21228. {
  21229. name: "Megamacro",
  21230. height: math.unit(1000, "miles")
  21231. },
  21232. ]
  21233. ))
  21234. characterMakers.push(() => makeCharacter(
  21235. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21236. {
  21237. front: {
  21238. height: math.unit(6, "feet"),
  21239. weight: math.unit(150, "lb"),
  21240. name: "Front",
  21241. image: {
  21242. source: "./media/characters/tendirmuldr/front.svg",
  21243. extra: 1878 / 1772,
  21244. bottom: 0.015
  21245. }
  21246. },
  21247. },
  21248. [
  21249. {
  21250. name: "Megamacro",
  21251. height: math.unit(1500, "miles"),
  21252. default: true
  21253. },
  21254. ]
  21255. ))
  21256. characterMakers.push(() => makeCharacter(
  21257. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21258. {
  21259. front: {
  21260. height: math.unit(14, "feet"),
  21261. weight: math.unit(12000, "lb"),
  21262. name: "Front",
  21263. image: {
  21264. source: "./media/characters/mort/front.svg",
  21265. extra: 365 / 318,
  21266. bottom: 0.01
  21267. }
  21268. },
  21269. side: {
  21270. height: math.unit(14, "feet"),
  21271. weight: math.unit(12000, "lb"),
  21272. name: "Side",
  21273. image: {
  21274. source: "./media/characters/mort/side.svg",
  21275. extra: 365 / 318,
  21276. bottom: 0.052
  21277. },
  21278. default: true
  21279. },
  21280. back: {
  21281. height: math.unit(14, "feet"),
  21282. weight: math.unit(12000, "lb"),
  21283. name: "Back",
  21284. image: {
  21285. source: "./media/characters/mort/back.svg",
  21286. extra: 371 / 332,
  21287. bottom: 0.18
  21288. }
  21289. },
  21290. },
  21291. [
  21292. {
  21293. name: "Normal",
  21294. height: math.unit(14, "feet"),
  21295. default: true
  21296. },
  21297. ]
  21298. ))
  21299. characterMakers.push(() => makeCharacter(
  21300. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21301. {
  21302. front: {
  21303. height: math.unit(8, "feet"),
  21304. weight: math.unit(1, "ton"),
  21305. name: "Front",
  21306. image: {
  21307. source: "./media/characters/lycoa/front.svg",
  21308. extra: 1836/1728,
  21309. bottom: 81/1917
  21310. }
  21311. },
  21312. back: {
  21313. height: math.unit(8, "feet"),
  21314. weight: math.unit(1, "ton"),
  21315. name: "Back",
  21316. image: {
  21317. source: "./media/characters/lycoa/back.svg",
  21318. extra: 1785/1720,
  21319. bottom: 91/1876
  21320. }
  21321. },
  21322. head: {
  21323. height: math.unit(1.6243, "feet"),
  21324. name: "Head",
  21325. image: {
  21326. source: "./media/characters/lycoa/head.svg",
  21327. extra: 1011/782,
  21328. bottom: 0/1011
  21329. }
  21330. },
  21331. tailmaw: {
  21332. height: math.unit(1.9, "feet"),
  21333. name: "Tailmaw",
  21334. image: {
  21335. source: "./media/characters/lycoa/tailmaw.svg"
  21336. }
  21337. },
  21338. tentacles: {
  21339. height: math.unit(2.1, "feet"),
  21340. name: "Tentacles",
  21341. image: {
  21342. source: "./media/characters/lycoa/tentacles.svg"
  21343. }
  21344. },
  21345. dick: {
  21346. height: math.unit(1.73, "feet"),
  21347. name: "Dick",
  21348. image: {
  21349. source: "./media/characters/lycoa/dick.svg"
  21350. }
  21351. },
  21352. },
  21353. [
  21354. {
  21355. name: "Normal",
  21356. height: math.unit(8, "feet"),
  21357. default: true
  21358. },
  21359. {
  21360. name: "Macro",
  21361. height: math.unit(30, "feet")
  21362. },
  21363. ]
  21364. ))
  21365. characterMakers.push(() => makeCharacter(
  21366. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21367. {
  21368. front: {
  21369. height: math.unit(4 + 2 / 12, "feet"),
  21370. weight: math.unit(70, "lb"),
  21371. name: "Front",
  21372. image: {
  21373. source: "./media/characters/naldara/front.svg",
  21374. extra: 1664/1387,
  21375. bottom: 81/1745
  21376. },
  21377. form: "anthro",
  21378. default: true
  21379. },
  21380. naga: {
  21381. height: math.unit(20, "feet"),
  21382. weight: math.unit(15000, "kg"),
  21383. name: "Front",
  21384. image: {
  21385. source: "./media/characters/naldara/naga.svg",
  21386. extra: 1590/1396,
  21387. bottom: 285/1875
  21388. },
  21389. form: "naga",
  21390. default: true
  21391. },
  21392. },
  21393. [
  21394. {
  21395. name: "Normal",
  21396. height: math.unit(4 + 2 / 12, "feet"),
  21397. form: "anthro",
  21398. default: true
  21399. },
  21400. {
  21401. name: "Normal",
  21402. height: math.unit(20, "feet"),
  21403. form: "naga",
  21404. default: true
  21405. },
  21406. ],
  21407. {
  21408. "anthro": {
  21409. name: "Anthro",
  21410. default: true
  21411. },
  21412. "naga": {
  21413. name: "Naga"
  21414. }
  21415. }
  21416. ))
  21417. characterMakers.push(() => makeCharacter(
  21418. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21419. {
  21420. front: {
  21421. height: math.unit(13 + 7 / 12, "feet"),
  21422. weight: math.unit(1500, "lb"),
  21423. name: "Front",
  21424. image: {
  21425. source: "./media/characters/briar/front.svg",
  21426. extra: 1223/1157,
  21427. bottom: 123/1346
  21428. }
  21429. },
  21430. },
  21431. [
  21432. {
  21433. name: "Normal",
  21434. height: math.unit(13 + 7 / 12, "feet"),
  21435. default: true
  21436. },
  21437. ]
  21438. ))
  21439. characterMakers.push(() => makeCharacter(
  21440. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21441. {
  21442. side: {
  21443. height: math.unit(16, "feet"),
  21444. weight: math.unit(500, "lb"),
  21445. name: "Side",
  21446. image: {
  21447. source: "./media/characters/vanguard/side.svg",
  21448. extra: 1022/914,
  21449. bottom: 30/1052
  21450. }
  21451. },
  21452. sideAlt: {
  21453. height: math.unit(10, "feet"),
  21454. weight: math.unit(500, "lb"),
  21455. name: "Side (Alt)",
  21456. image: {
  21457. source: "./media/characters/vanguard/side-alt.svg",
  21458. extra: 502 / 425,
  21459. bottom: 0.087
  21460. }
  21461. },
  21462. },
  21463. [
  21464. {
  21465. name: "Normal",
  21466. height: math.unit(17.71, "feet"),
  21467. default: true
  21468. },
  21469. ]
  21470. ))
  21471. characterMakers.push(() => makeCharacter(
  21472. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21473. {
  21474. front: {
  21475. height: math.unit(7.5, "feet"),
  21476. weight: math.unit(2, "lb"),
  21477. name: "Front",
  21478. image: {
  21479. source: "./media/characters/artemis/work-safe-front.svg",
  21480. extra: 1192 / 1075,
  21481. bottom: 0.07
  21482. },
  21483. form: "work-safe",
  21484. default: true
  21485. },
  21486. frontNsfw: {
  21487. height: math.unit(7.5, "feet"),
  21488. weight: math.unit(2, "lb"),
  21489. name: "Front",
  21490. image: {
  21491. source: "./media/characters/artemis/calibrating-front.svg",
  21492. extra: 1192 / 1075,
  21493. bottom: 0.07
  21494. },
  21495. form: "calibrating",
  21496. default: true
  21497. },
  21498. frontNsfwer: {
  21499. height: math.unit(7.5, "feet"),
  21500. weight: math.unit(2, "lb"),
  21501. name: "Front",
  21502. image: {
  21503. source: "./media/characters/artemis/oversize-load-front.svg",
  21504. extra: 1192 / 1075,
  21505. bottom: 0.07
  21506. },
  21507. form: "oversize-load",
  21508. default: true
  21509. },
  21510. side: {
  21511. height: math.unit(7.5, "feet"),
  21512. weight: math.unit(2, "lb"),
  21513. name: "Side",
  21514. image: {
  21515. source: "./media/characters/artemis/work-safe-side.svg",
  21516. extra: 1192 / 1075,
  21517. bottom: 0.07
  21518. },
  21519. form: "work-safe"
  21520. },
  21521. sideNsfw: {
  21522. height: math.unit(7.5, "feet"),
  21523. weight: math.unit(2, "lb"),
  21524. name: "Side",
  21525. image: {
  21526. source: "./media/characters/artemis/calibrating-side.svg",
  21527. extra: 1192 / 1075,
  21528. bottom: 0.07
  21529. },
  21530. form: "calibrating"
  21531. },
  21532. sideNsfwer: {
  21533. height: math.unit(7.5, "feet"),
  21534. weight: math.unit(2, "lb"),
  21535. name: "Side",
  21536. image: {
  21537. source: "./media/characters/artemis/oversize-load-side.svg",
  21538. extra: 1192 / 1075,
  21539. bottom: 0.07
  21540. },
  21541. form: "oversize-load"
  21542. },
  21543. maw: {
  21544. height: math.unit(1.1, "feet"),
  21545. name: "Maw",
  21546. image: {
  21547. source: "./media/characters/artemis/maw.svg"
  21548. },
  21549. form: "work-safe"
  21550. },
  21551. stomach: {
  21552. height: math.unit(0.95, "feet"),
  21553. name: "Stomach",
  21554. image: {
  21555. source: "./media/characters/artemis/stomach.svg"
  21556. },
  21557. form: "work-safe"
  21558. },
  21559. dickCanine: {
  21560. height: math.unit(1, "feet"),
  21561. name: "Dick (Canine)",
  21562. image: {
  21563. source: "./media/characters/artemis/dick-canine.svg"
  21564. },
  21565. form: "calibrating"
  21566. },
  21567. dickEquine: {
  21568. height: math.unit(0.85, "feet"),
  21569. name: "Dick (Equine)",
  21570. image: {
  21571. source: "./media/characters/artemis/dick-equine.svg"
  21572. },
  21573. form: "calibrating"
  21574. },
  21575. dickExotic: {
  21576. height: math.unit(0.85, "feet"),
  21577. name: "Dick (Exotic)",
  21578. image: {
  21579. source: "./media/characters/artemis/dick-exotic.svg"
  21580. },
  21581. form: "calibrating"
  21582. },
  21583. dickCanineBigger: {
  21584. height: math.unit(1 * 1.33, "feet"),
  21585. name: "Dick (Canine)",
  21586. image: {
  21587. source: "./media/characters/artemis/dick-canine.svg"
  21588. },
  21589. form: "oversize-load"
  21590. },
  21591. dickEquineBigger: {
  21592. height: math.unit(0.85 * 1.33, "feet"),
  21593. name: "Dick (Equine)",
  21594. image: {
  21595. source: "./media/characters/artemis/dick-equine.svg"
  21596. },
  21597. form: "oversize-load"
  21598. },
  21599. dickExoticBigger: {
  21600. height: math.unit(0.85 * 1.33, "feet"),
  21601. name: "Dick (Exotic)",
  21602. image: {
  21603. source: "./media/characters/artemis/dick-exotic.svg"
  21604. },
  21605. form: "oversize-load"
  21606. },
  21607. },
  21608. [
  21609. {
  21610. name: "Normal",
  21611. height: math.unit(7.5, "feet"),
  21612. form: "work-safe",
  21613. default: true
  21614. },
  21615. {
  21616. name: "Normal",
  21617. height: math.unit(7.5, "feet"),
  21618. form: "calibrating",
  21619. default: true
  21620. },
  21621. {
  21622. name: "Normal",
  21623. height: math.unit(7.5, "feet"),
  21624. form: "oversize-load",
  21625. default: true
  21626. },
  21627. {
  21628. name: "Enlarged",
  21629. height: math.unit(12, "feet"),
  21630. form: "work-safe",
  21631. },
  21632. {
  21633. name: "Enlarged",
  21634. height: math.unit(12, "feet"),
  21635. form: "calibrating",
  21636. },
  21637. {
  21638. name: "Enlarged",
  21639. height: math.unit(12, "feet"),
  21640. form: "oversize-load",
  21641. },
  21642. ],
  21643. {
  21644. "work-safe": {
  21645. name: "Work-Safe",
  21646. default: true
  21647. },
  21648. "calibrating": {
  21649. name: "Calibrating"
  21650. },
  21651. "oversize-load": {
  21652. name: "Oversize Load"
  21653. }
  21654. }
  21655. ))
  21656. characterMakers.push(() => makeCharacter(
  21657. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21658. {
  21659. front: {
  21660. height: math.unit(5 + 3 / 12, "feet"),
  21661. weight: math.unit(160, "lb"),
  21662. name: "Front",
  21663. image: {
  21664. source: "./media/characters/kira/front.svg",
  21665. extra: 906 / 786,
  21666. bottom: 0.01
  21667. }
  21668. },
  21669. back: {
  21670. height: math.unit(5 + 3 / 12, "feet"),
  21671. weight: math.unit(160, "lb"),
  21672. name: "Back",
  21673. image: {
  21674. source: "./media/characters/kira/back.svg",
  21675. extra: 882 / 757,
  21676. bottom: 0.005
  21677. }
  21678. },
  21679. frontDressed: {
  21680. height: math.unit(5 + 3 / 12, "feet"),
  21681. weight: math.unit(160, "lb"),
  21682. name: "Front (Dressed)",
  21683. image: {
  21684. source: "./media/characters/kira/front-dressed.svg",
  21685. extra: 906 / 786,
  21686. bottom: 0.01
  21687. }
  21688. },
  21689. beans: {
  21690. height: math.unit(0.92, "feet"),
  21691. name: "Beans",
  21692. image: {
  21693. source: "./media/characters/kira/beans.svg"
  21694. }
  21695. },
  21696. },
  21697. [
  21698. {
  21699. name: "Normal",
  21700. height: math.unit(5 + 3 / 12, "feet"),
  21701. default: true
  21702. },
  21703. ]
  21704. ))
  21705. characterMakers.push(() => makeCharacter(
  21706. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21707. {
  21708. front: {
  21709. height: math.unit(5 + 4 / 12, "feet"),
  21710. weight: math.unit(145, "lb"),
  21711. name: "Front",
  21712. image: {
  21713. source: "./media/characters/scramble/front.svg",
  21714. extra: 763 / 727,
  21715. bottom: 0.05
  21716. }
  21717. },
  21718. back: {
  21719. height: math.unit(5 + 4 / 12, "feet"),
  21720. weight: math.unit(145, "lb"),
  21721. name: "Back",
  21722. image: {
  21723. source: "./media/characters/scramble/back.svg",
  21724. extra: 826 / 737,
  21725. bottom: 0.002
  21726. }
  21727. },
  21728. },
  21729. [
  21730. {
  21731. name: "Normal",
  21732. height: math.unit(5 + 4 / 12, "feet"),
  21733. default: true
  21734. },
  21735. ]
  21736. ))
  21737. characterMakers.push(() => makeCharacter(
  21738. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21739. {
  21740. side: {
  21741. height: math.unit(6 + 2 / 12, "feet"),
  21742. weight: math.unit(190, "lb"),
  21743. name: "Side",
  21744. image: {
  21745. source: "./media/characters/biscuit/side.svg",
  21746. extra: 858 / 791,
  21747. bottom: 0.044
  21748. }
  21749. },
  21750. },
  21751. [
  21752. {
  21753. name: "Normal",
  21754. height: math.unit(6 + 2 / 12, "feet"),
  21755. default: true
  21756. },
  21757. ]
  21758. ))
  21759. characterMakers.push(() => makeCharacter(
  21760. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21761. {
  21762. front: {
  21763. height: math.unit(5 + 2 / 12, "feet"),
  21764. weight: math.unit(120, "lb"),
  21765. name: "Front",
  21766. image: {
  21767. source: "./media/characters/poffin/front.svg",
  21768. extra: 786 / 680,
  21769. bottom: 0.005
  21770. }
  21771. },
  21772. },
  21773. [
  21774. {
  21775. name: "Normal",
  21776. height: math.unit(5 + 2 / 12, "feet"),
  21777. default: true
  21778. },
  21779. ]
  21780. ))
  21781. characterMakers.push(() => makeCharacter(
  21782. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21783. {
  21784. front: {
  21785. height: math.unit(6 + 3 / 12, "feet"),
  21786. weight: math.unit(519, "lb"),
  21787. name: "Front",
  21788. image: {
  21789. source: "./media/characters/dhari/front.svg",
  21790. extra: 1048 / 946,
  21791. bottom: 0.015
  21792. }
  21793. },
  21794. back: {
  21795. height: math.unit(6 + 3 / 12, "feet"),
  21796. weight: math.unit(519, "lb"),
  21797. name: "Back",
  21798. image: {
  21799. source: "./media/characters/dhari/back.svg",
  21800. extra: 1048 / 931,
  21801. bottom: 0.005
  21802. }
  21803. },
  21804. frontDressed: {
  21805. height: math.unit(6 + 3 / 12, "feet"),
  21806. weight: math.unit(519, "lb"),
  21807. name: "Front (Dressed)",
  21808. image: {
  21809. source: "./media/characters/dhari/front-dressed.svg",
  21810. extra: 1713 / 1546,
  21811. bottom: 0.02
  21812. }
  21813. },
  21814. backDressed: {
  21815. height: math.unit(6 + 3 / 12, "feet"),
  21816. weight: math.unit(519, "lb"),
  21817. name: "Back (Dressed)",
  21818. image: {
  21819. source: "./media/characters/dhari/back-dressed.svg",
  21820. extra: 1699 / 1537,
  21821. bottom: 0.01
  21822. }
  21823. },
  21824. maw: {
  21825. height: math.unit(0.95, "feet"),
  21826. name: "Maw",
  21827. image: {
  21828. source: "./media/characters/dhari/maw.svg"
  21829. }
  21830. },
  21831. wereFront: {
  21832. height: math.unit(12 + 8 / 12, "feet"),
  21833. weight: math.unit(4000, "lb"),
  21834. name: "Front (Were)",
  21835. image: {
  21836. source: "./media/characters/dhari/were-front.svg",
  21837. extra: 1065 / 969,
  21838. bottom: 0.015
  21839. }
  21840. },
  21841. wereBack: {
  21842. height: math.unit(12 + 8 / 12, "feet"),
  21843. weight: math.unit(4000, "lb"),
  21844. name: "Back (Were)",
  21845. image: {
  21846. source: "./media/characters/dhari/were-back.svg",
  21847. extra: 1065 / 969,
  21848. bottom: 0.012
  21849. }
  21850. },
  21851. wereMaw: {
  21852. height: math.unit(0.625, "meters"),
  21853. name: "Maw (Were)",
  21854. image: {
  21855. source: "./media/characters/dhari/were-maw.svg"
  21856. }
  21857. },
  21858. },
  21859. [
  21860. {
  21861. name: "Normal",
  21862. height: math.unit(6 + 3 / 12, "feet"),
  21863. default: true
  21864. },
  21865. ]
  21866. ))
  21867. characterMakers.push(() => makeCharacter(
  21868. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21869. {
  21870. anthro: {
  21871. height: math.unit(5 + 7 / 12, "feet"),
  21872. weight: math.unit(175, "lb"),
  21873. name: "Anthro",
  21874. image: {
  21875. source: "./media/characters/rena-dyne/anthro.svg",
  21876. extra: 1849 / 1785,
  21877. bottom: 0.005
  21878. }
  21879. },
  21880. taur: {
  21881. height: math.unit(15 + 6 / 12, "feet"),
  21882. weight: math.unit(8000, "lb"),
  21883. name: "Taur",
  21884. image: {
  21885. source: "./media/characters/rena-dyne/taur.svg",
  21886. extra: 2315 / 2234,
  21887. bottom: 0.033
  21888. }
  21889. },
  21890. },
  21891. [
  21892. {
  21893. name: "Normal",
  21894. height: math.unit(5 + 7 / 12, "feet"),
  21895. default: true
  21896. },
  21897. ]
  21898. ))
  21899. characterMakers.push(() => makeCharacter(
  21900. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21901. {
  21902. front: {
  21903. height: math.unit(8, "feet"),
  21904. weight: math.unit(600, "lb"),
  21905. name: "Front",
  21906. image: {
  21907. source: "./media/characters/weremeep/front.svg",
  21908. extra: 970/849,
  21909. bottom: 7/977
  21910. }
  21911. },
  21912. },
  21913. [
  21914. {
  21915. name: "Normal",
  21916. height: math.unit(8, "feet"),
  21917. default: true
  21918. },
  21919. {
  21920. name: "Lorg",
  21921. height: math.unit(12, "feet")
  21922. },
  21923. {
  21924. name: "Oh Lawd She Comin'",
  21925. height: math.unit(20, "feet")
  21926. },
  21927. ]
  21928. ))
  21929. characterMakers.push(() => makeCharacter(
  21930. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21931. {
  21932. front: {
  21933. height: math.unit(4, "feet"),
  21934. weight: math.unit(90, "lb"),
  21935. name: "Front",
  21936. image: {
  21937. source: "./media/characters/reza/front.svg",
  21938. extra: 1183 / 1111,
  21939. bottom: 0.017
  21940. }
  21941. },
  21942. back: {
  21943. height: math.unit(4, "feet"),
  21944. weight: math.unit(90, "lb"),
  21945. name: "Back",
  21946. image: {
  21947. source: "./media/characters/reza/back.svg",
  21948. extra: 1183 / 1111,
  21949. bottom: 0.01
  21950. }
  21951. },
  21952. drake: {
  21953. height: math.unit(30, "feet"),
  21954. weight: math.unit(246960, "lb"),
  21955. name: "Drake",
  21956. image: {
  21957. source: "./media/characters/reza/drake.svg",
  21958. extra: 2350 / 2024,
  21959. bottom: 60.7 / 2403
  21960. }
  21961. },
  21962. },
  21963. [
  21964. {
  21965. name: "Normal",
  21966. height: math.unit(4, "feet"),
  21967. default: true
  21968. },
  21969. ]
  21970. ))
  21971. characterMakers.push(() => makeCharacter(
  21972. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21973. {
  21974. side: {
  21975. height: math.unit(15, "feet"),
  21976. weight: math.unit(14, "tons"),
  21977. name: "Side",
  21978. image: {
  21979. source: "./media/characters/athea/side.svg",
  21980. extra: 960 / 540,
  21981. bottom: 0.003
  21982. }
  21983. },
  21984. sitting: {
  21985. height: math.unit(6 * 2.85, "feet"),
  21986. weight: math.unit(14, "tons"),
  21987. name: "Sitting",
  21988. image: {
  21989. source: "./media/characters/athea/sitting.svg",
  21990. extra: 621 / 581,
  21991. bottom: 0.075
  21992. }
  21993. },
  21994. maw: {
  21995. height: math.unit(7.59498031496063, "feet"),
  21996. name: "Maw",
  21997. image: {
  21998. source: "./media/characters/athea/maw.svg"
  21999. }
  22000. },
  22001. },
  22002. [
  22003. {
  22004. name: "Lap Cat",
  22005. height: math.unit(2.5, "feet")
  22006. },
  22007. {
  22008. name: "Minimacro",
  22009. height: math.unit(15, "feet"),
  22010. default: true
  22011. },
  22012. {
  22013. name: "Macro",
  22014. height: math.unit(120, "feet")
  22015. },
  22016. {
  22017. name: "Macro+",
  22018. height: math.unit(640, "feet")
  22019. },
  22020. {
  22021. name: "Colossus",
  22022. height: math.unit(2.2, "miles")
  22023. },
  22024. ]
  22025. ))
  22026. characterMakers.push(() => makeCharacter(
  22027. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22028. {
  22029. front: {
  22030. height: math.unit(8 + 8 / 12, "feet"),
  22031. weight: math.unit(130, "kg"),
  22032. name: "Front",
  22033. image: {
  22034. source: "./media/characters/seroko/front.svg",
  22035. extra: 1385 / 1280,
  22036. bottom: 0.025
  22037. }
  22038. },
  22039. back: {
  22040. height: math.unit(8 + 8 / 12, "feet"),
  22041. weight: math.unit(130, "kg"),
  22042. name: "Back",
  22043. image: {
  22044. source: "./media/characters/seroko/back.svg",
  22045. extra: 1369 / 1238,
  22046. bottom: 0.018
  22047. }
  22048. },
  22049. frontDressed: {
  22050. height: math.unit(8 + 8 / 12, "feet"),
  22051. weight: math.unit(130, "kg"),
  22052. name: "Front (Dressed)",
  22053. image: {
  22054. source: "./media/characters/seroko/front-dressed.svg",
  22055. extra: 1366 / 1275,
  22056. bottom: 0.03
  22057. }
  22058. },
  22059. },
  22060. [
  22061. {
  22062. name: "Normal",
  22063. height: math.unit(8 + 8 / 12, "feet"),
  22064. default: true
  22065. },
  22066. ]
  22067. ))
  22068. characterMakers.push(() => makeCharacter(
  22069. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22070. {
  22071. front: {
  22072. height: math.unit(5.5, "feet"),
  22073. weight: math.unit(160, "lb"),
  22074. name: "Front",
  22075. image: {
  22076. source: "./media/characters/quatzi/front.svg",
  22077. extra: 2346 / 2242,
  22078. bottom: 0.015
  22079. }
  22080. },
  22081. },
  22082. [
  22083. {
  22084. name: "Normal",
  22085. height: math.unit(5.5, "feet"),
  22086. default: true
  22087. },
  22088. {
  22089. name: "Big",
  22090. height: math.unit(7.7, "feet")
  22091. },
  22092. ]
  22093. ))
  22094. characterMakers.push(() => makeCharacter(
  22095. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22096. {
  22097. front: {
  22098. height: math.unit(5 + 11 / 12, "feet"),
  22099. weight: math.unit(180, "lb"),
  22100. name: "Front",
  22101. image: {
  22102. source: "./media/characters/sen/front.svg",
  22103. extra: 1321 / 1254,
  22104. bottom: 0.015
  22105. }
  22106. },
  22107. side: {
  22108. height: math.unit(5 + 11 / 12, "feet"),
  22109. weight: math.unit(180, "lb"),
  22110. name: "Side",
  22111. image: {
  22112. source: "./media/characters/sen/side.svg",
  22113. extra: 1321 / 1254,
  22114. bottom: 0.007
  22115. }
  22116. },
  22117. back: {
  22118. height: math.unit(5 + 11 / 12, "feet"),
  22119. weight: math.unit(180, "lb"),
  22120. name: "Back",
  22121. image: {
  22122. source: "./media/characters/sen/back.svg",
  22123. extra: 1321 / 1254
  22124. }
  22125. },
  22126. },
  22127. [
  22128. {
  22129. name: "Normal",
  22130. height: math.unit(5 + 11 / 12, "feet"),
  22131. default: true
  22132. },
  22133. ]
  22134. ))
  22135. characterMakers.push(() => makeCharacter(
  22136. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22137. {
  22138. front: {
  22139. height: math.unit(166.6, "cm"),
  22140. weight: math.unit(66.6, "kg"),
  22141. name: "Front",
  22142. image: {
  22143. source: "./media/characters/fruity/front.svg",
  22144. extra: 1510 / 1386,
  22145. bottom: 0.04
  22146. }
  22147. },
  22148. back: {
  22149. height: math.unit(166.6, "cm"),
  22150. weight: math.unit(66.6, "lb"),
  22151. name: "Back",
  22152. image: {
  22153. source: "./media/characters/fruity/back.svg",
  22154. extra: 1563 / 1435,
  22155. bottom: 0.005
  22156. }
  22157. },
  22158. },
  22159. [
  22160. {
  22161. name: "Normal",
  22162. height: math.unit(166.6, "cm"),
  22163. default: true
  22164. },
  22165. {
  22166. name: "Demonic",
  22167. height: math.unit(166.6, "feet")
  22168. },
  22169. ]
  22170. ))
  22171. characterMakers.push(() => makeCharacter(
  22172. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22173. {
  22174. side: {
  22175. height: math.unit(10, "feet"),
  22176. weight: math.unit(500, "lb"),
  22177. name: "Side",
  22178. image: {
  22179. source: "./media/characters/zost/side.svg",
  22180. extra: 2870/2533,
  22181. bottom: 252/3122
  22182. }
  22183. },
  22184. mawFront: {
  22185. height: math.unit(1.08, "meters"),
  22186. name: "Maw (Front)",
  22187. image: {
  22188. source: "./media/characters/zost/maw-front.svg"
  22189. }
  22190. },
  22191. mawSide: {
  22192. height: math.unit(2.66, "feet"),
  22193. name: "Maw (Side)",
  22194. image: {
  22195. source: "./media/characters/zost/maw-side.svg"
  22196. }
  22197. },
  22198. wingspan: {
  22199. height: math.unit(7.4, "feet"),
  22200. name: "Wingspan",
  22201. image: {
  22202. source: "./media/characters/zost/wingspan.svg"
  22203. }
  22204. },
  22205. },
  22206. [
  22207. {
  22208. name: "Normal",
  22209. height: math.unit(10, "feet"),
  22210. default: true
  22211. },
  22212. ]
  22213. ))
  22214. characterMakers.push(() => makeCharacter(
  22215. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22216. {
  22217. front: {
  22218. height: math.unit(5 + 4 / 12, "feet"),
  22219. weight: math.unit(120, "lb"),
  22220. name: "Front",
  22221. image: {
  22222. source: "./media/characters/luci/front.svg",
  22223. extra: 1985 / 1884,
  22224. bottom: 0.04
  22225. }
  22226. },
  22227. back: {
  22228. height: math.unit(5 + 4 / 12, "feet"),
  22229. weight: math.unit(120, "lb"),
  22230. name: "Back",
  22231. image: {
  22232. source: "./media/characters/luci/back.svg",
  22233. extra: 1892 / 1791,
  22234. bottom: 0.002
  22235. }
  22236. },
  22237. },
  22238. [
  22239. {
  22240. name: "Normal",
  22241. height: math.unit(5 + 4 / 12, "feet"),
  22242. default: true
  22243. },
  22244. ]
  22245. ))
  22246. characterMakers.push(() => makeCharacter(
  22247. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22248. {
  22249. front: {
  22250. height: math.unit(1500, "feet"),
  22251. weight: math.unit(3.8e6, "tons"),
  22252. name: "Front",
  22253. image: {
  22254. source: "./media/characters/2th/front.svg",
  22255. extra: 3489 / 3350,
  22256. bottom: 0.1
  22257. }
  22258. },
  22259. foot: {
  22260. height: math.unit(461, "feet"),
  22261. name: "Foot",
  22262. image: {
  22263. source: "./media/characters/2th/foot.svg"
  22264. }
  22265. },
  22266. },
  22267. [
  22268. {
  22269. name: "\"Micro\"",
  22270. height: math.unit(15 + 7 / 12, "feet")
  22271. },
  22272. {
  22273. name: "Normal",
  22274. height: math.unit(1500, "feet"),
  22275. default: true
  22276. },
  22277. {
  22278. name: "Macro",
  22279. height: math.unit(5000, "feet")
  22280. },
  22281. {
  22282. name: "Megamacro",
  22283. height: math.unit(15, "miles")
  22284. },
  22285. {
  22286. name: "Gigamacro",
  22287. height: math.unit(4000, "miles")
  22288. },
  22289. {
  22290. name: "Galactic",
  22291. height: math.unit(50, "AU")
  22292. },
  22293. ]
  22294. ))
  22295. characterMakers.push(() => makeCharacter(
  22296. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22297. {
  22298. front: {
  22299. height: math.unit(5 + 6 / 12, "feet"),
  22300. weight: math.unit(220, "lb"),
  22301. name: "Front",
  22302. image: {
  22303. source: "./media/characters/amethyst/front.svg",
  22304. extra: 2078 / 2040,
  22305. bottom: 0.045
  22306. }
  22307. },
  22308. back: {
  22309. height: math.unit(5 + 6 / 12, "feet"),
  22310. weight: math.unit(220, "lb"),
  22311. name: "Back",
  22312. image: {
  22313. source: "./media/characters/amethyst/back.svg",
  22314. extra: 2021 / 1989,
  22315. bottom: 0.02
  22316. }
  22317. },
  22318. },
  22319. [
  22320. {
  22321. name: "Normal",
  22322. height: math.unit(5 + 6 / 12, "feet"),
  22323. default: true
  22324. },
  22325. ]
  22326. ))
  22327. characterMakers.push(() => makeCharacter(
  22328. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22329. {
  22330. front: {
  22331. height: math.unit(4 + 11 / 12, "feet"),
  22332. weight: math.unit(120, "lb"),
  22333. name: "Front",
  22334. image: {
  22335. source: "./media/characters/yumi-akiyama/front.svg",
  22336. extra: 1327 / 1235,
  22337. bottom: 0.02
  22338. }
  22339. },
  22340. back: {
  22341. height: math.unit(4 + 11 / 12, "feet"),
  22342. weight: math.unit(120, "lb"),
  22343. name: "Back",
  22344. image: {
  22345. source: "./media/characters/yumi-akiyama/back.svg",
  22346. extra: 1287 / 1245,
  22347. bottom: 0.002
  22348. }
  22349. },
  22350. },
  22351. [
  22352. {
  22353. name: "Galactic",
  22354. height: math.unit(50, "galaxies"),
  22355. default: true
  22356. },
  22357. {
  22358. name: "Universal",
  22359. height: math.unit(100, "universes")
  22360. },
  22361. ]
  22362. ))
  22363. characterMakers.push(() => makeCharacter(
  22364. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22365. {
  22366. front: {
  22367. height: math.unit(8, "feet"),
  22368. weight: math.unit(500, "lb"),
  22369. name: "Front",
  22370. image: {
  22371. source: "./media/characters/rifter-yrmori/front.svg",
  22372. extra: 1180 / 1125,
  22373. bottom: 0.02
  22374. }
  22375. },
  22376. back: {
  22377. height: math.unit(8, "feet"),
  22378. weight: math.unit(500, "lb"),
  22379. name: "Back",
  22380. image: {
  22381. source: "./media/characters/rifter-yrmori/back.svg",
  22382. extra: 1190 / 1145,
  22383. bottom: 0.001
  22384. }
  22385. },
  22386. wings: {
  22387. height: math.unit(7.75, "feet"),
  22388. weight: math.unit(500, "lb"),
  22389. name: "Wings",
  22390. image: {
  22391. source: "./media/characters/rifter-yrmori/wings.svg",
  22392. extra: 1357 / 1285
  22393. }
  22394. },
  22395. maw: {
  22396. height: math.unit(0.8, "feet"),
  22397. name: "Maw",
  22398. image: {
  22399. source: "./media/characters/rifter-yrmori/maw.svg"
  22400. }
  22401. },
  22402. mawfront: {
  22403. height: math.unit(1.45, "feet"),
  22404. name: "Maw (Front)",
  22405. image: {
  22406. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22407. }
  22408. },
  22409. },
  22410. [
  22411. {
  22412. name: "Normal",
  22413. height: math.unit(8, "feet"),
  22414. default: true
  22415. },
  22416. {
  22417. name: "Macro",
  22418. height: math.unit(42, "meters")
  22419. },
  22420. ]
  22421. ))
  22422. characterMakers.push(() => makeCharacter(
  22423. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22424. {
  22425. were: {
  22426. height: math.unit(25 + 6 / 12, "feet"),
  22427. weight: math.unit(10000, "lb"),
  22428. name: "Were",
  22429. image: {
  22430. source: "./media/characters/tahajin/were.svg",
  22431. extra: 801 / 770,
  22432. bottom: 0.042
  22433. }
  22434. },
  22435. aquatic: {
  22436. height: math.unit(6 + 4 / 12, "feet"),
  22437. weight: math.unit(160, "lb"),
  22438. name: "Aquatic",
  22439. image: {
  22440. source: "./media/characters/tahajin/aquatic.svg",
  22441. extra: 572 / 542,
  22442. bottom: 0.04
  22443. }
  22444. },
  22445. chow: {
  22446. height: math.unit(8 + 11 / 12, "feet"),
  22447. weight: math.unit(450, "lb"),
  22448. name: "Chow",
  22449. image: {
  22450. source: "./media/characters/tahajin/chow.svg",
  22451. extra: 660 / 640,
  22452. bottom: 0.015
  22453. }
  22454. },
  22455. demiNaga: {
  22456. height: math.unit(6 + 8 / 12, "feet"),
  22457. weight: math.unit(300, "lb"),
  22458. name: "Demi Naga",
  22459. image: {
  22460. source: "./media/characters/tahajin/demi-naga.svg",
  22461. extra: 643 / 615,
  22462. bottom: 0.1
  22463. }
  22464. },
  22465. data: {
  22466. height: math.unit(5, "inches"),
  22467. weight: math.unit(0.1, "lb"),
  22468. name: "Data",
  22469. image: {
  22470. source: "./media/characters/tahajin/data.svg"
  22471. }
  22472. },
  22473. fluu: {
  22474. height: math.unit(5 + 7 / 12, "feet"),
  22475. weight: math.unit(140, "lb"),
  22476. name: "Fluu",
  22477. image: {
  22478. source: "./media/characters/tahajin/fluu.svg",
  22479. extra: 628 / 592,
  22480. bottom: 0.02
  22481. }
  22482. },
  22483. starWarrior: {
  22484. height: math.unit(4 + 5 / 12, "feet"),
  22485. weight: math.unit(50, "lb"),
  22486. name: "Star Warrior",
  22487. image: {
  22488. source: "./media/characters/tahajin/star-warrior.svg"
  22489. }
  22490. },
  22491. },
  22492. [
  22493. {
  22494. name: "Normal",
  22495. height: math.unit(25 + 6 / 12, "feet"),
  22496. default: true
  22497. },
  22498. ]
  22499. ))
  22500. characterMakers.push(() => makeCharacter(
  22501. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22502. {
  22503. front: {
  22504. height: math.unit(8, "feet"),
  22505. weight: math.unit(350, "lb"),
  22506. name: "Front",
  22507. image: {
  22508. source: "./media/characters/gabira/front.svg",
  22509. extra: 1261/1154,
  22510. bottom: 51/1312
  22511. }
  22512. },
  22513. back: {
  22514. height: math.unit(8, "feet"),
  22515. weight: math.unit(350, "lb"),
  22516. name: "Back",
  22517. image: {
  22518. source: "./media/characters/gabira/back.svg",
  22519. extra: 1265/1163,
  22520. bottom: 46/1311
  22521. }
  22522. },
  22523. head: {
  22524. height: math.unit(2.85, "feet"),
  22525. name: "Head",
  22526. image: {
  22527. source: "./media/characters/gabira/head.svg"
  22528. }
  22529. },
  22530. },
  22531. [
  22532. {
  22533. name: "Normal",
  22534. height: math.unit(8, "feet"),
  22535. default: true
  22536. },
  22537. ]
  22538. ))
  22539. characterMakers.push(() => makeCharacter(
  22540. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22541. {
  22542. front: {
  22543. height: math.unit(5 + 3 / 12, "feet"),
  22544. weight: math.unit(137, "lb"),
  22545. name: "Front",
  22546. image: {
  22547. source: "./media/characters/sasha-katraine/front.svg",
  22548. extra: 1745/1694,
  22549. bottom: 37/1782
  22550. }
  22551. },
  22552. back: {
  22553. height: math.unit(5 + 3 / 12, "feet"),
  22554. weight: math.unit(137, "lb"),
  22555. name: "Back",
  22556. image: {
  22557. source: "./media/characters/sasha-katraine/back.svg",
  22558. extra: 1776/1699,
  22559. bottom: 26/1802
  22560. }
  22561. },
  22562. },
  22563. [
  22564. {
  22565. name: "Micro",
  22566. height: math.unit(5, "inches")
  22567. },
  22568. {
  22569. name: "Normal",
  22570. height: math.unit(5 + 3 / 12, "feet"),
  22571. default: true
  22572. },
  22573. ]
  22574. ))
  22575. characterMakers.push(() => makeCharacter(
  22576. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22577. {
  22578. side: {
  22579. height: math.unit(4, "inches"),
  22580. weight: math.unit(200, "grams"),
  22581. name: "Side",
  22582. image: {
  22583. source: "./media/characters/der/side.svg",
  22584. extra: 719 / 400,
  22585. bottom: 30.6 / 749.9187
  22586. }
  22587. },
  22588. },
  22589. [
  22590. {
  22591. name: "Micro",
  22592. height: math.unit(4, "inches"),
  22593. default: true
  22594. },
  22595. ]
  22596. ))
  22597. characterMakers.push(() => makeCharacter(
  22598. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22599. {
  22600. side: {
  22601. height: math.unit(30, "meters"),
  22602. weight: math.unit(700, "tonnes"),
  22603. name: "Side",
  22604. image: {
  22605. source: "./media/characters/fixerdragon/side.svg",
  22606. extra: (1293.0514 - 116.03) / 1106.86,
  22607. bottom: 116.03 / 1293.0514
  22608. }
  22609. },
  22610. },
  22611. [
  22612. {
  22613. name: "Planck",
  22614. height: math.unit(1.6e-35, "meters")
  22615. },
  22616. {
  22617. name: "Micro",
  22618. height: math.unit(0.4, "meters")
  22619. },
  22620. {
  22621. name: "Normal",
  22622. height: math.unit(30, "meters"),
  22623. default: true
  22624. },
  22625. {
  22626. name: "Megamacro",
  22627. height: math.unit(1.2, "megameters")
  22628. },
  22629. {
  22630. name: "Teramacro",
  22631. height: math.unit(130, "terameters")
  22632. },
  22633. {
  22634. name: "Yottamacro",
  22635. height: math.unit(6200, "yottameters")
  22636. },
  22637. ]
  22638. ));
  22639. characterMakers.push(() => makeCharacter(
  22640. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22641. {
  22642. front: {
  22643. height: math.unit(8, "feet"),
  22644. weight: math.unit(250, "lb"),
  22645. name: "Front",
  22646. image: {
  22647. source: "./media/characters/kite/front.svg",
  22648. extra: 2796 / 2659,
  22649. bottom: 0.002
  22650. }
  22651. },
  22652. },
  22653. [
  22654. {
  22655. name: "Normal",
  22656. height: math.unit(8, "feet"),
  22657. default: true
  22658. },
  22659. {
  22660. name: "Macro",
  22661. height: math.unit(360, "feet")
  22662. },
  22663. {
  22664. name: "Megamacro",
  22665. height: math.unit(1500, "feet")
  22666. },
  22667. ]
  22668. ))
  22669. characterMakers.push(() => makeCharacter(
  22670. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22671. {
  22672. front: {
  22673. height: math.unit(5 + 11/12, "feet"),
  22674. weight: math.unit(170, "lb"),
  22675. name: "Front",
  22676. image: {
  22677. source: "./media/characters/poojawa-vynar/front.svg",
  22678. extra: 1735/1585,
  22679. bottom: 96/1831
  22680. }
  22681. },
  22682. back: {
  22683. height: math.unit(5 + 11/12, "feet"),
  22684. weight: math.unit(170, "lb"),
  22685. name: "Back",
  22686. image: {
  22687. source: "./media/characters/poojawa-vynar/back.svg",
  22688. extra: 1749/1607,
  22689. bottom: 28/1777
  22690. }
  22691. },
  22692. male: {
  22693. height: math.unit(5 + 11/12, "feet"),
  22694. weight: math.unit(170, "lb"),
  22695. name: "Male",
  22696. image: {
  22697. source: "./media/characters/poojawa-vynar/male.svg",
  22698. extra: 1855/1713,
  22699. bottom: 63/1918
  22700. }
  22701. },
  22702. taur: {
  22703. height: math.unit(5 + 11/12, "feet"),
  22704. weight: math.unit(170, "lb"),
  22705. name: "Taur",
  22706. image: {
  22707. source: "./media/characters/poojawa-vynar/taur.svg",
  22708. extra: 1151/1059,
  22709. bottom: 356/1507
  22710. }
  22711. },
  22712. frontDressed: {
  22713. height: math.unit(5 + 11/12, "feet"),
  22714. weight: math.unit(170, "lb"),
  22715. name: "Front (Dressed)",
  22716. image: {
  22717. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22718. extra: 1735/1585,
  22719. bottom: 96/1831
  22720. }
  22721. },
  22722. backDressed: {
  22723. height: math.unit(5 + 11/12, "feet"),
  22724. weight: math.unit(170, "lb"),
  22725. name: "Back (Dressed)",
  22726. image: {
  22727. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22728. extra: 1749/1607,
  22729. bottom: 28/1777
  22730. }
  22731. },
  22732. maleDressed: {
  22733. height: math.unit(5 + 11/12, "feet"),
  22734. weight: math.unit(170, "lb"),
  22735. name: "Male (Dressed)",
  22736. image: {
  22737. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22738. extra: 1855/1713,
  22739. bottom: 63/1918
  22740. }
  22741. },
  22742. taurDressed: {
  22743. height: math.unit(5 + 11/12, "feet"),
  22744. weight: math.unit(170, "lb"),
  22745. name: "Taur (Dressed)",
  22746. image: {
  22747. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22748. extra: 1151/1059,
  22749. bottom: 356/1507
  22750. }
  22751. },
  22752. maw: {
  22753. height: math.unit(1.46, "feet"),
  22754. name: "Maw",
  22755. image: {
  22756. source: "./media/characters/poojawa-vynar/maw.svg"
  22757. }
  22758. },
  22759. head: {
  22760. height: math.unit(2.34, "feet"),
  22761. name: "Head",
  22762. image: {
  22763. source: "./media/characters/poojawa-vynar/head.svg"
  22764. }
  22765. },
  22766. paw: {
  22767. height: math.unit(1.61, "feet"),
  22768. name: "Paw",
  22769. image: {
  22770. source: "./media/characters/poojawa-vynar/paw.svg"
  22771. }
  22772. },
  22773. pawToering: {
  22774. height: math.unit(1.72, "feet"),
  22775. name: "Paw (Toering)",
  22776. image: {
  22777. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22778. }
  22779. },
  22780. toering: {
  22781. height: math.unit(2.9, "inches"),
  22782. name: "Toering",
  22783. image: {
  22784. source: "./media/characters/poojawa-vynar/toering.svg"
  22785. }
  22786. },
  22787. shaft: {
  22788. height: math.unit(0.625, "feet"),
  22789. name: "Shaft",
  22790. image: {
  22791. source: "./media/characters/poojawa-vynar/shaft.svg"
  22792. }
  22793. },
  22794. spade: {
  22795. height: math.unit(0.42, "feet"),
  22796. name: "Spade",
  22797. image: {
  22798. source: "./media/characters/poojawa-vynar/spade.svg"
  22799. }
  22800. },
  22801. },
  22802. [
  22803. {
  22804. name: "Shortstack",
  22805. height: math.unit(4, "feet")
  22806. },
  22807. {
  22808. name: "Normal",
  22809. height: math.unit(5 + 11 / 12, "feet"),
  22810. default: true
  22811. },
  22812. {
  22813. name: "Tauric",
  22814. height: math.unit(4, "meters")
  22815. },
  22816. ]
  22817. ))
  22818. characterMakers.push(() => makeCharacter(
  22819. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22820. {
  22821. front: {
  22822. height: math.unit(293, "meters"),
  22823. weight: math.unit(70400, "tons"),
  22824. name: "Front",
  22825. image: {
  22826. source: "./media/characters/violette/front.svg",
  22827. extra: 1227 / 1180,
  22828. bottom: 0.005
  22829. }
  22830. },
  22831. back: {
  22832. height: math.unit(293, "meters"),
  22833. weight: math.unit(70400, "tons"),
  22834. name: "Back",
  22835. image: {
  22836. source: "./media/characters/violette/back.svg",
  22837. extra: 1227 / 1180,
  22838. bottom: 0.005
  22839. }
  22840. },
  22841. },
  22842. [
  22843. {
  22844. name: "Macro",
  22845. height: math.unit(293, "meters"),
  22846. default: true
  22847. },
  22848. ]
  22849. ))
  22850. characterMakers.push(() => makeCharacter(
  22851. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22852. {
  22853. front: {
  22854. height: math.unit(1050, "feet"),
  22855. weight: math.unit(200000, "tons"),
  22856. name: "Front",
  22857. image: {
  22858. source: "./media/characters/alessandra/front.svg",
  22859. extra: 960 / 912,
  22860. bottom: 0.06
  22861. }
  22862. },
  22863. },
  22864. [
  22865. {
  22866. name: "Macro",
  22867. height: math.unit(1050, "feet")
  22868. },
  22869. {
  22870. name: "Macro+",
  22871. height: math.unit(900, "meters"),
  22872. default: true
  22873. },
  22874. ]
  22875. ))
  22876. characterMakers.push(() => makeCharacter(
  22877. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22878. {
  22879. front: {
  22880. height: math.unit(5, "feet"),
  22881. weight: math.unit(187, "lb"),
  22882. name: "Front",
  22883. image: {
  22884. source: "./media/characters/person/front.svg",
  22885. extra: 3087 / 2945,
  22886. bottom: 91 / 3181
  22887. }
  22888. },
  22889. },
  22890. [
  22891. {
  22892. name: "Micro",
  22893. height: math.unit(3, "inches")
  22894. },
  22895. {
  22896. name: "Normal",
  22897. height: math.unit(5, "feet"),
  22898. default: true
  22899. },
  22900. {
  22901. name: "Macro",
  22902. height: math.unit(90, "feet")
  22903. },
  22904. {
  22905. name: "Max Size",
  22906. height: math.unit(280, "feet")
  22907. },
  22908. ]
  22909. ))
  22910. characterMakers.push(() => makeCharacter(
  22911. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22912. {
  22913. front: {
  22914. height: math.unit(4.5, "meters"),
  22915. weight: math.unit(3200, "lb"),
  22916. name: "Front",
  22917. image: {
  22918. source: "./media/characters/ty/front.svg",
  22919. extra: 1038 / 960,
  22920. bottom: 31.156 / 1068
  22921. }
  22922. },
  22923. back: {
  22924. height: math.unit(4.5, "meters"),
  22925. weight: math.unit(3200, "lb"),
  22926. name: "Back",
  22927. image: {
  22928. source: "./media/characters/ty/back.svg",
  22929. extra: 1044 / 966,
  22930. bottom: 7.48 / 1049
  22931. }
  22932. },
  22933. },
  22934. [
  22935. {
  22936. name: "Normal",
  22937. height: math.unit(4.5, "meters"),
  22938. default: true
  22939. },
  22940. ]
  22941. ))
  22942. characterMakers.push(() => makeCharacter(
  22943. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22944. {
  22945. front: {
  22946. height: math.unit(5 + 4 / 12, "feet"),
  22947. weight: math.unit(115, "lb"),
  22948. name: "Front",
  22949. image: {
  22950. source: "./media/characters/rocky/front.svg",
  22951. extra: 1012 / 975,
  22952. bottom: 54 / 1066
  22953. }
  22954. },
  22955. },
  22956. [
  22957. {
  22958. name: "Normal",
  22959. height: math.unit(5 + 4 / 12, "feet"),
  22960. default: true
  22961. },
  22962. ]
  22963. ))
  22964. characterMakers.push(() => makeCharacter(
  22965. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22966. {
  22967. upright: {
  22968. height: math.unit(6, "meters"),
  22969. weight: math.unit(4000, "kg"),
  22970. name: "Upright",
  22971. image: {
  22972. source: "./media/characters/ruin/upright.svg",
  22973. extra: 668 / 661,
  22974. bottom: 42 / 799.8396
  22975. }
  22976. },
  22977. },
  22978. [
  22979. {
  22980. name: "Normal",
  22981. height: math.unit(6, "meters"),
  22982. default: true
  22983. },
  22984. ]
  22985. ))
  22986. characterMakers.push(() => makeCharacter(
  22987. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22988. {
  22989. front: {
  22990. height: math.unit(5, "feet"),
  22991. weight: math.unit(106, "lb"),
  22992. name: "Front",
  22993. image: {
  22994. source: "./media/characters/robin/front.svg",
  22995. extra: 862 / 799,
  22996. bottom: 42.4 / 914.8856
  22997. }
  22998. },
  22999. },
  23000. [
  23001. {
  23002. name: "Normal",
  23003. height: math.unit(5, "feet"),
  23004. default: true
  23005. },
  23006. ]
  23007. ))
  23008. characterMakers.push(() => makeCharacter(
  23009. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23010. {
  23011. side: {
  23012. height: math.unit(3, "feet"),
  23013. weight: math.unit(225, "lb"),
  23014. name: "Side",
  23015. image: {
  23016. source: "./media/characters/saian/side.svg",
  23017. extra: 566 / 356,
  23018. bottom: 79.7 / 643
  23019. }
  23020. },
  23021. maw: {
  23022. height: math.unit(2.85, "feet"),
  23023. name: "Maw",
  23024. image: {
  23025. source: "./media/characters/saian/maw.svg"
  23026. }
  23027. },
  23028. },
  23029. [
  23030. {
  23031. name: "Normal",
  23032. height: math.unit(3, "feet"),
  23033. default: true
  23034. },
  23035. ]
  23036. ))
  23037. characterMakers.push(() => makeCharacter(
  23038. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23039. {
  23040. side: {
  23041. height: math.unit(8, "feet"),
  23042. weight: math.unit(300, "lb"),
  23043. name: "Side",
  23044. image: {
  23045. source: "./media/characters/equus-silvermane/side.svg",
  23046. extra: 2176 / 2050,
  23047. bottom: 65.7 / 2245
  23048. }
  23049. },
  23050. front: {
  23051. height: math.unit(8, "feet"),
  23052. weight: math.unit(300, "lb"),
  23053. name: "Front",
  23054. image: {
  23055. source: "./media/characters/equus-silvermane/front.svg",
  23056. extra: 4633 / 4400,
  23057. bottom: 71.3 / 4706.915
  23058. }
  23059. },
  23060. sideStepping: {
  23061. height: math.unit(8, "feet"),
  23062. weight: math.unit(300, "lb"),
  23063. name: "Side (Stepping)",
  23064. image: {
  23065. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23066. extra: 1968 / 1860,
  23067. bottom: 16.4 / 1989
  23068. }
  23069. },
  23070. },
  23071. [
  23072. {
  23073. name: "Normal",
  23074. height: math.unit(8, "feet")
  23075. },
  23076. {
  23077. name: "Minimacro",
  23078. height: math.unit(75, "feet"),
  23079. default: true
  23080. },
  23081. {
  23082. name: "Macro",
  23083. height: math.unit(150, "feet")
  23084. },
  23085. {
  23086. name: "Macro+",
  23087. height: math.unit(1000, "feet")
  23088. },
  23089. {
  23090. name: "Megamacro",
  23091. height: math.unit(1, "mile")
  23092. },
  23093. ]
  23094. ))
  23095. characterMakers.push(() => makeCharacter(
  23096. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23097. {
  23098. side: {
  23099. height: math.unit(20, "feet"),
  23100. weight: math.unit(30000, "kg"),
  23101. name: "Side",
  23102. image: {
  23103. source: "./media/characters/windar/side.svg",
  23104. extra: 1491 / 1248,
  23105. bottom: 82.56 / 1568
  23106. }
  23107. },
  23108. },
  23109. [
  23110. {
  23111. name: "Normal",
  23112. height: math.unit(20, "feet"),
  23113. default: true
  23114. },
  23115. ]
  23116. ))
  23117. characterMakers.push(() => makeCharacter(
  23118. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23119. {
  23120. side: {
  23121. height: math.unit(15.66, "feet"),
  23122. weight: math.unit(150, "lb"),
  23123. name: "Side",
  23124. image: {
  23125. source: "./media/characters/melody/side.svg",
  23126. extra: 1097 / 944,
  23127. bottom: 11.8 / 1109
  23128. }
  23129. },
  23130. sideOutfit: {
  23131. height: math.unit(15.66, "feet"),
  23132. weight: math.unit(150, "lb"),
  23133. name: "Side (Outfit)",
  23134. image: {
  23135. source: "./media/characters/melody/side-outfit.svg",
  23136. extra: 1097 / 944,
  23137. bottom: 11.8 / 1109
  23138. }
  23139. },
  23140. },
  23141. [
  23142. {
  23143. name: "Normal",
  23144. height: math.unit(15.66, "feet"),
  23145. default: true
  23146. },
  23147. ]
  23148. ))
  23149. characterMakers.push(() => makeCharacter(
  23150. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23151. {
  23152. armoredFront: {
  23153. height: math.unit(8, "feet"),
  23154. weight: math.unit(325, "lb"),
  23155. name: "Front",
  23156. image: {
  23157. source: "./media/characters/windera/armored-front.svg",
  23158. extra: 1830/1598,
  23159. bottom: 151/1981
  23160. },
  23161. form: "armored",
  23162. default: true
  23163. },
  23164. macroFront: {
  23165. height: math.unit(70, "feet"),
  23166. weight: math.unit(315453, "lb"),
  23167. name: "Front",
  23168. image: {
  23169. source: "./media/characters/windera/macro-front.svg",
  23170. extra: 963/883,
  23171. bottom: 23/986
  23172. },
  23173. form: "macro",
  23174. default: true
  23175. },
  23176. },
  23177. [
  23178. {
  23179. name: "Normal",
  23180. height: math.unit(8, "feet"),
  23181. default: true,
  23182. form: "armored"
  23183. },
  23184. {
  23185. name: "Normal",
  23186. height: math.unit(70, "feet"),
  23187. default: true,
  23188. form: "macro"
  23189. },
  23190. ],
  23191. {
  23192. "armored": {
  23193. name: "Armored",
  23194. default: true
  23195. },
  23196. "macro": {
  23197. name: "Macro",
  23198. },
  23199. }
  23200. ))
  23201. characterMakers.push(() => makeCharacter(
  23202. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23203. {
  23204. front: {
  23205. height: math.unit(28.75, "feet"),
  23206. weight: math.unit(2000, "kg"),
  23207. name: "Front",
  23208. image: {
  23209. source: "./media/characters/sonear/front.svg",
  23210. extra: 1041.1 / 964.9,
  23211. bottom: 53.7 / 1096.6
  23212. }
  23213. },
  23214. },
  23215. [
  23216. {
  23217. name: "Normal",
  23218. height: math.unit(28.75, "feet"),
  23219. default: true
  23220. },
  23221. ]
  23222. ))
  23223. characterMakers.push(() => makeCharacter(
  23224. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23225. {
  23226. side: {
  23227. height: math.unit(25.5, "feet"),
  23228. weight: math.unit(23000, "kg"),
  23229. name: "Side",
  23230. image: {
  23231. source: "./media/characters/kanara/side.svg"
  23232. }
  23233. },
  23234. },
  23235. [
  23236. {
  23237. name: "Normal",
  23238. height: math.unit(25.5, "feet"),
  23239. default: true
  23240. },
  23241. ]
  23242. ))
  23243. characterMakers.push(() => makeCharacter(
  23244. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23245. {
  23246. side: {
  23247. height: math.unit(10, "feet"),
  23248. weight: math.unit(1000, "kg"),
  23249. name: "Side",
  23250. image: {
  23251. source: "./media/characters/ereus/side.svg",
  23252. extra: 1157 / 959,
  23253. bottom: 153 / 1312.5
  23254. }
  23255. },
  23256. },
  23257. [
  23258. {
  23259. name: "Normal",
  23260. height: math.unit(10, "feet"),
  23261. default: true
  23262. },
  23263. ]
  23264. ))
  23265. characterMakers.push(() => makeCharacter(
  23266. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23267. {
  23268. side: {
  23269. height: math.unit(4.5, "feet"),
  23270. weight: math.unit(500, "lb"),
  23271. name: "Side",
  23272. image: {
  23273. source: "./media/characters/e-ter/side.svg",
  23274. extra: 1550 / 1248,
  23275. bottom: 146 / 1694
  23276. }
  23277. },
  23278. },
  23279. [
  23280. {
  23281. name: "Normal",
  23282. height: math.unit(4.5, "feet"),
  23283. default: true
  23284. },
  23285. ]
  23286. ))
  23287. characterMakers.push(() => makeCharacter(
  23288. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23289. {
  23290. side: {
  23291. height: math.unit(9.7, "feet"),
  23292. weight: math.unit(4000, "kg"),
  23293. name: "Side",
  23294. image: {
  23295. source: "./media/characters/yamie/side.svg"
  23296. }
  23297. },
  23298. },
  23299. [
  23300. {
  23301. name: "Normal",
  23302. height: math.unit(9.7, "feet"),
  23303. default: true
  23304. },
  23305. ]
  23306. ))
  23307. characterMakers.push(() => makeCharacter(
  23308. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23309. {
  23310. front: {
  23311. height: math.unit(50, "feet"),
  23312. weight: math.unit(50000, "kg"),
  23313. name: "Front",
  23314. image: {
  23315. source: "./media/characters/anders/front.svg",
  23316. extra: 570 / 539,
  23317. bottom: 14.7 / 586.7
  23318. }
  23319. },
  23320. },
  23321. [
  23322. {
  23323. name: "Large",
  23324. height: math.unit(50, "feet")
  23325. },
  23326. {
  23327. name: "Macro",
  23328. height: math.unit(2000, "feet"),
  23329. default: true
  23330. },
  23331. {
  23332. name: "Megamacro",
  23333. height: math.unit(12, "miles")
  23334. },
  23335. ]
  23336. ))
  23337. characterMakers.push(() => makeCharacter(
  23338. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23339. {
  23340. front: {
  23341. height: math.unit(7 + 2 / 12, "feet"),
  23342. weight: math.unit(300, "lb"),
  23343. name: "Front",
  23344. image: {
  23345. source: "./media/characters/reban/front.svg",
  23346. extra: 1287/1212,
  23347. bottom: 148/1435
  23348. }
  23349. },
  23350. head: {
  23351. height: math.unit(1.95, "feet"),
  23352. name: "Head",
  23353. image: {
  23354. source: "./media/characters/reban/head.svg"
  23355. }
  23356. },
  23357. maw: {
  23358. height: math.unit(0.95, "feet"),
  23359. name: "Maw",
  23360. image: {
  23361. source: "./media/characters/reban/maw.svg"
  23362. }
  23363. },
  23364. foot: {
  23365. height: math.unit(1.65, "feet"),
  23366. name: "Foot",
  23367. image: {
  23368. source: "./media/characters/reban/foot.svg"
  23369. }
  23370. },
  23371. dick: {
  23372. height: math.unit(7 / 5, "feet"),
  23373. name: "Dick",
  23374. image: {
  23375. source: "./media/characters/reban/dick.svg"
  23376. }
  23377. },
  23378. },
  23379. [
  23380. {
  23381. name: "Natural Height",
  23382. height: math.unit(7 + 2 / 12, "feet")
  23383. },
  23384. {
  23385. name: "Macro",
  23386. height: math.unit(500, "feet"),
  23387. default: true
  23388. },
  23389. {
  23390. name: "Canon Height",
  23391. height: math.unit(50, "AU")
  23392. },
  23393. ]
  23394. ))
  23395. characterMakers.push(() => makeCharacter(
  23396. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23397. {
  23398. front: {
  23399. height: math.unit(6, "feet"),
  23400. weight: math.unit(150, "lb"),
  23401. name: "Front",
  23402. image: {
  23403. source: "./media/characters/terrance-keayes/front.svg",
  23404. extra: 1.005,
  23405. bottom: 151 / 1615
  23406. }
  23407. },
  23408. side: {
  23409. height: math.unit(6, "feet"),
  23410. weight: math.unit(150, "lb"),
  23411. name: "Side",
  23412. image: {
  23413. source: "./media/characters/terrance-keayes/side.svg",
  23414. extra: 1.005,
  23415. bottom: 129.4 / 1544
  23416. }
  23417. },
  23418. back: {
  23419. height: math.unit(6, "feet"),
  23420. weight: math.unit(150, "lb"),
  23421. name: "Back",
  23422. image: {
  23423. source: "./media/characters/terrance-keayes/back.svg",
  23424. extra: 1.005,
  23425. bottom: 58.4 / 1557.3
  23426. }
  23427. },
  23428. dick: {
  23429. height: math.unit(6 * 0.208, "feet"),
  23430. name: "Dick",
  23431. image: {
  23432. source: "./media/characters/terrance-keayes/dick.svg"
  23433. }
  23434. },
  23435. },
  23436. [
  23437. {
  23438. name: "Canon Height",
  23439. height: math.unit(35, "miles"),
  23440. default: true
  23441. },
  23442. ]
  23443. ))
  23444. characterMakers.push(() => makeCharacter(
  23445. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23446. {
  23447. front: {
  23448. height: math.unit(6, "feet"),
  23449. weight: math.unit(150, "lb"),
  23450. name: "Front",
  23451. image: {
  23452. source: "./media/characters/ofelia/front.svg",
  23453. extra: 1130/1117,
  23454. bottom: 91/1221
  23455. }
  23456. },
  23457. back: {
  23458. height: math.unit(6, "feet"),
  23459. weight: math.unit(150, "lb"),
  23460. name: "Back",
  23461. image: {
  23462. source: "./media/characters/ofelia/back.svg",
  23463. extra: 1172/1159,
  23464. bottom: 28/1200
  23465. }
  23466. },
  23467. maw: {
  23468. height: math.unit(1, "feet"),
  23469. name: "Maw",
  23470. image: {
  23471. source: "./media/characters/ofelia/maw.svg"
  23472. }
  23473. },
  23474. foot: {
  23475. height: math.unit(1.949, "feet"),
  23476. name: "Foot",
  23477. image: {
  23478. source: "./media/characters/ofelia/foot.svg"
  23479. }
  23480. },
  23481. },
  23482. [
  23483. {
  23484. name: "Canon Height",
  23485. height: math.unit(2000, "miles"),
  23486. default: true
  23487. },
  23488. ]
  23489. ))
  23490. characterMakers.push(() => makeCharacter(
  23491. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23492. {
  23493. front: {
  23494. height: math.unit(6, "feet"),
  23495. weight: math.unit(150, "lb"),
  23496. name: "Front",
  23497. image: {
  23498. source: "./media/characters/samuel/front.svg",
  23499. extra: 265 / 258,
  23500. bottom: 2 / 266.1566
  23501. }
  23502. },
  23503. },
  23504. [
  23505. {
  23506. name: "Macro",
  23507. height: math.unit(100, "feet"),
  23508. default: true
  23509. },
  23510. {
  23511. name: "Full Size",
  23512. height: math.unit(1000, "miles")
  23513. },
  23514. ]
  23515. ))
  23516. characterMakers.push(() => makeCharacter(
  23517. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23518. {
  23519. front: {
  23520. height: math.unit(6, "feet"),
  23521. weight: math.unit(300, "lb"),
  23522. name: "Front",
  23523. image: {
  23524. source: "./media/characters/beishir-kiel/front.svg",
  23525. extra: 569 / 547,
  23526. bottom: 41.9 / 609
  23527. }
  23528. },
  23529. maw: {
  23530. height: math.unit(6 * 0.202, "feet"),
  23531. name: "Maw",
  23532. image: {
  23533. source: "./media/characters/beishir-kiel/maw.svg"
  23534. }
  23535. },
  23536. },
  23537. [
  23538. {
  23539. name: "Macro",
  23540. height: math.unit(300, "feet"),
  23541. default: true
  23542. },
  23543. ]
  23544. ))
  23545. characterMakers.push(() => makeCharacter(
  23546. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23547. {
  23548. front: {
  23549. height: math.unit(5 + 7/12, "feet"),
  23550. weight: math.unit(120, "lb"),
  23551. name: "Front",
  23552. image: {
  23553. source: "./media/characters/logan-grey/front.svg",
  23554. extra: 1836/1738,
  23555. bottom: 108/1944
  23556. }
  23557. },
  23558. back: {
  23559. height: math.unit(5 + 7/12, "feet"),
  23560. weight: math.unit(120, "lb"),
  23561. name: "Back",
  23562. image: {
  23563. source: "./media/characters/logan-grey/back.svg",
  23564. extra: 1880/1794,
  23565. bottom: 24/1904
  23566. }
  23567. },
  23568. frontSfw: {
  23569. height: math.unit(5 + 7/12, "feet"),
  23570. weight: math.unit(120, "lb"),
  23571. name: "Front (SFW)",
  23572. image: {
  23573. source: "./media/characters/logan-grey/front-sfw.svg",
  23574. extra: 1836/1738,
  23575. bottom: 108/1944
  23576. }
  23577. },
  23578. backSfw: {
  23579. height: math.unit(5 + 7/12, "feet"),
  23580. weight: math.unit(120, "lb"),
  23581. name: "Back (SFW)",
  23582. image: {
  23583. source: "./media/characters/logan-grey/back-sfw.svg",
  23584. extra: 1880/1794,
  23585. bottom: 24/1904
  23586. }
  23587. },
  23588. hands: {
  23589. height: math.unit(0.84, "feet"),
  23590. name: "Hands",
  23591. image: {
  23592. source: "./media/characters/logan-grey/hands.svg"
  23593. }
  23594. },
  23595. paws: {
  23596. height: math.unit(0.72, "feet"),
  23597. name: "Paws",
  23598. image: {
  23599. source: "./media/characters/logan-grey/paws.svg"
  23600. }
  23601. },
  23602. cock: {
  23603. height: math.unit(1.45, "feet"),
  23604. name: "Cock",
  23605. image: {
  23606. source: "./media/characters/logan-grey/cock.svg"
  23607. }
  23608. },
  23609. cockAlt: {
  23610. height: math.unit(1.437, "feet"),
  23611. name: "Cock (alt)",
  23612. image: {
  23613. source: "./media/characters/logan-grey/cock-alt.svg"
  23614. }
  23615. },
  23616. },
  23617. [
  23618. {
  23619. name: "Normal",
  23620. height: math.unit(5 + 8 / 12, "feet")
  23621. },
  23622. {
  23623. name: "The 500 Foot Femboy",
  23624. height: math.unit(500, "feet"),
  23625. default: true
  23626. },
  23627. {
  23628. name: "Megmacro",
  23629. height: math.unit(20, "miles")
  23630. },
  23631. ]
  23632. ))
  23633. characterMakers.push(() => makeCharacter(
  23634. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23635. {
  23636. front: {
  23637. height: math.unit(8 + 2 / 12, "feet"),
  23638. weight: math.unit(275, "lb"),
  23639. name: "Front",
  23640. image: {
  23641. source: "./media/characters/draganta/front.svg",
  23642. extra: 1177 / 1135,
  23643. bottom: 33.46 / 1212.1
  23644. }
  23645. },
  23646. },
  23647. [
  23648. {
  23649. name: "Normal",
  23650. height: math.unit(8 + 6 / 12, "feet"),
  23651. default: true
  23652. },
  23653. {
  23654. name: "Macro",
  23655. height: math.unit(150, "feet")
  23656. },
  23657. {
  23658. name: "Megamacro",
  23659. height: math.unit(1000, "miles")
  23660. },
  23661. ]
  23662. ))
  23663. characterMakers.push(() => makeCharacter(
  23664. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23665. {
  23666. front: {
  23667. height: math.unit(1.72, "m"),
  23668. weight: math.unit(80, "lb"),
  23669. name: "Front",
  23670. image: {
  23671. source: "./media/characters/voski/front.svg",
  23672. extra: 2076.22 / 2022.4,
  23673. bottom: 102.7 / 2177.3866
  23674. }
  23675. },
  23676. frontFlaccid: {
  23677. height: math.unit(1.72, "m"),
  23678. weight: math.unit(80, "lb"),
  23679. name: "Front (Flaccid)",
  23680. image: {
  23681. source: "./media/characters/voski/front-flaccid.svg",
  23682. extra: 2076.22 / 2022.4,
  23683. bottom: 102.7 / 2177.3866
  23684. }
  23685. },
  23686. frontErect: {
  23687. height: math.unit(1.72, "m"),
  23688. weight: math.unit(80, "lb"),
  23689. name: "Front (Erect)",
  23690. image: {
  23691. source: "./media/characters/voski/front-erect.svg",
  23692. extra: 2076.22 / 2022.4,
  23693. bottom: 102.7 / 2177.3866
  23694. }
  23695. },
  23696. back: {
  23697. height: math.unit(1.72, "m"),
  23698. weight: math.unit(80, "lb"),
  23699. name: "Back",
  23700. image: {
  23701. source: "./media/characters/voski/back.svg",
  23702. extra: 2104 / 2051,
  23703. bottom: 10.45 / 2113.63
  23704. }
  23705. },
  23706. },
  23707. [
  23708. {
  23709. name: "Normal",
  23710. height: math.unit(1.72, "m")
  23711. },
  23712. {
  23713. name: "Macro",
  23714. height: math.unit(55, "m"),
  23715. default: true
  23716. },
  23717. {
  23718. name: "Macro+",
  23719. height: math.unit(300, "m")
  23720. },
  23721. {
  23722. name: "Macro++",
  23723. height: math.unit(700, "m")
  23724. },
  23725. {
  23726. name: "Macro+++",
  23727. height: math.unit(4500, "m")
  23728. },
  23729. {
  23730. name: "Macro++++",
  23731. height: math.unit(45, "km")
  23732. },
  23733. {
  23734. name: "Macro+++++",
  23735. height: math.unit(1220, "km")
  23736. },
  23737. ]
  23738. ))
  23739. characterMakers.push(() => makeCharacter(
  23740. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23741. {
  23742. front: {
  23743. height: math.unit(2.3, "m"),
  23744. weight: math.unit(304, "kg"),
  23745. name: "Front",
  23746. image: {
  23747. source: "./media/characters/icowom-lee/front.svg",
  23748. extra: 985 / 955,
  23749. bottom: 25.4 / 1012
  23750. }
  23751. },
  23752. fronttentacles: {
  23753. height: math.unit(2.3, "m"),
  23754. weight: math.unit(304, "kg"),
  23755. name: "Front-tentacles",
  23756. image: {
  23757. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23758. extra: 985 / 955,
  23759. bottom: 25.4 / 1012
  23760. }
  23761. },
  23762. back: {
  23763. height: math.unit(2.3, "m"),
  23764. weight: math.unit(304, "kg"),
  23765. name: "Back",
  23766. image: {
  23767. source: "./media/characters/icowom-lee/back.svg",
  23768. extra: 975 / 954,
  23769. bottom: 9.5 / 985
  23770. }
  23771. },
  23772. backtentacles: {
  23773. height: math.unit(2.3, "m"),
  23774. weight: math.unit(304, "kg"),
  23775. name: "Back-tentacles",
  23776. image: {
  23777. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23778. extra: 975 / 954,
  23779. bottom: 9.5 / 985
  23780. }
  23781. },
  23782. frontDressed: {
  23783. height: math.unit(2.3, "m"),
  23784. weight: math.unit(304, "kg"),
  23785. name: "Front (Dressed)",
  23786. image: {
  23787. source: "./media/characters/icowom-lee/front-dressed.svg",
  23788. extra: 3076 / 2933,
  23789. bottom: 51.4 / 3125.1889
  23790. }
  23791. },
  23792. rump: {
  23793. height: math.unit(0.776, "meters"),
  23794. name: "Rump",
  23795. image: {
  23796. source: "./media/characters/icowom-lee/rump.svg"
  23797. }
  23798. },
  23799. genitals: {
  23800. height: math.unit(0.78, "meters"),
  23801. name: "Genitals",
  23802. image: {
  23803. source: "./media/characters/icowom-lee/genitals.svg"
  23804. }
  23805. },
  23806. },
  23807. [
  23808. {
  23809. name: "Normal",
  23810. height: math.unit(2.3, "meters"),
  23811. default: true
  23812. },
  23813. {
  23814. name: "Macro",
  23815. height: math.unit(94, "meters"),
  23816. default: true
  23817. },
  23818. ]
  23819. ))
  23820. characterMakers.push(() => makeCharacter(
  23821. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23822. {
  23823. front: {
  23824. height: math.unit(22, "meters"),
  23825. weight: math.unit(21000, "kg"),
  23826. name: "Front",
  23827. image: {
  23828. source: "./media/characters/shock-diamond/front.svg",
  23829. extra: 2204 / 2053,
  23830. bottom: 65 / 2239.47
  23831. }
  23832. },
  23833. frontNude: {
  23834. height: math.unit(22, "meters"),
  23835. weight: math.unit(21000, "kg"),
  23836. name: "Front (Nude)",
  23837. image: {
  23838. source: "./media/characters/shock-diamond/front-nude.svg",
  23839. extra: 2514 / 2285,
  23840. bottom: 13 / 2527.56
  23841. }
  23842. },
  23843. },
  23844. [
  23845. {
  23846. name: "Normal",
  23847. height: math.unit(3, "meters")
  23848. },
  23849. {
  23850. name: "Macro",
  23851. height: math.unit(22, "meters"),
  23852. default: true
  23853. },
  23854. ]
  23855. ))
  23856. characterMakers.push(() => makeCharacter(
  23857. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23858. {
  23859. front: {
  23860. height: math.unit(5 + 4 / 12, "feet"),
  23861. weight: math.unit(120, "lb"),
  23862. name: "Front",
  23863. image: {
  23864. source: "./media/characters/rory/front.svg",
  23865. extra: 1318/1241,
  23866. bottom: 42/1360
  23867. }
  23868. },
  23869. back: {
  23870. height: math.unit(5 + 4 / 12, "feet"),
  23871. weight: math.unit(120, "lb"),
  23872. name: "Back",
  23873. image: {
  23874. source: "./media/characters/rory/back.svg",
  23875. extra: 1318/1241,
  23876. bottom: 42/1360
  23877. }
  23878. },
  23879. butt: {
  23880. height: math.unit(1.74, "feet"),
  23881. name: "Butt",
  23882. image: {
  23883. source: "./media/characters/rory/butt.svg"
  23884. }
  23885. },
  23886. dick: {
  23887. height: math.unit(1.02, "feet"),
  23888. name: "Dick",
  23889. image: {
  23890. source: "./media/characters/rory/dick.svg"
  23891. }
  23892. },
  23893. paws: {
  23894. height: math.unit(1, "feet"),
  23895. name: "Paws",
  23896. image: {
  23897. source: "./media/characters/rory/paws.svg"
  23898. }
  23899. },
  23900. frontAlt: {
  23901. height: math.unit(5 + 4 / 12, "feet"),
  23902. weight: math.unit(120, "lb"),
  23903. name: "Front (Alt)",
  23904. image: {
  23905. source: "./media/characters/rory/front-alt.svg",
  23906. extra: 589 / 556,
  23907. bottom: 45.7 / 635.76
  23908. }
  23909. },
  23910. frontAltNude: {
  23911. height: math.unit(5 + 4 / 12, "feet"),
  23912. weight: math.unit(120, "lb"),
  23913. name: "Front (Alt, Nude)",
  23914. image: {
  23915. source: "./media/characters/rory/front-alt-nude.svg",
  23916. extra: 589 / 556,
  23917. bottom: 45.7 / 635.76
  23918. }
  23919. },
  23920. side: {
  23921. height: math.unit(5 + 4 / 12, "feet"),
  23922. weight: math.unit(120, "lb"),
  23923. name: "Side",
  23924. image: {
  23925. source: "./media/characters/rory/side.svg",
  23926. extra: 597 / 564,
  23927. bottom: 55 / 653
  23928. }
  23929. },
  23930. backAlt: {
  23931. height: math.unit(5 + 4 / 12, "feet"),
  23932. weight: math.unit(120, "lb"),
  23933. name: "Back (Alt)",
  23934. image: {
  23935. source: "./media/characters/rory/back-alt.svg",
  23936. extra: 620 / 585,
  23937. bottom: 8.86 / 630.43
  23938. }
  23939. },
  23940. dickAlt: {
  23941. height: math.unit(0.86, "feet"),
  23942. name: "Dick (Alt)",
  23943. image: {
  23944. source: "./media/characters/rory/dick-alt.svg"
  23945. }
  23946. },
  23947. },
  23948. [
  23949. {
  23950. name: "Normal",
  23951. height: math.unit(5 + 4 / 12, "feet"),
  23952. default: true
  23953. },
  23954. {
  23955. name: "Macro",
  23956. height: math.unit(100, "feet")
  23957. },
  23958. {
  23959. name: "Macro+",
  23960. height: math.unit(140, "feet")
  23961. },
  23962. {
  23963. name: "Macro++",
  23964. height: math.unit(300, "feet")
  23965. },
  23966. ]
  23967. ))
  23968. characterMakers.push(() => makeCharacter(
  23969. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23970. {
  23971. front: {
  23972. height: math.unit(5 + 9 / 12, "feet"),
  23973. weight: math.unit(190, "lb"),
  23974. name: "Front",
  23975. image: {
  23976. source: "./media/characters/sprisk/front.svg",
  23977. extra: 1225 / 1180,
  23978. bottom: 42.7 / 1266.4
  23979. }
  23980. },
  23981. frontNsfw: {
  23982. height: math.unit(5 + 9 / 12, "feet"),
  23983. weight: math.unit(190, "lb"),
  23984. name: "Front (NSFW)",
  23985. image: {
  23986. source: "./media/characters/sprisk/front-nsfw.svg",
  23987. extra: 1225 / 1180,
  23988. bottom: 42.7 / 1266.4
  23989. }
  23990. },
  23991. back: {
  23992. height: math.unit(5 + 9 / 12, "feet"),
  23993. weight: math.unit(190, "lb"),
  23994. name: "Back",
  23995. image: {
  23996. source: "./media/characters/sprisk/back.svg",
  23997. extra: 1247 / 1200,
  23998. bottom: 5.6 / 1253.04
  23999. }
  24000. },
  24001. },
  24002. [
  24003. {
  24004. name: "Tiny",
  24005. height: math.unit(2, "inches")
  24006. },
  24007. {
  24008. name: "Normal",
  24009. height: math.unit(5 + 9 / 12, "feet"),
  24010. default: true
  24011. },
  24012. {
  24013. name: "Mini Macro",
  24014. height: math.unit(18, "feet")
  24015. },
  24016. {
  24017. name: "Macro",
  24018. height: math.unit(100, "feet")
  24019. },
  24020. {
  24021. name: "MACRO",
  24022. height: math.unit(50, "miles")
  24023. },
  24024. {
  24025. name: "M A C R O",
  24026. height: math.unit(300, "miles")
  24027. },
  24028. ]
  24029. ))
  24030. characterMakers.push(() => makeCharacter(
  24031. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24032. {
  24033. side: {
  24034. height: math.unit(15.6, "meters"),
  24035. weight: math.unit(700000, "kg"),
  24036. name: "Side",
  24037. image: {
  24038. source: "./media/characters/bunsen/side.svg",
  24039. extra: 1644 / 358
  24040. }
  24041. },
  24042. foot: {
  24043. height: math.unit(1.611 * 1644 / 358, "meter"),
  24044. name: "Foot",
  24045. image: {
  24046. source: "./media/characters/bunsen/foot.svg"
  24047. }
  24048. },
  24049. },
  24050. [
  24051. {
  24052. name: "Small",
  24053. height: math.unit(10, "feet")
  24054. },
  24055. {
  24056. name: "Normal",
  24057. height: math.unit(15.6, "meters"),
  24058. default: true
  24059. },
  24060. ]
  24061. ))
  24062. characterMakers.push(() => makeCharacter(
  24063. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24064. {
  24065. front: {
  24066. height: math.unit(4 + 11 / 12, "feet"),
  24067. weight: math.unit(140, "lb"),
  24068. name: "Front",
  24069. image: {
  24070. source: "./media/characters/sesh/front.svg",
  24071. extra: 3420 / 3231,
  24072. bottom: 72 / 3949.5
  24073. }
  24074. },
  24075. },
  24076. [
  24077. {
  24078. name: "Normal",
  24079. height: math.unit(4 + 11 / 12, "feet")
  24080. },
  24081. {
  24082. name: "Grown",
  24083. height: math.unit(15, "feet"),
  24084. default: true
  24085. },
  24086. {
  24087. name: "Macro",
  24088. height: math.unit(1500, "feet")
  24089. },
  24090. {
  24091. name: "Megamacro",
  24092. height: math.unit(30, "miles")
  24093. },
  24094. {
  24095. name: "Continental",
  24096. height: math.unit(3000, "miles")
  24097. },
  24098. {
  24099. name: "Gravity Mass",
  24100. height: math.unit(300000, "miles")
  24101. },
  24102. {
  24103. name: "Planet Buster",
  24104. height: math.unit(30000000, "miles")
  24105. },
  24106. {
  24107. name: "Big",
  24108. height: math.unit(3000000000, "miles")
  24109. },
  24110. ]
  24111. ))
  24112. characterMakers.push(() => makeCharacter(
  24113. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24114. {
  24115. front: {
  24116. height: math.unit(9, "feet"),
  24117. weight: math.unit(350, "lb"),
  24118. name: "Front",
  24119. image: {
  24120. source: "./media/characters/pepper/front.svg",
  24121. extra: 1448 / 1312,
  24122. bottom: 9.4 / 1457.88
  24123. }
  24124. },
  24125. back: {
  24126. height: math.unit(9, "feet"),
  24127. weight: math.unit(350, "lb"),
  24128. name: "Back",
  24129. image: {
  24130. source: "./media/characters/pepper/back.svg",
  24131. extra: 1423 / 1300,
  24132. bottom: 4.6 / 1429
  24133. }
  24134. },
  24135. maw: {
  24136. height: math.unit(0.932, "feet"),
  24137. name: "Maw",
  24138. image: {
  24139. source: "./media/characters/pepper/maw.svg"
  24140. }
  24141. },
  24142. },
  24143. [
  24144. {
  24145. name: "Normal",
  24146. height: math.unit(9, "feet"),
  24147. default: true
  24148. },
  24149. ]
  24150. ))
  24151. characterMakers.push(() => makeCharacter(
  24152. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24153. {
  24154. front: {
  24155. height: math.unit(6, "feet"),
  24156. weight: math.unit(150, "lb"),
  24157. name: "Front",
  24158. image: {
  24159. source: "./media/characters/maelstrom/front.svg",
  24160. extra: 2100 / 1883,
  24161. bottom: 94 / 2196.7
  24162. }
  24163. },
  24164. },
  24165. [
  24166. {
  24167. name: "Less Kaiju",
  24168. height: math.unit(200, "feet")
  24169. },
  24170. {
  24171. name: "Kaiju",
  24172. height: math.unit(400, "feet"),
  24173. default: true
  24174. },
  24175. {
  24176. name: "Kaiju-er",
  24177. height: math.unit(600, "feet")
  24178. },
  24179. ]
  24180. ))
  24181. characterMakers.push(() => makeCharacter(
  24182. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24183. {
  24184. front: {
  24185. height: math.unit(6 + 5 / 12, "feet"),
  24186. weight: math.unit(180, "lb"),
  24187. name: "Front",
  24188. image: {
  24189. source: "./media/characters/lexir/front.svg",
  24190. extra: 180 / 172,
  24191. bottom: 12 / 192
  24192. }
  24193. },
  24194. back: {
  24195. height: math.unit(6 + 5 / 12, "feet"),
  24196. weight: math.unit(180, "lb"),
  24197. name: "Back",
  24198. image: {
  24199. source: "./media/characters/lexir/back.svg",
  24200. extra: 1273/1201,
  24201. bottom: 39/1312
  24202. }
  24203. },
  24204. },
  24205. [
  24206. {
  24207. name: "Very Smal",
  24208. height: math.unit(1, "nm")
  24209. },
  24210. {
  24211. name: "Normal",
  24212. height: math.unit(6 + 5 / 12, "feet"),
  24213. default: true
  24214. },
  24215. {
  24216. name: "Macro",
  24217. height: math.unit(1, "mile")
  24218. },
  24219. {
  24220. name: "Megamacro",
  24221. height: math.unit(50, "miles")
  24222. },
  24223. ]
  24224. ))
  24225. characterMakers.push(() => makeCharacter(
  24226. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24227. {
  24228. front: {
  24229. height: math.unit(1.5, "meters"),
  24230. weight: math.unit(100, "lb"),
  24231. name: "Front",
  24232. image: {
  24233. source: "./media/characters/maksio/front.svg",
  24234. extra: 1549 / 1531,
  24235. bottom: 123.7 / 1674.5429
  24236. }
  24237. },
  24238. back: {
  24239. height: math.unit(1.5, "meters"),
  24240. weight: math.unit(100, "lb"),
  24241. name: "Back",
  24242. image: {
  24243. source: "./media/characters/maksio/back.svg",
  24244. extra: 1541 / 1509,
  24245. bottom: 97 / 1639
  24246. }
  24247. },
  24248. hand: {
  24249. height: math.unit(0.621, "feet"),
  24250. name: "Hand",
  24251. image: {
  24252. source: "./media/characters/maksio/hand.svg"
  24253. }
  24254. },
  24255. foot: {
  24256. height: math.unit(1.611, "feet"),
  24257. name: "Foot",
  24258. image: {
  24259. source: "./media/characters/maksio/foot.svg"
  24260. }
  24261. },
  24262. },
  24263. [
  24264. {
  24265. name: "Shrunken",
  24266. height: math.unit(10, "cm")
  24267. },
  24268. {
  24269. name: "Normal",
  24270. height: math.unit(150, "cm"),
  24271. default: true
  24272. },
  24273. ]
  24274. ))
  24275. characterMakers.push(() => makeCharacter(
  24276. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24277. {
  24278. front: {
  24279. height: math.unit(100, "feet"),
  24280. name: "Front",
  24281. image: {
  24282. source: "./media/characters/erza-bear/front.svg",
  24283. extra: 2449 / 2390,
  24284. bottom: 46 / 2494
  24285. }
  24286. },
  24287. back: {
  24288. height: math.unit(100, "feet"),
  24289. name: "Back",
  24290. image: {
  24291. source: "./media/characters/erza-bear/back.svg",
  24292. extra: 2489 / 2430,
  24293. bottom: 85.4 / 2480
  24294. }
  24295. },
  24296. tail: {
  24297. height: math.unit(42, "feet"),
  24298. name: "Tail",
  24299. image: {
  24300. source: "./media/characters/erza-bear/tail.svg"
  24301. }
  24302. },
  24303. tongue: {
  24304. height: math.unit(8, "feet"),
  24305. name: "Tongue",
  24306. image: {
  24307. source: "./media/characters/erza-bear/tongue.svg"
  24308. }
  24309. },
  24310. dick: {
  24311. height: math.unit(10.5, "feet"),
  24312. name: "Dick",
  24313. image: {
  24314. source: "./media/characters/erza-bear/dick.svg"
  24315. }
  24316. },
  24317. dickVertical: {
  24318. height: math.unit(16.9, "feet"),
  24319. name: "Dick (Vertical)",
  24320. image: {
  24321. source: "./media/characters/erza-bear/dick-vertical.svg"
  24322. }
  24323. },
  24324. },
  24325. [
  24326. {
  24327. name: "Macro",
  24328. height: math.unit(100, "feet"),
  24329. default: true
  24330. },
  24331. ]
  24332. ))
  24333. characterMakers.push(() => makeCharacter(
  24334. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24335. {
  24336. front: {
  24337. height: math.unit(172, "cm"),
  24338. weight: math.unit(73, "kg"),
  24339. name: "Front",
  24340. image: {
  24341. source: "./media/characters/violet-flor/front.svg",
  24342. extra: 1530 / 1442,
  24343. bottom: 61.9 / 1588.8
  24344. }
  24345. },
  24346. back: {
  24347. height: math.unit(180, "cm"),
  24348. weight: math.unit(73, "kg"),
  24349. name: "Back",
  24350. image: {
  24351. source: "./media/characters/violet-flor/back.svg",
  24352. extra: 1692 / 1630,
  24353. bottom: 20 / 1712
  24354. }
  24355. },
  24356. },
  24357. [
  24358. {
  24359. name: "Normal",
  24360. height: math.unit(172, "cm"),
  24361. default: true
  24362. },
  24363. ]
  24364. ))
  24365. characterMakers.push(() => makeCharacter(
  24366. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24367. {
  24368. front: {
  24369. height: math.unit(6, "feet"),
  24370. weight: math.unit(220, "lb"),
  24371. name: "Front",
  24372. image: {
  24373. source: "./media/characters/lynn-rhea/front.svg",
  24374. extra: 310 / 273
  24375. }
  24376. },
  24377. back: {
  24378. height: math.unit(6, "feet"),
  24379. weight: math.unit(220, "lb"),
  24380. name: "Back",
  24381. image: {
  24382. source: "./media/characters/lynn-rhea/back.svg",
  24383. extra: 310 / 273
  24384. }
  24385. },
  24386. dicks: {
  24387. height: math.unit(0.9, "feet"),
  24388. name: "Dicks",
  24389. image: {
  24390. source: "./media/characters/lynn-rhea/dicks.svg"
  24391. }
  24392. },
  24393. slit: {
  24394. height: math.unit(0.4, "feet"),
  24395. name: "Slit",
  24396. image: {
  24397. source: "./media/characters/lynn-rhea/slit.svg"
  24398. }
  24399. },
  24400. },
  24401. [
  24402. {
  24403. name: "Micro",
  24404. height: math.unit(1, "inch")
  24405. },
  24406. {
  24407. name: "Macro",
  24408. height: math.unit(60, "feet"),
  24409. default: true
  24410. },
  24411. {
  24412. name: "Megamacro",
  24413. height: math.unit(2, "miles")
  24414. },
  24415. {
  24416. name: "Gigamacro",
  24417. height: math.unit(3, "earths")
  24418. },
  24419. {
  24420. name: "Galactic",
  24421. height: math.unit(0.8, "galaxies")
  24422. },
  24423. ]
  24424. ))
  24425. characterMakers.push(() => makeCharacter(
  24426. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24427. {
  24428. front: {
  24429. height: math.unit(1600, "feet"),
  24430. weight: math.unit(85758785169, "kg"),
  24431. name: "Front",
  24432. image: {
  24433. source: "./media/characters/valathos/front.svg",
  24434. extra: 1451 / 1339
  24435. }
  24436. },
  24437. },
  24438. [
  24439. {
  24440. name: "Macro",
  24441. height: math.unit(1600, "feet"),
  24442. default: true
  24443. },
  24444. ]
  24445. ))
  24446. characterMakers.push(() => makeCharacter(
  24447. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24448. {
  24449. front: {
  24450. height: math.unit(7 + 5 / 12, "feet"),
  24451. weight: math.unit(300, "lb"),
  24452. name: "Front",
  24453. image: {
  24454. source: "./media/characters/azula/front.svg",
  24455. extra: 3208 / 2880,
  24456. bottom: 80.2 / 3277
  24457. }
  24458. },
  24459. back: {
  24460. height: math.unit(7 + 5 / 12, "feet"),
  24461. weight: math.unit(300, "lb"),
  24462. name: "Back",
  24463. image: {
  24464. source: "./media/characters/azula/back.svg",
  24465. extra: 3169 / 2822,
  24466. bottom: 150.6 / 3321
  24467. }
  24468. },
  24469. },
  24470. [
  24471. {
  24472. name: "Normal",
  24473. height: math.unit(7 + 5 / 12, "feet"),
  24474. default: true
  24475. },
  24476. {
  24477. name: "Big",
  24478. height: math.unit(20, "feet")
  24479. },
  24480. ]
  24481. ))
  24482. characterMakers.push(() => makeCharacter(
  24483. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24484. {
  24485. front: {
  24486. height: math.unit(5 + 1 / 12, "feet"),
  24487. weight: math.unit(110, "lb"),
  24488. name: "Front",
  24489. image: {
  24490. source: "./media/characters/rupert/front.svg",
  24491. extra: 1549 / 1495,
  24492. bottom: 54.2 / 1604.4
  24493. }
  24494. },
  24495. },
  24496. [
  24497. {
  24498. name: "Normal",
  24499. height: math.unit(5 + 1 / 12, "feet"),
  24500. default: true
  24501. },
  24502. ]
  24503. ))
  24504. characterMakers.push(() => makeCharacter(
  24505. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24506. {
  24507. front: {
  24508. height: math.unit(8 + 4 / 12, "feet"),
  24509. weight: math.unit(350, "lb"),
  24510. name: "Front",
  24511. image: {
  24512. source: "./media/characters/sheera-castellar/front.svg",
  24513. extra: 1957 / 1894,
  24514. bottom: 26.97 / 1975.017
  24515. }
  24516. },
  24517. side: {
  24518. height: math.unit(8 + 4 / 12, "feet"),
  24519. weight: math.unit(350, "lb"),
  24520. name: "Side",
  24521. image: {
  24522. source: "./media/characters/sheera-castellar/side.svg",
  24523. extra: 1957 / 1894
  24524. }
  24525. },
  24526. back: {
  24527. height: math.unit(8 + 4 / 12, "feet"),
  24528. weight: math.unit(350, "lb"),
  24529. name: "Back",
  24530. image: {
  24531. source: "./media/characters/sheera-castellar/back.svg",
  24532. extra: 1957 / 1894
  24533. }
  24534. },
  24535. angled: {
  24536. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24537. weight: math.unit(350, "lb"),
  24538. name: "Angled",
  24539. image: {
  24540. source: "./media/characters/sheera-castellar/angled.svg",
  24541. extra: 1807 / 1707,
  24542. bottom: 68 / 1875
  24543. }
  24544. },
  24545. genitals: {
  24546. height: math.unit(2.2, "feet"),
  24547. name: "Genitals",
  24548. image: {
  24549. source: "./media/characters/sheera-castellar/genitals.svg"
  24550. }
  24551. },
  24552. taur: {
  24553. height: math.unit(10 + 6/12, "feet"),
  24554. name: "Taur",
  24555. image: {
  24556. source: "./media/characters/sheera-castellar/taur.svg",
  24557. extra: 2017/1909,
  24558. bottom: 185/2202
  24559. }
  24560. },
  24561. },
  24562. [
  24563. {
  24564. name: "Normal",
  24565. height: math.unit(8 + 4 / 12, "feet")
  24566. },
  24567. {
  24568. name: "Macro",
  24569. height: math.unit(150, "feet"),
  24570. default: true
  24571. },
  24572. {
  24573. name: "Macro+",
  24574. height: math.unit(800, "feet")
  24575. },
  24576. ]
  24577. ))
  24578. characterMakers.push(() => makeCharacter(
  24579. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24580. {
  24581. front: {
  24582. height: math.unit(6, "feet"),
  24583. weight: math.unit(150, "lb"),
  24584. name: "Front",
  24585. image: {
  24586. source: "./media/characters/jaipur/front.svg",
  24587. extra: 3860 / 3731,
  24588. bottom: 287 / 4140
  24589. }
  24590. },
  24591. back: {
  24592. height: math.unit(6, "feet"),
  24593. weight: math.unit(150, "lb"),
  24594. name: "Back",
  24595. image: {
  24596. source: "./media/characters/jaipur/back.svg",
  24597. extra: 1637/1561,
  24598. bottom: 154/1791
  24599. }
  24600. },
  24601. },
  24602. [
  24603. {
  24604. name: "Normal",
  24605. height: math.unit(1.85, "meters"),
  24606. default: true
  24607. },
  24608. {
  24609. name: "Macro",
  24610. height: math.unit(150, "meters")
  24611. },
  24612. {
  24613. name: "Macro+",
  24614. height: math.unit(0.5, "miles")
  24615. },
  24616. {
  24617. name: "Macro++",
  24618. height: math.unit(2.5, "miles")
  24619. },
  24620. {
  24621. name: "Macro+++",
  24622. height: math.unit(12, "miles")
  24623. },
  24624. {
  24625. name: "Macro++++",
  24626. height: math.unit(120, "miles")
  24627. },
  24628. {
  24629. name: "Macro+++++",
  24630. height: math.unit(1200, "miles")
  24631. },
  24632. ]
  24633. ))
  24634. characterMakers.push(() => makeCharacter(
  24635. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24636. {
  24637. front: {
  24638. height: math.unit(6, "feet"),
  24639. weight: math.unit(150, "lb"),
  24640. name: "Front",
  24641. image: {
  24642. source: "./media/characters/sheila-wolf/front.svg",
  24643. extra: 1931 / 1808,
  24644. bottom: 29.5 / 1960
  24645. }
  24646. },
  24647. dick: {
  24648. height: math.unit(1.464, "feet"),
  24649. name: "Dick",
  24650. image: {
  24651. source: "./media/characters/sheila-wolf/dick.svg"
  24652. }
  24653. },
  24654. muzzle: {
  24655. height: math.unit(0.513, "feet"),
  24656. name: "Muzzle",
  24657. image: {
  24658. source: "./media/characters/sheila-wolf/muzzle.svg"
  24659. }
  24660. },
  24661. },
  24662. [
  24663. {
  24664. name: "Macro",
  24665. height: math.unit(70, "feet"),
  24666. default: true
  24667. },
  24668. ]
  24669. ))
  24670. characterMakers.push(() => makeCharacter(
  24671. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24672. {
  24673. front: {
  24674. height: math.unit(32, "meters"),
  24675. weight: math.unit(300000, "kg"),
  24676. name: "Front",
  24677. image: {
  24678. source: "./media/characters/almor/front.svg",
  24679. extra: 1408 / 1322,
  24680. bottom: 94.6 / 1506.5
  24681. }
  24682. },
  24683. },
  24684. [
  24685. {
  24686. name: "Macro",
  24687. height: math.unit(32, "meters"),
  24688. default: true
  24689. },
  24690. ]
  24691. ))
  24692. characterMakers.push(() => makeCharacter(
  24693. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24694. {
  24695. front: {
  24696. height: math.unit(7, "feet"),
  24697. weight: math.unit(200, "lb"),
  24698. name: "Front",
  24699. image: {
  24700. source: "./media/characters/silver/front.svg",
  24701. extra: 472.1 / 450.5,
  24702. bottom: 26.5 / 499.424
  24703. }
  24704. },
  24705. },
  24706. [
  24707. {
  24708. name: "Normal",
  24709. height: math.unit(7, "feet"),
  24710. default: true
  24711. },
  24712. {
  24713. name: "Macro",
  24714. height: math.unit(800, "feet")
  24715. },
  24716. {
  24717. name: "Megamacro",
  24718. height: math.unit(250, "miles")
  24719. },
  24720. ]
  24721. ))
  24722. characterMakers.push(() => makeCharacter(
  24723. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24724. {
  24725. front: {
  24726. height: math.unit(6, "feet"),
  24727. weight: math.unit(150, "lb"),
  24728. name: "Front",
  24729. image: {
  24730. source: "./media/characters/pliskin/front.svg",
  24731. extra: 1469 / 1359,
  24732. bottom: 70 / 1540
  24733. }
  24734. },
  24735. },
  24736. [
  24737. {
  24738. name: "Micro",
  24739. height: math.unit(3, "inches")
  24740. },
  24741. {
  24742. name: "Normal",
  24743. height: math.unit(5 + 11 / 12, "feet"),
  24744. default: true
  24745. },
  24746. {
  24747. name: "Macro",
  24748. height: math.unit(120, "feet")
  24749. },
  24750. ]
  24751. ))
  24752. characterMakers.push(() => makeCharacter(
  24753. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24754. {
  24755. front: {
  24756. height: math.unit(6, "feet"),
  24757. weight: math.unit(150, "lb"),
  24758. name: "Front",
  24759. image: {
  24760. source: "./media/characters/sammy/front.svg",
  24761. extra: 1193 / 1089,
  24762. bottom: 30.5 / 1226
  24763. }
  24764. },
  24765. },
  24766. [
  24767. {
  24768. name: "Macro",
  24769. height: math.unit(1700, "feet"),
  24770. default: true
  24771. },
  24772. {
  24773. name: "Examacro",
  24774. height: math.unit(2.5e9, "lightyears")
  24775. },
  24776. ]
  24777. ))
  24778. characterMakers.push(() => makeCharacter(
  24779. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24780. {
  24781. front: {
  24782. height: math.unit(21, "meters"),
  24783. weight: math.unit(12, "tonnes"),
  24784. name: "Front",
  24785. image: {
  24786. source: "./media/characters/kuru/front.svg",
  24787. extra: 4301 / 3785,
  24788. bottom: 371.3 / 4691
  24789. }
  24790. },
  24791. },
  24792. [
  24793. {
  24794. name: "Macro",
  24795. height: math.unit(21, "meters"),
  24796. default: true
  24797. },
  24798. ]
  24799. ))
  24800. characterMakers.push(() => makeCharacter(
  24801. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24802. {
  24803. front: {
  24804. height: math.unit(23, "meters"),
  24805. weight: math.unit(12.2, "tonnes"),
  24806. name: "Front",
  24807. image: {
  24808. source: "./media/characters/rakka/front.svg",
  24809. extra: 4670 / 4169,
  24810. bottom: 301 / 4968.7
  24811. }
  24812. },
  24813. },
  24814. [
  24815. {
  24816. name: "Macro",
  24817. height: math.unit(23, "meters"),
  24818. default: true
  24819. },
  24820. ]
  24821. ))
  24822. characterMakers.push(() => makeCharacter(
  24823. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24824. {
  24825. front: {
  24826. height: math.unit(6, "feet"),
  24827. weight: math.unit(150, "lb"),
  24828. name: "Front",
  24829. image: {
  24830. source: "./media/characters/rhys-feline/front.svg",
  24831. extra: 2488 / 2308,
  24832. bottom: 35.67 / 2519.19
  24833. }
  24834. },
  24835. },
  24836. [
  24837. {
  24838. name: "Really Small",
  24839. height: math.unit(1, "nm")
  24840. },
  24841. {
  24842. name: "Micro",
  24843. height: math.unit(4, "inches")
  24844. },
  24845. {
  24846. name: "Normal",
  24847. height: math.unit(4 + 10 / 12, "feet"),
  24848. default: true
  24849. },
  24850. {
  24851. name: "Macro",
  24852. height: math.unit(100, "feet")
  24853. },
  24854. {
  24855. name: "Megamacto",
  24856. height: math.unit(50, "miles")
  24857. },
  24858. ]
  24859. ))
  24860. characterMakers.push(() => makeCharacter(
  24861. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24862. {
  24863. side: {
  24864. height: math.unit(30, "feet"),
  24865. weight: math.unit(35000, "kg"),
  24866. name: "Side",
  24867. image: {
  24868. source: "./media/characters/alydar/side.svg",
  24869. extra: 234 / 222,
  24870. bottom: 6.5 / 241
  24871. }
  24872. },
  24873. front: {
  24874. height: math.unit(30, "feet"),
  24875. weight: math.unit(35000, "kg"),
  24876. name: "Front",
  24877. image: {
  24878. source: "./media/characters/alydar/front.svg",
  24879. extra: 223.37 / 210.2,
  24880. bottom: 22.3 / 246.76
  24881. }
  24882. },
  24883. top: {
  24884. height: math.unit(64.54, "feet"),
  24885. weight: math.unit(35000, "kg"),
  24886. name: "Top",
  24887. image: {
  24888. source: "./media/characters/alydar/top.svg"
  24889. }
  24890. },
  24891. anthro: {
  24892. height: math.unit(30, "feet"),
  24893. weight: math.unit(9000, "kg"),
  24894. name: "Anthro",
  24895. image: {
  24896. source: "./media/characters/alydar/anthro.svg",
  24897. extra: 432 / 421,
  24898. bottom: 7.18 / 440
  24899. }
  24900. },
  24901. maw: {
  24902. height: math.unit(11.693, "feet"),
  24903. name: "Maw",
  24904. image: {
  24905. source: "./media/characters/alydar/maw.svg"
  24906. }
  24907. },
  24908. head: {
  24909. height: math.unit(11.693, "feet"),
  24910. name: "Head",
  24911. image: {
  24912. source: "./media/characters/alydar/head.svg"
  24913. }
  24914. },
  24915. headAlt: {
  24916. height: math.unit(12.861, "feet"),
  24917. name: "Head (Alt)",
  24918. image: {
  24919. source: "./media/characters/alydar/head-alt.svg"
  24920. }
  24921. },
  24922. wing: {
  24923. height: math.unit(20.712, "feet"),
  24924. name: "Wing",
  24925. image: {
  24926. source: "./media/characters/alydar/wing.svg"
  24927. }
  24928. },
  24929. wingFeather: {
  24930. height: math.unit(9.662, "feet"),
  24931. name: "Wing Feather",
  24932. image: {
  24933. source: "./media/characters/alydar/wing-feather.svg"
  24934. }
  24935. },
  24936. countourFeather: {
  24937. height: math.unit(4.154, "feet"),
  24938. name: "Contour Feather",
  24939. image: {
  24940. source: "./media/characters/alydar/contour-feather.svg"
  24941. }
  24942. },
  24943. },
  24944. [
  24945. {
  24946. name: "Diplomatic",
  24947. height: math.unit(13, "feet"),
  24948. default: true
  24949. },
  24950. {
  24951. name: "Small",
  24952. height: math.unit(30, "feet")
  24953. },
  24954. {
  24955. name: "Normal",
  24956. height: math.unit(95, "feet"),
  24957. default: true
  24958. },
  24959. {
  24960. name: "Large",
  24961. height: math.unit(285, "feet")
  24962. },
  24963. {
  24964. name: "Incomprehensible",
  24965. height: math.unit(450, "megameters")
  24966. },
  24967. ]
  24968. ))
  24969. characterMakers.push(() => makeCharacter(
  24970. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24971. {
  24972. side: {
  24973. height: math.unit(11, "feet"),
  24974. weight: math.unit(1750, "kg"),
  24975. name: "Side",
  24976. image: {
  24977. source: "./media/characters/selicia/side.svg",
  24978. extra: 440 / 396,
  24979. bottom: 24.8 / 465.979
  24980. }
  24981. },
  24982. maw: {
  24983. height: math.unit(4.665, "feet"),
  24984. name: "Maw",
  24985. image: {
  24986. source: "./media/characters/selicia/maw.svg"
  24987. }
  24988. },
  24989. },
  24990. [
  24991. {
  24992. name: "Normal",
  24993. height: math.unit(11, "feet"),
  24994. default: true
  24995. },
  24996. ]
  24997. ))
  24998. characterMakers.push(() => makeCharacter(
  24999. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25000. {
  25001. side: {
  25002. height: math.unit(2 + 6 / 12, "feet"),
  25003. weight: math.unit(30, "lb"),
  25004. name: "Side",
  25005. image: {
  25006. source: "./media/characters/layla/side.svg",
  25007. extra: 244 / 188,
  25008. bottom: 18.2 / 262.1
  25009. }
  25010. },
  25011. back: {
  25012. height: math.unit(2 + 6 / 12, "feet"),
  25013. weight: math.unit(30, "lb"),
  25014. name: "Back",
  25015. image: {
  25016. source: "./media/characters/layla/back.svg",
  25017. extra: 308 / 241.5,
  25018. bottom: 8.9 / 316.8
  25019. }
  25020. },
  25021. cumming: {
  25022. height: math.unit(2 + 6 / 12, "feet"),
  25023. weight: math.unit(30, "lb"),
  25024. name: "Cumming",
  25025. image: {
  25026. source: "./media/characters/layla/cumming.svg",
  25027. extra: 342 / 279,
  25028. bottom: 595 / 938
  25029. }
  25030. },
  25031. dickFlaccid: {
  25032. height: math.unit(2.595, "feet"),
  25033. name: "Flaccid Genitals",
  25034. image: {
  25035. source: "./media/characters/layla/dick-flaccid.svg"
  25036. }
  25037. },
  25038. dickErect: {
  25039. height: math.unit(2.359, "feet"),
  25040. name: "Erect Genitals",
  25041. image: {
  25042. source: "./media/characters/layla/dick-erect.svg"
  25043. }
  25044. },
  25045. dragon: {
  25046. height: math.unit(40, "feet"),
  25047. name: "Dragon",
  25048. image: {
  25049. source: "./media/characters/layla/dragon.svg",
  25050. extra: 610/535,
  25051. bottom: 367/977
  25052. }
  25053. },
  25054. taur: {
  25055. height: math.unit(30, "feet"),
  25056. name: "Taur",
  25057. image: {
  25058. source: "./media/characters/layla/taur.svg",
  25059. extra: 1268/1199,
  25060. bottom: 112/1380
  25061. }
  25062. },
  25063. },
  25064. [
  25065. {
  25066. name: "Micro",
  25067. height: math.unit(1, "inch")
  25068. },
  25069. {
  25070. name: "Small",
  25071. height: math.unit(1, "foot")
  25072. },
  25073. {
  25074. name: "Normal",
  25075. height: math.unit(2 + 6 / 12, "feet"),
  25076. default: true
  25077. },
  25078. {
  25079. name: "Macro",
  25080. height: math.unit(200, "feet")
  25081. },
  25082. {
  25083. name: "Megamacro",
  25084. height: math.unit(1000, "miles")
  25085. },
  25086. {
  25087. name: "Planetary",
  25088. height: math.unit(8000, "miles")
  25089. },
  25090. {
  25091. name: "True Layla",
  25092. height: math.unit(200000 * 7, "multiverses")
  25093. },
  25094. ]
  25095. ))
  25096. characterMakers.push(() => makeCharacter(
  25097. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25098. {
  25099. back: {
  25100. height: math.unit(10.5, "feet"),
  25101. weight: math.unit(800, "lb"),
  25102. name: "Back",
  25103. image: {
  25104. source: "./media/characters/knox/back.svg",
  25105. extra: 1486 / 1089,
  25106. bottom: 107 / 1601.4
  25107. }
  25108. },
  25109. side: {
  25110. height: math.unit(10.5, "feet"),
  25111. weight: math.unit(800, "lb"),
  25112. name: "Side",
  25113. image: {
  25114. source: "./media/characters/knox/side.svg",
  25115. extra: 244 / 218,
  25116. bottom: 14 / 260
  25117. }
  25118. },
  25119. },
  25120. [
  25121. {
  25122. name: "Compact",
  25123. height: math.unit(10.5, "feet"),
  25124. default: true
  25125. },
  25126. {
  25127. name: "Dynamax",
  25128. height: math.unit(210, "feet")
  25129. },
  25130. {
  25131. name: "Full Macro",
  25132. height: math.unit(850, "feet")
  25133. },
  25134. ]
  25135. ))
  25136. characterMakers.push(() => makeCharacter(
  25137. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25138. {
  25139. front: {
  25140. height: math.unit(28, "feet"),
  25141. weight: math.unit(10500, "lb"),
  25142. name: "Front",
  25143. image: {
  25144. source: "./media/characters/kayda/front.svg",
  25145. extra: 1536 / 1428,
  25146. bottom: 68.7 / 1603
  25147. }
  25148. },
  25149. back: {
  25150. height: math.unit(28, "feet"),
  25151. weight: math.unit(10500, "lb"),
  25152. name: "Back",
  25153. image: {
  25154. source: "./media/characters/kayda/back.svg",
  25155. extra: 1557 / 1464,
  25156. bottom: 39.5 / 1597.49
  25157. }
  25158. },
  25159. dick: {
  25160. height: math.unit(3.858, "feet"),
  25161. name: "Dick",
  25162. image: {
  25163. source: "./media/characters/kayda/dick.svg"
  25164. }
  25165. },
  25166. },
  25167. [
  25168. {
  25169. name: "Macro",
  25170. height: math.unit(28, "feet"),
  25171. default: true
  25172. },
  25173. ]
  25174. ))
  25175. characterMakers.push(() => makeCharacter(
  25176. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25177. {
  25178. front: {
  25179. height: math.unit(10 + 11 / 12, "feet"),
  25180. weight: math.unit(1400, "lb"),
  25181. name: "Front",
  25182. image: {
  25183. source: "./media/characters/brian/front.svg",
  25184. extra: 737 / 692,
  25185. bottom: 55.4 / 785
  25186. }
  25187. },
  25188. },
  25189. [
  25190. {
  25191. name: "Normal",
  25192. height: math.unit(10 + 11 / 12, "feet"),
  25193. default: true
  25194. },
  25195. ]
  25196. ))
  25197. characterMakers.push(() => makeCharacter(
  25198. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25199. {
  25200. front: {
  25201. height: math.unit(5 + 8 / 12, "feet"),
  25202. weight: math.unit(140, "lb"),
  25203. name: "Front",
  25204. image: {
  25205. source: "./media/characters/khemri/front.svg",
  25206. extra: 4780 / 4059,
  25207. bottom: 80.1 / 4859.25
  25208. }
  25209. },
  25210. },
  25211. [
  25212. {
  25213. name: "Micro",
  25214. height: math.unit(6, "inches")
  25215. },
  25216. {
  25217. name: "Normal",
  25218. height: math.unit(5 + 8 / 12, "feet"),
  25219. default: true
  25220. },
  25221. ]
  25222. ))
  25223. characterMakers.push(() => makeCharacter(
  25224. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25225. {
  25226. front: {
  25227. height: math.unit(13, "feet"),
  25228. weight: math.unit(1700, "lb"),
  25229. name: "Front",
  25230. image: {
  25231. source: "./media/characters/felix-braveheart/front.svg",
  25232. extra: 1222 / 1157,
  25233. bottom: 53.2 / 1280
  25234. }
  25235. },
  25236. back: {
  25237. height: math.unit(13, "feet"),
  25238. weight: math.unit(1700, "lb"),
  25239. name: "Back",
  25240. image: {
  25241. source: "./media/characters/felix-braveheart/back.svg",
  25242. extra: 1277 / 1203,
  25243. bottom: 50.2 / 1327
  25244. }
  25245. },
  25246. feral: {
  25247. height: math.unit(6, "feet"),
  25248. weight: math.unit(400, "lb"),
  25249. name: "Feral",
  25250. image: {
  25251. source: "./media/characters/felix-braveheart/feral.svg",
  25252. extra: 682 / 625,
  25253. bottom: 6.9 / 688
  25254. }
  25255. },
  25256. },
  25257. [
  25258. {
  25259. name: "Normal",
  25260. height: math.unit(13, "feet"),
  25261. default: true
  25262. },
  25263. ]
  25264. ))
  25265. characterMakers.push(() => makeCharacter(
  25266. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25267. {
  25268. side: {
  25269. height: math.unit(5 + 11 / 12, "feet"),
  25270. weight: math.unit(1400, "lb"),
  25271. name: "Side",
  25272. image: {
  25273. source: "./media/characters/shadow-blade/side.svg",
  25274. extra: 1726 / 1267,
  25275. bottom: 58.4 / 1785
  25276. }
  25277. },
  25278. },
  25279. [
  25280. {
  25281. name: "Normal",
  25282. height: math.unit(5 + 11 / 12, "feet"),
  25283. default: true
  25284. },
  25285. ]
  25286. ))
  25287. characterMakers.push(() => makeCharacter(
  25288. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25289. {
  25290. front: {
  25291. height: math.unit(1 + 6 / 12, "feet"),
  25292. weight: math.unit(25, "lb"),
  25293. name: "Front",
  25294. image: {
  25295. source: "./media/characters/karla-halldor/front.svg",
  25296. extra: 1459 / 1383,
  25297. bottom: 12 / 1472
  25298. }
  25299. },
  25300. },
  25301. [
  25302. {
  25303. name: "Normal",
  25304. height: math.unit(1 + 6 / 12, "feet"),
  25305. default: true
  25306. },
  25307. ]
  25308. ))
  25309. characterMakers.push(() => makeCharacter(
  25310. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25311. {
  25312. front: {
  25313. height: math.unit(6 + 2 / 12, "feet"),
  25314. weight: math.unit(160, "lb"),
  25315. name: "Front",
  25316. image: {
  25317. source: "./media/characters/ariam/front.svg",
  25318. extra: 1073/976,
  25319. bottom: 52/1125
  25320. }
  25321. },
  25322. back: {
  25323. height: math.unit(6 + 2/12, "feet"),
  25324. weight: math.unit(160, "lb"),
  25325. name: "Back",
  25326. image: {
  25327. source: "./media/characters/ariam/back.svg",
  25328. extra: 1103/1023,
  25329. bottom: 9/1112
  25330. }
  25331. },
  25332. dressed: {
  25333. height: math.unit(6 + 2/12, "feet"),
  25334. weight: math.unit(160, "lb"),
  25335. name: "Dressed",
  25336. image: {
  25337. source: "./media/characters/ariam/dressed.svg",
  25338. extra: 1099/1009,
  25339. bottom: 25/1124
  25340. }
  25341. },
  25342. squatting: {
  25343. height: math.unit(4.1, "feet"),
  25344. weight: math.unit(160, "lb"),
  25345. name: "Squatting",
  25346. image: {
  25347. source: "./media/characters/ariam/squatting.svg",
  25348. extra: 2617 / 2112,
  25349. bottom: 61.2 / 2681,
  25350. }
  25351. },
  25352. },
  25353. [
  25354. {
  25355. name: "Normal",
  25356. height: math.unit(6 + 2 / 12, "feet"),
  25357. default: true
  25358. },
  25359. {
  25360. name: "Normal+",
  25361. height: math.unit(4, "meters")
  25362. },
  25363. {
  25364. name: "Macro",
  25365. height: math.unit(50, "meters")
  25366. },
  25367. {
  25368. name: "Macro+",
  25369. height: math.unit(100, "meters")
  25370. },
  25371. {
  25372. name: "Megamacro",
  25373. height: math.unit(20, "km")
  25374. },
  25375. {
  25376. name: "Caretaker",
  25377. height: math.unit(444, "megameters")
  25378. },
  25379. ]
  25380. ))
  25381. characterMakers.push(() => makeCharacter(
  25382. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25383. {
  25384. front: {
  25385. height: math.unit(1.67, "meters"),
  25386. weight: math.unit(140, "lb"),
  25387. name: "Front",
  25388. image: {
  25389. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25390. extra: 438 / 410,
  25391. bottom: 0.75 / 439
  25392. }
  25393. },
  25394. },
  25395. [
  25396. {
  25397. name: "Shrunken",
  25398. height: math.unit(7.6, "cm")
  25399. },
  25400. {
  25401. name: "Human Scale",
  25402. height: math.unit(1.67, "meters")
  25403. },
  25404. {
  25405. name: "Wolxi Scale",
  25406. height: math.unit(36.7, "meters"),
  25407. default: true
  25408. },
  25409. ]
  25410. ))
  25411. characterMakers.push(() => makeCharacter(
  25412. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25413. {
  25414. front: {
  25415. height: math.unit(1.73, "meters"),
  25416. weight: math.unit(240, "lb"),
  25417. name: "Front",
  25418. image: {
  25419. source: "./media/characters/izue-two-mothers/front.svg",
  25420. extra: 469 / 437,
  25421. bottom: 1.24 / 470.6
  25422. }
  25423. },
  25424. },
  25425. [
  25426. {
  25427. name: "Shrunken",
  25428. height: math.unit(7.86, "cm")
  25429. },
  25430. {
  25431. name: "Human Scale",
  25432. height: math.unit(1.73, "meters")
  25433. },
  25434. {
  25435. name: "Wolxi Scale",
  25436. height: math.unit(38, "meters"),
  25437. default: true
  25438. },
  25439. ]
  25440. ))
  25441. characterMakers.push(() => makeCharacter(
  25442. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25443. {
  25444. front: {
  25445. height: math.unit(1.55, "meters"),
  25446. weight: math.unit(120, "lb"),
  25447. name: "Front",
  25448. image: {
  25449. source: "./media/characters/teeku-love-shack/front.svg",
  25450. extra: 387 / 362,
  25451. bottom: 1.51 / 388
  25452. }
  25453. },
  25454. },
  25455. [
  25456. {
  25457. name: "Shrunken",
  25458. height: math.unit(7, "cm")
  25459. },
  25460. {
  25461. name: "Human Scale",
  25462. height: math.unit(1.55, "meters")
  25463. },
  25464. {
  25465. name: "Wolxi Scale",
  25466. height: math.unit(34.1, "meters"),
  25467. default: true
  25468. },
  25469. ]
  25470. ))
  25471. characterMakers.push(() => makeCharacter(
  25472. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25473. {
  25474. front: {
  25475. height: math.unit(1.83, "meters"),
  25476. weight: math.unit(135, "lb"),
  25477. name: "Front",
  25478. image: {
  25479. source: "./media/characters/dejma-the-red/front.svg",
  25480. extra: 480 / 458,
  25481. bottom: 1.8 / 482
  25482. }
  25483. },
  25484. },
  25485. [
  25486. {
  25487. name: "Shrunken",
  25488. height: math.unit(8.3, "cm")
  25489. },
  25490. {
  25491. name: "Human Scale",
  25492. height: math.unit(1.83, "meters")
  25493. },
  25494. {
  25495. name: "Wolxi Scale",
  25496. height: math.unit(40, "meters"),
  25497. default: true
  25498. },
  25499. ]
  25500. ))
  25501. characterMakers.push(() => makeCharacter(
  25502. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25503. {
  25504. front: {
  25505. height: math.unit(1.78, "meters"),
  25506. weight: math.unit(65, "kg"),
  25507. name: "Front",
  25508. image: {
  25509. source: "./media/characters/aki/front.svg",
  25510. extra: 452 / 415
  25511. }
  25512. },
  25513. frontNsfw: {
  25514. height: math.unit(1.78, "meters"),
  25515. weight: math.unit(65, "kg"),
  25516. name: "Front (NSFW)",
  25517. image: {
  25518. source: "./media/characters/aki/front-nsfw.svg",
  25519. extra: 452 / 415
  25520. }
  25521. },
  25522. back: {
  25523. height: math.unit(1.78, "meters"),
  25524. weight: math.unit(65, "kg"),
  25525. name: "Back",
  25526. image: {
  25527. source: "./media/characters/aki/back.svg",
  25528. extra: 452 / 415
  25529. }
  25530. },
  25531. rump: {
  25532. height: math.unit(2.05, "feet"),
  25533. name: "Rump",
  25534. image: {
  25535. source: "./media/characters/aki/rump.svg"
  25536. }
  25537. },
  25538. dick: {
  25539. height: math.unit(0.95, "feet"),
  25540. name: "Dick",
  25541. image: {
  25542. source: "./media/characters/aki/dick.svg"
  25543. }
  25544. },
  25545. },
  25546. [
  25547. {
  25548. name: "Micro",
  25549. height: math.unit(15, "cm")
  25550. },
  25551. {
  25552. name: "Normal",
  25553. height: math.unit(178, "cm"),
  25554. default: true
  25555. },
  25556. {
  25557. name: "Macro",
  25558. height: math.unit(214, "m")
  25559. },
  25560. {
  25561. name: "Macro+",
  25562. height: math.unit(534, "m")
  25563. },
  25564. ]
  25565. ))
  25566. characterMakers.push(() => makeCharacter(
  25567. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25568. {
  25569. front: {
  25570. height: math.unit(5 + 5 / 12, "feet"),
  25571. weight: math.unit(120, "lb"),
  25572. name: "Front",
  25573. image: {
  25574. source: "./media/characters/ari/front.svg",
  25575. extra: 1550/1471,
  25576. bottom: 39/1589
  25577. }
  25578. },
  25579. },
  25580. [
  25581. {
  25582. name: "Normal",
  25583. height: math.unit(5 + 5 / 12, "feet")
  25584. },
  25585. {
  25586. name: "Macro",
  25587. height: math.unit(100, "feet"),
  25588. default: true
  25589. },
  25590. {
  25591. name: "Megamacro",
  25592. height: math.unit(100, "miles")
  25593. },
  25594. {
  25595. name: "Gigamacro",
  25596. height: math.unit(80000, "miles")
  25597. },
  25598. ]
  25599. ))
  25600. characterMakers.push(() => makeCharacter(
  25601. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25602. {
  25603. side: {
  25604. height: math.unit(9, "feet"),
  25605. weight: math.unit(400, "kg"),
  25606. name: "Side",
  25607. image: {
  25608. source: "./media/characters/bolt/side.svg",
  25609. extra: 1126 / 896,
  25610. bottom: 60 / 1187.3,
  25611. }
  25612. },
  25613. },
  25614. [
  25615. {
  25616. name: "Micro",
  25617. height: math.unit(5, "inches")
  25618. },
  25619. {
  25620. name: "Normal",
  25621. height: math.unit(9, "feet"),
  25622. default: true
  25623. },
  25624. {
  25625. name: "Macro",
  25626. height: math.unit(700, "feet")
  25627. },
  25628. {
  25629. name: "Max Size",
  25630. height: math.unit(1.52e22, "yottameters")
  25631. },
  25632. ]
  25633. ))
  25634. characterMakers.push(() => makeCharacter(
  25635. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25636. {
  25637. front: {
  25638. height: math.unit(4.3, "meters"),
  25639. weight: math.unit(3, "tons"),
  25640. name: "Front",
  25641. image: {
  25642. source: "./media/characters/draekon-sylviar/front.svg",
  25643. extra: 2072/1512,
  25644. bottom: 74/2146
  25645. }
  25646. },
  25647. back: {
  25648. height: math.unit(4.3, "meters"),
  25649. weight: math.unit(3, "tons"),
  25650. name: "Back",
  25651. image: {
  25652. source: "./media/characters/draekon-sylviar/back.svg",
  25653. extra: 1639/1483,
  25654. bottom: 41/1680
  25655. }
  25656. },
  25657. feral: {
  25658. height: math.unit(1.15, "meters"),
  25659. weight: math.unit(3, "tons"),
  25660. name: "Feral",
  25661. image: {
  25662. source: "./media/characters/draekon-sylviar/feral.svg",
  25663. extra: 1033/395,
  25664. bottom: 130/1163
  25665. }
  25666. },
  25667. maw: {
  25668. height: math.unit(1.3, "meters"),
  25669. name: "Maw",
  25670. image: {
  25671. source: "./media/characters/draekon-sylviar/maw.svg"
  25672. }
  25673. },
  25674. mawSeparated: {
  25675. height: math.unit(1.53, "meters"),
  25676. name: "Separated Maw",
  25677. image: {
  25678. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25679. }
  25680. },
  25681. tail: {
  25682. height: math.unit(1.15, "meters"),
  25683. name: "Tail",
  25684. image: {
  25685. source: "./media/characters/draekon-sylviar/tail.svg"
  25686. }
  25687. },
  25688. tailDick: {
  25689. height: math.unit(1.15, "meters"),
  25690. name: "Tail (Dick)",
  25691. image: {
  25692. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25693. }
  25694. },
  25695. tailDickSeparated: {
  25696. height: math.unit(1.19, "meters"),
  25697. name: "Tail (Separated Dick)",
  25698. image: {
  25699. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25700. }
  25701. },
  25702. slit: {
  25703. height: math.unit(1, "meters"),
  25704. name: "Slit",
  25705. image: {
  25706. source: "./media/characters/draekon-sylviar/slit.svg"
  25707. }
  25708. },
  25709. dick: {
  25710. height: math.unit(1.15, "meters"),
  25711. name: "Dick",
  25712. image: {
  25713. source: "./media/characters/draekon-sylviar/dick.svg"
  25714. }
  25715. },
  25716. dickSeparated: {
  25717. height: math.unit(1.1, "meters"),
  25718. name: "Separated Dick",
  25719. image: {
  25720. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25721. }
  25722. },
  25723. sheath: {
  25724. height: math.unit(1.15, "meters"),
  25725. name: "Sheath",
  25726. image: {
  25727. source: "./media/characters/draekon-sylviar/sheath.svg"
  25728. }
  25729. },
  25730. },
  25731. [
  25732. {
  25733. name: "Small",
  25734. height: math.unit(4.53 / 2, "meters"),
  25735. default: true
  25736. },
  25737. {
  25738. name: "Normal",
  25739. height: math.unit(4.53, "meters"),
  25740. default: true
  25741. },
  25742. {
  25743. name: "Large",
  25744. height: math.unit(4.53 * 2, "meters"),
  25745. },
  25746. ]
  25747. ))
  25748. characterMakers.push(() => makeCharacter(
  25749. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25750. {
  25751. front: {
  25752. height: math.unit(6 + 2 / 12, "feet"),
  25753. weight: math.unit(180, "lb"),
  25754. name: "Front",
  25755. image: {
  25756. source: "./media/characters/brawler/front.svg",
  25757. extra: 3301 / 3027,
  25758. bottom: 138 / 3439
  25759. }
  25760. },
  25761. },
  25762. [
  25763. {
  25764. name: "Normal",
  25765. height: math.unit(6 + 2 / 12, "feet"),
  25766. default: true
  25767. },
  25768. ]
  25769. ))
  25770. characterMakers.push(() => makeCharacter(
  25771. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25772. {
  25773. front: {
  25774. height: math.unit(11, "feet"),
  25775. weight: math.unit(1000, "lb"),
  25776. name: "Front",
  25777. image: {
  25778. source: "./media/characters/alex/front.svg",
  25779. bottom: 44.5 / 620
  25780. }
  25781. },
  25782. },
  25783. [
  25784. {
  25785. name: "Micro",
  25786. height: math.unit(5, "inches")
  25787. },
  25788. {
  25789. name: "Normal",
  25790. height: math.unit(11, "feet"),
  25791. default: true
  25792. },
  25793. {
  25794. name: "Macro",
  25795. height: math.unit(9.5e9, "feet")
  25796. },
  25797. {
  25798. name: "Max Size",
  25799. height: math.unit(1.4e283, "yottameters")
  25800. },
  25801. ]
  25802. ))
  25803. characterMakers.push(() => makeCharacter(
  25804. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25805. {
  25806. female: {
  25807. height: math.unit(29.9, "m"),
  25808. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25809. name: "Female",
  25810. image: {
  25811. source: "./media/characters/zenari/female.svg",
  25812. extra: 3281.6 / 3217,
  25813. bottom: 72.2 / 3353
  25814. }
  25815. },
  25816. male: {
  25817. height: math.unit(27.7, "m"),
  25818. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25819. name: "Male",
  25820. image: {
  25821. source: "./media/characters/zenari/male.svg",
  25822. extra: 3008 / 2991,
  25823. bottom: 54.6 / 3069
  25824. }
  25825. },
  25826. },
  25827. [
  25828. {
  25829. name: "Macro",
  25830. height: math.unit(29.7, "meters"),
  25831. default: true
  25832. },
  25833. ]
  25834. ))
  25835. characterMakers.push(() => makeCharacter(
  25836. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25837. {
  25838. female: {
  25839. height: math.unit(23.8, "m"),
  25840. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25841. name: "Female",
  25842. image: {
  25843. source: "./media/characters/mactarian/female.svg",
  25844. extra: 2662 / 2569,
  25845. bottom: 73 / 2736
  25846. }
  25847. },
  25848. male: {
  25849. height: math.unit(23.8, "m"),
  25850. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25851. name: "Male",
  25852. image: {
  25853. source: "./media/characters/mactarian/male.svg",
  25854. extra: 2673 / 2600,
  25855. bottom: 76 / 2750
  25856. }
  25857. },
  25858. },
  25859. [
  25860. {
  25861. name: "Macro",
  25862. height: math.unit(23.8, "meters"),
  25863. default: true
  25864. },
  25865. ]
  25866. ))
  25867. characterMakers.push(() => makeCharacter(
  25868. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25869. {
  25870. female: {
  25871. height: math.unit(19.3, "m"),
  25872. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25873. name: "Female",
  25874. image: {
  25875. source: "./media/characters/umok/female.svg",
  25876. extra: 2186 / 2078,
  25877. bottom: 87 / 2277
  25878. }
  25879. },
  25880. male: {
  25881. height: math.unit(19.5, "m"),
  25882. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25883. name: "Male",
  25884. image: {
  25885. source: "./media/characters/umok/male.svg",
  25886. extra: 2233 / 2140,
  25887. bottom: 24.4 / 2258
  25888. }
  25889. },
  25890. },
  25891. [
  25892. {
  25893. name: "Macro",
  25894. height: math.unit(19.3, "meters"),
  25895. default: true
  25896. },
  25897. ]
  25898. ))
  25899. characterMakers.push(() => makeCharacter(
  25900. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25901. {
  25902. female: {
  25903. height: math.unit(26.15, "m"),
  25904. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25905. name: "Female",
  25906. image: {
  25907. source: "./media/characters/joraxian/female.svg",
  25908. extra: 2912 / 2824,
  25909. bottom: 36 / 2956
  25910. }
  25911. },
  25912. male: {
  25913. height: math.unit(25.4, "m"),
  25914. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25915. name: "Male",
  25916. image: {
  25917. source: "./media/characters/joraxian/male.svg",
  25918. extra: 2877 / 2721,
  25919. bottom: 82 / 2967
  25920. }
  25921. },
  25922. },
  25923. [
  25924. {
  25925. name: "Macro",
  25926. height: math.unit(26.15, "meters"),
  25927. default: true
  25928. },
  25929. ]
  25930. ))
  25931. characterMakers.push(() => makeCharacter(
  25932. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25933. {
  25934. female: {
  25935. height: math.unit(21.6, "m"),
  25936. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25937. name: "Female",
  25938. image: {
  25939. source: "./media/characters/sthara/female.svg",
  25940. extra: 2516 / 2347,
  25941. bottom: 21.5 / 2537
  25942. }
  25943. },
  25944. male: {
  25945. height: math.unit(24, "m"),
  25946. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25947. name: "Male",
  25948. image: {
  25949. source: "./media/characters/sthara/male.svg",
  25950. extra: 2732 / 2607,
  25951. bottom: 23 / 2732
  25952. }
  25953. },
  25954. },
  25955. [
  25956. {
  25957. name: "Macro",
  25958. height: math.unit(21.6, "meters"),
  25959. default: true
  25960. },
  25961. ]
  25962. ))
  25963. characterMakers.push(() => makeCharacter(
  25964. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25965. {
  25966. front: {
  25967. height: math.unit(6 + 4 / 12, "feet"),
  25968. weight: math.unit(175, "lb"),
  25969. name: "Front",
  25970. image: {
  25971. source: "./media/characters/luka-bryzant/front.svg",
  25972. extra: 311 / 289,
  25973. bottom: 4 / 315
  25974. }
  25975. },
  25976. back: {
  25977. height: math.unit(6 + 4 / 12, "feet"),
  25978. weight: math.unit(175, "lb"),
  25979. name: "Back",
  25980. image: {
  25981. source: "./media/characters/luka-bryzant/back.svg",
  25982. extra: 311 / 289,
  25983. bottom: 3.8 / 313.7
  25984. }
  25985. },
  25986. },
  25987. [
  25988. {
  25989. name: "Micro",
  25990. height: math.unit(10, "inches")
  25991. },
  25992. {
  25993. name: "Normal",
  25994. height: math.unit(6 + 4 / 12, "feet"),
  25995. default: true
  25996. },
  25997. {
  25998. name: "Large",
  25999. height: math.unit(12, "feet")
  26000. },
  26001. ]
  26002. ))
  26003. characterMakers.push(() => makeCharacter(
  26004. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26005. {
  26006. front: {
  26007. height: math.unit(5 + 7 / 12, "feet"),
  26008. weight: math.unit(185, "lb"),
  26009. name: "Front",
  26010. image: {
  26011. source: "./media/characters/aman-aquila/front.svg",
  26012. extra: 1013 / 976,
  26013. bottom: 45.6 / 1057
  26014. }
  26015. },
  26016. side: {
  26017. height: math.unit(5 + 7 / 12, "feet"),
  26018. weight: math.unit(185, "lb"),
  26019. name: "Side",
  26020. image: {
  26021. source: "./media/characters/aman-aquila/side.svg",
  26022. extra: 1054 / 1011,
  26023. bottom: 15 / 1070
  26024. }
  26025. },
  26026. back: {
  26027. height: math.unit(5 + 7 / 12, "feet"),
  26028. weight: math.unit(185, "lb"),
  26029. name: "Back",
  26030. image: {
  26031. source: "./media/characters/aman-aquila/back.svg",
  26032. extra: 1026 / 970,
  26033. bottom: 12 / 1039
  26034. }
  26035. },
  26036. head: {
  26037. height: math.unit(1.211, "feet"),
  26038. name: "Head",
  26039. image: {
  26040. source: "./media/characters/aman-aquila/head.svg",
  26041. }
  26042. },
  26043. },
  26044. [
  26045. {
  26046. name: "Minimicro",
  26047. height: math.unit(0.057, "inches")
  26048. },
  26049. {
  26050. name: "Micro",
  26051. height: math.unit(7, "inches")
  26052. },
  26053. {
  26054. name: "Mini",
  26055. height: math.unit(3 + 7 / 12, "feet")
  26056. },
  26057. {
  26058. name: "Normal",
  26059. height: math.unit(5 + 7 / 12, "feet"),
  26060. default: true
  26061. },
  26062. {
  26063. name: "Macro",
  26064. height: math.unit(157 + 7 / 12, "feet")
  26065. },
  26066. {
  26067. name: "Megamacro",
  26068. height: math.unit(1557 + 7 / 12, "feet")
  26069. },
  26070. {
  26071. name: "Gigamacro",
  26072. height: math.unit(15557 + 7 / 12, "feet")
  26073. },
  26074. ]
  26075. ))
  26076. characterMakers.push(() => makeCharacter(
  26077. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26078. {
  26079. front: {
  26080. height: math.unit(3 + 2 / 12, "inches"),
  26081. weight: math.unit(0.3, "ounces"),
  26082. name: "Front",
  26083. image: {
  26084. source: "./media/characters/hiphae/front.svg",
  26085. extra: 1931 / 1683,
  26086. bottom: 24 / 1955
  26087. }
  26088. },
  26089. },
  26090. [
  26091. {
  26092. name: "Normal",
  26093. height: math.unit(3 + 1 / 2, "inches"),
  26094. default: true
  26095. },
  26096. ]
  26097. ))
  26098. characterMakers.push(() => makeCharacter(
  26099. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26100. {
  26101. front: {
  26102. height: math.unit(5 + 10 / 12, "feet"),
  26103. weight: math.unit(165, "lb"),
  26104. name: "Front",
  26105. image: {
  26106. source: "./media/characters/nicky/front.svg",
  26107. extra: 3144 / 2886,
  26108. bottom: 45.6 / 3192
  26109. }
  26110. },
  26111. back: {
  26112. height: math.unit(5 + 10 / 12, "feet"),
  26113. weight: math.unit(165, "lb"),
  26114. name: "Back",
  26115. image: {
  26116. source: "./media/characters/nicky/back.svg",
  26117. extra: 3055 / 2804,
  26118. bottom: 28.4 / 3087
  26119. }
  26120. },
  26121. frontclothed: {
  26122. height: math.unit(5 + 10 / 12, "feet"),
  26123. weight: math.unit(165, "lb"),
  26124. name: "Front-clothed",
  26125. image: {
  26126. source: "./media/characters/nicky/front-clothed.svg",
  26127. extra: 3184.9 / 2926.9,
  26128. bottom: 86.5 / 3239.9
  26129. }
  26130. },
  26131. foot: {
  26132. height: math.unit(1.16, "feet"),
  26133. name: "Foot",
  26134. image: {
  26135. source: "./media/characters/nicky/foot.svg"
  26136. }
  26137. },
  26138. feet: {
  26139. height: math.unit(1.34, "feet"),
  26140. name: "Feet",
  26141. image: {
  26142. source: "./media/characters/nicky/feet.svg"
  26143. }
  26144. },
  26145. maw: {
  26146. height: math.unit(0.9, "feet"),
  26147. name: "Maw",
  26148. image: {
  26149. source: "./media/characters/nicky/maw.svg"
  26150. }
  26151. },
  26152. },
  26153. [
  26154. {
  26155. name: "Normal",
  26156. height: math.unit(5 + 10 / 12, "feet"),
  26157. default: true
  26158. },
  26159. {
  26160. name: "Macro",
  26161. height: math.unit(60, "feet")
  26162. },
  26163. {
  26164. name: "Megamacro",
  26165. height: math.unit(1, "mile")
  26166. },
  26167. ]
  26168. ))
  26169. characterMakers.push(() => makeCharacter(
  26170. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26171. {
  26172. side: {
  26173. height: math.unit(10, "feet"),
  26174. weight: math.unit(600, "lb"),
  26175. name: "Side",
  26176. image: {
  26177. source: "./media/characters/blair/side.svg",
  26178. bottom: 16.6 / 475,
  26179. extra: 458 / 431
  26180. }
  26181. },
  26182. },
  26183. [
  26184. {
  26185. name: "Micro",
  26186. height: math.unit(8, "inches")
  26187. },
  26188. {
  26189. name: "Normal",
  26190. height: math.unit(10, "feet"),
  26191. default: true
  26192. },
  26193. {
  26194. name: "Macro",
  26195. height: math.unit(180, "feet")
  26196. },
  26197. ]
  26198. ))
  26199. characterMakers.push(() => makeCharacter(
  26200. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26201. {
  26202. front: {
  26203. height: math.unit(5 + 4 / 12, "feet"),
  26204. weight: math.unit(125, "lb"),
  26205. name: "Front",
  26206. image: {
  26207. source: "./media/characters/fisher/front.svg",
  26208. extra: 444 / 390,
  26209. bottom: 2 / 444.8
  26210. }
  26211. },
  26212. },
  26213. [
  26214. {
  26215. name: "Micro",
  26216. height: math.unit(4, "inches")
  26217. },
  26218. {
  26219. name: "Normal",
  26220. height: math.unit(5 + 4 / 12, "feet"),
  26221. default: true
  26222. },
  26223. {
  26224. name: "Macro",
  26225. height: math.unit(100, "feet")
  26226. },
  26227. ]
  26228. ))
  26229. characterMakers.push(() => makeCharacter(
  26230. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26231. {
  26232. front: {
  26233. height: math.unit(6.71, "feet"),
  26234. weight: math.unit(200, "lb"),
  26235. preyCapacity: math.unit(1000000, "people"),
  26236. name: "Front",
  26237. image: {
  26238. source: "./media/characters/gliss/front.svg",
  26239. extra: 2347 / 2231,
  26240. bottom: 113 / 2462
  26241. }
  26242. },
  26243. hammerspaceSize: {
  26244. height: math.unit(6.71 * 717, "feet"),
  26245. weight: math.unit(200, "lb"),
  26246. preyCapacity: math.unit(1000000, "people"),
  26247. name: "Hammerspace Size",
  26248. image: {
  26249. source: "./media/characters/gliss/front.svg",
  26250. extra: 2347 / 2231,
  26251. bottom: 113 / 2462
  26252. }
  26253. },
  26254. },
  26255. [
  26256. {
  26257. name: "Normal",
  26258. height: math.unit(6.71, "feet"),
  26259. default: true
  26260. },
  26261. ]
  26262. ))
  26263. characterMakers.push(() => makeCharacter(
  26264. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26265. {
  26266. side: {
  26267. height: math.unit(1.44, "m"),
  26268. weight: math.unit(80, "kg"),
  26269. name: "Side",
  26270. image: {
  26271. source: "./media/characters/dune-anderson/side.svg",
  26272. bottom: 49 / 1426
  26273. }
  26274. },
  26275. },
  26276. [
  26277. {
  26278. name: "Wolf-sized",
  26279. height: math.unit(1.44, "meters")
  26280. },
  26281. {
  26282. name: "Normal",
  26283. height: math.unit(5.05, "meters"),
  26284. default: true
  26285. },
  26286. {
  26287. name: "Big",
  26288. height: math.unit(14.4, "meters")
  26289. },
  26290. {
  26291. name: "Huge",
  26292. height: math.unit(144, "meters")
  26293. },
  26294. ]
  26295. ))
  26296. characterMakers.push(() => makeCharacter(
  26297. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26298. {
  26299. front: {
  26300. height: math.unit(7, "feet"),
  26301. weight: math.unit(425, "lb"),
  26302. name: "Front",
  26303. image: {
  26304. source: "./media/characters/hind/front.svg",
  26305. extra: 2091 / 1860,
  26306. bottom: 129 / 2220
  26307. }
  26308. },
  26309. back: {
  26310. height: math.unit(7, "feet"),
  26311. weight: math.unit(425, "lb"),
  26312. name: "Back",
  26313. image: {
  26314. source: "./media/characters/hind/back.svg",
  26315. extra: 2091 / 1860,
  26316. bottom: 24.6 / 2309
  26317. }
  26318. },
  26319. tail: {
  26320. height: math.unit(2.8, "feet"),
  26321. name: "Tail",
  26322. image: {
  26323. source: "./media/characters/hind/tail.svg"
  26324. }
  26325. },
  26326. head: {
  26327. height: math.unit(2.55, "feet"),
  26328. name: "Head",
  26329. image: {
  26330. source: "./media/characters/hind/head.svg"
  26331. }
  26332. },
  26333. },
  26334. [
  26335. {
  26336. name: "XS",
  26337. height: math.unit(0.7, "feet")
  26338. },
  26339. {
  26340. name: "Normal",
  26341. height: math.unit(7, "feet"),
  26342. default: true
  26343. },
  26344. {
  26345. name: "XL",
  26346. height: math.unit(70, "feet")
  26347. },
  26348. ]
  26349. ))
  26350. characterMakers.push(() => makeCharacter(
  26351. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26352. {
  26353. front: {
  26354. height: math.unit(2.1, "meters"),
  26355. weight: math.unit(150, "lb"),
  26356. name: "Front",
  26357. image: {
  26358. source: "./media/characters/tharquench-sizestealer/front.svg",
  26359. extra: 1605/1470,
  26360. bottom: 36/1641
  26361. }
  26362. },
  26363. frontAlt: {
  26364. height: math.unit(2.1, "meters"),
  26365. weight: math.unit(150, "lb"),
  26366. name: "Front (Alt)",
  26367. image: {
  26368. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26369. extra: 2318 / 2063,
  26370. bottom: 93.4 / 2410
  26371. }
  26372. },
  26373. },
  26374. [
  26375. {
  26376. name: "Nano",
  26377. height: math.unit(1, "mm")
  26378. },
  26379. {
  26380. name: "Micro",
  26381. height: math.unit(1, "cm")
  26382. },
  26383. {
  26384. name: "Normal",
  26385. height: math.unit(2.1, "meters"),
  26386. default: true
  26387. },
  26388. ]
  26389. ))
  26390. characterMakers.push(() => makeCharacter(
  26391. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26392. {
  26393. front: {
  26394. height: math.unit(7 + 5 / 12, "feet"),
  26395. weight: math.unit(357, "lb"),
  26396. name: "Front",
  26397. image: {
  26398. source: "./media/characters/solex-draconov/front.svg",
  26399. extra: 1993 / 1865,
  26400. bottom: 117 / 2111
  26401. }
  26402. },
  26403. },
  26404. [
  26405. {
  26406. name: "Natural Height",
  26407. height: math.unit(7 + 5 / 12, "feet"),
  26408. default: true
  26409. },
  26410. {
  26411. name: "Macro",
  26412. height: math.unit(350, "feet")
  26413. },
  26414. {
  26415. name: "Macro+",
  26416. height: math.unit(1000, "feet")
  26417. },
  26418. {
  26419. name: "Megamacro",
  26420. height: math.unit(20, "km")
  26421. },
  26422. {
  26423. name: "Megamacro+",
  26424. height: math.unit(1000, "km")
  26425. },
  26426. {
  26427. name: "Gigamacro",
  26428. height: math.unit(2.5, "Gm")
  26429. },
  26430. {
  26431. name: "Teramacro",
  26432. height: math.unit(15, "Tm")
  26433. },
  26434. {
  26435. name: "Galactic",
  26436. height: math.unit(30, "Zm")
  26437. },
  26438. {
  26439. name: "Universal",
  26440. height: math.unit(21000, "Ym")
  26441. },
  26442. {
  26443. name: "Omniversal",
  26444. height: math.unit(9.861e50, "Ym")
  26445. },
  26446. {
  26447. name: "Existential",
  26448. height: math.unit(1e300, "meters")
  26449. },
  26450. ]
  26451. ))
  26452. characterMakers.push(() => makeCharacter(
  26453. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26454. {
  26455. side: {
  26456. height: math.unit(25, "feet"),
  26457. weight: math.unit(90000, "lb"),
  26458. name: "Side",
  26459. image: {
  26460. source: "./media/characters/mandarax/side.svg",
  26461. extra: 614 / 332,
  26462. bottom: 55 / 630
  26463. }
  26464. },
  26465. lounging: {
  26466. height: math.unit(15.4, "feet"),
  26467. weight: math.unit(90000, "lb"),
  26468. name: "Lounging",
  26469. image: {
  26470. source: "./media/characters/mandarax/lounging.svg",
  26471. extra: 817/609,
  26472. bottom: 685/1502
  26473. }
  26474. },
  26475. head: {
  26476. height: math.unit(11.4, "feet"),
  26477. name: "Head",
  26478. image: {
  26479. source: "./media/characters/mandarax/head.svg"
  26480. }
  26481. },
  26482. belly: {
  26483. height: math.unit(33, "feet"),
  26484. name: "Belly",
  26485. preyCapacity: math.unit(500, "people"),
  26486. image: {
  26487. source: "./media/characters/mandarax/belly.svg"
  26488. }
  26489. },
  26490. dick: {
  26491. height: math.unit(8.46, "feet"),
  26492. name: "Dick",
  26493. image: {
  26494. source: "./media/characters/mandarax/dick.svg"
  26495. }
  26496. },
  26497. top: {
  26498. height: math.unit(28, "meters"),
  26499. name: "Top",
  26500. image: {
  26501. source: "./media/characters/mandarax/top.svg"
  26502. }
  26503. },
  26504. },
  26505. [
  26506. {
  26507. name: "Normal",
  26508. height: math.unit(25, "feet"),
  26509. default: true
  26510. },
  26511. ]
  26512. ))
  26513. characterMakers.push(() => makeCharacter(
  26514. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26515. {
  26516. front: {
  26517. height: math.unit(5, "feet"),
  26518. weight: math.unit(90, "lb"),
  26519. name: "Front",
  26520. image: {
  26521. source: "./media/characters/pixil/front.svg",
  26522. extra: 2000 / 1618,
  26523. bottom: 12.3 / 2011
  26524. }
  26525. },
  26526. },
  26527. [
  26528. {
  26529. name: "Normal",
  26530. height: math.unit(5, "feet"),
  26531. default: true
  26532. },
  26533. {
  26534. name: "Megamacro",
  26535. height: math.unit(10, "miles"),
  26536. },
  26537. ]
  26538. ))
  26539. characterMakers.push(() => makeCharacter(
  26540. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26541. {
  26542. front: {
  26543. height: math.unit(7 + 2 / 12, "feet"),
  26544. weight: math.unit(200, "lb"),
  26545. name: "Front",
  26546. image: {
  26547. source: "./media/characters/angel/front.svg",
  26548. extra: 1830 / 1737,
  26549. bottom: 22.6 / 1854,
  26550. }
  26551. },
  26552. },
  26553. [
  26554. {
  26555. name: "Normal",
  26556. height: math.unit(7 + 2 / 12, "feet"),
  26557. default: true
  26558. },
  26559. {
  26560. name: "Macro",
  26561. height: math.unit(1000, "feet")
  26562. },
  26563. {
  26564. name: "Megamacro",
  26565. height: math.unit(2, "miles")
  26566. },
  26567. {
  26568. name: "Gigamacro",
  26569. height: math.unit(20, "earths")
  26570. },
  26571. ]
  26572. ))
  26573. characterMakers.push(() => makeCharacter(
  26574. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26575. {
  26576. front: {
  26577. height: math.unit(5, "feet"),
  26578. weight: math.unit(180, "lb"),
  26579. name: "Front",
  26580. image: {
  26581. source: "./media/characters/mekana/front.svg",
  26582. extra: 1671 / 1605,
  26583. bottom: 3.5 / 1691
  26584. }
  26585. },
  26586. side: {
  26587. height: math.unit(5, "feet"),
  26588. weight: math.unit(180, "lb"),
  26589. name: "Side",
  26590. image: {
  26591. source: "./media/characters/mekana/side.svg",
  26592. extra: 1671 / 1605,
  26593. bottom: 3.5 / 1691
  26594. }
  26595. },
  26596. back: {
  26597. height: math.unit(5, "feet"),
  26598. weight: math.unit(180, "lb"),
  26599. name: "Back",
  26600. image: {
  26601. source: "./media/characters/mekana/back.svg",
  26602. extra: 1671 / 1605,
  26603. bottom: 3.5 / 1691
  26604. }
  26605. },
  26606. },
  26607. [
  26608. {
  26609. name: "Normal",
  26610. height: math.unit(5, "feet"),
  26611. default: true
  26612. },
  26613. ]
  26614. ))
  26615. characterMakers.push(() => makeCharacter(
  26616. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26617. {
  26618. front: {
  26619. height: math.unit(4 + 6 / 12, "feet"),
  26620. weight: math.unit(80, "lb"),
  26621. name: "Front",
  26622. image: {
  26623. source: "./media/characters/pixie/front.svg",
  26624. extra: 1924 / 1825,
  26625. bottom: 22.4 / 1946
  26626. }
  26627. },
  26628. },
  26629. [
  26630. {
  26631. name: "Normal",
  26632. height: math.unit(4 + 6 / 12, "feet"),
  26633. default: true
  26634. },
  26635. {
  26636. name: "Macro",
  26637. height: math.unit(40, "feet")
  26638. },
  26639. ]
  26640. ))
  26641. characterMakers.push(() => makeCharacter(
  26642. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26643. {
  26644. front: {
  26645. height: math.unit(2.1, "meters"),
  26646. weight: math.unit(200, "lb"),
  26647. name: "Front",
  26648. image: {
  26649. source: "./media/characters/the-lascivious/front.svg",
  26650. extra: 1 / 0.893,
  26651. bottom: 3.5 / 573.7
  26652. }
  26653. },
  26654. },
  26655. [
  26656. {
  26657. name: "Human Scale",
  26658. height: math.unit(2.1, "meters")
  26659. },
  26660. {
  26661. name: "Wolxi Scale",
  26662. height: math.unit(46.2, "m"),
  26663. default: true
  26664. },
  26665. {
  26666. name: "Boinker of Buildings",
  26667. height: math.unit(10, "km")
  26668. },
  26669. {
  26670. name: "Shagger of Skyscrapers",
  26671. height: math.unit(40, "km")
  26672. },
  26673. {
  26674. name: "Banger of Boroughs",
  26675. height: math.unit(4000, "km")
  26676. },
  26677. {
  26678. name: "Screwer of States",
  26679. height: math.unit(100000, "km")
  26680. },
  26681. {
  26682. name: "Pounder of Planets",
  26683. height: math.unit(2000000, "km")
  26684. },
  26685. ]
  26686. ))
  26687. characterMakers.push(() => makeCharacter(
  26688. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26689. {
  26690. front: {
  26691. height: math.unit(6, "feet"),
  26692. weight: math.unit(150, "lb"),
  26693. name: "Front",
  26694. image: {
  26695. source: "./media/characters/aj/front.svg",
  26696. extra: 2039 / 1562,
  26697. bottom: 40 / 2079
  26698. }
  26699. },
  26700. },
  26701. [
  26702. {
  26703. name: "Normal",
  26704. height: math.unit(11 + 6 / 12, "feet"),
  26705. default: true
  26706. },
  26707. {
  26708. name: "Megamacro",
  26709. height: math.unit(60, "megameters")
  26710. },
  26711. ]
  26712. ))
  26713. characterMakers.push(() => makeCharacter(
  26714. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26715. {
  26716. side: {
  26717. height: math.unit(31 + 8 / 12, "feet"),
  26718. weight: math.unit(75000, "kg"),
  26719. name: "Side",
  26720. image: {
  26721. source: "./media/characters/koros/side.svg",
  26722. extra: 1442 / 1297,
  26723. bottom: 122.7 / 1562
  26724. }
  26725. },
  26726. dicksKingsCrown: {
  26727. height: math.unit(6, "feet"),
  26728. name: "Dicks (King's Crown)",
  26729. image: {
  26730. source: "./media/characters/koros/dicks-kings-crown.svg"
  26731. }
  26732. },
  26733. dicksTailSet: {
  26734. height: math.unit(3, "feet"),
  26735. name: "Dicks (Tail Set)",
  26736. image: {
  26737. source: "./media/characters/koros/dicks-tail-set.svg"
  26738. }
  26739. },
  26740. dickCumming: {
  26741. height: math.unit(7.98, "feet"),
  26742. name: "Dick (Cumming)",
  26743. image: {
  26744. source: "./media/characters/koros/dick-cumming.svg"
  26745. }
  26746. },
  26747. dicksBack: {
  26748. height: math.unit(5.9, "feet"),
  26749. name: "Dicks (Back)",
  26750. image: {
  26751. source: "./media/characters/koros/dicks-back.svg"
  26752. }
  26753. },
  26754. dicksFront: {
  26755. height: math.unit(3.72, "feet"),
  26756. name: "Dicks (Front)",
  26757. image: {
  26758. source: "./media/characters/koros/dicks-front.svg"
  26759. }
  26760. },
  26761. dicksPeeking: {
  26762. height: math.unit(3.0, "feet"),
  26763. name: "Dicks (Peeking)",
  26764. image: {
  26765. source: "./media/characters/koros/dicks-peeking.svg"
  26766. }
  26767. },
  26768. eye: {
  26769. height: math.unit(1.7, "feet"),
  26770. name: "Eye",
  26771. image: {
  26772. source: "./media/characters/koros/eye.svg"
  26773. }
  26774. },
  26775. headFront: {
  26776. height: math.unit(11.69, "feet"),
  26777. name: "Head (Front)",
  26778. image: {
  26779. source: "./media/characters/koros/head-front.svg"
  26780. }
  26781. },
  26782. headSide: {
  26783. height: math.unit(14, "feet"),
  26784. name: "Head (Side)",
  26785. image: {
  26786. source: "./media/characters/koros/head-side.svg"
  26787. }
  26788. },
  26789. leg: {
  26790. height: math.unit(17, "feet"),
  26791. name: "Leg",
  26792. image: {
  26793. source: "./media/characters/koros/leg.svg"
  26794. }
  26795. },
  26796. mawSide: {
  26797. height: math.unit(12.8, "feet"),
  26798. name: "Maw (Side)",
  26799. image: {
  26800. source: "./media/characters/koros/maw-side.svg"
  26801. }
  26802. },
  26803. mawSpitting: {
  26804. height: math.unit(17, "feet"),
  26805. name: "Maw (Spitting)",
  26806. image: {
  26807. source: "./media/characters/koros/maw-spitting.svg"
  26808. }
  26809. },
  26810. slit: {
  26811. height: math.unit(2.8, "feet"),
  26812. name: "Slit",
  26813. image: {
  26814. source: "./media/characters/koros/slit.svg"
  26815. }
  26816. },
  26817. stomach: {
  26818. height: math.unit(6.8, "feet"),
  26819. preyCapacity: math.unit(20, "people"),
  26820. name: "Stomach",
  26821. image: {
  26822. source: "./media/characters/koros/stomach.svg"
  26823. }
  26824. },
  26825. wingspanBottom: {
  26826. height: math.unit(114, "feet"),
  26827. name: "Wingspan (Bottom)",
  26828. image: {
  26829. source: "./media/characters/koros/wingspan-bottom.svg"
  26830. }
  26831. },
  26832. wingspanTop: {
  26833. height: math.unit(104, "feet"),
  26834. name: "Wingspan (Top)",
  26835. image: {
  26836. source: "./media/characters/koros/wingspan-top.svg"
  26837. }
  26838. },
  26839. },
  26840. [
  26841. {
  26842. name: "Normal",
  26843. height: math.unit(31 + 8 / 12, "feet"),
  26844. default: true
  26845. },
  26846. ]
  26847. ))
  26848. characterMakers.push(() => makeCharacter(
  26849. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26850. {
  26851. front: {
  26852. height: math.unit(18 + 5 / 12, "feet"),
  26853. weight: math.unit(3750, "kg"),
  26854. name: "Front",
  26855. image: {
  26856. source: "./media/characters/vexx/front.svg",
  26857. extra: 426 / 396,
  26858. bottom: 31.5 / 458
  26859. }
  26860. },
  26861. maw: {
  26862. height: math.unit(6, "feet"),
  26863. name: "Maw",
  26864. image: {
  26865. source: "./media/characters/vexx/maw.svg"
  26866. }
  26867. },
  26868. },
  26869. [
  26870. {
  26871. name: "Normal",
  26872. height: math.unit(18 + 5 / 12, "feet"),
  26873. default: true
  26874. },
  26875. ]
  26876. ))
  26877. characterMakers.push(() => makeCharacter(
  26878. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26879. {
  26880. front: {
  26881. height: math.unit(17 + 6 / 12, "feet"),
  26882. weight: math.unit(150, "lb"),
  26883. name: "Front",
  26884. image: {
  26885. source: "./media/characters/baadra/front.svg",
  26886. extra: 1694/1553,
  26887. bottom: 179/1873
  26888. }
  26889. },
  26890. frontAlt: {
  26891. height: math.unit(17 + 6 / 12, "feet"),
  26892. weight: math.unit(150, "lb"),
  26893. name: "Front (Alt)",
  26894. image: {
  26895. source: "./media/characters/baadra/front-alt.svg",
  26896. extra: 3137 / 2890,
  26897. bottom: 168.4 / 3305
  26898. }
  26899. },
  26900. back: {
  26901. height: math.unit(17 + 6 / 12, "feet"),
  26902. weight: math.unit(150, "lb"),
  26903. name: "Back",
  26904. image: {
  26905. source: "./media/characters/baadra/back.svg",
  26906. extra: 3142 / 2890,
  26907. bottom: 220 / 3371
  26908. }
  26909. },
  26910. head: {
  26911. height: math.unit(5.45, "feet"),
  26912. name: "Head",
  26913. image: {
  26914. source: "./media/characters/baadra/head.svg"
  26915. }
  26916. },
  26917. headAngry: {
  26918. height: math.unit(4.95, "feet"),
  26919. name: "Head (Angry)",
  26920. image: {
  26921. source: "./media/characters/baadra/head-angry.svg"
  26922. }
  26923. },
  26924. headOpen: {
  26925. height: math.unit(6, "feet"),
  26926. name: "Head (Open)",
  26927. image: {
  26928. source: "./media/characters/baadra/head-open.svg"
  26929. }
  26930. },
  26931. },
  26932. [
  26933. {
  26934. name: "Normal",
  26935. height: math.unit(17 + 6 / 12, "feet"),
  26936. default: true
  26937. },
  26938. ]
  26939. ))
  26940. characterMakers.push(() => makeCharacter(
  26941. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26942. {
  26943. front: {
  26944. height: math.unit(7 + 3 / 12, "feet"),
  26945. weight: math.unit(180, "lb"),
  26946. name: "Front",
  26947. image: {
  26948. source: "./media/characters/juri/front.svg",
  26949. extra: 1401 / 1237,
  26950. bottom: 18.5 / 1418
  26951. }
  26952. },
  26953. side: {
  26954. height: math.unit(7 + 3 / 12, "feet"),
  26955. weight: math.unit(180, "lb"),
  26956. name: "Side",
  26957. image: {
  26958. source: "./media/characters/juri/side.svg",
  26959. extra: 1424 / 1242,
  26960. bottom: 18.5 / 1447
  26961. }
  26962. },
  26963. sitting: {
  26964. height: math.unit(6, "feet"),
  26965. weight: math.unit(180, "lb"),
  26966. name: "Sitting",
  26967. image: {
  26968. source: "./media/characters/juri/sitting.svg",
  26969. extra: 1270 / 1143,
  26970. bottom: 100 / 1343
  26971. }
  26972. },
  26973. back: {
  26974. height: math.unit(7 + 3 / 12, "feet"),
  26975. weight: math.unit(180, "lb"),
  26976. name: "Back",
  26977. image: {
  26978. source: "./media/characters/juri/back.svg",
  26979. extra: 1377 / 1240,
  26980. bottom: 23.7 / 1405
  26981. }
  26982. },
  26983. maw: {
  26984. height: math.unit(2.8, "feet"),
  26985. name: "Maw",
  26986. image: {
  26987. source: "./media/characters/juri/maw.svg"
  26988. }
  26989. },
  26990. stomach: {
  26991. height: math.unit(0.89, "feet"),
  26992. preyCapacity: math.unit(4, "liters"),
  26993. name: "Stomach",
  26994. image: {
  26995. source: "./media/characters/juri/stomach.svg"
  26996. }
  26997. },
  26998. },
  26999. [
  27000. {
  27001. name: "Normal",
  27002. height: math.unit(7 + 3 / 12, "feet"),
  27003. default: true
  27004. },
  27005. ]
  27006. ))
  27007. characterMakers.push(() => makeCharacter(
  27008. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27009. {
  27010. fox: {
  27011. height: math.unit(5 + 6 / 12, "feet"),
  27012. weight: math.unit(140, "lb"),
  27013. name: "Fox",
  27014. image: {
  27015. source: "./media/characters/maxene-sita/fox.svg",
  27016. extra: 146 / 138,
  27017. bottom: 2.1 / 148.19
  27018. }
  27019. },
  27020. foxLaying: {
  27021. height: math.unit(1.70, "feet"),
  27022. weight: math.unit(140, "lb"),
  27023. name: "Fox (Laying)",
  27024. image: {
  27025. source: "./media/characters/maxene-sita/fox-laying.svg",
  27026. extra: 910 / 572,
  27027. bottom: 71 / 981
  27028. }
  27029. },
  27030. kitsune: {
  27031. height: math.unit(10, "feet"),
  27032. weight: math.unit(800, "lb"),
  27033. name: "Kitsune",
  27034. image: {
  27035. source: "./media/characters/maxene-sita/kitsune.svg",
  27036. extra: 185 / 176,
  27037. bottom: 4.7 / 189.9
  27038. }
  27039. },
  27040. hellhound: {
  27041. height: math.unit(10, "feet"),
  27042. weight: math.unit(700, "lb"),
  27043. name: "Hellhound",
  27044. image: {
  27045. source: "./media/characters/maxene-sita/hellhound.svg",
  27046. extra: 1600 / 1545,
  27047. bottom: 81 / 1681
  27048. }
  27049. },
  27050. },
  27051. [
  27052. {
  27053. name: "Normal",
  27054. height: math.unit(5 + 6 / 12, "feet"),
  27055. default: true
  27056. },
  27057. ]
  27058. ))
  27059. characterMakers.push(() => makeCharacter(
  27060. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27061. {
  27062. front: {
  27063. height: math.unit(3 + 4 / 12, "feet"),
  27064. weight: math.unit(70, "lb"),
  27065. name: "Front",
  27066. image: {
  27067. source: "./media/characters/maia/front.svg",
  27068. extra: 227 / 219.5,
  27069. bottom: 40 / 267
  27070. }
  27071. },
  27072. back: {
  27073. height: math.unit(3 + 4 / 12, "feet"),
  27074. weight: math.unit(70, "lb"),
  27075. name: "Back",
  27076. image: {
  27077. source: "./media/characters/maia/back.svg",
  27078. extra: 237 / 225
  27079. }
  27080. },
  27081. },
  27082. [
  27083. {
  27084. name: "Normal",
  27085. height: math.unit(3 + 4 / 12, "feet"),
  27086. default: true
  27087. },
  27088. ]
  27089. ))
  27090. characterMakers.push(() => makeCharacter(
  27091. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27092. {
  27093. front: {
  27094. height: math.unit(5 + 10 / 12, "feet"),
  27095. weight: math.unit(197, "lb"),
  27096. name: "Front",
  27097. image: {
  27098. source: "./media/characters/jabaro/front.svg",
  27099. extra: 225 / 216,
  27100. bottom: 5.06 / 230
  27101. }
  27102. },
  27103. back: {
  27104. height: math.unit(5 + 10 / 12, "feet"),
  27105. weight: math.unit(197, "lb"),
  27106. name: "Back",
  27107. image: {
  27108. source: "./media/characters/jabaro/back.svg",
  27109. extra: 225 / 219,
  27110. bottom: 1.9 / 227
  27111. }
  27112. },
  27113. },
  27114. [
  27115. {
  27116. name: "Normal",
  27117. height: math.unit(5 + 10 / 12, "feet"),
  27118. default: true
  27119. },
  27120. ]
  27121. ))
  27122. characterMakers.push(() => makeCharacter(
  27123. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27124. {
  27125. front: {
  27126. height: math.unit(5 + 8 / 12, "feet"),
  27127. weight: math.unit(139, "lb"),
  27128. name: "Front",
  27129. image: {
  27130. source: "./media/characters/risa/front.svg",
  27131. extra: 270 / 260,
  27132. bottom: 11.2 / 282
  27133. }
  27134. },
  27135. back: {
  27136. height: math.unit(5 + 8 / 12, "feet"),
  27137. weight: math.unit(139, "lb"),
  27138. name: "Back",
  27139. image: {
  27140. source: "./media/characters/risa/back.svg",
  27141. extra: 264 / 255,
  27142. bottom: 4 / 268
  27143. }
  27144. },
  27145. },
  27146. [
  27147. {
  27148. name: "Normal",
  27149. height: math.unit(5 + 8 / 12, "feet"),
  27150. default: true
  27151. },
  27152. ]
  27153. ))
  27154. characterMakers.push(() => makeCharacter(
  27155. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27156. {
  27157. front: {
  27158. height: math.unit(2 + 11 / 12, "feet"),
  27159. weight: math.unit(30, "lb"),
  27160. name: "Front",
  27161. image: {
  27162. source: "./media/characters/weatley/front.svg",
  27163. bottom: 10.7 / 414,
  27164. extra: 403.5 / 362
  27165. }
  27166. },
  27167. back: {
  27168. height: math.unit(2 + 11 / 12, "feet"),
  27169. weight: math.unit(30, "lb"),
  27170. name: "Back",
  27171. image: {
  27172. source: "./media/characters/weatley/back.svg",
  27173. bottom: 10.7 / 414,
  27174. extra: 403.5 / 362
  27175. }
  27176. },
  27177. },
  27178. [
  27179. {
  27180. name: "Normal",
  27181. height: math.unit(2 + 11 / 12, "feet"),
  27182. default: true
  27183. },
  27184. ]
  27185. ))
  27186. characterMakers.push(() => makeCharacter(
  27187. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27188. {
  27189. front: {
  27190. height: math.unit(5 + 2 / 12, "feet"),
  27191. weight: math.unit(50, "kg"),
  27192. name: "Front",
  27193. image: {
  27194. source: "./media/characters/mercury-crescent/front.svg",
  27195. extra: 1088 / 1033,
  27196. bottom: 18.9 / 1109
  27197. }
  27198. },
  27199. },
  27200. [
  27201. {
  27202. name: "Normal",
  27203. height: math.unit(5 + 2 / 12, "feet"),
  27204. default: true
  27205. },
  27206. ]
  27207. ))
  27208. characterMakers.push(() => makeCharacter(
  27209. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27210. {
  27211. front: {
  27212. height: math.unit(2, "feet"),
  27213. weight: math.unit(15, "kg"),
  27214. name: "Front",
  27215. image: {
  27216. source: "./media/characters/diamond-jones/front.svg",
  27217. extra: 727/723,
  27218. bottom: 46/773
  27219. }
  27220. },
  27221. },
  27222. [
  27223. {
  27224. name: "Normal",
  27225. height: math.unit(2, "feet"),
  27226. default: true
  27227. },
  27228. ]
  27229. ))
  27230. characterMakers.push(() => makeCharacter(
  27231. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27232. {
  27233. front: {
  27234. height: math.unit(3, "feet"),
  27235. weight: math.unit(30, "kg"),
  27236. name: "Front",
  27237. image: {
  27238. source: "./media/characters/sweet-bit/front.svg",
  27239. extra: 675 / 567,
  27240. bottom: 27.7 / 703
  27241. }
  27242. },
  27243. },
  27244. [
  27245. {
  27246. name: "Normal",
  27247. height: math.unit(3, "feet"),
  27248. default: true
  27249. },
  27250. ]
  27251. ))
  27252. characterMakers.push(() => makeCharacter(
  27253. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27254. {
  27255. side: {
  27256. height: math.unit(9.178, "feet"),
  27257. weight: math.unit(500, "lb"),
  27258. name: "Side",
  27259. image: {
  27260. source: "./media/characters/umbrazen/side.svg",
  27261. extra: 1730 / 1473,
  27262. bottom: 34.6 / 1765
  27263. }
  27264. },
  27265. },
  27266. [
  27267. {
  27268. name: "Normal",
  27269. height: math.unit(9.178, "feet"),
  27270. default: true
  27271. },
  27272. ]
  27273. ))
  27274. characterMakers.push(() => makeCharacter(
  27275. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27276. {
  27277. front: {
  27278. height: math.unit(10, "feet"),
  27279. weight: math.unit(750, "lb"),
  27280. name: "Front",
  27281. image: {
  27282. source: "./media/characters/arlist/front.svg",
  27283. extra: 961 / 778,
  27284. bottom: 6.2 / 986
  27285. }
  27286. },
  27287. },
  27288. [
  27289. {
  27290. name: "Normal",
  27291. height: math.unit(10, "feet"),
  27292. default: true
  27293. },
  27294. ]
  27295. ))
  27296. characterMakers.push(() => makeCharacter(
  27297. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27298. {
  27299. front: {
  27300. height: math.unit(5 + 1 / 12, "feet"),
  27301. weight: math.unit(110, "lb"),
  27302. name: "Front",
  27303. image: {
  27304. source: "./media/characters/aradel/front.svg",
  27305. extra: 324 / 303,
  27306. bottom: 3.6 / 329.4
  27307. }
  27308. },
  27309. },
  27310. [
  27311. {
  27312. name: "Normal",
  27313. height: math.unit(5 + 1 / 12, "feet"),
  27314. default: true
  27315. },
  27316. ]
  27317. ))
  27318. characterMakers.push(() => makeCharacter(
  27319. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27320. {
  27321. dressed: {
  27322. height: math.unit(3 + 8 / 12, "feet"),
  27323. weight: math.unit(50, "lb"),
  27324. name: "Dressed",
  27325. image: {
  27326. source: "./media/characters/serryn/dressed.svg",
  27327. extra: 1792 / 1656,
  27328. bottom: 43.5 / 1840
  27329. }
  27330. },
  27331. nude: {
  27332. height: math.unit(3 + 8 / 12, "feet"),
  27333. weight: math.unit(50, "lb"),
  27334. name: "Nude",
  27335. image: {
  27336. source: "./media/characters/serryn/nude.svg",
  27337. extra: 1792 / 1656,
  27338. bottom: 43.5 / 1840
  27339. }
  27340. },
  27341. },
  27342. [
  27343. {
  27344. name: "Normal",
  27345. height: math.unit(3 + 8 / 12, "feet"),
  27346. default: true
  27347. },
  27348. ]
  27349. ))
  27350. characterMakers.push(() => makeCharacter(
  27351. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27352. {
  27353. front: {
  27354. height: math.unit(7 + 10 / 12, "feet"),
  27355. weight: math.unit(255, "lb"),
  27356. name: "Front",
  27357. image: {
  27358. source: "./media/characters/xavier-thyme/front.svg",
  27359. extra: 3733 / 3642,
  27360. bottom: 131 / 3869
  27361. }
  27362. },
  27363. frontRaven: {
  27364. height: math.unit(7 + 10 / 12, "feet"),
  27365. weight: math.unit(255, "lb"),
  27366. name: "Front (Raven)",
  27367. image: {
  27368. source: "./media/characters/xavier-thyme/front-raven.svg",
  27369. extra: 4385 / 3642,
  27370. bottom: 131 / 4517
  27371. }
  27372. },
  27373. },
  27374. [
  27375. {
  27376. name: "Normal",
  27377. height: math.unit(7 + 10 / 12, "feet"),
  27378. default: true
  27379. },
  27380. ]
  27381. ))
  27382. characterMakers.push(() => makeCharacter(
  27383. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27384. {
  27385. front: {
  27386. height: math.unit(1.6, "m"),
  27387. weight: math.unit(50, "kg"),
  27388. name: "Front",
  27389. image: {
  27390. source: "./media/characters/kiki/front.svg",
  27391. extra: 4682 / 3610,
  27392. bottom: 115 / 4777
  27393. }
  27394. },
  27395. },
  27396. [
  27397. {
  27398. name: "Normal",
  27399. height: math.unit(1.6, "meters"),
  27400. default: true
  27401. },
  27402. ]
  27403. ))
  27404. characterMakers.push(() => makeCharacter(
  27405. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27406. {
  27407. front: {
  27408. height: math.unit(50, "m"),
  27409. weight: math.unit(500, "tonnes"),
  27410. name: "Front",
  27411. image: {
  27412. source: "./media/characters/ryoko/front.svg",
  27413. extra: 4632 / 3926,
  27414. bottom: 193 / 4823
  27415. }
  27416. },
  27417. },
  27418. [
  27419. {
  27420. name: "Normal",
  27421. height: math.unit(50, "meters"),
  27422. default: true
  27423. },
  27424. ]
  27425. ))
  27426. characterMakers.push(() => makeCharacter(
  27427. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27428. {
  27429. front: {
  27430. height: math.unit(30, "m"),
  27431. weight: math.unit(22, "tonnes"),
  27432. name: "Front",
  27433. image: {
  27434. source: "./media/characters/elio/front.svg",
  27435. extra: 4582 / 3720,
  27436. bottom: 236 / 4828
  27437. }
  27438. },
  27439. },
  27440. [
  27441. {
  27442. name: "Normal",
  27443. height: math.unit(30, "meters"),
  27444. default: true
  27445. },
  27446. ]
  27447. ))
  27448. characterMakers.push(() => makeCharacter(
  27449. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27450. {
  27451. front: {
  27452. height: math.unit(6 + 3 / 12, "feet"),
  27453. weight: math.unit(120, "lb"),
  27454. name: "Front",
  27455. image: {
  27456. source: "./media/characters/azura/front.svg",
  27457. extra: 1149 / 1135,
  27458. bottom: 45 / 1194
  27459. }
  27460. },
  27461. frontClothed: {
  27462. height: math.unit(6 + 3 / 12, "feet"),
  27463. weight: math.unit(120, "lb"),
  27464. name: "Front (Clothed)",
  27465. image: {
  27466. source: "./media/characters/azura/front-clothed.svg",
  27467. extra: 1149 / 1135,
  27468. bottom: 45 / 1194
  27469. }
  27470. },
  27471. },
  27472. [
  27473. {
  27474. name: "Normal",
  27475. height: math.unit(6 + 3 / 12, "feet"),
  27476. default: true
  27477. },
  27478. {
  27479. name: "Macro",
  27480. height: math.unit(20 + 6 / 12, "feet")
  27481. },
  27482. {
  27483. name: "Megamacro",
  27484. height: math.unit(12, "miles")
  27485. },
  27486. {
  27487. name: "Gigamacro",
  27488. height: math.unit(10000, "miles")
  27489. },
  27490. {
  27491. name: "Teramacro",
  27492. height: math.unit(900000, "miles")
  27493. },
  27494. ]
  27495. ))
  27496. characterMakers.push(() => makeCharacter(
  27497. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27498. {
  27499. front: {
  27500. height: math.unit(12, "feet"),
  27501. weight: math.unit(1, "ton"),
  27502. capacity: math.unit(660000, "gallons"),
  27503. name: "Front",
  27504. image: {
  27505. source: "./media/characters/zeus/front.svg",
  27506. extra: 5005 / 4717,
  27507. bottom: 363 / 5388
  27508. }
  27509. },
  27510. },
  27511. [
  27512. {
  27513. name: "Normal",
  27514. height: math.unit(12, "feet")
  27515. },
  27516. {
  27517. name: "Preferred Size",
  27518. height: math.unit(0.5, "miles"),
  27519. default: true
  27520. },
  27521. {
  27522. name: "Giga Horse",
  27523. height: math.unit(300, "miles")
  27524. },
  27525. {
  27526. name: "Riding Planets",
  27527. height: math.unit(30, "megameters")
  27528. },
  27529. {
  27530. name: "Cosmic Giant",
  27531. height: math.unit(3, "zettameters")
  27532. },
  27533. {
  27534. name: "Breeding God",
  27535. height: math.unit(9.92e22, "yottameters")
  27536. },
  27537. ]
  27538. ))
  27539. characterMakers.push(() => makeCharacter(
  27540. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27541. {
  27542. side: {
  27543. height: math.unit(9, "feet"),
  27544. weight: math.unit(1500, "kg"),
  27545. name: "Side",
  27546. image: {
  27547. source: "./media/characters/fang/side.svg",
  27548. extra: 924 / 866,
  27549. bottom: 47.5 / 972.3
  27550. }
  27551. },
  27552. },
  27553. [
  27554. {
  27555. name: "Normal",
  27556. height: math.unit(9, "feet"),
  27557. default: true
  27558. },
  27559. {
  27560. name: "Macro",
  27561. height: math.unit(75 + 6 / 12, "feet")
  27562. },
  27563. {
  27564. name: "Teramacro",
  27565. height: math.unit(50000, "miles")
  27566. },
  27567. ]
  27568. ))
  27569. characterMakers.push(() => makeCharacter(
  27570. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27571. {
  27572. front: {
  27573. height: math.unit(10, "feet"),
  27574. weight: math.unit(2, "tons"),
  27575. name: "Front",
  27576. image: {
  27577. source: "./media/characters/rekhit/front.svg",
  27578. extra: 2796 / 2590,
  27579. bottom: 225 / 3022
  27580. }
  27581. },
  27582. },
  27583. [
  27584. {
  27585. name: "Normal",
  27586. height: math.unit(10, "feet"),
  27587. default: true
  27588. },
  27589. {
  27590. name: "Macro",
  27591. height: math.unit(500, "feet")
  27592. },
  27593. ]
  27594. ))
  27595. characterMakers.push(() => makeCharacter(
  27596. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27597. {
  27598. front: {
  27599. height: math.unit(7 + 6.451 / 12, "feet"),
  27600. weight: math.unit(310, "lb"),
  27601. name: "Front",
  27602. image: {
  27603. source: "./media/characters/dahlia-verrick/front.svg",
  27604. extra: 1488 / 1365,
  27605. bottom: 6.2 / 1495
  27606. }
  27607. },
  27608. back: {
  27609. height: math.unit(7 + 6.451 / 12, "feet"),
  27610. weight: math.unit(310, "lb"),
  27611. name: "Back",
  27612. image: {
  27613. source: "./media/characters/dahlia-verrick/back.svg",
  27614. extra: 1472 / 1351,
  27615. bottom: 5.28 / 1477
  27616. }
  27617. },
  27618. frontBusiness: {
  27619. height: math.unit(7 + 6.451 / 12, "feet"),
  27620. weight: math.unit(200, "lb"),
  27621. name: "Front (Business)",
  27622. image: {
  27623. source: "./media/characters/dahlia-verrick/front-business.svg",
  27624. extra: 1478 / 1381,
  27625. bottom: 5.5 / 1484
  27626. }
  27627. },
  27628. frontCasual: {
  27629. height: math.unit(7 + 6.451 / 12, "feet"),
  27630. weight: math.unit(200, "lb"),
  27631. name: "Front (Casual)",
  27632. image: {
  27633. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27634. extra: 1478 / 1381,
  27635. bottom: 5.5 / 1484
  27636. }
  27637. },
  27638. },
  27639. [
  27640. {
  27641. name: "Travel-Sized",
  27642. height: math.unit(7.45, "inches")
  27643. },
  27644. {
  27645. name: "Normal",
  27646. height: math.unit(7 + 6.451 / 12, "feet"),
  27647. default: true
  27648. },
  27649. {
  27650. name: "Hitting the Town",
  27651. height: math.unit(37 + 8 / 12, "feet")
  27652. },
  27653. {
  27654. name: "Stomp in the Suburbs",
  27655. height: math.unit(964 + 9.728 / 12, "feet")
  27656. },
  27657. {
  27658. name: "Sit on the City",
  27659. height: math.unit(61747 + 10.592 / 12, "feet")
  27660. },
  27661. {
  27662. name: "Glomp the Globe",
  27663. height: math.unit(252919327 + 4.832 / 12, "feet")
  27664. },
  27665. ]
  27666. ))
  27667. characterMakers.push(() => makeCharacter(
  27668. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27669. {
  27670. front: {
  27671. height: math.unit(6 + 4 / 12, "feet"),
  27672. weight: math.unit(320, "lb"),
  27673. name: "Front",
  27674. image: {
  27675. source: "./media/characters/balina-mahigan/front.svg",
  27676. extra: 447 / 428,
  27677. bottom: 18 / 466
  27678. }
  27679. },
  27680. back: {
  27681. height: math.unit(6 + 4 / 12, "feet"),
  27682. weight: math.unit(320, "lb"),
  27683. name: "Back",
  27684. image: {
  27685. source: "./media/characters/balina-mahigan/back.svg",
  27686. extra: 445 / 428,
  27687. bottom: 4.07 / 448
  27688. }
  27689. },
  27690. arm: {
  27691. height: math.unit(1.88, "feet"),
  27692. name: "Arm",
  27693. image: {
  27694. source: "./media/characters/balina-mahigan/arm.svg"
  27695. }
  27696. },
  27697. backPort: {
  27698. height: math.unit(0.685, "feet"),
  27699. name: "Back Port",
  27700. image: {
  27701. source: "./media/characters/balina-mahigan/back-port.svg"
  27702. }
  27703. },
  27704. hoofpaw: {
  27705. height: math.unit(1.41, "feet"),
  27706. name: "Hoofpaw",
  27707. image: {
  27708. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27709. }
  27710. },
  27711. leftHandBack: {
  27712. height: math.unit(0.938, "feet"),
  27713. name: "Left Hand (Back)",
  27714. image: {
  27715. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27716. }
  27717. },
  27718. leftHandFront: {
  27719. height: math.unit(0.938, "feet"),
  27720. name: "Left Hand (Front)",
  27721. image: {
  27722. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27723. }
  27724. },
  27725. rightHandBack: {
  27726. height: math.unit(0.95, "feet"),
  27727. name: "Right Hand (Back)",
  27728. image: {
  27729. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27730. }
  27731. },
  27732. rightHandFront: {
  27733. height: math.unit(0.95, "feet"),
  27734. name: "Right Hand (Front)",
  27735. image: {
  27736. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27737. }
  27738. },
  27739. },
  27740. [
  27741. {
  27742. name: "Normal",
  27743. height: math.unit(6 + 4 / 12, "feet"),
  27744. default: true
  27745. },
  27746. ]
  27747. ))
  27748. characterMakers.push(() => makeCharacter(
  27749. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27750. {
  27751. front: {
  27752. height: math.unit(6, "feet"),
  27753. weight: math.unit(320, "lb"),
  27754. name: "Front",
  27755. image: {
  27756. source: "./media/characters/balina-mejeri/front.svg",
  27757. extra: 517 / 488,
  27758. bottom: 44.2 / 561
  27759. }
  27760. },
  27761. },
  27762. [
  27763. {
  27764. name: "Normal",
  27765. height: math.unit(6 + 4 / 12, "feet")
  27766. },
  27767. {
  27768. name: "Business",
  27769. height: math.unit(155, "feet"),
  27770. default: true
  27771. },
  27772. ]
  27773. ))
  27774. characterMakers.push(() => makeCharacter(
  27775. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27776. {
  27777. kneeling: {
  27778. height: math.unit(6 + 4 / 12, "feet"),
  27779. weight: math.unit(300 * 20, "lb"),
  27780. name: "Kneeling",
  27781. image: {
  27782. source: "./media/characters/balbarian/kneeling.svg",
  27783. extra: 922 / 862,
  27784. bottom: 42.4 / 965
  27785. }
  27786. },
  27787. },
  27788. [
  27789. {
  27790. name: "Normal",
  27791. height: math.unit(6 + 4 / 12, "feet")
  27792. },
  27793. {
  27794. name: "Treasured",
  27795. height: math.unit(18 + 9 / 12, "feet"),
  27796. default: true
  27797. },
  27798. {
  27799. name: "Macro",
  27800. height: math.unit(900, "feet")
  27801. },
  27802. ]
  27803. ))
  27804. characterMakers.push(() => makeCharacter(
  27805. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27806. {
  27807. front: {
  27808. height: math.unit(6 + 4 / 12, "feet"),
  27809. weight: math.unit(325, "lb"),
  27810. name: "Front",
  27811. image: {
  27812. source: "./media/characters/balina-amarini/front.svg",
  27813. extra: 415 / 403,
  27814. bottom: 19 / 433.4
  27815. }
  27816. },
  27817. back: {
  27818. height: math.unit(6 + 4 / 12, "feet"),
  27819. weight: math.unit(325, "lb"),
  27820. name: "Back",
  27821. image: {
  27822. source: "./media/characters/balina-amarini/back.svg",
  27823. extra: 415 / 403,
  27824. bottom: 13.5 / 432
  27825. }
  27826. },
  27827. overdrive: {
  27828. height: math.unit(6 + 4 / 12, "feet"),
  27829. weight: math.unit(400, "lb"),
  27830. name: "Overdrive",
  27831. image: {
  27832. source: "./media/characters/balina-amarini/overdrive.svg",
  27833. extra: 269 / 259,
  27834. bottom: 12 / 282
  27835. }
  27836. },
  27837. },
  27838. [
  27839. {
  27840. name: "Boom",
  27841. height: math.unit(9 + 10 / 12, "feet"),
  27842. default: true
  27843. },
  27844. {
  27845. name: "Macro",
  27846. height: math.unit(280, "feet")
  27847. },
  27848. ]
  27849. ))
  27850. characterMakers.push(() => makeCharacter(
  27851. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27852. {
  27853. goddess: {
  27854. height: math.unit(600, "feet"),
  27855. weight: math.unit(2000000, "tons"),
  27856. name: "Goddess",
  27857. image: {
  27858. source: "./media/characters/lady-kubwa/goddess.svg",
  27859. extra: 1240.5 / 1223,
  27860. bottom: 22 / 1263
  27861. }
  27862. },
  27863. goddesser: {
  27864. height: math.unit(900, "feet"),
  27865. weight: math.unit(20000000, "lb"),
  27866. name: "Goddess-er",
  27867. image: {
  27868. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27869. extra: 899 / 888,
  27870. bottom: 12.6 / 912
  27871. }
  27872. },
  27873. },
  27874. [
  27875. {
  27876. name: "Macro",
  27877. height: math.unit(600, "feet"),
  27878. default: true
  27879. },
  27880. {
  27881. name: "Megamacro",
  27882. height: math.unit(250, "miles")
  27883. },
  27884. ]
  27885. ))
  27886. characterMakers.push(() => makeCharacter(
  27887. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27888. {
  27889. front: {
  27890. height: math.unit(7 + 7 / 12, "feet"),
  27891. weight: math.unit(250, "lb"),
  27892. name: "Front",
  27893. image: {
  27894. source: "./media/characters/tala-grovehorn/front.svg",
  27895. extra: 2636 / 2525,
  27896. bottom: 147 / 2781
  27897. }
  27898. },
  27899. back: {
  27900. height: math.unit(7 + 7 / 12, "feet"),
  27901. weight: math.unit(250, "lb"),
  27902. name: "Back",
  27903. image: {
  27904. source: "./media/characters/tala-grovehorn/back.svg",
  27905. extra: 2635 / 2539,
  27906. bottom: 100 / 2732.8
  27907. }
  27908. },
  27909. mouth: {
  27910. height: math.unit(1.15, "feet"),
  27911. name: "Mouth",
  27912. image: {
  27913. source: "./media/characters/tala-grovehorn/mouth.svg"
  27914. }
  27915. },
  27916. dick: {
  27917. height: math.unit(2.36, "feet"),
  27918. name: "Dick",
  27919. image: {
  27920. source: "./media/characters/tala-grovehorn/dick.svg"
  27921. }
  27922. },
  27923. slit: {
  27924. height: math.unit(0.61, "feet"),
  27925. name: "Slit",
  27926. image: {
  27927. source: "./media/characters/tala-grovehorn/slit.svg"
  27928. }
  27929. },
  27930. },
  27931. [
  27932. ]
  27933. ))
  27934. characterMakers.push(() => makeCharacter(
  27935. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27936. {
  27937. front: {
  27938. height: math.unit(7 + 7 / 12, "feet"),
  27939. weight: math.unit(225, "lb"),
  27940. name: "Front",
  27941. image: {
  27942. source: "./media/characters/epona/front.svg",
  27943. extra: 2445 / 2290,
  27944. bottom: 251 / 2696
  27945. }
  27946. },
  27947. back: {
  27948. height: math.unit(7 + 7 / 12, "feet"),
  27949. weight: math.unit(225, "lb"),
  27950. name: "Back",
  27951. image: {
  27952. source: "./media/characters/epona/back.svg",
  27953. extra: 2546 / 2408,
  27954. bottom: 44 / 2589
  27955. }
  27956. },
  27957. genitals: {
  27958. height: math.unit(1.5, "feet"),
  27959. name: "Genitals",
  27960. image: {
  27961. source: "./media/characters/epona/genitals.svg"
  27962. }
  27963. },
  27964. },
  27965. [
  27966. {
  27967. name: "Normal",
  27968. height: math.unit(7 + 7 / 12, "feet"),
  27969. default: true
  27970. },
  27971. ]
  27972. ))
  27973. characterMakers.push(() => makeCharacter(
  27974. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27975. {
  27976. front: {
  27977. height: math.unit(7, "feet"),
  27978. weight: math.unit(518, "lb"),
  27979. name: "Front",
  27980. image: {
  27981. source: "./media/characters/avia-bloodbourn/front.svg",
  27982. extra: 1466 / 1350,
  27983. bottom: 65 / 1527
  27984. }
  27985. },
  27986. },
  27987. [
  27988. ]
  27989. ))
  27990. characterMakers.push(() => makeCharacter(
  27991. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27992. {
  27993. front: {
  27994. height: math.unit(9.35, "feet"),
  27995. weight: math.unit(600, "lb"),
  27996. name: "Front",
  27997. image: {
  27998. source: "./media/characters/amera/front.svg",
  27999. extra: 891 / 818,
  28000. bottom: 30 / 922.7
  28001. }
  28002. },
  28003. back: {
  28004. height: math.unit(9.35, "feet"),
  28005. weight: math.unit(600, "lb"),
  28006. name: "Back",
  28007. image: {
  28008. source: "./media/characters/amera/back.svg",
  28009. extra: 876 / 824,
  28010. bottom: 6.8 / 884
  28011. }
  28012. },
  28013. dick: {
  28014. height: math.unit(2.14, "feet"),
  28015. name: "Dick",
  28016. image: {
  28017. source: "./media/characters/amera/dick.svg"
  28018. }
  28019. },
  28020. },
  28021. [
  28022. {
  28023. name: "Normal",
  28024. height: math.unit(9.35, "feet"),
  28025. default: true
  28026. },
  28027. ]
  28028. ))
  28029. characterMakers.push(() => makeCharacter(
  28030. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28031. {
  28032. kneeling: {
  28033. height: math.unit(3 + 4 / 12, "feet"),
  28034. weight: math.unit(90, "lb"),
  28035. name: "Kneeling",
  28036. image: {
  28037. source: "./media/characters/rosewen/kneeling.svg",
  28038. extra: 1835 / 1571,
  28039. bottom: 27.7 / 1862
  28040. }
  28041. },
  28042. },
  28043. [
  28044. {
  28045. name: "Normal",
  28046. height: math.unit(3 + 4 / 12, "feet"),
  28047. default: true
  28048. },
  28049. ]
  28050. ))
  28051. characterMakers.push(() => makeCharacter(
  28052. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28053. {
  28054. front: {
  28055. height: math.unit(5 + 10 / 12, "feet"),
  28056. weight: math.unit(200, "lb"),
  28057. name: "Front",
  28058. image: {
  28059. source: "./media/characters/sabah/front.svg",
  28060. extra: 849 / 763,
  28061. bottom: 33.9 / 881
  28062. }
  28063. },
  28064. },
  28065. [
  28066. {
  28067. name: "Normal",
  28068. height: math.unit(5 + 10 / 12, "feet"),
  28069. default: true
  28070. },
  28071. ]
  28072. ))
  28073. characterMakers.push(() => makeCharacter(
  28074. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28075. {
  28076. front: {
  28077. height: math.unit(3 + 5 / 12, "feet"),
  28078. weight: math.unit(40, "kg"),
  28079. name: "Front",
  28080. image: {
  28081. source: "./media/characters/purple-flame/front.svg",
  28082. extra: 1577 / 1412,
  28083. bottom: 97 / 1694
  28084. }
  28085. },
  28086. frontDressed: {
  28087. height: math.unit(3 + 5 / 12, "feet"),
  28088. weight: math.unit(40, "kg"),
  28089. name: "Front (Dressed)",
  28090. image: {
  28091. source: "./media/characters/purple-flame/front-dressed.svg",
  28092. extra: 1577 / 1412,
  28093. bottom: 97 / 1694
  28094. }
  28095. },
  28096. headphones: {
  28097. height: math.unit(0.85, "feet"),
  28098. name: "Headphones",
  28099. image: {
  28100. source: "./media/characters/purple-flame/headphones.svg"
  28101. }
  28102. },
  28103. },
  28104. [
  28105. {
  28106. name: "Really Small",
  28107. height: math.unit(5, "cm")
  28108. },
  28109. {
  28110. name: "Micro",
  28111. height: math.unit(1 + 5 / 12, "feet")
  28112. },
  28113. {
  28114. name: "Normal",
  28115. height: math.unit(3 + 5 / 12, "feet"),
  28116. default: true
  28117. },
  28118. {
  28119. name: "Minimacro",
  28120. height: math.unit(125, "feet")
  28121. },
  28122. {
  28123. name: "Macro",
  28124. height: math.unit(0.5, "miles")
  28125. },
  28126. {
  28127. name: "Megamacro",
  28128. height: math.unit(50, "miles")
  28129. },
  28130. {
  28131. name: "Gigantic",
  28132. height: math.unit(750, "miles")
  28133. },
  28134. {
  28135. name: "Planetary",
  28136. height: math.unit(15000, "miles")
  28137. },
  28138. ]
  28139. ))
  28140. characterMakers.push(() => makeCharacter(
  28141. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28142. {
  28143. front: {
  28144. height: math.unit(14, "feet"),
  28145. weight: math.unit(959, "lb"),
  28146. name: "Front",
  28147. image: {
  28148. source: "./media/characters/arsenal/front.svg",
  28149. extra: 2357 / 2157,
  28150. bottom: 93 / 2458
  28151. }
  28152. },
  28153. },
  28154. [
  28155. {
  28156. name: "Normal",
  28157. height: math.unit(14, "feet"),
  28158. default: true
  28159. },
  28160. ]
  28161. ))
  28162. characterMakers.push(() => makeCharacter(
  28163. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28164. {
  28165. front: {
  28166. height: math.unit(6, "feet"),
  28167. weight: math.unit(150, "lb"),
  28168. name: "Front",
  28169. image: {
  28170. source: "./media/characters/adira/front.svg",
  28171. extra: 1078 / 1029,
  28172. bottom: 87 / 1166
  28173. }
  28174. },
  28175. },
  28176. [
  28177. {
  28178. name: "Micro",
  28179. height: math.unit(4, "inches"),
  28180. default: true
  28181. },
  28182. {
  28183. name: "Macro",
  28184. height: math.unit(50, "feet")
  28185. },
  28186. ]
  28187. ))
  28188. characterMakers.push(() => makeCharacter(
  28189. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28190. {
  28191. front: {
  28192. height: math.unit(16, "feet"),
  28193. weight: math.unit(1000, "lb"),
  28194. name: "Front",
  28195. image: {
  28196. source: "./media/characters/grim/front.svg",
  28197. extra: 622 / 614,
  28198. bottom: 18.1 / 642
  28199. }
  28200. },
  28201. back: {
  28202. height: math.unit(16, "feet"),
  28203. weight: math.unit(1000, "lb"),
  28204. name: "Back",
  28205. image: {
  28206. source: "./media/characters/grim/back.svg",
  28207. extra: 610.6 / 602,
  28208. bottom: 40.8 / 652
  28209. }
  28210. },
  28211. hunched: {
  28212. height: math.unit(9.75, "feet"),
  28213. weight: math.unit(1000, "lb"),
  28214. name: "Hunched",
  28215. image: {
  28216. source: "./media/characters/grim/hunched.svg",
  28217. extra: 304 / 297,
  28218. bottom: 35.4 / 394
  28219. }
  28220. },
  28221. },
  28222. [
  28223. {
  28224. name: "Normal",
  28225. height: math.unit(16, "feet"),
  28226. default: true
  28227. },
  28228. ]
  28229. ))
  28230. characterMakers.push(() => makeCharacter(
  28231. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28232. {
  28233. front: {
  28234. height: math.unit(2.3, "meters"),
  28235. weight: math.unit(300, "lb"),
  28236. name: "Front",
  28237. image: {
  28238. source: "./media/characters/sinja/front-sfw.svg",
  28239. extra: 1393 / 1294,
  28240. bottom: 70 / 1463
  28241. }
  28242. },
  28243. frontNsfw: {
  28244. height: math.unit(2.3, "meters"),
  28245. weight: math.unit(300, "lb"),
  28246. name: "Front (NSFW)",
  28247. image: {
  28248. source: "./media/characters/sinja/front-nsfw.svg",
  28249. extra: 1393 / 1294,
  28250. bottom: 70 / 1463
  28251. }
  28252. },
  28253. back: {
  28254. height: math.unit(2.3, "meters"),
  28255. weight: math.unit(300, "lb"),
  28256. name: "Back",
  28257. image: {
  28258. source: "./media/characters/sinja/back.svg",
  28259. extra: 1393 / 1294,
  28260. bottom: 70 / 1463
  28261. }
  28262. },
  28263. head: {
  28264. height: math.unit(1.771, "feet"),
  28265. name: "Head",
  28266. image: {
  28267. source: "./media/characters/sinja/head.svg"
  28268. }
  28269. },
  28270. slit: {
  28271. height: math.unit(0.8, "feet"),
  28272. name: "Slit",
  28273. image: {
  28274. source: "./media/characters/sinja/slit.svg"
  28275. }
  28276. },
  28277. },
  28278. [
  28279. {
  28280. name: "Normal",
  28281. height: math.unit(2.3, "meters")
  28282. },
  28283. {
  28284. name: "Macro",
  28285. height: math.unit(91, "meters"),
  28286. default: true
  28287. },
  28288. {
  28289. name: "Megamacro",
  28290. height: math.unit(91440, "meters")
  28291. },
  28292. {
  28293. name: "Gigamacro",
  28294. height: math.unit(60960000, "meters")
  28295. },
  28296. {
  28297. name: "Teramacro",
  28298. height: math.unit(9144000000, "meters")
  28299. },
  28300. ]
  28301. ))
  28302. characterMakers.push(() => makeCharacter(
  28303. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28304. {
  28305. front: {
  28306. height: math.unit(1.7, "meters"),
  28307. weight: math.unit(130, "lb"),
  28308. name: "Front",
  28309. image: {
  28310. source: "./media/characters/kyu/front.svg",
  28311. extra: 415 / 395,
  28312. bottom: 5 / 420
  28313. }
  28314. },
  28315. head: {
  28316. height: math.unit(1.75, "feet"),
  28317. name: "Head",
  28318. image: {
  28319. source: "./media/characters/kyu/head.svg"
  28320. }
  28321. },
  28322. foot: {
  28323. height: math.unit(0.81, "feet"),
  28324. name: "Foot",
  28325. image: {
  28326. source: "./media/characters/kyu/foot.svg"
  28327. }
  28328. },
  28329. },
  28330. [
  28331. {
  28332. name: "Normal",
  28333. height: math.unit(1.7, "meters")
  28334. },
  28335. {
  28336. name: "Macro",
  28337. height: math.unit(131, "feet"),
  28338. default: true
  28339. },
  28340. {
  28341. name: "Megamacro",
  28342. height: math.unit(91440, "meters")
  28343. },
  28344. {
  28345. name: "Gigamacro",
  28346. height: math.unit(60960000, "meters")
  28347. },
  28348. {
  28349. name: "Teramacro",
  28350. height: math.unit(9144000000, "meters")
  28351. },
  28352. ]
  28353. ))
  28354. characterMakers.push(() => makeCharacter(
  28355. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28356. {
  28357. front: {
  28358. height: math.unit(7 + 1 / 12, "feet"),
  28359. weight: math.unit(250, "lb"),
  28360. name: "Front",
  28361. image: {
  28362. source: "./media/characters/joey/front.svg",
  28363. extra: 1791 / 1537,
  28364. bottom: 28 / 1816
  28365. }
  28366. },
  28367. },
  28368. [
  28369. {
  28370. name: "Micro",
  28371. height: math.unit(3, "inches")
  28372. },
  28373. {
  28374. name: "Normal",
  28375. height: math.unit(7 + 1 / 12, "feet"),
  28376. default: true
  28377. },
  28378. ]
  28379. ))
  28380. characterMakers.push(() => makeCharacter(
  28381. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28382. {
  28383. front: {
  28384. height: math.unit(165, "cm"),
  28385. weight: math.unit(140, "lb"),
  28386. name: "Front",
  28387. image: {
  28388. source: "./media/characters/sam-evans/front.svg",
  28389. extra: 3417 / 3230,
  28390. bottom: 41.3 / 3417
  28391. }
  28392. },
  28393. frontSixTails: {
  28394. height: math.unit(165, "cm"),
  28395. weight: math.unit(140, "lb"),
  28396. name: "Front-six-tails",
  28397. image: {
  28398. source: "./media/characters/sam-evans/front-six-tails.svg",
  28399. extra: 3417 / 3230,
  28400. bottom: 41.3 / 3417
  28401. }
  28402. },
  28403. back: {
  28404. height: math.unit(165, "cm"),
  28405. weight: math.unit(140, "lb"),
  28406. name: "Back",
  28407. image: {
  28408. source: "./media/characters/sam-evans/back.svg",
  28409. extra: 3227 / 3032,
  28410. bottom: 6.8 / 3234
  28411. }
  28412. },
  28413. face: {
  28414. height: math.unit(0.68, "feet"),
  28415. name: "Face",
  28416. image: {
  28417. source: "./media/characters/sam-evans/face.svg"
  28418. }
  28419. },
  28420. },
  28421. [
  28422. {
  28423. name: "Normal",
  28424. height: math.unit(165, "cm"),
  28425. default: true
  28426. },
  28427. {
  28428. name: "Macro",
  28429. height: math.unit(100, "meters")
  28430. },
  28431. {
  28432. name: "Macro+",
  28433. height: math.unit(800, "meters")
  28434. },
  28435. {
  28436. name: "Macro++",
  28437. height: math.unit(3, "km")
  28438. },
  28439. {
  28440. name: "Macro+++",
  28441. height: math.unit(30, "km")
  28442. },
  28443. ]
  28444. ))
  28445. characterMakers.push(() => makeCharacter(
  28446. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28447. {
  28448. front: {
  28449. height: math.unit(10, "feet"),
  28450. weight: math.unit(750, "lb"),
  28451. name: "Front",
  28452. image: {
  28453. source: "./media/characters/juliet-a/front.svg",
  28454. extra: 1766 / 1720,
  28455. bottom: 43 / 1809
  28456. }
  28457. },
  28458. back: {
  28459. height: math.unit(10, "feet"),
  28460. weight: math.unit(750, "lb"),
  28461. name: "Back",
  28462. image: {
  28463. source: "./media/characters/juliet-a/back.svg",
  28464. extra: 1781 / 1734,
  28465. bottom: 35 / 1810,
  28466. }
  28467. },
  28468. },
  28469. [
  28470. {
  28471. name: "Normal",
  28472. height: math.unit(10, "feet"),
  28473. default: true
  28474. },
  28475. {
  28476. name: "Dragon Form",
  28477. height: math.unit(250, "feet")
  28478. },
  28479. {
  28480. name: "Macro",
  28481. height: math.unit(1000, "feet")
  28482. },
  28483. {
  28484. name: "Megamacro",
  28485. height: math.unit(10000, "feet")
  28486. }
  28487. ]
  28488. ))
  28489. characterMakers.push(() => makeCharacter(
  28490. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28491. {
  28492. regular: {
  28493. height: math.unit(7 + 3 / 12, "feet"),
  28494. weight: math.unit(260, "lb"),
  28495. name: "Regular",
  28496. image: {
  28497. source: "./media/characters/wild/regular.svg",
  28498. extra: 97.45 / 92,
  28499. bottom: 6.8 / 104.3
  28500. }
  28501. },
  28502. biggums: {
  28503. height: math.unit(8 + 6 / 12, "feet"),
  28504. weight: math.unit(425, "lb"),
  28505. name: "Biggums",
  28506. image: {
  28507. source: "./media/characters/wild/biggums.svg",
  28508. extra: 97.45 / 92,
  28509. bottom: 7.5 / 132.34
  28510. }
  28511. },
  28512. mawRegular: {
  28513. height: math.unit(1.24, "feet"),
  28514. name: "Maw (Regular)",
  28515. image: {
  28516. source: "./media/characters/wild/maw.svg"
  28517. }
  28518. },
  28519. mawBiggums: {
  28520. height: math.unit(1.47, "feet"),
  28521. name: "Maw (Biggums)",
  28522. image: {
  28523. source: "./media/characters/wild/maw.svg"
  28524. }
  28525. },
  28526. },
  28527. [
  28528. {
  28529. name: "Normal",
  28530. height: math.unit(7 + 3 / 12, "feet"),
  28531. default: true
  28532. },
  28533. ]
  28534. ))
  28535. characterMakers.push(() => makeCharacter(
  28536. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28537. {
  28538. front: {
  28539. height: math.unit(2.5, "meters"),
  28540. weight: math.unit(200, "kg"),
  28541. name: "Front",
  28542. image: {
  28543. source: "./media/characters/vidar/front.svg",
  28544. extra: 2994 / 2795,
  28545. bottom: 56 / 3061
  28546. }
  28547. },
  28548. back: {
  28549. height: math.unit(2.5, "meters"),
  28550. weight: math.unit(200, "kg"),
  28551. name: "Back",
  28552. image: {
  28553. source: "./media/characters/vidar/back.svg",
  28554. extra: 3131 / 2928,
  28555. bottom: 13.5 / 3141.5
  28556. }
  28557. },
  28558. feral: {
  28559. height: math.unit(2.5, "meters"),
  28560. weight: math.unit(2000, "kg"),
  28561. name: "Feral",
  28562. image: {
  28563. source: "./media/characters/vidar/feral.svg",
  28564. extra: 2790 / 1765,
  28565. bottom: 6 / 2796
  28566. }
  28567. },
  28568. },
  28569. [
  28570. {
  28571. name: "Normal",
  28572. height: math.unit(2.5, "meters"),
  28573. default: true
  28574. },
  28575. {
  28576. name: "Macro",
  28577. height: math.unit(100, "meters")
  28578. },
  28579. ]
  28580. ))
  28581. characterMakers.push(() => makeCharacter(
  28582. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28583. {
  28584. front: {
  28585. height: math.unit(5 + 9 / 12, "feet"),
  28586. weight: math.unit(120, "lb"),
  28587. name: "Front",
  28588. image: {
  28589. source: "./media/characters/ash/front.svg",
  28590. extra: 2189 / 1961,
  28591. bottom: 5.2 / 2194
  28592. }
  28593. },
  28594. },
  28595. [
  28596. {
  28597. name: "Normal",
  28598. height: math.unit(5 + 9 / 12, "feet"),
  28599. default: true
  28600. },
  28601. ]
  28602. ))
  28603. characterMakers.push(() => makeCharacter(
  28604. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28605. {
  28606. front: {
  28607. height: math.unit(9, "feet"),
  28608. weight: math.unit(10000, "lb"),
  28609. name: "Front",
  28610. image: {
  28611. source: "./media/characters/gygabite/front.svg",
  28612. bottom: 31.7 / 537.8,
  28613. extra: 505 / 370
  28614. }
  28615. },
  28616. },
  28617. [
  28618. {
  28619. name: "Normal",
  28620. height: math.unit(9, "feet"),
  28621. default: true
  28622. },
  28623. ]
  28624. ))
  28625. characterMakers.push(() => makeCharacter(
  28626. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  28627. {
  28628. front: {
  28629. height: math.unit(12, "feet"),
  28630. weight: math.unit(4000, "lb"),
  28631. name: "Front",
  28632. image: {
  28633. source: "./media/characters/p0tat0/front.svg",
  28634. extra: 1065 / 921,
  28635. bottom: 55.7 / 1121.25
  28636. }
  28637. },
  28638. },
  28639. [
  28640. {
  28641. name: "Normal",
  28642. height: math.unit(12, "feet"),
  28643. default: true
  28644. },
  28645. ]
  28646. ))
  28647. characterMakers.push(() => makeCharacter(
  28648. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28649. {
  28650. side: {
  28651. height: math.unit(6.5, "feet"),
  28652. weight: math.unit(800, "lb"),
  28653. name: "Side",
  28654. image: {
  28655. source: "./media/characters/dusk/side.svg",
  28656. extra: 615 / 373,
  28657. bottom: 53 / 664
  28658. }
  28659. },
  28660. sitting: {
  28661. height: math.unit(7, "feet"),
  28662. weight: math.unit(800, "lb"),
  28663. name: "Sitting",
  28664. image: {
  28665. source: "./media/characters/dusk/sitting.svg",
  28666. extra: 753 / 425,
  28667. bottom: 33 / 774
  28668. }
  28669. },
  28670. head: {
  28671. height: math.unit(6.1, "feet"),
  28672. name: "Head",
  28673. image: {
  28674. source: "./media/characters/dusk/head.svg"
  28675. }
  28676. },
  28677. },
  28678. [
  28679. {
  28680. name: "Normal",
  28681. height: math.unit(7, "feet"),
  28682. default: true
  28683. },
  28684. ]
  28685. ))
  28686. characterMakers.push(() => makeCharacter(
  28687. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28688. {
  28689. front: {
  28690. height: math.unit(15, "feet"),
  28691. weight: math.unit(7000, "lb"),
  28692. name: "Front",
  28693. image: {
  28694. source: "./media/characters/jay-direwolf/front.svg",
  28695. extra: 1810 / 1732,
  28696. bottom: 66 / 1892
  28697. }
  28698. },
  28699. },
  28700. [
  28701. {
  28702. name: "Normal",
  28703. height: math.unit(15, "feet"),
  28704. default: true
  28705. },
  28706. ]
  28707. ))
  28708. characterMakers.push(() => makeCharacter(
  28709. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28710. {
  28711. front: {
  28712. height: math.unit(4 + 9 / 12, "feet"),
  28713. weight: math.unit(130, "lb"),
  28714. name: "Front",
  28715. image: {
  28716. source: "./media/characters/anchovie/front.svg",
  28717. extra: 382 / 350,
  28718. bottom: 25 / 409
  28719. }
  28720. },
  28721. back: {
  28722. height: math.unit(4 + 9 / 12, "feet"),
  28723. weight: math.unit(130, "lb"),
  28724. name: "Back",
  28725. image: {
  28726. source: "./media/characters/anchovie/back.svg",
  28727. extra: 385 / 352,
  28728. bottom: 16.6 / 402
  28729. }
  28730. },
  28731. frontDressed: {
  28732. height: math.unit(4 + 9 / 12, "feet"),
  28733. weight: math.unit(130, "lb"),
  28734. name: "Front (Dressed)",
  28735. image: {
  28736. source: "./media/characters/anchovie/front-dressed.svg",
  28737. extra: 382 / 350,
  28738. bottom: 25 / 409
  28739. }
  28740. },
  28741. backDressed: {
  28742. height: math.unit(4 + 9 / 12, "feet"),
  28743. weight: math.unit(130, "lb"),
  28744. name: "Back (Dressed)",
  28745. image: {
  28746. source: "./media/characters/anchovie/back-dressed.svg",
  28747. extra: 385 / 352,
  28748. bottom: 16.6 / 402
  28749. }
  28750. },
  28751. },
  28752. [
  28753. {
  28754. name: "Micro",
  28755. height: math.unit(6.4, "inches")
  28756. },
  28757. {
  28758. name: "Normal",
  28759. height: math.unit(4 + 9 / 12, "feet"),
  28760. default: true
  28761. },
  28762. ]
  28763. ))
  28764. characterMakers.push(() => makeCharacter(
  28765. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28766. {
  28767. front: {
  28768. height: math.unit(2, "meters"),
  28769. weight: math.unit(180, "lb"),
  28770. name: "Front",
  28771. image: {
  28772. source: "./media/characters/acidrenamon/front.svg",
  28773. extra: 987 / 890,
  28774. bottom: 22.8 / 1009
  28775. }
  28776. },
  28777. back: {
  28778. height: math.unit(2, "meters"),
  28779. weight: math.unit(180, "lb"),
  28780. name: "Back",
  28781. image: {
  28782. source: "./media/characters/acidrenamon/back.svg",
  28783. extra: 983 / 891,
  28784. bottom: 8.4 / 992
  28785. }
  28786. },
  28787. head: {
  28788. height: math.unit(1.92, "feet"),
  28789. name: "Head",
  28790. image: {
  28791. source: "./media/characters/acidrenamon/head.svg"
  28792. }
  28793. },
  28794. rump: {
  28795. height: math.unit(1.72, "feet"),
  28796. name: "Rump",
  28797. image: {
  28798. source: "./media/characters/acidrenamon/rump.svg"
  28799. }
  28800. },
  28801. tail: {
  28802. height: math.unit(4.2, "feet"),
  28803. name: "Tail",
  28804. image: {
  28805. source: "./media/characters/acidrenamon/tail.svg"
  28806. }
  28807. },
  28808. },
  28809. [
  28810. {
  28811. name: "Normal",
  28812. height: math.unit(2, "meters"),
  28813. default: true
  28814. },
  28815. {
  28816. name: "Minimacro",
  28817. height: math.unit(7, "meters")
  28818. },
  28819. {
  28820. name: "Macro",
  28821. height: math.unit(200, "meters")
  28822. },
  28823. {
  28824. name: "Gigamacro",
  28825. height: math.unit(0.2, "earths")
  28826. },
  28827. ]
  28828. ))
  28829. characterMakers.push(() => makeCharacter(
  28830. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28831. {
  28832. front: {
  28833. height: math.unit(152, "feet"),
  28834. name: "Front",
  28835. image: {
  28836. source: "./media/characters/kenzie-lee/front.svg",
  28837. extra: 1869/1774,
  28838. bottom: 128/1997
  28839. }
  28840. },
  28841. side: {
  28842. height: math.unit(86, "feet"),
  28843. name: "Side",
  28844. image: {
  28845. source: "./media/characters/kenzie-lee/side.svg",
  28846. extra: 930/815,
  28847. bottom: 177/1107
  28848. }
  28849. },
  28850. paw: {
  28851. height: math.unit(15, "feet"),
  28852. name: "Paw",
  28853. image: {
  28854. source: "./media/characters/kenzie-lee/paw.svg"
  28855. }
  28856. },
  28857. },
  28858. [
  28859. {
  28860. name: "Kenzie Flea",
  28861. height: math.unit(2, "mm"),
  28862. default: true
  28863. },
  28864. {
  28865. name: "Micro",
  28866. height: math.unit(2, "inches")
  28867. },
  28868. {
  28869. name: "Normal",
  28870. height: math.unit(152, "feet")
  28871. },
  28872. {
  28873. name: "Megamacro",
  28874. height: math.unit(7, "miles")
  28875. },
  28876. {
  28877. name: "Gigamacro",
  28878. height: math.unit(8000, "miles")
  28879. },
  28880. ]
  28881. ))
  28882. characterMakers.push(() => makeCharacter(
  28883. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28884. {
  28885. front: {
  28886. height: math.unit(6, "feet"),
  28887. name: "Front",
  28888. image: {
  28889. source: "./media/characters/withers/front.svg",
  28890. extra: 1935/1760,
  28891. bottom: 72/2007
  28892. }
  28893. },
  28894. back: {
  28895. height: math.unit(6, "feet"),
  28896. name: "Back",
  28897. image: {
  28898. source: "./media/characters/withers/back.svg",
  28899. extra: 1944/1792,
  28900. bottom: 12/1956
  28901. }
  28902. },
  28903. dressed: {
  28904. height: math.unit(6, "feet"),
  28905. name: "Dressed",
  28906. image: {
  28907. source: "./media/characters/withers/dressed.svg",
  28908. extra: 1937/1765,
  28909. bottom: 73/2010
  28910. }
  28911. },
  28912. phase1: {
  28913. height: math.unit(1.1, "feet"),
  28914. name: "Phase 1",
  28915. image: {
  28916. source: "./media/characters/withers/phase-1.svg",
  28917. extra: 1885/1232,
  28918. bottom: 0/1885
  28919. }
  28920. },
  28921. phase2: {
  28922. height: math.unit(1.05, "feet"),
  28923. name: "Phase 2",
  28924. image: {
  28925. source: "./media/characters/withers/phase-2.svg",
  28926. extra: 1792/1090,
  28927. bottom: 0/1792
  28928. }
  28929. },
  28930. partyWipe: {
  28931. height: math.unit(1.1, "feet"),
  28932. name: "Party Wipe",
  28933. image: {
  28934. source: "./media/characters/withers/party-wipe.svg",
  28935. extra: 1864/1207,
  28936. bottom: 0/1864
  28937. }
  28938. },
  28939. },
  28940. [
  28941. {
  28942. name: "Macro",
  28943. height: math.unit(167, "feet"),
  28944. default: true
  28945. },
  28946. {
  28947. name: "Megamacro",
  28948. height: math.unit(15, "miles")
  28949. }
  28950. ]
  28951. ))
  28952. characterMakers.push(() => makeCharacter(
  28953. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28954. {
  28955. front: {
  28956. height: math.unit(6 + 7 / 12, "feet"),
  28957. weight: math.unit(250, "lb"),
  28958. name: "Front",
  28959. image: {
  28960. source: "./media/characters/nemoskii/front.svg",
  28961. extra: 2270 / 1734,
  28962. bottom: 86 / 2354
  28963. }
  28964. },
  28965. back: {
  28966. height: math.unit(6 + 7 / 12, "feet"),
  28967. weight: math.unit(250, "lb"),
  28968. name: "Back",
  28969. image: {
  28970. source: "./media/characters/nemoskii/back.svg",
  28971. extra: 1845 / 1788,
  28972. bottom: 10.5 / 1852
  28973. }
  28974. },
  28975. head: {
  28976. height: math.unit(1.31, "feet"),
  28977. name: "Head",
  28978. image: {
  28979. source: "./media/characters/nemoskii/head.svg"
  28980. }
  28981. },
  28982. },
  28983. [
  28984. {
  28985. name: "Micro",
  28986. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28987. },
  28988. {
  28989. name: "Normal",
  28990. height: math.unit(6 + 7 / 12, "feet"),
  28991. default: true
  28992. },
  28993. {
  28994. name: "Macro",
  28995. height: math.unit((6 + 7 / 12) * 150, "feet")
  28996. },
  28997. {
  28998. name: "Macro+",
  28999. height: math.unit((6 + 7 / 12) * 500, "feet")
  29000. },
  29001. {
  29002. name: "Megamacro",
  29003. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29004. },
  29005. ]
  29006. ))
  29007. characterMakers.push(() => makeCharacter(
  29008. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29009. {
  29010. front: {
  29011. height: math.unit(1, "mile"),
  29012. weight: math.unit(265261.9, "lb"),
  29013. name: "Front",
  29014. image: {
  29015. source: "./media/characters/shui/front.svg",
  29016. extra: 1633 / 1564,
  29017. bottom: 91.5 / 1726
  29018. }
  29019. },
  29020. },
  29021. [
  29022. {
  29023. name: "Macro",
  29024. height: math.unit(1, "mile"),
  29025. default: true
  29026. },
  29027. ]
  29028. ))
  29029. characterMakers.push(() => makeCharacter(
  29030. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29031. {
  29032. front: {
  29033. height: math.unit(12 + 6 / 12, "feet"),
  29034. weight: math.unit(1342, "lb"),
  29035. name: "Front",
  29036. image: {
  29037. source: "./media/characters/arokh-takakura/front.svg",
  29038. extra: 1089 / 1043,
  29039. bottom: 77.4 / 1176.7
  29040. }
  29041. },
  29042. back: {
  29043. height: math.unit(12 + 6 / 12, "feet"),
  29044. weight: math.unit(1342, "lb"),
  29045. name: "Back",
  29046. image: {
  29047. source: "./media/characters/arokh-takakura/back.svg",
  29048. extra: 1046 / 1019,
  29049. bottom: 102 / 1150
  29050. }
  29051. },
  29052. },
  29053. [
  29054. {
  29055. name: "Big",
  29056. height: math.unit(12 + 6 / 12, "feet"),
  29057. default: true
  29058. },
  29059. ]
  29060. ))
  29061. characterMakers.push(() => makeCharacter(
  29062. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29063. {
  29064. front: {
  29065. height: math.unit(5 + 6 / 12, "feet"),
  29066. weight: math.unit(150, "lb"),
  29067. name: "Front",
  29068. image: {
  29069. source: "./media/characters/theo/front.svg",
  29070. extra: 1184 / 1131,
  29071. bottom: 7.4 / 1191
  29072. }
  29073. },
  29074. },
  29075. [
  29076. {
  29077. name: "Micro",
  29078. height: math.unit(5, "inches")
  29079. },
  29080. {
  29081. name: "Normal",
  29082. height: math.unit(5 + 6 / 12, "feet"),
  29083. default: true
  29084. },
  29085. ]
  29086. ))
  29087. characterMakers.push(() => makeCharacter(
  29088. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29089. {
  29090. front: {
  29091. height: math.unit(5 + 9 / 12, "feet"),
  29092. weight: math.unit(130, "lb"),
  29093. name: "Front",
  29094. image: {
  29095. source: "./media/characters/cecelia-swift/front.svg",
  29096. extra: 502 / 484,
  29097. bottom: 23 / 523
  29098. }
  29099. },
  29100. back: {
  29101. height: math.unit(5 + 9 / 12, "feet"),
  29102. weight: math.unit(130, "lb"),
  29103. name: "Back",
  29104. image: {
  29105. source: "./media/characters/cecelia-swift/back.svg",
  29106. extra: 499 / 485,
  29107. bottom: 12 / 511
  29108. }
  29109. },
  29110. head: {
  29111. height: math.unit(0.90, "feet"),
  29112. name: "Head",
  29113. image: {
  29114. source: "./media/characters/cecelia-swift/head.svg"
  29115. }
  29116. },
  29117. rump: {
  29118. height: math.unit(1.75, "feet"),
  29119. name: "Rump",
  29120. image: {
  29121. source: "./media/characters/cecelia-swift/rump.svg"
  29122. }
  29123. },
  29124. },
  29125. [
  29126. {
  29127. name: "Normal",
  29128. height: math.unit(5 + 9 / 12, "feet"),
  29129. default: true
  29130. },
  29131. {
  29132. name: "Big",
  29133. height: math.unit(50, "feet")
  29134. },
  29135. {
  29136. name: "Macro",
  29137. height: math.unit(100, "feet")
  29138. },
  29139. {
  29140. name: "Macro+",
  29141. height: math.unit(500, "feet")
  29142. },
  29143. {
  29144. name: "Macro++",
  29145. height: math.unit(1000, "feet")
  29146. },
  29147. ]
  29148. ))
  29149. characterMakers.push(() => makeCharacter(
  29150. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29151. {
  29152. front: {
  29153. height: math.unit(6, "feet"),
  29154. weight: math.unit(150, "lb"),
  29155. name: "Front",
  29156. image: {
  29157. source: "./media/characters/kaunan/front.svg",
  29158. extra: 2890 / 2523,
  29159. bottom: 49 / 2939
  29160. }
  29161. },
  29162. },
  29163. [
  29164. {
  29165. name: "Macro",
  29166. height: math.unit(150, "feet"),
  29167. default: true
  29168. },
  29169. ]
  29170. ))
  29171. characterMakers.push(() => makeCharacter(
  29172. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29173. {
  29174. dressed: {
  29175. height: math.unit(175, "cm"),
  29176. weight: math.unit(60, "kg"),
  29177. name: "Dressed",
  29178. image: {
  29179. source: "./media/characters/fei/dressed.svg",
  29180. extra: 1402/1278,
  29181. bottom: 27/1429
  29182. }
  29183. },
  29184. nude: {
  29185. height: math.unit(175, "cm"),
  29186. weight: math.unit(60, "kg"),
  29187. name: "Nude",
  29188. image: {
  29189. source: "./media/characters/fei/nude.svg",
  29190. extra: 1402/1278,
  29191. bottom: 27/1429
  29192. }
  29193. },
  29194. heels: {
  29195. height: math.unit(0.466, "feet"),
  29196. name: "Heels",
  29197. image: {
  29198. source: "./media/characters/fei/heels.svg",
  29199. extra: 156/152,
  29200. bottom: 28/184
  29201. }
  29202. },
  29203. },
  29204. [
  29205. {
  29206. name: "Mortal",
  29207. height: math.unit(175, "cm")
  29208. },
  29209. {
  29210. name: "Normal",
  29211. height: math.unit(3500, "m")
  29212. },
  29213. {
  29214. name: "Stroll",
  29215. height: math.unit(18.4, "km"),
  29216. default: true
  29217. },
  29218. {
  29219. name: "Showoff",
  29220. height: math.unit(175, "km")
  29221. },
  29222. ]
  29223. ))
  29224. characterMakers.push(() => makeCharacter(
  29225. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29226. {
  29227. front: {
  29228. height: math.unit(7, "feet"),
  29229. weight: math.unit(1000, "kg"),
  29230. name: "Front",
  29231. image: {
  29232. source: "./media/characters/edrax/front.svg",
  29233. extra: 2838 / 2550,
  29234. bottom: 130 / 2968
  29235. }
  29236. },
  29237. },
  29238. [
  29239. {
  29240. name: "Small",
  29241. height: math.unit(7, "feet")
  29242. },
  29243. {
  29244. name: "Normal",
  29245. height: math.unit(1500, "meters")
  29246. },
  29247. {
  29248. name: "Mega",
  29249. height: math.unit(12000000, "km"),
  29250. default: true
  29251. },
  29252. {
  29253. name: "Megamacro",
  29254. height: math.unit(10600000, "lightyears")
  29255. },
  29256. {
  29257. name: "Hypermacro",
  29258. height: math.unit(256, "yottameters")
  29259. },
  29260. ]
  29261. ))
  29262. characterMakers.push(() => makeCharacter(
  29263. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29264. {
  29265. front: {
  29266. height: math.unit(10, "feet"),
  29267. weight: math.unit(750, "lb"),
  29268. name: "Front",
  29269. image: {
  29270. source: "./media/characters/clove/front.svg",
  29271. extra: 1918/1751,
  29272. bottom: 52/1970
  29273. }
  29274. },
  29275. back: {
  29276. height: math.unit(10, "feet"),
  29277. weight: math.unit(750, "lb"),
  29278. name: "Back",
  29279. image: {
  29280. source: "./media/characters/clove/back.svg",
  29281. extra: 1912/1747,
  29282. bottom: 50/1962
  29283. }
  29284. },
  29285. },
  29286. [
  29287. {
  29288. name: "Normal",
  29289. height: math.unit(10, "feet"),
  29290. default: true
  29291. },
  29292. ]
  29293. ))
  29294. characterMakers.push(() => makeCharacter(
  29295. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29296. {
  29297. front: {
  29298. height: math.unit(4, "feet"),
  29299. weight: math.unit(50, "lb"),
  29300. name: "Front",
  29301. image: {
  29302. source: "./media/characters/alex-rabbit/front.svg",
  29303. extra: 507 / 458,
  29304. bottom: 18.5 / 527
  29305. }
  29306. },
  29307. back: {
  29308. height: math.unit(4, "feet"),
  29309. weight: math.unit(50, "lb"),
  29310. name: "Back",
  29311. image: {
  29312. source: "./media/characters/alex-rabbit/back.svg",
  29313. extra: 502 / 460,
  29314. bottom: 18.9 / 521
  29315. }
  29316. },
  29317. },
  29318. [
  29319. {
  29320. name: "Normal",
  29321. height: math.unit(4, "feet"),
  29322. default: true
  29323. },
  29324. ]
  29325. ))
  29326. characterMakers.push(() => makeCharacter(
  29327. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29328. {
  29329. front: {
  29330. height: math.unit(1 + 3 / 12, "feet"),
  29331. weight: math.unit(80, "lb"),
  29332. name: "Front",
  29333. image: {
  29334. source: "./media/characters/zander-rose/front.svg",
  29335. extra: 916 / 797,
  29336. bottom: 17 / 933
  29337. }
  29338. },
  29339. back: {
  29340. height: math.unit(1 + 3 / 12, "feet"),
  29341. weight: math.unit(80, "lb"),
  29342. name: "Back",
  29343. image: {
  29344. source: "./media/characters/zander-rose/back.svg",
  29345. extra: 903 / 779,
  29346. bottom: 31 / 934
  29347. }
  29348. },
  29349. },
  29350. [
  29351. {
  29352. name: "Normal",
  29353. height: math.unit(1 + 3 / 12, "feet"),
  29354. default: true
  29355. },
  29356. ]
  29357. ))
  29358. characterMakers.push(() => makeCharacter(
  29359. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29360. {
  29361. anthro: {
  29362. height: math.unit(6, "feet"),
  29363. weight: math.unit(150, "lb"),
  29364. name: "Anthro",
  29365. image: {
  29366. source: "./media/characters/razz/anthro.svg",
  29367. extra: 1437 / 1343,
  29368. bottom: 48 / 1485
  29369. }
  29370. },
  29371. feral: {
  29372. height: math.unit(6, "feet"),
  29373. weight: math.unit(150, "lb"),
  29374. name: "Feral",
  29375. image: {
  29376. source: "./media/characters/razz/feral.svg",
  29377. extra: 2569 / 1385,
  29378. bottom: 95 / 2664
  29379. }
  29380. },
  29381. },
  29382. [
  29383. {
  29384. name: "Normal",
  29385. height: math.unit(6, "feet"),
  29386. default: true
  29387. },
  29388. ]
  29389. ))
  29390. characterMakers.push(() => makeCharacter(
  29391. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29392. {
  29393. front: {
  29394. height: math.unit(9 + 4 / 12, "feet"),
  29395. weight: math.unit(500, "lb"),
  29396. name: "Front",
  29397. image: {
  29398. source: "./media/characters/morrigan/front.svg",
  29399. extra: 2707 / 2579,
  29400. bottom: 156 / 2863
  29401. }
  29402. },
  29403. },
  29404. [
  29405. {
  29406. name: "Normal",
  29407. height: math.unit(9 + 4 / 12, "feet"),
  29408. default: true
  29409. },
  29410. ]
  29411. ))
  29412. characterMakers.push(() => makeCharacter(
  29413. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29414. {
  29415. front: {
  29416. height: math.unit(5, "stories"),
  29417. weight: math.unit(4000, "lb"),
  29418. name: "Front",
  29419. image: {
  29420. source: "./media/characters/jenene/front.svg",
  29421. extra: 1780 / 1710,
  29422. bottom: 57 / 1837
  29423. }
  29424. },
  29425. },
  29426. [
  29427. {
  29428. name: "Normal",
  29429. height: math.unit(5, "stories"),
  29430. default: true
  29431. },
  29432. ]
  29433. ))
  29434. characterMakers.push(() => makeCharacter(
  29435. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29436. {
  29437. taurSfw: {
  29438. height: math.unit(10, "meters"),
  29439. weight: math.unit(17500, "kg"),
  29440. name: "Taur",
  29441. image: {
  29442. source: "./media/characters/faey/taur-sfw.svg",
  29443. extra: 1200 / 968,
  29444. bottom: 41 / 1241
  29445. }
  29446. },
  29447. chestmaw: {
  29448. height: math.unit(2.01, "meters"),
  29449. name: "Chestmaw",
  29450. image: {
  29451. source: "./media/characters/faey/chestmaw.svg"
  29452. }
  29453. },
  29454. foot: {
  29455. height: math.unit(2.43, "meters"),
  29456. name: "Foot",
  29457. image: {
  29458. source: "./media/characters/faey/foot.svg"
  29459. }
  29460. },
  29461. jaws: {
  29462. height: math.unit(1.66, "meters"),
  29463. name: "Jaws",
  29464. image: {
  29465. source: "./media/characters/faey/jaws.svg"
  29466. }
  29467. },
  29468. tongues: {
  29469. height: math.unit(2.01, "meters"),
  29470. name: "Tongues",
  29471. image: {
  29472. source: "./media/characters/faey/tongues.svg"
  29473. }
  29474. },
  29475. },
  29476. [
  29477. {
  29478. name: "Small",
  29479. height: math.unit(10, "meters"),
  29480. default: true
  29481. },
  29482. {
  29483. name: "Big",
  29484. height: math.unit(500000, "km")
  29485. },
  29486. ]
  29487. ))
  29488. characterMakers.push(() => makeCharacter(
  29489. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29490. {
  29491. front: {
  29492. height: math.unit(7, "feet"),
  29493. weight: math.unit(275, "lb"),
  29494. name: "Front",
  29495. image: {
  29496. source: "./media/characters/roku/front.svg",
  29497. extra: 903 / 878,
  29498. bottom: 37 / 940
  29499. }
  29500. },
  29501. },
  29502. [
  29503. {
  29504. name: "Normal",
  29505. height: math.unit(7, "feet"),
  29506. default: true
  29507. },
  29508. {
  29509. name: "Macro",
  29510. height: math.unit(500, "feet")
  29511. },
  29512. {
  29513. name: "Megamacro",
  29514. height: math.unit(200, "miles")
  29515. },
  29516. ]
  29517. ))
  29518. characterMakers.push(() => makeCharacter(
  29519. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29520. {
  29521. front: {
  29522. height: math.unit(6 + 2 / 12, "feet"),
  29523. weight: math.unit(150, "lb"),
  29524. name: "Front",
  29525. image: {
  29526. source: "./media/characters/lira/front.svg",
  29527. extra: 1727 / 1605,
  29528. bottom: 26 / 1753
  29529. }
  29530. },
  29531. back: {
  29532. height: math.unit(6 + 2 / 12, "feet"),
  29533. weight: math.unit(150, "lb"),
  29534. name: "Back",
  29535. image: {
  29536. source: "./media/characters/lira/back.svg",
  29537. extra: 1713/1621,
  29538. bottom: 20/1733
  29539. }
  29540. },
  29541. hand: {
  29542. height: math.unit(0.75, "feet"),
  29543. name: "Hand",
  29544. image: {
  29545. source: "./media/characters/lira/hand.svg"
  29546. }
  29547. },
  29548. maw: {
  29549. height: math.unit(0.65, "feet"),
  29550. name: "Maw",
  29551. image: {
  29552. source: "./media/characters/lira/maw.svg"
  29553. }
  29554. },
  29555. pawDigi: {
  29556. height: math.unit(1.6, "feet"),
  29557. name: "Paw Digi",
  29558. image: {
  29559. source: "./media/characters/lira/paw-digi.svg"
  29560. }
  29561. },
  29562. pawPlanti: {
  29563. height: math.unit(1.4, "feet"),
  29564. name: "Paw Planti",
  29565. image: {
  29566. source: "./media/characters/lira/paw-planti.svg"
  29567. }
  29568. },
  29569. },
  29570. [
  29571. {
  29572. name: "Normal",
  29573. height: math.unit(6 + 2 / 12, "feet"),
  29574. default: true
  29575. },
  29576. {
  29577. name: "Macro",
  29578. height: math.unit(100, "feet")
  29579. },
  29580. {
  29581. name: "Macro²",
  29582. height: math.unit(1600, "feet")
  29583. },
  29584. {
  29585. name: "Planetary",
  29586. height: math.unit(20, "earths")
  29587. },
  29588. ]
  29589. ))
  29590. characterMakers.push(() => makeCharacter(
  29591. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29592. {
  29593. front: {
  29594. height: math.unit(6, "feet"),
  29595. weight: math.unit(150, "lb"),
  29596. name: "Front",
  29597. image: {
  29598. source: "./media/characters/hadjet/front.svg",
  29599. extra: 1480 / 1346,
  29600. bottom: 26 / 1506
  29601. }
  29602. },
  29603. frontNsfw: {
  29604. height: math.unit(6, "feet"),
  29605. weight: math.unit(150, "lb"),
  29606. name: "Front (NSFW)",
  29607. image: {
  29608. source: "./media/characters/hadjet/front-nsfw.svg",
  29609. extra: 1440 / 1358,
  29610. bottom: 52 / 1492
  29611. }
  29612. },
  29613. },
  29614. [
  29615. {
  29616. name: "Macro",
  29617. height: math.unit(10, "stories"),
  29618. default: true
  29619. },
  29620. {
  29621. name: "Megamacro",
  29622. height: math.unit(1.5, "miles")
  29623. },
  29624. {
  29625. name: "Megamacro+",
  29626. height: math.unit(5, "miles")
  29627. },
  29628. ]
  29629. ))
  29630. characterMakers.push(() => makeCharacter(
  29631. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29632. {
  29633. side: {
  29634. height: math.unit(106, "feet"),
  29635. weight: math.unit(500, "tonnes"),
  29636. name: "Side",
  29637. image: {
  29638. source: "./media/characters/kodran/side.svg",
  29639. extra: 553 / 480,
  29640. bottom: 33 / 586
  29641. }
  29642. },
  29643. front: {
  29644. height: math.unit(132, "feet"),
  29645. weight: math.unit(500, "tonnes"),
  29646. name: "Front",
  29647. image: {
  29648. source: "./media/characters/kodran/front.svg",
  29649. extra: 667 / 643,
  29650. bottom: 42 / 709
  29651. }
  29652. },
  29653. flying: {
  29654. height: math.unit(350, "feet"),
  29655. weight: math.unit(500, "tonnes"),
  29656. name: "Flying",
  29657. image: {
  29658. source: "./media/characters/kodran/flying.svg"
  29659. }
  29660. },
  29661. foot: {
  29662. height: math.unit(33, "feet"),
  29663. name: "Foot",
  29664. image: {
  29665. source: "./media/characters/kodran/foot.svg"
  29666. }
  29667. },
  29668. footFront: {
  29669. height: math.unit(19, "feet"),
  29670. name: "Foot (Front)",
  29671. image: {
  29672. source: "./media/characters/kodran/foot-front.svg",
  29673. extra: 261 / 261,
  29674. bottom: 91 / 352
  29675. }
  29676. },
  29677. headFront: {
  29678. height: math.unit(53, "feet"),
  29679. name: "Head (Front)",
  29680. image: {
  29681. source: "./media/characters/kodran/head-front.svg"
  29682. }
  29683. },
  29684. headSide: {
  29685. height: math.unit(65, "feet"),
  29686. name: "Head (Side)",
  29687. image: {
  29688. source: "./media/characters/kodran/head-side.svg"
  29689. }
  29690. },
  29691. throat: {
  29692. height: math.unit(79, "feet"),
  29693. name: "Throat",
  29694. image: {
  29695. source: "./media/characters/kodran/throat.svg"
  29696. }
  29697. },
  29698. },
  29699. [
  29700. {
  29701. name: "Large",
  29702. height: math.unit(106, "feet"),
  29703. default: true
  29704. },
  29705. ]
  29706. ))
  29707. characterMakers.push(() => makeCharacter(
  29708. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29709. {
  29710. side: {
  29711. height: math.unit(11, "feet"),
  29712. weight: math.unit(150, "lb"),
  29713. name: "Side",
  29714. image: {
  29715. source: "./media/characters/pyxaron/side.svg",
  29716. extra: 305 / 195,
  29717. bottom: 17 / 322
  29718. }
  29719. },
  29720. },
  29721. [
  29722. {
  29723. name: "Normal",
  29724. height: math.unit(11, "feet"),
  29725. default: true
  29726. },
  29727. ]
  29728. ))
  29729. characterMakers.push(() => makeCharacter(
  29730. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29731. {
  29732. front: {
  29733. height: math.unit(6, "feet"),
  29734. weight: math.unit(150, "lb"),
  29735. name: "Front",
  29736. image: {
  29737. source: "./media/characters/meep/front.svg",
  29738. extra: 88 / 80,
  29739. bottom: 6 / 94
  29740. }
  29741. },
  29742. },
  29743. [
  29744. {
  29745. name: "Fun Sized",
  29746. height: math.unit(2, "inches"),
  29747. default: true
  29748. },
  29749. {
  29750. name: "Friend Sized",
  29751. height: math.unit(8, "inches")
  29752. },
  29753. ]
  29754. ))
  29755. characterMakers.push(() => makeCharacter(
  29756. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29757. {
  29758. front: {
  29759. height: math.unit(15, "feet"),
  29760. weight: math.unit(2500, "lb"),
  29761. name: "Front",
  29762. image: {
  29763. source: "./media/characters/holly-rabbit/front.svg",
  29764. extra: 1433 / 1233,
  29765. bottom: 125 / 1558
  29766. }
  29767. },
  29768. dick: {
  29769. height: math.unit(4.6, "feet"),
  29770. name: "Dick",
  29771. image: {
  29772. source: "./media/characters/holly-rabbit/dick.svg"
  29773. }
  29774. },
  29775. },
  29776. [
  29777. {
  29778. name: "Normal",
  29779. height: math.unit(15, "feet"),
  29780. default: true
  29781. },
  29782. {
  29783. name: "Macro",
  29784. height: math.unit(250, "feet")
  29785. },
  29786. {
  29787. name: "Macro+",
  29788. height: math.unit(2500, "feet")
  29789. },
  29790. ]
  29791. ))
  29792. characterMakers.push(() => makeCharacter(
  29793. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29794. {
  29795. front: {
  29796. height: math.unit(3.02, "meters"),
  29797. weight: math.unit(500, "kg"),
  29798. name: "Front",
  29799. image: {
  29800. source: "./media/characters/drena/front.svg",
  29801. extra: 282 / 243,
  29802. bottom: 8 / 290
  29803. }
  29804. },
  29805. side: {
  29806. height: math.unit(3.02, "meters"),
  29807. weight: math.unit(500, "kg"),
  29808. name: "Side",
  29809. image: {
  29810. source: "./media/characters/drena/side.svg",
  29811. extra: 280 / 245,
  29812. bottom: 10 / 290
  29813. }
  29814. },
  29815. back: {
  29816. height: math.unit(3.02, "meters"),
  29817. weight: math.unit(500, "kg"),
  29818. name: "Back",
  29819. image: {
  29820. source: "./media/characters/drena/back.svg",
  29821. extra: 278 / 243,
  29822. bottom: 2 / 280
  29823. }
  29824. },
  29825. foot: {
  29826. height: math.unit(0.75, "meters"),
  29827. name: "Foot",
  29828. image: {
  29829. source: "./media/characters/drena/foot.svg"
  29830. }
  29831. },
  29832. maw: {
  29833. height: math.unit(0.82, "meters"),
  29834. name: "Maw",
  29835. image: {
  29836. source: "./media/characters/drena/maw.svg"
  29837. }
  29838. },
  29839. eating: {
  29840. height: math.unit(0.75, "meters"),
  29841. name: "Eating",
  29842. image: {
  29843. source: "./media/characters/drena/eating.svg"
  29844. }
  29845. },
  29846. rump: {
  29847. height: math.unit(0.93, "meters"),
  29848. name: "Rump",
  29849. image: {
  29850. source: "./media/characters/drena/rump.svg"
  29851. }
  29852. },
  29853. },
  29854. [
  29855. {
  29856. name: "Normal",
  29857. height: math.unit(3.02, "meters"),
  29858. default: true
  29859. },
  29860. ]
  29861. ))
  29862. characterMakers.push(() => makeCharacter(
  29863. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29864. {
  29865. front: {
  29866. height: math.unit(6 + 4 / 12, "feet"),
  29867. weight: math.unit(250, "lb"),
  29868. name: "Front",
  29869. image: {
  29870. source: "./media/characters/remmyzilla/front.svg",
  29871. extra: 4033 / 3588,
  29872. bottom: 123 / 4156
  29873. }
  29874. },
  29875. back: {
  29876. height: math.unit(6 + 4 / 12, "feet"),
  29877. weight: math.unit(250, "lb"),
  29878. name: "Back",
  29879. image: {
  29880. source: "./media/characters/remmyzilla/back.svg",
  29881. extra: 2687 / 2555,
  29882. bottom: 48 / 2735
  29883. }
  29884. },
  29885. paw: {
  29886. height: math.unit(1.73, "feet"),
  29887. name: "Paw",
  29888. image: {
  29889. source: "./media/characters/remmyzilla/paw.svg"
  29890. },
  29891. extraAttributes: {
  29892. "toeSize": {
  29893. name: "Toe Size",
  29894. power: 2,
  29895. type: "area",
  29896. base: math.unit(0.0035, "m^2")
  29897. },
  29898. "padSize": {
  29899. name: "Pad Size",
  29900. power: 2,
  29901. type: "area",
  29902. base: math.unit(0.015, "m^2")
  29903. },
  29904. "pawsize": {
  29905. name: "Paw Size",
  29906. power: 2,
  29907. type: "area",
  29908. base: math.unit(0.072, "m^2")
  29909. },
  29910. }
  29911. },
  29912. maw: {
  29913. height: math.unit(1.73, "feet"),
  29914. name: "Maw",
  29915. image: {
  29916. source: "./media/characters/remmyzilla/maw.svg"
  29917. }
  29918. },
  29919. },
  29920. [
  29921. {
  29922. name: "Normal",
  29923. height: math.unit(6 + 4 / 12, "feet")
  29924. },
  29925. {
  29926. name: "Minimacro",
  29927. height: math.unit(12 + 8 / 12, "feet")
  29928. },
  29929. {
  29930. name: "Normal",
  29931. height: math.unit(640, "feet"),
  29932. default: true
  29933. },
  29934. {
  29935. name: "Megamacro",
  29936. height: math.unit(6400, "feet")
  29937. },
  29938. {
  29939. name: "Gigamacro",
  29940. height: math.unit(64000, "miles")
  29941. },
  29942. ]
  29943. ))
  29944. characterMakers.push(() => makeCharacter(
  29945. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29946. {
  29947. front: {
  29948. height: math.unit(2.5, "meters"),
  29949. weight: math.unit(300, "lb"),
  29950. name: "Front",
  29951. image: {
  29952. source: "./media/characters/lawrence/front.svg",
  29953. extra: 357 / 335,
  29954. bottom: 30 / 387
  29955. }
  29956. },
  29957. back: {
  29958. height: math.unit(2.5, "meters"),
  29959. weight: math.unit(300, "lb"),
  29960. name: "Back",
  29961. image: {
  29962. source: "./media/characters/lawrence/back.svg",
  29963. extra: 357 / 338,
  29964. bottom: 16 / 373
  29965. }
  29966. },
  29967. head: {
  29968. height: math.unit(0.9, "meter"),
  29969. name: "Head",
  29970. image: {
  29971. source: "./media/characters/lawrence/head.svg"
  29972. }
  29973. },
  29974. maw: {
  29975. height: math.unit(0.7, "meter"),
  29976. name: "Maw",
  29977. image: {
  29978. source: "./media/characters/lawrence/maw.svg"
  29979. }
  29980. },
  29981. footBottom: {
  29982. height: math.unit(0.5, "meter"),
  29983. name: "Foot (Bottom)",
  29984. image: {
  29985. source: "./media/characters/lawrence/foot-bottom.svg"
  29986. }
  29987. },
  29988. footTop: {
  29989. height: math.unit(0.5, "meter"),
  29990. name: "Foot (Top)",
  29991. image: {
  29992. source: "./media/characters/lawrence/foot-top.svg"
  29993. }
  29994. },
  29995. },
  29996. [
  29997. {
  29998. name: "Normal",
  29999. height: math.unit(2.5, "meters"),
  30000. default: true
  30001. },
  30002. {
  30003. name: "Macro",
  30004. height: math.unit(95, "meters")
  30005. },
  30006. {
  30007. name: "Megamacro",
  30008. height: math.unit(150, "km")
  30009. },
  30010. ]
  30011. ))
  30012. characterMakers.push(() => makeCharacter(
  30013. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30014. {
  30015. front: {
  30016. height: math.unit(4.2, "meters"),
  30017. name: "Front",
  30018. image: {
  30019. source: "./media/characters/sydney/front.svg",
  30020. extra: 1323 / 1277,
  30021. bottom: 111 / 1434
  30022. }
  30023. },
  30024. },
  30025. [
  30026. {
  30027. name: "Normal",
  30028. height: math.unit(4.2, "meters"),
  30029. default: true
  30030. },
  30031. ]
  30032. ))
  30033. characterMakers.push(() => makeCharacter(
  30034. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30035. {
  30036. back: {
  30037. height: math.unit(201, "feet"),
  30038. name: "Back",
  30039. image: {
  30040. source: "./media/characters/jessica/back.svg",
  30041. extra: 273 / 259,
  30042. bottom: 7 / 280
  30043. }
  30044. },
  30045. },
  30046. [
  30047. {
  30048. name: "Normal",
  30049. height: math.unit(201, "feet"),
  30050. default: true
  30051. },
  30052. {
  30053. name: "Megamacro",
  30054. height: math.unit(8, "miles")
  30055. },
  30056. ]
  30057. ))
  30058. characterMakers.push(() => makeCharacter(
  30059. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30060. {
  30061. side: {
  30062. height: math.unit(5.6, "m"),
  30063. weight: math.unit(8000, "kg"),
  30064. name: "Side",
  30065. image: {
  30066. source: "./media/characters/victoria/side.svg",
  30067. extra: 1542/1229,
  30068. bottom: 124/1666
  30069. }
  30070. },
  30071. maw: {
  30072. height: math.unit(7.14, "feet"),
  30073. name: "Maw",
  30074. image: {
  30075. source: "./media/characters/victoria/maw.svg"
  30076. }
  30077. },
  30078. },
  30079. [
  30080. {
  30081. name: "Normal",
  30082. height: math.unit(5.6, "m"),
  30083. default: true
  30084. },
  30085. ]
  30086. ))
  30087. characterMakers.push(() => makeCharacter(
  30088. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30089. {
  30090. front: {
  30091. height: math.unit(5 + 6 / 12, "feet"),
  30092. name: "Front",
  30093. image: {
  30094. source: "./media/characters/cat/front.svg",
  30095. extra: 1449/1295,
  30096. bottom: 34/1483
  30097. },
  30098. form: "cat",
  30099. default: true
  30100. },
  30101. back: {
  30102. height: math.unit(5 + 6 / 12, "feet"),
  30103. name: "Back",
  30104. image: {
  30105. source: "./media/characters/cat/back.svg",
  30106. extra: 1466/1301,
  30107. bottom: 19/1485
  30108. },
  30109. form: "cat"
  30110. },
  30111. taur: {
  30112. height: math.unit(7, "feet"),
  30113. name: "Taur",
  30114. image: {
  30115. source: "./media/characters/cat/taur.svg",
  30116. extra: 1389/1233,
  30117. bottom: 83/1472
  30118. },
  30119. form: "taur",
  30120. default: true
  30121. },
  30122. lucarioFront: {
  30123. height: math.unit(4, "feet"),
  30124. name: "Lucario (Front)",
  30125. image: {
  30126. source: "./media/characters/cat/lucario-front.svg",
  30127. extra: 1149/1019,
  30128. bottom: 84/1233
  30129. },
  30130. form: "lucario",
  30131. default: true
  30132. },
  30133. lucarioBack: {
  30134. height: math.unit(4, "feet"),
  30135. name: "Lucario (Back)",
  30136. image: {
  30137. source: "./media/characters/cat/lucario-back.svg",
  30138. extra: 1190/1059,
  30139. bottom: 33/1223
  30140. },
  30141. form: "lucario"
  30142. },
  30143. megaLucario: {
  30144. height: math.unit(4, "feet"),
  30145. name: "Mega Lucario",
  30146. image: {
  30147. source: "./media/characters/cat/mega-lucario.svg",
  30148. extra: 1515 / 1319,
  30149. bottom: 63 / 1578
  30150. },
  30151. form: "lucario"
  30152. },
  30153. nickit: {
  30154. height: math.unit(2, "feet"),
  30155. name: "Nickit",
  30156. image: {
  30157. source: "./media/characters/cat/nickit.svg",
  30158. extra: 1980 / 1585,
  30159. bottom: 102 / 2082
  30160. },
  30161. form: "nickit",
  30162. default: true
  30163. },
  30164. lopunnyFront: {
  30165. height: math.unit(5, "feet"),
  30166. name: "Lopunny (Front)",
  30167. image: {
  30168. source: "./media/characters/cat/lopunny-front.svg",
  30169. extra: 1782 / 1469,
  30170. bottom: 38 / 1820
  30171. },
  30172. form: "lopunny",
  30173. default: true
  30174. },
  30175. lopunnyBack: {
  30176. height: math.unit(5, "feet"),
  30177. name: "Lopunny (Back)",
  30178. image: {
  30179. source: "./media/characters/cat/lopunny-back.svg",
  30180. extra: 1660 / 1490,
  30181. bottom: 25 / 1685
  30182. },
  30183. form: "lopunny"
  30184. },
  30185. },
  30186. [
  30187. {
  30188. name: "Really small",
  30189. height: math.unit(1, "nm")
  30190. },
  30191. {
  30192. name: "Micro",
  30193. height: math.unit(5, "inches")
  30194. },
  30195. {
  30196. name: "Normal",
  30197. height: math.unit(5 + 6 / 12, "feet"),
  30198. default: true
  30199. },
  30200. {
  30201. name: "Macro",
  30202. height: math.unit(50, "feet")
  30203. },
  30204. {
  30205. name: "Macro+",
  30206. height: math.unit(150, "feet")
  30207. },
  30208. {
  30209. name: "Megamacro",
  30210. height: math.unit(100, "miles")
  30211. },
  30212. ]
  30213. ))
  30214. characterMakers.push(() => makeCharacter(
  30215. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30216. {
  30217. front: {
  30218. height: math.unit(63.4, "meters"),
  30219. weight: math.unit(3.28349e+6, "kilograms"),
  30220. name: "Front",
  30221. image: {
  30222. source: "./media/characters/kirina-violet/front.svg",
  30223. extra: 2812 / 2725,
  30224. bottom: 0 / 2812
  30225. }
  30226. },
  30227. back: {
  30228. height: math.unit(63.4, "meters"),
  30229. weight: math.unit(3.28349e+6, "kilograms"),
  30230. name: "Back",
  30231. image: {
  30232. source: "./media/characters/kirina-violet/back.svg",
  30233. extra: 2812 / 2725,
  30234. bottom: 0 / 2812
  30235. }
  30236. },
  30237. mouth: {
  30238. height: math.unit(4.35, "meters"),
  30239. name: "Mouth",
  30240. image: {
  30241. source: "./media/characters/kirina-violet/mouth.svg"
  30242. }
  30243. },
  30244. paw: {
  30245. height: math.unit(5.6, "meters"),
  30246. name: "Paw",
  30247. image: {
  30248. source: "./media/characters/kirina-violet/paw.svg"
  30249. }
  30250. },
  30251. tail: {
  30252. height: math.unit(18, "meters"),
  30253. name: "Tail",
  30254. image: {
  30255. source: "./media/characters/kirina-violet/tail.svg"
  30256. }
  30257. },
  30258. },
  30259. [
  30260. {
  30261. name: "Macro",
  30262. height: math.unit(63.4, "meters"),
  30263. default: true
  30264. },
  30265. ]
  30266. ))
  30267. characterMakers.push(() => makeCharacter(
  30268. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30269. {
  30270. front: {
  30271. height: math.unit(75, "feet"),
  30272. name: "Front",
  30273. image: {
  30274. source: "./media/characters/cat-gigachu/front.svg",
  30275. extra: 1239/1027,
  30276. bottom: 32/1271
  30277. }
  30278. },
  30279. back: {
  30280. height: math.unit(75, "feet"),
  30281. name: "Back",
  30282. image: {
  30283. source: "./media/characters/cat-gigachu/back.svg",
  30284. extra: 1229/1030,
  30285. bottom: 9/1238
  30286. }
  30287. },
  30288. },
  30289. [
  30290. {
  30291. name: "Dynamax",
  30292. height: math.unit(75, "feet"),
  30293. default: true
  30294. },
  30295. ]
  30296. ))
  30297. characterMakers.push(() => makeCharacter(
  30298. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30299. {
  30300. front: {
  30301. height: math.unit(6, "feet"),
  30302. weight: math.unit(150, "lb"),
  30303. name: "Front",
  30304. image: {
  30305. source: "./media/characters/sfaiyan/front.svg",
  30306. extra: 999 / 978,
  30307. bottom: 5 / 1004
  30308. }
  30309. },
  30310. },
  30311. [
  30312. {
  30313. name: "Normal",
  30314. height: math.unit(1.82, "meters")
  30315. },
  30316. {
  30317. name: "Giant",
  30318. height: math.unit(2.27, "km"),
  30319. default: true
  30320. },
  30321. ]
  30322. ))
  30323. characterMakers.push(() => makeCharacter(
  30324. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30325. {
  30326. front: {
  30327. height: math.unit(179, "cm"),
  30328. weight: math.unit(100, "kg"),
  30329. name: "Front",
  30330. image: {
  30331. source: "./media/characters/raunehkeli/front.svg",
  30332. extra: 1934 / 1926,
  30333. bottom: 0 / 1934
  30334. }
  30335. },
  30336. },
  30337. [
  30338. {
  30339. name: "Normal",
  30340. height: math.unit(179, "cm")
  30341. },
  30342. {
  30343. name: "Maximum",
  30344. height: math.unit(575, "meters"),
  30345. default: true
  30346. },
  30347. ]
  30348. ))
  30349. characterMakers.push(() => makeCharacter(
  30350. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30351. {
  30352. front: {
  30353. height: math.unit(6, "feet"),
  30354. weight: math.unit(150, "lb"),
  30355. name: "Front",
  30356. image: {
  30357. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30358. extra: 2625 / 2518,
  30359. bottom: 60 / 2685
  30360. }
  30361. },
  30362. },
  30363. [
  30364. {
  30365. name: "Normal",
  30366. height: math.unit(6 + 2 / 12, "feet")
  30367. },
  30368. {
  30369. name: "Macro",
  30370. height: math.unit(1180, "feet"),
  30371. default: true
  30372. },
  30373. ]
  30374. ))
  30375. characterMakers.push(() => makeCharacter(
  30376. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30377. {
  30378. front: {
  30379. height: math.unit(5 + 6 / 12, "feet"),
  30380. weight: math.unit(108, "lb"),
  30381. name: "Front",
  30382. image: {
  30383. source: "./media/characters/lilith-zott/front.svg",
  30384. extra: 2510 / 2238,
  30385. bottom: 100 / 2610
  30386. }
  30387. },
  30388. frontDressed: {
  30389. height: math.unit(5 + 6 / 12, "feet"),
  30390. weight: math.unit(108, "lb"),
  30391. name: "Front (Dressed)",
  30392. image: {
  30393. source: "./media/characters/lilith-zott/front-dressed.svg",
  30394. extra: 2510 / 2238,
  30395. bottom: 100 / 2610
  30396. }
  30397. },
  30398. },
  30399. [
  30400. {
  30401. name: "Normal",
  30402. height: math.unit(5 + 6 / 12, "feet")
  30403. },
  30404. {
  30405. name: "Macro",
  30406. height: math.unit(1030, "feet"),
  30407. default: true
  30408. },
  30409. ]
  30410. ))
  30411. characterMakers.push(() => makeCharacter(
  30412. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30413. {
  30414. front: {
  30415. height: math.unit(6, "feet"),
  30416. weight: math.unit(150, "lb"),
  30417. name: "Front",
  30418. image: {
  30419. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30420. extra: 2567 / 2435,
  30421. bottom: 39 / 2606
  30422. }
  30423. },
  30424. frontSuper: {
  30425. height: math.unit(6, "feet"),
  30426. name: "Front (Super)",
  30427. image: {
  30428. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30429. extra: 2567 / 2435,
  30430. bottom: 39 / 2606
  30431. }
  30432. },
  30433. },
  30434. [
  30435. {
  30436. name: "Normal",
  30437. height: math.unit(5 + 10 / 12, "feet")
  30438. },
  30439. {
  30440. name: "Macro",
  30441. height: math.unit(1100, "feet"),
  30442. default: true
  30443. },
  30444. ]
  30445. ))
  30446. characterMakers.push(() => makeCharacter(
  30447. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30448. {
  30449. front: {
  30450. height: math.unit(100, "miles"),
  30451. name: "Front",
  30452. image: {
  30453. source: "./media/characters/sona/front.svg",
  30454. extra: 2433 / 2201,
  30455. bottom: 53 / 2486
  30456. }
  30457. },
  30458. foot: {
  30459. height: math.unit(16.1, "miles"),
  30460. name: "Foot",
  30461. image: {
  30462. source: "./media/characters/sona/foot.svg"
  30463. }
  30464. },
  30465. },
  30466. [
  30467. {
  30468. name: "Macro",
  30469. height: math.unit(100, "miles"),
  30470. default: true
  30471. },
  30472. ]
  30473. ))
  30474. characterMakers.push(() => makeCharacter(
  30475. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30476. {
  30477. front: {
  30478. height: math.unit(6, "feet"),
  30479. weight: math.unit(150, "lb"),
  30480. name: "Front",
  30481. image: {
  30482. source: "./media/characters/bailey/front.svg",
  30483. extra: 1778 / 1724,
  30484. bottom: 30 / 1808
  30485. }
  30486. },
  30487. },
  30488. [
  30489. {
  30490. name: "Micro",
  30491. height: math.unit(4, "inches")
  30492. },
  30493. {
  30494. name: "Normal",
  30495. height: math.unit(5 + 5 / 12, "feet"),
  30496. default: true
  30497. },
  30498. {
  30499. name: "Macro",
  30500. height: math.unit(250, "feet")
  30501. },
  30502. {
  30503. name: "Megamacro",
  30504. height: math.unit(100, "miles")
  30505. },
  30506. ]
  30507. ))
  30508. characterMakers.push(() => makeCharacter(
  30509. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30510. {
  30511. front: {
  30512. height: math.unit(5 + 2 / 12, "feet"),
  30513. weight: math.unit(120, "lb"),
  30514. name: "Front",
  30515. image: {
  30516. source: "./media/characters/snaps/front.svg",
  30517. extra: 2370 / 2177,
  30518. bottom: 48 / 2418
  30519. }
  30520. },
  30521. back: {
  30522. height: math.unit(5 + 2 / 12, "feet"),
  30523. weight: math.unit(120, "lb"),
  30524. name: "Back",
  30525. image: {
  30526. source: "./media/characters/snaps/back.svg",
  30527. extra: 2408 / 2258,
  30528. bottom: 15 / 2423
  30529. }
  30530. },
  30531. },
  30532. [
  30533. {
  30534. name: "Micro",
  30535. height: math.unit(9, "inches")
  30536. },
  30537. {
  30538. name: "Normal",
  30539. height: math.unit(5 + 2 / 12, "feet"),
  30540. default: true
  30541. },
  30542. {
  30543. name: "Mini Macro",
  30544. height: math.unit(10, "feet")
  30545. },
  30546. ]
  30547. ))
  30548. characterMakers.push(() => makeCharacter(
  30549. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30550. {
  30551. front: {
  30552. height: math.unit(1.8, "meters"),
  30553. weight: math.unit(85, "kg"),
  30554. name: "Front",
  30555. image: {
  30556. source: "./media/characters/azteck/front.svg",
  30557. extra: 2815 / 2625,
  30558. bottom: 89 / 2904
  30559. }
  30560. },
  30561. back: {
  30562. height: math.unit(1.8, "meters"),
  30563. weight: math.unit(85, "kg"),
  30564. name: "Back",
  30565. image: {
  30566. source: "./media/characters/azteck/back.svg",
  30567. extra: 2856 / 2648,
  30568. bottom: 85 / 2941
  30569. }
  30570. },
  30571. frontDressed: {
  30572. height: math.unit(1.8, "meters"),
  30573. weight: math.unit(85, "kg"),
  30574. name: "Front (Dressed)",
  30575. image: {
  30576. source: "./media/characters/azteck/front-dressed.svg",
  30577. extra: 2147 / 2003,
  30578. bottom: 68 / 2215
  30579. }
  30580. },
  30581. head: {
  30582. height: math.unit(0.47, "meters"),
  30583. weight: math.unit(85, "kg"),
  30584. name: "Head",
  30585. image: {
  30586. source: "./media/characters/azteck/head.svg"
  30587. }
  30588. },
  30589. },
  30590. [
  30591. {
  30592. name: "Bite sized",
  30593. height: math.unit(16, "cm")
  30594. },
  30595. {
  30596. name: "Normal",
  30597. height: math.unit(1.8, "meters"),
  30598. default: true
  30599. },
  30600. ]
  30601. ))
  30602. characterMakers.push(() => makeCharacter(
  30603. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30604. {
  30605. front: {
  30606. height: math.unit(6, "feet"),
  30607. weight: math.unit(150, "lb"),
  30608. name: "Front",
  30609. image: {
  30610. source: "./media/characters/pidge/front.svg",
  30611. extra: 1936/1820,
  30612. bottom: 0/1936
  30613. }
  30614. },
  30615. back: {
  30616. height: math.unit(6, "feet"),
  30617. weight: math.unit(150, "lb"),
  30618. name: "Back",
  30619. image: {
  30620. source: "./media/characters/pidge/back.svg",
  30621. extra: 1938/1843,
  30622. bottom: 0/1938
  30623. }
  30624. },
  30625. casual: {
  30626. height: math.unit(6, "feet"),
  30627. weight: math.unit(150, "lb"),
  30628. name: "Casual",
  30629. image: {
  30630. source: "./media/characters/pidge/casual.svg",
  30631. extra: 1936/1820,
  30632. bottom: 0/1936
  30633. }
  30634. },
  30635. tech: {
  30636. height: math.unit(6, "feet"),
  30637. weight: math.unit(150, "lb"),
  30638. name: "Tech",
  30639. image: {
  30640. source: "./media/characters/pidge/tech.svg",
  30641. extra: 1802/1682,
  30642. bottom: 0/1802
  30643. }
  30644. },
  30645. head: {
  30646. height: math.unit(1.61, "feet"),
  30647. name: "Head",
  30648. image: {
  30649. source: "./media/characters/pidge/head.svg"
  30650. }
  30651. },
  30652. collar: {
  30653. height: math.unit(0.82, "feet"),
  30654. name: "Collar",
  30655. image: {
  30656. source: "./media/characters/pidge/collar.svg"
  30657. }
  30658. },
  30659. },
  30660. [
  30661. {
  30662. name: "Macro",
  30663. height: math.unit(2, "mile"),
  30664. default: true
  30665. },
  30666. {
  30667. name: "PUPPY",
  30668. height: math.unit(20, "miles")
  30669. },
  30670. ]
  30671. ))
  30672. characterMakers.push(() => makeCharacter(
  30673. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30674. {
  30675. front: {
  30676. height: math.unit(6, "feet"),
  30677. weight: math.unit(150, "lb"),
  30678. name: "Front",
  30679. image: {
  30680. source: "./media/characters/en/front.svg",
  30681. extra: 1697 / 1563,
  30682. bottom: 103 / 1800
  30683. }
  30684. },
  30685. back: {
  30686. height: math.unit(6, "feet"),
  30687. weight: math.unit(150, "lb"),
  30688. name: "Back",
  30689. image: {
  30690. source: "./media/characters/en/back.svg",
  30691. extra: 1700 / 1570,
  30692. bottom: 51 / 1751
  30693. }
  30694. },
  30695. frontDressed: {
  30696. height: math.unit(6, "feet"),
  30697. weight: math.unit(150, "lb"),
  30698. name: "Front (Dressed)",
  30699. image: {
  30700. source: "./media/characters/en/front-dressed.svg",
  30701. extra: 1697 / 1563,
  30702. bottom: 103 / 1800
  30703. }
  30704. },
  30705. backDressed: {
  30706. height: math.unit(6, "feet"),
  30707. weight: math.unit(150, "lb"),
  30708. name: "Back (Dressed)",
  30709. image: {
  30710. source: "./media/characters/en/back-dressed.svg",
  30711. extra: 1700 / 1570,
  30712. bottom: 51 / 1751
  30713. }
  30714. },
  30715. },
  30716. [
  30717. {
  30718. name: "Macro",
  30719. height: math.unit(210, "feet"),
  30720. default: true
  30721. },
  30722. ]
  30723. ))
  30724. characterMakers.push(() => makeCharacter(
  30725. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30726. {
  30727. front: {
  30728. height: math.unit(6, "feet"),
  30729. weight: math.unit(150, "lb"),
  30730. name: "Front",
  30731. image: {
  30732. source: "./media/characters/haze-orris/front.svg",
  30733. extra: 3975 / 3525,
  30734. bottom: 137 / 4112
  30735. }
  30736. },
  30737. },
  30738. [
  30739. {
  30740. name: "Micro",
  30741. height: math.unit(150, "mm"),
  30742. default: true
  30743. },
  30744. ]
  30745. ))
  30746. characterMakers.push(() => makeCharacter(
  30747. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30748. {
  30749. front: {
  30750. height: math.unit(6, "feet"),
  30751. weight: math.unit(150, "lb"),
  30752. name: "Front",
  30753. image: {
  30754. source: "./media/characters/casselene-yaro/front.svg",
  30755. extra: 4721 / 4541,
  30756. bottom: 82 / 4803
  30757. }
  30758. },
  30759. back: {
  30760. height: math.unit(6, "feet"),
  30761. weight: math.unit(150, "lb"),
  30762. name: "Back",
  30763. image: {
  30764. source: "./media/characters/casselene-yaro/back.svg",
  30765. extra: 4569 / 4377,
  30766. bottom: 69 / 4638
  30767. }
  30768. },
  30769. dressed: {
  30770. height: math.unit(6, "feet"),
  30771. weight: math.unit(150, "lb"),
  30772. name: "Dressed",
  30773. image: {
  30774. source: "./media/characters/casselene-yaro/dressed.svg",
  30775. extra: 4721 / 4541,
  30776. bottom: 82 / 4803
  30777. }
  30778. },
  30779. maw: {
  30780. height: math.unit(1, "feet"),
  30781. name: "Maw",
  30782. image: {
  30783. source: "./media/characters/casselene-yaro/maw.svg"
  30784. }
  30785. },
  30786. },
  30787. [
  30788. {
  30789. name: "Macro",
  30790. height: math.unit(190, "feet"),
  30791. default: true
  30792. },
  30793. ]
  30794. ))
  30795. characterMakers.push(() => makeCharacter(
  30796. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30797. {
  30798. front: {
  30799. height: math.unit(10, "feet"),
  30800. weight: math.unit(15015, "lb"),
  30801. name: "Front",
  30802. image: {
  30803. source: "./media/characters/platine/front.svg",
  30804. extra: 1428/1353,
  30805. bottom: 31/1459
  30806. }
  30807. },
  30808. },
  30809. [
  30810. {
  30811. name: "Normal",
  30812. height: math.unit(10, "feet"),
  30813. default: true
  30814. },
  30815. {
  30816. name: "Macro",
  30817. height: math.unit(100, "feet")
  30818. },
  30819. {
  30820. name: "Megamacro",
  30821. height: math.unit(1000, "feet")
  30822. },
  30823. ]
  30824. ))
  30825. characterMakers.push(() => makeCharacter(
  30826. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30827. {
  30828. front: {
  30829. height: math.unit(15 + 5 / 12, "feet"),
  30830. weight: math.unit(4600, "lb"),
  30831. name: "Front",
  30832. image: {
  30833. source: "./media/characters/neapolitan-ananassa/front.svg",
  30834. extra: 2903 / 2736,
  30835. bottom: 0 / 2903
  30836. }
  30837. },
  30838. side: {
  30839. height: math.unit(15 + 5 / 12, "feet"),
  30840. weight: math.unit(4600, "lb"),
  30841. name: "Side",
  30842. image: {
  30843. source: "./media/characters/neapolitan-ananassa/side.svg",
  30844. extra: 2925 / 2719,
  30845. bottom: 0 / 2925
  30846. }
  30847. },
  30848. back: {
  30849. height: math.unit(15 + 5 / 12, "feet"),
  30850. weight: math.unit(4600, "lb"),
  30851. name: "Back",
  30852. image: {
  30853. source: "./media/characters/neapolitan-ananassa/back.svg",
  30854. extra: 2903 / 2736,
  30855. bottom: 0 / 2903
  30856. }
  30857. },
  30858. },
  30859. [
  30860. {
  30861. name: "Normal",
  30862. height: math.unit(15 + 5 / 12, "feet"),
  30863. default: true
  30864. },
  30865. {
  30866. name: "Post-Millenium",
  30867. height: math.unit(35 + 5 / 12, "feet")
  30868. },
  30869. {
  30870. name: "Post-Era",
  30871. height: math.unit(450 + 5 / 12, "feet")
  30872. },
  30873. ]
  30874. ))
  30875. characterMakers.push(() => makeCharacter(
  30876. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30877. {
  30878. front: {
  30879. height: math.unit(300, "meters"),
  30880. weight: math.unit(125000, "tonnes"),
  30881. name: "Front",
  30882. image: {
  30883. source: "./media/characters/pazuzu/front.svg",
  30884. extra: 877 / 794,
  30885. bottom: 47 / 924
  30886. }
  30887. },
  30888. },
  30889. [
  30890. {
  30891. name: "Macro",
  30892. height: math.unit(300, "meters"),
  30893. default: true
  30894. },
  30895. ]
  30896. ))
  30897. characterMakers.push(() => makeCharacter(
  30898. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30899. {
  30900. side: {
  30901. height: math.unit(10 + 7 / 12, "feet"),
  30902. weight: math.unit(2.5, "tons"),
  30903. name: "Side",
  30904. image: {
  30905. source: "./media/characters/aasha/side.svg",
  30906. extra: 1345 / 1245,
  30907. bottom: 111 / 1456
  30908. }
  30909. },
  30910. back: {
  30911. height: math.unit(10 + 7 / 12, "feet"),
  30912. weight: math.unit(2.5, "tons"),
  30913. name: "Back",
  30914. image: {
  30915. source: "./media/characters/aasha/back.svg",
  30916. extra: 1133 / 1057,
  30917. bottom: 257 / 1390
  30918. }
  30919. },
  30920. },
  30921. [
  30922. {
  30923. name: "Normal",
  30924. height: math.unit(10 + 7 / 12, "feet"),
  30925. default: true
  30926. },
  30927. ]
  30928. ))
  30929. characterMakers.push(() => makeCharacter(
  30930. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30931. {
  30932. front: {
  30933. height: math.unit(6 + 3 / 12, "feet"),
  30934. name: "Front",
  30935. image: {
  30936. source: "./media/characters/nevan/front.svg",
  30937. extra: 704 / 704,
  30938. bottom: 28 / 732
  30939. }
  30940. },
  30941. back: {
  30942. height: math.unit(6 + 3 / 12, "feet"),
  30943. name: "Back",
  30944. image: {
  30945. source: "./media/characters/nevan/back.svg",
  30946. extra: 714 / 714,
  30947. bottom: 21 / 735
  30948. }
  30949. },
  30950. frontFlaccid: {
  30951. height: math.unit(6 + 3 / 12, "feet"),
  30952. name: "Front (Flaccid)",
  30953. image: {
  30954. source: "./media/characters/nevan/front-flaccid.svg",
  30955. extra: 704 / 704,
  30956. bottom: 28 / 732
  30957. }
  30958. },
  30959. frontErect: {
  30960. height: math.unit(6 + 3 / 12, "feet"),
  30961. name: "Front (Erect)",
  30962. image: {
  30963. source: "./media/characters/nevan/front-erect.svg",
  30964. extra: 704 / 704,
  30965. bottom: 28 / 732
  30966. }
  30967. },
  30968. backFlaccid: {
  30969. height: math.unit(6 + 3 / 12, "feet"),
  30970. name: "Back (Flaccid)",
  30971. image: {
  30972. source: "./media/characters/nevan/back-flaccid.svg",
  30973. extra: 714 / 714,
  30974. bottom: 21 / 735
  30975. }
  30976. },
  30977. },
  30978. [
  30979. {
  30980. name: "Normal",
  30981. height: math.unit(6 + 3 / 12, "feet"),
  30982. default: true
  30983. },
  30984. ]
  30985. ))
  30986. characterMakers.push(() => makeCharacter(
  30987. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30988. {
  30989. front: {
  30990. height: math.unit(4, "feet"),
  30991. name: "Front",
  30992. image: {
  30993. source: "./media/characters/arhan/front.svg",
  30994. extra: 3368 / 3133,
  30995. bottom: 0 / 3368
  30996. }
  30997. },
  30998. side: {
  30999. height: math.unit(4, "feet"),
  31000. name: "Side",
  31001. image: {
  31002. source: "./media/characters/arhan/side.svg",
  31003. extra: 3347 / 3105,
  31004. bottom: 0 / 3347
  31005. }
  31006. },
  31007. tongue: {
  31008. height: math.unit(1.42, "feet"),
  31009. name: "Tongue",
  31010. image: {
  31011. source: "./media/characters/arhan/tongue.svg"
  31012. }
  31013. },
  31014. head: {
  31015. height: math.unit(0.85, "feet"),
  31016. name: "Head",
  31017. image: {
  31018. source: "./media/characters/arhan/head.svg"
  31019. }
  31020. },
  31021. },
  31022. [
  31023. {
  31024. name: "Normal",
  31025. height: math.unit(4, "feet"),
  31026. default: true
  31027. },
  31028. ]
  31029. ))
  31030. characterMakers.push(() => makeCharacter(
  31031. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31032. {
  31033. front: {
  31034. height: math.unit(5 + 7.5 / 12, "feet"),
  31035. weight: math.unit(120, "lb"),
  31036. name: "Front",
  31037. image: {
  31038. source: "./media/characters/digi-duncan/front.svg",
  31039. extra: 330 / 326,
  31040. bottom: 16 / 346
  31041. }
  31042. },
  31043. side: {
  31044. height: math.unit(5 + 7.5 / 12, "feet"),
  31045. weight: math.unit(120, "lb"),
  31046. name: "Side",
  31047. image: {
  31048. source: "./media/characters/digi-duncan/side.svg",
  31049. extra: 341 / 337,
  31050. bottom: 1 / 342
  31051. }
  31052. },
  31053. back: {
  31054. height: math.unit(5 + 7.5 / 12, "feet"),
  31055. weight: math.unit(120, "lb"),
  31056. name: "Back",
  31057. image: {
  31058. source: "./media/characters/digi-duncan/back.svg",
  31059. extra: 330 / 326,
  31060. bottom: 12 / 342
  31061. }
  31062. },
  31063. },
  31064. [
  31065. {
  31066. name: "Speck",
  31067. height: math.unit(0.25, "mm")
  31068. },
  31069. {
  31070. name: "Micro",
  31071. height: math.unit(5, "mm")
  31072. },
  31073. {
  31074. name: "Tiny",
  31075. height: math.unit(0.5, "inches"),
  31076. default: true
  31077. },
  31078. {
  31079. name: "Human",
  31080. height: math.unit(5 + 7.5 / 12, "feet")
  31081. },
  31082. {
  31083. name: "Minigiant",
  31084. height: math.unit(8 + 5.25, "feet")
  31085. },
  31086. {
  31087. name: "Giant",
  31088. height: math.unit(2000, "feet")
  31089. },
  31090. {
  31091. name: "Mega",
  31092. height: math.unit(371.1, "miles")
  31093. },
  31094. ]
  31095. ))
  31096. characterMakers.push(() => makeCharacter(
  31097. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31098. {
  31099. front: {
  31100. height: math.unit(2, "meters"),
  31101. weight: math.unit(350, "kg"),
  31102. name: "Front",
  31103. image: {
  31104. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31105. extra: 898 / 838,
  31106. bottom: 9 / 907
  31107. }
  31108. },
  31109. },
  31110. [
  31111. {
  31112. name: "Micro",
  31113. height: math.unit(8, "meters")
  31114. },
  31115. {
  31116. name: "Normal",
  31117. height: math.unit(50, "meters"),
  31118. default: true
  31119. },
  31120. {
  31121. name: "Macro",
  31122. height: math.unit(500, "meters")
  31123. },
  31124. ]
  31125. ))
  31126. characterMakers.push(() => makeCharacter(
  31127. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31128. {
  31129. front: {
  31130. height: math.unit(6 + 6 / 12, "feet"),
  31131. name: "Front",
  31132. image: {
  31133. source: "./media/characters/khardesh/front.svg",
  31134. extra: 1788/1596,
  31135. bottom: 66/1854
  31136. }
  31137. },
  31138. back: {
  31139. height: math.unit(6 + 6 / 12, "feet"),
  31140. name: "Back",
  31141. image: {
  31142. source: "./media/characters/khardesh/back.svg",
  31143. extra: 1781/1584,
  31144. bottom: 68/1849
  31145. }
  31146. },
  31147. },
  31148. [
  31149. {
  31150. name: "Normal",
  31151. height: math.unit(6 + 6 / 12, "feet"),
  31152. default: true
  31153. },
  31154. {
  31155. name: "Normal+",
  31156. height: math.unit(4, "meters")
  31157. },
  31158. {
  31159. name: "Macro",
  31160. height: math.unit(50, "meters")
  31161. },
  31162. {
  31163. name: "Macro+",
  31164. height: math.unit(100, "meters")
  31165. },
  31166. {
  31167. name: "Megamacro",
  31168. height: math.unit(20, "km")
  31169. },
  31170. ]
  31171. ))
  31172. characterMakers.push(() => makeCharacter(
  31173. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31174. {
  31175. front: {
  31176. height: math.unit(6, "feet"),
  31177. weight: math.unit(150, "lb"),
  31178. name: "Front",
  31179. image: {
  31180. source: "./media/characters/kosho/front.svg",
  31181. extra: 1847 / 1847,
  31182. bottom: 86 / 1933
  31183. }
  31184. },
  31185. },
  31186. [
  31187. {
  31188. name: "Second-stage micro",
  31189. height: math.unit(0.5, "inches")
  31190. },
  31191. {
  31192. name: "First-stage micro",
  31193. height: math.unit(6, "inches")
  31194. },
  31195. {
  31196. name: "Normal",
  31197. height: math.unit(6, "feet"),
  31198. default: true
  31199. },
  31200. {
  31201. name: "First-stage macro",
  31202. height: math.unit(72, "feet")
  31203. },
  31204. {
  31205. name: "Second-stage macro",
  31206. height: math.unit(864, "feet")
  31207. },
  31208. ]
  31209. ))
  31210. characterMakers.push(() => makeCharacter(
  31211. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31212. {
  31213. normal: {
  31214. height: math.unit(4 + 6 / 12, "feet"),
  31215. name: "Normal",
  31216. image: {
  31217. source: "./media/characters/hydra/normal.svg",
  31218. extra: 2833 / 2634,
  31219. bottom: 68 / 2901
  31220. }
  31221. },
  31222. smol: {
  31223. height: math.unit(0.705, "inches"),
  31224. name: "Smol",
  31225. image: {
  31226. source: "./media/characters/hydra/smol.svg",
  31227. extra: 2715 / 2540,
  31228. bottom: 0 / 2715
  31229. }
  31230. },
  31231. },
  31232. [
  31233. {
  31234. name: "Normal",
  31235. height: math.unit(4 + 6 / 12, "feet"),
  31236. default: true
  31237. }
  31238. ]
  31239. ))
  31240. characterMakers.push(() => makeCharacter(
  31241. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31242. {
  31243. front: {
  31244. height: math.unit(0.6, "cm"),
  31245. name: "Front",
  31246. image: {
  31247. source: "./media/characters/daz/front.svg",
  31248. extra: 1682 / 1164,
  31249. bottom: 42 / 1724
  31250. }
  31251. },
  31252. },
  31253. [
  31254. {
  31255. name: "Normal",
  31256. height: math.unit(0.6, "cm"),
  31257. default: true
  31258. },
  31259. ]
  31260. ))
  31261. characterMakers.push(() => makeCharacter(
  31262. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31263. {
  31264. front: {
  31265. height: math.unit(6, "feet"),
  31266. weight: math.unit(235, "lb"),
  31267. name: "Front",
  31268. image: {
  31269. source: "./media/characters/theo-pangolin/front.svg",
  31270. extra: 1996 / 1969,
  31271. bottom: 115 / 2111
  31272. }
  31273. },
  31274. back: {
  31275. height: math.unit(6, "feet"),
  31276. weight: math.unit(235, "lb"),
  31277. name: "Back",
  31278. image: {
  31279. source: "./media/characters/theo-pangolin/back.svg",
  31280. extra: 1979 / 1979,
  31281. bottom: 40 / 2019
  31282. }
  31283. },
  31284. feral: {
  31285. height: math.unit(2, "feet"),
  31286. weight: math.unit(30, "lb"),
  31287. name: "Feral",
  31288. image: {
  31289. source: "./media/characters/theo-pangolin/feral.svg",
  31290. extra: 803 / 791,
  31291. bottom: 181 / 984
  31292. }
  31293. },
  31294. footFive: {
  31295. height: math.unit(1.43, "feet"),
  31296. name: "Foot (Five Toes)",
  31297. image: {
  31298. source: "./media/characters/theo-pangolin/foot-five.svg"
  31299. }
  31300. },
  31301. footFour: {
  31302. height: math.unit(1.43, "feet"),
  31303. name: "Foot (Four Toes)",
  31304. image: {
  31305. source: "./media/characters/theo-pangolin/foot-four.svg"
  31306. }
  31307. },
  31308. handFour: {
  31309. height: math.unit(0.81, "feet"),
  31310. name: "Hand (Four Fingers)",
  31311. image: {
  31312. source: "./media/characters/theo-pangolin/hand-four.svg"
  31313. }
  31314. },
  31315. handThree: {
  31316. height: math.unit(0.81, "feet"),
  31317. name: "Hand (Three Fingers)",
  31318. image: {
  31319. source: "./media/characters/theo-pangolin/hand-three.svg"
  31320. }
  31321. },
  31322. headFront: {
  31323. height: math.unit(1.37, "feet"),
  31324. name: "Head (Front)",
  31325. image: {
  31326. source: "./media/characters/theo-pangolin/head-front.svg"
  31327. }
  31328. },
  31329. headSide: {
  31330. height: math.unit(1.43, "feet"),
  31331. name: "Head (Side)",
  31332. image: {
  31333. source: "./media/characters/theo-pangolin/head-side.svg"
  31334. }
  31335. },
  31336. tongue: {
  31337. height: math.unit(2.29, "feet"),
  31338. name: "Tongue",
  31339. image: {
  31340. source: "./media/characters/theo-pangolin/tongue.svg"
  31341. }
  31342. },
  31343. },
  31344. [
  31345. {
  31346. name: "Normal",
  31347. height: math.unit(6, "feet")
  31348. },
  31349. {
  31350. name: "Macro",
  31351. height: math.unit(400, "feet"),
  31352. default: true
  31353. },
  31354. ]
  31355. ))
  31356. characterMakers.push(() => makeCharacter(
  31357. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31358. {
  31359. front: {
  31360. height: math.unit(6, "inches"),
  31361. weight: math.unit(0.036, "kg"),
  31362. name: "Front",
  31363. image: {
  31364. source: "./media/characters/renée/front.svg",
  31365. extra: 900 / 886,
  31366. bottom: 8 / 908
  31367. }
  31368. },
  31369. },
  31370. [
  31371. {
  31372. name: "Nano",
  31373. height: math.unit(1, "nm")
  31374. },
  31375. {
  31376. name: "Micro",
  31377. height: math.unit(1, "mm")
  31378. },
  31379. {
  31380. name: "Normal",
  31381. height: math.unit(6, "inches")
  31382. },
  31383. {
  31384. name: "Macro",
  31385. height: math.unit(2000, "feet"),
  31386. default: true
  31387. },
  31388. {
  31389. name: "Megamacro",
  31390. height: math.unit(2, "km")
  31391. },
  31392. {
  31393. name: "Gigamacro",
  31394. height: math.unit(2000, "km")
  31395. },
  31396. {
  31397. name: "Teramacro",
  31398. height: math.unit(250000, "km")
  31399. },
  31400. ]
  31401. ))
  31402. characterMakers.push(() => makeCharacter(
  31403. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31404. {
  31405. front: {
  31406. height: math.unit(4, "meters"),
  31407. weight: math.unit(150, "kg"),
  31408. name: "Front",
  31409. image: {
  31410. source: "./media/characters/caledvwlch/front.svg",
  31411. extra: 1760 / 1551,
  31412. bottom: 28 / 1788
  31413. }
  31414. },
  31415. side: {
  31416. height: math.unit(4, "meters"),
  31417. weight: math.unit(150, "kg"),
  31418. name: "Side",
  31419. image: {
  31420. source: "./media/characters/caledvwlch/side.svg",
  31421. extra: 1605 / 1536,
  31422. bottom: 31 / 1636
  31423. }
  31424. },
  31425. back: {
  31426. height: math.unit(4, "meters"),
  31427. weight: math.unit(150, "kg"),
  31428. name: "Back",
  31429. image: {
  31430. source: "./media/characters/caledvwlch/back.svg",
  31431. extra: 1635 / 1565,
  31432. bottom: 27 / 1662
  31433. }
  31434. },
  31435. },
  31436. [
  31437. {
  31438. name: "\"Incognito\"",
  31439. height: math.unit(4, "meters")
  31440. },
  31441. {
  31442. name: "Small rampage",
  31443. height: math.unit(600, "meters")
  31444. },
  31445. {
  31446. name: "Mega",
  31447. height: math.unit(30, "km")
  31448. },
  31449. {
  31450. name: "Home-size",
  31451. height: math.unit(50, "km"),
  31452. default: true
  31453. },
  31454. {
  31455. name: "Giga",
  31456. height: math.unit(300, "km")
  31457. },
  31458. {
  31459. name: "Lounging",
  31460. height: math.unit(11000, "km")
  31461. },
  31462. {
  31463. name: "Planet snacking",
  31464. height: math.unit(2000000, "km")
  31465. },
  31466. ]
  31467. ))
  31468. characterMakers.push(() => makeCharacter(
  31469. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31470. {
  31471. front: {
  31472. height: math.unit(6, "feet"),
  31473. weight: math.unit(215, "lb"),
  31474. name: "Front",
  31475. image: {
  31476. source: "./media/characters/sapphire-svell/front.svg",
  31477. extra: 495 / 455,
  31478. bottom: 20 / 515
  31479. }
  31480. },
  31481. back: {
  31482. height: math.unit(6, "feet"),
  31483. weight: math.unit(216, "lb"),
  31484. name: "Back",
  31485. image: {
  31486. source: "./media/characters/sapphire-svell/back.svg",
  31487. extra: 497 / 477,
  31488. bottom: 7 / 504
  31489. }
  31490. },
  31491. maw: {
  31492. height: math.unit(1.57, "feet"),
  31493. name: "Maw",
  31494. image: {
  31495. source: "./media/characters/sapphire-svell/maw.svg"
  31496. }
  31497. },
  31498. foot: {
  31499. height: math.unit(1.07, "feet"),
  31500. name: "Foot",
  31501. image: {
  31502. source: "./media/characters/sapphire-svell/foot.svg"
  31503. }
  31504. },
  31505. toering: {
  31506. height: math.unit(1.7, "inch"),
  31507. name: "Toering",
  31508. image: {
  31509. source: "./media/characters/sapphire-svell/toering.svg"
  31510. }
  31511. },
  31512. },
  31513. [
  31514. {
  31515. name: "Normal",
  31516. height: math.unit(300, "feet"),
  31517. default: true
  31518. },
  31519. {
  31520. name: "Augmented",
  31521. height: math.unit(1250, "feet")
  31522. },
  31523. {
  31524. name: "Unleashed",
  31525. height: math.unit(3000, "feet")
  31526. },
  31527. ]
  31528. ))
  31529. characterMakers.push(() => makeCharacter(
  31530. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31531. {
  31532. side: {
  31533. height: math.unit(2 + 3 / 12, "feet"),
  31534. weight: math.unit(110, "lb"),
  31535. name: "Side",
  31536. image: {
  31537. source: "./media/characters/glitch-flux/side.svg",
  31538. extra: 997 / 805,
  31539. bottom: 20 / 1017
  31540. }
  31541. },
  31542. },
  31543. [
  31544. {
  31545. name: "Normal",
  31546. height: math.unit(2 + 3 / 12, "feet"),
  31547. default: true
  31548. },
  31549. ]
  31550. ))
  31551. characterMakers.push(() => makeCharacter(
  31552. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31553. {
  31554. front: {
  31555. height: math.unit(4, "meters"),
  31556. name: "Front",
  31557. image: {
  31558. source: "./media/characters/mid/front.svg",
  31559. extra: 507 / 476,
  31560. bottom: 17 / 524
  31561. }
  31562. },
  31563. back: {
  31564. height: math.unit(4, "meters"),
  31565. name: "Back",
  31566. image: {
  31567. source: "./media/characters/mid/back.svg",
  31568. extra: 519 / 487,
  31569. bottom: 7 / 526
  31570. }
  31571. },
  31572. stuck: {
  31573. height: math.unit(2.2, "meters"),
  31574. name: "Stuck",
  31575. image: {
  31576. source: "./media/characters/mid/stuck.svg",
  31577. extra: 1951 / 1869,
  31578. bottom: 88 / 2039
  31579. }
  31580. }
  31581. },
  31582. [
  31583. {
  31584. name: "Normal",
  31585. height: math.unit(4, "meters"),
  31586. default: true
  31587. },
  31588. {
  31589. name: "Big",
  31590. height: math.unit(10, "meters")
  31591. },
  31592. {
  31593. name: "Macro",
  31594. height: math.unit(800, "meters")
  31595. },
  31596. {
  31597. name: "Megamacro",
  31598. height: math.unit(100, "km")
  31599. },
  31600. {
  31601. name: "Overgrown",
  31602. height: math.unit(1, "parsec")
  31603. },
  31604. ]
  31605. ))
  31606. characterMakers.push(() => makeCharacter(
  31607. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31608. {
  31609. front: {
  31610. height: math.unit(2.5, "meters"),
  31611. weight: math.unit(225, "kg"),
  31612. name: "Front",
  31613. image: {
  31614. source: "./media/characters/iris/front.svg",
  31615. extra: 3348 / 3251,
  31616. bottom: 205 / 3553
  31617. }
  31618. },
  31619. maw: {
  31620. height: math.unit(0.56, "meter"),
  31621. name: "Maw",
  31622. image: {
  31623. source: "./media/characters/iris/maw.svg"
  31624. }
  31625. },
  31626. },
  31627. [
  31628. {
  31629. name: "Mewter cat",
  31630. height: math.unit(1.2, "meters")
  31631. },
  31632. {
  31633. name: "Minimacro",
  31634. height: math.unit(2.5, "meters"),
  31635. default: true
  31636. },
  31637. {
  31638. name: "Macro",
  31639. height: math.unit(180, "meters")
  31640. },
  31641. {
  31642. name: "Megamacro",
  31643. height: math.unit(2746, "meters")
  31644. },
  31645. ]
  31646. ))
  31647. characterMakers.push(() => makeCharacter(
  31648. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31649. {
  31650. front: {
  31651. height: math.unit(6, "feet"),
  31652. weight: math.unit(135, "lb"),
  31653. name: "Front",
  31654. image: {
  31655. source: "./media/characters/axel/front.svg",
  31656. extra: 908 / 908,
  31657. bottom: 58 / 966
  31658. }
  31659. },
  31660. side: {
  31661. height: math.unit(6, "feet"),
  31662. weight: math.unit(135, "lb"),
  31663. name: "Side",
  31664. image: {
  31665. source: "./media/characters/axel/side.svg",
  31666. extra: 958 / 958,
  31667. bottom: 11 / 969
  31668. }
  31669. },
  31670. back: {
  31671. height: math.unit(6, "feet"),
  31672. weight: math.unit(135, "lb"),
  31673. name: "Back",
  31674. image: {
  31675. source: "./media/characters/axel/back.svg",
  31676. extra: 887 / 887,
  31677. bottom: 34 / 921
  31678. }
  31679. },
  31680. head: {
  31681. height: math.unit(1.07, "feet"),
  31682. name: "Head",
  31683. image: {
  31684. source: "./media/characters/axel/head.svg"
  31685. }
  31686. },
  31687. beak: {
  31688. height: math.unit(1.4, "feet"),
  31689. name: "Beak",
  31690. image: {
  31691. source: "./media/characters/axel/beak.svg"
  31692. }
  31693. },
  31694. beakSide: {
  31695. height: math.unit(1.4, "feet"),
  31696. name: "Beak Side",
  31697. image: {
  31698. source: "./media/characters/axel/beak-side.svg"
  31699. }
  31700. },
  31701. sheath: {
  31702. height: math.unit(0.5, "feet"),
  31703. name: "Sheath",
  31704. image: {
  31705. source: "./media/characters/axel/sheath.svg"
  31706. }
  31707. },
  31708. dick: {
  31709. height: math.unit(0.98, "feet"),
  31710. name: "Dick",
  31711. image: {
  31712. source: "./media/characters/axel/dick.svg"
  31713. }
  31714. },
  31715. },
  31716. [
  31717. {
  31718. name: "Macro",
  31719. height: math.unit(68, "meters"),
  31720. default: true
  31721. },
  31722. ]
  31723. ))
  31724. characterMakers.push(() => makeCharacter(
  31725. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31726. {
  31727. front: {
  31728. height: math.unit(3.5, "meters"),
  31729. weight: math.unit(1200, "kg"),
  31730. name: "Front",
  31731. image: {
  31732. source: "./media/characters/joanna/front.svg",
  31733. extra: 1596 / 1488,
  31734. bottom: 29 / 1625
  31735. }
  31736. },
  31737. back: {
  31738. height: math.unit(3.5, "meters"),
  31739. weight: math.unit(1200, "kg"),
  31740. name: "Back",
  31741. image: {
  31742. source: "./media/characters/joanna/back.svg",
  31743. extra: 1594 / 1495,
  31744. bottom: 26 / 1620
  31745. }
  31746. },
  31747. frontShorts: {
  31748. height: math.unit(3.5, "meters"),
  31749. weight: math.unit(1200, "kg"),
  31750. name: "Front (Shorts)",
  31751. image: {
  31752. source: "./media/characters/joanna/front-shorts.svg",
  31753. extra: 1596 / 1488,
  31754. bottom: 29 / 1625
  31755. }
  31756. },
  31757. frontBiker: {
  31758. height: math.unit(3.5, "meters"),
  31759. weight: math.unit(1200, "kg"),
  31760. name: "Front (Biker)",
  31761. image: {
  31762. source: "./media/characters/joanna/front-biker.svg",
  31763. extra: 1596 / 1488,
  31764. bottom: 29 / 1625
  31765. }
  31766. },
  31767. backBiker: {
  31768. height: math.unit(3.5, "meters"),
  31769. weight: math.unit(1200, "kg"),
  31770. name: "Back (Biker)",
  31771. image: {
  31772. source: "./media/characters/joanna/back-biker.svg",
  31773. extra: 1594 / 1495,
  31774. bottom: 88 / 1682
  31775. }
  31776. },
  31777. bikeLeft: {
  31778. height: math.unit(2.4, "meters"),
  31779. weight: math.unit(1600, "kg"),
  31780. name: "Bike (Left)",
  31781. image: {
  31782. source: "./media/characters/joanna/bike-left.svg",
  31783. extra: 720 / 720,
  31784. bottom: 8 / 728
  31785. }
  31786. },
  31787. bikeRight: {
  31788. height: math.unit(2.4, "meters"),
  31789. weight: math.unit(1600, "kg"),
  31790. name: "Bike (Right)",
  31791. image: {
  31792. source: "./media/characters/joanna/bike-right.svg",
  31793. extra: 720 / 720,
  31794. bottom: 8 / 728
  31795. }
  31796. },
  31797. },
  31798. [
  31799. {
  31800. name: "Incognito",
  31801. height: math.unit(3.5, "meters")
  31802. },
  31803. {
  31804. name: "Casual Big",
  31805. height: math.unit(200, "meters")
  31806. },
  31807. {
  31808. name: "Macro",
  31809. height: math.unit(600, "meters")
  31810. },
  31811. {
  31812. name: "Original",
  31813. height: math.unit(20, "km"),
  31814. default: true
  31815. },
  31816. {
  31817. name: "Giga",
  31818. height: math.unit(400, "km")
  31819. },
  31820. {
  31821. name: "Lounging",
  31822. height: math.unit(1500, "km")
  31823. },
  31824. {
  31825. name: "Planetary",
  31826. height: math.unit(200000, "km")
  31827. },
  31828. ]
  31829. ))
  31830. characterMakers.push(() => makeCharacter(
  31831. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31832. {
  31833. front: {
  31834. height: math.unit(6, "feet"),
  31835. weight: math.unit(150, "lb"),
  31836. name: "Front",
  31837. image: {
  31838. source: "./media/characters/hugo-sigil/front.svg",
  31839. extra: 522 / 500,
  31840. bottom: 2 / 524
  31841. }
  31842. },
  31843. back: {
  31844. height: math.unit(6, "feet"),
  31845. weight: math.unit(150, "lb"),
  31846. name: "Back",
  31847. image: {
  31848. source: "./media/characters/hugo-sigil/back.svg",
  31849. extra: 519 / 495,
  31850. bottom: 5 / 524
  31851. }
  31852. },
  31853. maw: {
  31854. height: math.unit(1.4, "feet"),
  31855. weight: math.unit(150, "lb"),
  31856. name: "Maw",
  31857. image: {
  31858. source: "./media/characters/hugo-sigil/maw.svg"
  31859. }
  31860. },
  31861. feet: {
  31862. height: math.unit(1.56, "feet"),
  31863. weight: math.unit(150, "lb"),
  31864. name: "Feet",
  31865. image: {
  31866. source: "./media/characters/hugo-sigil/feet.svg",
  31867. extra: 177 / 177,
  31868. bottom: 12 / 189
  31869. }
  31870. },
  31871. },
  31872. [
  31873. {
  31874. name: "Normal",
  31875. height: math.unit(6, "feet")
  31876. },
  31877. {
  31878. name: "Macro",
  31879. height: math.unit(200, "feet"),
  31880. default: true
  31881. },
  31882. ]
  31883. ))
  31884. characterMakers.push(() => makeCharacter(
  31885. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31886. {
  31887. front: {
  31888. height: math.unit(6, "feet"),
  31889. weight: math.unit(150, "lb"),
  31890. name: "Front",
  31891. image: {
  31892. source: "./media/characters/peri/front.svg",
  31893. extra: 2354 / 2233,
  31894. bottom: 49 / 2403
  31895. }
  31896. },
  31897. },
  31898. [
  31899. {
  31900. name: "Really Small",
  31901. height: math.unit(1, "nm")
  31902. },
  31903. {
  31904. name: "Micro",
  31905. height: math.unit(4, "inches")
  31906. },
  31907. {
  31908. name: "Normal",
  31909. height: math.unit(7, "inches"),
  31910. default: true
  31911. },
  31912. {
  31913. name: "Macro",
  31914. height: math.unit(400, "feet")
  31915. },
  31916. {
  31917. name: "Megamacro",
  31918. height: math.unit(100, "miles")
  31919. },
  31920. ]
  31921. ))
  31922. characterMakers.push(() => makeCharacter(
  31923. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31924. {
  31925. frontSlim: {
  31926. height: math.unit(7, "feet"),
  31927. name: "Front (Slim)",
  31928. image: {
  31929. source: "./media/characters/issilora/front-slim.svg",
  31930. extra: 529 / 449,
  31931. bottom: 53 / 582
  31932. }
  31933. },
  31934. sideSlim: {
  31935. height: math.unit(7, "feet"),
  31936. name: "Side (Slim)",
  31937. image: {
  31938. source: "./media/characters/issilora/side-slim.svg",
  31939. extra: 570 / 480,
  31940. bottom: 30 / 600
  31941. }
  31942. },
  31943. backSlim: {
  31944. height: math.unit(7, "feet"),
  31945. name: "Back (Slim)",
  31946. image: {
  31947. source: "./media/characters/issilora/back-slim.svg",
  31948. extra: 537 / 455,
  31949. bottom: 46 / 583
  31950. }
  31951. },
  31952. frontBuff: {
  31953. height: math.unit(7, "feet"),
  31954. name: "Front (Buff)",
  31955. image: {
  31956. source: "./media/characters/issilora/front-buff.svg",
  31957. extra: 2310 / 2035,
  31958. bottom: 335 / 2645
  31959. }
  31960. },
  31961. head: {
  31962. height: math.unit(1.94, "feet"),
  31963. name: "Head",
  31964. image: {
  31965. source: "./media/characters/issilora/head.svg"
  31966. }
  31967. },
  31968. },
  31969. [
  31970. {
  31971. name: "Minimum",
  31972. height: math.unit(7, "feet")
  31973. },
  31974. {
  31975. name: "Comfortable",
  31976. height: math.unit(17, "feet")
  31977. },
  31978. {
  31979. name: "Fun Size",
  31980. height: math.unit(47, "feet")
  31981. },
  31982. {
  31983. name: "Natural Macro",
  31984. height: math.unit(137, "feet"),
  31985. default: true
  31986. },
  31987. {
  31988. name: "Maximum Kaiju",
  31989. height: math.unit(397, "feet")
  31990. },
  31991. ]
  31992. ))
  31993. characterMakers.push(() => makeCharacter(
  31994. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31995. {
  31996. front: {
  31997. height: math.unit(50 + 9/12, "feet"),
  31998. weight: math.unit(32.8, "tons"),
  31999. name: "Front",
  32000. image: {
  32001. source: "./media/characters/irb'iiritaahn/front.svg",
  32002. extra: 1878/1826,
  32003. bottom: 326/2204
  32004. }
  32005. },
  32006. back: {
  32007. height: math.unit(50 + 9/12, "feet"),
  32008. weight: math.unit(32.8, "tons"),
  32009. name: "Back",
  32010. image: {
  32011. source: "./media/characters/irb'iiritaahn/back.svg",
  32012. extra: 2052/2018,
  32013. bottom: 152/2204
  32014. }
  32015. },
  32016. head: {
  32017. height: math.unit(12.86, "feet"),
  32018. name: "Head",
  32019. image: {
  32020. source: "./media/characters/irb'iiritaahn/head.svg"
  32021. }
  32022. },
  32023. maw: {
  32024. height: math.unit(9.66, "feet"),
  32025. name: "Maw",
  32026. image: {
  32027. source: "./media/characters/irb'iiritaahn/maw.svg"
  32028. }
  32029. },
  32030. frontDick: {
  32031. height: math.unit(8.78461, "feet"),
  32032. name: "Front Dick",
  32033. image: {
  32034. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32035. }
  32036. },
  32037. rearDick: {
  32038. height: math.unit(8.78461, "feet"),
  32039. name: "Rear Dick",
  32040. image: {
  32041. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32042. }
  32043. },
  32044. rearDickUnfolded: {
  32045. height: math.unit(8.78, "feet"),
  32046. name: "Rear Dick (Unfolded)",
  32047. image: {
  32048. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32049. }
  32050. },
  32051. wings: {
  32052. height: math.unit(43, "feet"),
  32053. name: "Wings",
  32054. image: {
  32055. source: "./media/characters/irb'iiritaahn/wings.svg"
  32056. }
  32057. },
  32058. },
  32059. [
  32060. {
  32061. name: "Macro",
  32062. height: math.unit(50 + 9/12, "feet"),
  32063. default: true
  32064. },
  32065. ]
  32066. ))
  32067. characterMakers.push(() => makeCharacter(
  32068. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32069. {
  32070. front: {
  32071. height: math.unit(205, "cm"),
  32072. weight: math.unit(102, "kg"),
  32073. name: "Front",
  32074. image: {
  32075. source: "./media/characters/irbisgreif/front.svg",
  32076. extra: 785/706,
  32077. bottom: 13/798
  32078. }
  32079. },
  32080. back: {
  32081. height: math.unit(205, "cm"),
  32082. weight: math.unit(102, "kg"),
  32083. name: "Back",
  32084. image: {
  32085. source: "./media/characters/irbisgreif/back.svg",
  32086. extra: 713/701,
  32087. bottom: 26/739
  32088. }
  32089. },
  32090. frontDressed: {
  32091. height: math.unit(216, "cm"),
  32092. weight: math.unit(102, "kg"),
  32093. name: "Front-dressed",
  32094. image: {
  32095. source: "./media/characters/irbisgreif/front-dressed.svg",
  32096. extra: 902/776,
  32097. bottom: 14/916
  32098. }
  32099. },
  32100. sideDressed: {
  32101. height: math.unit(195, "cm"),
  32102. weight: math.unit(102, "kg"),
  32103. name: "Side-dressed",
  32104. image: {
  32105. source: "./media/characters/irbisgreif/side-dressed.svg",
  32106. extra: 788/688,
  32107. bottom: 21/809
  32108. }
  32109. },
  32110. backDressed: {
  32111. height: math.unit(216, "cm"),
  32112. weight: math.unit(102, "kg"),
  32113. name: "Back-dressed",
  32114. image: {
  32115. source: "./media/characters/irbisgreif/back-dressed.svg",
  32116. extra: 901/783,
  32117. bottom: 10/911
  32118. }
  32119. },
  32120. dick: {
  32121. height: math.unit(0.49, "feet"),
  32122. name: "Dick",
  32123. image: {
  32124. source: "./media/characters/irbisgreif/dick.svg"
  32125. }
  32126. },
  32127. wingTop: {
  32128. height: math.unit(1.93 , "feet"),
  32129. name: "Wing-top",
  32130. image: {
  32131. source: "./media/characters/irbisgreif/wing-top.svg"
  32132. }
  32133. },
  32134. wingBottom: {
  32135. height: math.unit(1.93 , "feet"),
  32136. name: "Wing-bottom",
  32137. image: {
  32138. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32139. }
  32140. },
  32141. },
  32142. [
  32143. {
  32144. name: "Normal",
  32145. height: math.unit(216, "cm"),
  32146. default: true
  32147. },
  32148. ]
  32149. ))
  32150. characterMakers.push(() => makeCharacter(
  32151. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32152. {
  32153. front: {
  32154. height: math.unit(6, "feet"),
  32155. weight: math.unit(150, "lb"),
  32156. name: "Front",
  32157. image: {
  32158. source: "./media/characters/pride/front.svg",
  32159. extra: 1299/1230,
  32160. bottom: 18/1317
  32161. }
  32162. },
  32163. },
  32164. [
  32165. {
  32166. name: "Normal",
  32167. height: math.unit(7, "feet")
  32168. },
  32169. {
  32170. name: "Mini-macro",
  32171. height: math.unit(11, "feet")
  32172. },
  32173. {
  32174. name: "Macro",
  32175. height: math.unit(15, "meters"),
  32176. default: true
  32177. },
  32178. {
  32179. name: "Macro+",
  32180. height: math.unit(40, "meters")
  32181. },
  32182. ]
  32183. ))
  32184. characterMakers.push(() => makeCharacter(
  32185. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32186. {
  32187. front: {
  32188. height: math.unit(4 + 2 / 12, "feet"),
  32189. weight: math.unit(95, "lb"),
  32190. name: "Front",
  32191. image: {
  32192. source: "./media/characters/vaelophis-nyx/front.svg",
  32193. extra: 2532/2330,
  32194. bottom: 0/2532
  32195. }
  32196. },
  32197. back: {
  32198. height: math.unit(4 + 2 / 12, "feet"),
  32199. weight: math.unit(95, "lb"),
  32200. name: "Back",
  32201. image: {
  32202. source: "./media/characters/vaelophis-nyx/back.svg",
  32203. extra: 2484/2361,
  32204. bottom: 0/2484
  32205. }
  32206. },
  32207. feralSide: {
  32208. height: math.unit(2 + 1/12, "feet"),
  32209. weight: math.unit(20, "lb"),
  32210. name: "Feral (Side)",
  32211. image: {
  32212. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32213. extra: 1721/1581,
  32214. bottom: 70/1791
  32215. }
  32216. },
  32217. feralLazing: {
  32218. height: math.unit(1.08, "feet"),
  32219. weight: math.unit(20, "lb"),
  32220. name: "Feral (Lazing)",
  32221. image: {
  32222. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32223. extra: 822/822,
  32224. bottom: 248/1070
  32225. }
  32226. },
  32227. ear: {
  32228. height: math.unit(0.416, "feet"),
  32229. name: "Ear",
  32230. image: {
  32231. source: "./media/characters/vaelophis-nyx/ear.svg"
  32232. }
  32233. },
  32234. eye: {
  32235. height: math.unit(0.0748, "feet"),
  32236. name: "Eye",
  32237. image: {
  32238. source: "./media/characters/vaelophis-nyx/eye.svg"
  32239. }
  32240. },
  32241. mouth: {
  32242. height: math.unit(0.378, "feet"),
  32243. name: "Mouth",
  32244. image: {
  32245. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32246. }
  32247. },
  32248. spade: {
  32249. height: math.unit(0.55, "feet"),
  32250. name: "Spade",
  32251. image: {
  32252. source: "./media/characters/vaelophis-nyx/spade.svg"
  32253. }
  32254. },
  32255. },
  32256. [
  32257. {
  32258. name: "Normal",
  32259. height: math.unit(4 + 2/12, "feet"),
  32260. default: true
  32261. },
  32262. ]
  32263. ))
  32264. characterMakers.push(() => makeCharacter(
  32265. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32266. {
  32267. front: {
  32268. height: math.unit(7, "feet"),
  32269. weight: math.unit(231, "lb"),
  32270. name: "Front",
  32271. image: {
  32272. source: "./media/characters/flux/front.svg",
  32273. extra: 919/871,
  32274. bottom: 0/919
  32275. }
  32276. },
  32277. back: {
  32278. height: math.unit(7, "feet"),
  32279. weight: math.unit(231, "lb"),
  32280. name: "Back",
  32281. image: {
  32282. source: "./media/characters/flux/back.svg",
  32283. extra: 1040/992,
  32284. bottom: 0/1040
  32285. }
  32286. },
  32287. frontDressed: {
  32288. height: math.unit(7, "feet"),
  32289. weight: math.unit(231, "lb"),
  32290. name: "Front (Dressed)",
  32291. image: {
  32292. source: "./media/characters/flux/front-dressed.svg",
  32293. extra: 919/871,
  32294. bottom: 0/919
  32295. }
  32296. },
  32297. feralSide: {
  32298. height: math.unit(5, "feet"),
  32299. weight: math.unit(150, "lb"),
  32300. name: "Feral (Side)",
  32301. image: {
  32302. source: "./media/characters/flux/feral-side.svg",
  32303. extra: 598/528,
  32304. bottom: 28/626
  32305. }
  32306. },
  32307. head: {
  32308. height: math.unit(1.585, "feet"),
  32309. name: "Head",
  32310. image: {
  32311. source: "./media/characters/flux/head.svg"
  32312. }
  32313. },
  32314. headSide: {
  32315. height: math.unit(1.74, "feet"),
  32316. name: "Head (Side)",
  32317. image: {
  32318. source: "./media/characters/flux/head-side.svg"
  32319. }
  32320. },
  32321. headSideFire: {
  32322. height: math.unit(1.76, "feet"),
  32323. name: "Head (Side, Fire)",
  32324. image: {
  32325. source: "./media/characters/flux/head-side-fire.svg"
  32326. }
  32327. },
  32328. },
  32329. [
  32330. {
  32331. name: "Normal",
  32332. height: math.unit(7, "feet"),
  32333. default: true
  32334. },
  32335. ]
  32336. ))
  32337. characterMakers.push(() => makeCharacter(
  32338. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32339. {
  32340. front: {
  32341. height: math.unit(9, "feet"),
  32342. weight: math.unit(1012, "lb"),
  32343. name: "Front",
  32344. image: {
  32345. source: "./media/characters/ulfra-lupae/front.svg",
  32346. extra: 1083/1011,
  32347. bottom: 67/1150
  32348. }
  32349. },
  32350. },
  32351. [
  32352. {
  32353. name: "Micro",
  32354. height: math.unit(6, "inches")
  32355. },
  32356. {
  32357. name: "Socializing",
  32358. height: math.unit(6 + 5/12, "feet")
  32359. },
  32360. {
  32361. name: "Normal",
  32362. height: math.unit(9, "feet"),
  32363. default: true
  32364. },
  32365. {
  32366. name: "Macro",
  32367. height: math.unit(150, "feet")
  32368. },
  32369. ]
  32370. ))
  32371. characterMakers.push(() => makeCharacter(
  32372. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32373. {
  32374. front: {
  32375. height: math.unit(5 + 2/12, "feet"),
  32376. weight: math.unit(120, "lb"),
  32377. name: "Front",
  32378. image: {
  32379. source: "./media/characters/timber/front.svg",
  32380. extra: 2814/2705,
  32381. bottom: 181/2995
  32382. }
  32383. },
  32384. },
  32385. [
  32386. {
  32387. name: "Normal",
  32388. height: math.unit(5 + 2/12, "feet"),
  32389. default: true
  32390. },
  32391. ]
  32392. ))
  32393. characterMakers.push(() => makeCharacter(
  32394. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32395. {
  32396. front: {
  32397. height: math.unit(9, "feet"),
  32398. name: "Front",
  32399. image: {
  32400. source: "./media/characters/nicki/front.svg",
  32401. extra: 1240/990,
  32402. bottom: 45/1285
  32403. },
  32404. form: "anthro",
  32405. default: true
  32406. },
  32407. side: {
  32408. height: math.unit(9, "feet"),
  32409. name: "Side",
  32410. image: {
  32411. source: "./media/characters/nicki/side.svg",
  32412. extra: 1047/973,
  32413. bottom: 61/1108
  32414. },
  32415. form: "anthro"
  32416. },
  32417. back: {
  32418. height: math.unit(9, "feet"),
  32419. name: "Back",
  32420. image: {
  32421. source: "./media/characters/nicki/back.svg",
  32422. extra: 1006/965,
  32423. bottom: 39/1045
  32424. },
  32425. form: "anthro"
  32426. },
  32427. taur: {
  32428. height: math.unit(15, "feet"),
  32429. name: "Taur",
  32430. image: {
  32431. source: "./media/characters/nicki/taur.svg",
  32432. extra: 1592/1347,
  32433. bottom: 0/1592
  32434. },
  32435. form: "taur",
  32436. default: true
  32437. },
  32438. },
  32439. [
  32440. {
  32441. name: "Normal",
  32442. height: math.unit(9, "feet"),
  32443. form: "anthro",
  32444. default: true
  32445. },
  32446. {
  32447. name: "Normal",
  32448. height: math.unit(15, "feet"),
  32449. form: "taur",
  32450. default: true
  32451. }
  32452. ],
  32453. {
  32454. "anthro": {
  32455. name: "Anthro",
  32456. default: true
  32457. },
  32458. "taur": {
  32459. name: "Taur"
  32460. }
  32461. }
  32462. ))
  32463. characterMakers.push(() => makeCharacter(
  32464. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32465. {
  32466. front: {
  32467. height: math.unit(7 + 10/12, "feet"),
  32468. weight: math.unit(3.5, "tons"),
  32469. name: "Front",
  32470. image: {
  32471. source: "./media/characters/lee/front.svg",
  32472. extra: 1773/1615,
  32473. bottom: 86/1859
  32474. }
  32475. },
  32476. hand: {
  32477. height: math.unit(1.78, "feet"),
  32478. name: "Hand",
  32479. image: {
  32480. source: "./media/characters/lee/hand.svg"
  32481. }
  32482. },
  32483. maw: {
  32484. height: math.unit(1.18, "feet"),
  32485. name: "Maw",
  32486. image: {
  32487. source: "./media/characters/lee/maw.svg"
  32488. }
  32489. },
  32490. },
  32491. [
  32492. {
  32493. name: "Normal",
  32494. height: math.unit(7 + 10/12, "feet"),
  32495. default: true
  32496. },
  32497. ]
  32498. ))
  32499. characterMakers.push(() => makeCharacter(
  32500. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32501. {
  32502. front: {
  32503. height: math.unit(9, "feet"),
  32504. name: "Front",
  32505. image: {
  32506. source: "./media/characters/guti/front.svg",
  32507. extra: 4551/4355,
  32508. bottom: 123/4674
  32509. }
  32510. },
  32511. tongue: {
  32512. height: math.unit(1, "feet"),
  32513. name: "Tongue",
  32514. image: {
  32515. source: "./media/characters/guti/tongue.svg"
  32516. }
  32517. },
  32518. paw: {
  32519. height: math.unit(1.18, "feet"),
  32520. name: "Paw",
  32521. image: {
  32522. source: "./media/characters/guti/paw.svg"
  32523. }
  32524. },
  32525. },
  32526. [
  32527. {
  32528. name: "Normal",
  32529. height: math.unit(9, "feet"),
  32530. default: true
  32531. },
  32532. ]
  32533. ))
  32534. characterMakers.push(() => makeCharacter(
  32535. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32536. {
  32537. side: {
  32538. height: math.unit(5, "meters"),
  32539. name: "Side",
  32540. image: {
  32541. source: "./media/characters/vesper/side.svg",
  32542. extra: 1605/1518,
  32543. bottom: 0/1605
  32544. }
  32545. },
  32546. },
  32547. [
  32548. {
  32549. name: "Small",
  32550. height: math.unit(5, "meters")
  32551. },
  32552. {
  32553. name: "Sage",
  32554. height: math.unit(100, "meters"),
  32555. default: true
  32556. },
  32557. {
  32558. name: "Fun Size",
  32559. height: math.unit(600, "meters")
  32560. },
  32561. {
  32562. name: "Goddess",
  32563. height: math.unit(20000, "km")
  32564. },
  32565. {
  32566. name: "Maximum",
  32567. height: math.unit(5, "galaxies")
  32568. },
  32569. ]
  32570. ))
  32571. characterMakers.push(() => makeCharacter(
  32572. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32573. {
  32574. front: {
  32575. height: math.unit(6 + 3/12, "feet"),
  32576. weight: math.unit(190, "lb"),
  32577. name: "Front",
  32578. image: {
  32579. source: "./media/characters/gawain/front.svg",
  32580. extra: 2222/2139,
  32581. bottom: 90/2312
  32582. }
  32583. },
  32584. back: {
  32585. height: math.unit(6 + 3/12, "feet"),
  32586. weight: math.unit(190, "lb"),
  32587. name: "Back",
  32588. image: {
  32589. source: "./media/characters/gawain/back.svg",
  32590. extra: 2199/2111,
  32591. bottom: 73/2272
  32592. }
  32593. },
  32594. },
  32595. [
  32596. {
  32597. name: "Normal",
  32598. height: math.unit(6 + 3/12, "feet"),
  32599. default: true
  32600. },
  32601. ]
  32602. ))
  32603. characterMakers.push(() => makeCharacter(
  32604. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32605. {
  32606. side: {
  32607. height: math.unit(3.5, "meters"),
  32608. weight: math.unit(16000, "lb"),
  32609. name: "Side",
  32610. image: {
  32611. source: "./media/characters/dascalti/side.svg",
  32612. extra: 392/273,
  32613. bottom: 47/439
  32614. }
  32615. },
  32616. breath: {
  32617. height: math.unit(7.4, "feet"),
  32618. name: "Breath",
  32619. image: {
  32620. source: "./media/characters/dascalti/breath.svg"
  32621. }
  32622. },
  32623. fed: {
  32624. height: math.unit(3.6, "meters"),
  32625. weight: math.unit(16000, "lb"),
  32626. name: "Fed",
  32627. image: {
  32628. source: "./media/characters/dascalti/fed.svg",
  32629. extra: 1419/820,
  32630. bottom: 95/1514
  32631. }
  32632. },
  32633. },
  32634. [
  32635. {
  32636. name: "Normal",
  32637. height: math.unit(3.5, "meters"),
  32638. default: true
  32639. },
  32640. ]
  32641. ))
  32642. characterMakers.push(() => makeCharacter(
  32643. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32644. {
  32645. front: {
  32646. height: math.unit(3 + 5/12, "feet"),
  32647. name: "Front",
  32648. image: {
  32649. source: "./media/characters/mauve/front.svg",
  32650. extra: 1126/1033,
  32651. bottom: 65/1191
  32652. }
  32653. },
  32654. side: {
  32655. height: math.unit(3 + 5/12, "feet"),
  32656. name: "Side",
  32657. image: {
  32658. source: "./media/characters/mauve/side.svg",
  32659. extra: 1089/1001,
  32660. bottom: 29/1118
  32661. }
  32662. },
  32663. back: {
  32664. height: math.unit(3 + 5/12, "feet"),
  32665. name: "Back",
  32666. image: {
  32667. source: "./media/characters/mauve/back.svg",
  32668. extra: 1173/1053,
  32669. bottom: 109/1282
  32670. }
  32671. },
  32672. },
  32673. [
  32674. {
  32675. name: "Normal",
  32676. height: math.unit(3 + 5/12, "feet"),
  32677. default: true
  32678. },
  32679. ]
  32680. ))
  32681. characterMakers.push(() => makeCharacter(
  32682. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32683. {
  32684. front: {
  32685. height: math.unit(6 + 3/12, "feet"),
  32686. weight: math.unit(430, "lb"),
  32687. name: "Front",
  32688. image: {
  32689. source: "./media/characters/carlos/front.svg",
  32690. extra: 1964/1913,
  32691. bottom: 70/2034
  32692. }
  32693. },
  32694. },
  32695. [
  32696. {
  32697. name: "Normal",
  32698. height: math.unit(6 + 3/12, "feet"),
  32699. default: true
  32700. },
  32701. ]
  32702. ))
  32703. characterMakers.push(() => makeCharacter(
  32704. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32705. {
  32706. back: {
  32707. height: math.unit(5 + 10/12, "feet"),
  32708. weight: math.unit(200, "lb"),
  32709. name: "Back",
  32710. image: {
  32711. source: "./media/characters/jax/back.svg",
  32712. extra: 764/739,
  32713. bottom: 25/789
  32714. }
  32715. },
  32716. },
  32717. [
  32718. {
  32719. name: "Normal",
  32720. height: math.unit(5 + 10/12, "feet"),
  32721. default: true
  32722. },
  32723. ]
  32724. ))
  32725. characterMakers.push(() => makeCharacter(
  32726. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32727. {
  32728. front: {
  32729. height: math.unit(8, "feet"),
  32730. weight: math.unit(250, "lb"),
  32731. name: "Front",
  32732. image: {
  32733. source: "./media/characters/eikthynir/front.svg",
  32734. extra: 1332/1166,
  32735. bottom: 82/1414
  32736. }
  32737. },
  32738. back: {
  32739. height: math.unit(8, "feet"),
  32740. weight: math.unit(250, "lb"),
  32741. name: "Back",
  32742. image: {
  32743. source: "./media/characters/eikthynir/back.svg",
  32744. extra: 1342/1190,
  32745. bottom: 19/1361
  32746. }
  32747. },
  32748. dick: {
  32749. height: math.unit(2.35, "feet"),
  32750. name: "Dick",
  32751. image: {
  32752. source: "./media/characters/eikthynir/dick.svg"
  32753. }
  32754. },
  32755. },
  32756. [
  32757. {
  32758. name: "Normal",
  32759. height: math.unit(8, "feet"),
  32760. default: true
  32761. },
  32762. ]
  32763. ))
  32764. characterMakers.push(() => makeCharacter(
  32765. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32766. {
  32767. front: {
  32768. height: math.unit(99, "meters"),
  32769. weight: math.unit(13000, "tons"),
  32770. name: "Front",
  32771. image: {
  32772. source: "./media/characters/zlmos/front.svg",
  32773. extra: 2202/1992,
  32774. bottom: 315/2517
  32775. }
  32776. },
  32777. },
  32778. [
  32779. {
  32780. name: "Macro",
  32781. height: math.unit(99, "meters"),
  32782. default: true
  32783. },
  32784. ]
  32785. ))
  32786. characterMakers.push(() => makeCharacter(
  32787. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32788. {
  32789. front: {
  32790. height: math.unit(6 + 5/12, "feet"),
  32791. name: "Front",
  32792. image: {
  32793. source: "./media/characters/purri/front.svg",
  32794. extra: 1698/1610,
  32795. bottom: 32/1730
  32796. }
  32797. },
  32798. frontAlt: {
  32799. height: math.unit(6 + 5/12, "feet"),
  32800. name: "Front (Alt)",
  32801. image: {
  32802. source: "./media/characters/purri/front-alt.svg",
  32803. extra: 450/420,
  32804. bottom: 26/476
  32805. }
  32806. },
  32807. boots: {
  32808. height: math.unit(5.5, "feet"),
  32809. name: "Boots",
  32810. image: {
  32811. source: "./media/characters/purri/boots.svg",
  32812. extra: 905/853,
  32813. bottom: 18/923
  32814. }
  32815. },
  32816. lying: {
  32817. height: math.unit(2, "feet"),
  32818. name: "Lying",
  32819. image: {
  32820. source: "./media/characters/purri/lying.svg",
  32821. extra: 940/843,
  32822. bottom: 146/1086
  32823. }
  32824. },
  32825. devious: {
  32826. height: math.unit(1.77, "feet"),
  32827. name: "Devious",
  32828. image: {
  32829. source: "./media/characters/purri/devious.svg",
  32830. extra: 1440/1155,
  32831. bottom: 147/1587
  32832. }
  32833. },
  32834. bean: {
  32835. height: math.unit(1.94, "feet"),
  32836. name: "Bean",
  32837. image: {
  32838. source: "./media/characters/purri/bean.svg"
  32839. }
  32840. },
  32841. },
  32842. [
  32843. {
  32844. name: "Micro",
  32845. height: math.unit(1, "mm")
  32846. },
  32847. {
  32848. name: "Normal",
  32849. height: math.unit(6 + 5/12, "feet"),
  32850. default: true
  32851. },
  32852. {
  32853. name: "Macro :3c",
  32854. height: math.unit(2, "miles")
  32855. },
  32856. ]
  32857. ))
  32858. characterMakers.push(() => makeCharacter(
  32859. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32860. {
  32861. front: {
  32862. height: math.unit(6 + 2/12, "feet"),
  32863. weight: math.unit(250, "lb"),
  32864. name: "Front",
  32865. image: {
  32866. source: "./media/characters/moonlight/front.svg",
  32867. extra: 1044/908,
  32868. bottom: 56/1100
  32869. }
  32870. },
  32871. feral: {
  32872. height: math.unit(3 + 1/12, "feet"),
  32873. weight: math.unit(50, "kg"),
  32874. name: "Feral",
  32875. image: {
  32876. source: "./media/characters/moonlight/feral.svg",
  32877. extra: 3705/2791,
  32878. bottom: 145/3850
  32879. }
  32880. },
  32881. paw: {
  32882. height: math.unit(1, "feet"),
  32883. name: "Paw",
  32884. image: {
  32885. source: "./media/characters/moonlight/paw.svg"
  32886. }
  32887. },
  32888. paws: {
  32889. height: math.unit(0.98, "feet"),
  32890. name: "Paws",
  32891. image: {
  32892. source: "./media/characters/moonlight/paws.svg",
  32893. extra: 939/939,
  32894. bottom: 50/989
  32895. }
  32896. },
  32897. mouth: {
  32898. height: math.unit(0.48, "feet"),
  32899. name: "Mouth",
  32900. image: {
  32901. source: "./media/characters/moonlight/mouth.svg"
  32902. }
  32903. },
  32904. dick: {
  32905. height: math.unit(1.46, "feet"),
  32906. name: "Dick",
  32907. image: {
  32908. source: "./media/characters/moonlight/dick.svg"
  32909. }
  32910. },
  32911. },
  32912. [
  32913. {
  32914. name: "Normal",
  32915. height: math.unit(6 + 2/12, "feet"),
  32916. default: true
  32917. },
  32918. {
  32919. name: "Macro",
  32920. height: math.unit(300, "feet")
  32921. },
  32922. {
  32923. name: "Macro+",
  32924. height: math.unit(1, "mile")
  32925. },
  32926. {
  32927. name: "Mt. Moon",
  32928. height: math.unit(5, "miles")
  32929. },
  32930. {
  32931. name: "Megamacro",
  32932. height: math.unit(15, "miles")
  32933. },
  32934. ]
  32935. ))
  32936. characterMakers.push(() => makeCharacter(
  32937. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32938. {
  32939. back: {
  32940. height: math.unit(6, "feet"),
  32941. weight: math.unit(150, "lb"),
  32942. name: "Back",
  32943. image: {
  32944. source: "./media/characters/sylen/back.svg",
  32945. extra: 1335/1273,
  32946. bottom: 107/1442
  32947. }
  32948. },
  32949. },
  32950. [
  32951. {
  32952. name: "Normal",
  32953. height: math.unit(5 + 5/12, "feet")
  32954. },
  32955. {
  32956. name: "Megamacro",
  32957. height: math.unit(3, "miles"),
  32958. default: true
  32959. },
  32960. ]
  32961. ))
  32962. characterMakers.push(() => makeCharacter(
  32963. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32964. {
  32965. front: {
  32966. height: math.unit(6, "feet"),
  32967. weight: math.unit(190, "lb"),
  32968. name: "Front",
  32969. image: {
  32970. source: "./media/characters/huttser/front.svg",
  32971. extra: 1152/1058,
  32972. bottom: 23/1175
  32973. }
  32974. },
  32975. side: {
  32976. height: math.unit(6, "feet"),
  32977. weight: math.unit(190, "lb"),
  32978. name: "Side",
  32979. image: {
  32980. source: "./media/characters/huttser/side.svg",
  32981. extra: 1174/1065,
  32982. bottom: 18/1192
  32983. }
  32984. },
  32985. back: {
  32986. height: math.unit(6, "feet"),
  32987. weight: math.unit(190, "lb"),
  32988. name: "Back",
  32989. image: {
  32990. source: "./media/characters/huttser/back.svg",
  32991. extra: 1158/1056,
  32992. bottom: 12/1170
  32993. }
  32994. },
  32995. },
  32996. [
  32997. ]
  32998. ))
  32999. characterMakers.push(() => makeCharacter(
  33000. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33001. {
  33002. side: {
  33003. height: math.unit(12 + 9/12, "feet"),
  33004. weight: math.unit(15000, "lb"),
  33005. name: "Side",
  33006. image: {
  33007. source: "./media/characters/faan/side.svg",
  33008. extra: 2747/2697,
  33009. bottom: 0/2747
  33010. }
  33011. },
  33012. front: {
  33013. height: math.unit(12 + 9/12, "feet"),
  33014. weight: math.unit(15000, "lb"),
  33015. name: "Front",
  33016. image: {
  33017. source: "./media/characters/faan/front.svg",
  33018. extra: 607/571,
  33019. bottom: 24/631
  33020. }
  33021. },
  33022. head: {
  33023. height: math.unit(2.85, "feet"),
  33024. name: "Head",
  33025. image: {
  33026. source: "./media/characters/faan/head.svg"
  33027. }
  33028. },
  33029. headAlt: {
  33030. height: math.unit(3.13, "feet"),
  33031. name: "Head-alt",
  33032. image: {
  33033. source: "./media/characters/faan/head-alt.svg"
  33034. }
  33035. },
  33036. },
  33037. [
  33038. {
  33039. name: "Normal",
  33040. height: math.unit(12 + 9/12, "feet"),
  33041. default: true
  33042. },
  33043. ]
  33044. ))
  33045. characterMakers.push(() => makeCharacter(
  33046. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33047. {
  33048. front: {
  33049. height: math.unit(6, "feet"),
  33050. weight: math.unit(300, "lb"),
  33051. name: "Front",
  33052. image: {
  33053. source: "./media/characters/tanio/front.svg",
  33054. extra: 711/673,
  33055. bottom: 25/736
  33056. }
  33057. },
  33058. },
  33059. [
  33060. {
  33061. name: "Normal",
  33062. height: math.unit(6, "feet"),
  33063. default: true
  33064. },
  33065. ]
  33066. ))
  33067. characterMakers.push(() => makeCharacter(
  33068. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33069. {
  33070. front: {
  33071. height: math.unit(3, "inches"),
  33072. name: "Front",
  33073. image: {
  33074. source: "./media/characters/noboru/front.svg",
  33075. extra: 1039/932,
  33076. bottom: 18/1057
  33077. }
  33078. },
  33079. },
  33080. [
  33081. {
  33082. name: "Micro",
  33083. height: math.unit(3, "inches"),
  33084. default: true
  33085. },
  33086. ]
  33087. ))
  33088. characterMakers.push(() => makeCharacter(
  33089. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33090. {
  33091. front: {
  33092. height: math.unit(1.85, "meters"),
  33093. weight: math.unit(80, "kg"),
  33094. name: "Front",
  33095. image: {
  33096. source: "./media/characters/daniel-barrett/front.svg",
  33097. extra: 355/337,
  33098. bottom: 9/364
  33099. }
  33100. },
  33101. },
  33102. [
  33103. {
  33104. name: "Pico",
  33105. height: math.unit(0.0433, "mm")
  33106. },
  33107. {
  33108. name: "Nano",
  33109. height: math.unit(1.5, "mm")
  33110. },
  33111. {
  33112. name: "Micro",
  33113. height: math.unit(5.3, "cm"),
  33114. default: true
  33115. },
  33116. {
  33117. name: "Normal",
  33118. height: math.unit(1.85, "meters")
  33119. },
  33120. {
  33121. name: "Macro",
  33122. height: math.unit(64.7, "meters")
  33123. },
  33124. {
  33125. name: "Megamacro",
  33126. height: math.unit(2.26, "km")
  33127. },
  33128. {
  33129. name: "Gigamacro",
  33130. height: math.unit(79, "km")
  33131. },
  33132. {
  33133. name: "Teramacro",
  33134. height: math.unit(2765, "km")
  33135. },
  33136. {
  33137. name: "Petamacro",
  33138. height: math.unit(96678, "km")
  33139. },
  33140. ]
  33141. ))
  33142. characterMakers.push(() => makeCharacter(
  33143. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33144. {
  33145. front: {
  33146. height: math.unit(30, "meters"),
  33147. weight: math.unit(400, "tons"),
  33148. name: "Front",
  33149. image: {
  33150. source: "./media/characters/zeel/front.svg",
  33151. extra: 2599/2599,
  33152. bottom: 226/2825
  33153. }
  33154. },
  33155. },
  33156. [
  33157. {
  33158. name: "Macro",
  33159. height: math.unit(30, "meters"),
  33160. default: true
  33161. },
  33162. ]
  33163. ))
  33164. characterMakers.push(() => makeCharacter(
  33165. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33166. {
  33167. front: {
  33168. height: math.unit(6 + 7/12, "feet"),
  33169. weight: math.unit(210, "lb"),
  33170. name: "Front",
  33171. image: {
  33172. source: "./media/characters/tarn/front.svg",
  33173. extra: 3517/3220,
  33174. bottom: 91/3608
  33175. }
  33176. },
  33177. back: {
  33178. height: math.unit(6 + 7/12, "feet"),
  33179. weight: math.unit(210, "lb"),
  33180. name: "Back",
  33181. image: {
  33182. source: "./media/characters/tarn/back.svg",
  33183. extra: 3566/3241,
  33184. bottom: 34/3600
  33185. }
  33186. },
  33187. dick: {
  33188. height: math.unit(1.65, "feet"),
  33189. name: "Dick",
  33190. image: {
  33191. source: "./media/characters/tarn/dick.svg"
  33192. }
  33193. },
  33194. paw: {
  33195. height: math.unit(1.80, "feet"),
  33196. name: "Paw",
  33197. image: {
  33198. source: "./media/characters/tarn/paw.svg"
  33199. }
  33200. },
  33201. tongue: {
  33202. height: math.unit(0.97, "feet"),
  33203. name: "Tongue",
  33204. image: {
  33205. source: "./media/characters/tarn/tongue.svg"
  33206. }
  33207. },
  33208. },
  33209. [
  33210. {
  33211. name: "Micro",
  33212. height: math.unit(4, "inches")
  33213. },
  33214. {
  33215. name: "Normal",
  33216. height: math.unit(6 + 7/12, "feet"),
  33217. default: true
  33218. },
  33219. {
  33220. name: "Macro",
  33221. height: math.unit(300, "feet")
  33222. },
  33223. ]
  33224. ))
  33225. characterMakers.push(() => makeCharacter(
  33226. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33227. {
  33228. front: {
  33229. height: math.unit(5 + 7/12, "feet"),
  33230. weight: math.unit(80, "kg"),
  33231. name: "Front",
  33232. image: {
  33233. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33234. extra: 3023/2865,
  33235. bottom: 33/3056
  33236. }
  33237. },
  33238. back: {
  33239. height: math.unit(5 + 7/12, "feet"),
  33240. weight: math.unit(80, "kg"),
  33241. name: "Back",
  33242. image: {
  33243. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33244. extra: 3020/2886,
  33245. bottom: 30/3050
  33246. }
  33247. },
  33248. dick: {
  33249. height: math.unit(0.98, "feet"),
  33250. name: "Dick",
  33251. image: {
  33252. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33253. }
  33254. },
  33255. anatomy: {
  33256. height: math.unit(2.86, "feet"),
  33257. name: "Anatomy",
  33258. image: {
  33259. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33260. }
  33261. },
  33262. },
  33263. [
  33264. {
  33265. name: "Really Small",
  33266. height: math.unit(2, "inches")
  33267. },
  33268. {
  33269. name: "Micro",
  33270. height: math.unit(5.583, "inches")
  33271. },
  33272. {
  33273. name: "Normal",
  33274. height: math.unit(5 + 7/12, "feet"),
  33275. default: true
  33276. },
  33277. {
  33278. name: "Macro",
  33279. height: math.unit(67, "feet")
  33280. },
  33281. {
  33282. name: "Megamacro",
  33283. height: math.unit(134, "feet")
  33284. },
  33285. ]
  33286. ))
  33287. characterMakers.push(() => makeCharacter(
  33288. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33289. {
  33290. front: {
  33291. height: math.unit(9, "feet"),
  33292. weight: math.unit(120, "lb"),
  33293. name: "Front",
  33294. image: {
  33295. source: "./media/characters/sally/front.svg",
  33296. extra: 1506/1349,
  33297. bottom: 66/1572
  33298. }
  33299. },
  33300. },
  33301. [
  33302. {
  33303. name: "Normal",
  33304. height: math.unit(9, "feet"),
  33305. default: true
  33306. },
  33307. ]
  33308. ))
  33309. characterMakers.push(() => makeCharacter(
  33310. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33311. {
  33312. front: {
  33313. height: math.unit(8, "feet"),
  33314. weight: math.unit(900, "lb"),
  33315. name: "Front",
  33316. image: {
  33317. source: "./media/characters/owen/front.svg",
  33318. extra: 1761/1657,
  33319. bottom: 74/1835
  33320. }
  33321. },
  33322. side: {
  33323. height: math.unit(8, "feet"),
  33324. weight: math.unit(900, "lb"),
  33325. name: "Side",
  33326. image: {
  33327. source: "./media/characters/owen/side.svg",
  33328. extra: 1797/1734,
  33329. bottom: 30/1827
  33330. }
  33331. },
  33332. back: {
  33333. height: math.unit(8, "feet"),
  33334. weight: math.unit(900, "lb"),
  33335. name: "Back",
  33336. image: {
  33337. source: "./media/characters/owen/back.svg",
  33338. extra: 1796/1706,
  33339. bottom: 59/1855
  33340. }
  33341. },
  33342. maw: {
  33343. height: math.unit(1.76, "feet"),
  33344. name: "Maw",
  33345. image: {
  33346. source: "./media/characters/owen/maw.svg"
  33347. }
  33348. },
  33349. },
  33350. [
  33351. {
  33352. name: "Normal",
  33353. height: math.unit(8, "feet"),
  33354. default: true
  33355. },
  33356. ]
  33357. ))
  33358. characterMakers.push(() => makeCharacter(
  33359. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33360. {
  33361. front: {
  33362. height: math.unit(4, "feet"),
  33363. weight: math.unit(400, "lb"),
  33364. name: "Front",
  33365. image: {
  33366. source: "./media/characters/ryth/front.svg",
  33367. extra: 1920/1748,
  33368. bottom: 42/1962
  33369. }
  33370. },
  33371. back: {
  33372. height: math.unit(4, "feet"),
  33373. weight: math.unit(400, "lb"),
  33374. name: "Back",
  33375. image: {
  33376. source: "./media/characters/ryth/back.svg",
  33377. extra: 1897/1690,
  33378. bottom: 89/1986
  33379. }
  33380. },
  33381. mouth: {
  33382. height: math.unit(1.39, "feet"),
  33383. name: "Mouth",
  33384. image: {
  33385. source: "./media/characters/ryth/mouth.svg"
  33386. }
  33387. },
  33388. tailmaw: {
  33389. height: math.unit(1.23, "feet"),
  33390. name: "Tailmaw",
  33391. image: {
  33392. source: "./media/characters/ryth/tailmaw.svg"
  33393. }
  33394. },
  33395. goia: {
  33396. height: math.unit(4, "meters"),
  33397. weight: math.unit(10800, "lb"),
  33398. name: "Goia",
  33399. image: {
  33400. source: "./media/characters/ryth/goia.svg",
  33401. extra: 745/640,
  33402. bottom: 107/852
  33403. }
  33404. },
  33405. goiaFront: {
  33406. height: math.unit(4, "meters"),
  33407. weight: math.unit(10800, "lb"),
  33408. name: "Goia (Front)",
  33409. image: {
  33410. source: "./media/characters/ryth/goia-front.svg",
  33411. extra: 750/586,
  33412. bottom: 114/864
  33413. }
  33414. },
  33415. goiaMaw: {
  33416. height: math.unit(5.55, "feet"),
  33417. name: "Goia Maw",
  33418. image: {
  33419. source: "./media/characters/ryth/goia-maw.svg"
  33420. }
  33421. },
  33422. goiaForepaw: {
  33423. height: math.unit(3.5, "feet"),
  33424. name: "Goia Forepaw",
  33425. image: {
  33426. source: "./media/characters/ryth/goia-forepaw.svg"
  33427. }
  33428. },
  33429. goiaHindpaw: {
  33430. height: math.unit(5.55, "feet"),
  33431. name: "Goia Hindpaw",
  33432. image: {
  33433. source: "./media/characters/ryth/goia-hindpaw.svg"
  33434. }
  33435. },
  33436. },
  33437. [
  33438. {
  33439. name: "Normal",
  33440. height: math.unit(4, "feet"),
  33441. default: true
  33442. },
  33443. ]
  33444. ))
  33445. characterMakers.push(() => makeCharacter(
  33446. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33447. {
  33448. front: {
  33449. height: math.unit(7, "feet"),
  33450. weight: math.unit(180, "lb"),
  33451. name: "Front",
  33452. image: {
  33453. source: "./media/characters/necrolance/front.svg",
  33454. extra: 1062/947,
  33455. bottom: 41/1103
  33456. }
  33457. },
  33458. back: {
  33459. height: math.unit(7, "feet"),
  33460. weight: math.unit(180, "lb"),
  33461. name: "Back",
  33462. image: {
  33463. source: "./media/characters/necrolance/back.svg",
  33464. extra: 1045/984,
  33465. bottom: 14/1059
  33466. }
  33467. },
  33468. wing: {
  33469. height: math.unit(2.67, "feet"),
  33470. name: "Wing",
  33471. image: {
  33472. source: "./media/characters/necrolance/wing.svg"
  33473. }
  33474. },
  33475. },
  33476. [
  33477. {
  33478. name: "Normal",
  33479. height: math.unit(7, "feet"),
  33480. default: true
  33481. },
  33482. ]
  33483. ))
  33484. characterMakers.push(() => makeCharacter(
  33485. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33486. {
  33487. front: {
  33488. height: math.unit(76, "meters"),
  33489. weight: math.unit(30000, "tons"),
  33490. name: "Front",
  33491. image: {
  33492. source: "./media/characters/tyler/front.svg",
  33493. extra: 1640/1640,
  33494. bottom: 114/1754
  33495. }
  33496. },
  33497. },
  33498. [
  33499. {
  33500. name: "Macro",
  33501. height: math.unit(76, "meters"),
  33502. default: true
  33503. },
  33504. ]
  33505. ))
  33506. characterMakers.push(() => makeCharacter(
  33507. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33508. {
  33509. front: {
  33510. height: math.unit(4 + 11/12, "feet"),
  33511. weight: math.unit(132, "lb"),
  33512. name: "Front",
  33513. image: {
  33514. source: "./media/characters/icey/front.svg",
  33515. extra: 2750/2550,
  33516. bottom: 33/2783
  33517. }
  33518. },
  33519. back: {
  33520. height: math.unit(4 + 11/12, "feet"),
  33521. weight: math.unit(132, "lb"),
  33522. name: "Back",
  33523. image: {
  33524. source: "./media/characters/icey/back.svg",
  33525. extra: 2624/2481,
  33526. bottom: 35/2659
  33527. }
  33528. },
  33529. },
  33530. [
  33531. {
  33532. name: "Normal",
  33533. height: math.unit(4 + 11/12, "feet"),
  33534. default: true
  33535. },
  33536. ]
  33537. ))
  33538. characterMakers.push(() => makeCharacter(
  33539. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33540. {
  33541. front: {
  33542. height: math.unit(100, "feet"),
  33543. weight: math.unit(0, "lb"),
  33544. name: "Front",
  33545. image: {
  33546. source: "./media/characters/smile/front.svg",
  33547. extra: 2983/2912,
  33548. bottom: 162/3145
  33549. }
  33550. },
  33551. back: {
  33552. height: math.unit(100, "feet"),
  33553. weight: math.unit(0, "lb"),
  33554. name: "Back",
  33555. image: {
  33556. source: "./media/characters/smile/back.svg",
  33557. extra: 3143/3031,
  33558. bottom: 91/3234
  33559. }
  33560. },
  33561. head: {
  33562. height: math.unit(26.3, "feet"),
  33563. weight: math.unit(0, "lb"),
  33564. name: "Head",
  33565. image: {
  33566. source: "./media/characters/smile/head.svg"
  33567. }
  33568. },
  33569. collar: {
  33570. height: math.unit(5.3, "feet"),
  33571. weight: math.unit(0, "lb"),
  33572. name: "Collar",
  33573. image: {
  33574. source: "./media/characters/smile/collar.svg"
  33575. }
  33576. },
  33577. },
  33578. [
  33579. {
  33580. name: "Macro",
  33581. height: math.unit(100, "feet"),
  33582. default: true
  33583. },
  33584. ]
  33585. ))
  33586. characterMakers.push(() => makeCharacter(
  33587. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33588. {
  33589. dragon: {
  33590. height: math.unit(26, "feet"),
  33591. weight: math.unit(36, "tons"),
  33592. name: "Dragon",
  33593. image: {
  33594. source: "./media/characters/arimphae/dragon.svg",
  33595. extra: 1574/983,
  33596. bottom: 357/1931
  33597. }
  33598. },
  33599. drake: {
  33600. height: math.unit(9, "feet"),
  33601. weight: math.unit(1.5, "tons"),
  33602. name: "Drake",
  33603. image: {
  33604. source: "./media/characters/arimphae/drake.svg",
  33605. extra: 1120/925,
  33606. bottom: 435/1555
  33607. }
  33608. },
  33609. },
  33610. [
  33611. {
  33612. name: "Small",
  33613. height: math.unit(26*5/9, "feet")
  33614. },
  33615. {
  33616. name: "Normal",
  33617. height: math.unit(26, "feet"),
  33618. default: true
  33619. },
  33620. ]
  33621. ))
  33622. characterMakers.push(() => makeCharacter(
  33623. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33624. {
  33625. front: {
  33626. height: math.unit(8 + 9/12, "feet"),
  33627. name: "Front",
  33628. image: {
  33629. source: "./media/characters/xander/front.svg",
  33630. extra: 1237/974,
  33631. bottom: 94/1331
  33632. }
  33633. },
  33634. },
  33635. [
  33636. {
  33637. name: "Normal",
  33638. height: math.unit(8 + 9/12, "feet"),
  33639. default: true
  33640. },
  33641. {
  33642. name: "Gaze Grabber",
  33643. height: math.unit(13 + 8/12, "feet")
  33644. },
  33645. {
  33646. name: "Jaw Dropper",
  33647. height: math.unit(27, "feet")
  33648. },
  33649. {
  33650. name: "Show Stopper",
  33651. height: math.unit(136, "feet")
  33652. },
  33653. {
  33654. name: "Superstar",
  33655. height: math.unit(1.9e6, "miles")
  33656. },
  33657. ]
  33658. ))
  33659. characterMakers.push(() => makeCharacter(
  33660. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33661. {
  33662. side: {
  33663. height: math.unit(2100, "feet"),
  33664. name: "Side",
  33665. image: {
  33666. source: "./media/characters/osiris/side.svg",
  33667. extra: 1105/939,
  33668. bottom: 167/1272
  33669. }
  33670. },
  33671. },
  33672. [
  33673. {
  33674. name: "Macro",
  33675. height: math.unit(2100, "feet"),
  33676. default: true
  33677. },
  33678. ]
  33679. ))
  33680. characterMakers.push(() => makeCharacter(
  33681. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33682. {
  33683. front: {
  33684. height: math.unit(6 + 8/12, "feet"),
  33685. weight: math.unit(225, "lb"),
  33686. name: "Front",
  33687. image: {
  33688. source: "./media/characters/rhys-londe/front.svg",
  33689. extra: 2258/2141,
  33690. bottom: 188/2446
  33691. }
  33692. },
  33693. back: {
  33694. height: math.unit(6 + 8/12, "feet"),
  33695. weight: math.unit(225, "lb"),
  33696. name: "Back",
  33697. image: {
  33698. source: "./media/characters/rhys-londe/back.svg",
  33699. extra: 2237/2137,
  33700. bottom: 63/2300
  33701. }
  33702. },
  33703. frontNsfw: {
  33704. height: math.unit(6 + 8/12, "feet"),
  33705. weight: math.unit(225, "lb"),
  33706. name: "Front (NSFW)",
  33707. image: {
  33708. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33709. extra: 2258/2141,
  33710. bottom: 188/2446
  33711. }
  33712. },
  33713. backNsfw: {
  33714. height: math.unit(6 + 8/12, "feet"),
  33715. weight: math.unit(225, "lb"),
  33716. name: "Back (NSFW)",
  33717. image: {
  33718. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33719. extra: 2237/2137,
  33720. bottom: 63/2300
  33721. }
  33722. },
  33723. dick: {
  33724. height: math.unit(30, "inches"),
  33725. name: "Dick",
  33726. image: {
  33727. source: "./media/characters/rhys-londe/dick.svg"
  33728. }
  33729. },
  33730. maw: {
  33731. height: math.unit(1.6, "feet"),
  33732. name: "Maw",
  33733. image: {
  33734. source: "./media/characters/rhys-londe/maw.svg"
  33735. }
  33736. },
  33737. },
  33738. [
  33739. {
  33740. name: "Normal",
  33741. height: math.unit(6 + 8/12, "feet"),
  33742. default: true
  33743. },
  33744. ]
  33745. ))
  33746. characterMakers.push(() => makeCharacter(
  33747. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33748. {
  33749. front: {
  33750. height: math.unit(3 + 10/12, "feet"),
  33751. weight: math.unit(90, "lb"),
  33752. name: "Front",
  33753. image: {
  33754. source: "./media/characters/taivas-ensim/front.svg",
  33755. extra: 1327/1216,
  33756. bottom: 96/1423
  33757. }
  33758. },
  33759. back: {
  33760. height: math.unit(3 + 10/12, "feet"),
  33761. weight: math.unit(90, "lb"),
  33762. name: "Back",
  33763. image: {
  33764. source: "./media/characters/taivas-ensim/back.svg",
  33765. extra: 1355/1247,
  33766. bottom: 11/1366
  33767. }
  33768. },
  33769. frontNsfw: {
  33770. height: math.unit(3 + 10/12, "feet"),
  33771. weight: math.unit(90, "lb"),
  33772. name: "Front (NSFW)",
  33773. image: {
  33774. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33775. extra: 1327/1216,
  33776. bottom: 96/1423
  33777. }
  33778. },
  33779. backNsfw: {
  33780. height: math.unit(3 + 10/12, "feet"),
  33781. weight: math.unit(90, "lb"),
  33782. name: "Back (NSFW)",
  33783. image: {
  33784. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33785. extra: 1355/1247,
  33786. bottom: 11/1366
  33787. }
  33788. },
  33789. },
  33790. [
  33791. {
  33792. name: "Normal",
  33793. height: math.unit(3 + 10/12, "feet"),
  33794. default: true
  33795. },
  33796. ]
  33797. ))
  33798. characterMakers.push(() => makeCharacter(
  33799. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33800. {
  33801. front: {
  33802. height: math.unit(9 + 6/12, "feet"),
  33803. weight: math.unit(940, "lb"),
  33804. name: "Front",
  33805. image: {
  33806. source: "./media/characters/byliss/front.svg",
  33807. extra: 1327/1290,
  33808. bottom: 82/1409
  33809. }
  33810. },
  33811. back: {
  33812. height: math.unit(9 + 6/12, "feet"),
  33813. weight: math.unit(940, "lb"),
  33814. name: "Back",
  33815. image: {
  33816. source: "./media/characters/byliss/back.svg",
  33817. extra: 1376/1349,
  33818. bottom: 9/1385
  33819. }
  33820. },
  33821. frontNsfw: {
  33822. height: math.unit(9 + 6/12, "feet"),
  33823. weight: math.unit(940, "lb"),
  33824. name: "Front (NSFW)",
  33825. image: {
  33826. source: "./media/characters/byliss/front-nsfw.svg",
  33827. extra: 1327/1290,
  33828. bottom: 82/1409
  33829. }
  33830. },
  33831. backNsfw: {
  33832. height: math.unit(9 + 6/12, "feet"),
  33833. weight: math.unit(940, "lb"),
  33834. name: "Back (NSFW)",
  33835. image: {
  33836. source: "./media/characters/byliss/back-nsfw.svg",
  33837. extra: 1376/1349,
  33838. bottom: 9/1385
  33839. }
  33840. },
  33841. },
  33842. [
  33843. {
  33844. name: "Normal",
  33845. height: math.unit(9 + 6/12, "feet"),
  33846. default: true
  33847. },
  33848. ]
  33849. ))
  33850. characterMakers.push(() => makeCharacter(
  33851. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33852. {
  33853. front: {
  33854. height: math.unit(5 + 2/12, "feet"),
  33855. weight: math.unit(200, "lb"),
  33856. name: "Front",
  33857. image: {
  33858. source: "./media/characters/noraly/front.svg",
  33859. extra: 4985/4773,
  33860. bottom: 150/5135
  33861. }
  33862. },
  33863. full: {
  33864. height: math.unit(5 + 2/12, "feet"),
  33865. weight: math.unit(164, "lb"),
  33866. name: "Full",
  33867. image: {
  33868. source: "./media/characters/noraly/full.svg",
  33869. extra: 1114/1059,
  33870. bottom: 35/1149
  33871. }
  33872. },
  33873. fuller: {
  33874. height: math.unit(5 + 2/12, "feet"),
  33875. weight: math.unit(230, "lb"),
  33876. name: "Fuller",
  33877. image: {
  33878. source: "./media/characters/noraly/fuller.svg",
  33879. extra: 1114/1059,
  33880. bottom: 35/1149
  33881. }
  33882. },
  33883. fullest: {
  33884. height: math.unit(5 + 2/12, "feet"),
  33885. weight: math.unit(300, "lb"),
  33886. name: "Fullest",
  33887. image: {
  33888. source: "./media/characters/noraly/fullest.svg",
  33889. extra: 1114/1059,
  33890. bottom: 35/1149
  33891. }
  33892. },
  33893. },
  33894. [
  33895. {
  33896. name: "Normal",
  33897. height: math.unit(5 + 2/12, "feet"),
  33898. default: true
  33899. },
  33900. ]
  33901. ))
  33902. characterMakers.push(() => makeCharacter(
  33903. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33904. {
  33905. front: {
  33906. height: math.unit(5 + 2/12, "feet"),
  33907. weight: math.unit(210, "lb"),
  33908. name: "Front",
  33909. image: {
  33910. source: "./media/characters/pera/front.svg",
  33911. extra: 1560/1531,
  33912. bottom: 165/1725
  33913. }
  33914. },
  33915. back: {
  33916. height: math.unit(5 + 2/12, "feet"),
  33917. weight: math.unit(210, "lb"),
  33918. name: "Back",
  33919. image: {
  33920. source: "./media/characters/pera/back.svg",
  33921. extra: 1523/1493,
  33922. bottom: 152/1675
  33923. }
  33924. },
  33925. dick: {
  33926. height: math.unit(2.4, "feet"),
  33927. name: "Dick",
  33928. image: {
  33929. source: "./media/characters/pera/dick.svg"
  33930. }
  33931. },
  33932. },
  33933. [
  33934. {
  33935. name: "Normal",
  33936. height: math.unit(5 + 2/12, "feet"),
  33937. default: true
  33938. },
  33939. ]
  33940. ))
  33941. characterMakers.push(() => makeCharacter(
  33942. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33943. {
  33944. front: {
  33945. height: math.unit(12, "feet"),
  33946. weight: math.unit(3200, "lb"),
  33947. name: "Front",
  33948. image: {
  33949. source: "./media/characters/julian/front.svg",
  33950. extra: 2962/2701,
  33951. bottom: 184/3146
  33952. }
  33953. },
  33954. maw: {
  33955. height: math.unit(5.35, "feet"),
  33956. name: "Maw",
  33957. image: {
  33958. source: "./media/characters/julian/maw.svg"
  33959. }
  33960. },
  33961. paw: {
  33962. height: math.unit(3.07, "feet"),
  33963. name: "Paw",
  33964. image: {
  33965. source: "./media/characters/julian/paw.svg"
  33966. }
  33967. },
  33968. },
  33969. [
  33970. {
  33971. name: "Default",
  33972. height: math.unit(12, "feet"),
  33973. default: true
  33974. },
  33975. {
  33976. name: "Big",
  33977. height: math.unit(50, "feet")
  33978. },
  33979. {
  33980. name: "Really Big",
  33981. height: math.unit(1, "mile")
  33982. },
  33983. {
  33984. name: "Extremely Big",
  33985. height: math.unit(100, "miles")
  33986. },
  33987. {
  33988. name: "Planet Hugger",
  33989. height: math.unit(200, "megameters")
  33990. },
  33991. {
  33992. name: "Unreasonably Big",
  33993. height: math.unit(1e300, "meters")
  33994. },
  33995. ]
  33996. ))
  33997. characterMakers.push(() => makeCharacter(
  33998. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33999. {
  34000. solgooleo: {
  34001. height: math.unit(4, "meters"),
  34002. weight: math.unit(6000*1.5, "kg"),
  34003. volume: math.unit(6000, "liters"),
  34004. name: "Solgooleo",
  34005. image: {
  34006. source: "./media/characters/pi/solgooleo.svg",
  34007. extra: 388/331,
  34008. bottom: 29/417
  34009. }
  34010. },
  34011. },
  34012. [
  34013. {
  34014. name: "Normal",
  34015. height: math.unit(4, "meters"),
  34016. default: true
  34017. },
  34018. ]
  34019. ))
  34020. characterMakers.push(() => makeCharacter(
  34021. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34022. {
  34023. front: {
  34024. height: math.unit(8, "feet"),
  34025. weight: math.unit(4, "tons"),
  34026. name: "Front",
  34027. image: {
  34028. source: "./media/characters/shaun/front.svg",
  34029. extra: 503/495,
  34030. bottom: 20/523
  34031. }
  34032. },
  34033. back: {
  34034. height: math.unit(8, "feet"),
  34035. weight: math.unit(4, "tons"),
  34036. name: "Back",
  34037. image: {
  34038. source: "./media/characters/shaun/back.svg",
  34039. extra: 487/480,
  34040. bottom: 20/507
  34041. }
  34042. },
  34043. },
  34044. [
  34045. {
  34046. name: "Lorg",
  34047. height: math.unit(8, "feet"),
  34048. default: true
  34049. },
  34050. ]
  34051. ))
  34052. characterMakers.push(() => makeCharacter(
  34053. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34054. {
  34055. frontAnthro: {
  34056. height: math.unit(7, "feet"),
  34057. name: "Front",
  34058. image: {
  34059. source: "./media/characters/sini/front-anthro.svg",
  34060. extra: 726/678,
  34061. bottom: 35/761
  34062. },
  34063. form: "anthro",
  34064. default: true
  34065. },
  34066. backAnthro: {
  34067. height: math.unit(7, "feet"),
  34068. name: "Back",
  34069. image: {
  34070. source: "./media/characters/sini/back-anthro.svg",
  34071. extra: 743/701,
  34072. bottom: 12/755
  34073. },
  34074. form: "anthro",
  34075. },
  34076. frontAnthroNsfw: {
  34077. height: math.unit(7, "feet"),
  34078. name: "Front (NSFW)",
  34079. image: {
  34080. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34081. extra: 726/678,
  34082. bottom: 35/761
  34083. },
  34084. form: "anthro"
  34085. },
  34086. backAnthroNsfw: {
  34087. height: math.unit(7, "feet"),
  34088. name: "Back (NSFW)",
  34089. image: {
  34090. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34091. extra: 743/701,
  34092. bottom: 12/755
  34093. },
  34094. form: "anthro",
  34095. },
  34096. mawAnthro: {
  34097. height: math.unit(2.14, "feet"),
  34098. name: "Maw",
  34099. image: {
  34100. source: "./media/characters/sini/maw-anthro.svg"
  34101. },
  34102. form: "anthro"
  34103. },
  34104. dick: {
  34105. height: math.unit(1.45, "feet"),
  34106. name: "Dick",
  34107. image: {
  34108. source: "./media/characters/sini/dick-anthro.svg"
  34109. },
  34110. form: "anthro"
  34111. },
  34112. feral: {
  34113. height: math.unit(16, "feet"),
  34114. name: "Feral",
  34115. image: {
  34116. source: "./media/characters/sini/feral.svg",
  34117. extra: 814/605,
  34118. bottom: 11/825
  34119. },
  34120. form: "feral",
  34121. default: true
  34122. },
  34123. feralNsfw: {
  34124. height: math.unit(16, "feet"),
  34125. name: "Feral (NSFW)",
  34126. image: {
  34127. source: "./media/characters/sini/feral-nsfw.svg",
  34128. extra: 814/605,
  34129. bottom: 11/825
  34130. },
  34131. form: "feral"
  34132. },
  34133. mawFeral: {
  34134. height: math.unit(5.66, "feet"),
  34135. name: "Maw",
  34136. image: {
  34137. source: "./media/characters/sini/maw-feral.svg"
  34138. },
  34139. form: "feral",
  34140. },
  34141. pawFeral: {
  34142. height: math.unit(5.17, "feet"),
  34143. name: "Paw",
  34144. image: {
  34145. source: "./media/characters/sini/paw-feral.svg"
  34146. },
  34147. form: "feral",
  34148. },
  34149. rumpFeral: {
  34150. height: math.unit(13.11, "feet"),
  34151. name: "Rump",
  34152. image: {
  34153. source: "./media/characters/sini/rump-feral.svg"
  34154. },
  34155. form: "feral",
  34156. },
  34157. dickFeral: {
  34158. height: math.unit(1, "feet"),
  34159. name: "Dick",
  34160. image: {
  34161. source: "./media/characters/sini/dick-feral.svg"
  34162. },
  34163. form: "feral",
  34164. },
  34165. eyeFeral: {
  34166. height: math.unit(1.23, "feet"),
  34167. name: "Eye",
  34168. image: {
  34169. source: "./media/characters/sini/eye-feral.svg"
  34170. },
  34171. form: "feral",
  34172. },
  34173. },
  34174. [
  34175. {
  34176. name: "Normal",
  34177. height: math.unit(7, "feet"),
  34178. default: true,
  34179. form: "anthro"
  34180. },
  34181. {
  34182. name: "Normal",
  34183. height: math.unit(16, "feet"),
  34184. default: true,
  34185. form: "feral"
  34186. },
  34187. ],
  34188. {
  34189. "anthro": {
  34190. name: "Anthro",
  34191. default: true
  34192. },
  34193. "feral": {
  34194. name: "Feral",
  34195. }
  34196. }
  34197. ))
  34198. characterMakers.push(() => makeCharacter(
  34199. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34200. {
  34201. side: {
  34202. height: math.unit(47.2, "meters"),
  34203. weight: math.unit(10000, "tons"),
  34204. name: "Side",
  34205. image: {
  34206. source: "./media/characters/raylldo/side.svg",
  34207. extra: 2363/642,
  34208. bottom: 221/2584
  34209. }
  34210. },
  34211. top: {
  34212. height: math.unit(240, "meters"),
  34213. weight: math.unit(10000, "tons"),
  34214. name: "Top",
  34215. image: {
  34216. source: "./media/characters/raylldo/top.svg"
  34217. }
  34218. },
  34219. bottom: {
  34220. height: math.unit(240, "meters"),
  34221. weight: math.unit(10000, "tons"),
  34222. name: "Bottom",
  34223. image: {
  34224. source: "./media/characters/raylldo/bottom.svg"
  34225. }
  34226. },
  34227. head: {
  34228. height: math.unit(38.6, "meters"),
  34229. name: "Head",
  34230. image: {
  34231. source: "./media/characters/raylldo/head.svg",
  34232. extra: 1335/1112,
  34233. bottom: 0/1335
  34234. }
  34235. },
  34236. maw: {
  34237. height: math.unit(16.37, "meters"),
  34238. name: "Maw",
  34239. image: {
  34240. source: "./media/characters/raylldo/maw.svg",
  34241. extra: 883/660,
  34242. bottom: 0/883
  34243. },
  34244. extraAttributes: {
  34245. preyCapacity: {
  34246. name: "Capacity",
  34247. power: 3,
  34248. type: "volume",
  34249. base: math.unit(1000, "people")
  34250. },
  34251. tongueSize: {
  34252. name: "Tongue Size",
  34253. power: 2,
  34254. type: "area",
  34255. base: math.unit(21, "m^2")
  34256. }
  34257. }
  34258. },
  34259. forepaw: {
  34260. height: math.unit(18, "meters"),
  34261. name: "Forepaw",
  34262. image: {
  34263. source: "./media/characters/raylldo/forepaw.svg"
  34264. }
  34265. },
  34266. hindpaw: {
  34267. height: math.unit(23, "meters"),
  34268. name: "Hindpaw",
  34269. image: {
  34270. source: "./media/characters/raylldo/hindpaw.svg"
  34271. }
  34272. },
  34273. genitals: {
  34274. height: math.unit(42, "meters"),
  34275. name: "Genitals",
  34276. image: {
  34277. source: "./media/characters/raylldo/genitals.svg"
  34278. }
  34279. },
  34280. },
  34281. [
  34282. {
  34283. name: "Normal",
  34284. height: math.unit(47.2, "meters"),
  34285. default: true
  34286. },
  34287. ]
  34288. ))
  34289. characterMakers.push(() => makeCharacter(
  34290. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34291. {
  34292. anthroFront: {
  34293. height: math.unit(9, "feet"),
  34294. weight: math.unit(600, "lb"),
  34295. name: "Anthro (Front)",
  34296. image: {
  34297. source: "./media/characters/glint/anthro-front.svg",
  34298. extra: 1097/1018,
  34299. bottom: 28/1125
  34300. }
  34301. },
  34302. anthroBack: {
  34303. height: math.unit(9, "feet"),
  34304. weight: math.unit(600, "lb"),
  34305. name: "Anthro (Back)",
  34306. image: {
  34307. source: "./media/characters/glint/anthro-back.svg",
  34308. extra: 1154/997,
  34309. bottom: 36/1190
  34310. }
  34311. },
  34312. feral: {
  34313. height: math.unit(11, "feet"),
  34314. weight: math.unit(50000, "lb"),
  34315. name: "Feral",
  34316. image: {
  34317. source: "./media/characters/glint/feral.svg",
  34318. extra: 3035/1585,
  34319. bottom: 1169/4204
  34320. }
  34321. },
  34322. dickAnthro: {
  34323. height: math.unit(0.7, "meters"),
  34324. name: "Dick (Anthro)",
  34325. image: {
  34326. source: "./media/characters/glint/dick-anthro.svg"
  34327. }
  34328. },
  34329. dickFeral: {
  34330. height: math.unit(2.65, "meters"),
  34331. name: "Dick (Feral)",
  34332. image: {
  34333. source: "./media/characters/glint/dick-feral.svg"
  34334. }
  34335. },
  34336. slitHidden: {
  34337. height: math.unit(5.85, "meters"),
  34338. name: "Slit (Hidden)",
  34339. image: {
  34340. source: "./media/characters/glint/slit-hidden.svg"
  34341. }
  34342. },
  34343. slitErect: {
  34344. height: math.unit(5.85, "meters"),
  34345. name: "Slit (Erect)",
  34346. image: {
  34347. source: "./media/characters/glint/slit-erect.svg"
  34348. }
  34349. },
  34350. mawAnthro: {
  34351. height: math.unit(0.63, "meters"),
  34352. name: "Maw (Anthro)",
  34353. image: {
  34354. source: "./media/characters/glint/maw.svg"
  34355. }
  34356. },
  34357. mawFeral: {
  34358. height: math.unit(2.89, "meters"),
  34359. name: "Maw (Feral)",
  34360. image: {
  34361. source: "./media/characters/glint/maw.svg"
  34362. }
  34363. },
  34364. },
  34365. [
  34366. {
  34367. name: "Normal",
  34368. height: math.unit(9, "feet"),
  34369. default: true
  34370. },
  34371. ]
  34372. ))
  34373. characterMakers.push(() => makeCharacter(
  34374. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34375. {
  34376. side: {
  34377. height: math.unit(15, "feet"),
  34378. weight: math.unit(5000, "kg"),
  34379. name: "Side",
  34380. image: {
  34381. source: "./media/characters/kairne/side.svg",
  34382. extra: 979/811,
  34383. bottom: 13/992
  34384. }
  34385. },
  34386. front: {
  34387. height: math.unit(15, "feet"),
  34388. weight: math.unit(5000, "kg"),
  34389. name: "Front",
  34390. image: {
  34391. source: "./media/characters/kairne/front.svg",
  34392. extra: 908/814,
  34393. bottom: 26/934
  34394. }
  34395. },
  34396. sideNsfw: {
  34397. height: math.unit(15, "feet"),
  34398. weight: math.unit(5000, "kg"),
  34399. name: "Side (NSFW)",
  34400. image: {
  34401. source: "./media/characters/kairne/side-nsfw.svg",
  34402. extra: 979/811,
  34403. bottom: 13/992
  34404. }
  34405. },
  34406. frontNsfw: {
  34407. height: math.unit(15, "feet"),
  34408. weight: math.unit(5000, "kg"),
  34409. name: "Front (NSFW)",
  34410. image: {
  34411. source: "./media/characters/kairne/front-nsfw.svg",
  34412. extra: 908/814,
  34413. bottom: 26/934
  34414. }
  34415. },
  34416. dickCaged: {
  34417. height: math.unit(0.65, "meters"),
  34418. name: "Dick-caged",
  34419. image: {
  34420. source: "./media/characters/kairne/dick-caged.svg"
  34421. }
  34422. },
  34423. dick: {
  34424. height: math.unit(0.79, "meters"),
  34425. name: "Dick",
  34426. image: {
  34427. source: "./media/characters/kairne/dick.svg"
  34428. }
  34429. },
  34430. genitals: {
  34431. height: math.unit(1.29, "meters"),
  34432. name: "Genitals",
  34433. image: {
  34434. source: "./media/characters/kairne/genitals.svg"
  34435. }
  34436. },
  34437. maw: {
  34438. height: math.unit(1.73, "meters"),
  34439. name: "Maw",
  34440. image: {
  34441. source: "./media/characters/kairne/maw.svg"
  34442. }
  34443. },
  34444. },
  34445. [
  34446. {
  34447. name: "Normal",
  34448. height: math.unit(15, "feet"),
  34449. default: true
  34450. },
  34451. ]
  34452. ))
  34453. characterMakers.push(() => makeCharacter(
  34454. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34455. {
  34456. front: {
  34457. height: math.unit(5 + 8/12, "feet"),
  34458. weight: math.unit(139, "lb"),
  34459. name: "Front",
  34460. image: {
  34461. source: "./media/characters/biscuit-jackal/front.svg",
  34462. extra: 2106/1961,
  34463. bottom: 58/2164
  34464. }
  34465. },
  34466. back: {
  34467. height: math.unit(5 + 8/12, "feet"),
  34468. weight: math.unit(139, "lb"),
  34469. name: "Back",
  34470. image: {
  34471. source: "./media/characters/biscuit-jackal/back.svg",
  34472. extra: 2132/1976,
  34473. bottom: 57/2189
  34474. }
  34475. },
  34476. werejackal: {
  34477. height: math.unit(6 + 3/12, "feet"),
  34478. weight: math.unit(188, "lb"),
  34479. name: "Werejackal",
  34480. image: {
  34481. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34482. extra: 2373/2178,
  34483. bottom: 53/2426
  34484. }
  34485. },
  34486. },
  34487. [
  34488. {
  34489. name: "Normal",
  34490. height: math.unit(5 + 8/12, "feet"),
  34491. default: true
  34492. },
  34493. ]
  34494. ))
  34495. characterMakers.push(() => makeCharacter(
  34496. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34497. {
  34498. front: {
  34499. height: math.unit(140, "cm"),
  34500. weight: math.unit(45, "kg"),
  34501. name: "Front",
  34502. image: {
  34503. source: "./media/characters/tayra-white/front.svg",
  34504. extra: 2229/2192,
  34505. bottom: 75/2304
  34506. }
  34507. },
  34508. },
  34509. [
  34510. {
  34511. name: "Normal",
  34512. height: math.unit(140, "cm"),
  34513. default: true
  34514. },
  34515. ]
  34516. ))
  34517. characterMakers.push(() => makeCharacter(
  34518. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34519. {
  34520. front: {
  34521. height: math.unit(4 + 5/12, "feet"),
  34522. name: "Front",
  34523. image: {
  34524. source: "./media/characters/scoop/front.svg",
  34525. extra: 1257/1136,
  34526. bottom: 69/1326
  34527. }
  34528. },
  34529. back: {
  34530. height: math.unit(4 + 5/12, "feet"),
  34531. name: "Back",
  34532. image: {
  34533. source: "./media/characters/scoop/back.svg",
  34534. extra: 1321/1152,
  34535. bottom: 32/1353
  34536. }
  34537. },
  34538. maw: {
  34539. height: math.unit(0.68, "feet"),
  34540. name: "Maw",
  34541. image: {
  34542. source: "./media/characters/scoop/maw.svg"
  34543. }
  34544. },
  34545. },
  34546. [
  34547. {
  34548. name: "Really Small",
  34549. height: math.unit(1, "mm")
  34550. },
  34551. {
  34552. name: "Micro",
  34553. height: math.unit(1, "inch")
  34554. },
  34555. {
  34556. name: "Normal",
  34557. height: math.unit(4 + 5/12, "feet"),
  34558. default: true
  34559. },
  34560. {
  34561. name: "Macro",
  34562. height: math.unit(200, "feet")
  34563. },
  34564. {
  34565. name: "Megamacro",
  34566. height: math.unit(3240, "feet")
  34567. },
  34568. {
  34569. name: "Teramacro",
  34570. height: math.unit(2500, "miles")
  34571. },
  34572. ]
  34573. ))
  34574. characterMakers.push(() => makeCharacter(
  34575. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34576. {
  34577. front: {
  34578. height: math.unit(15 + 7/12, "feet"),
  34579. weight: math.unit(1150, "tons"),
  34580. name: "Front",
  34581. image: {
  34582. source: "./media/characters/saphinara/front.svg",
  34583. extra: 1837/1643,
  34584. bottom: 84/1921
  34585. },
  34586. form: "normal",
  34587. default: true
  34588. },
  34589. side: {
  34590. height: math.unit(15 + 7/12, "feet"),
  34591. weight: math.unit(1150, "tons"),
  34592. name: "Side",
  34593. image: {
  34594. source: "./media/characters/saphinara/side.svg",
  34595. extra: 605/547,
  34596. bottom: 6/611
  34597. },
  34598. form: "normal"
  34599. },
  34600. back: {
  34601. height: math.unit(15 + 7/12, "feet"),
  34602. weight: math.unit(1150, "tons"),
  34603. name: "Back",
  34604. image: {
  34605. source: "./media/characters/saphinara/back.svg",
  34606. extra: 591/531,
  34607. bottom: 13/604
  34608. },
  34609. form: "normal"
  34610. },
  34611. frontTail: {
  34612. height: math.unit(15 + 7/12, "feet"),
  34613. weight: math.unit(1150, "tons"),
  34614. name: "Front (Full Tail)",
  34615. image: {
  34616. source: "./media/characters/saphinara/front-tail.svg",
  34617. extra: 2256/1630,
  34618. bottom: 261/2517
  34619. },
  34620. form: "normal"
  34621. },
  34622. insides: {
  34623. height: math.unit(11.92, "feet"),
  34624. name: "Insides",
  34625. image: {
  34626. source: "./media/characters/saphinara/insides.svg"
  34627. },
  34628. form: "normal"
  34629. },
  34630. head: {
  34631. height: math.unit(4.17, "feet"),
  34632. name: "Head",
  34633. image: {
  34634. source: "./media/characters/saphinara/head.svg"
  34635. },
  34636. form: "normal"
  34637. },
  34638. tongue: {
  34639. height: math.unit(4.60, "feet"),
  34640. name: "Tongue",
  34641. image: {
  34642. source: "./media/characters/saphinara/tongue.svg"
  34643. },
  34644. form: "normal"
  34645. },
  34646. headEnraged: {
  34647. height: math.unit(5.55, "feet"),
  34648. name: "Head (Enraged)",
  34649. image: {
  34650. source: "./media/characters/saphinara/head-enraged.svg"
  34651. },
  34652. form: "normal"
  34653. },
  34654. wings: {
  34655. height: math.unit(11.95, "feet"),
  34656. name: "Wings",
  34657. image: {
  34658. source: "./media/characters/saphinara/wings.svg"
  34659. },
  34660. form: "normal"
  34661. },
  34662. feathers: {
  34663. height: math.unit(8.92, "feet"),
  34664. name: "Feathers",
  34665. image: {
  34666. source: "./media/characters/saphinara/feathers.svg"
  34667. },
  34668. form: "normal"
  34669. },
  34670. shackles: {
  34671. height: math.unit(2, "feet"),
  34672. name: "Shackles",
  34673. image: {
  34674. source: "./media/characters/saphinara/shackles.svg"
  34675. },
  34676. form: "normal"
  34677. },
  34678. eyes: {
  34679. height: math.unit(1.331, "feet"),
  34680. name: "Eyes",
  34681. image: {
  34682. source: "./media/characters/saphinara/eyes.svg"
  34683. },
  34684. form: "normal"
  34685. },
  34686. eyesEnraged: {
  34687. height: math.unit(1.331, "feet"),
  34688. name: "Eyes (Enraged)",
  34689. image: {
  34690. source: "./media/characters/saphinara/eyes-enraged.svg"
  34691. },
  34692. form: "normal"
  34693. },
  34694. trueFormSide: {
  34695. height: math.unit(200, "feet"),
  34696. weight: math.unit(1e7, "tons"),
  34697. name: "Side",
  34698. image: {
  34699. source: "./media/characters/saphinara/true-form-side.svg",
  34700. extra: 1399/770,
  34701. bottom: 97/1496
  34702. },
  34703. form: "true-form",
  34704. default: true
  34705. },
  34706. trueFormMaw: {
  34707. height: math.unit(71.5, "feet"),
  34708. name: "Maw",
  34709. image: {
  34710. source: "./media/characters/saphinara/true-form-maw.svg",
  34711. extra: 2302/1453,
  34712. bottom: 0/2302
  34713. },
  34714. form: "true-form"
  34715. },
  34716. meowberusSide: {
  34717. height: math.unit(75, "feet"),
  34718. weight: math.unit(180000, "kg"),
  34719. preyCapacity: math.unit(50000, "people"),
  34720. name: "Side",
  34721. image: {
  34722. source: "./media/characters/saphinara/meowberus-side.svg",
  34723. extra: 1400/711,
  34724. bottom: 126/1526
  34725. },
  34726. form: "meowberus",
  34727. extraAttributes: {
  34728. "pawArea": {
  34729. name: "Paw Size",
  34730. power: 2,
  34731. type: "area",
  34732. base: math.unit(35, "m^2")
  34733. }
  34734. }
  34735. },
  34736. },
  34737. [
  34738. {
  34739. name: "Normal",
  34740. height: math.unit(15 + 7/12, "feet"),
  34741. default: true,
  34742. form: "normal"
  34743. },
  34744. {
  34745. name: "Angry",
  34746. height: math.unit(30 + 6/12, "feet"),
  34747. form: "normal"
  34748. },
  34749. {
  34750. name: "Enraged",
  34751. height: math.unit(102 + 1/12, "feet"),
  34752. form: "normal"
  34753. },
  34754. {
  34755. name: "True",
  34756. height: math.unit(200, "feet"),
  34757. default: true,
  34758. form: "true-form"
  34759. },
  34760. {
  34761. name: "Normal",
  34762. height: math.unit(75, "feet"),
  34763. default: true,
  34764. form: "meowberus"
  34765. },
  34766. ],
  34767. {
  34768. "normal": {
  34769. name: "Normal",
  34770. default: true
  34771. },
  34772. "true-form": {
  34773. name: "True Form"
  34774. },
  34775. "meowberus": {
  34776. name: "Meowberus",
  34777. },
  34778. }
  34779. ))
  34780. characterMakers.push(() => makeCharacter(
  34781. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34782. {
  34783. front: {
  34784. height: math.unit(6 + 8/12, "feet"),
  34785. weight: math.unit(300, "lb"),
  34786. name: "Front",
  34787. image: {
  34788. source: "./media/characters/jrain/front.svg",
  34789. extra: 3039/2865,
  34790. bottom: 399/3438
  34791. }
  34792. },
  34793. back: {
  34794. height: math.unit(6 + 8/12, "feet"),
  34795. weight: math.unit(300, "lb"),
  34796. name: "Back",
  34797. image: {
  34798. source: "./media/characters/jrain/back.svg",
  34799. extra: 3089/2938,
  34800. bottom: 172/3261
  34801. }
  34802. },
  34803. head: {
  34804. height: math.unit(2.14, "feet"),
  34805. name: "Head",
  34806. image: {
  34807. source: "./media/characters/jrain/head.svg"
  34808. }
  34809. },
  34810. maw: {
  34811. height: math.unit(1.77, "feet"),
  34812. name: "Maw",
  34813. image: {
  34814. source: "./media/characters/jrain/maw.svg"
  34815. }
  34816. },
  34817. leftHand: {
  34818. height: math.unit(1.1, "feet"),
  34819. name: "Left Hand",
  34820. image: {
  34821. source: "./media/characters/jrain/left-hand.svg"
  34822. }
  34823. },
  34824. rightHand: {
  34825. height: math.unit(1.1, "feet"),
  34826. name: "Right Hand",
  34827. image: {
  34828. source: "./media/characters/jrain/right-hand.svg"
  34829. }
  34830. },
  34831. eye: {
  34832. height: math.unit(0.35, "feet"),
  34833. name: "Eye",
  34834. image: {
  34835. source: "./media/characters/jrain/eye.svg"
  34836. }
  34837. },
  34838. },
  34839. [
  34840. {
  34841. name: "Normal",
  34842. height: math.unit(6 + 8/12, "feet"),
  34843. default: true
  34844. },
  34845. {
  34846. name: "Casually Large",
  34847. height: math.unit(25, "feet")
  34848. },
  34849. {
  34850. name: "Giant",
  34851. height: math.unit(100, "feet")
  34852. },
  34853. {
  34854. name: "Kaiju",
  34855. height: math.unit(300, "feet")
  34856. },
  34857. ]
  34858. ))
  34859. characterMakers.push(() => makeCharacter(
  34860. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34861. {
  34862. dragon: {
  34863. height: math.unit(5, "meters"),
  34864. name: "Dragon",
  34865. image: {
  34866. source: "./media/characters/sabrina/dragon.svg",
  34867. extra: 3670 / 2365,
  34868. bottom: 333 / 4003
  34869. }
  34870. },
  34871. gryphon: {
  34872. height: math.unit(3, "meters"),
  34873. name: "Gryphon",
  34874. image: {
  34875. source: "./media/characters/sabrina/gryphon.svg",
  34876. extra: 1576 / 945,
  34877. bottom: 71 / 1647
  34878. }
  34879. },
  34880. snake: {
  34881. height: math.unit(12, "meters"),
  34882. name: "Snake",
  34883. image: {
  34884. source: "./media/characters/sabrina/snake.svg",
  34885. extra: 1758 / 1320,
  34886. bottom: 186 / 1944
  34887. }
  34888. },
  34889. collar: {
  34890. height: math.unit(1.86, "meters"),
  34891. name: "Collar",
  34892. image: {
  34893. source: "./media/characters/sabrina/collar.svg"
  34894. }
  34895. },
  34896. eye: {
  34897. height: math.unit(0.53, "meters"),
  34898. name: "Eye",
  34899. image: {
  34900. source: "./media/characters/sabrina/eye.svg"
  34901. }
  34902. },
  34903. foot: {
  34904. height: math.unit(1.86, "meters"),
  34905. name: "Foot",
  34906. image: {
  34907. source: "./media/characters/sabrina/foot.svg"
  34908. }
  34909. },
  34910. hand: {
  34911. height: math.unit(1.32, "meters"),
  34912. name: "Hand",
  34913. image: {
  34914. source: "./media/characters/sabrina/hand.svg"
  34915. }
  34916. },
  34917. head: {
  34918. height: math.unit(2.44, "meters"),
  34919. name: "Head",
  34920. image: {
  34921. source: "./media/characters/sabrina/head.svg"
  34922. }
  34923. },
  34924. headAngry: {
  34925. height: math.unit(2.44, "meters"),
  34926. name: "Head (Angry))",
  34927. image: {
  34928. source: "./media/characters/sabrina/head-angry.svg"
  34929. }
  34930. },
  34931. maw: {
  34932. height: math.unit(1.65, "meters"),
  34933. name: "Maw",
  34934. image: {
  34935. source: "./media/characters/sabrina/maw.svg"
  34936. }
  34937. },
  34938. spikes: {
  34939. height: math.unit(1.69, "meters"),
  34940. name: "Spikes",
  34941. image: {
  34942. source: "./media/characters/sabrina/spikes.svg"
  34943. }
  34944. },
  34945. stomach: {
  34946. height: math.unit(1.15, "meters"),
  34947. name: "Stomach",
  34948. image: {
  34949. source: "./media/characters/sabrina/stomach.svg"
  34950. }
  34951. },
  34952. tongue: {
  34953. height: math.unit(1.27, "meters"),
  34954. name: "Tongue",
  34955. image: {
  34956. source: "./media/characters/sabrina/tongue.svg"
  34957. }
  34958. },
  34959. wingDorsal: {
  34960. height: math.unit(4.85, "meters"),
  34961. name: "Wing (Dorsal)",
  34962. image: {
  34963. source: "./media/characters/sabrina/wing-dorsal.svg"
  34964. }
  34965. },
  34966. wingVentral: {
  34967. height: math.unit(4.85, "meters"),
  34968. name: "Wing (Ventral)",
  34969. image: {
  34970. source: "./media/characters/sabrina/wing-ventral.svg"
  34971. }
  34972. },
  34973. },
  34974. [
  34975. {
  34976. name: "Normal",
  34977. height: math.unit(5, "meters"),
  34978. default: true
  34979. },
  34980. ]
  34981. ))
  34982. characterMakers.push(() => makeCharacter(
  34983. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34984. {
  34985. frontMaid: {
  34986. height: math.unit(5 + 5/12, "feet"),
  34987. weight: math.unit(130, "lb"),
  34988. name: "Front (Maid)",
  34989. image: {
  34990. source: "./media/characters/midnight-tales/front-maid.svg",
  34991. extra: 489/454,
  34992. bottom: 61/550
  34993. }
  34994. },
  34995. frontFormal: {
  34996. height: math.unit(5 + 5/12, "feet"),
  34997. weight: math.unit(130, "lb"),
  34998. name: "Front (Formal)",
  34999. image: {
  35000. source: "./media/characters/midnight-tales/front-formal.svg",
  35001. extra: 489/454,
  35002. bottom: 61/550
  35003. }
  35004. },
  35005. back: {
  35006. height: math.unit(5 + 5/12, "feet"),
  35007. weight: math.unit(130, "lb"),
  35008. name: "Back",
  35009. image: {
  35010. source: "./media/characters/midnight-tales/back.svg",
  35011. extra: 498/456,
  35012. bottom: 33/531
  35013. }
  35014. },
  35015. frontBeast: {
  35016. height: math.unit(40, "feet"),
  35017. weight: math.unit(64000, "lb"),
  35018. name: "Front (Beast)",
  35019. image: {
  35020. source: "./media/characters/midnight-tales/front-beast.svg",
  35021. extra: 927/860,
  35022. bottom: 53/980
  35023. }
  35024. },
  35025. backBeast: {
  35026. height: math.unit(40, "feet"),
  35027. weight: math.unit(64000, "lb"),
  35028. name: "Back (Beast)",
  35029. image: {
  35030. source: "./media/characters/midnight-tales/back-beast.svg",
  35031. extra: 929/855,
  35032. bottom: 16/945
  35033. }
  35034. },
  35035. footBeast: {
  35036. height: math.unit(6.7, "feet"),
  35037. name: "Foot (Beast)",
  35038. image: {
  35039. source: "./media/characters/midnight-tales/foot-beast.svg"
  35040. }
  35041. },
  35042. headBeast: {
  35043. height: math.unit(8, "feet"),
  35044. name: "Head (Beast)",
  35045. image: {
  35046. source: "./media/characters/midnight-tales/head-beast.svg"
  35047. }
  35048. },
  35049. },
  35050. [
  35051. {
  35052. name: "Normal",
  35053. height: math.unit(5 + 5 / 12, "feet"),
  35054. default: true
  35055. },
  35056. {
  35057. name: "Macro",
  35058. height: math.unit(25, "feet")
  35059. },
  35060. ]
  35061. ))
  35062. characterMakers.push(() => makeCharacter(
  35063. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35064. {
  35065. front: {
  35066. height: math.unit(5 + 10/12, "feet"),
  35067. name: "Front",
  35068. image: {
  35069. source: "./media/characters/argon/front.svg",
  35070. extra: 2009/1935,
  35071. bottom: 118/2127
  35072. }
  35073. },
  35074. back: {
  35075. height: math.unit(5 + 10/12, "feet"),
  35076. name: "Back",
  35077. image: {
  35078. source: "./media/characters/argon/back.svg",
  35079. extra: 2047/1992,
  35080. bottom: 20/2067
  35081. }
  35082. },
  35083. frontDressed: {
  35084. height: math.unit(5 + 10/12, "feet"),
  35085. name: "Front (Dressed)",
  35086. image: {
  35087. source: "./media/characters/argon/front-dressed.svg",
  35088. extra: 2009/1935,
  35089. bottom: 118/2127
  35090. }
  35091. },
  35092. },
  35093. [
  35094. {
  35095. name: "Normal",
  35096. height: math.unit(5 + 10/12, "feet"),
  35097. default: true
  35098. },
  35099. ]
  35100. ))
  35101. characterMakers.push(() => makeCharacter(
  35102. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35103. {
  35104. front: {
  35105. height: math.unit(8 + 6/12, "feet"),
  35106. weight: math.unit(1150, "lb"),
  35107. name: "Front",
  35108. image: {
  35109. source: "./media/characters/kichi/front.svg",
  35110. extra: 1267/1164,
  35111. bottom: 61/1328
  35112. }
  35113. },
  35114. back: {
  35115. height: math.unit(8 + 6/12, "feet"),
  35116. weight: math.unit(1150, "lb"),
  35117. name: "Back",
  35118. image: {
  35119. source: "./media/characters/kichi/back.svg",
  35120. extra: 1273/1166,
  35121. bottom: 33/1306
  35122. }
  35123. },
  35124. },
  35125. [
  35126. {
  35127. name: "Normal",
  35128. height: math.unit(8 + 6/12, "feet"),
  35129. default: true
  35130. },
  35131. ]
  35132. ))
  35133. characterMakers.push(() => makeCharacter(
  35134. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35135. {
  35136. front: {
  35137. height: math.unit(6, "feet"),
  35138. weight: math.unit(210, "lb"),
  35139. name: "Front",
  35140. image: {
  35141. source: "./media/characters/manetel-greyscale/front.svg",
  35142. extra: 350/312,
  35143. bottom: 8/358
  35144. }
  35145. },
  35146. },
  35147. [
  35148. {
  35149. name: "Micro",
  35150. height: math.unit(2, "inches")
  35151. },
  35152. {
  35153. name: "Normal",
  35154. height: math.unit(6, "feet"),
  35155. default: true
  35156. },
  35157. {
  35158. name: "Minimacro",
  35159. height: math.unit(17, "feet")
  35160. },
  35161. {
  35162. name: "Macro",
  35163. height: math.unit(117, "feet")
  35164. },
  35165. ]
  35166. ))
  35167. characterMakers.push(() => makeCharacter(
  35168. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35169. {
  35170. side: {
  35171. height: math.unit(5 + 1/12, "feet"),
  35172. weight: math.unit(418, "lb"),
  35173. name: "Side",
  35174. image: {
  35175. source: "./media/characters/softpurr/side.svg",
  35176. extra: 1993/1945,
  35177. bottom: 134/2127
  35178. }
  35179. },
  35180. front: {
  35181. height: math.unit(5 + 1/12, "feet"),
  35182. weight: math.unit(418, "lb"),
  35183. name: "Front",
  35184. image: {
  35185. source: "./media/characters/softpurr/front.svg",
  35186. extra: 1950/1856,
  35187. bottom: 174/2124
  35188. }
  35189. },
  35190. paw: {
  35191. height: math.unit(1, "feet"),
  35192. name: "Paw",
  35193. image: {
  35194. source: "./media/characters/softpurr/paw.svg"
  35195. }
  35196. },
  35197. },
  35198. [
  35199. {
  35200. name: "Normal",
  35201. height: math.unit(5 + 1/12, "feet"),
  35202. default: true
  35203. },
  35204. ]
  35205. ))
  35206. characterMakers.push(() => makeCharacter(
  35207. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35208. {
  35209. front: {
  35210. height: math.unit(260, "meters"),
  35211. name: "Front",
  35212. image: {
  35213. source: "./media/characters/anahita/front.svg",
  35214. extra: 665/635,
  35215. bottom: 89/754
  35216. }
  35217. },
  35218. },
  35219. [
  35220. {
  35221. name: "Macro",
  35222. height: math.unit(260, "meters"),
  35223. default: true
  35224. },
  35225. ]
  35226. ))
  35227. characterMakers.push(() => makeCharacter(
  35228. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35229. {
  35230. front: {
  35231. height: math.unit(4 + 10/12, "feet"),
  35232. weight: math.unit(160, "lb"),
  35233. name: "Front",
  35234. image: {
  35235. source: "./media/characters/chip-mouse/front.svg",
  35236. extra: 3528/3408,
  35237. bottom: 0/3528
  35238. }
  35239. },
  35240. frontNsfw: {
  35241. height: math.unit(4 + 10/12, "feet"),
  35242. weight: math.unit(160, "lb"),
  35243. name: "Front (NSFW)",
  35244. image: {
  35245. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35246. extra: 3528/3408,
  35247. bottom: 0/3528
  35248. }
  35249. },
  35250. },
  35251. [
  35252. {
  35253. name: "Normal",
  35254. height: math.unit(4 + 10/12, "feet"),
  35255. default: true
  35256. },
  35257. ]
  35258. ))
  35259. characterMakers.push(() => makeCharacter(
  35260. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35261. {
  35262. side: {
  35263. height: math.unit(10, "feet"),
  35264. weight: math.unit(14000, "lb"),
  35265. name: "Side",
  35266. image: {
  35267. source: "./media/characters/kremm/side.svg",
  35268. extra: 1390/1053,
  35269. bottom: 90/1480
  35270. }
  35271. },
  35272. gut: {
  35273. height: math.unit(5.8, "feet"),
  35274. name: "Gut",
  35275. image: {
  35276. source: "./media/characters/kremm/gut.svg"
  35277. }
  35278. },
  35279. ass: {
  35280. height: math.unit(6.1, "feet"),
  35281. name: "Ass",
  35282. image: {
  35283. source: "./media/characters/kremm/ass.svg"
  35284. }
  35285. },
  35286. jaws: {
  35287. height: math.unit(2.2, "feet"),
  35288. name: "Jaws",
  35289. image: {
  35290. source: "./media/characters/kremm/jaws.svg"
  35291. }
  35292. },
  35293. dick: {
  35294. height: math.unit(4.26, "feet"),
  35295. name: "Dick",
  35296. image: {
  35297. source: "./media/characters/kremm/dick.svg"
  35298. }
  35299. },
  35300. },
  35301. [
  35302. {
  35303. name: "Normal",
  35304. height: math.unit(10, "feet"),
  35305. default: true
  35306. },
  35307. ]
  35308. ))
  35309. characterMakers.push(() => makeCharacter(
  35310. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35311. {
  35312. front: {
  35313. height: math.unit(30, "stories"),
  35314. name: "Front",
  35315. image: {
  35316. source: "./media/characters/kai/front.svg",
  35317. extra: 1892/1718,
  35318. bottom: 162/2054
  35319. }
  35320. },
  35321. },
  35322. [
  35323. {
  35324. name: "Macro",
  35325. height: math.unit(30, "stories"),
  35326. default: true
  35327. },
  35328. ]
  35329. ))
  35330. characterMakers.push(() => makeCharacter(
  35331. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35332. {
  35333. front: {
  35334. height: math.unit(6 + 4/12, "feet"),
  35335. weight: math.unit(145, "lb"),
  35336. name: "Front",
  35337. image: {
  35338. source: "./media/characters/sykes/front.svg",
  35339. extra: 1321 / 1187,
  35340. bottom: 66 / 1387
  35341. }
  35342. },
  35343. back: {
  35344. height: math.unit(6 + 4/12, "feet"),
  35345. weight: math.unit(145, "lb"),
  35346. name: "Back",
  35347. image: {
  35348. source: "./media/characters/sykes/back.svg",
  35349. extra: 1326/1181,
  35350. bottom: 31/1357
  35351. }
  35352. },
  35353. traditionalOutfit: {
  35354. height: math.unit(6 + 4/12, "feet"),
  35355. weight: math.unit(145, "lb"),
  35356. name: "Traditional Outfit",
  35357. image: {
  35358. source: "./media/characters/sykes/traditional-outfit.svg",
  35359. extra: 1321 / 1187,
  35360. bottom: 66 / 1387
  35361. }
  35362. },
  35363. adventureOutfit: {
  35364. height: math.unit(6 + 4/12, "feet"),
  35365. weight: math.unit(145, "lb"),
  35366. name: "Adventure Outfit",
  35367. image: {
  35368. source: "./media/characters/sykes/adventure-outfit.svg",
  35369. extra: 1321 / 1187,
  35370. bottom: 66 / 1387
  35371. }
  35372. },
  35373. handLeft: {
  35374. height: math.unit(0.9, "feet"),
  35375. name: "Hand (Left)",
  35376. image: {
  35377. source: "./media/characters/sykes/hand-left.svg"
  35378. }
  35379. },
  35380. handRight: {
  35381. height: math.unit(0.839, "feet"),
  35382. name: "Hand (Right)",
  35383. image: {
  35384. source: "./media/characters/sykes/hand-right.svg"
  35385. }
  35386. },
  35387. leftFoot: {
  35388. height: math.unit(1.2, "feet"),
  35389. name: "Foot (Left)",
  35390. image: {
  35391. source: "./media/characters/sykes/foot-left.svg"
  35392. }
  35393. },
  35394. rightFoot: {
  35395. height: math.unit(1.2, "feet"),
  35396. name: "Foot (Right)",
  35397. image: {
  35398. source: "./media/characters/sykes/foot-right.svg"
  35399. }
  35400. },
  35401. maw: {
  35402. height: math.unit(1.93, "feet"),
  35403. name: "Maw",
  35404. image: {
  35405. source: "./media/characters/sykes/maw.svg"
  35406. }
  35407. },
  35408. teeth: {
  35409. height: math.unit(0.51, "feet"),
  35410. name: "Teeth",
  35411. image: {
  35412. source: "./media/characters/sykes/teeth.svg"
  35413. }
  35414. },
  35415. tongue: {
  35416. height: math.unit(2.13, "feet"),
  35417. name: "Tongue",
  35418. image: {
  35419. source: "./media/characters/sykes/tongue.svg"
  35420. }
  35421. },
  35422. uvula: {
  35423. height: math.unit(0.16, "feet"),
  35424. name: "Uvula",
  35425. image: {
  35426. source: "./media/characters/sykes/uvula.svg"
  35427. }
  35428. },
  35429. collar: {
  35430. height: math.unit(0.287, "feet"),
  35431. name: "Collar",
  35432. image: {
  35433. source: "./media/characters/sykes/collar.svg"
  35434. }
  35435. },
  35436. tail: {
  35437. height: math.unit(3.8, "feet"),
  35438. name: "Tail",
  35439. image: {
  35440. source: "./media/characters/sykes/tail.svg"
  35441. }
  35442. },
  35443. },
  35444. [
  35445. {
  35446. name: "Shrunken",
  35447. height: math.unit(5, "inches")
  35448. },
  35449. {
  35450. name: "Normal",
  35451. height: math.unit(6 + 4 / 12, "feet"),
  35452. default: true
  35453. },
  35454. {
  35455. name: "Big",
  35456. height: math.unit(15, "feet")
  35457. },
  35458. ]
  35459. ))
  35460. characterMakers.push(() => makeCharacter(
  35461. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35462. {
  35463. front: {
  35464. height: math.unit(5 + 8/12, "feet"),
  35465. weight: math.unit(190, "lb"),
  35466. name: "Front",
  35467. image: {
  35468. source: "./media/characters/oven-otter/front.svg",
  35469. extra: 1809/1740,
  35470. bottom: 181/1990
  35471. }
  35472. },
  35473. back: {
  35474. height: math.unit(5 + 8/12, "feet"),
  35475. weight: math.unit(190, "lb"),
  35476. name: "Back",
  35477. image: {
  35478. source: "./media/characters/oven-otter/back.svg",
  35479. extra: 1709/1635,
  35480. bottom: 118/1827
  35481. }
  35482. },
  35483. hand: {
  35484. height: math.unit(1.07, "feet"),
  35485. name: "Hand",
  35486. image: {
  35487. source: "./media/characters/oven-otter/hand.svg"
  35488. }
  35489. },
  35490. beans: {
  35491. height: math.unit(1.74, "feet"),
  35492. name: "Beans",
  35493. image: {
  35494. source: "./media/characters/oven-otter/beans.svg"
  35495. }
  35496. },
  35497. },
  35498. [
  35499. {
  35500. name: "Micro",
  35501. height: math.unit(0.5, "inches")
  35502. },
  35503. {
  35504. name: "Normal",
  35505. height: math.unit(5 + 8/12, "feet"),
  35506. default: true
  35507. },
  35508. {
  35509. name: "Macro",
  35510. height: math.unit(250, "feet")
  35511. },
  35512. {
  35513. name: "Really High",
  35514. height: math.unit(420, "feet")
  35515. },
  35516. ]
  35517. ))
  35518. characterMakers.push(() => makeCharacter(
  35519. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35520. {
  35521. front: {
  35522. height: math.unit(5, "meters"),
  35523. weight: math.unit(292000000000000, "kg"),
  35524. name: "Front",
  35525. image: {
  35526. source: "./media/characters/devourer/front.svg",
  35527. extra: 1800/1733,
  35528. bottom: 211/2011
  35529. }
  35530. },
  35531. maw: {
  35532. height: math.unit(1.1, "meter"),
  35533. name: "Maw",
  35534. image: {
  35535. source: "./media/characters/devourer/maw.svg"
  35536. }
  35537. },
  35538. },
  35539. [
  35540. {
  35541. name: "Small",
  35542. height: math.unit(3, "meters")
  35543. },
  35544. {
  35545. name: "Large",
  35546. height: math.unit(5, "meters"),
  35547. default: true
  35548. },
  35549. ]
  35550. ))
  35551. characterMakers.push(() => makeCharacter(
  35552. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35553. {
  35554. front: {
  35555. height: math.unit(6, "feet"),
  35556. weight: math.unit(400, "lb"),
  35557. name: "Front",
  35558. image: {
  35559. source: "./media/characters/ellarby/front.svg",
  35560. extra: 1909/1763,
  35561. bottom: 80/1989
  35562. }
  35563. },
  35564. back: {
  35565. height: math.unit(6, "feet"),
  35566. weight: math.unit(400, "lb"),
  35567. name: "Back",
  35568. image: {
  35569. source: "./media/characters/ellarby/back.svg",
  35570. extra: 1914/1784,
  35571. bottom: 172/2086
  35572. }
  35573. },
  35574. },
  35575. [
  35576. {
  35577. name: "Mischief",
  35578. height: math.unit(18, "inches")
  35579. },
  35580. {
  35581. name: "Trouble",
  35582. height: math.unit(12, "feet")
  35583. },
  35584. {
  35585. name: "Havoc",
  35586. height: math.unit(200, "feet"),
  35587. default: true
  35588. },
  35589. {
  35590. name: "Pandemonium",
  35591. height: math.unit(1, "mile")
  35592. },
  35593. {
  35594. name: "Catastrophe",
  35595. height: math.unit(100, "miles")
  35596. },
  35597. ]
  35598. ))
  35599. characterMakers.push(() => makeCharacter(
  35600. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35601. {
  35602. front: {
  35603. height: math.unit(4.7, "meters"),
  35604. weight: math.unit(6500, "kg"),
  35605. name: "Front",
  35606. image: {
  35607. source: "./media/characters/vex/front.svg",
  35608. extra: 1288/1140,
  35609. bottom: 100/1388
  35610. }
  35611. },
  35612. },
  35613. [
  35614. {
  35615. name: "Normal",
  35616. height: math.unit(4.7, "meters"),
  35617. default: true
  35618. },
  35619. ]
  35620. ))
  35621. characterMakers.push(() => makeCharacter(
  35622. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35623. {
  35624. normal: {
  35625. height: math.unit(6, "feet"),
  35626. weight: math.unit(350, "lb"),
  35627. name: "Normal",
  35628. image: {
  35629. source: "./media/characters/teshy/normal.svg",
  35630. extra: 1795/1735,
  35631. bottom: 16/1811
  35632. }
  35633. },
  35634. monsterFront: {
  35635. height: math.unit(12, "feet"),
  35636. weight: math.unit(4700, "lb"),
  35637. name: "Monster (Front)",
  35638. image: {
  35639. source: "./media/characters/teshy/monster-front.svg",
  35640. extra: 2042/2034,
  35641. bottom: 128/2170
  35642. }
  35643. },
  35644. monsterSide: {
  35645. height: math.unit(12, "feet"),
  35646. weight: math.unit(4700, "lb"),
  35647. name: "Monster (Side)",
  35648. image: {
  35649. source: "./media/characters/teshy/monster-side.svg",
  35650. extra: 2067/2056,
  35651. bottom: 70/2137
  35652. }
  35653. },
  35654. monsterBack: {
  35655. height: math.unit(12, "feet"),
  35656. weight: math.unit(4700, "lb"),
  35657. name: "Monster (Back)",
  35658. image: {
  35659. source: "./media/characters/teshy/monster-back.svg",
  35660. extra: 1921/1914,
  35661. bottom: 171/2092
  35662. }
  35663. },
  35664. },
  35665. [
  35666. {
  35667. name: "Normal",
  35668. height: math.unit(6, "feet"),
  35669. default: true
  35670. },
  35671. ]
  35672. ))
  35673. characterMakers.push(() => makeCharacter(
  35674. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35675. {
  35676. front: {
  35677. height: math.unit(6, "feet"),
  35678. name: "Front",
  35679. image: {
  35680. source: "./media/characters/ramey/front.svg",
  35681. extra: 790/787,
  35682. bottom: 27/817
  35683. }
  35684. },
  35685. },
  35686. [
  35687. {
  35688. name: "Normal",
  35689. height: math.unit(6, "feet"),
  35690. default: true
  35691. },
  35692. ]
  35693. ))
  35694. characterMakers.push(() => makeCharacter(
  35695. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35696. {
  35697. front: {
  35698. height: math.unit(5 + 5/12, "feet"),
  35699. weight: math.unit(120, "lb"),
  35700. name: "Front",
  35701. image: {
  35702. source: "./media/characters/phirae/front.svg",
  35703. extra: 2491/2436,
  35704. bottom: 38/2529
  35705. }
  35706. },
  35707. },
  35708. [
  35709. {
  35710. name: "Normal",
  35711. height: math.unit(5 + 5/12, "feet"),
  35712. default: true
  35713. },
  35714. ]
  35715. ))
  35716. characterMakers.push(() => makeCharacter(
  35717. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35718. {
  35719. front: {
  35720. height: math.unit(5 + 3/12, "feet"),
  35721. name: "Front",
  35722. image: {
  35723. source: "./media/characters/stagglas/front.svg",
  35724. extra: 962/882,
  35725. bottom: 53/1015
  35726. }
  35727. },
  35728. feral: {
  35729. height: math.unit(335, "cm"),
  35730. name: "Feral",
  35731. image: {
  35732. source: "./media/characters/stagglas/feral.svg",
  35733. extra: 1732/1090,
  35734. bottom: 48/1780
  35735. }
  35736. },
  35737. },
  35738. [
  35739. {
  35740. name: "Normal",
  35741. height: math.unit(5 + 3/12, "feet"),
  35742. default: true
  35743. },
  35744. ]
  35745. ))
  35746. characterMakers.push(() => makeCharacter(
  35747. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35748. {
  35749. front: {
  35750. height: math.unit(5 + 4/12, "feet"),
  35751. weight: math.unit(145, "lb"),
  35752. name: "Front",
  35753. image: {
  35754. source: "./media/characters/starra/front.svg",
  35755. extra: 1790/1691,
  35756. bottom: 91/1881
  35757. }
  35758. },
  35759. },
  35760. [
  35761. {
  35762. name: "Normal",
  35763. height: math.unit(5 + 4/12, "feet"),
  35764. default: true
  35765. },
  35766. ]
  35767. ))
  35768. characterMakers.push(() => makeCharacter(
  35769. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35770. {
  35771. front: {
  35772. height: math.unit(2.2, "meters"),
  35773. name: "Front",
  35774. image: {
  35775. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35776. extra: 1194/1005,
  35777. bottom: 25/1219
  35778. }
  35779. },
  35780. },
  35781. [
  35782. {
  35783. name: "Normal",
  35784. height: math.unit(2.2, "meters"),
  35785. default: true
  35786. },
  35787. ]
  35788. ))
  35789. characterMakers.push(() => makeCharacter(
  35790. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35791. {
  35792. side: {
  35793. height: math.unit(8 + 2/12, "feet"),
  35794. weight: math.unit(1240, "lb"),
  35795. name: "Side",
  35796. image: {
  35797. source: "./media/characters/mika-valentine/side.svg",
  35798. extra: 2670/2501,
  35799. bottom: 250/2920
  35800. }
  35801. },
  35802. },
  35803. [
  35804. {
  35805. name: "Normal",
  35806. height: math.unit(8 + 2/12, "feet"),
  35807. default: true
  35808. },
  35809. ]
  35810. ))
  35811. characterMakers.push(() => makeCharacter(
  35812. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35813. {
  35814. front: {
  35815. height: math.unit(7 + 2/12, "feet"),
  35816. name: "Front",
  35817. image: {
  35818. source: "./media/characters/xoltol/front.svg",
  35819. extra: 2212/2124,
  35820. bottom: 84/2296
  35821. }
  35822. },
  35823. side: {
  35824. height: math.unit(7 + 2/12, "feet"),
  35825. name: "Side",
  35826. image: {
  35827. source: "./media/characters/xoltol/side.svg",
  35828. extra: 2273/2197,
  35829. bottom: 26/2299
  35830. }
  35831. },
  35832. hand: {
  35833. height: math.unit(2.5, "feet"),
  35834. name: "Hand",
  35835. image: {
  35836. source: "./media/characters/xoltol/hand.svg"
  35837. }
  35838. },
  35839. },
  35840. [
  35841. {
  35842. name: "Small-ish",
  35843. height: math.unit(5 + 11/12, "feet")
  35844. },
  35845. {
  35846. name: "Normal",
  35847. height: math.unit(7 + 2/12, "feet")
  35848. },
  35849. {
  35850. name: "\"Macro\"",
  35851. height: math.unit(14 + 9/12, "feet"),
  35852. default: true
  35853. },
  35854. {
  35855. name: "Alternate Height",
  35856. height: math.unit(20, "feet")
  35857. },
  35858. {
  35859. name: "Actually Macro",
  35860. height: math.unit(100, "feet")
  35861. },
  35862. ]
  35863. ))
  35864. characterMakers.push(() => makeCharacter(
  35865. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35866. {
  35867. front: {
  35868. height: math.unit(5 + 2/12, "feet"),
  35869. name: "Front",
  35870. image: {
  35871. source: "./media/characters/kotetsu-redwood/front.svg",
  35872. extra: 1053/942,
  35873. bottom: 60/1113
  35874. }
  35875. },
  35876. },
  35877. [
  35878. {
  35879. name: "Normal",
  35880. height: math.unit(5 + 2/12, "feet"),
  35881. default: true
  35882. },
  35883. ]
  35884. ))
  35885. characterMakers.push(() => makeCharacter(
  35886. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35887. {
  35888. front: {
  35889. height: math.unit(2.4, "meters"),
  35890. weight: math.unit(125, "kg"),
  35891. name: "Front",
  35892. image: {
  35893. source: "./media/characters/lilith/front.svg",
  35894. extra: 1590/1513,
  35895. bottom: 203/1793
  35896. }
  35897. },
  35898. },
  35899. [
  35900. {
  35901. name: "Humanoid",
  35902. height: math.unit(2.4, "meters")
  35903. },
  35904. {
  35905. name: "Normal",
  35906. height: math.unit(6, "meters"),
  35907. default: true
  35908. },
  35909. {
  35910. name: "Largest",
  35911. height: math.unit(55, "meters")
  35912. },
  35913. ]
  35914. ))
  35915. characterMakers.push(() => makeCharacter(
  35916. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35917. {
  35918. front: {
  35919. height: math.unit(8 + 4/12, "feet"),
  35920. weight: math.unit(535, "lb"),
  35921. name: "Front",
  35922. image: {
  35923. source: "./media/characters/beh'kah-bolger/front.svg",
  35924. extra: 1660/1603,
  35925. bottom: 37/1697
  35926. }
  35927. },
  35928. },
  35929. [
  35930. {
  35931. name: "Normal",
  35932. height: math.unit(8 + 4/12, "feet"),
  35933. default: true
  35934. },
  35935. {
  35936. name: "Kaiju",
  35937. height: math.unit(250, "feet")
  35938. },
  35939. {
  35940. name: "Still Growing",
  35941. height: math.unit(10, "miles")
  35942. },
  35943. {
  35944. name: "Continental",
  35945. height: math.unit(5000, "miles")
  35946. },
  35947. {
  35948. name: "Final Form",
  35949. height: math.unit(2500000, "miles")
  35950. },
  35951. ]
  35952. ))
  35953. characterMakers.push(() => makeCharacter(
  35954. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35955. {
  35956. front: {
  35957. height: math.unit(7 + 2/12, "feet"),
  35958. weight: math.unit(230, "kg"),
  35959. name: "Front",
  35960. image: {
  35961. source: "./media/characters/tatyana-milewska/front.svg",
  35962. extra: 1199/1150,
  35963. bottom: 86/1285
  35964. }
  35965. },
  35966. },
  35967. [
  35968. {
  35969. name: "Normal",
  35970. height: math.unit(7 + 2/12, "feet"),
  35971. default: true
  35972. },
  35973. {
  35974. name: "Big",
  35975. height: math.unit(12, "feet")
  35976. },
  35977. {
  35978. name: "Minimacro",
  35979. height: math.unit(20, "feet")
  35980. },
  35981. {
  35982. name: "Macro",
  35983. height: math.unit(120, "feet")
  35984. },
  35985. ]
  35986. ))
  35987. characterMakers.push(() => makeCharacter(
  35988. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35989. {
  35990. front: {
  35991. height: math.unit(7 + 8/12, "feet"),
  35992. weight: math.unit(152, "kg"),
  35993. name: "Front",
  35994. image: {
  35995. source: "./media/characters/helen-arri/front.svg",
  35996. extra: 440/423,
  35997. bottom: 14/454
  35998. }
  35999. },
  36000. back: {
  36001. height: math.unit(7 + 8/12, "feet"),
  36002. weight: math.unit(152, "kg"),
  36003. name: "Back",
  36004. image: {
  36005. source: "./media/characters/helen-arri/back.svg",
  36006. extra: 443/426,
  36007. bottom: 8/451
  36008. }
  36009. },
  36010. },
  36011. [
  36012. {
  36013. name: "Normal",
  36014. height: math.unit(7 + 8/12, "feet"),
  36015. default: true
  36016. },
  36017. {
  36018. name: "Big",
  36019. height: math.unit(14, "feet")
  36020. },
  36021. {
  36022. name: "Minimacro",
  36023. height: math.unit(24, "feet")
  36024. },
  36025. {
  36026. name: "Macro",
  36027. height: math.unit(140, "feet")
  36028. },
  36029. ]
  36030. ))
  36031. characterMakers.push(() => makeCharacter(
  36032. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36033. {
  36034. front: {
  36035. height: math.unit(6, "meters"),
  36036. name: "Front",
  36037. image: {
  36038. source: "./media/characters/ehanu-rehu/front.svg",
  36039. extra: 1800/1800,
  36040. bottom: 59/1859
  36041. }
  36042. },
  36043. },
  36044. [
  36045. {
  36046. name: "Normal",
  36047. height: math.unit(6, "meters"),
  36048. default: true
  36049. },
  36050. ]
  36051. ))
  36052. characterMakers.push(() => makeCharacter(
  36053. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36054. {
  36055. front: {
  36056. height: math.unit(7 + 3/12, "feet"),
  36057. name: "Front",
  36058. image: {
  36059. source: "./media/characters/renholder/front.svg",
  36060. extra: 3096/2960,
  36061. bottom: 250/3346
  36062. }
  36063. },
  36064. },
  36065. [
  36066. {
  36067. name: "Normal Bat",
  36068. height: math.unit(7 + 3/12, "feet"),
  36069. default: true
  36070. },
  36071. {
  36072. name: "Slightly Tall Bat",
  36073. height: math.unit(100, "feet")
  36074. },
  36075. {
  36076. name: "Big Bat",
  36077. height: math.unit(1000, "feet")
  36078. },
  36079. {
  36080. name: "City-Sized Bat",
  36081. height: math.unit(200000, "feet")
  36082. },
  36083. {
  36084. name: "Bigger Bat",
  36085. height: math.unit(10000, "miles")
  36086. },
  36087. {
  36088. name: "Solar Sized Bat",
  36089. height: math.unit(100, "AU")
  36090. },
  36091. {
  36092. name: "Galactic Bat",
  36093. height: math.unit(200000, "lightyears")
  36094. },
  36095. {
  36096. name: "Universally Known Bat",
  36097. height: math.unit(1, "universe")
  36098. },
  36099. ]
  36100. ))
  36101. characterMakers.push(() => makeCharacter(
  36102. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36103. {
  36104. front: {
  36105. height: math.unit(6 + 11/12, "feet"),
  36106. weight: math.unit(250, "lb"),
  36107. name: "Front",
  36108. image: {
  36109. source: "./media/characters/cookiecat/front.svg",
  36110. extra: 893/827,
  36111. bottom: 14/907
  36112. }
  36113. },
  36114. },
  36115. [
  36116. {
  36117. name: "Micro",
  36118. height: math.unit(3, "inches")
  36119. },
  36120. {
  36121. name: "Normal",
  36122. height: math.unit(6 + 11/12, "feet"),
  36123. default: true
  36124. },
  36125. {
  36126. name: "Macro",
  36127. height: math.unit(100, "feet")
  36128. },
  36129. {
  36130. name: "Macro+",
  36131. height: math.unit(404, "feet")
  36132. },
  36133. {
  36134. name: "Megamacro",
  36135. height: math.unit(165, "miles")
  36136. },
  36137. {
  36138. name: "Planetary",
  36139. height: math.unit(4600, "miles")
  36140. },
  36141. ]
  36142. ))
  36143. characterMakers.push(() => makeCharacter(
  36144. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36145. {
  36146. front: {
  36147. height: math.unit(10 + 3/12, "feet"),
  36148. weight: math.unit(1500, "lb"),
  36149. name: "Front",
  36150. image: {
  36151. source: "./media/characters/tux-kusanagi/front.svg",
  36152. extra: 944/840,
  36153. bottom: 39/983
  36154. }
  36155. },
  36156. back: {
  36157. height: math.unit(10 + 3/12, "feet"),
  36158. weight: math.unit(1500, "lb"),
  36159. name: "Back",
  36160. image: {
  36161. source: "./media/characters/tux-kusanagi/back.svg",
  36162. extra: 941/842,
  36163. bottom: 28/969
  36164. }
  36165. },
  36166. rump: {
  36167. height: math.unit(5.25, "feet"),
  36168. name: "Rump",
  36169. image: {
  36170. source: "./media/characters/tux-kusanagi/rump.svg"
  36171. }
  36172. },
  36173. beak: {
  36174. height: math.unit(1.54, "feet"),
  36175. name: "Beak",
  36176. image: {
  36177. source: "./media/characters/tux-kusanagi/beak.svg"
  36178. }
  36179. },
  36180. },
  36181. [
  36182. {
  36183. name: "Normal",
  36184. height: math.unit(10 + 3/12, "feet"),
  36185. default: true
  36186. },
  36187. ]
  36188. ))
  36189. characterMakers.push(() => makeCharacter(
  36190. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36191. {
  36192. front: {
  36193. height: math.unit(58, "feet"),
  36194. weight: math.unit(200, "tons"),
  36195. name: "Front",
  36196. image: {
  36197. source: "./media/characters/uzarmazari/front.svg",
  36198. extra: 1575/1455,
  36199. bottom: 152/1727
  36200. }
  36201. },
  36202. back: {
  36203. height: math.unit(58, "feet"),
  36204. weight: math.unit(200, "tons"),
  36205. name: "Back",
  36206. image: {
  36207. source: "./media/characters/uzarmazari/back.svg",
  36208. extra: 1585/1510,
  36209. bottom: 157/1742
  36210. }
  36211. },
  36212. head: {
  36213. height: math.unit(26, "feet"),
  36214. name: "Head",
  36215. image: {
  36216. source: "./media/characters/uzarmazari/head.svg"
  36217. }
  36218. },
  36219. },
  36220. [
  36221. {
  36222. name: "Normal",
  36223. height: math.unit(58, "feet"),
  36224. default: true
  36225. },
  36226. ]
  36227. ))
  36228. characterMakers.push(() => makeCharacter(
  36229. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36230. {
  36231. side: {
  36232. height: math.unit(15, "feet"),
  36233. name: "Side",
  36234. image: {
  36235. source: "./media/characters/akitu/side.svg",
  36236. extra: 1421/1321,
  36237. bottom: 157/1578
  36238. }
  36239. },
  36240. front: {
  36241. height: math.unit(15, "feet"),
  36242. name: "Front",
  36243. image: {
  36244. source: "./media/characters/akitu/front.svg",
  36245. extra: 1435/1326,
  36246. bottom: 232/1667
  36247. }
  36248. },
  36249. },
  36250. [
  36251. {
  36252. name: "Normal",
  36253. height: math.unit(15, "feet"),
  36254. default: true
  36255. },
  36256. ]
  36257. ))
  36258. characterMakers.push(() => makeCharacter(
  36259. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36260. {
  36261. front: {
  36262. height: math.unit(10 + 8/12, "feet"),
  36263. name: "Front",
  36264. image: {
  36265. source: "./media/characters/azalie-croixland/front.svg",
  36266. extra: 1972/1856,
  36267. bottom: 31/2003
  36268. }
  36269. },
  36270. },
  36271. [
  36272. {
  36273. name: "Original Height",
  36274. height: math.unit(5 + 4/12, "feet")
  36275. },
  36276. {
  36277. name: "Normal Height",
  36278. height: math.unit(10 + 8/12, "feet"),
  36279. default: true
  36280. },
  36281. ]
  36282. ))
  36283. characterMakers.push(() => makeCharacter(
  36284. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36285. {
  36286. side: {
  36287. height: math.unit(7 + 1/12, "feet"),
  36288. weight: math.unit(245, "lb"),
  36289. name: "Side",
  36290. image: {
  36291. source: "./media/characters/kavus-kazian/side.svg",
  36292. extra: 349/342,
  36293. bottom: 15/364
  36294. }
  36295. },
  36296. },
  36297. [
  36298. {
  36299. name: "Normal",
  36300. height: math.unit(7 + 1/12, "feet"),
  36301. default: true
  36302. },
  36303. ]
  36304. ))
  36305. characterMakers.push(() => makeCharacter(
  36306. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36307. {
  36308. normalFront: {
  36309. height: math.unit(5 + 11/12, "feet"),
  36310. name: "Front",
  36311. image: {
  36312. source: "./media/characters/moonlight-rose/normal-front.svg",
  36313. extra: 1980/1825,
  36314. bottom: 18/1998
  36315. },
  36316. form: "normal",
  36317. default: true
  36318. },
  36319. normalBack: {
  36320. height: math.unit(5 + 11/12, "feet"),
  36321. name: "Back",
  36322. image: {
  36323. source: "./media/characters/moonlight-rose/normal-back.svg",
  36324. extra: 2010/1839,
  36325. bottom: 10/2020
  36326. },
  36327. form: "normal"
  36328. },
  36329. demonFront: {
  36330. height: math.unit(1.5, "earths"),
  36331. name: "Front",
  36332. image: {
  36333. source: "./media/characters/moonlight-rose/demon.svg",
  36334. extra: 1400/1294,
  36335. bottom: 45/1445
  36336. },
  36337. form: "demon",
  36338. default: true
  36339. },
  36340. terraFront: {
  36341. height: math.unit(1.5, "earths"),
  36342. name: "Front",
  36343. image: {
  36344. source: "./media/characters/moonlight-rose/terra.svg"
  36345. },
  36346. form: "terra",
  36347. default: true
  36348. },
  36349. jupiterFront: {
  36350. height: math.unit(69911*2, "km"),
  36351. name: "Front",
  36352. image: {
  36353. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36354. extra: 1367/1286,
  36355. bottom: 55/1422
  36356. },
  36357. form: "jupiter",
  36358. default: true
  36359. },
  36360. neptuneFront: {
  36361. height: math.unit(24622*2, "feet"),
  36362. name: "Front",
  36363. image: {
  36364. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36365. extra: 1851/1712,
  36366. bottom: 0/1851
  36367. },
  36368. form: "neptune",
  36369. default: true
  36370. },
  36371. },
  36372. [
  36373. {
  36374. name: "\"Natural\" Height",
  36375. height: math.unit(5 + 11/12, "feet"),
  36376. form: "normal"
  36377. },
  36378. {
  36379. name: "Smallest comfortable size",
  36380. height: math.unit(40, "meters"),
  36381. form: "normal"
  36382. },
  36383. {
  36384. name: "Common size",
  36385. height: math.unit(50, "km"),
  36386. form: "normal",
  36387. default: true
  36388. },
  36389. {
  36390. name: "Normal",
  36391. height: math.unit(1.5, "earths"),
  36392. form: "demon",
  36393. default: true
  36394. },
  36395. {
  36396. name: "Universal",
  36397. height: math.unit(15, "universes"),
  36398. form: "demon"
  36399. },
  36400. {
  36401. name: "Earth",
  36402. height: math.unit(1.5, "earths"),
  36403. form: "terra",
  36404. default: true
  36405. },
  36406. {
  36407. name: "Super Earth",
  36408. height: math.unit(67.5, "earths"),
  36409. form: "terra"
  36410. },
  36411. {
  36412. name: "Doesn't fit in a solar system...",
  36413. height: math.unit(1, "galaxy"),
  36414. form: "terra"
  36415. },
  36416. {
  36417. name: "Saturn",
  36418. height: math.unit(58232*2, "km"),
  36419. form: "jupiter"
  36420. },
  36421. {
  36422. name: "Jupiter",
  36423. height: math.unit(69911*2, "km"),
  36424. form: "jupiter",
  36425. default: true
  36426. },
  36427. {
  36428. name: "HD 100546 b",
  36429. height: math.unit(482938, "km"),
  36430. form: "jupiter"
  36431. },
  36432. {
  36433. name: "Enceladus",
  36434. height: math.unit(513*2, "km"),
  36435. form: "neptune"
  36436. },
  36437. {
  36438. name: "Europe",
  36439. height: math.unit(1560*2, "km"),
  36440. form: "neptune"
  36441. },
  36442. {
  36443. name: "Neptune",
  36444. height: math.unit(24622*2, "km"),
  36445. form: "neptune",
  36446. default: true
  36447. },
  36448. {
  36449. name: "CoRoT-9b",
  36450. height: math.unit(75067*2, "km"),
  36451. form: "neptune"
  36452. },
  36453. ],
  36454. {
  36455. "normal": {
  36456. name: "Normal",
  36457. default: true
  36458. },
  36459. "demon": {
  36460. name: "Demon"
  36461. },
  36462. "terra": {
  36463. name: "Terra"
  36464. },
  36465. "jupiter": {
  36466. name: "Jupiter"
  36467. },
  36468. "neptune": {
  36469. name: "Neptune"
  36470. }
  36471. }
  36472. ))
  36473. characterMakers.push(() => makeCharacter(
  36474. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36475. {
  36476. front: {
  36477. height: math.unit(16, "feet"),
  36478. weight: math.unit(610, "kg"),
  36479. name: "Front",
  36480. image: {
  36481. source: "./media/characters/huckle/front.svg",
  36482. extra: 1731/1625,
  36483. bottom: 33/1764
  36484. }
  36485. },
  36486. back: {
  36487. height: math.unit(16, "feet"),
  36488. weight: math.unit(610, "kg"),
  36489. name: "Back",
  36490. image: {
  36491. source: "./media/characters/huckle/back.svg",
  36492. extra: 1738/1651,
  36493. bottom: 37/1775
  36494. }
  36495. },
  36496. laughing: {
  36497. height: math.unit(3.75, "feet"),
  36498. name: "Laughing",
  36499. image: {
  36500. source: "./media/characters/huckle/laughing.svg"
  36501. }
  36502. },
  36503. angry: {
  36504. height: math.unit(4.15, "feet"),
  36505. name: "Angry",
  36506. image: {
  36507. source: "./media/characters/huckle/angry.svg"
  36508. }
  36509. },
  36510. },
  36511. [
  36512. {
  36513. name: "Normal",
  36514. height: math.unit(16, "feet"),
  36515. default: true
  36516. },
  36517. {
  36518. name: "Mini Macro",
  36519. height: math.unit(463, "feet")
  36520. },
  36521. {
  36522. name: "Macro",
  36523. height: math.unit(1680, "meters")
  36524. },
  36525. {
  36526. name: "Mega Macro",
  36527. height: math.unit(175, "km")
  36528. },
  36529. {
  36530. name: "Terra Macro",
  36531. height: math.unit(32, "gigameters")
  36532. },
  36533. {
  36534. name: "Multiverse+",
  36535. height: math.unit(2.56e23, "yottameters")
  36536. },
  36537. ]
  36538. ))
  36539. characterMakers.push(() => makeCharacter(
  36540. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36541. {
  36542. front: {
  36543. height: math.unit(6 + 9/12, "feet"),
  36544. weight: math.unit(280, "lb"),
  36545. name: "Front",
  36546. image: {
  36547. source: "./media/characters/candy/front.svg",
  36548. extra: 234/217,
  36549. bottom: 11/245
  36550. }
  36551. },
  36552. },
  36553. [
  36554. {
  36555. name: "Really Small",
  36556. height: math.unit(0.1, "nm")
  36557. },
  36558. {
  36559. name: "Micro",
  36560. height: math.unit(2, "inches")
  36561. },
  36562. {
  36563. name: "Normal",
  36564. height: math.unit(6 + 9/12, "feet"),
  36565. default: true
  36566. },
  36567. {
  36568. name: "Small Macro",
  36569. height: math.unit(69, "feet")
  36570. },
  36571. {
  36572. name: "Macro",
  36573. height: math.unit(160, "feet")
  36574. },
  36575. {
  36576. name: "Megamacro",
  36577. height: math.unit(22000, "miles")
  36578. },
  36579. {
  36580. name: "Gigamacro",
  36581. height: math.unit(50000, "miles")
  36582. },
  36583. ]
  36584. ))
  36585. characterMakers.push(() => makeCharacter(
  36586. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36587. {
  36588. front: {
  36589. height: math.unit(4, "feet"),
  36590. weight: math.unit(90, "lb"),
  36591. name: "Front",
  36592. image: {
  36593. source: "./media/characters/joey-mcdonald/front.svg",
  36594. extra: 1059/852,
  36595. bottom: 33/1092
  36596. }
  36597. },
  36598. back: {
  36599. height: math.unit(4, "feet"),
  36600. weight: math.unit(90, "lb"),
  36601. name: "Back",
  36602. image: {
  36603. source: "./media/characters/joey-mcdonald/back.svg",
  36604. extra: 1077/879,
  36605. bottom: 5/1082
  36606. }
  36607. },
  36608. frontKobold: {
  36609. height: math.unit(4, "feet"),
  36610. weight: math.unit(100, "lb"),
  36611. name: "Front-kobold",
  36612. image: {
  36613. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36614. extra: 1480/1367,
  36615. bottom: 0/1480
  36616. }
  36617. },
  36618. backKobold: {
  36619. height: math.unit(4, "feet"),
  36620. weight: math.unit(100, "lb"),
  36621. name: "Back-kobold",
  36622. image: {
  36623. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36624. extra: 1449/1361,
  36625. bottom: 0/1449
  36626. }
  36627. },
  36628. },
  36629. [
  36630. {
  36631. name: "Normal",
  36632. height: math.unit(4, "feet"),
  36633. default: true
  36634. },
  36635. ]
  36636. ))
  36637. characterMakers.push(() => makeCharacter(
  36638. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36639. {
  36640. front: {
  36641. height: math.unit(12 + 6/12, "feet"),
  36642. name: "Front",
  36643. image: {
  36644. source: "./media/characters/kass-lockheed/front.svg",
  36645. extra: 354/343,
  36646. bottom: 9/363
  36647. }
  36648. },
  36649. back: {
  36650. height: math.unit(12 + 6/12, "feet"),
  36651. name: "Back",
  36652. image: {
  36653. source: "./media/characters/kass-lockheed/back.svg",
  36654. extra: 364/352,
  36655. bottom: 3/367
  36656. }
  36657. },
  36658. dick: {
  36659. height: math.unit(3.12, "feet"),
  36660. name: "Dick",
  36661. image: {
  36662. source: "./media/characters/kass-lockheed/dick.svg"
  36663. }
  36664. },
  36665. head: {
  36666. height: math.unit(2.6, "feet"),
  36667. name: "Head",
  36668. image: {
  36669. source: "./media/characters/kass-lockheed/head.svg"
  36670. }
  36671. },
  36672. bleh: {
  36673. height: math.unit(2.85, "feet"),
  36674. name: "Bleh",
  36675. image: {
  36676. source: "./media/characters/kass-lockheed/bleh.svg"
  36677. }
  36678. },
  36679. smug: {
  36680. height: math.unit(2.85, "feet"),
  36681. name: "Smug",
  36682. image: {
  36683. source: "./media/characters/kass-lockheed/smug.svg"
  36684. }
  36685. },
  36686. },
  36687. [
  36688. {
  36689. name: "Normal",
  36690. height: math.unit(12 + 6/12, "feet"),
  36691. default: true
  36692. },
  36693. ]
  36694. ))
  36695. characterMakers.push(() => makeCharacter(
  36696. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36697. {
  36698. front: {
  36699. height: math.unit(6 + 2/12, "feet"),
  36700. name: "Front",
  36701. image: {
  36702. source: "./media/characters/taylor/front.svg",
  36703. extra: 639/495,
  36704. bottom: 12/651
  36705. }
  36706. },
  36707. },
  36708. [
  36709. {
  36710. name: "Normal",
  36711. height: math.unit(6 + 2/12, "feet"),
  36712. default: true
  36713. },
  36714. {
  36715. name: "Big",
  36716. height: math.unit(15, "feet")
  36717. },
  36718. {
  36719. name: "Lorg",
  36720. height: math.unit(80, "feet")
  36721. },
  36722. {
  36723. name: "Too Lorg",
  36724. height: math.unit(120, "feet")
  36725. },
  36726. ]
  36727. ))
  36728. characterMakers.push(() => makeCharacter(
  36729. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36730. {
  36731. front: {
  36732. height: math.unit(15, "feet"),
  36733. name: "Front",
  36734. image: {
  36735. source: "./media/characters/kaizer/front.svg",
  36736. extra: 1612/1436,
  36737. bottom: 43/1655
  36738. }
  36739. },
  36740. },
  36741. [
  36742. {
  36743. name: "Normal",
  36744. height: math.unit(15, "feet"),
  36745. default: true
  36746. },
  36747. ]
  36748. ))
  36749. characterMakers.push(() => makeCharacter(
  36750. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36751. {
  36752. front: {
  36753. height: math.unit(2, "feet"),
  36754. weight: math.unit(30, "lb"),
  36755. name: "Front",
  36756. image: {
  36757. source: "./media/characters/sandy/front.svg",
  36758. extra: 1439/1307,
  36759. bottom: 194/1633
  36760. }
  36761. },
  36762. },
  36763. [
  36764. {
  36765. name: "Normal",
  36766. height: math.unit(2, "feet"),
  36767. default: true
  36768. },
  36769. ]
  36770. ))
  36771. characterMakers.push(() => makeCharacter(
  36772. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36773. {
  36774. front: {
  36775. height: math.unit(3, "feet"),
  36776. name: "Front",
  36777. image: {
  36778. source: "./media/characters/mellvi/front.svg",
  36779. extra: 1831/1630,
  36780. bottom: 58/1889
  36781. }
  36782. },
  36783. },
  36784. [
  36785. {
  36786. name: "Normal",
  36787. height: math.unit(3, "feet"),
  36788. default: true
  36789. },
  36790. ]
  36791. ))
  36792. characterMakers.push(() => makeCharacter(
  36793. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36794. {
  36795. front: {
  36796. height: math.unit(5 + 11/12, "feet"),
  36797. weight: math.unit(200, "lb"),
  36798. name: "Front",
  36799. image: {
  36800. source: "./media/characters/shirou/front.svg",
  36801. extra: 2491/2383,
  36802. bottom: 189/2680
  36803. }
  36804. },
  36805. back: {
  36806. height: math.unit(5 + 11/12, "feet"),
  36807. weight: math.unit(200, "lb"),
  36808. name: "Back",
  36809. image: {
  36810. source: "./media/characters/shirou/back.svg",
  36811. extra: 2554/2450,
  36812. bottom: 76/2630
  36813. }
  36814. },
  36815. },
  36816. [
  36817. {
  36818. name: "Normal",
  36819. height: math.unit(5 + 11/12, "feet"),
  36820. default: true
  36821. },
  36822. ]
  36823. ))
  36824. characterMakers.push(() => makeCharacter(
  36825. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36826. {
  36827. front: {
  36828. height: math.unit(6 + 3/12, "feet"),
  36829. weight: math.unit(177, "lb"),
  36830. name: "Front",
  36831. image: {
  36832. source: "./media/characters/noryu/front.svg",
  36833. extra: 973/885,
  36834. bottom: 10/983
  36835. }
  36836. },
  36837. },
  36838. [
  36839. {
  36840. name: "Normal",
  36841. height: math.unit(6 + 3/12, "feet"),
  36842. default: true
  36843. },
  36844. ]
  36845. ))
  36846. characterMakers.push(() => makeCharacter(
  36847. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36848. {
  36849. front: {
  36850. height: math.unit(5 + 6/12, "feet"),
  36851. weight: math.unit(170, "lb"),
  36852. name: "Front",
  36853. image: {
  36854. source: "./media/characters/mevolas-rubenido/front.svg",
  36855. extra: 2109/1901,
  36856. bottom: 96/2205
  36857. }
  36858. },
  36859. },
  36860. [
  36861. {
  36862. name: "Normal",
  36863. height: math.unit(5 + 6/12, "feet"),
  36864. default: true
  36865. },
  36866. ]
  36867. ))
  36868. characterMakers.push(() => makeCharacter(
  36869. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36870. {
  36871. front: {
  36872. height: math.unit(100, "feet"),
  36873. name: "Front",
  36874. image: {
  36875. source: "./media/characters/dee/front.svg",
  36876. extra: 2153/2036,
  36877. bottom: 59/2212
  36878. }
  36879. },
  36880. back: {
  36881. height: math.unit(100, "feet"),
  36882. name: "Back",
  36883. image: {
  36884. source: "./media/characters/dee/back.svg",
  36885. extra: 2183/2058,
  36886. bottom: 75/2258
  36887. }
  36888. },
  36889. foot: {
  36890. height: math.unit(19.43, "feet"),
  36891. name: "Foot",
  36892. image: {
  36893. source: "./media/characters/dee/foot.svg"
  36894. }
  36895. },
  36896. hoof: {
  36897. height: math.unit(20.6, "feet"),
  36898. name: "Hoof",
  36899. image: {
  36900. source: "./media/characters/dee/hoof.svg"
  36901. }
  36902. },
  36903. },
  36904. [
  36905. {
  36906. name: "Macro",
  36907. height: math.unit(100, "feet"),
  36908. default: true
  36909. },
  36910. ]
  36911. ))
  36912. characterMakers.push(() => makeCharacter(
  36913. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36914. {
  36915. front: {
  36916. height: math.unit(5 + 6/12, "feet"),
  36917. name: "Front",
  36918. image: {
  36919. source: "./media/characters/teh/front.svg",
  36920. extra: 1002/847,
  36921. bottom: 62/1064
  36922. }
  36923. },
  36924. },
  36925. [
  36926. {
  36927. name: "Normal",
  36928. height: math.unit(5 + 6/12, "feet"),
  36929. default: true
  36930. },
  36931. ]
  36932. ))
  36933. characterMakers.push(() => makeCharacter(
  36934. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36935. {
  36936. side: {
  36937. height: math.unit(6 + 1/12, "feet"),
  36938. weight: math.unit(204, "lb"),
  36939. name: "Side",
  36940. image: {
  36941. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36942. extra: 974/775,
  36943. bottom: 169/1143
  36944. }
  36945. },
  36946. sitting: {
  36947. height: math.unit(6 + 2/12, "feet"),
  36948. weight: math.unit(204, "lb"),
  36949. name: "Sitting",
  36950. image: {
  36951. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36952. extra: 1175/964,
  36953. bottom: 378/1553
  36954. }
  36955. },
  36956. },
  36957. [
  36958. {
  36959. name: "Normal",
  36960. height: math.unit(6 + 1/12, "feet"),
  36961. default: true
  36962. },
  36963. ]
  36964. ))
  36965. characterMakers.push(() => makeCharacter(
  36966. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36967. {
  36968. front: {
  36969. height: math.unit(6, "inches"),
  36970. name: "Front",
  36971. image: {
  36972. source: "./media/characters/tululi/front.svg",
  36973. extra: 1997/1876,
  36974. bottom: 20/2017
  36975. }
  36976. },
  36977. },
  36978. [
  36979. {
  36980. name: "Normal",
  36981. height: math.unit(6, "inches"),
  36982. default: true
  36983. },
  36984. ]
  36985. ))
  36986. characterMakers.push(() => makeCharacter(
  36987. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36988. {
  36989. front: {
  36990. height: math.unit(4 + 1/12, "feet"),
  36991. name: "Front",
  36992. image: {
  36993. source: "./media/characters/star/front.svg",
  36994. extra: 1493/1189,
  36995. bottom: 48/1541
  36996. }
  36997. },
  36998. },
  36999. [
  37000. {
  37001. name: "Normal",
  37002. height: math.unit(4 + 1/12, "feet"),
  37003. default: true
  37004. },
  37005. ]
  37006. ))
  37007. characterMakers.push(() => makeCharacter(
  37008. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37009. {
  37010. front: {
  37011. height: math.unit(6 + 3/12, "feet"),
  37012. name: "Front",
  37013. image: {
  37014. source: "./media/characters/comet/front.svg",
  37015. extra: 1681/1462,
  37016. bottom: 26/1707
  37017. }
  37018. },
  37019. },
  37020. [
  37021. {
  37022. name: "Normal",
  37023. height: math.unit(6 + 3/12, "feet"),
  37024. default: true
  37025. },
  37026. ]
  37027. ))
  37028. characterMakers.push(() => makeCharacter(
  37029. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37030. {
  37031. front: {
  37032. height: math.unit(950, "feet"),
  37033. name: "Front",
  37034. image: {
  37035. source: "./media/characters/vortex/front.svg",
  37036. extra: 1497/1434,
  37037. bottom: 56/1553
  37038. }
  37039. },
  37040. maw: {
  37041. height: math.unit(285, "feet"),
  37042. name: "Maw",
  37043. image: {
  37044. source: "./media/characters/vortex/maw.svg"
  37045. }
  37046. },
  37047. },
  37048. [
  37049. {
  37050. name: "Macro",
  37051. height: math.unit(950, "feet"),
  37052. default: true
  37053. },
  37054. ]
  37055. ))
  37056. characterMakers.push(() => makeCharacter(
  37057. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37058. {
  37059. front: {
  37060. height: math.unit(600, "feet"),
  37061. weight: math.unit(0.02, "grams"),
  37062. name: "Front",
  37063. image: {
  37064. source: "./media/characters/doodle/front.svg",
  37065. extra: 1578/1413,
  37066. bottom: 37/1615
  37067. }
  37068. },
  37069. },
  37070. [
  37071. {
  37072. name: "Macro",
  37073. height: math.unit(600, "feet"),
  37074. default: true
  37075. },
  37076. ]
  37077. ))
  37078. characterMakers.push(() => makeCharacter(
  37079. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37080. {
  37081. front: {
  37082. height: math.unit(6 + 6/12, "feet"),
  37083. name: "Front",
  37084. image: {
  37085. source: "./media/characters/jai/front.svg",
  37086. extra: 1645/1534,
  37087. bottom: 115/1760
  37088. }
  37089. },
  37090. },
  37091. [
  37092. {
  37093. name: "Normal",
  37094. height: math.unit(6 + 6/12, "feet"),
  37095. default: true
  37096. },
  37097. ]
  37098. ))
  37099. characterMakers.push(() => makeCharacter(
  37100. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37101. {
  37102. front: {
  37103. height: math.unit(6 + 8/12, "feet"),
  37104. name: "Front",
  37105. image: {
  37106. source: "./media/characters/pixel/front.svg",
  37107. extra: 1900/1735,
  37108. bottom: 63/1963
  37109. }
  37110. },
  37111. },
  37112. [
  37113. {
  37114. name: "Normal",
  37115. height: math.unit(6 + 8/12, "feet"),
  37116. default: true
  37117. },
  37118. ]
  37119. ))
  37120. characterMakers.push(() => makeCharacter(
  37121. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37122. {
  37123. back: {
  37124. height: math.unit(4 + 1/12, "feet"),
  37125. weight: math.unit(75, "lb"),
  37126. name: "Back",
  37127. image: {
  37128. source: "./media/characters/rhett/back.svg",
  37129. extra: 930/878,
  37130. bottom: 25/955
  37131. }
  37132. },
  37133. front: {
  37134. height: math.unit(4 + 1/12, "feet"),
  37135. weight: math.unit(75, "lb"),
  37136. name: "Front",
  37137. image: {
  37138. source: "./media/characters/rhett/front.svg",
  37139. extra: 1682/1586,
  37140. bottom: 92/1774
  37141. }
  37142. },
  37143. },
  37144. [
  37145. {
  37146. name: "Micro",
  37147. height: math.unit(8, "inches")
  37148. },
  37149. {
  37150. name: "Tiny",
  37151. height: math.unit(2, "feet")
  37152. },
  37153. {
  37154. name: "Normal",
  37155. height: math.unit(4 + 1/12, "feet"),
  37156. default: true
  37157. },
  37158. ]
  37159. ))
  37160. characterMakers.push(() => makeCharacter(
  37161. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37162. {
  37163. front: {
  37164. height: math.unit(3 + 3/12, "feet"),
  37165. name: "Front",
  37166. image: {
  37167. source: "./media/characters/penny/front.svg",
  37168. extra: 1406/1311,
  37169. bottom: 26/1432
  37170. }
  37171. },
  37172. },
  37173. [
  37174. {
  37175. name: "Normal",
  37176. height: math.unit(3 + 3/12, "feet"),
  37177. default: true
  37178. },
  37179. ]
  37180. ))
  37181. characterMakers.push(() => makeCharacter(
  37182. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37183. {
  37184. front: {
  37185. height: math.unit(4 + 11/12, "feet"),
  37186. name: "Front",
  37187. image: {
  37188. source: "./media/characters/monty/front.svg",
  37189. extra: 1479/1209,
  37190. bottom: 0/1479
  37191. }
  37192. },
  37193. },
  37194. [
  37195. {
  37196. name: "Normal",
  37197. height: math.unit(4 + 11/12, "feet"),
  37198. default: true
  37199. },
  37200. ]
  37201. ))
  37202. characterMakers.push(() => makeCharacter(
  37203. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37204. {
  37205. front: {
  37206. height: math.unit(8 + 4/12, "feet"),
  37207. name: "Front",
  37208. image: {
  37209. source: "./media/characters/sterling/front.svg",
  37210. extra: 1420/1236,
  37211. bottom: 27/1447
  37212. }
  37213. },
  37214. },
  37215. [
  37216. {
  37217. name: "Normal",
  37218. height: math.unit(8 + 4/12, "feet"),
  37219. default: true
  37220. },
  37221. ]
  37222. ))
  37223. characterMakers.push(() => makeCharacter(
  37224. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37225. {
  37226. front: {
  37227. height: math.unit(15, "feet"),
  37228. name: "Front",
  37229. image: {
  37230. source: "./media/characters/marble/front.svg",
  37231. extra: 973/937,
  37232. bottom: 32/1005
  37233. }
  37234. },
  37235. },
  37236. [
  37237. {
  37238. name: "Normal",
  37239. height: math.unit(15, "feet"),
  37240. default: true
  37241. },
  37242. ]
  37243. ))
  37244. characterMakers.push(() => makeCharacter(
  37245. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37246. {
  37247. front: {
  37248. height: math.unit(3, "inches"),
  37249. name: "Front",
  37250. image: {
  37251. source: "./media/characters/powder/front.svg",
  37252. extra: 1504/1334,
  37253. bottom: 518/2022
  37254. }
  37255. },
  37256. },
  37257. [
  37258. {
  37259. name: "Normal",
  37260. height: math.unit(3, "inches"),
  37261. default: true
  37262. },
  37263. ]
  37264. ))
  37265. characterMakers.push(() => makeCharacter(
  37266. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37267. {
  37268. front: {
  37269. height: math.unit(4 + 5/12, "feet"),
  37270. name: "Front",
  37271. image: {
  37272. source: "./media/characters/joey-raccoon/front.svg",
  37273. extra: 1273/1197,
  37274. bottom: 0/1273
  37275. }
  37276. },
  37277. },
  37278. [
  37279. {
  37280. name: "Normal",
  37281. height: math.unit(4 + 5/12, "feet"),
  37282. default: true
  37283. },
  37284. ]
  37285. ))
  37286. characterMakers.push(() => makeCharacter(
  37287. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37288. {
  37289. front: {
  37290. height: math.unit(8 + 4/12, "feet"),
  37291. name: "Front",
  37292. image: {
  37293. source: "./media/characters/vick/front.svg",
  37294. extra: 2187/2118,
  37295. bottom: 47/2234
  37296. }
  37297. },
  37298. },
  37299. [
  37300. {
  37301. name: "Normal",
  37302. height: math.unit(8 + 4/12, "feet"),
  37303. default: true
  37304. },
  37305. ]
  37306. ))
  37307. characterMakers.push(() => makeCharacter(
  37308. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37309. {
  37310. front: {
  37311. height: math.unit(5 + 5/12, "feet"),
  37312. name: "Front",
  37313. image: {
  37314. source: "./media/characters/mitsy/front.svg",
  37315. extra: 1842/1695,
  37316. bottom: 0/1842
  37317. }
  37318. },
  37319. },
  37320. [
  37321. {
  37322. name: "Normal",
  37323. height: math.unit(5 + 5/12, "feet"),
  37324. default: true
  37325. },
  37326. ]
  37327. ))
  37328. characterMakers.push(() => makeCharacter(
  37329. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37330. {
  37331. front: {
  37332. height: math.unit(6 + 3/12, "feet"),
  37333. name: "Front",
  37334. image: {
  37335. source: "./media/characters/silvy/front.svg",
  37336. extra: 1995/1836,
  37337. bottom: 225/2220
  37338. }
  37339. },
  37340. },
  37341. [
  37342. {
  37343. name: "Normal",
  37344. height: math.unit(6 + 3/12, "feet"),
  37345. default: true
  37346. },
  37347. ]
  37348. ))
  37349. characterMakers.push(() => makeCharacter(
  37350. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37351. {
  37352. front: {
  37353. height: math.unit(3 + 8/12, "feet"),
  37354. name: "Front",
  37355. image: {
  37356. source: "./media/characters/rodney/front.svg",
  37357. extra: 1956/1747,
  37358. bottom: 31/1987
  37359. }
  37360. },
  37361. frontDressed: {
  37362. height: math.unit(2.9, "feet"),
  37363. name: "Front (Dressed)",
  37364. image: {
  37365. source: "./media/characters/rodney/front-dressed.svg",
  37366. extra: 1382/1241,
  37367. bottom: 385/1767
  37368. }
  37369. },
  37370. },
  37371. [
  37372. {
  37373. name: "Normal",
  37374. height: math.unit(3 + 8/12, "feet"),
  37375. default: true
  37376. },
  37377. ]
  37378. ))
  37379. characterMakers.push(() => makeCharacter(
  37380. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37381. {
  37382. front: {
  37383. height: math.unit(5 + 9/12, "feet"),
  37384. weight: math.unit(194, "lbs"),
  37385. name: "Front",
  37386. image: {
  37387. source: "./media/characters/zakail-sudekai/front.svg",
  37388. extra: 2696/2533,
  37389. bottom: 248/2944
  37390. }
  37391. },
  37392. maw: {
  37393. height: math.unit(1.35, "feet"),
  37394. name: "Maw",
  37395. image: {
  37396. source: "./media/characters/zakail-sudekai/maw.svg"
  37397. }
  37398. },
  37399. },
  37400. [
  37401. {
  37402. name: "Normal",
  37403. height: math.unit(5 + 9/12, "feet"),
  37404. default: true
  37405. },
  37406. ]
  37407. ))
  37408. characterMakers.push(() => makeCharacter(
  37409. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37410. {
  37411. front: {
  37412. height: math.unit(8 + 4/12, "feet"),
  37413. weight: math.unit(1200, "lb"),
  37414. name: "Front",
  37415. image: {
  37416. source: "./media/characters/eleanor/front.svg",
  37417. extra: 1226/1192,
  37418. bottom: 52/1278
  37419. }
  37420. },
  37421. back: {
  37422. height: math.unit(8 + 4/12, "feet"),
  37423. weight: math.unit(1200, "lb"),
  37424. name: "Back",
  37425. image: {
  37426. source: "./media/characters/eleanor/back.svg",
  37427. extra: 1242/1184,
  37428. bottom: 60/1302
  37429. }
  37430. },
  37431. head: {
  37432. height: math.unit(2.62, "feet"),
  37433. name: "Head",
  37434. image: {
  37435. source: "./media/characters/eleanor/head.svg"
  37436. }
  37437. },
  37438. },
  37439. [
  37440. {
  37441. name: "Normal",
  37442. height: math.unit(8 + 4/12, "feet"),
  37443. default: true
  37444. },
  37445. ]
  37446. ))
  37447. characterMakers.push(() => makeCharacter(
  37448. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37449. {
  37450. front: {
  37451. height: math.unit(8 + 4/12, "feet"),
  37452. weight: math.unit(750, "lb"),
  37453. name: "Front",
  37454. image: {
  37455. source: "./media/characters/tanya/front.svg",
  37456. extra: 1749/1615,
  37457. bottom: 33/1782
  37458. }
  37459. },
  37460. },
  37461. [
  37462. {
  37463. name: "Normal",
  37464. height: math.unit(8 + 4/12, "feet"),
  37465. default: true
  37466. },
  37467. ]
  37468. ))
  37469. characterMakers.push(() => makeCharacter(
  37470. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37471. {
  37472. front: {
  37473. height: math.unit(5, "feet"),
  37474. weight: math.unit(225, "lb"),
  37475. name: "Front",
  37476. image: {
  37477. source: "./media/characters/cindy/front.svg",
  37478. extra: 1320/1250,
  37479. bottom: 42/1362
  37480. }
  37481. },
  37482. frontDressed: {
  37483. height: math.unit(5, "feet"),
  37484. weight: math.unit(225, "lb"),
  37485. name: "Front (Dressed)",
  37486. image: {
  37487. source: "./media/characters/cindy/front-dressed.svg",
  37488. extra: 1320/1250,
  37489. bottom: 42/1362
  37490. }
  37491. },
  37492. back: {
  37493. height: math.unit(5, "feet"),
  37494. weight: math.unit(225, "lb"),
  37495. name: "Back",
  37496. image: {
  37497. source: "./media/characters/cindy/back.svg",
  37498. extra: 1384/1346,
  37499. bottom: 14/1398
  37500. }
  37501. },
  37502. },
  37503. [
  37504. {
  37505. name: "Normal",
  37506. height: math.unit(5, "feet"),
  37507. default: true
  37508. },
  37509. ]
  37510. ))
  37511. characterMakers.push(() => makeCharacter(
  37512. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37513. {
  37514. front: {
  37515. height: math.unit(6 + 9/12, "feet"),
  37516. weight: math.unit(440, "lb"),
  37517. name: "Front",
  37518. image: {
  37519. source: "./media/characters/wilbur-owen/front.svg",
  37520. extra: 1575/1448,
  37521. bottom: 72/1647
  37522. }
  37523. },
  37524. back: {
  37525. height: math.unit(6 + 9/12, "feet"),
  37526. weight: math.unit(440, "lb"),
  37527. name: "Back",
  37528. image: {
  37529. source: "./media/characters/wilbur-owen/back.svg",
  37530. extra: 1578/1445,
  37531. bottom: 36/1614
  37532. }
  37533. },
  37534. },
  37535. [
  37536. {
  37537. name: "Normal",
  37538. height: math.unit(6 + 9/12, "feet"),
  37539. default: true
  37540. },
  37541. ]
  37542. ))
  37543. characterMakers.push(() => makeCharacter(
  37544. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37545. {
  37546. front: {
  37547. height: math.unit(6 + 5/12, "feet"),
  37548. weight: math.unit(650, "lb"),
  37549. name: "Front",
  37550. image: {
  37551. source: "./media/characters/keegan/front.svg",
  37552. extra: 2387/2198,
  37553. bottom: 33/2420
  37554. }
  37555. },
  37556. side: {
  37557. height: math.unit(6 + 5/12, "feet"),
  37558. weight: math.unit(650, "lb"),
  37559. name: "Side",
  37560. image: {
  37561. source: "./media/characters/keegan/side.svg",
  37562. extra: 2390/2202,
  37563. bottom: 47/2437
  37564. }
  37565. },
  37566. back: {
  37567. height: math.unit(6 + 5/12, "feet"),
  37568. weight: math.unit(650, "lb"),
  37569. name: "Back",
  37570. image: {
  37571. source: "./media/characters/keegan/back.svg",
  37572. extra: 2418/2268,
  37573. bottom: 15/2433
  37574. }
  37575. },
  37576. frontSfw: {
  37577. height: math.unit(6 + 5/12, "feet"),
  37578. weight: math.unit(650, "lb"),
  37579. name: "Front (SFW)",
  37580. image: {
  37581. source: "./media/characters/keegan/front-sfw.svg",
  37582. extra: 2387/2198,
  37583. bottom: 33/2420
  37584. }
  37585. },
  37586. beans: {
  37587. height: math.unit(1.85, "feet"),
  37588. name: "Beans",
  37589. image: {
  37590. source: "./media/characters/keegan/beans.svg"
  37591. }
  37592. },
  37593. },
  37594. [
  37595. {
  37596. name: "Normal",
  37597. height: math.unit(6 + 5/12, "feet"),
  37598. default: true
  37599. },
  37600. ]
  37601. ))
  37602. characterMakers.push(() => makeCharacter(
  37603. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37604. {
  37605. front: {
  37606. height: math.unit(9, "feet"),
  37607. name: "Front",
  37608. image: {
  37609. source: "./media/characters/colton/front.svg",
  37610. extra: 1589/1326,
  37611. bottom: 139/1728
  37612. }
  37613. },
  37614. },
  37615. [
  37616. {
  37617. name: "Normal",
  37618. height: math.unit(9, "feet"),
  37619. default: true
  37620. },
  37621. ]
  37622. ))
  37623. characterMakers.push(() => makeCharacter(
  37624. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37625. {
  37626. front: {
  37627. height: math.unit(2 + 9/12, "feet"),
  37628. name: "Front",
  37629. image: {
  37630. source: "./media/characters/bora/front.svg",
  37631. extra: 1265/1250,
  37632. bottom: 24/1289
  37633. }
  37634. },
  37635. },
  37636. [
  37637. {
  37638. name: "Normal",
  37639. height: math.unit(2 + 9/12, "feet"),
  37640. default: true
  37641. },
  37642. ]
  37643. ))
  37644. characterMakers.push(() => makeCharacter(
  37645. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37646. {
  37647. front: {
  37648. height: math.unit(8, "feet"),
  37649. name: "Front",
  37650. image: {
  37651. source: "./media/characters/myu-myu/front.svg",
  37652. extra: 1949/1857,
  37653. bottom: 90/2039
  37654. }
  37655. },
  37656. },
  37657. [
  37658. {
  37659. name: "Normal",
  37660. height: math.unit(8, "feet"),
  37661. default: true
  37662. },
  37663. {
  37664. name: "Big",
  37665. height: math.unit(15, "feet")
  37666. },
  37667. {
  37668. name: "BIG",
  37669. height: math.unit(25, "feet")
  37670. },
  37671. ]
  37672. ))
  37673. characterMakers.push(() => makeCharacter(
  37674. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37675. {
  37676. side: {
  37677. height: math.unit(7 + 5/12, "feet"),
  37678. weight: math.unit(2800, "lb"),
  37679. name: "Side",
  37680. image: {
  37681. source: "./media/characters/haloren/side.svg",
  37682. extra: 1793/409,
  37683. bottom: 59/1852
  37684. }
  37685. },
  37686. frontPaw: {
  37687. height: math.unit(2.36, "feet"),
  37688. name: "Front paw",
  37689. image: {
  37690. source: "./media/characters/haloren/front-paw.svg"
  37691. }
  37692. },
  37693. hindPaw: {
  37694. height: math.unit(3.18, "feet"),
  37695. name: "Hind paw",
  37696. image: {
  37697. source: "./media/characters/haloren/hind-paw.svg"
  37698. }
  37699. },
  37700. maw: {
  37701. height: math.unit(5.05, "feet"),
  37702. name: "Maw",
  37703. image: {
  37704. source: "./media/characters/haloren/maw.svg"
  37705. }
  37706. },
  37707. dick: {
  37708. height: math.unit(2.90, "feet"),
  37709. name: "Dick",
  37710. image: {
  37711. source: "./media/characters/haloren/dick.svg"
  37712. }
  37713. },
  37714. },
  37715. [
  37716. {
  37717. name: "Normal",
  37718. height: math.unit(7 + 5/12, "feet"),
  37719. default: true
  37720. },
  37721. {
  37722. name: "Enhanced",
  37723. height: math.unit(14 + 3/12, "feet")
  37724. },
  37725. ]
  37726. ))
  37727. characterMakers.push(() => makeCharacter(
  37728. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37729. {
  37730. front: {
  37731. height: math.unit(171, "cm"),
  37732. name: "Front",
  37733. image: {
  37734. source: "./media/characters/kimmy/front.svg",
  37735. extra: 1491/1435,
  37736. bottom: 53/1544
  37737. }
  37738. },
  37739. },
  37740. [
  37741. {
  37742. name: "Small",
  37743. height: math.unit(9, "cm")
  37744. },
  37745. {
  37746. name: "Normal",
  37747. height: math.unit(171, "cm"),
  37748. default: true
  37749. },
  37750. ]
  37751. ))
  37752. characterMakers.push(() => makeCharacter(
  37753. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37754. {
  37755. front: {
  37756. height: math.unit(8, "feet"),
  37757. weight: math.unit(300, "lb"),
  37758. name: "Front",
  37759. image: {
  37760. source: "./media/characters/galeboomer/front.svg",
  37761. extra: 4651/4415,
  37762. bottom: 162/4813
  37763. }
  37764. },
  37765. back: {
  37766. height: math.unit(8, "feet"),
  37767. weight: math.unit(300, "lb"),
  37768. name: "Back",
  37769. image: {
  37770. source: "./media/characters/galeboomer/back.svg",
  37771. extra: 4544/4314,
  37772. bottom: 16/4560
  37773. }
  37774. },
  37775. frontAlt: {
  37776. height: math.unit(8, "feet"),
  37777. weight: math.unit(300, "lb"),
  37778. name: "Front (Alt)",
  37779. image: {
  37780. source: "./media/characters/galeboomer/front-alt.svg",
  37781. extra: 4458/4228,
  37782. bottom: 68/4526
  37783. }
  37784. },
  37785. maw: {
  37786. height: math.unit(1.2, "feet"),
  37787. name: "Maw",
  37788. image: {
  37789. source: "./media/characters/galeboomer/maw.svg"
  37790. }
  37791. },
  37792. },
  37793. [
  37794. {
  37795. name: "Normal",
  37796. height: math.unit(8, "feet"),
  37797. default: true
  37798. },
  37799. ]
  37800. ))
  37801. characterMakers.push(() => makeCharacter(
  37802. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37803. {
  37804. front: {
  37805. height: math.unit(5 + 9/12, "feet"),
  37806. weight: math.unit(120, "lb"),
  37807. name: "Front",
  37808. image: {
  37809. source: "./media/characters/chyr/front.svg",
  37810. extra: 1323/1254,
  37811. bottom: 63/1386
  37812. }
  37813. },
  37814. back: {
  37815. height: math.unit(5 + 9/12, "feet"),
  37816. weight: math.unit(120, "lb"),
  37817. name: "Back",
  37818. image: {
  37819. source: "./media/characters/chyr/back.svg",
  37820. extra: 1323/1252,
  37821. bottom: 48/1371
  37822. }
  37823. },
  37824. },
  37825. [
  37826. {
  37827. name: "Normal",
  37828. height: math.unit(5 + 9/12, "feet"),
  37829. default: true
  37830. },
  37831. ]
  37832. ))
  37833. characterMakers.push(() => makeCharacter(
  37834. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37835. {
  37836. front: {
  37837. height: math.unit(7, "feet"),
  37838. weight: math.unit(310, "lb"),
  37839. name: "Front",
  37840. image: {
  37841. source: "./media/characters/solarus/front.svg",
  37842. extra: 2415/2021,
  37843. bottom: 103/2518
  37844. }
  37845. },
  37846. back: {
  37847. height: math.unit(7, "feet"),
  37848. weight: math.unit(310, "lb"),
  37849. name: "Back",
  37850. image: {
  37851. source: "./media/characters/solarus/back.svg",
  37852. extra: 2463/2089,
  37853. bottom: 79/2542
  37854. }
  37855. },
  37856. },
  37857. [
  37858. {
  37859. name: "Normal",
  37860. height: math.unit(7, "feet"),
  37861. default: true
  37862. },
  37863. ]
  37864. ))
  37865. characterMakers.push(() => makeCharacter(
  37866. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37867. {
  37868. front: {
  37869. height: math.unit(16, "feet"),
  37870. name: "Front",
  37871. image: {
  37872. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37873. extra: 1844/1780,
  37874. bottom: 58/1902
  37875. }
  37876. },
  37877. winterCoat: {
  37878. height: math.unit(16, "feet"),
  37879. name: "Winter Coat",
  37880. image: {
  37881. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37882. extra: 1807/1775,
  37883. bottom: 69/1876
  37884. }
  37885. },
  37886. },
  37887. [
  37888. {
  37889. name: "Normal",
  37890. height: math.unit(16, "feet"),
  37891. default: true
  37892. },
  37893. {
  37894. name: "Chicago Size",
  37895. height: math.unit(560, "feet")
  37896. },
  37897. ]
  37898. ))
  37899. characterMakers.push(() => makeCharacter(
  37900. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37901. {
  37902. front: {
  37903. height: math.unit(11 + 6/12, "feet"),
  37904. weight: math.unit(1366, "lb"),
  37905. name: "Front",
  37906. image: {
  37907. source: "./media/characters/lexor/front.svg",
  37908. extra: 1560/1481,
  37909. bottom: 211/1771
  37910. }
  37911. },
  37912. back: {
  37913. height: math.unit(11 + 6/12, "feet"),
  37914. weight: math.unit(1366, "lb"),
  37915. name: "Back",
  37916. image: {
  37917. source: "./media/characters/lexor/back.svg",
  37918. extra: 1614/1533,
  37919. bottom: 76/1690
  37920. }
  37921. },
  37922. maw: {
  37923. height: math.unit(3, "feet"),
  37924. name: "Maw",
  37925. image: {
  37926. source: "./media/characters/lexor/maw.svg"
  37927. }
  37928. },
  37929. dick: {
  37930. height: math.unit(2.59, "feet"),
  37931. name: "Dick",
  37932. image: {
  37933. source: "./media/characters/lexor/dick.svg"
  37934. }
  37935. },
  37936. },
  37937. [
  37938. {
  37939. name: "Normal",
  37940. height: math.unit(11 + 6/12, "feet"),
  37941. default: true
  37942. },
  37943. ]
  37944. ))
  37945. characterMakers.push(() => makeCharacter(
  37946. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37947. {
  37948. front: {
  37949. height: math.unit(5 + 8/12, "feet"),
  37950. name: "Front",
  37951. image: {
  37952. source: "./media/characters/magnum/front.svg",
  37953. extra: 942/855,
  37954. bottom: 26/968
  37955. }
  37956. },
  37957. },
  37958. [
  37959. {
  37960. name: "Normal",
  37961. height: math.unit(5 + 8/12, "feet"),
  37962. default: true
  37963. },
  37964. ]
  37965. ))
  37966. characterMakers.push(() => makeCharacter(
  37967. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37968. {
  37969. front: {
  37970. height: math.unit(18 + 4/12, "feet"),
  37971. weight: math.unit(1500, "kg"),
  37972. name: "Front",
  37973. image: {
  37974. source: "./media/characters/solas-sharpsman/front.svg",
  37975. extra: 1698/1589,
  37976. bottom: 0/1698
  37977. }
  37978. },
  37979. },
  37980. [
  37981. {
  37982. name: "Normal",
  37983. height: math.unit(18 + 4/12, "feet"),
  37984. default: true
  37985. },
  37986. ]
  37987. ))
  37988. characterMakers.push(() => makeCharacter(
  37989. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37990. {
  37991. front: {
  37992. height: math.unit(5 + 5/12, "feet"),
  37993. weight: math.unit(180, "lb"),
  37994. name: "Front",
  37995. image: {
  37996. source: "./media/characters/october/front.svg",
  37997. extra: 1800/1650,
  37998. bottom: 0/1800
  37999. }
  38000. },
  38001. frontNsfw: {
  38002. height: math.unit(5 + 5/12, "feet"),
  38003. weight: math.unit(180, "lb"),
  38004. name: "Front (NSFW)",
  38005. image: {
  38006. source: "./media/characters/october/front-nsfw.svg",
  38007. extra: 1392/1307,
  38008. bottom: 42/1434
  38009. }
  38010. },
  38011. },
  38012. [
  38013. {
  38014. name: "Normal",
  38015. height: math.unit(5 + 5/12, "feet"),
  38016. default: true
  38017. },
  38018. ]
  38019. ))
  38020. characterMakers.push(() => makeCharacter(
  38021. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38022. {
  38023. front: {
  38024. height: math.unit(8 + 6/12, "feet"),
  38025. name: "Front",
  38026. image: {
  38027. source: "./media/characters/essynkardi/front.svg",
  38028. extra: 1914/1846,
  38029. bottom: 22/1936
  38030. }
  38031. },
  38032. },
  38033. [
  38034. {
  38035. name: "Normal",
  38036. height: math.unit(8 + 6/12, "feet"),
  38037. default: true
  38038. },
  38039. ]
  38040. ))
  38041. characterMakers.push(() => makeCharacter(
  38042. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38043. {
  38044. front: {
  38045. height: math.unit(6 + 6/12, "feet"),
  38046. weight: math.unit(7, "lb"),
  38047. name: "Front",
  38048. image: {
  38049. source: "./media/characters/icky/front.svg",
  38050. extra: 813/782,
  38051. bottom: 66/879
  38052. }
  38053. },
  38054. back: {
  38055. height: math.unit(6 + 6/12, "feet"),
  38056. weight: math.unit(7, "lb"),
  38057. name: "Back",
  38058. image: {
  38059. source: "./media/characters/icky/back.svg",
  38060. extra: 754/735,
  38061. bottom: 56/810
  38062. }
  38063. },
  38064. },
  38065. [
  38066. {
  38067. name: "Normal",
  38068. height: math.unit(6 + 6/12, "feet"),
  38069. default: true
  38070. },
  38071. ]
  38072. ))
  38073. characterMakers.push(() => makeCharacter(
  38074. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38075. {
  38076. front: {
  38077. height: math.unit(15, "feet"),
  38078. name: "Front",
  38079. image: {
  38080. source: "./media/characters/rojas/front.svg",
  38081. extra: 1462/1408,
  38082. bottom: 95/1557
  38083. }
  38084. },
  38085. back: {
  38086. height: math.unit(15, "feet"),
  38087. name: "Back",
  38088. image: {
  38089. source: "./media/characters/rojas/back.svg",
  38090. extra: 1023/954,
  38091. bottom: 28/1051
  38092. }
  38093. },
  38094. },
  38095. [
  38096. {
  38097. name: "Normal",
  38098. height: math.unit(15, "feet"),
  38099. default: true
  38100. },
  38101. ]
  38102. ))
  38103. characterMakers.push(() => makeCharacter(
  38104. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38105. {
  38106. frontHuman: {
  38107. height: math.unit(5 + 7/12, "feet"),
  38108. name: "Front (Human)",
  38109. image: {
  38110. source: "./media/characters/alek-dryagan/front-human.svg",
  38111. extra: 1687/1667,
  38112. bottom: 69/1756
  38113. }
  38114. },
  38115. backHuman: {
  38116. height: math.unit(5 + 7/12, "feet"),
  38117. name: "Back (Human)",
  38118. image: {
  38119. source: "./media/characters/alek-dryagan/back-human.svg",
  38120. extra: 1670/1649,
  38121. bottom: 65/1735
  38122. }
  38123. },
  38124. frontDemi: {
  38125. height: math.unit(65, "feet"),
  38126. name: "Front (Demi)",
  38127. image: {
  38128. source: "./media/characters/alek-dryagan/front-demi.svg",
  38129. extra: 1669/1642,
  38130. bottom: 49/1718
  38131. }
  38132. },
  38133. backDemi: {
  38134. height: math.unit(65, "feet"),
  38135. name: "Back (Demi)",
  38136. image: {
  38137. source: "./media/characters/alek-dryagan/back-demi.svg",
  38138. extra: 1658/1637,
  38139. bottom: 40/1698
  38140. }
  38141. },
  38142. mawHuman: {
  38143. height: math.unit(0.3, "feet"),
  38144. name: "Maw (Human)",
  38145. image: {
  38146. source: "./media/characters/alek-dryagan/maw-human.svg"
  38147. }
  38148. },
  38149. mawDemi: {
  38150. height: math.unit(3.8, "feet"),
  38151. name: "Maw (Demi)",
  38152. image: {
  38153. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38154. }
  38155. },
  38156. },
  38157. [
  38158. {
  38159. name: "Normal",
  38160. height: math.unit(5 + 7/12, "feet"),
  38161. default: true
  38162. },
  38163. ]
  38164. ))
  38165. characterMakers.push(() => makeCharacter(
  38166. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38167. {
  38168. frontHuman: {
  38169. height: math.unit(5 + 2/12, "feet"),
  38170. name: "Front (Human)",
  38171. image: {
  38172. source: "./media/characters/gen/front-human.svg",
  38173. extra: 1627/1538,
  38174. bottom: 71/1698
  38175. }
  38176. },
  38177. backHuman: {
  38178. height: math.unit(5 + 2/12, "feet"),
  38179. name: "Back (Human)",
  38180. image: {
  38181. source: "./media/characters/gen/back-human.svg",
  38182. extra: 1638/1548,
  38183. bottom: 69/1707
  38184. }
  38185. },
  38186. frontDemi: {
  38187. height: math.unit(5 + 2/12, "feet"),
  38188. name: "Front (Demi)",
  38189. image: {
  38190. source: "./media/characters/gen/front-demi.svg",
  38191. extra: 1627/1538,
  38192. bottom: 71/1698
  38193. }
  38194. },
  38195. backDemi: {
  38196. height: math.unit(5 + 2/12, "feet"),
  38197. name: "Back (Demi)",
  38198. image: {
  38199. source: "./media/characters/gen/back-demi.svg",
  38200. extra: 1638/1548,
  38201. bottom: 69/1707
  38202. }
  38203. },
  38204. },
  38205. [
  38206. {
  38207. name: "Normal",
  38208. height: math.unit(5 + 2/12, "feet"),
  38209. default: true
  38210. },
  38211. ]
  38212. ))
  38213. characterMakers.push(() => makeCharacter(
  38214. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38215. {
  38216. frontImp: {
  38217. height: math.unit(1 + 11/12, "feet"),
  38218. name: "Front (Imp)",
  38219. image: {
  38220. source: "./media/characters/max-kobold/front-imp.svg",
  38221. extra: 1238/1134,
  38222. bottom: 81/1319
  38223. }
  38224. },
  38225. backImp: {
  38226. height: math.unit(1 + 11/12, "feet"),
  38227. name: "Back (Imp)",
  38228. image: {
  38229. source: "./media/characters/max-kobold/back-imp.svg",
  38230. extra: 1334/1175,
  38231. bottom: 34/1368
  38232. }
  38233. },
  38234. frontDemi: {
  38235. height: math.unit(5 + 9/12, "feet"),
  38236. name: "Front (Demi)",
  38237. image: {
  38238. source: "./media/characters/max-kobold/front-demi.svg",
  38239. extra: 1715/1685,
  38240. bottom: 54/1769
  38241. }
  38242. },
  38243. backDemi: {
  38244. height: math.unit(5 + 9/12, "feet"),
  38245. name: "Back (Demi)",
  38246. image: {
  38247. source: "./media/characters/max-kobold/back-demi.svg",
  38248. extra: 1752/1729,
  38249. bottom: 41/1793
  38250. }
  38251. },
  38252. handImp: {
  38253. height: math.unit(0.45, "feet"),
  38254. name: "Hand (Imp)",
  38255. image: {
  38256. source: "./media/characters/max-kobold/hand.svg"
  38257. }
  38258. },
  38259. pawImp: {
  38260. height: math.unit(0.46, "feet"),
  38261. name: "Paw (Imp)",
  38262. image: {
  38263. source: "./media/characters/max-kobold/paw.svg"
  38264. }
  38265. },
  38266. handDemi: {
  38267. height: math.unit(0.80, "feet"),
  38268. name: "Hand (Demi)",
  38269. image: {
  38270. source: "./media/characters/max-kobold/hand.svg"
  38271. }
  38272. },
  38273. pawDemi: {
  38274. height: math.unit(1.1, "feet"),
  38275. name: "Paw (Demi)",
  38276. image: {
  38277. source: "./media/characters/max-kobold/paw.svg"
  38278. }
  38279. },
  38280. headImp: {
  38281. height: math.unit(1.33, "feet"),
  38282. name: "Head (Imp)",
  38283. image: {
  38284. source: "./media/characters/max-kobold/head-imp.svg"
  38285. }
  38286. },
  38287. mawImp: {
  38288. height: math.unit(0.75, "feet"),
  38289. name: "Maw (Imp)",
  38290. image: {
  38291. source: "./media/characters/max-kobold/maw-imp.svg"
  38292. }
  38293. },
  38294. mawDemi: {
  38295. height: math.unit(0.42, "feet"),
  38296. name: "Maw (Demi)",
  38297. image: {
  38298. source: "./media/characters/max-kobold/maw-demi.svg"
  38299. }
  38300. },
  38301. },
  38302. [
  38303. {
  38304. name: "Normal",
  38305. height: math.unit(1 + 11/12, "feet"),
  38306. default: true
  38307. },
  38308. ]
  38309. ))
  38310. characterMakers.push(() => makeCharacter(
  38311. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38312. {
  38313. front: {
  38314. height: math.unit(7 + 5/12, "feet"),
  38315. name: "Front",
  38316. image: {
  38317. source: "./media/characters/carbon/front.svg",
  38318. extra: 1754/1689,
  38319. bottom: 65/1819
  38320. }
  38321. },
  38322. back: {
  38323. height: math.unit(7 + 5/12, "feet"),
  38324. name: "Back",
  38325. image: {
  38326. source: "./media/characters/carbon/back.svg",
  38327. extra: 1762/1695,
  38328. bottom: 24/1786
  38329. }
  38330. },
  38331. frontGigantamax: {
  38332. height: math.unit(150, "feet"),
  38333. name: "Front (Gigantamax)",
  38334. image: {
  38335. source: "./media/characters/carbon/front-gigantamax.svg",
  38336. extra: 1826/1669,
  38337. bottom: 59/1885
  38338. }
  38339. },
  38340. backGigantamax: {
  38341. height: math.unit(150, "feet"),
  38342. name: "Back (Gigantamax)",
  38343. image: {
  38344. source: "./media/characters/carbon/back-gigantamax.svg",
  38345. extra: 1796/1653,
  38346. bottom: 53/1849
  38347. }
  38348. },
  38349. maw: {
  38350. height: math.unit(0.48, "feet"),
  38351. name: "Maw",
  38352. image: {
  38353. source: "./media/characters/carbon/maw.svg"
  38354. }
  38355. },
  38356. mawGigantamax: {
  38357. height: math.unit(7.5, "feet"),
  38358. name: "Maw (Gigantamax)",
  38359. image: {
  38360. source: "./media/characters/carbon/maw-gigantamax.svg"
  38361. }
  38362. },
  38363. },
  38364. [
  38365. {
  38366. name: "Normal",
  38367. height: math.unit(7 + 5/12, "feet"),
  38368. default: true
  38369. },
  38370. ]
  38371. ))
  38372. characterMakers.push(() => makeCharacter(
  38373. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38374. {
  38375. front: {
  38376. height: math.unit(6, "feet"),
  38377. name: "Front",
  38378. image: {
  38379. source: "./media/characters/maverick/front.svg",
  38380. extra: 1672/1661,
  38381. bottom: 85/1757
  38382. }
  38383. },
  38384. back: {
  38385. height: math.unit(6, "feet"),
  38386. name: "Back",
  38387. image: {
  38388. source: "./media/characters/maverick/back.svg",
  38389. extra: 1642/1631,
  38390. bottom: 38/1680
  38391. }
  38392. },
  38393. },
  38394. [
  38395. {
  38396. name: "Normal",
  38397. height: math.unit(6, "feet"),
  38398. default: true
  38399. },
  38400. ]
  38401. ))
  38402. characterMakers.push(() => makeCharacter(
  38403. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38404. {
  38405. front: {
  38406. height: math.unit(15, "feet"),
  38407. weight: math.unit(615, "lb"),
  38408. name: "Front",
  38409. image: {
  38410. source: "./media/characters/grockle/front.svg",
  38411. extra: 1535/1427,
  38412. bottom: 56/1591
  38413. }
  38414. },
  38415. },
  38416. [
  38417. {
  38418. name: "Normal",
  38419. height: math.unit(15, "feet"),
  38420. default: true
  38421. },
  38422. {
  38423. name: "Large",
  38424. height: math.unit(150, "feet")
  38425. },
  38426. {
  38427. name: "Macro",
  38428. height: math.unit(1876, "feet")
  38429. },
  38430. {
  38431. name: "Mega Macro",
  38432. height: math.unit(121940, "feet")
  38433. },
  38434. {
  38435. name: "Giga Macro",
  38436. height: math.unit(750, "km")
  38437. },
  38438. {
  38439. name: "Tera Macro",
  38440. height: math.unit(750000, "km")
  38441. },
  38442. {
  38443. name: "Galactic",
  38444. height: math.unit(1.4e5, "km")
  38445. },
  38446. {
  38447. name: "Godlike",
  38448. height: math.unit(9.8e280, "galaxies")
  38449. },
  38450. ]
  38451. ))
  38452. characterMakers.push(() => makeCharacter(
  38453. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38454. {
  38455. front: {
  38456. height: math.unit(11, "meters"),
  38457. weight: math.unit(20, "tonnes"),
  38458. name: "Front",
  38459. image: {
  38460. source: "./media/characters/alistair/front.svg",
  38461. extra: 1265/1009,
  38462. bottom: 93/1358
  38463. }
  38464. },
  38465. },
  38466. [
  38467. {
  38468. name: "Normal",
  38469. height: math.unit(11, "meters"),
  38470. default: true
  38471. },
  38472. ]
  38473. ))
  38474. characterMakers.push(() => makeCharacter(
  38475. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38476. {
  38477. front: {
  38478. height: math.unit(5 + 8/12, "feet"),
  38479. name: "Front",
  38480. image: {
  38481. source: "./media/characters/haruka/front.svg",
  38482. extra: 2012/1952,
  38483. bottom: 0/2012
  38484. }
  38485. },
  38486. },
  38487. [
  38488. {
  38489. name: "Normal",
  38490. height: math.unit(5 + 8/12, "feet"),
  38491. default: true
  38492. },
  38493. ]
  38494. ))
  38495. characterMakers.push(() => makeCharacter(
  38496. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38497. {
  38498. back: {
  38499. height: math.unit(9, "feet"),
  38500. name: "Back",
  38501. image: {
  38502. source: "./media/characters/vivian-sylveon/back.svg",
  38503. extra: 1853/1714,
  38504. bottom: 0/1853
  38505. }
  38506. },
  38507. },
  38508. [
  38509. {
  38510. name: "Normal",
  38511. height: math.unit(9, "feet"),
  38512. default: true
  38513. },
  38514. {
  38515. name: "Macro",
  38516. height: math.unit(500, "feet")
  38517. },
  38518. {
  38519. name: "Megamacro",
  38520. height: math.unit(600, "miles")
  38521. },
  38522. {
  38523. name: "Gigamacro",
  38524. height: math.unit(30000, "miles")
  38525. },
  38526. ]
  38527. ))
  38528. characterMakers.push(() => makeCharacter(
  38529. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38530. {
  38531. anthro: {
  38532. height: math.unit(5 + 10/12, "feet"),
  38533. weight: math.unit(100, "lb"),
  38534. name: "Anthro",
  38535. image: {
  38536. source: "./media/characters/daiki/anthro.svg",
  38537. extra: 1115/1027,
  38538. bottom: 69/1184
  38539. }
  38540. },
  38541. feral: {
  38542. height: math.unit(200, "feet"),
  38543. name: "Feral",
  38544. image: {
  38545. source: "./media/characters/daiki/feral.svg",
  38546. extra: 1256/313,
  38547. bottom: 39/1295
  38548. }
  38549. },
  38550. feralHead: {
  38551. height: math.unit(171, "feet"),
  38552. name: "Feral Head",
  38553. image: {
  38554. source: "./media/characters/daiki/feral-head.svg"
  38555. }
  38556. },
  38557. manaDragon: {
  38558. height: math.unit(170, "meters"),
  38559. name: "Mana-dragon",
  38560. image: {
  38561. source: "./media/characters/daiki/mana-dragon.svg",
  38562. extra: 763/420,
  38563. bottom: 97/860
  38564. }
  38565. },
  38566. },
  38567. [
  38568. {
  38569. name: "Normal",
  38570. height: math.unit(5 + 10/12, "feet"),
  38571. default: true
  38572. },
  38573. ]
  38574. ))
  38575. characterMakers.push(() => makeCharacter(
  38576. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38577. {
  38578. fullyEquippedFront: {
  38579. height: math.unit(3 + 1/12, "feet"),
  38580. weight: math.unit(24, "lb"),
  38581. name: "Fully Equipped (Front)",
  38582. image: {
  38583. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38584. extra: 687/605,
  38585. bottom: 18/705
  38586. }
  38587. },
  38588. fullyEquippedBack: {
  38589. height: math.unit(3 + 1/12, "feet"),
  38590. weight: math.unit(24, "lb"),
  38591. name: "Fully Equipped (Back)",
  38592. image: {
  38593. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38594. extra: 689/590,
  38595. bottom: 18/707
  38596. }
  38597. },
  38598. dailyWear: {
  38599. height: math.unit(3 + 1/12, "feet"),
  38600. weight: math.unit(24, "lb"),
  38601. name: "Daily Wear",
  38602. image: {
  38603. source: "./media/characters/tea-spot/daily-wear.svg",
  38604. extra: 701/620,
  38605. bottom: 21/722
  38606. }
  38607. },
  38608. maidWork: {
  38609. height: math.unit(3 + 1/12, "feet"),
  38610. weight: math.unit(24, "lb"),
  38611. name: "Maid Work",
  38612. image: {
  38613. source: "./media/characters/tea-spot/maid-work.svg",
  38614. extra: 693/609,
  38615. bottom: 15/708
  38616. }
  38617. },
  38618. },
  38619. [
  38620. {
  38621. name: "Normal",
  38622. height: math.unit(3 + 1/12, "feet"),
  38623. default: true
  38624. },
  38625. ]
  38626. ))
  38627. characterMakers.push(() => makeCharacter(
  38628. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38629. {
  38630. front: {
  38631. height: math.unit(175, "cm"),
  38632. weight: math.unit(75, "kg"),
  38633. name: "Front",
  38634. image: {
  38635. source: "./media/characters/chee/front.svg",
  38636. extra: 1796/1740,
  38637. bottom: 40/1836
  38638. }
  38639. },
  38640. },
  38641. [
  38642. {
  38643. name: "Micro-Micro",
  38644. height: math.unit(1, "nm")
  38645. },
  38646. {
  38647. name: "Micro-erst",
  38648. height: math.unit(1, "micrometer")
  38649. },
  38650. {
  38651. name: "Micro-er",
  38652. height: math.unit(1, "cm")
  38653. },
  38654. {
  38655. name: "Normal",
  38656. height: math.unit(175, "cm"),
  38657. default: true
  38658. },
  38659. {
  38660. name: "Macro",
  38661. height: math.unit(100, "m")
  38662. },
  38663. {
  38664. name: "Macro-er",
  38665. height: math.unit(1, "km")
  38666. },
  38667. {
  38668. name: "Macro-erst",
  38669. height: math.unit(10, "km")
  38670. },
  38671. {
  38672. name: "Macro-Macro",
  38673. height: math.unit(100, "km")
  38674. },
  38675. ]
  38676. ))
  38677. characterMakers.push(() => makeCharacter(
  38678. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38679. {
  38680. front: {
  38681. height: math.unit(11 + 9/12, "feet"),
  38682. weight: math.unit(935, "lb"),
  38683. name: "Front",
  38684. image: {
  38685. source: "./media/characters/kingsley/front.svg",
  38686. extra: 1803/1674,
  38687. bottom: 127/1930
  38688. }
  38689. },
  38690. frontNude: {
  38691. height: math.unit(11 + 9/12, "feet"),
  38692. weight: math.unit(935, "lb"),
  38693. name: "Front (Nude)",
  38694. image: {
  38695. source: "./media/characters/kingsley/front-nude.svg",
  38696. extra: 1803/1674,
  38697. bottom: 127/1930
  38698. }
  38699. },
  38700. },
  38701. [
  38702. {
  38703. name: "Normal",
  38704. height: math.unit(11 + 9/12, "feet"),
  38705. default: true
  38706. },
  38707. ]
  38708. ))
  38709. characterMakers.push(() => makeCharacter(
  38710. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38711. {
  38712. side: {
  38713. height: math.unit(9, "feet"),
  38714. name: "Side",
  38715. image: {
  38716. source: "./media/characters/rymel/side.svg",
  38717. extra: 792/469,
  38718. bottom: 121/913
  38719. }
  38720. },
  38721. maw: {
  38722. height: math.unit(2.4, "meters"),
  38723. name: "Maw",
  38724. image: {
  38725. source: "./media/characters/rymel/maw.svg"
  38726. }
  38727. },
  38728. },
  38729. [
  38730. {
  38731. name: "House Drake",
  38732. height: math.unit(2, "feet")
  38733. },
  38734. {
  38735. name: "Reduced",
  38736. height: math.unit(4.5, "feet")
  38737. },
  38738. {
  38739. name: "Normal",
  38740. height: math.unit(9, "feet"),
  38741. default: true
  38742. },
  38743. ]
  38744. ))
  38745. characterMakers.push(() => makeCharacter(
  38746. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38747. {
  38748. front: {
  38749. height: math.unit(1.74, "meters"),
  38750. weight: math.unit(55, "kg"),
  38751. name: "Front",
  38752. image: {
  38753. source: "./media/characters/rubus/front.svg",
  38754. extra: 1894/1742,
  38755. bottom: 44/1938
  38756. }
  38757. },
  38758. },
  38759. [
  38760. {
  38761. name: "Normal",
  38762. height: math.unit(1.74, "meters"),
  38763. default: true
  38764. },
  38765. ]
  38766. ))
  38767. characterMakers.push(() => makeCharacter(
  38768. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38769. {
  38770. front: {
  38771. height: math.unit(5 + 2/12, "feet"),
  38772. weight: math.unit(112, "lb"),
  38773. name: "Front",
  38774. image: {
  38775. source: "./media/characters/cassie-kingston/front.svg",
  38776. extra: 1438/1390,
  38777. bottom: 47/1485
  38778. }
  38779. },
  38780. },
  38781. [
  38782. {
  38783. name: "Normal",
  38784. height: math.unit(5 + 2/12, "feet"),
  38785. default: true
  38786. },
  38787. {
  38788. name: "Macro",
  38789. height: math.unit(128, "feet")
  38790. },
  38791. {
  38792. name: "Megamacro",
  38793. height: math.unit(2.56, "miles")
  38794. },
  38795. ]
  38796. ))
  38797. characterMakers.push(() => makeCharacter(
  38798. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38799. {
  38800. front: {
  38801. height: math.unit(7, "feet"),
  38802. name: "Front",
  38803. image: {
  38804. source: "./media/characters/fox/front.svg",
  38805. extra: 1798/1703,
  38806. bottom: 55/1853
  38807. }
  38808. },
  38809. back: {
  38810. height: math.unit(7, "feet"),
  38811. name: "Back",
  38812. image: {
  38813. source: "./media/characters/fox/back.svg",
  38814. extra: 1748/1649,
  38815. bottom: 32/1780
  38816. }
  38817. },
  38818. head: {
  38819. height: math.unit(1.95, "feet"),
  38820. name: "Head",
  38821. image: {
  38822. source: "./media/characters/fox/head.svg"
  38823. }
  38824. },
  38825. dick: {
  38826. height: math.unit(1.33, "feet"),
  38827. name: "Dick",
  38828. image: {
  38829. source: "./media/characters/fox/dick.svg"
  38830. }
  38831. },
  38832. foot: {
  38833. height: math.unit(1, "feet"),
  38834. name: "Foot",
  38835. image: {
  38836. source: "./media/characters/fox/foot.svg"
  38837. }
  38838. },
  38839. paw: {
  38840. height: math.unit(0.92, "feet"),
  38841. name: "Paw",
  38842. image: {
  38843. source: "./media/characters/fox/paw.svg"
  38844. }
  38845. },
  38846. },
  38847. [
  38848. {
  38849. name: "Small",
  38850. height: math.unit(3, "inches")
  38851. },
  38852. {
  38853. name: "\"Realistic\"",
  38854. height: math.unit(7, "feet")
  38855. },
  38856. {
  38857. name: "Normal",
  38858. height: math.unit(150, "feet"),
  38859. default: true
  38860. },
  38861. {
  38862. name: "BIG",
  38863. height: math.unit(1200, "feet")
  38864. },
  38865. {
  38866. name: "👀",
  38867. height: math.unit(5, "miles")
  38868. },
  38869. {
  38870. name: "👀👀👀",
  38871. height: math.unit(64, "miles")
  38872. },
  38873. ]
  38874. ))
  38875. characterMakers.push(() => makeCharacter(
  38876. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38877. {
  38878. front: {
  38879. height: math.unit(625, "feet"),
  38880. name: "Front",
  38881. image: {
  38882. source: "./media/characters/asonja-rossa/front.svg",
  38883. extra: 1833/1686,
  38884. bottom: 24/1857
  38885. }
  38886. },
  38887. back: {
  38888. height: math.unit(625, "feet"),
  38889. name: "Back",
  38890. image: {
  38891. source: "./media/characters/asonja-rossa/back.svg",
  38892. extra: 1852/1753,
  38893. bottom: 26/1878
  38894. }
  38895. },
  38896. },
  38897. [
  38898. {
  38899. name: "Macro",
  38900. height: math.unit(625, "feet"),
  38901. default: true
  38902. },
  38903. ]
  38904. ))
  38905. characterMakers.push(() => makeCharacter(
  38906. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38907. {
  38908. side: {
  38909. height: math.unit(8, "feet"),
  38910. name: "Side",
  38911. image: {
  38912. source: "./media/characters/rezukii/side.svg",
  38913. extra: 979/542,
  38914. bottom: 87/1066
  38915. }
  38916. },
  38917. sitting: {
  38918. height: math.unit(14.6, "feet"),
  38919. name: "Sitting",
  38920. image: {
  38921. source: "./media/characters/rezukii/sitting.svg",
  38922. extra: 1023/813,
  38923. bottom: 45/1068
  38924. }
  38925. },
  38926. },
  38927. [
  38928. {
  38929. name: "Tiny",
  38930. height: math.unit(2, "feet")
  38931. },
  38932. {
  38933. name: "Smol",
  38934. height: math.unit(4, "feet")
  38935. },
  38936. {
  38937. name: "Normal",
  38938. height: math.unit(8, "feet"),
  38939. default: true
  38940. },
  38941. {
  38942. name: "Big",
  38943. height: math.unit(12, "feet")
  38944. },
  38945. {
  38946. name: "Macro",
  38947. height: math.unit(30, "feet")
  38948. },
  38949. ]
  38950. ))
  38951. characterMakers.push(() => makeCharacter(
  38952. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38953. {
  38954. front: {
  38955. height: math.unit(14, "feet"),
  38956. weight: math.unit(9.5, "tonnes"),
  38957. name: "Front",
  38958. image: {
  38959. source: "./media/characters/dawnheart/front.svg",
  38960. extra: 2792/2675,
  38961. bottom: 64/2856
  38962. }
  38963. },
  38964. },
  38965. [
  38966. {
  38967. name: "Normal",
  38968. height: math.unit(14, "feet"),
  38969. default: true
  38970. },
  38971. ]
  38972. ))
  38973. characterMakers.push(() => makeCharacter(
  38974. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38975. {
  38976. front: {
  38977. height: math.unit(1.7, "m"),
  38978. name: "Front",
  38979. image: {
  38980. source: "./media/characters/gladi/front.svg",
  38981. extra: 1460/1362,
  38982. bottom: 19/1479
  38983. }
  38984. },
  38985. back: {
  38986. height: math.unit(1.7, "m"),
  38987. name: "Back",
  38988. image: {
  38989. source: "./media/characters/gladi/back.svg",
  38990. extra: 1459/1357,
  38991. bottom: 12/1471
  38992. }
  38993. },
  38994. feral: {
  38995. height: math.unit(2.05, "m"),
  38996. name: "Feral",
  38997. image: {
  38998. source: "./media/characters/gladi/feral.svg",
  38999. extra: 821/557,
  39000. bottom: 91/912
  39001. }
  39002. },
  39003. },
  39004. [
  39005. {
  39006. name: "Shortest",
  39007. height: math.unit(70, "cm")
  39008. },
  39009. {
  39010. name: "Normal",
  39011. height: math.unit(1.7, "m")
  39012. },
  39013. {
  39014. name: "Macro",
  39015. height: math.unit(10, "m"),
  39016. default: true
  39017. },
  39018. {
  39019. name: "Tallest",
  39020. height: math.unit(200, "m")
  39021. },
  39022. ]
  39023. ))
  39024. characterMakers.push(() => makeCharacter(
  39025. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39026. {
  39027. front: {
  39028. height: math.unit(5 + 7/12, "feet"),
  39029. weight: math.unit(2, "tons"),
  39030. name: "Front",
  39031. image: {
  39032. source: "./media/characters/erdno/front.svg",
  39033. extra: 1234/1129,
  39034. bottom: 35/1269
  39035. }
  39036. },
  39037. angled: {
  39038. height: math.unit(5 + 7/12, "feet"),
  39039. weight: math.unit(2, "tons"),
  39040. name: "Angled",
  39041. image: {
  39042. source: "./media/characters/erdno/angled.svg",
  39043. extra: 1185/1139,
  39044. bottom: 36/1221
  39045. }
  39046. },
  39047. side: {
  39048. height: math.unit(5 + 7/12, "feet"),
  39049. weight: math.unit(2, "tons"),
  39050. name: "Side",
  39051. image: {
  39052. source: "./media/characters/erdno/side.svg",
  39053. extra: 1191/1144,
  39054. bottom: 40/1231
  39055. }
  39056. },
  39057. back: {
  39058. height: math.unit(5 + 7/12, "feet"),
  39059. weight: math.unit(2, "tons"),
  39060. name: "Back",
  39061. image: {
  39062. source: "./media/characters/erdno/back.svg",
  39063. extra: 1202/1146,
  39064. bottom: 17/1219
  39065. }
  39066. },
  39067. frontNsfw: {
  39068. height: math.unit(5 + 7/12, "feet"),
  39069. weight: math.unit(2, "tons"),
  39070. name: "Front (NSFW)",
  39071. image: {
  39072. source: "./media/characters/erdno/front-nsfw.svg",
  39073. extra: 1234/1129,
  39074. bottom: 35/1269
  39075. }
  39076. },
  39077. angledNsfw: {
  39078. height: math.unit(5 + 7/12, "feet"),
  39079. weight: math.unit(2, "tons"),
  39080. name: "Angled (NSFW)",
  39081. image: {
  39082. source: "./media/characters/erdno/angled-nsfw.svg",
  39083. extra: 1185/1139,
  39084. bottom: 36/1221
  39085. }
  39086. },
  39087. sideNsfw: {
  39088. height: math.unit(5 + 7/12, "feet"),
  39089. weight: math.unit(2, "tons"),
  39090. name: "Side (NSFW)",
  39091. image: {
  39092. source: "./media/characters/erdno/side-nsfw.svg",
  39093. extra: 1191/1144,
  39094. bottom: 40/1231
  39095. }
  39096. },
  39097. backNsfw: {
  39098. height: math.unit(5 + 7/12, "feet"),
  39099. weight: math.unit(2, "tons"),
  39100. name: "Back (NSFW)",
  39101. image: {
  39102. source: "./media/characters/erdno/back-nsfw.svg",
  39103. extra: 1202/1146,
  39104. bottom: 17/1219
  39105. }
  39106. },
  39107. frontHyper: {
  39108. height: math.unit(5 + 7/12, "feet"),
  39109. weight: math.unit(2, "tons"),
  39110. name: "Front (Hyper)",
  39111. image: {
  39112. source: "./media/characters/erdno/front-hyper.svg",
  39113. extra: 1298/1136,
  39114. bottom: 35/1333
  39115. }
  39116. },
  39117. },
  39118. [
  39119. {
  39120. name: "Normal",
  39121. height: math.unit(5 + 7/12, "feet"),
  39122. default: true
  39123. },
  39124. {
  39125. name: "Big",
  39126. height: math.unit(5.7, "meters")
  39127. },
  39128. {
  39129. name: "Macro",
  39130. height: math.unit(5.7, "kilometers")
  39131. },
  39132. {
  39133. name: "Megamacro",
  39134. height: math.unit(5.7, "earths")
  39135. },
  39136. ]
  39137. ))
  39138. characterMakers.push(() => makeCharacter(
  39139. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39140. {
  39141. front: {
  39142. height: math.unit(5 + 10/12, "feet"),
  39143. weight: math.unit(150, "lb"),
  39144. name: "Front",
  39145. image: {
  39146. source: "./media/characters/jamie/front.svg",
  39147. extra: 1908/1768,
  39148. bottom: 19/1927
  39149. }
  39150. },
  39151. },
  39152. [
  39153. {
  39154. name: "Minimum",
  39155. height: math.unit(2, "cm")
  39156. },
  39157. {
  39158. name: "Micro",
  39159. height: math.unit(3, "inches")
  39160. },
  39161. {
  39162. name: "Normal",
  39163. height: math.unit(5 + 10/12, "feet"),
  39164. default: true
  39165. },
  39166. {
  39167. name: "Macro",
  39168. height: math.unit(150, "feet")
  39169. },
  39170. {
  39171. name: "Megamacro",
  39172. height: math.unit(10000, "m")
  39173. },
  39174. ]
  39175. ))
  39176. characterMakers.push(() => makeCharacter(
  39177. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39178. {
  39179. front: {
  39180. height: math.unit(2, "meters"),
  39181. weight: math.unit(100, "kg"),
  39182. name: "Front",
  39183. image: {
  39184. source: "./media/characters/shiron/front.svg",
  39185. extra: 2103/1985,
  39186. bottom: 98/2201
  39187. }
  39188. },
  39189. back: {
  39190. height: math.unit(2, "meters"),
  39191. weight: math.unit(100, "kg"),
  39192. name: "Back",
  39193. image: {
  39194. source: "./media/characters/shiron/back.svg",
  39195. extra: 2110/2015,
  39196. bottom: 89/2199
  39197. }
  39198. },
  39199. hand: {
  39200. height: math.unit(0.96, "feet"),
  39201. name: "Hand",
  39202. image: {
  39203. source: "./media/characters/shiron/hand.svg"
  39204. }
  39205. },
  39206. foot: {
  39207. height: math.unit(1.464, "feet"),
  39208. name: "Foot",
  39209. image: {
  39210. source: "./media/characters/shiron/foot.svg"
  39211. }
  39212. },
  39213. },
  39214. [
  39215. {
  39216. name: "Normal",
  39217. height: math.unit(2, "meters")
  39218. },
  39219. {
  39220. name: "Macro",
  39221. height: math.unit(500, "meters"),
  39222. default: true
  39223. },
  39224. {
  39225. name: "Megamacro",
  39226. height: math.unit(20, "km")
  39227. },
  39228. ]
  39229. ))
  39230. characterMakers.push(() => makeCharacter(
  39231. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39232. {
  39233. front: {
  39234. height: math.unit(6, "feet"),
  39235. name: "Front",
  39236. image: {
  39237. source: "./media/characters/sam/front.svg",
  39238. extra: 849/826,
  39239. bottom: 19/868
  39240. }
  39241. },
  39242. },
  39243. [
  39244. {
  39245. name: "Normal",
  39246. height: math.unit(6, "feet"),
  39247. default: true
  39248. },
  39249. ]
  39250. ))
  39251. characterMakers.push(() => makeCharacter(
  39252. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39253. {
  39254. front: {
  39255. height: math.unit(8 + 4/12, "feet"),
  39256. weight: math.unit(122, "kg"),
  39257. name: "Front",
  39258. image: {
  39259. source: "./media/characters/namori-kurogawa/front.svg",
  39260. extra: 1894/1576,
  39261. bottom: 34/1928
  39262. }
  39263. },
  39264. },
  39265. [
  39266. {
  39267. name: "Normal",
  39268. height: math.unit(8 + 4/12, "feet"),
  39269. default: true
  39270. },
  39271. ]
  39272. ))
  39273. characterMakers.push(() => makeCharacter(
  39274. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39275. {
  39276. front: {
  39277. height: math.unit(9, "feet"),
  39278. weight: math.unit(621, "lb"),
  39279. name: "Front",
  39280. image: {
  39281. source: "./media/characters/unmru/front.svg",
  39282. extra: 1853/1747,
  39283. bottom: 73/1926
  39284. }
  39285. },
  39286. side: {
  39287. height: math.unit(9, "feet"),
  39288. weight: math.unit(621, "lb"),
  39289. name: "Side",
  39290. image: {
  39291. source: "./media/characters/unmru/side.svg",
  39292. extra: 1781/1671,
  39293. bottom: 127/1908
  39294. }
  39295. },
  39296. back: {
  39297. height: math.unit(9, "feet"),
  39298. weight: math.unit(621, "lb"),
  39299. name: "Back",
  39300. image: {
  39301. source: "./media/characters/unmru/back.svg",
  39302. extra: 1894/1765,
  39303. bottom: 75/1969
  39304. }
  39305. },
  39306. dick: {
  39307. height: math.unit(3, "feet"),
  39308. weight: math.unit(35, "lb"),
  39309. name: "Dick",
  39310. image: {
  39311. source: "./media/characters/unmru/dick.svg"
  39312. }
  39313. },
  39314. },
  39315. [
  39316. {
  39317. name: "Normal",
  39318. height: math.unit(9, "feet")
  39319. },
  39320. {
  39321. name: "Natural",
  39322. height: math.unit(27, "feet"),
  39323. default: true
  39324. },
  39325. {
  39326. name: "Giant",
  39327. height: math.unit(90, "feet")
  39328. },
  39329. {
  39330. name: "Kaiju",
  39331. height: math.unit(270, "feet")
  39332. },
  39333. {
  39334. name: "Macro",
  39335. height: math.unit(900, "feet")
  39336. },
  39337. {
  39338. name: "Macro+",
  39339. height: math.unit(2700, "feet")
  39340. },
  39341. {
  39342. name: "Megamacro",
  39343. height: math.unit(9000, "feet")
  39344. },
  39345. {
  39346. name: "City-Crushing",
  39347. height: math.unit(27000, "feet")
  39348. },
  39349. {
  39350. name: "Mountain-Mashing",
  39351. height: math.unit(90000, "feet")
  39352. },
  39353. {
  39354. name: "Earth-Eclipsing",
  39355. height: math.unit(2.7e8, "feet")
  39356. },
  39357. {
  39358. name: "Sol-Swallowing",
  39359. height: math.unit(9e10, "feet")
  39360. },
  39361. {
  39362. name: "Majoris-Munching",
  39363. height: math.unit(2.7e13, "feet")
  39364. },
  39365. ]
  39366. ))
  39367. characterMakers.push(() => makeCharacter(
  39368. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39369. {
  39370. front: {
  39371. height: math.unit(1, "inch"),
  39372. name: "Front",
  39373. image: {
  39374. source: "./media/characters/squeaks-mouse/front.svg",
  39375. extra: 352/308,
  39376. bottom: 25/377
  39377. }
  39378. },
  39379. },
  39380. [
  39381. {
  39382. name: "Micro",
  39383. height: math.unit(1, "inch"),
  39384. default: true
  39385. },
  39386. ]
  39387. ))
  39388. characterMakers.push(() => makeCharacter(
  39389. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39390. {
  39391. side: {
  39392. height: math.unit(35, "feet"),
  39393. name: "Side",
  39394. image: {
  39395. source: "./media/characters/sayko/side.svg",
  39396. extra: 1697/1021,
  39397. bottom: 82/1779
  39398. }
  39399. },
  39400. head: {
  39401. height: math.unit(16, "feet"),
  39402. name: "Head",
  39403. image: {
  39404. source: "./media/characters/sayko/head.svg"
  39405. }
  39406. },
  39407. forepaw: {
  39408. height: math.unit(7.85, "feet"),
  39409. name: "Forepaw",
  39410. image: {
  39411. source: "./media/characters/sayko/forepaw.svg"
  39412. }
  39413. },
  39414. hindpaw: {
  39415. height: math.unit(8.8, "feet"),
  39416. name: "Hindpaw",
  39417. image: {
  39418. source: "./media/characters/sayko/hindpaw.svg"
  39419. }
  39420. },
  39421. },
  39422. [
  39423. {
  39424. name: "Normal",
  39425. height: math.unit(35, "feet"),
  39426. default: true
  39427. },
  39428. {
  39429. name: "Colossus",
  39430. height: math.unit(100, "meters")
  39431. },
  39432. {
  39433. name: "\"Small\" Deity",
  39434. height: math.unit(1, "km")
  39435. },
  39436. {
  39437. name: "\"Large\" Deity",
  39438. height: math.unit(15, "km")
  39439. },
  39440. ]
  39441. ))
  39442. characterMakers.push(() => makeCharacter(
  39443. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39444. {
  39445. front: {
  39446. height: math.unit(6, "feet"),
  39447. weight: math.unit(250, "lb"),
  39448. name: "Front",
  39449. image: {
  39450. source: "./media/characters/mukiro/front.svg",
  39451. extra: 1368/1310,
  39452. bottom: 34/1402
  39453. }
  39454. },
  39455. },
  39456. [
  39457. {
  39458. name: "Normal",
  39459. height: math.unit(6, "feet"),
  39460. default: true
  39461. },
  39462. ]
  39463. ))
  39464. characterMakers.push(() => makeCharacter(
  39465. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39466. {
  39467. front: {
  39468. height: math.unit(12 + 4/12, "feet"),
  39469. name: "Front",
  39470. image: {
  39471. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39472. extra: 1346/1311,
  39473. bottom: 65/1411
  39474. }
  39475. },
  39476. },
  39477. [
  39478. {
  39479. name: "Base",
  39480. height: math.unit(12 + 4/12, "feet"),
  39481. default: true
  39482. },
  39483. {
  39484. name: "Macro",
  39485. height: math.unit(150, "feet")
  39486. },
  39487. {
  39488. name: "Mega",
  39489. height: math.unit(2, "miles")
  39490. },
  39491. {
  39492. name: "Demi God",
  39493. height: math.unit(4, "AU")
  39494. },
  39495. {
  39496. name: "God Size",
  39497. height: math.unit(1, "universe")
  39498. },
  39499. ]
  39500. ))
  39501. characterMakers.push(() => makeCharacter(
  39502. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39503. {
  39504. front: {
  39505. height: math.unit(3 + 3/12, "feet"),
  39506. weight: math.unit(88, "lb"),
  39507. name: "Front",
  39508. image: {
  39509. source: "./media/characters/trey/front.svg",
  39510. extra: 1815/1509,
  39511. bottom: 60/1875
  39512. }
  39513. },
  39514. },
  39515. [
  39516. {
  39517. name: "Normal",
  39518. height: math.unit(3 + 3/12, "feet"),
  39519. default: true
  39520. },
  39521. ]
  39522. ))
  39523. characterMakers.push(() => makeCharacter(
  39524. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39525. {
  39526. front: {
  39527. height: math.unit(4, "meters"),
  39528. name: "Front",
  39529. image: {
  39530. source: "./media/characters/adelonda/front.svg",
  39531. extra: 1077/982,
  39532. bottom: 39/1116
  39533. }
  39534. },
  39535. back: {
  39536. height: math.unit(4, "meters"),
  39537. name: "Back",
  39538. image: {
  39539. source: "./media/characters/adelonda/back.svg",
  39540. extra: 1105/1003,
  39541. bottom: 25/1130
  39542. }
  39543. },
  39544. feral: {
  39545. height: math.unit(40/1.5, "meters"),
  39546. name: "Feral",
  39547. image: {
  39548. source: "./media/characters/adelonda/feral.svg",
  39549. extra: 597/271,
  39550. bottom: 387/984
  39551. }
  39552. },
  39553. },
  39554. [
  39555. {
  39556. name: "Normal",
  39557. height: math.unit(4, "meters"),
  39558. default: true
  39559. },
  39560. ]
  39561. ))
  39562. characterMakers.push(() => makeCharacter(
  39563. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39564. {
  39565. front: {
  39566. height: math.unit(8 + 4/12, "feet"),
  39567. weight: math.unit(670, "lb"),
  39568. name: "Front",
  39569. image: {
  39570. source: "./media/characters/acadiel/front.svg",
  39571. extra: 1901/1595,
  39572. bottom: 142/2043
  39573. }
  39574. },
  39575. },
  39576. [
  39577. {
  39578. name: "Normal",
  39579. height: math.unit(8 + 4/12, "feet"),
  39580. default: true
  39581. },
  39582. {
  39583. name: "Macro",
  39584. height: math.unit(200, "feet")
  39585. },
  39586. ]
  39587. ))
  39588. characterMakers.push(() => makeCharacter(
  39589. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39590. {
  39591. front: {
  39592. height: math.unit(6 + 2/12, "feet"),
  39593. weight: math.unit(185, "lb"),
  39594. name: "Front",
  39595. image: {
  39596. source: "./media/characters/kayne-ein/front.svg",
  39597. extra: 1780/1560,
  39598. bottom: 81/1861
  39599. }
  39600. },
  39601. },
  39602. [
  39603. {
  39604. name: "Normal",
  39605. height: math.unit(6 + 2/12, "feet"),
  39606. default: true
  39607. },
  39608. {
  39609. name: "Transformation Stage",
  39610. height: math.unit(15, "feet")
  39611. },
  39612. {
  39613. name: "Macro",
  39614. height: math.unit(150, "feet")
  39615. },
  39616. {
  39617. name: "Earth's Shadow",
  39618. height: math.unit(6200, "miles")
  39619. },
  39620. {
  39621. name: "Universal Demon",
  39622. height: math.unit(28e9, "parsecs")
  39623. },
  39624. {
  39625. name: "Multiverse God",
  39626. height: math.unit(3, "multiverses")
  39627. },
  39628. ]
  39629. ))
  39630. characterMakers.push(() => makeCharacter(
  39631. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39632. {
  39633. front: {
  39634. height: math.unit(5 + 5/12, "feet"),
  39635. name: "Front",
  39636. image: {
  39637. source: "./media/characters/fawn/front.svg",
  39638. extra: 1873/1731,
  39639. bottom: 95/1968
  39640. }
  39641. },
  39642. back: {
  39643. height: math.unit(5 + 5/12, "feet"),
  39644. name: "Back",
  39645. image: {
  39646. source: "./media/characters/fawn/back.svg",
  39647. extra: 1813/1700,
  39648. bottom: 14/1827
  39649. }
  39650. },
  39651. hoof: {
  39652. height: math.unit(1.45, "feet"),
  39653. name: "Hoof",
  39654. image: {
  39655. source: "./media/characters/fawn/hoof.svg"
  39656. }
  39657. },
  39658. },
  39659. [
  39660. {
  39661. name: "Normal",
  39662. height: math.unit(5 + 5/12, "feet"),
  39663. default: true
  39664. },
  39665. ]
  39666. ))
  39667. characterMakers.push(() => makeCharacter(
  39668. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39669. {
  39670. front: {
  39671. height: math.unit(2 + 5/12, "feet"),
  39672. name: "Front",
  39673. image: {
  39674. source: "./media/characters/orion/front.svg",
  39675. extra: 1366/1304,
  39676. bottom: 43/1409
  39677. }
  39678. },
  39679. paw: {
  39680. height: math.unit(0.52, "feet"),
  39681. name: "Paw",
  39682. image: {
  39683. source: "./media/characters/orion/paw.svg"
  39684. }
  39685. },
  39686. },
  39687. [
  39688. {
  39689. name: "Normal",
  39690. height: math.unit(2 + 5/12, "feet"),
  39691. default: true
  39692. },
  39693. ]
  39694. ))
  39695. characterMakers.push(() => makeCharacter(
  39696. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39697. {
  39698. front: {
  39699. height: math.unit(5 + 10/12, "feet"),
  39700. name: "Front",
  39701. image: {
  39702. source: "./media/characters/vera/front.svg",
  39703. extra: 1680/1575,
  39704. bottom: 49/1729
  39705. }
  39706. },
  39707. back: {
  39708. height: math.unit(5 + 10/12, "feet"),
  39709. name: "Back",
  39710. image: {
  39711. source: "./media/characters/vera/back.svg",
  39712. extra: 1700/1588,
  39713. bottom: 18/1718
  39714. }
  39715. },
  39716. arcanine: {
  39717. height: math.unit(6 + 8/12, "feet"),
  39718. name: "Arcanine",
  39719. image: {
  39720. source: "./media/characters/vera/arcanine.svg",
  39721. extra: 1590/1511,
  39722. bottom: 71/1661
  39723. }
  39724. },
  39725. maw: {
  39726. height: math.unit(0.82, "feet"),
  39727. name: "Maw",
  39728. image: {
  39729. source: "./media/characters/vera/maw.svg"
  39730. }
  39731. },
  39732. mawArcanine: {
  39733. height: math.unit(0.97, "feet"),
  39734. name: "Maw (Arcanine)",
  39735. image: {
  39736. source: "./media/characters/vera/maw-arcanine.svg"
  39737. }
  39738. },
  39739. paw: {
  39740. height: math.unit(0.75, "feet"),
  39741. name: "Paw",
  39742. image: {
  39743. source: "./media/characters/vera/paw.svg"
  39744. }
  39745. },
  39746. pawprint: {
  39747. height: math.unit(0.52, "feet"),
  39748. name: "Pawprint",
  39749. image: {
  39750. source: "./media/characters/vera/pawprint.svg"
  39751. }
  39752. },
  39753. },
  39754. [
  39755. {
  39756. name: "Normal",
  39757. height: math.unit(5 + 10/12, "feet"),
  39758. default: true
  39759. },
  39760. {
  39761. name: "Macro",
  39762. height: math.unit(75, "feet")
  39763. },
  39764. ]
  39765. ))
  39766. characterMakers.push(() => makeCharacter(
  39767. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39768. {
  39769. front: {
  39770. height: math.unit(4, "feet"),
  39771. weight: math.unit(40, "lb"),
  39772. name: "Front",
  39773. image: {
  39774. source: "./media/characters/orvan-rabbit/front.svg",
  39775. extra: 1896/1642,
  39776. bottom: 29/1925
  39777. }
  39778. },
  39779. },
  39780. [
  39781. {
  39782. name: "Normal",
  39783. height: math.unit(4, "feet"),
  39784. default: true
  39785. },
  39786. ]
  39787. ))
  39788. characterMakers.push(() => makeCharacter(
  39789. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39790. {
  39791. front: {
  39792. height: math.unit(6, "feet"),
  39793. weight: math.unit(168, "lb"),
  39794. name: "Front",
  39795. image: {
  39796. source: "./media/characters/lisa/front.svg",
  39797. extra: 2065/1867,
  39798. bottom: 46/2111
  39799. }
  39800. },
  39801. back: {
  39802. height: math.unit(6, "feet"),
  39803. weight: math.unit(168, "lb"),
  39804. name: "Back",
  39805. image: {
  39806. source: "./media/characters/lisa/back.svg",
  39807. extra: 1982/1838,
  39808. bottom: 29/2011
  39809. }
  39810. },
  39811. maw: {
  39812. height: math.unit(0.81, "feet"),
  39813. name: "Maw",
  39814. image: {
  39815. source: "./media/characters/lisa/maw.svg"
  39816. }
  39817. },
  39818. paw: {
  39819. height: math.unit(0.9, "feet"),
  39820. name: "Paw",
  39821. image: {
  39822. source: "./media/characters/lisa/paw.svg"
  39823. }
  39824. },
  39825. caribousune: {
  39826. height: math.unit(7 + 2/12, "feet"),
  39827. weight: math.unit(268, "lb"),
  39828. name: "Caribousune",
  39829. image: {
  39830. source: "./media/characters/lisa/caribousune.svg",
  39831. extra: 1843/1633,
  39832. bottom: 29/1872
  39833. }
  39834. },
  39835. frontCaribousune: {
  39836. height: math.unit(7 + 2/12, "feet"),
  39837. weight: math.unit(268, "lb"),
  39838. name: "Front (Caribousune)",
  39839. image: {
  39840. source: "./media/characters/lisa/front-caribousune.svg",
  39841. extra: 1818/1638,
  39842. bottom: 52/1870
  39843. }
  39844. },
  39845. sideCaribousune: {
  39846. height: math.unit(7 + 2/12, "feet"),
  39847. weight: math.unit(268, "lb"),
  39848. name: "Side (Caribousune)",
  39849. image: {
  39850. source: "./media/characters/lisa/side-caribousune.svg",
  39851. extra: 1851/1635,
  39852. bottom: 16/1867
  39853. }
  39854. },
  39855. backCaribousune: {
  39856. height: math.unit(7 + 2/12, "feet"),
  39857. weight: math.unit(268, "lb"),
  39858. name: "Back (Caribousune)",
  39859. image: {
  39860. source: "./media/characters/lisa/back-caribousune.svg",
  39861. extra: 1801/1604,
  39862. bottom: 44/1845
  39863. }
  39864. },
  39865. caribou: {
  39866. height: math.unit(7 + 2/12, "feet"),
  39867. weight: math.unit(268, "lb"),
  39868. name: "Caribou",
  39869. image: {
  39870. source: "./media/characters/lisa/caribou.svg",
  39871. extra: 1843/1633,
  39872. bottom: 29/1872
  39873. }
  39874. },
  39875. frontCaribou: {
  39876. height: math.unit(7 + 2/12, "feet"),
  39877. weight: math.unit(268, "lb"),
  39878. name: "Front (Caribou)",
  39879. image: {
  39880. source: "./media/characters/lisa/front-caribou.svg",
  39881. extra: 1818/1638,
  39882. bottom: 52/1870
  39883. }
  39884. },
  39885. sideCaribou: {
  39886. height: math.unit(7 + 2/12, "feet"),
  39887. weight: math.unit(268, "lb"),
  39888. name: "Side (Caribou)",
  39889. image: {
  39890. source: "./media/characters/lisa/side-caribou.svg",
  39891. extra: 1851/1635,
  39892. bottom: 16/1867
  39893. }
  39894. },
  39895. backCaribou: {
  39896. height: math.unit(7 + 2/12, "feet"),
  39897. weight: math.unit(268, "lb"),
  39898. name: "Back (Caribou)",
  39899. image: {
  39900. source: "./media/characters/lisa/back-caribou.svg",
  39901. extra: 1801/1604,
  39902. bottom: 44/1845
  39903. }
  39904. },
  39905. mawCaribou: {
  39906. height: math.unit(1.45, "feet"),
  39907. name: "Maw (Caribou)",
  39908. image: {
  39909. source: "./media/characters/lisa/maw-caribou.svg"
  39910. }
  39911. },
  39912. mawCaribousune: {
  39913. height: math.unit(1.45, "feet"),
  39914. name: "Maw (Caribousune)",
  39915. image: {
  39916. source: "./media/characters/lisa/maw-caribousune.svg"
  39917. }
  39918. },
  39919. pawCaribousune: {
  39920. height: math.unit(1.61, "feet"),
  39921. name: "Paw (Caribou)",
  39922. image: {
  39923. source: "./media/characters/lisa/paw-caribousune.svg"
  39924. }
  39925. },
  39926. },
  39927. [
  39928. {
  39929. name: "Normal",
  39930. height: math.unit(6, "feet")
  39931. },
  39932. {
  39933. name: "God Size",
  39934. height: math.unit(72, "feet"),
  39935. default: true
  39936. },
  39937. {
  39938. name: "Towering",
  39939. height: math.unit(288, "feet")
  39940. },
  39941. {
  39942. name: "City Size",
  39943. height: math.unit(48384, "feet")
  39944. },
  39945. {
  39946. name: "Continental",
  39947. height: math.unit(4200, "miles")
  39948. },
  39949. {
  39950. name: "Planet Eater",
  39951. height: math.unit(42, "earths")
  39952. },
  39953. {
  39954. name: "Star Swallower",
  39955. height: math.unit(42, "solarradii")
  39956. },
  39957. {
  39958. name: "System Swallower",
  39959. height: math.unit(84000, "AU")
  39960. },
  39961. {
  39962. name: "Galaxy Gobbler",
  39963. height: math.unit(42, "galaxies")
  39964. },
  39965. {
  39966. name: "Universe Devourer",
  39967. height: math.unit(42, "universes")
  39968. },
  39969. {
  39970. name: "Multiverse Muncher",
  39971. height: math.unit(42, "multiverses")
  39972. },
  39973. ]
  39974. ))
  39975. characterMakers.push(() => makeCharacter(
  39976. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39977. {
  39978. front: {
  39979. height: math.unit(36, "feet"),
  39980. name: "Front",
  39981. image: {
  39982. source: "./media/characters/shadow-rat/front.svg",
  39983. extra: 1845/1758,
  39984. bottom: 83/1928
  39985. }
  39986. },
  39987. },
  39988. [
  39989. {
  39990. name: "Macro",
  39991. height: math.unit(36, "feet"),
  39992. default: true
  39993. },
  39994. ]
  39995. ))
  39996. characterMakers.push(() => makeCharacter(
  39997. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39998. {
  39999. side: {
  40000. height: math.unit(8, "feet"),
  40001. weight: math.unit(2630, "lb"),
  40002. name: "Side",
  40003. image: {
  40004. source: "./media/characters/torallia/side.svg",
  40005. extra: 2164/2021,
  40006. bottom: 371/2535
  40007. }
  40008. },
  40009. },
  40010. [
  40011. {
  40012. name: "Mortal Interaction",
  40013. height: math.unit(8, "feet")
  40014. },
  40015. {
  40016. name: "Natural",
  40017. height: math.unit(24, "feet"),
  40018. default: true
  40019. },
  40020. {
  40021. name: "Giant",
  40022. height: math.unit(80, "feet")
  40023. },
  40024. {
  40025. name: "Kaiju",
  40026. height: math.unit(240, "feet")
  40027. },
  40028. {
  40029. name: "Macro",
  40030. height: math.unit(800, "feet")
  40031. },
  40032. {
  40033. name: "Macro+",
  40034. height: math.unit(2400, "feet")
  40035. },
  40036. {
  40037. name: "Macro++",
  40038. height: math.unit(8000, "feet")
  40039. },
  40040. {
  40041. name: "City-Crushing",
  40042. height: math.unit(24000, "feet")
  40043. },
  40044. {
  40045. name: "Mountain-Mashing",
  40046. height: math.unit(80000, "feet")
  40047. },
  40048. {
  40049. name: "District Demolisher",
  40050. height: math.unit(240000, "feet")
  40051. },
  40052. {
  40053. name: "Tri-County Terror",
  40054. height: math.unit(800000, "feet")
  40055. },
  40056. {
  40057. name: "State Smasher",
  40058. height: math.unit(2.4e6, "feet")
  40059. },
  40060. {
  40061. name: "Nation Nemesis",
  40062. height: math.unit(8e6, "feet")
  40063. },
  40064. {
  40065. name: "Continent Cracker",
  40066. height: math.unit(2.4e7, "feet")
  40067. },
  40068. {
  40069. name: "Planet-Pillaging",
  40070. height: math.unit(8e7, "feet")
  40071. },
  40072. {
  40073. name: "Earth-Eclipsing",
  40074. height: math.unit(2.4e8, "feet")
  40075. },
  40076. {
  40077. name: "Jovian-Jostling",
  40078. height: math.unit(8e8, "feet")
  40079. },
  40080. {
  40081. name: "Gas Giant Gulper",
  40082. height: math.unit(2.4e9, "feet")
  40083. },
  40084. {
  40085. name: "Astral Annihilator",
  40086. height: math.unit(8e9, "feet")
  40087. },
  40088. {
  40089. name: "Celestial Conqueror",
  40090. height: math.unit(2.4e10, "feet")
  40091. },
  40092. {
  40093. name: "Sol-Swallowing",
  40094. height: math.unit(8e10, "feet")
  40095. },
  40096. {
  40097. name: "Hunter of the Heavens",
  40098. height: math.unit(2.4e13, "feet")
  40099. },
  40100. ]
  40101. ))
  40102. characterMakers.push(() => makeCharacter(
  40103. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40104. {
  40105. front: {
  40106. height: math.unit(6 + 8/12, "feet"),
  40107. weight: math.unit(250, "kilograms"),
  40108. volume: math.unit(28, "liters"),
  40109. name: "Front",
  40110. image: {
  40111. source: "./media/characters/rebecca-pawlson/front.svg",
  40112. extra: 1737/1596,
  40113. bottom: 107/1844
  40114. }
  40115. },
  40116. back: {
  40117. height: math.unit(6 + 8/12, "feet"),
  40118. weight: math.unit(250, "kilograms"),
  40119. volume: math.unit(28, "liters"),
  40120. name: "Back",
  40121. image: {
  40122. source: "./media/characters/rebecca-pawlson/back.svg",
  40123. extra: 1702/1523,
  40124. bottom: 86/1788
  40125. }
  40126. },
  40127. },
  40128. [
  40129. {
  40130. name: "Normal",
  40131. height: math.unit(6 + 8/12, "feet")
  40132. },
  40133. {
  40134. name: "Mini Macro",
  40135. height: math.unit(10, "feet"),
  40136. default: true
  40137. },
  40138. {
  40139. name: "Macro",
  40140. height: math.unit(100, "feet")
  40141. },
  40142. {
  40143. name: "Mega Macro",
  40144. height: math.unit(2500, "feet")
  40145. },
  40146. {
  40147. name: "Giga Macro",
  40148. height: math.unit(50, "miles")
  40149. },
  40150. ]
  40151. ))
  40152. characterMakers.push(() => makeCharacter(
  40153. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40154. {
  40155. front: {
  40156. height: math.unit(7 + 6/12, "feet"),
  40157. weight: math.unit(600, "lb"),
  40158. name: "Front",
  40159. image: {
  40160. source: "./media/characters/moxie-nova/front.svg",
  40161. extra: 1734/1652,
  40162. bottom: 41/1775
  40163. }
  40164. },
  40165. },
  40166. [
  40167. {
  40168. name: "Normal",
  40169. height: math.unit(7 + 6/12, "feet"),
  40170. default: true
  40171. },
  40172. ]
  40173. ))
  40174. characterMakers.push(() => makeCharacter(
  40175. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40176. {
  40177. goat: {
  40178. height: math.unit(4, "feet"),
  40179. weight: math.unit(180, "lb"),
  40180. name: "Goat",
  40181. image: {
  40182. source: "./media/characters/tiffany/goat.svg",
  40183. extra: 1845/1595,
  40184. bottom: 106/1951
  40185. }
  40186. },
  40187. front: {
  40188. height: math.unit(5, "feet"),
  40189. weight: math.unit(150, "lb"),
  40190. name: "Foxcoon",
  40191. image: {
  40192. source: "./media/characters/tiffany/foxcoon.svg",
  40193. extra: 1941/1845,
  40194. bottom: 58/1999
  40195. }
  40196. },
  40197. },
  40198. [
  40199. {
  40200. name: "Normal",
  40201. height: math.unit(5, "feet"),
  40202. default: true
  40203. },
  40204. ]
  40205. ))
  40206. characterMakers.push(() => makeCharacter(
  40207. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40208. {
  40209. front: {
  40210. height: math.unit(8, "feet"),
  40211. weight: math.unit(300, "lb"),
  40212. name: "Front",
  40213. image: {
  40214. source: "./media/characters/raxinath/front.svg",
  40215. extra: 1407/1309,
  40216. bottom: 39/1446
  40217. }
  40218. },
  40219. back: {
  40220. height: math.unit(8, "feet"),
  40221. weight: math.unit(300, "lb"),
  40222. name: "Back",
  40223. image: {
  40224. source: "./media/characters/raxinath/back.svg",
  40225. extra: 1405/1315,
  40226. bottom: 9/1414
  40227. }
  40228. },
  40229. },
  40230. [
  40231. {
  40232. name: "Speck",
  40233. height: math.unit(0.5, "nm")
  40234. },
  40235. {
  40236. name: "Micro",
  40237. height: math.unit(3, "inches")
  40238. },
  40239. {
  40240. name: "Kobold",
  40241. height: math.unit(3, "feet")
  40242. },
  40243. {
  40244. name: "Normal",
  40245. height: math.unit(8, "feet"),
  40246. default: true
  40247. },
  40248. {
  40249. name: "Giant",
  40250. height: math.unit(50, "feet")
  40251. },
  40252. {
  40253. name: "Macro",
  40254. height: math.unit(1000, "feet")
  40255. },
  40256. {
  40257. name: "Megamacro",
  40258. height: math.unit(1, "mile")
  40259. },
  40260. ]
  40261. ))
  40262. characterMakers.push(() => makeCharacter(
  40263. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40264. {
  40265. front: {
  40266. height: math.unit(10, "feet"),
  40267. weight: math.unit(1442, "lb"),
  40268. name: "Front",
  40269. image: {
  40270. source: "./media/characters/mal-dragon/front.svg",
  40271. extra: 1515/1444,
  40272. bottom: 113/1628
  40273. }
  40274. },
  40275. back: {
  40276. height: math.unit(10, "feet"),
  40277. weight: math.unit(1442, "lb"),
  40278. name: "Back",
  40279. image: {
  40280. source: "./media/characters/mal-dragon/back.svg",
  40281. extra: 1527/1434,
  40282. bottom: 25/1552
  40283. }
  40284. },
  40285. },
  40286. [
  40287. {
  40288. name: "Mortal Interaction",
  40289. height: math.unit(10, "feet"),
  40290. default: true
  40291. },
  40292. {
  40293. name: "Large",
  40294. height: math.unit(30, "feet")
  40295. },
  40296. {
  40297. name: "Kaiju",
  40298. height: math.unit(300, "feet")
  40299. },
  40300. {
  40301. name: "Megamacro",
  40302. height: math.unit(10000, "feet")
  40303. },
  40304. {
  40305. name: "Continent Cracker",
  40306. height: math.unit(30000000, "feet")
  40307. },
  40308. {
  40309. name: "Sol-Swallowing",
  40310. height: math.unit(1e11, "feet")
  40311. },
  40312. {
  40313. name: "Light Universal",
  40314. height: math.unit(5, "universes")
  40315. },
  40316. {
  40317. name: "Universe Atoms",
  40318. height: math.unit(1.829e9, "universes")
  40319. },
  40320. {
  40321. name: "Light Multiversal",
  40322. height: math.unit(5, "multiverses")
  40323. },
  40324. {
  40325. name: "Multiverse Atoms",
  40326. height: math.unit(1.829e9, "multiverses")
  40327. },
  40328. {
  40329. name: "Fabric of Time",
  40330. height: math.unit(1e262, "multiverses")
  40331. },
  40332. ]
  40333. ))
  40334. characterMakers.push(() => makeCharacter(
  40335. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40336. {
  40337. front: {
  40338. height: math.unit(9, "feet"),
  40339. weight: math.unit(1050, "lb"),
  40340. name: "Front",
  40341. image: {
  40342. source: "./media/characters/tabitha/front.svg",
  40343. extra: 2083/1994,
  40344. bottom: 68/2151
  40345. }
  40346. },
  40347. },
  40348. [
  40349. {
  40350. name: "Baseline",
  40351. height: math.unit(9, "feet"),
  40352. default: true
  40353. },
  40354. {
  40355. name: "Giant",
  40356. height: math.unit(90, "feet")
  40357. },
  40358. {
  40359. name: "Macro",
  40360. height: math.unit(900, "feet")
  40361. },
  40362. {
  40363. name: "Megamacro",
  40364. height: math.unit(9000, "feet")
  40365. },
  40366. {
  40367. name: "City-Crushing",
  40368. height: math.unit(27000, "feet")
  40369. },
  40370. {
  40371. name: "Mountain-Mashing",
  40372. height: math.unit(90000, "feet")
  40373. },
  40374. {
  40375. name: "Nation Nemesis",
  40376. height: math.unit(9e6, "feet")
  40377. },
  40378. {
  40379. name: "Continent Cracker",
  40380. height: math.unit(27e6, "feet")
  40381. },
  40382. {
  40383. name: "Earth-Eclipsing",
  40384. height: math.unit(2.7e8, "feet")
  40385. },
  40386. {
  40387. name: "Gas Giant Gulper",
  40388. height: math.unit(2.7e9, "feet")
  40389. },
  40390. {
  40391. name: "Sol-Swallowing",
  40392. height: math.unit(9e10, "feet")
  40393. },
  40394. {
  40395. name: "Galaxy Gulper",
  40396. height: math.unit(9, "galaxies")
  40397. },
  40398. {
  40399. name: "Cosmos Churner",
  40400. height: math.unit(9, "universes")
  40401. },
  40402. ]
  40403. ))
  40404. characterMakers.push(() => makeCharacter(
  40405. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40406. {
  40407. front: {
  40408. height: math.unit(160, "cm"),
  40409. weight: math.unit(55, "kg"),
  40410. name: "Front",
  40411. image: {
  40412. source: "./media/characters/tow/front.svg",
  40413. extra: 1751/1722,
  40414. bottom: 74/1825
  40415. }
  40416. },
  40417. },
  40418. [
  40419. {
  40420. name: "Norm",
  40421. height: math.unit(160, "cm")
  40422. },
  40423. {
  40424. name: "Casual",
  40425. height: math.unit(3200, "m"),
  40426. default: true
  40427. },
  40428. {
  40429. name: "Show-Off",
  40430. height: math.unit(160, "km")
  40431. },
  40432. ]
  40433. ))
  40434. characterMakers.push(() => makeCharacter(
  40435. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40436. {
  40437. front: {
  40438. height: math.unit(7 + 11/12, "feet"),
  40439. weight: math.unit(342.8, "lb"),
  40440. name: "Front",
  40441. image: {
  40442. source: "./media/characters/vivian-orca-dragon/front.svg",
  40443. extra: 1890/1865,
  40444. bottom: 28/1918
  40445. }
  40446. },
  40447. },
  40448. [
  40449. {
  40450. name: "Micro",
  40451. height: math.unit(5, "inches")
  40452. },
  40453. {
  40454. name: "Normal",
  40455. height: math.unit(7 + 11/12, "feet"),
  40456. default: true
  40457. },
  40458. {
  40459. name: "Macro",
  40460. height: math.unit(395 + 7/12, "feet")
  40461. },
  40462. ]
  40463. ))
  40464. characterMakers.push(() => makeCharacter(
  40465. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40466. {
  40467. side: {
  40468. height: math.unit(10, "feet"),
  40469. weight: math.unit(1442, "lb"),
  40470. name: "Side",
  40471. image: {
  40472. source: "./media/characters/lotherakon/side.svg",
  40473. extra: 1604/1497,
  40474. bottom: 89/1693
  40475. }
  40476. },
  40477. },
  40478. [
  40479. {
  40480. name: "Mortal Interaction",
  40481. height: math.unit(10, "feet")
  40482. },
  40483. {
  40484. name: "Large",
  40485. height: math.unit(30, "feet"),
  40486. default: true
  40487. },
  40488. {
  40489. name: "Giant",
  40490. height: math.unit(100, "feet")
  40491. },
  40492. {
  40493. name: "Kaiju",
  40494. height: math.unit(300, "feet")
  40495. },
  40496. {
  40497. name: "Macro",
  40498. height: math.unit(1000, "feet")
  40499. },
  40500. {
  40501. name: "Macro+",
  40502. height: math.unit(3000, "feet")
  40503. },
  40504. {
  40505. name: "Megamacro",
  40506. height: math.unit(10000, "feet")
  40507. },
  40508. {
  40509. name: "City-Crushing",
  40510. height: math.unit(30000, "feet")
  40511. },
  40512. {
  40513. name: "Continent Cracker",
  40514. height: math.unit(30e6, "feet")
  40515. },
  40516. {
  40517. name: "Earth Eclipsing",
  40518. height: math.unit(3e8, "feet")
  40519. },
  40520. {
  40521. name: "Gas Giant Gulper",
  40522. height: math.unit(3e9, "feet")
  40523. },
  40524. {
  40525. name: "Sol-Swallowing",
  40526. height: math.unit(1e11, "feet")
  40527. },
  40528. {
  40529. name: "System Swallower",
  40530. height: math.unit(3e14, "feet")
  40531. },
  40532. {
  40533. name: "Galaxy Gulper",
  40534. height: math.unit(10, "galaxies")
  40535. },
  40536. {
  40537. name: "Light Universal",
  40538. height: math.unit(5, "universes")
  40539. },
  40540. {
  40541. name: "Universe Palm",
  40542. height: math.unit(20, "universes")
  40543. },
  40544. {
  40545. name: "Light Multiversal",
  40546. height: math.unit(5, "multiverses")
  40547. },
  40548. {
  40549. name: "Multiverse Palm",
  40550. height: math.unit(20, "multiverses")
  40551. },
  40552. {
  40553. name: "Inferno Incarnate",
  40554. height: math.unit(1e7, "multiverses")
  40555. },
  40556. ]
  40557. ))
  40558. characterMakers.push(() => makeCharacter(
  40559. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40560. {
  40561. front: {
  40562. height: math.unit(8, "feet"),
  40563. weight: math.unit(1200, "lb"),
  40564. name: "Front",
  40565. image: {
  40566. source: "./media/characters/malithee/front.svg",
  40567. extra: 1675/1640,
  40568. bottom: 162/1837
  40569. }
  40570. },
  40571. },
  40572. [
  40573. {
  40574. name: "Mortal Interaction",
  40575. height: math.unit(8, "feet"),
  40576. default: true
  40577. },
  40578. {
  40579. name: "Large",
  40580. height: math.unit(24, "feet")
  40581. },
  40582. {
  40583. name: "Kaiju",
  40584. height: math.unit(240, "feet")
  40585. },
  40586. {
  40587. name: "Megamacro",
  40588. height: math.unit(8000, "feet")
  40589. },
  40590. {
  40591. name: "Continent Cracker",
  40592. height: math.unit(24e6, "feet")
  40593. },
  40594. {
  40595. name: "Earth-Eclipsing",
  40596. height: math.unit(2.4e8, "feet")
  40597. },
  40598. {
  40599. name: "Sol-Swallowing",
  40600. height: math.unit(8e10, "feet")
  40601. },
  40602. {
  40603. name: "Galaxy Gulper",
  40604. height: math.unit(8, "galaxies")
  40605. },
  40606. {
  40607. name: "Light Universal",
  40608. height: math.unit(4, "universes")
  40609. },
  40610. {
  40611. name: "Universe Atoms",
  40612. height: math.unit(1.829e9, "universes")
  40613. },
  40614. {
  40615. name: "Light Multiversal",
  40616. height: math.unit(4, "multiverses")
  40617. },
  40618. {
  40619. name: "Multiverse Atoms",
  40620. height: math.unit(1.829e9, "multiverses")
  40621. },
  40622. {
  40623. name: "Nigh-Omnipresence",
  40624. height: math.unit(8e261, "multiverses")
  40625. },
  40626. ]
  40627. ))
  40628. characterMakers.push(() => makeCharacter(
  40629. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40630. {
  40631. front: {
  40632. height: math.unit(10, "feet"),
  40633. weight: math.unit(1500, "lb"),
  40634. name: "Front",
  40635. image: {
  40636. source: "./media/characters/miles-thestia/front.svg",
  40637. extra: 1812/1727,
  40638. bottom: 86/1898
  40639. }
  40640. },
  40641. back: {
  40642. height: math.unit(10, "feet"),
  40643. weight: math.unit(1500, "lb"),
  40644. name: "Back",
  40645. image: {
  40646. source: "./media/characters/miles-thestia/back.svg",
  40647. extra: 1799/1690,
  40648. bottom: 47/1846
  40649. }
  40650. },
  40651. frontNsfw: {
  40652. height: math.unit(10, "feet"),
  40653. weight: math.unit(1500, "lb"),
  40654. name: "Front (NSFW)",
  40655. image: {
  40656. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40657. extra: 1812/1727,
  40658. bottom: 86/1898
  40659. }
  40660. },
  40661. },
  40662. [
  40663. {
  40664. name: "Mini-Macro",
  40665. height: math.unit(10, "feet"),
  40666. default: true
  40667. },
  40668. ]
  40669. ))
  40670. characterMakers.push(() => makeCharacter(
  40671. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40672. {
  40673. front: {
  40674. height: math.unit(25, "feet"),
  40675. name: "Front",
  40676. image: {
  40677. source: "./media/characters/titan-s-wulf/front.svg",
  40678. extra: 1560/1484,
  40679. bottom: 76/1636
  40680. }
  40681. },
  40682. },
  40683. [
  40684. {
  40685. name: "Smallest",
  40686. height: math.unit(25, "feet"),
  40687. default: true
  40688. },
  40689. {
  40690. name: "Normal",
  40691. height: math.unit(200, "feet")
  40692. },
  40693. {
  40694. name: "Macro",
  40695. height: math.unit(200000, "feet")
  40696. },
  40697. {
  40698. name: "Multiversal Original",
  40699. height: math.unit(10000, "multiverses")
  40700. },
  40701. ]
  40702. ))
  40703. characterMakers.push(() => makeCharacter(
  40704. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40705. {
  40706. front: {
  40707. height: math.unit(8, "feet"),
  40708. weight: math.unit(553, "lb"),
  40709. name: "Front",
  40710. image: {
  40711. source: "./media/characters/tawendeh/front.svg",
  40712. extra: 2365/2268,
  40713. bottom: 83/2448
  40714. }
  40715. },
  40716. frontClothed: {
  40717. height: math.unit(8, "feet"),
  40718. weight: math.unit(553, "lb"),
  40719. name: "Front (Clothed)",
  40720. image: {
  40721. source: "./media/characters/tawendeh/front-clothed.svg",
  40722. extra: 2365/2268,
  40723. bottom: 83/2448
  40724. }
  40725. },
  40726. back: {
  40727. height: math.unit(8, "feet"),
  40728. weight: math.unit(553, "lb"),
  40729. name: "Back",
  40730. image: {
  40731. source: "./media/characters/tawendeh/back.svg",
  40732. extra: 2397/2294,
  40733. bottom: 42/2439
  40734. }
  40735. },
  40736. },
  40737. [
  40738. {
  40739. name: "Mortal Interaction",
  40740. height: math.unit(8, "feet"),
  40741. default: true
  40742. },
  40743. {
  40744. name: "Giant",
  40745. height: math.unit(80, "feet")
  40746. },
  40747. {
  40748. name: "Macro",
  40749. height: math.unit(800, "feet")
  40750. },
  40751. {
  40752. name: "Megamacro",
  40753. height: math.unit(8000, "feet")
  40754. },
  40755. {
  40756. name: "City-Crushing",
  40757. height: math.unit(24000, "feet")
  40758. },
  40759. {
  40760. name: "Mountain-Mashing",
  40761. height: math.unit(80000, "feet")
  40762. },
  40763. {
  40764. name: "Nation Nemesis",
  40765. height: math.unit(8e6, "feet")
  40766. },
  40767. {
  40768. name: "Continent Cracker",
  40769. height: math.unit(24e6, "feet")
  40770. },
  40771. {
  40772. name: "Earth-Eclipsing",
  40773. height: math.unit(2.4e8, "feet")
  40774. },
  40775. {
  40776. name: "Gas Giant Gulper",
  40777. height: math.unit(2.4e9, "feet")
  40778. },
  40779. {
  40780. name: "Sol-Swallowing",
  40781. height: math.unit(8e10, "feet")
  40782. },
  40783. {
  40784. name: "Galaxy Gulper",
  40785. height: math.unit(8, "galaxies")
  40786. },
  40787. {
  40788. name: "Cosmos Churner",
  40789. height: math.unit(8, "universes")
  40790. },
  40791. {
  40792. name: "Omnipotent Otter",
  40793. height: math.unit(80, "universes")
  40794. },
  40795. ]
  40796. ))
  40797. characterMakers.push(() => makeCharacter(
  40798. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40799. {
  40800. front: {
  40801. height: math.unit(2.6, "meters"),
  40802. weight: math.unit(900, "kg"),
  40803. name: "Front",
  40804. image: {
  40805. source: "./media/characters/neesha/front.svg",
  40806. extra: 1803/1653,
  40807. bottom: 128/1931
  40808. }
  40809. },
  40810. },
  40811. [
  40812. {
  40813. name: "Normal",
  40814. height: math.unit(2.6, "meters"),
  40815. default: true
  40816. },
  40817. {
  40818. name: "Macro",
  40819. height: math.unit(50, "meters")
  40820. },
  40821. ]
  40822. ))
  40823. characterMakers.push(() => makeCharacter(
  40824. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40825. {
  40826. front: {
  40827. height: math.unit(5, "feet"),
  40828. weight: math.unit(185, "lb"),
  40829. name: "Front",
  40830. image: {
  40831. source: "./media/characters/kyera/front.svg",
  40832. extra: 1875/1790,
  40833. bottom: 96/1971
  40834. }
  40835. },
  40836. },
  40837. [
  40838. {
  40839. name: "Normal",
  40840. height: math.unit(5, "feet"),
  40841. default: true
  40842. },
  40843. ]
  40844. ))
  40845. characterMakers.push(() => makeCharacter(
  40846. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40847. {
  40848. front: {
  40849. height: math.unit(7 + 6/12, "feet"),
  40850. weight: math.unit(540, "lb"),
  40851. name: "Front",
  40852. image: {
  40853. source: "./media/characters/yuko/front.svg",
  40854. extra: 1282/1222,
  40855. bottom: 101/1383
  40856. }
  40857. },
  40858. frontClothed: {
  40859. height: math.unit(7 + 6/12, "feet"),
  40860. weight: math.unit(540, "lb"),
  40861. name: "Front (Clothed)",
  40862. image: {
  40863. source: "./media/characters/yuko/front-clothed.svg",
  40864. extra: 1282/1222,
  40865. bottom: 101/1383
  40866. }
  40867. },
  40868. },
  40869. [
  40870. {
  40871. name: "Normal",
  40872. height: math.unit(7 + 6/12, "feet"),
  40873. default: true
  40874. },
  40875. {
  40876. name: "Macro",
  40877. height: math.unit(26 + 9/12, "feet")
  40878. },
  40879. {
  40880. name: "Megamacro",
  40881. height: math.unit(300, "feet")
  40882. },
  40883. {
  40884. name: "Gigamacro",
  40885. height: math.unit(5000, "feet")
  40886. },
  40887. {
  40888. name: "Planetary",
  40889. height: math.unit(10000, "miles")
  40890. },
  40891. ]
  40892. ))
  40893. characterMakers.push(() => makeCharacter(
  40894. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40895. {
  40896. front: {
  40897. height: math.unit(8 + 2/12, "feet"),
  40898. weight: math.unit(600, "lb"),
  40899. name: "Front",
  40900. image: {
  40901. source: "./media/characters/deam-nitrel/front.svg",
  40902. extra: 1308/1234,
  40903. bottom: 125/1433
  40904. }
  40905. },
  40906. },
  40907. [
  40908. {
  40909. name: "Normal",
  40910. height: math.unit(8 + 2/12, "feet"),
  40911. default: true
  40912. },
  40913. ]
  40914. ))
  40915. characterMakers.push(() => makeCharacter(
  40916. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40917. {
  40918. front: {
  40919. height: math.unit(6.1, "feet"),
  40920. weight: math.unit(180, "lb"),
  40921. name: "Front",
  40922. image: {
  40923. source: "./media/characters/skyress/front.svg",
  40924. extra: 1045/915,
  40925. bottom: 28/1073
  40926. }
  40927. },
  40928. maw: {
  40929. height: math.unit(1, "feet"),
  40930. name: "Maw",
  40931. image: {
  40932. source: "./media/characters/skyress/maw.svg"
  40933. }
  40934. },
  40935. },
  40936. [
  40937. {
  40938. name: "Normal",
  40939. height: math.unit(6.1, "feet"),
  40940. default: true
  40941. },
  40942. {
  40943. name: "Macro",
  40944. height: math.unit(200, "feet")
  40945. },
  40946. ]
  40947. ))
  40948. characterMakers.push(() => makeCharacter(
  40949. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40950. {
  40951. front: {
  40952. height: math.unit(4 + 2/12, "feet"),
  40953. weight: math.unit(40, "kg"),
  40954. name: "Front",
  40955. image: {
  40956. source: "./media/characters/amethyst-jones/front.svg",
  40957. extra: 1220/1150,
  40958. bottom: 101/1321
  40959. }
  40960. },
  40961. },
  40962. [
  40963. {
  40964. name: "Normal",
  40965. height: math.unit(4 + 2/12, "feet"),
  40966. default: true
  40967. },
  40968. ]
  40969. ))
  40970. characterMakers.push(() => makeCharacter(
  40971. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40972. {
  40973. front: {
  40974. height: math.unit(1.7, "m"),
  40975. weight: math.unit(135, "lb"),
  40976. name: "Front",
  40977. image: {
  40978. source: "./media/characters/jade/front.svg",
  40979. extra: 1818/1767,
  40980. bottom: 32/1850
  40981. }
  40982. },
  40983. back: {
  40984. height: math.unit(1.7, "m"),
  40985. weight: math.unit(135, "lb"),
  40986. name: "Back",
  40987. image: {
  40988. source: "./media/characters/jade/back.svg",
  40989. extra: 1869/1809,
  40990. bottom: 35/1904
  40991. }
  40992. },
  40993. hand: {
  40994. height: math.unit(0.24, "m"),
  40995. name: "Hand",
  40996. image: {
  40997. source: "./media/characters/jade/hand.svg"
  40998. }
  40999. },
  41000. foot: {
  41001. height: math.unit(0.263, "m"),
  41002. name: "Foot",
  41003. image: {
  41004. source: "./media/characters/jade/foot.svg"
  41005. }
  41006. },
  41007. dick: {
  41008. height: math.unit(0.47, "m"),
  41009. name: "Dick",
  41010. image: {
  41011. source: "./media/characters/jade/dick.svg"
  41012. }
  41013. },
  41014. },
  41015. [
  41016. {
  41017. name: "Micro",
  41018. height: math.unit(22, "cm")
  41019. },
  41020. {
  41021. name: "Normal",
  41022. height: math.unit(1.7, "m"),
  41023. default: true
  41024. },
  41025. {
  41026. name: "Macro",
  41027. height: math.unit(152, "m")
  41028. },
  41029. ]
  41030. ))
  41031. characterMakers.push(() => makeCharacter(
  41032. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41033. {
  41034. front: {
  41035. height: math.unit(100, "miles"),
  41036. weight: math.unit(20000, "tons"),
  41037. name: "Front",
  41038. image: {
  41039. source: "./media/characters/cookie/front.svg",
  41040. extra: 1125/1070,
  41041. bottom: 30/1155
  41042. }
  41043. },
  41044. },
  41045. [
  41046. {
  41047. name: "Big",
  41048. height: math.unit(50, "feet")
  41049. },
  41050. {
  41051. name: "Macro",
  41052. height: math.unit(100, "miles"),
  41053. default: true
  41054. },
  41055. {
  41056. name: "Megamacro",
  41057. height: math.unit(90000, "miles")
  41058. },
  41059. ]
  41060. ))
  41061. characterMakers.push(() => makeCharacter(
  41062. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41063. {
  41064. front: {
  41065. height: math.unit(6, "feet"),
  41066. weight: math.unit(145, "lb"),
  41067. name: "Front",
  41068. image: {
  41069. source: "./media/characters/farzian/front.svg",
  41070. extra: 1902/1693,
  41071. bottom: 108/2010
  41072. }
  41073. },
  41074. },
  41075. [
  41076. {
  41077. name: "Macro",
  41078. height: math.unit(500, "feet"),
  41079. default: true
  41080. },
  41081. ]
  41082. ))
  41083. characterMakers.push(() => makeCharacter(
  41084. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41085. {
  41086. front: {
  41087. height: math.unit(3 + 6/12, "feet"),
  41088. weight: math.unit(50, "lb"),
  41089. name: "Front",
  41090. image: {
  41091. source: "./media/characters/kimberly-tilson/front.svg",
  41092. extra: 1400/1322,
  41093. bottom: 36/1436
  41094. }
  41095. },
  41096. back: {
  41097. height: math.unit(3 + 6/12, "feet"),
  41098. weight: math.unit(50, "lb"),
  41099. name: "Back",
  41100. image: {
  41101. source: "./media/characters/kimberly-tilson/back.svg",
  41102. extra: 1370/1307,
  41103. bottom: 20/1390
  41104. }
  41105. },
  41106. },
  41107. [
  41108. {
  41109. name: "Normal",
  41110. height: math.unit(3 + 6/12, "feet"),
  41111. default: true
  41112. },
  41113. ]
  41114. ))
  41115. characterMakers.push(() => makeCharacter(
  41116. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41117. {
  41118. front: {
  41119. height: math.unit(1148, "feet"),
  41120. weight: math.unit(34057, "lb"),
  41121. name: "Front",
  41122. image: {
  41123. source: "./media/characters/harthos/front.svg",
  41124. extra: 1391/1339,
  41125. bottom: 13/1404
  41126. }
  41127. },
  41128. },
  41129. [
  41130. {
  41131. name: "Macro",
  41132. height: math.unit(1148, "feet"),
  41133. default: true
  41134. },
  41135. ]
  41136. ))
  41137. characterMakers.push(() => makeCharacter(
  41138. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41139. {
  41140. front: {
  41141. height: math.unit(15, "feet"),
  41142. name: "Front",
  41143. image: {
  41144. source: "./media/characters/hypatia/front.svg",
  41145. extra: 1653/1591,
  41146. bottom: 79/1732
  41147. }
  41148. },
  41149. },
  41150. [
  41151. {
  41152. name: "Normal",
  41153. height: math.unit(15, "feet")
  41154. },
  41155. {
  41156. name: "Small",
  41157. height: math.unit(300, "feet")
  41158. },
  41159. {
  41160. name: "Macro",
  41161. height: math.unit(2500, "feet"),
  41162. default: true
  41163. },
  41164. {
  41165. name: "Mega Macro",
  41166. height: math.unit(1500, "miles")
  41167. },
  41168. {
  41169. name: "Giga Macro",
  41170. height: math.unit(1.5e6, "miles")
  41171. },
  41172. ]
  41173. ))
  41174. characterMakers.push(() => makeCharacter(
  41175. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41176. {
  41177. front: {
  41178. height: math.unit(6, "feet"),
  41179. weight: math.unit(200, "lb"),
  41180. name: "Front",
  41181. image: {
  41182. source: "./media/characters/wulver/front.svg",
  41183. extra: 1724/1632,
  41184. bottom: 130/1854
  41185. }
  41186. },
  41187. frontNsfw: {
  41188. height: math.unit(6, "feet"),
  41189. weight: math.unit(200, "lb"),
  41190. name: "Front (NSFW)",
  41191. image: {
  41192. source: "./media/characters/wulver/front-nsfw.svg",
  41193. extra: 1724/1632,
  41194. bottom: 130/1854
  41195. }
  41196. },
  41197. },
  41198. [
  41199. {
  41200. name: "Human-Sized",
  41201. height: math.unit(6, "feet")
  41202. },
  41203. {
  41204. name: "Normal",
  41205. height: math.unit(4, "meters"),
  41206. default: true
  41207. },
  41208. {
  41209. name: "Large",
  41210. height: math.unit(6, "m")
  41211. },
  41212. ]
  41213. ))
  41214. characterMakers.push(() => makeCharacter(
  41215. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41216. {
  41217. front: {
  41218. height: math.unit(7, "feet"),
  41219. name: "Front",
  41220. image: {
  41221. source: "./media/characters/maru/front.svg",
  41222. extra: 1595/1570,
  41223. bottom: 0/1595
  41224. }
  41225. },
  41226. },
  41227. [
  41228. {
  41229. name: "Normal",
  41230. height: math.unit(7, "feet"),
  41231. default: true
  41232. },
  41233. {
  41234. name: "Macro",
  41235. height: math.unit(700, "feet")
  41236. },
  41237. {
  41238. name: "Mega Macro",
  41239. height: math.unit(25, "miles")
  41240. },
  41241. ]
  41242. ))
  41243. characterMakers.push(() => makeCharacter(
  41244. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41245. {
  41246. front: {
  41247. height: math.unit(6, "feet"),
  41248. weight: math.unit(170, "lb"),
  41249. name: "Front",
  41250. image: {
  41251. source: "./media/characters/xenon/front.svg",
  41252. extra: 1376/1305,
  41253. bottom: 56/1432
  41254. }
  41255. },
  41256. back: {
  41257. height: math.unit(6, "feet"),
  41258. weight: math.unit(170, "lb"),
  41259. name: "Back",
  41260. image: {
  41261. source: "./media/characters/xenon/back.svg",
  41262. extra: 1328/1259,
  41263. bottom: 95/1423
  41264. }
  41265. },
  41266. maw: {
  41267. height: math.unit(0.52, "feet"),
  41268. name: "Maw",
  41269. image: {
  41270. source: "./media/characters/xenon/maw.svg"
  41271. }
  41272. },
  41273. hand: {
  41274. height: math.unit(0.82, "feet"),
  41275. name: "Hand",
  41276. image: {
  41277. source: "./media/characters/xenon/hand.svg"
  41278. }
  41279. },
  41280. foot: {
  41281. height: math.unit(1.13, "feet"),
  41282. name: "Foot",
  41283. image: {
  41284. source: "./media/characters/xenon/foot.svg"
  41285. }
  41286. },
  41287. },
  41288. [
  41289. {
  41290. name: "Micro",
  41291. height: math.unit(0.8, "inches")
  41292. },
  41293. {
  41294. name: "Normal",
  41295. height: math.unit(6, "feet")
  41296. },
  41297. {
  41298. name: "Macro",
  41299. height: math.unit(50, "feet"),
  41300. default: true
  41301. },
  41302. {
  41303. name: "Macro+",
  41304. height: math.unit(250, "feet")
  41305. },
  41306. {
  41307. name: "Megamacro",
  41308. height: math.unit(1500, "feet")
  41309. },
  41310. ]
  41311. ))
  41312. characterMakers.push(() => makeCharacter(
  41313. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41314. {
  41315. front: {
  41316. height: math.unit(7 + 5/12, "feet"),
  41317. name: "Front",
  41318. image: {
  41319. source: "./media/characters/zane/front.svg",
  41320. extra: 1260/1203,
  41321. bottom: 94/1354
  41322. }
  41323. },
  41324. back: {
  41325. height: math.unit(5.05, "feet"),
  41326. name: "Back",
  41327. image: {
  41328. source: "./media/characters/zane/back.svg",
  41329. extra: 893/829,
  41330. bottom: 30/923
  41331. }
  41332. },
  41333. werewolf: {
  41334. height: math.unit(11, "feet"),
  41335. name: "Werewolf",
  41336. image: {
  41337. source: "./media/characters/zane/werewolf.svg",
  41338. extra: 1383/1323,
  41339. bottom: 89/1472
  41340. }
  41341. },
  41342. foot: {
  41343. height: math.unit(1.46, "feet"),
  41344. name: "Foot",
  41345. image: {
  41346. source: "./media/characters/zane/foot.svg"
  41347. }
  41348. },
  41349. footFront: {
  41350. height: math.unit(0.784, "feet"),
  41351. name: "Foot (Front)",
  41352. image: {
  41353. source: "./media/characters/zane/foot-front.svg"
  41354. }
  41355. },
  41356. dick: {
  41357. height: math.unit(1.95, "feet"),
  41358. name: "Dick",
  41359. image: {
  41360. source: "./media/characters/zane/dick.svg"
  41361. }
  41362. },
  41363. dickWerewolf: {
  41364. height: math.unit(3.77, "feet"),
  41365. name: "Dick (Werewolf)",
  41366. image: {
  41367. source: "./media/characters/zane/dick.svg"
  41368. }
  41369. },
  41370. },
  41371. [
  41372. {
  41373. name: "Normal",
  41374. height: math.unit(7 + 5/12, "feet"),
  41375. default: true
  41376. },
  41377. ]
  41378. ))
  41379. characterMakers.push(() => makeCharacter(
  41380. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41381. {
  41382. front: {
  41383. height: math.unit(6 + 2/12, "feet"),
  41384. weight: math.unit(284, "lb"),
  41385. name: "Front",
  41386. image: {
  41387. source: "./media/characters/benni-desparque/front.svg",
  41388. extra: 1353/1126,
  41389. bottom: 69/1422
  41390. }
  41391. },
  41392. },
  41393. [
  41394. {
  41395. name: "Civilian",
  41396. height: math.unit(6 + 2/12, "feet")
  41397. },
  41398. {
  41399. name: "Normal",
  41400. height: math.unit(98, "feet"),
  41401. default: true
  41402. },
  41403. {
  41404. name: "Kaiju Fighter",
  41405. height: math.unit(268, "feet")
  41406. },
  41407. ]
  41408. ))
  41409. characterMakers.push(() => makeCharacter(
  41410. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41411. {
  41412. front: {
  41413. height: math.unit(5, "feet"),
  41414. weight: math.unit(105, "lb"),
  41415. name: "Front",
  41416. image: {
  41417. source: "./media/characters/maxine/front.svg",
  41418. extra: 1386/1250,
  41419. bottom: 71/1457
  41420. }
  41421. },
  41422. },
  41423. [
  41424. {
  41425. name: "Normal",
  41426. height: math.unit(5, "feet"),
  41427. default: true
  41428. },
  41429. ]
  41430. ))
  41431. characterMakers.push(() => makeCharacter(
  41432. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41433. {
  41434. front: {
  41435. height: math.unit(11 + 7/12, "feet"),
  41436. weight: math.unit(9576, "lb"),
  41437. name: "Front",
  41438. image: {
  41439. source: "./media/characters/scaly/front.svg",
  41440. extra: 888/867,
  41441. bottom: 36/924
  41442. }
  41443. },
  41444. },
  41445. [
  41446. {
  41447. name: "Normal",
  41448. height: math.unit(11 + 7/12, "feet"),
  41449. default: true
  41450. },
  41451. ]
  41452. ))
  41453. characterMakers.push(() => makeCharacter(
  41454. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41455. {
  41456. front: {
  41457. height: math.unit(6 + 3/12, "feet"),
  41458. name: "Front",
  41459. image: {
  41460. source: "./media/characters/saelria/front.svg",
  41461. extra: 1243/1138,
  41462. bottom: 46/1289
  41463. }
  41464. },
  41465. },
  41466. [
  41467. {
  41468. name: "Micro",
  41469. height: math.unit(6, "inches"),
  41470. },
  41471. {
  41472. name: "Normal",
  41473. height: math.unit(6 + 3/12, "feet"),
  41474. default: true
  41475. },
  41476. {
  41477. name: "Macro",
  41478. height: math.unit(25, "feet")
  41479. },
  41480. ]
  41481. ))
  41482. characterMakers.push(() => makeCharacter(
  41483. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41484. {
  41485. front: {
  41486. height: math.unit(80, "meters"),
  41487. weight: math.unit(7000, "tonnes"),
  41488. name: "Front",
  41489. image: {
  41490. source: "./media/characters/tef/front.svg",
  41491. extra: 2036/1991,
  41492. bottom: 54/2090
  41493. }
  41494. },
  41495. back: {
  41496. height: math.unit(80, "meters"),
  41497. weight: math.unit(7000, "tonnes"),
  41498. name: "Back",
  41499. image: {
  41500. source: "./media/characters/tef/back.svg",
  41501. extra: 2036/1991,
  41502. bottom: 54/2090
  41503. }
  41504. },
  41505. },
  41506. [
  41507. {
  41508. name: "Macro",
  41509. height: math.unit(80, "meters"),
  41510. default: true
  41511. },
  41512. ]
  41513. ))
  41514. characterMakers.push(() => makeCharacter(
  41515. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41516. {
  41517. front: {
  41518. height: math.unit(13, "feet"),
  41519. weight: math.unit(6, "tons"),
  41520. name: "Front",
  41521. image: {
  41522. source: "./media/characters/rover/front.svg",
  41523. extra: 1233/1156,
  41524. bottom: 50/1283
  41525. }
  41526. },
  41527. back: {
  41528. height: math.unit(13, "feet"),
  41529. weight: math.unit(6, "tons"),
  41530. name: "Back",
  41531. image: {
  41532. source: "./media/characters/rover/back.svg",
  41533. extra: 1327/1258,
  41534. bottom: 39/1366
  41535. }
  41536. },
  41537. },
  41538. [
  41539. {
  41540. name: "Normal",
  41541. height: math.unit(13, "feet"),
  41542. default: true
  41543. },
  41544. {
  41545. name: "Macro",
  41546. height: math.unit(1300, "feet")
  41547. },
  41548. {
  41549. name: "Megamacro",
  41550. height: math.unit(1300, "miles")
  41551. },
  41552. {
  41553. name: "Gigamacro",
  41554. height: math.unit(1300000, "miles")
  41555. },
  41556. ]
  41557. ))
  41558. characterMakers.push(() => makeCharacter(
  41559. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41560. {
  41561. front: {
  41562. height: math.unit(6, "feet"),
  41563. weight: math.unit(150, "lb"),
  41564. name: "Front",
  41565. image: {
  41566. source: "./media/characters/ariz/front.svg",
  41567. extra: 1401/1346,
  41568. bottom: 5/1406
  41569. }
  41570. },
  41571. },
  41572. [
  41573. {
  41574. name: "Normal",
  41575. height: math.unit(10, "feet"),
  41576. default: true
  41577. },
  41578. ]
  41579. ))
  41580. characterMakers.push(() => makeCharacter(
  41581. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41582. {
  41583. front: {
  41584. height: math.unit(6, "feet"),
  41585. weight: math.unit(140, "lb"),
  41586. name: "Front",
  41587. image: {
  41588. source: "./media/characters/sigrun/front.svg",
  41589. extra: 1418/1359,
  41590. bottom: 27/1445
  41591. }
  41592. },
  41593. },
  41594. [
  41595. {
  41596. name: "Macro",
  41597. height: math.unit(35, "feet"),
  41598. default: true
  41599. },
  41600. ]
  41601. ))
  41602. characterMakers.push(() => makeCharacter(
  41603. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41604. {
  41605. front: {
  41606. height: math.unit(6, "feet"),
  41607. weight: math.unit(150, "lb"),
  41608. name: "Front",
  41609. image: {
  41610. source: "./media/characters/numin/front.svg",
  41611. extra: 1433/1388,
  41612. bottom: 12/1445
  41613. }
  41614. },
  41615. },
  41616. [
  41617. {
  41618. name: "Macro",
  41619. height: math.unit(21.5, "km"),
  41620. default: true
  41621. },
  41622. ]
  41623. ))
  41624. characterMakers.push(() => makeCharacter(
  41625. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41626. {
  41627. front: {
  41628. height: math.unit(6, "feet"),
  41629. weight: math.unit(463, "lb"),
  41630. name: "Front",
  41631. image: {
  41632. source: "./media/characters/melwa/front.svg",
  41633. extra: 1307/1248,
  41634. bottom: 93/1400
  41635. }
  41636. },
  41637. },
  41638. [
  41639. {
  41640. name: "Macro",
  41641. height: math.unit(50, "meters"),
  41642. default: true
  41643. },
  41644. ]
  41645. ))
  41646. characterMakers.push(() => makeCharacter(
  41647. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41648. {
  41649. front: {
  41650. height: math.unit(325, "feet"),
  41651. name: "Front",
  41652. image: {
  41653. source: "./media/characters/zorkaiju/front.svg",
  41654. extra: 1955/1814,
  41655. bottom: 40/1995
  41656. }
  41657. },
  41658. frontExtended: {
  41659. height: math.unit(325, "feet"),
  41660. name: "Front (Extended)",
  41661. image: {
  41662. source: "./media/characters/zorkaiju/front-extended.svg",
  41663. extra: 1955/1814,
  41664. bottom: 40/1995
  41665. }
  41666. },
  41667. side: {
  41668. height: math.unit(325, "feet"),
  41669. name: "Side",
  41670. image: {
  41671. source: "./media/characters/zorkaiju/side.svg",
  41672. extra: 1495/1396,
  41673. bottom: 17/1512
  41674. }
  41675. },
  41676. sideExtended: {
  41677. height: math.unit(325, "feet"),
  41678. name: "Side (Extended)",
  41679. image: {
  41680. source: "./media/characters/zorkaiju/side-extended.svg",
  41681. extra: 1495/1396,
  41682. bottom: 17/1512
  41683. }
  41684. },
  41685. back: {
  41686. height: math.unit(325, "feet"),
  41687. name: "Back",
  41688. image: {
  41689. source: "./media/characters/zorkaiju/back.svg",
  41690. extra: 1959/1821,
  41691. bottom: 31/1990
  41692. }
  41693. },
  41694. backExtended: {
  41695. height: math.unit(325, "feet"),
  41696. name: "Back (Extended)",
  41697. image: {
  41698. source: "./media/characters/zorkaiju/back-extended.svg",
  41699. extra: 1959/1821,
  41700. bottom: 31/1990
  41701. }
  41702. },
  41703. hand: {
  41704. height: math.unit(58.4, "feet"),
  41705. name: "Hand",
  41706. image: {
  41707. source: "./media/characters/zorkaiju/hand.svg"
  41708. }
  41709. },
  41710. handExtended: {
  41711. height: math.unit(61.4, "feet"),
  41712. name: "Hand (Extended)",
  41713. image: {
  41714. source: "./media/characters/zorkaiju/hand-extended.svg"
  41715. }
  41716. },
  41717. foot: {
  41718. height: math.unit(95, "feet"),
  41719. name: "Foot",
  41720. image: {
  41721. source: "./media/characters/zorkaiju/foot.svg"
  41722. }
  41723. },
  41724. leftArm: {
  41725. height: math.unit(59, "feet"),
  41726. name: "Left Arm",
  41727. image: {
  41728. source: "./media/characters/zorkaiju/left-arm.svg"
  41729. }
  41730. },
  41731. rightArm: {
  41732. height: math.unit(59, "feet"),
  41733. name: "Right Arm",
  41734. image: {
  41735. source: "./media/characters/zorkaiju/right-arm.svg"
  41736. }
  41737. },
  41738. leftArmExtended: {
  41739. height: math.unit(59 * 1.033546, "feet"),
  41740. name: "Left Arm (Extended)",
  41741. image: {
  41742. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  41743. }
  41744. },
  41745. rightArmExtended: {
  41746. height: math.unit(59 * 1.0496, "feet"),
  41747. name: "Right Arm (Extended)",
  41748. image: {
  41749. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  41750. }
  41751. },
  41752. tail: {
  41753. height: math.unit(104, "feet"),
  41754. name: "Tail",
  41755. image: {
  41756. source: "./media/characters/zorkaiju/tail.svg"
  41757. }
  41758. },
  41759. tailExtended: {
  41760. height: math.unit(104, "feet"),
  41761. name: "Tail (Extended)",
  41762. image: {
  41763. source: "./media/characters/zorkaiju/tail-extended.svg"
  41764. }
  41765. },
  41766. tailBottom: {
  41767. height: math.unit(104, "feet"),
  41768. name: "Tail Bottom",
  41769. image: {
  41770. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41771. }
  41772. },
  41773. crystal: {
  41774. height: math.unit(27.54, "feet"),
  41775. name: "Crystal",
  41776. image: {
  41777. source: "./media/characters/zorkaiju/crystal.svg"
  41778. }
  41779. },
  41780. },
  41781. [
  41782. {
  41783. name: "Kaiju",
  41784. height: math.unit(325, "feet"),
  41785. default: true
  41786. },
  41787. ]
  41788. ))
  41789. characterMakers.push(() => makeCharacter(
  41790. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41791. {
  41792. front: {
  41793. height: math.unit(6 + 1/12, "feet"),
  41794. weight: math.unit(115, "lb"),
  41795. name: "Front",
  41796. image: {
  41797. source: "./media/characters/bailey-belfry/front.svg",
  41798. extra: 1240/1121,
  41799. bottom: 101/1341
  41800. }
  41801. },
  41802. },
  41803. [
  41804. {
  41805. name: "Normal",
  41806. height: math.unit(6 + 1/12, "feet"),
  41807. default: true
  41808. },
  41809. ]
  41810. ))
  41811. characterMakers.push(() => makeCharacter(
  41812. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41813. {
  41814. side: {
  41815. height: math.unit(4, "meters"),
  41816. weight: math.unit(250, "kg"),
  41817. name: "Side",
  41818. image: {
  41819. source: "./media/characters/blacky/side.svg",
  41820. extra: 1027/919,
  41821. bottom: 43/1070
  41822. }
  41823. },
  41824. maw: {
  41825. height: math.unit(1, "meters"),
  41826. name: "Maw",
  41827. image: {
  41828. source: "./media/characters/blacky/maw.svg"
  41829. }
  41830. },
  41831. paw: {
  41832. height: math.unit(1, "meters"),
  41833. name: "Paw",
  41834. image: {
  41835. source: "./media/characters/blacky/paw.svg"
  41836. }
  41837. },
  41838. },
  41839. [
  41840. {
  41841. name: "Normal",
  41842. height: math.unit(4, "meters"),
  41843. default: true
  41844. },
  41845. ]
  41846. ))
  41847. characterMakers.push(() => makeCharacter(
  41848. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41849. {
  41850. front: {
  41851. height: math.unit(170, "cm"),
  41852. weight: math.unit(66, "kg"),
  41853. name: "Front",
  41854. image: {
  41855. source: "./media/characters/thux-ei/front.svg",
  41856. extra: 1109/1011,
  41857. bottom: 8/1117
  41858. }
  41859. },
  41860. },
  41861. [
  41862. {
  41863. name: "Normal",
  41864. height: math.unit(170, "cm"),
  41865. default: true
  41866. },
  41867. ]
  41868. ))
  41869. characterMakers.push(() => makeCharacter(
  41870. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41871. {
  41872. front: {
  41873. height: math.unit(5, "feet"),
  41874. weight: math.unit(120, "lb"),
  41875. name: "Front",
  41876. image: {
  41877. source: "./media/characters/roxanne-voltaire/front.svg",
  41878. extra: 1901/1779,
  41879. bottom: 53/1954
  41880. }
  41881. },
  41882. },
  41883. [
  41884. {
  41885. name: "Normal",
  41886. height: math.unit(5, "feet"),
  41887. default: true
  41888. },
  41889. {
  41890. name: "Giant",
  41891. height: math.unit(50, "feet")
  41892. },
  41893. {
  41894. name: "Titan",
  41895. height: math.unit(500, "feet")
  41896. },
  41897. {
  41898. name: "Macro",
  41899. height: math.unit(5000, "feet")
  41900. },
  41901. {
  41902. name: "Megamacro",
  41903. height: math.unit(50000, "feet")
  41904. },
  41905. {
  41906. name: "Gigamacro",
  41907. height: math.unit(500000, "feet")
  41908. },
  41909. {
  41910. name: "Teramacro",
  41911. height: math.unit(5e6, "feet")
  41912. },
  41913. ]
  41914. ))
  41915. characterMakers.push(() => makeCharacter(
  41916. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41917. {
  41918. front: {
  41919. height: math.unit(6 + 2/12, "feet"),
  41920. name: "Front",
  41921. image: {
  41922. source: "./media/characters/squeaks/front.svg",
  41923. extra: 1823/1768,
  41924. bottom: 138/1961
  41925. }
  41926. },
  41927. },
  41928. [
  41929. {
  41930. name: "Micro",
  41931. height: math.unit(0.5, "inches")
  41932. },
  41933. {
  41934. name: "Normal",
  41935. height: math.unit(6 + 2/12, "feet"),
  41936. default: true
  41937. },
  41938. {
  41939. name: "Macro",
  41940. height: math.unit(600, "feet")
  41941. },
  41942. ]
  41943. ))
  41944. characterMakers.push(() => makeCharacter(
  41945. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41946. {
  41947. front: {
  41948. height: math.unit(1.72, "meters"),
  41949. name: "Front",
  41950. image: {
  41951. source: "./media/characters/archinger/front.svg",
  41952. extra: 1861/1675,
  41953. bottom: 125/1986
  41954. }
  41955. },
  41956. back: {
  41957. height: math.unit(1.72, "meters"),
  41958. name: "Back",
  41959. image: {
  41960. source: "./media/characters/archinger/back.svg",
  41961. extra: 1844/1701,
  41962. bottom: 104/1948
  41963. }
  41964. },
  41965. cock: {
  41966. height: math.unit(0.59, "feet"),
  41967. name: "Cock",
  41968. image: {
  41969. source: "./media/characters/archinger/cock.svg"
  41970. }
  41971. },
  41972. },
  41973. [
  41974. {
  41975. name: "Normal",
  41976. height: math.unit(1.72, "meters"),
  41977. default: true
  41978. },
  41979. {
  41980. name: "Macro",
  41981. height: math.unit(84, "meters")
  41982. },
  41983. {
  41984. name: "Macro+",
  41985. height: math.unit(112, "meters")
  41986. },
  41987. {
  41988. name: "Macro++",
  41989. height: math.unit(960, "meters")
  41990. },
  41991. {
  41992. name: "Macro+++",
  41993. height: math.unit(4, "km")
  41994. },
  41995. {
  41996. name: "Macro++++",
  41997. height: math.unit(48, "km")
  41998. },
  41999. {
  42000. name: "Macro+++++",
  42001. height: math.unit(4500, "km")
  42002. },
  42003. ]
  42004. ))
  42005. characterMakers.push(() => makeCharacter(
  42006. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42007. {
  42008. front: {
  42009. height: math.unit(5 + 5/12, "feet"),
  42010. name: "Front",
  42011. image: {
  42012. source: "./media/characters/alsnapz/front.svg",
  42013. extra: 1157/1065,
  42014. bottom: 42/1199
  42015. }
  42016. },
  42017. },
  42018. [
  42019. {
  42020. name: "Normal",
  42021. height: math.unit(5 + 5/12, "feet"),
  42022. default: true
  42023. },
  42024. ]
  42025. ))
  42026. characterMakers.push(() => makeCharacter(
  42027. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42028. {
  42029. side: {
  42030. height: math.unit(3.2, "earths"),
  42031. name: "Side",
  42032. image: {
  42033. source: "./media/characters/mag/side.svg",
  42034. extra: 1331/1008,
  42035. bottom: 52/1383
  42036. }
  42037. },
  42038. wing: {
  42039. height: math.unit(1.94, "earths"),
  42040. name: "Wing",
  42041. image: {
  42042. source: "./media/characters/mag/wing.svg"
  42043. }
  42044. },
  42045. dick: {
  42046. height: math.unit(1.8, "earths"),
  42047. name: "Dick",
  42048. image: {
  42049. source: "./media/characters/mag/dick.svg"
  42050. }
  42051. },
  42052. ass: {
  42053. height: math.unit(1.33, "earths"),
  42054. name: "Ass",
  42055. image: {
  42056. source: "./media/characters/mag/ass.svg"
  42057. }
  42058. },
  42059. head: {
  42060. height: math.unit(1.1, "earths"),
  42061. name: "Head",
  42062. image: {
  42063. source: "./media/characters/mag/head.svg"
  42064. }
  42065. },
  42066. maw: {
  42067. height: math.unit(1.62, "earths"),
  42068. name: "Maw",
  42069. image: {
  42070. source: "./media/characters/mag/maw.svg"
  42071. }
  42072. },
  42073. },
  42074. [
  42075. {
  42076. name: "Small",
  42077. height: math.unit(162, "feet")
  42078. },
  42079. {
  42080. name: "Normal",
  42081. height: math.unit(3.2, "earths"),
  42082. default: true
  42083. },
  42084. ]
  42085. ))
  42086. characterMakers.push(() => makeCharacter(
  42087. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42088. {
  42089. front: {
  42090. height: math.unit(512, "feet"),
  42091. weight: math.unit(63509, "tonnes"),
  42092. name: "Front",
  42093. image: {
  42094. source: "./media/characters/vorrel-harroc/front.svg",
  42095. extra: 1075/1063,
  42096. bottom: 62/1137
  42097. }
  42098. },
  42099. },
  42100. [
  42101. {
  42102. name: "Normal",
  42103. height: math.unit(10, "feet")
  42104. },
  42105. {
  42106. name: "Macro",
  42107. height: math.unit(512, "feet"),
  42108. default: true
  42109. },
  42110. {
  42111. name: "Megamacro",
  42112. height: math.unit(256, "miles")
  42113. },
  42114. {
  42115. name: "Gigamacro",
  42116. height: math.unit(4096, "miles")
  42117. },
  42118. ]
  42119. ))
  42120. characterMakers.push(() => makeCharacter(
  42121. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42122. {
  42123. side: {
  42124. height: math.unit(50, "feet"),
  42125. name: "Side",
  42126. image: {
  42127. source: "./media/characters/froimar/side.svg",
  42128. extra: 855/638,
  42129. bottom: 99/954
  42130. }
  42131. },
  42132. },
  42133. [
  42134. {
  42135. name: "Macro",
  42136. height: math.unit(50, "feet"),
  42137. default: true
  42138. },
  42139. ]
  42140. ))
  42141. characterMakers.push(() => makeCharacter(
  42142. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42143. {
  42144. front: {
  42145. height: math.unit(210, "miles"),
  42146. name: "Front",
  42147. image: {
  42148. source: "./media/characters/timothy/front.svg",
  42149. extra: 1007/943,
  42150. bottom: 62/1069
  42151. }
  42152. },
  42153. frontSkirt: {
  42154. height: math.unit(210, "miles"),
  42155. name: "Front (Skirt)",
  42156. image: {
  42157. source: "./media/characters/timothy/front-skirt.svg",
  42158. extra: 1007/943,
  42159. bottom: 62/1069
  42160. }
  42161. },
  42162. frontCoat: {
  42163. height: math.unit(210, "miles"),
  42164. name: "Front (Coat)",
  42165. image: {
  42166. source: "./media/characters/timothy/front-coat.svg",
  42167. extra: 1007/943,
  42168. bottom: 62/1069
  42169. }
  42170. },
  42171. },
  42172. [
  42173. {
  42174. name: "Macro",
  42175. height: math.unit(210, "miles"),
  42176. default: true
  42177. },
  42178. {
  42179. name: "Megamacro",
  42180. height: math.unit(210000, "miles")
  42181. },
  42182. ]
  42183. ))
  42184. characterMakers.push(() => makeCharacter(
  42185. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42186. {
  42187. front: {
  42188. height: math.unit(188, "feet"),
  42189. name: "Front",
  42190. image: {
  42191. source: "./media/characters/pyotr/front.svg",
  42192. extra: 1912/1826,
  42193. bottom: 18/1930
  42194. }
  42195. },
  42196. },
  42197. [
  42198. {
  42199. name: "Macro",
  42200. height: math.unit(188, "feet"),
  42201. default: true
  42202. },
  42203. {
  42204. name: "Megamacro",
  42205. height: math.unit(8, "miles")
  42206. },
  42207. ]
  42208. ))
  42209. characterMakers.push(() => makeCharacter(
  42210. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42211. {
  42212. side: {
  42213. height: math.unit(10, "feet"),
  42214. weight: math.unit(4500, "lb"),
  42215. name: "Side",
  42216. image: {
  42217. source: "./media/characters/ackart/side.svg",
  42218. extra: 1776/1668,
  42219. bottom: 116/1892
  42220. }
  42221. },
  42222. },
  42223. [
  42224. {
  42225. name: "Normal",
  42226. height: math.unit(10, "feet"),
  42227. default: true
  42228. },
  42229. ]
  42230. ))
  42231. characterMakers.push(() => makeCharacter(
  42232. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42233. {
  42234. side: {
  42235. height: math.unit(21, "feet"),
  42236. name: "Side",
  42237. image: {
  42238. source: "./media/characters/nolow/side.svg",
  42239. extra: 1484/1434,
  42240. bottom: 85/1569
  42241. }
  42242. },
  42243. sideErect: {
  42244. height: math.unit(21, "feet"),
  42245. name: "Side-erect",
  42246. image: {
  42247. source: "./media/characters/nolow/side-erect.svg",
  42248. extra: 1484/1434,
  42249. bottom: 85/1569
  42250. }
  42251. },
  42252. },
  42253. [
  42254. {
  42255. name: "Regular",
  42256. height: math.unit(12, "feet")
  42257. },
  42258. {
  42259. name: "Big Chee",
  42260. height: math.unit(21, "feet"),
  42261. default: true
  42262. },
  42263. ]
  42264. ))
  42265. characterMakers.push(() => makeCharacter(
  42266. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42267. {
  42268. front: {
  42269. height: math.unit(7, "feet"),
  42270. weight: math.unit(250, "lb"),
  42271. name: "Front",
  42272. image: {
  42273. source: "./media/characters/nines/front.svg",
  42274. extra: 1741/1607,
  42275. bottom: 41/1782
  42276. }
  42277. },
  42278. side: {
  42279. height: math.unit(7, "feet"),
  42280. weight: math.unit(250, "lb"),
  42281. name: "Side",
  42282. image: {
  42283. source: "./media/characters/nines/side.svg",
  42284. extra: 1854/1735,
  42285. bottom: 93/1947
  42286. }
  42287. },
  42288. back: {
  42289. height: math.unit(7, "feet"),
  42290. weight: math.unit(250, "lb"),
  42291. name: "Back",
  42292. image: {
  42293. source: "./media/characters/nines/back.svg",
  42294. extra: 1748/1615,
  42295. bottom: 20/1768
  42296. }
  42297. },
  42298. },
  42299. [
  42300. {
  42301. name: "Megamacro",
  42302. height: math.unit(99, "km"),
  42303. default: true
  42304. },
  42305. ]
  42306. ))
  42307. characterMakers.push(() => makeCharacter(
  42308. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42309. {
  42310. front: {
  42311. height: math.unit(5 + 10/12, "feet"),
  42312. weight: math.unit(210, "lb"),
  42313. name: "Front",
  42314. image: {
  42315. source: "./media/characters/zenith/front.svg",
  42316. extra: 1531/1452,
  42317. bottom: 198/1729
  42318. }
  42319. },
  42320. back: {
  42321. height: math.unit(5 + 10/12, "feet"),
  42322. weight: math.unit(210, "lb"),
  42323. name: "Back",
  42324. image: {
  42325. source: "./media/characters/zenith/back.svg",
  42326. extra: 1571/1487,
  42327. bottom: 75/1646
  42328. }
  42329. },
  42330. },
  42331. [
  42332. {
  42333. name: "Normal",
  42334. height: math.unit(5 + 10/12, "feet"),
  42335. default: true
  42336. }
  42337. ]
  42338. ))
  42339. characterMakers.push(() => makeCharacter(
  42340. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42341. {
  42342. front: {
  42343. height: math.unit(4, "feet"),
  42344. weight: math.unit(60, "lb"),
  42345. name: "Front",
  42346. image: {
  42347. source: "./media/characters/jasper/front.svg",
  42348. extra: 1450/1379,
  42349. bottom: 19/1469
  42350. }
  42351. },
  42352. },
  42353. [
  42354. {
  42355. name: "Normal",
  42356. height: math.unit(4, "feet"),
  42357. default: true
  42358. },
  42359. ]
  42360. ))
  42361. characterMakers.push(() => makeCharacter(
  42362. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42363. {
  42364. front: {
  42365. height: math.unit(6 + 5/12, "feet"),
  42366. weight: math.unit(290, "lb"),
  42367. name: "Front",
  42368. image: {
  42369. source: "./media/characters/tiberius-thyben/front.svg",
  42370. extra: 757/739,
  42371. bottom: 39/796
  42372. }
  42373. },
  42374. },
  42375. [
  42376. {
  42377. name: "Micro",
  42378. height: math.unit(1.5, "inches")
  42379. },
  42380. {
  42381. name: "Normal",
  42382. height: math.unit(6 + 5/12, "feet"),
  42383. default: true
  42384. },
  42385. {
  42386. name: "Macro",
  42387. height: math.unit(300, "feet")
  42388. },
  42389. ]
  42390. ))
  42391. characterMakers.push(() => makeCharacter(
  42392. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42393. {
  42394. front: {
  42395. height: math.unit(5 + 6/12, "feet"),
  42396. weight: math.unit(60, "kg"),
  42397. name: "Front",
  42398. image: {
  42399. source: "./media/characters/sabre/front.svg",
  42400. extra: 738/671,
  42401. bottom: 27/765
  42402. }
  42403. },
  42404. },
  42405. [
  42406. {
  42407. name: "Teeny",
  42408. height: math.unit(2, "inches")
  42409. },
  42410. {
  42411. name: "Smol",
  42412. height: math.unit(8, "inches")
  42413. },
  42414. {
  42415. name: "Normal",
  42416. height: math.unit(5 + 6/12, "feet"),
  42417. default: true
  42418. },
  42419. {
  42420. name: "Mini-Macro",
  42421. height: math.unit(15, "feet")
  42422. },
  42423. {
  42424. name: "Macro",
  42425. height: math.unit(50, "feet")
  42426. },
  42427. ]
  42428. ))
  42429. characterMakers.push(() => makeCharacter(
  42430. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42431. {
  42432. front: {
  42433. height: math.unit(6 + 4/12, "feet"),
  42434. weight: math.unit(170, "lb"),
  42435. name: "Front",
  42436. image: {
  42437. source: "./media/characters/charlie/front.svg",
  42438. extra: 1348/1228,
  42439. bottom: 15/1363
  42440. }
  42441. },
  42442. },
  42443. [
  42444. {
  42445. name: "Macro",
  42446. height: math.unit(1700, "meters"),
  42447. default: true
  42448. },
  42449. {
  42450. name: "MegaMacro",
  42451. height: math.unit(20400, "meters")
  42452. },
  42453. ]
  42454. ))
  42455. characterMakers.push(() => makeCharacter(
  42456. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42457. {
  42458. front: {
  42459. height: math.unit(6 + 3/12, "feet"),
  42460. weight: math.unit(185, "lb"),
  42461. name: "Front",
  42462. image: {
  42463. source: "./media/characters/susan-grant/front.svg",
  42464. extra: 1351/1327,
  42465. bottom: 26/1377
  42466. }
  42467. },
  42468. },
  42469. [
  42470. {
  42471. name: "Normal",
  42472. height: math.unit(6 + 3/12, "feet"),
  42473. default: true
  42474. },
  42475. {
  42476. name: "Macro",
  42477. height: math.unit(225, "feet")
  42478. },
  42479. {
  42480. name: "Macro+",
  42481. height: math.unit(900, "feet")
  42482. },
  42483. {
  42484. name: "MegaMacro",
  42485. height: math.unit(14400, "feet")
  42486. },
  42487. ]
  42488. ))
  42489. characterMakers.push(() => makeCharacter(
  42490. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42491. {
  42492. front: {
  42493. height: math.unit(5 + 4/12, "feet"),
  42494. weight: math.unit(110, "lb"),
  42495. name: "Front",
  42496. image: {
  42497. source: "./media/characters/axel-isanov/front.svg",
  42498. extra: 1096/1065,
  42499. bottom: 13/1109
  42500. }
  42501. },
  42502. },
  42503. [
  42504. {
  42505. name: "Normal",
  42506. height: math.unit(5 + 4/12, "feet"),
  42507. default: true
  42508. },
  42509. ]
  42510. ))
  42511. characterMakers.push(() => makeCharacter(
  42512. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42513. {
  42514. front: {
  42515. height: math.unit(9, "feet"),
  42516. weight: math.unit(467, "lb"),
  42517. name: "Front",
  42518. image: {
  42519. source: "./media/characters/necahual/front.svg",
  42520. extra: 920/873,
  42521. bottom: 26/946
  42522. }
  42523. },
  42524. back: {
  42525. height: math.unit(9, "feet"),
  42526. weight: math.unit(467, "lb"),
  42527. name: "Back",
  42528. image: {
  42529. source: "./media/characters/necahual/back.svg",
  42530. extra: 930/884,
  42531. bottom: 16/946
  42532. }
  42533. },
  42534. frontUnderwear: {
  42535. height: math.unit(9, "feet"),
  42536. weight: math.unit(467, "lb"),
  42537. name: "Front (Underwear)",
  42538. image: {
  42539. source: "./media/characters/necahual/front-underwear.svg",
  42540. extra: 920/873,
  42541. bottom: 26/946
  42542. }
  42543. },
  42544. frontDressed: {
  42545. height: math.unit(9, "feet"),
  42546. weight: math.unit(467, "lb"),
  42547. name: "Front (Dressed)",
  42548. image: {
  42549. source: "./media/characters/necahual/front-dressed.svg",
  42550. extra: 920/873,
  42551. bottom: 26/946
  42552. }
  42553. },
  42554. },
  42555. [
  42556. {
  42557. name: "Comprsesed",
  42558. height: math.unit(9, "feet")
  42559. },
  42560. {
  42561. name: "Natural",
  42562. height: math.unit(15, "feet"),
  42563. default: true
  42564. },
  42565. {
  42566. name: "Boosted",
  42567. height: math.unit(50, "feet")
  42568. },
  42569. {
  42570. name: "Boosted+",
  42571. height: math.unit(150, "feet")
  42572. },
  42573. {
  42574. name: "Max",
  42575. height: math.unit(500, "feet")
  42576. },
  42577. ]
  42578. ))
  42579. characterMakers.push(() => makeCharacter(
  42580. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42581. {
  42582. front: {
  42583. height: math.unit(22 + 1/12, "feet"),
  42584. weight: math.unit(3200, "lb"),
  42585. name: "Front",
  42586. image: {
  42587. source: "./media/characters/theo-acacia/front.svg",
  42588. extra: 1796/1741,
  42589. bottom: 83/1879
  42590. }
  42591. },
  42592. frontUnderwear: {
  42593. height: math.unit(22 + 1/12, "feet"),
  42594. weight: math.unit(3200, "lb"),
  42595. name: "Front (Underwear)",
  42596. image: {
  42597. source: "./media/characters/theo-acacia/front-underwear.svg",
  42598. extra: 1796/1741,
  42599. bottom: 83/1879
  42600. }
  42601. },
  42602. frontNude: {
  42603. height: math.unit(22 + 1/12, "feet"),
  42604. weight: math.unit(3200, "lb"),
  42605. name: "Front (Nude)",
  42606. image: {
  42607. source: "./media/characters/theo-acacia/front-nude.svg",
  42608. extra: 1796/1741,
  42609. bottom: 83/1879
  42610. }
  42611. },
  42612. },
  42613. [
  42614. {
  42615. name: "Normal",
  42616. height: math.unit(22 + 1/12, "feet"),
  42617. default: true
  42618. },
  42619. ]
  42620. ))
  42621. characterMakers.push(() => makeCharacter(
  42622. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42623. {
  42624. front: {
  42625. height: math.unit(20, "feet"),
  42626. name: "Front",
  42627. image: {
  42628. source: "./media/characters/astra/front.svg",
  42629. extra: 1850/1714,
  42630. bottom: 106/1956
  42631. }
  42632. },
  42633. frontUndressed: {
  42634. height: math.unit(20, "feet"),
  42635. name: "Front (Undressed)",
  42636. image: {
  42637. source: "./media/characters/astra/front-undressed.svg",
  42638. extra: 1926/1749,
  42639. bottom: 0/1926
  42640. }
  42641. },
  42642. hand: {
  42643. height: math.unit(1.53, "feet"),
  42644. name: "Hand",
  42645. image: {
  42646. source: "./media/characters/astra/hand.svg"
  42647. }
  42648. },
  42649. paw: {
  42650. height: math.unit(1.53, "feet"),
  42651. name: "Paw",
  42652. image: {
  42653. source: "./media/characters/astra/paw.svg"
  42654. }
  42655. },
  42656. },
  42657. [
  42658. {
  42659. name: "Smallest",
  42660. height: math.unit(20, "feet")
  42661. },
  42662. {
  42663. name: "Normal",
  42664. height: math.unit(1e9, "miles"),
  42665. default: true
  42666. },
  42667. {
  42668. name: "Larger",
  42669. height: math.unit(5, "multiverses")
  42670. },
  42671. {
  42672. name: "Largest",
  42673. height: math.unit(1e9, "multiverses")
  42674. },
  42675. ]
  42676. ))
  42677. characterMakers.push(() => makeCharacter(
  42678. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42679. {
  42680. front: {
  42681. height: math.unit(8, "feet"),
  42682. name: "Front",
  42683. image: {
  42684. source: "./media/characters/breanna/front.svg",
  42685. extra: 1912/1632,
  42686. bottom: 33/1945
  42687. }
  42688. },
  42689. },
  42690. [
  42691. {
  42692. name: "Smallest",
  42693. height: math.unit(8, "feet")
  42694. },
  42695. {
  42696. name: "Normal",
  42697. height: math.unit(1, "mile"),
  42698. default: true
  42699. },
  42700. {
  42701. name: "Maximum",
  42702. height: math.unit(1500000000000, "lightyears")
  42703. },
  42704. ]
  42705. ))
  42706. characterMakers.push(() => makeCharacter(
  42707. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42708. {
  42709. front: {
  42710. height: math.unit(5 + 11/12, "feet"),
  42711. weight: math.unit(155, "lb"),
  42712. name: "Front",
  42713. image: {
  42714. source: "./media/characters/cai/front.svg",
  42715. extra: 1823/1702,
  42716. bottom: 32/1855
  42717. }
  42718. },
  42719. back: {
  42720. height: math.unit(5 + 11/12, "feet"),
  42721. weight: math.unit(155, "lb"),
  42722. name: "Back",
  42723. image: {
  42724. source: "./media/characters/cai/back.svg",
  42725. extra: 1809/1708,
  42726. bottom: 31/1840
  42727. }
  42728. },
  42729. },
  42730. [
  42731. {
  42732. name: "Normal",
  42733. height: math.unit(5 + 11/12, "feet"),
  42734. default: true
  42735. },
  42736. {
  42737. name: "Big",
  42738. height: math.unit(15, "feet")
  42739. },
  42740. {
  42741. name: "Macro",
  42742. height: math.unit(200, "feet")
  42743. },
  42744. ]
  42745. ))
  42746. characterMakers.push(() => makeCharacter(
  42747. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42748. {
  42749. front: {
  42750. height: math.unit(5 + 6/12, "feet"),
  42751. weight: math.unit(160, "lb"),
  42752. name: "Front",
  42753. image: {
  42754. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42755. extra: 1227/1174,
  42756. bottom: 37/1264
  42757. }
  42758. },
  42759. },
  42760. [
  42761. {
  42762. name: "Macro",
  42763. height: math.unit(444, "meters"),
  42764. default: true
  42765. },
  42766. ]
  42767. ))
  42768. characterMakers.push(() => makeCharacter(
  42769. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42770. {
  42771. front: {
  42772. height: math.unit(18 + 7/12, "feet"),
  42773. name: "Front",
  42774. image: {
  42775. source: "./media/characters/rex/front.svg",
  42776. extra: 1941/1807,
  42777. bottom: 66/2007
  42778. }
  42779. },
  42780. back: {
  42781. height: math.unit(18 + 7/12, "feet"),
  42782. name: "Back",
  42783. image: {
  42784. source: "./media/characters/rex/back.svg",
  42785. extra: 1937/1822,
  42786. bottom: 42/1979
  42787. }
  42788. },
  42789. boot: {
  42790. height: math.unit(3.45, "feet"),
  42791. name: "Boot",
  42792. image: {
  42793. source: "./media/characters/rex/boot.svg"
  42794. }
  42795. },
  42796. paw: {
  42797. height: math.unit(4.17, "feet"),
  42798. name: "Paw",
  42799. image: {
  42800. source: "./media/characters/rex/paw.svg"
  42801. }
  42802. },
  42803. head: {
  42804. height: math.unit(6.728, "feet"),
  42805. name: "Head",
  42806. image: {
  42807. source: "./media/characters/rex/head.svg"
  42808. }
  42809. },
  42810. },
  42811. [
  42812. {
  42813. name: "Nano",
  42814. height: math.unit(18 + 7/12, "feet")
  42815. },
  42816. {
  42817. name: "Micro",
  42818. height: math.unit(1.5, "megameters")
  42819. },
  42820. {
  42821. name: "Normal",
  42822. height: math.unit(440, "megameters"),
  42823. default: true
  42824. },
  42825. {
  42826. name: "Macro",
  42827. height: math.unit(2.5, "gigameters")
  42828. },
  42829. {
  42830. name: "Gigamacro",
  42831. height: math.unit(2, "galaxies")
  42832. },
  42833. ]
  42834. ))
  42835. characterMakers.push(() => makeCharacter(
  42836. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42837. {
  42838. side: {
  42839. height: math.unit(32, "feet"),
  42840. weight: math.unit(250000, "lb"),
  42841. name: "Side",
  42842. image: {
  42843. source: "./media/characters/silverwing/side.svg",
  42844. extra: 1100/1019,
  42845. bottom: 204/1304
  42846. }
  42847. },
  42848. },
  42849. [
  42850. {
  42851. name: "Normal",
  42852. height: math.unit(32, "feet"),
  42853. default: true
  42854. },
  42855. ]
  42856. ))
  42857. characterMakers.push(() => makeCharacter(
  42858. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42859. {
  42860. front: {
  42861. height: math.unit(6 + 6/12, "feet"),
  42862. weight: math.unit(350, "lb"),
  42863. name: "Front",
  42864. image: {
  42865. source: "./media/characters/tristan-hawthorne/front.svg",
  42866. extra: 1159/1124,
  42867. bottom: 37/1196
  42868. },
  42869. form: "labrador",
  42870. default: true
  42871. },
  42872. skunkFront: {
  42873. height: math.unit(4 + 6/12, "feet"),
  42874. weight: math.unit(120, "lb"),
  42875. name: "Front",
  42876. image: {
  42877. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42878. extra: 1609/1551,
  42879. bottom: 169/1778
  42880. },
  42881. form: "skunk",
  42882. default: true
  42883. },
  42884. },
  42885. [
  42886. {
  42887. name: "Normal",
  42888. height: math.unit(6 + 6/12, "feet"),
  42889. form: "labrador",
  42890. default: true
  42891. },
  42892. {
  42893. name: "Normal",
  42894. height: math.unit(4 + 6/12, "feet"),
  42895. form: "skunk",
  42896. default: true
  42897. },
  42898. ],
  42899. {
  42900. "labrador": {
  42901. name: "Labrador",
  42902. default: true
  42903. },
  42904. "skunk": {
  42905. name: "Skunk"
  42906. }
  42907. }
  42908. ))
  42909. characterMakers.push(() => makeCharacter(
  42910. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42911. {
  42912. front: {
  42913. height: math.unit(5 + 11/12, "feet"),
  42914. weight: math.unit(190, "lb"),
  42915. name: "Front",
  42916. image: {
  42917. source: "./media/characters/mizu/front.svg",
  42918. extra: 1988/1788,
  42919. bottom: 14/2002
  42920. }
  42921. },
  42922. },
  42923. [
  42924. {
  42925. name: "Normal",
  42926. height: math.unit(5 + 11/12, "feet"),
  42927. default: true
  42928. },
  42929. ]
  42930. ))
  42931. characterMakers.push(() => makeCharacter(
  42932. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42933. {
  42934. front: {
  42935. height: math.unit(1.7, "feet"),
  42936. weight: math.unit(50, "lb"),
  42937. name: "Front",
  42938. image: {
  42939. source: "./media/characters/dechroma/front.svg",
  42940. extra: 1095/859,
  42941. bottom: 64/1159
  42942. }
  42943. },
  42944. },
  42945. [
  42946. {
  42947. name: "Normal",
  42948. height: math.unit(1.7, "feet"),
  42949. default: true
  42950. },
  42951. ]
  42952. ))
  42953. characterMakers.push(() => makeCharacter(
  42954. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42955. {
  42956. side: {
  42957. height: math.unit(30, "feet"),
  42958. name: "Side",
  42959. image: {
  42960. source: "./media/characters/veluren-thanazel/side.svg",
  42961. extra: 1611/633,
  42962. bottom: 118/1729
  42963. }
  42964. },
  42965. front: {
  42966. height: math.unit(30, "feet"),
  42967. name: "Front",
  42968. image: {
  42969. source: "./media/characters/veluren-thanazel/front.svg",
  42970. extra: 1486/636,
  42971. bottom: 238/1724
  42972. }
  42973. },
  42974. head: {
  42975. height: math.unit(21.4, "feet"),
  42976. name: "Head",
  42977. image: {
  42978. source: "./media/characters/veluren-thanazel/head.svg"
  42979. }
  42980. },
  42981. genitals: {
  42982. height: math.unit(19.4, "feet"),
  42983. name: "Genitals",
  42984. image: {
  42985. source: "./media/characters/veluren-thanazel/genitals.svg"
  42986. }
  42987. },
  42988. },
  42989. [
  42990. {
  42991. name: "Social",
  42992. height: math.unit(6, "feet")
  42993. },
  42994. {
  42995. name: "Play",
  42996. height: math.unit(12, "feet")
  42997. },
  42998. {
  42999. name: "True",
  43000. height: math.unit(30, "feet"),
  43001. default: true
  43002. },
  43003. ]
  43004. ))
  43005. characterMakers.push(() => makeCharacter(
  43006. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43007. {
  43008. front: {
  43009. height: math.unit(7 + 6/12, "feet"),
  43010. weight: math.unit(500, "kg"),
  43011. name: "Front",
  43012. image: {
  43013. source: "./media/characters/arcturas/front.svg",
  43014. extra: 1700/1500,
  43015. bottom: 145/1845
  43016. }
  43017. },
  43018. },
  43019. [
  43020. {
  43021. name: "Normal",
  43022. height: math.unit(7 + 6/12, "feet"),
  43023. default: true
  43024. },
  43025. ]
  43026. ))
  43027. characterMakers.push(() => makeCharacter(
  43028. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43029. {
  43030. side: {
  43031. height: math.unit(6, "feet"),
  43032. weight: math.unit(2, "tons"),
  43033. name: "Side",
  43034. image: {
  43035. source: "./media/characters/vitaen/side.svg",
  43036. extra: 1157/617,
  43037. bottom: 122/1279
  43038. }
  43039. },
  43040. },
  43041. [
  43042. {
  43043. name: "Normal",
  43044. height: math.unit(6, "feet"),
  43045. default: true
  43046. },
  43047. ]
  43048. ))
  43049. characterMakers.push(() => makeCharacter(
  43050. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43051. {
  43052. front: {
  43053. height: math.unit(19, "feet"),
  43054. name: "Front",
  43055. image: {
  43056. source: "./media/characters/fia-dreamweaver/front.svg",
  43057. extra: 1630/1504,
  43058. bottom: 25/1655
  43059. }
  43060. },
  43061. },
  43062. [
  43063. {
  43064. name: "Normal",
  43065. height: math.unit(19, "feet"),
  43066. default: true
  43067. },
  43068. ]
  43069. ))
  43070. characterMakers.push(() => makeCharacter(
  43071. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43072. {
  43073. front: {
  43074. height: math.unit(5 + 4/12, "feet"),
  43075. name: "Front",
  43076. image: {
  43077. source: "./media/characters/artan/front.svg",
  43078. extra: 1618/1535,
  43079. bottom: 46/1664
  43080. }
  43081. },
  43082. back: {
  43083. height: math.unit(5 + 4/12, "feet"),
  43084. name: "Back",
  43085. image: {
  43086. source: "./media/characters/artan/back.svg",
  43087. extra: 1618/1543,
  43088. bottom: 31/1649
  43089. }
  43090. },
  43091. },
  43092. [
  43093. {
  43094. name: "Normal",
  43095. height: math.unit(5 + 4/12, "feet"),
  43096. default: true
  43097. },
  43098. ]
  43099. ))
  43100. characterMakers.push(() => makeCharacter(
  43101. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43102. {
  43103. side: {
  43104. height: math.unit(182, "cm"),
  43105. weight: math.unit(1000, "lb"),
  43106. name: "Side",
  43107. image: {
  43108. source: "./media/characters/silver-dragon/side.svg",
  43109. extra: 710/287,
  43110. bottom: 88/798
  43111. }
  43112. },
  43113. },
  43114. [
  43115. {
  43116. name: "Normal",
  43117. height: math.unit(182, "cm"),
  43118. default: true
  43119. },
  43120. ]
  43121. ))
  43122. characterMakers.push(() => makeCharacter(
  43123. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43124. {
  43125. side: {
  43126. height: math.unit(6 + 6/12, "feet"),
  43127. weight: math.unit(1.5, "tons"),
  43128. name: "Side",
  43129. image: {
  43130. source: "./media/characters/zephyr/side.svg",
  43131. extra: 1433/586,
  43132. bottom: 109/1542
  43133. }
  43134. },
  43135. },
  43136. [
  43137. {
  43138. name: "Normal",
  43139. height: math.unit(6 + 6/12, "feet"),
  43140. default: true
  43141. },
  43142. ]
  43143. ))
  43144. characterMakers.push(() => makeCharacter(
  43145. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43146. {
  43147. side: {
  43148. height: math.unit(1, "feet"),
  43149. name: "Side",
  43150. image: {
  43151. source: "./media/characters/vixye/side.svg",
  43152. extra: 632/541,
  43153. bottom: 0/632
  43154. }
  43155. },
  43156. },
  43157. [
  43158. {
  43159. name: "Normal",
  43160. height: math.unit(1, "feet"),
  43161. default: true
  43162. },
  43163. {
  43164. name: "True",
  43165. height: math.unit(1e15, "multiverses")
  43166. },
  43167. ]
  43168. ))
  43169. characterMakers.push(() => makeCharacter(
  43170. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43171. {
  43172. front: {
  43173. height: math.unit(8 + 2/12, "feet"),
  43174. weight: math.unit(650, "lb"),
  43175. name: "Front",
  43176. image: {
  43177. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43178. extra: 1174/1137,
  43179. bottom: 82/1256
  43180. }
  43181. },
  43182. back: {
  43183. height: math.unit(8 + 2/12, "feet"),
  43184. weight: math.unit(650, "lb"),
  43185. name: "Back",
  43186. image: {
  43187. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43188. extra: 1204/1157,
  43189. bottom: 46/1250
  43190. }
  43191. },
  43192. },
  43193. [
  43194. {
  43195. name: "Wildform",
  43196. height: math.unit(8 + 2/12, "feet"),
  43197. default: true
  43198. },
  43199. ]
  43200. ))
  43201. characterMakers.push(() => makeCharacter(
  43202. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43203. {
  43204. front: {
  43205. height: math.unit(18, "feet"),
  43206. name: "Front",
  43207. image: {
  43208. source: "./media/characters/cyphin/front.svg",
  43209. extra: 970/886,
  43210. bottom: 42/1012
  43211. }
  43212. },
  43213. back: {
  43214. height: math.unit(18, "feet"),
  43215. name: "Back",
  43216. image: {
  43217. source: "./media/characters/cyphin/back.svg",
  43218. extra: 1009/894,
  43219. bottom: 24/1033
  43220. }
  43221. },
  43222. head: {
  43223. height: math.unit(5.05, "feet"),
  43224. name: "Head",
  43225. image: {
  43226. source: "./media/characters/cyphin/head.svg"
  43227. }
  43228. },
  43229. tailbud: {
  43230. height: math.unit(5, "feet"),
  43231. name: "Tailbud",
  43232. image: {
  43233. source: "./media/characters/cyphin/tailbud.svg"
  43234. }
  43235. },
  43236. },
  43237. [
  43238. ]
  43239. ))
  43240. characterMakers.push(() => makeCharacter(
  43241. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43242. {
  43243. side: {
  43244. height: math.unit(10, "feet"),
  43245. weight: math.unit(6, "tons"),
  43246. name: "Side",
  43247. image: {
  43248. source: "./media/characters/raijin/side.svg",
  43249. extra: 1529/613,
  43250. bottom: 337/1866
  43251. }
  43252. },
  43253. },
  43254. [
  43255. {
  43256. name: "Normal",
  43257. height: math.unit(10, "feet"),
  43258. default: true
  43259. },
  43260. ]
  43261. ))
  43262. characterMakers.push(() => makeCharacter(
  43263. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43264. {
  43265. side: {
  43266. height: math.unit(9, "feet"),
  43267. name: "Side",
  43268. image: {
  43269. source: "./media/characters/nilghais/side.svg",
  43270. extra: 1047/744,
  43271. bottom: 91/1138
  43272. }
  43273. },
  43274. head: {
  43275. height: math.unit(3.14, "feet"),
  43276. name: "Head",
  43277. image: {
  43278. source: "./media/characters/nilghais/head.svg"
  43279. }
  43280. },
  43281. mouth: {
  43282. height: math.unit(4.6, "feet"),
  43283. name: "Mouth",
  43284. image: {
  43285. source: "./media/characters/nilghais/mouth.svg"
  43286. }
  43287. },
  43288. wings: {
  43289. height: math.unit(24, "feet"),
  43290. name: "Wings",
  43291. image: {
  43292. source: "./media/characters/nilghais/wings.svg"
  43293. }
  43294. },
  43295. ass: {
  43296. height: math.unit(6.12, "feet"),
  43297. name: "Ass",
  43298. image: {
  43299. source: "./media/characters/nilghais/ass.svg"
  43300. }
  43301. },
  43302. },
  43303. [
  43304. {
  43305. name: "Normal",
  43306. height: math.unit(9, "feet"),
  43307. default: true
  43308. },
  43309. ]
  43310. ))
  43311. characterMakers.push(() => makeCharacter(
  43312. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43313. {
  43314. regular: {
  43315. height: math.unit(16 + 2/12, "feet"),
  43316. weight: math.unit(2300, "lb"),
  43317. name: "Regular",
  43318. image: {
  43319. source: "./media/characters/zolgar/regular.svg",
  43320. extra: 1246/1004,
  43321. bottom: 124/1370
  43322. }
  43323. },
  43324. boxers: {
  43325. height: math.unit(16 + 2/12, "feet"),
  43326. weight: math.unit(2300, "lb"),
  43327. name: "Boxers",
  43328. image: {
  43329. source: "./media/characters/zolgar/boxers.svg",
  43330. extra: 1246/1004,
  43331. bottom: 124/1370
  43332. }
  43333. },
  43334. armored: {
  43335. height: math.unit(16 + 2/12, "feet"),
  43336. weight: math.unit(2300, "lb"),
  43337. name: "Armored",
  43338. image: {
  43339. source: "./media/characters/zolgar/armored.svg",
  43340. extra: 1246/1004,
  43341. bottom: 124/1370
  43342. }
  43343. },
  43344. goth: {
  43345. height: math.unit(16 + 2/12, "feet"),
  43346. weight: math.unit(2300, "lb"),
  43347. name: "Goth",
  43348. image: {
  43349. source: "./media/characters/zolgar/goth.svg",
  43350. extra: 1246/1004,
  43351. bottom: 124/1370
  43352. }
  43353. },
  43354. },
  43355. [
  43356. {
  43357. name: "Shrunken Down",
  43358. height: math.unit(9 + 2/12, "feet")
  43359. },
  43360. {
  43361. name: "Normal",
  43362. height: math.unit(16 + 2/12, "feet"),
  43363. default: true
  43364. },
  43365. ]
  43366. ))
  43367. characterMakers.push(() => makeCharacter(
  43368. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43369. {
  43370. front: {
  43371. height: math.unit(6, "feet"),
  43372. weight: math.unit(168, "lb"),
  43373. name: "Front",
  43374. image: {
  43375. source: "./media/characters/luca/front.svg",
  43376. extra: 841/667,
  43377. bottom: 102/943
  43378. }
  43379. },
  43380. },
  43381. [
  43382. {
  43383. name: "Normal",
  43384. height: math.unit(6, "feet"),
  43385. default: true
  43386. },
  43387. ]
  43388. ))
  43389. characterMakers.push(() => makeCharacter(
  43390. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43391. {
  43392. side: {
  43393. height: math.unit(7 + 3/12, "feet"),
  43394. weight: math.unit(312, "lb"),
  43395. name: "Side",
  43396. image: {
  43397. source: "./media/characters/zezo/side.svg",
  43398. extra: 1192/1067,
  43399. bottom: 63/1255
  43400. }
  43401. },
  43402. },
  43403. [
  43404. {
  43405. name: "Normal",
  43406. height: math.unit(7 + 3/12, "feet"),
  43407. default: true
  43408. },
  43409. ]
  43410. ))
  43411. characterMakers.push(() => makeCharacter(
  43412. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43413. {
  43414. front: {
  43415. height: math.unit(5 + 5/12, "feet"),
  43416. weight: math.unit(170, "lb"),
  43417. name: "Front",
  43418. image: {
  43419. source: "./media/characters/mayso/front.svg",
  43420. extra: 1215/1108,
  43421. bottom: 16/1231
  43422. }
  43423. },
  43424. },
  43425. [
  43426. {
  43427. name: "Normal",
  43428. height: math.unit(5 + 5/12, "feet"),
  43429. default: true
  43430. },
  43431. ]
  43432. ))
  43433. characterMakers.push(() => makeCharacter(
  43434. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43435. {
  43436. front: {
  43437. height: math.unit(4 + 3/12, "feet"),
  43438. weight: math.unit(80, "lb"),
  43439. name: "Front",
  43440. image: {
  43441. source: "./media/characters/hess/front.svg",
  43442. extra: 1200/1123,
  43443. bottom: 16/1216
  43444. }
  43445. },
  43446. },
  43447. [
  43448. {
  43449. name: "Normal",
  43450. height: math.unit(4 + 3/12, "feet"),
  43451. default: true
  43452. },
  43453. ]
  43454. ))
  43455. characterMakers.push(() => makeCharacter(
  43456. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43457. {
  43458. front: {
  43459. height: math.unit(1.9, "meters"),
  43460. name: "Front",
  43461. image: {
  43462. source: "./media/characters/ashgar/front.svg",
  43463. extra: 1177/1146,
  43464. bottom: 99/1276
  43465. }
  43466. },
  43467. back: {
  43468. height: math.unit(1.9, "meters"),
  43469. name: "Back",
  43470. image: {
  43471. source: "./media/characters/ashgar/back.svg",
  43472. extra: 1201/1183,
  43473. bottom: 53/1254
  43474. }
  43475. },
  43476. feral: {
  43477. height: math.unit(1.4, "meters"),
  43478. name: "Feral",
  43479. image: {
  43480. source: "./media/characters/ashgar/feral.svg",
  43481. extra: 370/345,
  43482. bottom: 45/415
  43483. }
  43484. },
  43485. },
  43486. [
  43487. {
  43488. name: "Normal",
  43489. height: math.unit(1.9, "meters"),
  43490. default: true
  43491. },
  43492. ]
  43493. ))
  43494. characterMakers.push(() => makeCharacter(
  43495. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43496. {
  43497. regular: {
  43498. height: math.unit(6, "feet"),
  43499. weight: math.unit(220, "lb"),
  43500. name: "Regular",
  43501. image: {
  43502. source: "./media/characters/phillip/regular.svg",
  43503. extra: 1373/1277,
  43504. bottom: 75/1448
  43505. }
  43506. },
  43507. dressed: {
  43508. height: math.unit(6, "feet"),
  43509. weight: math.unit(220, "lb"),
  43510. name: "Dressed",
  43511. image: {
  43512. source: "./media/characters/phillip/dressed.svg",
  43513. extra: 1373/1277,
  43514. bottom: 75/1448
  43515. }
  43516. },
  43517. paw: {
  43518. height: math.unit(1.44, "feet"),
  43519. name: "Paw",
  43520. image: {
  43521. source: "./media/characters/phillip/paw.svg"
  43522. }
  43523. },
  43524. },
  43525. [
  43526. {
  43527. name: "Normal",
  43528. height: math.unit(6, "feet"),
  43529. default: true
  43530. },
  43531. ]
  43532. ))
  43533. characterMakers.push(() => makeCharacter(
  43534. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43535. {
  43536. side: {
  43537. height: math.unit(42, "feet"),
  43538. name: "Side",
  43539. image: {
  43540. source: "./media/characters/uvula/side.svg",
  43541. extra: 683/586,
  43542. bottom: 60/743
  43543. }
  43544. },
  43545. front: {
  43546. height: math.unit(42, "feet"),
  43547. name: "Front",
  43548. image: {
  43549. source: "./media/characters/uvula/front.svg",
  43550. extra: 705/613,
  43551. bottom: 54/759
  43552. }
  43553. },
  43554. maw: {
  43555. height: math.unit(23.5, "feet"),
  43556. name: "Maw",
  43557. image: {
  43558. source: "./media/characters/uvula/maw.svg"
  43559. }
  43560. },
  43561. },
  43562. [
  43563. {
  43564. name: "Original Size",
  43565. height: math.unit(14, "inches")
  43566. },
  43567. {
  43568. name: "Human Size",
  43569. height: math.unit(6, "feet")
  43570. },
  43571. {
  43572. name: "Big",
  43573. height: math.unit(42, "feet"),
  43574. default: true
  43575. },
  43576. {
  43577. name: "Bigger",
  43578. height: math.unit(100, "feet")
  43579. },
  43580. ]
  43581. ))
  43582. characterMakers.push(() => makeCharacter(
  43583. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43584. {
  43585. front: {
  43586. height: math.unit(5 + 11/12, "feet"),
  43587. name: "Front",
  43588. image: {
  43589. source: "./media/characters/lannah/front.svg",
  43590. extra: 1208/1113,
  43591. bottom: 97/1305
  43592. }
  43593. },
  43594. },
  43595. [
  43596. {
  43597. name: "Normal",
  43598. height: math.unit(5 + 11/12, "feet"),
  43599. default: true
  43600. },
  43601. ]
  43602. ))
  43603. characterMakers.push(() => makeCharacter(
  43604. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43605. {
  43606. front: {
  43607. height: math.unit(6 + 3/12, "feet"),
  43608. weight: math.unit(3.5, "tons"),
  43609. name: "Front",
  43610. image: {
  43611. source: "./media/characters/emberflame/front.svg",
  43612. extra: 1198/672,
  43613. bottom: 82/1280
  43614. }
  43615. },
  43616. side: {
  43617. height: math.unit(6 + 3/12, "feet"),
  43618. weight: math.unit(3.5, "tons"),
  43619. name: "Side",
  43620. image: {
  43621. source: "./media/characters/emberflame/side.svg",
  43622. extra: 938/527,
  43623. bottom: 56/994
  43624. }
  43625. },
  43626. },
  43627. [
  43628. {
  43629. name: "Normal",
  43630. height: math.unit(6 + 3/12, "feet"),
  43631. default: true
  43632. },
  43633. ]
  43634. ))
  43635. characterMakers.push(() => makeCharacter(
  43636. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43637. {
  43638. side: {
  43639. height: math.unit(17.5, "feet"),
  43640. weight: math.unit(35, "tons"),
  43641. name: "Side",
  43642. image: {
  43643. source: "./media/characters/sophie-ambrose/side.svg",
  43644. extra: 1573/1242,
  43645. bottom: 71/1644
  43646. }
  43647. },
  43648. maw: {
  43649. height: math.unit(7.4, "feet"),
  43650. name: "Maw",
  43651. image: {
  43652. source: "./media/characters/sophie-ambrose/maw.svg"
  43653. }
  43654. },
  43655. },
  43656. [
  43657. {
  43658. name: "Normal",
  43659. height: math.unit(17.5, "feet"),
  43660. default: true
  43661. },
  43662. ]
  43663. ))
  43664. characterMakers.push(() => makeCharacter(
  43665. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43666. {
  43667. front: {
  43668. height: math.unit(280, "feet"),
  43669. weight: math.unit(550, "tons"),
  43670. name: "Front",
  43671. image: {
  43672. source: "./media/characters/king-mugi/front.svg",
  43673. extra: 1102/947,
  43674. bottom: 104/1206
  43675. }
  43676. },
  43677. },
  43678. [
  43679. {
  43680. name: "King Mugi",
  43681. height: math.unit(280, "feet"),
  43682. default: true
  43683. },
  43684. ]
  43685. ))
  43686. characterMakers.push(() => makeCharacter(
  43687. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43688. {
  43689. front: {
  43690. height: math.unit(64, "meters"),
  43691. name: "Front",
  43692. image: {
  43693. source: "./media/characters/nova-fox/front.svg",
  43694. extra: 1310/1246,
  43695. bottom: 65/1375
  43696. }
  43697. },
  43698. },
  43699. [
  43700. {
  43701. name: "Macro",
  43702. height: math.unit(64, "meters"),
  43703. default: true
  43704. },
  43705. ]
  43706. ))
  43707. characterMakers.push(() => makeCharacter(
  43708. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43709. {
  43710. front: {
  43711. height: math.unit(6 + 3/12, "feet"),
  43712. weight: math.unit(170, "lb"),
  43713. name: "Front",
  43714. image: {
  43715. source: "./media/characters/sam-bat/front.svg",
  43716. extra: 1601/1411,
  43717. bottom: 125/1726
  43718. }
  43719. },
  43720. back: {
  43721. height: math.unit(6 + 3/12, "feet"),
  43722. weight: math.unit(170, "lb"),
  43723. name: "Back",
  43724. image: {
  43725. source: "./media/characters/sam-bat/back.svg",
  43726. extra: 1577/1405,
  43727. bottom: 58/1635
  43728. }
  43729. },
  43730. },
  43731. [
  43732. {
  43733. name: "Normal",
  43734. height: math.unit(6 + 3/12, "feet"),
  43735. default: true
  43736. },
  43737. ]
  43738. ))
  43739. characterMakers.push(() => makeCharacter(
  43740. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43741. {
  43742. front: {
  43743. height: math.unit(59, "feet"),
  43744. weight: math.unit(40000, "lb"),
  43745. name: "Front",
  43746. image: {
  43747. source: "./media/characters/inari/front.svg",
  43748. extra: 1884/1350,
  43749. bottom: 95/1979
  43750. }
  43751. },
  43752. },
  43753. [
  43754. {
  43755. name: "Gigantamax",
  43756. height: math.unit(59, "feet"),
  43757. default: true
  43758. },
  43759. ]
  43760. ))
  43761. characterMakers.push(() => makeCharacter(
  43762. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43763. {
  43764. front: {
  43765. height: math.unit(5 + 8/12, "feet"),
  43766. name: "Front",
  43767. image: {
  43768. source: "./media/characters/elizabeth/front.svg",
  43769. extra: 1395/1298,
  43770. bottom: 54/1449
  43771. }
  43772. },
  43773. mouth: {
  43774. height: math.unit(1.97, "feet"),
  43775. name: "Mouth",
  43776. image: {
  43777. source: "./media/characters/elizabeth/mouth.svg"
  43778. }
  43779. },
  43780. foot: {
  43781. height: math.unit(1.17, "feet"),
  43782. name: "Foot",
  43783. image: {
  43784. source: "./media/characters/elizabeth/foot.svg"
  43785. }
  43786. },
  43787. },
  43788. [
  43789. {
  43790. name: "Normal",
  43791. height: math.unit(5 + 8/12, "feet"),
  43792. default: true
  43793. },
  43794. {
  43795. name: "Minimacro",
  43796. height: math.unit(18, "feet")
  43797. },
  43798. {
  43799. name: "Macro",
  43800. height: math.unit(180, "feet")
  43801. },
  43802. ]
  43803. ))
  43804. characterMakers.push(() => makeCharacter(
  43805. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43806. {
  43807. front: {
  43808. height: math.unit(5 + 2/12, "feet"),
  43809. name: "Front",
  43810. image: {
  43811. source: "./media/characters/october-gossamer/front.svg",
  43812. extra: 505/454,
  43813. bottom: 7/512
  43814. }
  43815. },
  43816. back: {
  43817. height: math.unit(5 + 2/12, "feet"),
  43818. name: "Back",
  43819. image: {
  43820. source: "./media/characters/october-gossamer/back.svg",
  43821. extra: 501/454,
  43822. bottom: 11/512
  43823. }
  43824. },
  43825. },
  43826. [
  43827. {
  43828. name: "Normal",
  43829. height: math.unit(5 + 2/12, "feet"),
  43830. default: true
  43831. },
  43832. ]
  43833. ))
  43834. characterMakers.push(() => makeCharacter(
  43835. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43836. {
  43837. front: {
  43838. height: math.unit(5, "feet"),
  43839. name: "Front",
  43840. image: {
  43841. source: "./media/characters/epiglottis/front.svg",
  43842. extra: 923/849,
  43843. bottom: 17/940
  43844. }
  43845. },
  43846. },
  43847. [
  43848. {
  43849. name: "Original Size",
  43850. height: math.unit(10, "inches")
  43851. },
  43852. {
  43853. name: "Human Size",
  43854. height: math.unit(5, "feet"),
  43855. default: true
  43856. },
  43857. {
  43858. name: "Big",
  43859. height: math.unit(25, "feet")
  43860. },
  43861. {
  43862. name: "Bigger",
  43863. height: math.unit(50, "feet")
  43864. },
  43865. {
  43866. name: "oh lawd",
  43867. height: math.unit(75, "feet")
  43868. },
  43869. ]
  43870. ))
  43871. characterMakers.push(() => makeCharacter(
  43872. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43873. {
  43874. front: {
  43875. height: math.unit(2 + 4/12, "feet"),
  43876. weight: math.unit(60, "lb"),
  43877. name: "Front",
  43878. image: {
  43879. source: "./media/characters/lerm/front.svg",
  43880. extra: 796/790,
  43881. bottom: 79/875
  43882. }
  43883. },
  43884. },
  43885. [
  43886. {
  43887. name: "Normal",
  43888. height: math.unit(2 + 4/12, "feet"),
  43889. default: true
  43890. },
  43891. ]
  43892. ))
  43893. characterMakers.push(() => makeCharacter(
  43894. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43895. {
  43896. front: {
  43897. height: math.unit(5.5, "feet"),
  43898. weight: math.unit(130, "lb"),
  43899. name: "Front",
  43900. image: {
  43901. source: "./media/characters/xena-nebadon/front.svg",
  43902. extra: 1828/1730,
  43903. bottom: 79/1907
  43904. }
  43905. },
  43906. },
  43907. [
  43908. {
  43909. name: "Tiny Puppy",
  43910. height: math.unit(3, "inches")
  43911. },
  43912. {
  43913. name: "Normal",
  43914. height: math.unit(5.5, "feet"),
  43915. default: true
  43916. },
  43917. {
  43918. name: "Lotta Lady",
  43919. height: math.unit(12, "feet")
  43920. },
  43921. {
  43922. name: "Pretty Big",
  43923. height: math.unit(100, "feet")
  43924. },
  43925. {
  43926. name: "Big",
  43927. height: math.unit(500, "feet")
  43928. },
  43929. {
  43930. name: "Skyscraper Toys",
  43931. height: math.unit(2500, "feet")
  43932. },
  43933. {
  43934. name: "Plane Catcher",
  43935. height: math.unit(8, "miles")
  43936. },
  43937. {
  43938. name: "Planet Toys",
  43939. height: math.unit(15, "earths")
  43940. },
  43941. {
  43942. name: "Stardust",
  43943. height: math.unit(0.25, "galaxies")
  43944. },
  43945. {
  43946. name: "Snacks",
  43947. height: math.unit(70, "universes")
  43948. },
  43949. ]
  43950. ))
  43951. characterMakers.push(() => makeCharacter(
  43952. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43953. {
  43954. front: {
  43955. height: math.unit(1.6, "meters"),
  43956. weight: math.unit(60, "kg"),
  43957. name: "Front",
  43958. image: {
  43959. source: "./media/characters/bounty/front.svg",
  43960. extra: 1426/1308,
  43961. bottom: 15/1441
  43962. }
  43963. },
  43964. back: {
  43965. height: math.unit(1.6, "meters"),
  43966. weight: math.unit(60, "kg"),
  43967. name: "Back",
  43968. image: {
  43969. source: "./media/characters/bounty/back.svg",
  43970. extra: 1417/1307,
  43971. bottom: 8/1425
  43972. }
  43973. },
  43974. },
  43975. [
  43976. {
  43977. name: "Normal",
  43978. height: math.unit(1.6, "meters"),
  43979. default: true
  43980. },
  43981. {
  43982. name: "Macro",
  43983. height: math.unit(300, "meters")
  43984. },
  43985. ]
  43986. ))
  43987. characterMakers.push(() => makeCharacter(
  43988. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43989. {
  43990. front: {
  43991. height: math.unit(2 + 8/12, "feet"),
  43992. weight: math.unit(15, "lb"),
  43993. name: "Front",
  43994. image: {
  43995. source: "./media/characters/mochi/front.svg",
  43996. extra: 1022/852,
  43997. bottom: 435/1457
  43998. }
  43999. },
  44000. back: {
  44001. height: math.unit(2 + 8/12, "feet"),
  44002. weight: math.unit(15, "lb"),
  44003. name: "Back",
  44004. image: {
  44005. source: "./media/characters/mochi/back.svg",
  44006. extra: 1335/1119,
  44007. bottom: 39/1374
  44008. }
  44009. },
  44010. bird: {
  44011. height: math.unit(2 + 8/12, "feet"),
  44012. weight: math.unit(15, "lb"),
  44013. name: "Bird",
  44014. image: {
  44015. source: "./media/characters/mochi/bird.svg",
  44016. extra: 1251/1113,
  44017. bottom: 178/1429
  44018. }
  44019. },
  44020. kaiju: {
  44021. height: math.unit(154, "feet"),
  44022. weight: math.unit(1e7, "lb"),
  44023. name: "Kaiju",
  44024. image: {
  44025. source: "./media/characters/mochi/kaiju.svg",
  44026. extra: 460/324,
  44027. bottom: 40/500
  44028. }
  44029. },
  44030. head: {
  44031. height: math.unit(1.21, "feet"),
  44032. name: "Head",
  44033. image: {
  44034. source: "./media/characters/mochi/head.svg"
  44035. }
  44036. },
  44037. alternateTail: {
  44038. height: math.unit(2 + 8/12, "feet"),
  44039. weight: math.unit(45, "lb"),
  44040. name: "Alternate Tail",
  44041. image: {
  44042. source: "./media/characters/mochi/alternate-tail.svg",
  44043. extra: 139/76,
  44044. bottom: 45/184
  44045. }
  44046. },
  44047. },
  44048. [
  44049. {
  44050. name: "Micro",
  44051. height: math.unit(2, "inches")
  44052. },
  44053. {
  44054. name: "Normal",
  44055. height: math.unit(2 + 8/12, "feet"),
  44056. default: true
  44057. },
  44058. {
  44059. name: "Macro",
  44060. height: math.unit(106, "feet")
  44061. },
  44062. ]
  44063. ))
  44064. characterMakers.push(() => makeCharacter(
  44065. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44066. {
  44067. front: {
  44068. height: math.unit(5.67, "feet"),
  44069. weight: math.unit(135, "lb"),
  44070. name: "Front",
  44071. image: {
  44072. source: "./media/characters/sarel/front.svg",
  44073. extra: 865/788,
  44074. bottom: 97/962
  44075. }
  44076. },
  44077. back: {
  44078. height: math.unit(5.67, "feet"),
  44079. weight: math.unit(135, "lb"),
  44080. name: "Back",
  44081. image: {
  44082. source: "./media/characters/sarel/back.svg",
  44083. extra: 857/777,
  44084. bottom: 32/889
  44085. }
  44086. },
  44087. chozoan: {
  44088. height: math.unit(5.67, "feet"),
  44089. weight: math.unit(135, "lb"),
  44090. name: "Chozoan",
  44091. image: {
  44092. source: "./media/characters/sarel/chozoan.svg",
  44093. extra: 865/788,
  44094. bottom: 97/962
  44095. }
  44096. },
  44097. current: {
  44098. height: math.unit(5.67, "feet"),
  44099. weight: math.unit(135, "lb"),
  44100. name: "Current",
  44101. image: {
  44102. source: "./media/characters/sarel/current.svg",
  44103. extra: 865/788,
  44104. bottom: 97/962
  44105. }
  44106. },
  44107. head: {
  44108. height: math.unit(1.77, "feet"),
  44109. name: "Head",
  44110. image: {
  44111. source: "./media/characters/sarel/head.svg"
  44112. }
  44113. },
  44114. claws: {
  44115. height: math.unit(1.8, "feet"),
  44116. name: "Claws",
  44117. image: {
  44118. source: "./media/characters/sarel/claws.svg"
  44119. }
  44120. },
  44121. clawsAlt: {
  44122. height: math.unit(1.8, "feet"),
  44123. name: "Claws-alt",
  44124. image: {
  44125. source: "./media/characters/sarel/claws-alt.svg"
  44126. }
  44127. },
  44128. },
  44129. [
  44130. {
  44131. name: "Normal",
  44132. height: math.unit(5.67, "feet"),
  44133. default: true
  44134. },
  44135. ]
  44136. ))
  44137. characterMakers.push(() => makeCharacter(
  44138. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44139. {
  44140. front: {
  44141. height: math.unit(5500, "feet"),
  44142. name: "Front",
  44143. image: {
  44144. source: "./media/characters/alyonia/front.svg",
  44145. extra: 1200/1135,
  44146. bottom: 29/1229
  44147. }
  44148. },
  44149. back: {
  44150. height: math.unit(5500, "feet"),
  44151. name: "Back",
  44152. image: {
  44153. source: "./media/characters/alyonia/back.svg",
  44154. extra: 1205/1138,
  44155. bottom: 10/1215
  44156. }
  44157. },
  44158. },
  44159. [
  44160. {
  44161. name: "Small",
  44162. height: math.unit(10, "feet")
  44163. },
  44164. {
  44165. name: "Macro",
  44166. height: math.unit(500, "feet")
  44167. },
  44168. {
  44169. name: "Mega Macro",
  44170. height: math.unit(5500, "feet"),
  44171. default: true
  44172. },
  44173. {
  44174. name: "Mega Macro+",
  44175. height: math.unit(500000, "feet")
  44176. },
  44177. {
  44178. name: "Giga Macro",
  44179. height: math.unit(3000, "miles")
  44180. },
  44181. {
  44182. name: "Tera Macro",
  44183. height: math.unit(2.8e6, "miles")
  44184. },
  44185. {
  44186. name: "Galactic",
  44187. height: math.unit(120000, "lightyears")
  44188. },
  44189. ]
  44190. ))
  44191. characterMakers.push(() => makeCharacter(
  44192. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44193. {
  44194. werewolf: {
  44195. height: math.unit(8, "feet"),
  44196. weight: math.unit(425, "lb"),
  44197. name: "Werewolf",
  44198. image: {
  44199. source: "./media/characters/autumn/werewolf.svg",
  44200. extra: 2154/2031,
  44201. bottom: 160/2314
  44202. }
  44203. },
  44204. human: {
  44205. height: math.unit(5 + 8/12, "feet"),
  44206. weight: math.unit(150, "lb"),
  44207. name: "Human",
  44208. image: {
  44209. source: "./media/characters/autumn/human.svg",
  44210. extra: 1200/1149,
  44211. bottom: 30/1230
  44212. }
  44213. },
  44214. },
  44215. [
  44216. {
  44217. name: "Normal",
  44218. height: math.unit(8, "feet"),
  44219. default: true
  44220. },
  44221. ]
  44222. ))
  44223. characterMakers.push(() => makeCharacter(
  44224. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44225. {
  44226. front: {
  44227. height: math.unit(8 + 5/12, "feet"),
  44228. weight: math.unit(825, "lb"),
  44229. name: "Front",
  44230. image: {
  44231. source: "./media/characters/cobalt-charizard/front.svg",
  44232. extra: 1268/1155,
  44233. bottom: 122/1390
  44234. }
  44235. },
  44236. side: {
  44237. height: math.unit(8 + 5/12, "feet"),
  44238. weight: math.unit(825, "lb"),
  44239. name: "Side",
  44240. image: {
  44241. source: "./media/characters/cobalt-charizard/side.svg",
  44242. extra: 1348/1257,
  44243. bottom: 58/1406
  44244. }
  44245. },
  44246. gMax: {
  44247. height: math.unit(134 + 11/12, "feet"),
  44248. name: "G-Max",
  44249. image: {
  44250. source: "./media/characters/cobalt-charizard/g-max.svg",
  44251. extra: 1835/1541,
  44252. bottom: 151/1986
  44253. }
  44254. },
  44255. },
  44256. [
  44257. {
  44258. name: "Normal",
  44259. height: math.unit(8 + 5/12, "feet"),
  44260. default: true
  44261. },
  44262. ]
  44263. ))
  44264. characterMakers.push(() => makeCharacter(
  44265. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44266. {
  44267. front: {
  44268. height: math.unit(6 + 3/12, "feet"),
  44269. weight: math.unit(210, "lb"),
  44270. name: "Front",
  44271. image: {
  44272. source: "./media/characters/stella/front.svg",
  44273. extra: 3549/3335,
  44274. bottom: 51/3600
  44275. }
  44276. },
  44277. },
  44278. [
  44279. {
  44280. name: "Normal",
  44281. height: math.unit(6 + 3/12, "feet"),
  44282. default: true
  44283. },
  44284. ]
  44285. ))
  44286. characterMakers.push(() => makeCharacter(
  44287. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44288. {
  44289. front: {
  44290. height: math.unit(5, "feet"),
  44291. weight: math.unit(90, "lb"),
  44292. name: "Front",
  44293. image: {
  44294. source: "./media/characters/riley-bishop/front.svg",
  44295. extra: 1450/1428,
  44296. bottom: 152/1602
  44297. }
  44298. },
  44299. },
  44300. [
  44301. {
  44302. name: "Normal",
  44303. height: math.unit(5, "feet"),
  44304. default: true
  44305. },
  44306. ]
  44307. ))
  44308. characterMakers.push(() => makeCharacter(
  44309. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44310. {
  44311. side: {
  44312. height: math.unit(8 + 2/12, "feet"),
  44313. weight: math.unit(500, "kg"),
  44314. name: "Side",
  44315. image: {
  44316. source: "./media/characters/theo-arcanine/side.svg",
  44317. extra: 1342/1074,
  44318. bottom: 111/1453
  44319. }
  44320. },
  44321. },
  44322. [
  44323. {
  44324. name: "Normal",
  44325. height: math.unit(8 + 2/12, "feet"),
  44326. default: true
  44327. },
  44328. ]
  44329. ))
  44330. characterMakers.push(() => makeCharacter(
  44331. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44332. {
  44333. front: {
  44334. height: math.unit(4, "feet"),
  44335. name: "Front",
  44336. image: {
  44337. source: "./media/characters/kali/front.svg",
  44338. extra: 1921/1357,
  44339. bottom: 70/1991
  44340. }
  44341. },
  44342. },
  44343. [
  44344. {
  44345. name: "Normal",
  44346. height: math.unit(4, "feet"),
  44347. default: true
  44348. },
  44349. {
  44350. name: "Macro",
  44351. height: math.unit(32, "meters")
  44352. },
  44353. {
  44354. name: "Macro+",
  44355. height: math.unit(150, "meters")
  44356. },
  44357. {
  44358. name: "Megamacro",
  44359. height: math.unit(7500, "meters")
  44360. },
  44361. {
  44362. name: "Megamacro+",
  44363. height: math.unit(80, "kilometers")
  44364. },
  44365. ]
  44366. ))
  44367. characterMakers.push(() => makeCharacter(
  44368. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44369. {
  44370. side: {
  44371. height: math.unit(5 + 11/12, "feet"),
  44372. weight: math.unit(236, "lb"),
  44373. name: "Side",
  44374. image: {
  44375. source: "./media/characters/gapp/side.svg",
  44376. extra: 775/340,
  44377. bottom: 58/833
  44378. }
  44379. },
  44380. mouth: {
  44381. height: math.unit(2.98, "feet"),
  44382. name: "Mouth",
  44383. image: {
  44384. source: "./media/characters/gapp/mouth.svg"
  44385. }
  44386. },
  44387. },
  44388. [
  44389. {
  44390. name: "Normal",
  44391. height: math.unit(5 + 1/12, "feet"),
  44392. default: true
  44393. },
  44394. ]
  44395. ))
  44396. characterMakers.push(() => makeCharacter(
  44397. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44398. {
  44399. front: {
  44400. height: math.unit(6, "feet"),
  44401. name: "Front",
  44402. image: {
  44403. source: "./media/characters/persephone/front.svg",
  44404. extra: 1895/1717,
  44405. bottom: 96/1991
  44406. }
  44407. },
  44408. back: {
  44409. height: math.unit(6, "feet"),
  44410. name: "Back",
  44411. image: {
  44412. source: "./media/characters/persephone/back.svg",
  44413. extra: 1868/1679,
  44414. bottom: 26/1894
  44415. }
  44416. },
  44417. casual: {
  44418. height: math.unit(6, "feet"),
  44419. name: "Casual",
  44420. image: {
  44421. source: "./media/characters/persephone/casual.svg",
  44422. extra: 1713/1541,
  44423. bottom: 76/1789
  44424. }
  44425. },
  44426. },
  44427. [
  44428. {
  44429. name: "Human Size",
  44430. height: math.unit(6, "feet")
  44431. },
  44432. {
  44433. name: "Big Steppy",
  44434. height: math.unit(600, "meters"),
  44435. default: true
  44436. },
  44437. {
  44438. name: "Galaxy Brain",
  44439. height: math.unit(1, "zettameter")
  44440. },
  44441. ]
  44442. ))
  44443. characterMakers.push(() => makeCharacter(
  44444. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44445. {
  44446. front: {
  44447. height: math.unit(1.85, "meters"),
  44448. name: "Front",
  44449. image: {
  44450. source: "./media/characters/riley-foxthing/front.svg",
  44451. extra: 1495/1354,
  44452. bottom: 122/1617
  44453. }
  44454. },
  44455. frontAlt: {
  44456. height: math.unit(1.85, "meters"),
  44457. name: "Front (Alt)",
  44458. image: {
  44459. source: "./media/characters/riley-foxthing/front-alt.svg",
  44460. extra: 1572/1389,
  44461. bottom: 116/1688
  44462. }
  44463. },
  44464. },
  44465. [
  44466. {
  44467. name: "Normal Sized",
  44468. height: math.unit(1.85, "meters"),
  44469. default: true
  44470. },
  44471. {
  44472. name: "Quite Sizable",
  44473. height: math.unit(5, "meters")
  44474. },
  44475. {
  44476. name: "Rather Large",
  44477. height: math.unit(20, "meters")
  44478. },
  44479. {
  44480. name: "Macro",
  44481. height: math.unit(450, "meters")
  44482. },
  44483. {
  44484. name: "Giga",
  44485. height: math.unit(5, "km")
  44486. },
  44487. ]
  44488. ))
  44489. characterMakers.push(() => makeCharacter(
  44490. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44491. {
  44492. front: {
  44493. height: math.unit(6, "feet"),
  44494. weight: math.unit(200, "lb"),
  44495. name: "Front",
  44496. image: {
  44497. source: "./media/characters/blizzard/front.svg",
  44498. extra: 1136/990,
  44499. bottom: 136/1272
  44500. }
  44501. },
  44502. back: {
  44503. height: math.unit(6, "feet"),
  44504. weight: math.unit(200, "lb"),
  44505. name: "Back",
  44506. image: {
  44507. source: "./media/characters/blizzard/back.svg",
  44508. extra: 1175/1034,
  44509. bottom: 97/1272
  44510. }
  44511. },
  44512. sitting: {
  44513. height: math.unit(3.725, "feet"),
  44514. weight: math.unit(200, "lb"),
  44515. name: "Sitting",
  44516. image: {
  44517. source: "./media/characters/blizzard/sitting.svg",
  44518. extra: 581/485,
  44519. bottom: 90/671
  44520. }
  44521. },
  44522. frontWizard: {
  44523. height: math.unit(7.9, "feet"),
  44524. weight: math.unit(200, "lb"),
  44525. name: "Front (Wizard)",
  44526. image: {
  44527. source: "./media/characters/blizzard/front-wizard.svg"
  44528. }
  44529. },
  44530. backWizard: {
  44531. height: math.unit(7.9, "feet"),
  44532. weight: math.unit(200, "lb"),
  44533. name: "Back (Wizard)",
  44534. image: {
  44535. source: "./media/characters/blizzard/back-wizard.svg"
  44536. }
  44537. },
  44538. frontNsfw: {
  44539. height: math.unit(6, "feet"),
  44540. weight: math.unit(200, "lb"),
  44541. name: "Front (NSFW)",
  44542. image: {
  44543. source: "./media/characters/blizzard/front-nsfw.svg",
  44544. extra: 1136/990,
  44545. bottom: 136/1272
  44546. }
  44547. },
  44548. backNsfw: {
  44549. height: math.unit(6, "feet"),
  44550. weight: math.unit(200, "lb"),
  44551. name: "Back (NSFW)",
  44552. image: {
  44553. source: "./media/characters/blizzard/back-nsfw.svg",
  44554. extra: 1175/1034,
  44555. bottom: 97/1272
  44556. }
  44557. },
  44558. sittingNsfw: {
  44559. height: math.unit(3.725, "feet"),
  44560. weight: math.unit(200, "lb"),
  44561. name: "Sitting (NSFW)",
  44562. image: {
  44563. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44564. extra: 581/485,
  44565. bottom: 90/671
  44566. }
  44567. },
  44568. wizardFrontNsfw: {
  44569. height: math.unit(7.9, "feet"),
  44570. weight: math.unit(200, "lb"),
  44571. name: "Wizard (Front, NSFW)",
  44572. image: {
  44573. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44574. }
  44575. },
  44576. },
  44577. [
  44578. {
  44579. name: "Normal",
  44580. height: math.unit(6, "feet"),
  44581. default: true
  44582. },
  44583. ]
  44584. ))
  44585. characterMakers.push(() => makeCharacter(
  44586. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44587. {
  44588. front: {
  44589. height: math.unit(5 + 2/12, "feet"),
  44590. name: "Front",
  44591. image: {
  44592. source: "./media/characters/lumi/front.svg",
  44593. extra: 1328/1268,
  44594. bottom: 103/1431
  44595. }
  44596. },
  44597. back: {
  44598. height: math.unit(5 + 2/12, "feet"),
  44599. name: "Back",
  44600. image: {
  44601. source: "./media/characters/lumi/back.svg",
  44602. extra: 1381/1327,
  44603. bottom: 43/1424
  44604. }
  44605. },
  44606. },
  44607. [
  44608. {
  44609. name: "Normal",
  44610. height: math.unit(5 + 2/12, "feet"),
  44611. default: true
  44612. },
  44613. ]
  44614. ))
  44615. characterMakers.push(() => makeCharacter(
  44616. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44617. {
  44618. front: {
  44619. height: math.unit(5 + 9/12, "feet"),
  44620. name: "Front",
  44621. image: {
  44622. source: "./media/characters/aliya-cotton/front.svg",
  44623. extra: 577/564,
  44624. bottom: 29/606
  44625. }
  44626. },
  44627. },
  44628. [
  44629. {
  44630. name: "Normal",
  44631. height: math.unit(5 + 9/12, "feet"),
  44632. default: true
  44633. },
  44634. ]
  44635. ))
  44636. characterMakers.push(() => makeCharacter(
  44637. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44638. {
  44639. front: {
  44640. height: math.unit(2.7, "meters"),
  44641. weight: math.unit(25000, "lb"),
  44642. name: "Front",
  44643. image: {
  44644. source: "./media/characters/noah-luxray/front.svg",
  44645. extra: 1644/825,
  44646. bottom: 339/1983
  44647. }
  44648. },
  44649. side: {
  44650. height: math.unit(2.97, "meters"),
  44651. weight: math.unit(25000, "lb"),
  44652. name: "Side",
  44653. image: {
  44654. source: "./media/characters/noah-luxray/side.svg",
  44655. extra: 1319/650,
  44656. bottom: 163/1482
  44657. }
  44658. },
  44659. dick: {
  44660. height: math.unit(7.4, "feet"),
  44661. weight: math.unit(2500, "lb"),
  44662. name: "Dick",
  44663. image: {
  44664. source: "./media/characters/noah-luxray/dick.svg"
  44665. }
  44666. },
  44667. dickAlt: {
  44668. height: math.unit(10.83, "feet"),
  44669. weight: math.unit(2500, "lb"),
  44670. name: "Dick-alt",
  44671. image: {
  44672. source: "./media/characters/noah-luxray/dick-alt.svg"
  44673. }
  44674. },
  44675. },
  44676. [
  44677. {
  44678. name: "BIG",
  44679. height: math.unit(2.7, "meters"),
  44680. default: true
  44681. },
  44682. ]
  44683. ))
  44684. characterMakers.push(() => makeCharacter(
  44685. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44686. {
  44687. standing: {
  44688. height: math.unit(183, "cm"),
  44689. weight: math.unit(68, "kg"),
  44690. name: "Standing",
  44691. image: {
  44692. source: "./media/characters/arion/standing.svg",
  44693. extra: 1869/1807,
  44694. bottom: 93/1962
  44695. }
  44696. },
  44697. reclining: {
  44698. height: math.unit(70.5, "cm"),
  44699. weight: math.unit(68, "lb"),
  44700. name: "Reclining",
  44701. image: {
  44702. source: "./media/characters/arion/reclining.svg",
  44703. extra: 937/870,
  44704. bottom: 63/1000
  44705. }
  44706. },
  44707. },
  44708. [
  44709. {
  44710. name: "Colossus Size, Low",
  44711. height: math.unit(33, "meters"),
  44712. default: true
  44713. },
  44714. {
  44715. name: "Colossus Size, Mid",
  44716. height: math.unit(52, "meters")
  44717. },
  44718. {
  44719. name: "Colossus Size, High",
  44720. height: math.unit(60, "meters")
  44721. },
  44722. {
  44723. name: "Titan Size, Low",
  44724. height: math.unit(91, "meters"),
  44725. },
  44726. {
  44727. name: "Titan Size, Mid",
  44728. height: math.unit(122, "meters")
  44729. },
  44730. {
  44731. name: "Titan Size, High",
  44732. height: math.unit(162, "meters")
  44733. },
  44734. ]
  44735. ))
  44736. characterMakers.push(() => makeCharacter(
  44737. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44738. {
  44739. front: {
  44740. height: math.unit(53, "meters"),
  44741. name: "Front",
  44742. image: {
  44743. source: "./media/characters/stellar-marbey/front.svg",
  44744. extra: 1913/1805,
  44745. bottom: 92/2005
  44746. }
  44747. },
  44748. back: {
  44749. height: math.unit(53, "meters"),
  44750. name: "Back",
  44751. image: {
  44752. source: "./media/characters/stellar-marbey/back.svg",
  44753. extra: 1960/1851,
  44754. bottom: 28/1988
  44755. }
  44756. },
  44757. mouth: {
  44758. height: math.unit(3.5, "meters"),
  44759. name: "Mouth",
  44760. image: {
  44761. source: "./media/characters/stellar-marbey/mouth.svg"
  44762. }
  44763. },
  44764. },
  44765. [
  44766. {
  44767. name: "Macro",
  44768. height: math.unit(53, "meters"),
  44769. default: true
  44770. },
  44771. ]
  44772. ))
  44773. characterMakers.push(() => makeCharacter(
  44774. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44775. {
  44776. front: {
  44777. height: math.unit(8 + 1/12, "feet"),
  44778. weight: math.unit(233, "lb"),
  44779. name: "Front",
  44780. image: {
  44781. source: "./media/characters/matsu/front.svg",
  44782. extra: 832/772,
  44783. bottom: 40/872
  44784. }
  44785. },
  44786. back: {
  44787. height: math.unit(8 + 1/12, "feet"),
  44788. weight: math.unit(233, "lb"),
  44789. name: "Back",
  44790. image: {
  44791. source: "./media/characters/matsu/back.svg",
  44792. extra: 839/780,
  44793. bottom: 47/886
  44794. }
  44795. },
  44796. },
  44797. [
  44798. {
  44799. name: "Normal",
  44800. height: math.unit(8 + 1/12, "feet"),
  44801. default: true
  44802. },
  44803. ]
  44804. ))
  44805. characterMakers.push(() => makeCharacter(
  44806. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44807. {
  44808. front: {
  44809. height: math.unit(4, "feet"),
  44810. weight: math.unit(148, "lb"),
  44811. name: "Front",
  44812. image: {
  44813. source: "./media/characters/thiz/front.svg",
  44814. extra: 1913/1748,
  44815. bottom: 62/1975
  44816. }
  44817. },
  44818. },
  44819. [
  44820. {
  44821. name: "Normal",
  44822. height: math.unit(4, "feet"),
  44823. default: true
  44824. },
  44825. ]
  44826. ))
  44827. characterMakers.push(() => makeCharacter(
  44828. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44829. {
  44830. front: {
  44831. height: math.unit(7 + 6/12, "feet"),
  44832. weight: math.unit(267, "lb"),
  44833. name: "Front",
  44834. image: {
  44835. source: "./media/characters/marcel/front.svg",
  44836. extra: 1221/1096,
  44837. bottom: 76/1297
  44838. }
  44839. },
  44840. },
  44841. [
  44842. {
  44843. name: "Normal",
  44844. height: math.unit(7 + 6/12, "feet"),
  44845. default: true
  44846. },
  44847. ]
  44848. ))
  44849. characterMakers.push(() => makeCharacter(
  44850. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44851. {
  44852. side: {
  44853. height: math.unit(42, "meters"),
  44854. name: "Side",
  44855. image: {
  44856. source: "./media/characters/flake/side.svg",
  44857. extra: 1525/1306,
  44858. bottom: 209/1734
  44859. }
  44860. },
  44861. },
  44862. [
  44863. {
  44864. name: "Normal",
  44865. height: math.unit(42, "meters"),
  44866. default: true
  44867. },
  44868. ]
  44869. ))
  44870. characterMakers.push(() => makeCharacter(
  44871. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44872. {
  44873. dressed: {
  44874. height: math.unit(6 + 4/12, "feet"),
  44875. weight: math.unit(520, "lb"),
  44876. name: "Dressed",
  44877. image: {
  44878. source: "./media/characters/someonne/dressed.svg",
  44879. extra: 1020/1010,
  44880. bottom: 178/1198
  44881. }
  44882. },
  44883. undressed: {
  44884. height: math.unit(6 + 4/12, "feet"),
  44885. weight: math.unit(520, "lb"),
  44886. name: "Undressed",
  44887. image: {
  44888. source: "./media/characters/someonne/undressed.svg",
  44889. extra: 1019/1014,
  44890. bottom: 169/1188
  44891. }
  44892. },
  44893. },
  44894. [
  44895. {
  44896. name: "Normal",
  44897. height: math.unit(6 + 4/12, "feet"),
  44898. default: true
  44899. },
  44900. ]
  44901. ))
  44902. characterMakers.push(() => makeCharacter(
  44903. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44904. {
  44905. front: {
  44906. height: math.unit(3, "feet"),
  44907. weight: math.unit(30, "lb"),
  44908. name: "Front",
  44909. image: {
  44910. source: "./media/characters/till/front.svg",
  44911. extra: 892/823,
  44912. bottom: 55/947
  44913. }
  44914. },
  44915. },
  44916. [
  44917. {
  44918. name: "Normal",
  44919. height: math.unit(3, "feet"),
  44920. default: true
  44921. },
  44922. ]
  44923. ))
  44924. characterMakers.push(() => makeCharacter(
  44925. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44926. {
  44927. front: {
  44928. height: math.unit(9 + 8/12, "feet"),
  44929. weight: math.unit(800, "lb"),
  44930. name: "Front",
  44931. image: {
  44932. source: "./media/characters/sydney-heki/front.svg",
  44933. extra: 1360/1300,
  44934. bottom: 22/1382
  44935. }
  44936. },
  44937. back: {
  44938. height: math.unit(9 + 8/12, "feet"),
  44939. weight: math.unit(800, "lb"),
  44940. name: "Back",
  44941. image: {
  44942. source: "./media/characters/sydney-heki/back.svg",
  44943. extra: 1356/1293,
  44944. bottom: 12/1368
  44945. }
  44946. },
  44947. frontDressed: {
  44948. height: math.unit(9 + 8/12, "feet"),
  44949. weight: math.unit(800, "lb"),
  44950. name: "Front-dressed",
  44951. image: {
  44952. source: "./media/characters/sydney-heki/front-dressed.svg",
  44953. extra: 1360/1300,
  44954. bottom: 22/1382
  44955. }
  44956. },
  44957. },
  44958. [
  44959. {
  44960. name: "Normal",
  44961. height: math.unit(9 + 8/12, "feet"),
  44962. default: true
  44963. },
  44964. {
  44965. name: "Macro",
  44966. height: math.unit(500, "feet")
  44967. },
  44968. {
  44969. name: "Megamacro",
  44970. height: math.unit(3.6, "miles")
  44971. },
  44972. ]
  44973. ))
  44974. characterMakers.push(() => makeCharacter(
  44975. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44976. {
  44977. front: {
  44978. height: math.unit(200, "cm"),
  44979. weight: math.unit(250, "lb"),
  44980. name: "Front",
  44981. image: {
  44982. source: "./media/characters/fowler-karlsson/front.svg",
  44983. extra: 897/845,
  44984. bottom: 123/1020
  44985. }
  44986. },
  44987. back: {
  44988. height: math.unit(200, "cm"),
  44989. weight: math.unit(250, "lb"),
  44990. name: "Back",
  44991. image: {
  44992. source: "./media/characters/fowler-karlsson/back.svg",
  44993. extra: 999/944,
  44994. bottom: 26/1025
  44995. }
  44996. },
  44997. dick: {
  44998. height: math.unit(1.92, "feet"),
  44999. weight: math.unit(150, "lb"),
  45000. name: "Dick",
  45001. image: {
  45002. source: "./media/characters/fowler-karlsson/dick.svg"
  45003. }
  45004. },
  45005. },
  45006. [
  45007. {
  45008. name: "Normal",
  45009. height: math.unit(200, "cm"),
  45010. default: true
  45011. },
  45012. {
  45013. name: "Smaller Macro",
  45014. height: math.unit(90, "m")
  45015. },
  45016. {
  45017. name: "Macro",
  45018. height: math.unit(150, "m")
  45019. },
  45020. {
  45021. name: "Bigger Macro",
  45022. height: math.unit(300, "m")
  45023. },
  45024. ]
  45025. ))
  45026. characterMakers.push(() => makeCharacter(
  45027. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45028. {
  45029. side: {
  45030. height: math.unit(8 + 2/12, "feet"),
  45031. weight: math.unit(1, "tonne"),
  45032. name: "Side",
  45033. image: {
  45034. source: "./media/characters/rylide/side.svg",
  45035. extra: 1318/1034,
  45036. bottom: 106/1424
  45037. }
  45038. },
  45039. sitting: {
  45040. height: math.unit(303, "cm"),
  45041. weight: math.unit(1, "tonne"),
  45042. name: "Sitting",
  45043. image: {
  45044. source: "./media/characters/rylide/sitting.svg",
  45045. extra: 1303/1103,
  45046. bottom: 36/1339
  45047. }
  45048. },
  45049. },
  45050. [
  45051. {
  45052. name: "Normal",
  45053. height: math.unit(8 + 2/12, "feet"),
  45054. default: true
  45055. },
  45056. ]
  45057. ))
  45058. characterMakers.push(() => makeCharacter(
  45059. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45060. {
  45061. front: {
  45062. height: math.unit(5 + 10/12, "feet"),
  45063. weight: math.unit(160, "lb"),
  45064. name: "Front",
  45065. image: {
  45066. source: "./media/characters/pudask/front.svg",
  45067. extra: 1616/1590,
  45068. bottom: 161/1777
  45069. }
  45070. },
  45071. },
  45072. [
  45073. {
  45074. name: "Ferret Height",
  45075. height: math.unit(2 + 5/12, "feet")
  45076. },
  45077. {
  45078. name: "Canon Height",
  45079. height: math.unit(5 + 10/12, "feet"),
  45080. default: true
  45081. },
  45082. ]
  45083. ))
  45084. characterMakers.push(() => makeCharacter(
  45085. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45086. {
  45087. front: {
  45088. height: math.unit(3 + 6/12, "feet"),
  45089. weight: math.unit(60, "lb"),
  45090. name: "Front",
  45091. image: {
  45092. source: "./media/characters/ramita/front.svg",
  45093. extra: 1402/1232,
  45094. bottom: 62/1464
  45095. }
  45096. },
  45097. dressed: {
  45098. height: math.unit(3 + 6/12, "feet"),
  45099. weight: math.unit(60, "lb"),
  45100. name: "Dressed",
  45101. image: {
  45102. source: "./media/characters/ramita/dressed.svg",
  45103. extra: 1534/1249,
  45104. bottom: 50/1584
  45105. }
  45106. },
  45107. },
  45108. [
  45109. {
  45110. name: "Normal",
  45111. height: math.unit(3 + 6/12, "feet"),
  45112. default: true
  45113. },
  45114. ]
  45115. ))
  45116. characterMakers.push(() => makeCharacter(
  45117. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45118. {
  45119. front: {
  45120. height: math.unit(8, "feet"),
  45121. name: "Front",
  45122. image: {
  45123. source: "./media/characters/ark/front.svg",
  45124. extra: 772/693,
  45125. bottom: 45/817
  45126. }
  45127. },
  45128. },
  45129. [
  45130. {
  45131. name: "Normal",
  45132. height: math.unit(8, "feet"),
  45133. default: true
  45134. },
  45135. ]
  45136. ))
  45137. characterMakers.push(() => makeCharacter(
  45138. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45139. {
  45140. front: {
  45141. height: math.unit(6, "feet"),
  45142. weight: math.unit(250, "lb"),
  45143. volume: math.unit(5/8, "gallons"),
  45144. name: "Front",
  45145. image: {
  45146. source: "./media/characters/ludwig-horn/front.svg",
  45147. extra: 1782/1635,
  45148. bottom: 96/1878
  45149. }
  45150. },
  45151. back: {
  45152. height: math.unit(6, "feet"),
  45153. weight: math.unit(250, "lb"),
  45154. volume: math.unit(5/8, "gallons"),
  45155. name: "Back",
  45156. image: {
  45157. source: "./media/characters/ludwig-horn/back.svg",
  45158. extra: 1874/1729,
  45159. bottom: 27/1901
  45160. }
  45161. },
  45162. dick: {
  45163. height: math.unit(1.05, "feet"),
  45164. weight: math.unit(15, "lb"),
  45165. volume: math.unit(5/8, "gallons"),
  45166. name: "Dick",
  45167. image: {
  45168. source: "./media/characters/ludwig-horn/dick.svg"
  45169. }
  45170. },
  45171. },
  45172. [
  45173. {
  45174. name: "Small",
  45175. height: math.unit(6, "feet")
  45176. },
  45177. {
  45178. name: "Typical",
  45179. height: math.unit(12, "feet"),
  45180. default: true
  45181. },
  45182. {
  45183. name: "Building",
  45184. height: math.unit(80, "feet")
  45185. },
  45186. {
  45187. name: "Town",
  45188. height: math.unit(800, "feet")
  45189. },
  45190. {
  45191. name: "Kingdom",
  45192. height: math.unit(80000, "feet")
  45193. },
  45194. {
  45195. name: "Planet",
  45196. height: math.unit(8000000, "feet")
  45197. },
  45198. {
  45199. name: "Universe",
  45200. height: math.unit(8000000000, "feet")
  45201. },
  45202. {
  45203. name: "Transcended",
  45204. height: math.unit(8e27, "feet")
  45205. },
  45206. ]
  45207. ))
  45208. characterMakers.push(() => makeCharacter(
  45209. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45210. {
  45211. front: {
  45212. height: math.unit(5, "feet"),
  45213. weight: math.unit(50, "kg"),
  45214. name: "Front",
  45215. image: {
  45216. source: "./media/characters/biot-avery/front.svg",
  45217. extra: 1295/1232,
  45218. bottom: 86/1381
  45219. }
  45220. },
  45221. },
  45222. [
  45223. {
  45224. name: "Normal",
  45225. height: math.unit(5, "feet"),
  45226. default: true
  45227. },
  45228. ]
  45229. ))
  45230. characterMakers.push(() => makeCharacter(
  45231. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45232. {
  45233. front: {
  45234. height: math.unit(6, "feet"),
  45235. name: "Front",
  45236. image: {
  45237. source: "./media/characters/kitsune-kiro/front.svg",
  45238. extra: 1270/1158,
  45239. bottom: 42/1312
  45240. }
  45241. },
  45242. frontAlt: {
  45243. height: math.unit(6, "feet"),
  45244. name: "Front-alt",
  45245. image: {
  45246. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45247. extra: 1130/1081,
  45248. bottom: 36/1166
  45249. }
  45250. },
  45251. },
  45252. [
  45253. {
  45254. name: "Smol",
  45255. height: math.unit(3, "feet")
  45256. },
  45257. {
  45258. name: "Normal",
  45259. height: math.unit(6, "feet"),
  45260. default: true
  45261. },
  45262. ]
  45263. ))
  45264. characterMakers.push(() => makeCharacter(
  45265. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45266. {
  45267. front: {
  45268. height: math.unit(6, "feet"),
  45269. weight: math.unit(125, "lb"),
  45270. name: "Front",
  45271. image: {
  45272. source: "./media/characters/jack-thatcher/front.svg",
  45273. extra: 1474/1370,
  45274. bottom: 26/1500
  45275. }
  45276. },
  45277. back: {
  45278. height: math.unit(6, "feet"),
  45279. weight: math.unit(125, "lb"),
  45280. name: "Back",
  45281. image: {
  45282. source: "./media/characters/jack-thatcher/back.svg",
  45283. extra: 1489/1384,
  45284. bottom: 18/1507
  45285. }
  45286. },
  45287. },
  45288. [
  45289. {
  45290. name: "Normal",
  45291. height: math.unit(6, "feet"),
  45292. default: true
  45293. },
  45294. {
  45295. name: "Macro",
  45296. height: math.unit(75, "feet")
  45297. },
  45298. {
  45299. name: "Macro-er",
  45300. height: math.unit(250, "feet")
  45301. },
  45302. ]
  45303. ))
  45304. characterMakers.push(() => makeCharacter(
  45305. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45306. {
  45307. front: {
  45308. height: math.unit(7, "feet"),
  45309. weight: math.unit(110, "kg"),
  45310. name: "Front",
  45311. image: {
  45312. source: "./media/characters/max-hyper/front.svg",
  45313. extra: 1969/1881,
  45314. bottom: 49/2018
  45315. }
  45316. },
  45317. },
  45318. [
  45319. {
  45320. name: "Normal",
  45321. height: math.unit(7, "feet"),
  45322. default: true
  45323. },
  45324. ]
  45325. ))
  45326. characterMakers.push(() => makeCharacter(
  45327. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45328. {
  45329. front: {
  45330. height: math.unit(5 + 5/12, "feet"),
  45331. weight: math.unit(160, "lb"),
  45332. name: "Front",
  45333. image: {
  45334. source: "./media/characters/spook/front.svg",
  45335. extra: 794/791,
  45336. bottom: 54/848
  45337. }
  45338. },
  45339. back: {
  45340. height: math.unit(5 + 5/12, "feet"),
  45341. weight: math.unit(160, "lb"),
  45342. name: "Back",
  45343. image: {
  45344. source: "./media/characters/spook/back.svg",
  45345. extra: 812/798,
  45346. bottom: 32/844
  45347. }
  45348. },
  45349. },
  45350. [
  45351. {
  45352. name: "Normal",
  45353. height: math.unit(5 + 5/12, "feet"),
  45354. default: true
  45355. },
  45356. ]
  45357. ))
  45358. characterMakers.push(() => makeCharacter(
  45359. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45360. {
  45361. front: {
  45362. height: math.unit(18, "feet"),
  45363. name: "Front",
  45364. image: {
  45365. source: "./media/characters/xeaduulix/front.svg",
  45366. extra: 1380/1166,
  45367. bottom: 110/1490
  45368. }
  45369. },
  45370. back: {
  45371. height: math.unit(18, "feet"),
  45372. name: "Back",
  45373. image: {
  45374. source: "./media/characters/xeaduulix/back.svg",
  45375. extra: 1592/1170,
  45376. bottom: 128/1720
  45377. }
  45378. },
  45379. frontNsfw: {
  45380. height: math.unit(18, "feet"),
  45381. name: "Front (NSFW)",
  45382. image: {
  45383. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45384. extra: 1380/1166,
  45385. bottom: 110/1490
  45386. }
  45387. },
  45388. backNsfw: {
  45389. height: math.unit(18, "feet"),
  45390. name: "Back (NSFW)",
  45391. image: {
  45392. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45393. extra: 1592/1170,
  45394. bottom: 128/1720
  45395. }
  45396. },
  45397. },
  45398. [
  45399. {
  45400. name: "Normal",
  45401. height: math.unit(18, "feet"),
  45402. default: true
  45403. },
  45404. ]
  45405. ))
  45406. characterMakers.push(() => makeCharacter(
  45407. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45408. {
  45409. spreadWings: {
  45410. height: math.unit(20, "feet"),
  45411. name: "Spread Wings",
  45412. image: {
  45413. source: "./media/characters/fledge/spread-wings.svg",
  45414. extra: 693/635,
  45415. bottom: 26/719
  45416. }
  45417. },
  45418. front: {
  45419. height: math.unit(20, "feet"),
  45420. name: "Front",
  45421. image: {
  45422. source: "./media/characters/fledge/front.svg",
  45423. extra: 684/637,
  45424. bottom: 18/702
  45425. }
  45426. },
  45427. frontAlt: {
  45428. height: math.unit(20, "feet"),
  45429. name: "Front (Alt)",
  45430. image: {
  45431. source: "./media/characters/fledge/front-alt.svg",
  45432. extra: 708/664,
  45433. bottom: 13/721
  45434. }
  45435. },
  45436. back: {
  45437. height: math.unit(20, "feet"),
  45438. name: "Back",
  45439. image: {
  45440. source: "./media/characters/fledge/back.svg",
  45441. extra: 718/634,
  45442. bottom: 22/740
  45443. }
  45444. },
  45445. head: {
  45446. height: math.unit(5.55, "feet"),
  45447. name: "Head",
  45448. image: {
  45449. source: "./media/characters/fledge/head.svg"
  45450. }
  45451. },
  45452. headAlt: {
  45453. height: math.unit(5.1, "feet"),
  45454. name: "Head (Alt)",
  45455. image: {
  45456. source: "./media/characters/fledge/head-alt.svg"
  45457. }
  45458. },
  45459. },
  45460. [
  45461. {
  45462. name: "Small",
  45463. height: math.unit(6 + 2/12, "feet")
  45464. },
  45465. {
  45466. name: "Big",
  45467. height: math.unit(20, "feet"),
  45468. default: true
  45469. },
  45470. {
  45471. name: "Giant",
  45472. height: math.unit(100, "feet")
  45473. },
  45474. {
  45475. name: "Macro",
  45476. height: math.unit(200, "feet")
  45477. },
  45478. ]
  45479. ))
  45480. characterMakers.push(() => makeCharacter(
  45481. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45482. {
  45483. front: {
  45484. height: math.unit(1, "meter"),
  45485. name: "Front",
  45486. image: {
  45487. source: "./media/characters/atlas-morenai/front.svg",
  45488. extra: 1275/1043,
  45489. bottom: 19/1294
  45490. }
  45491. },
  45492. back: {
  45493. height: math.unit(1, "meter"),
  45494. name: "Back",
  45495. image: {
  45496. source: "./media/characters/atlas-morenai/back.svg",
  45497. extra: 1141/1001,
  45498. bottom: 25/1166
  45499. }
  45500. },
  45501. },
  45502. [
  45503. {
  45504. name: "Normal",
  45505. height: math.unit(1, "meter"),
  45506. default: true
  45507. },
  45508. {
  45509. name: "Magic-Infused",
  45510. height: math.unit(5, "meters")
  45511. },
  45512. ]
  45513. ))
  45514. characterMakers.push(() => makeCharacter(
  45515. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45516. {
  45517. front: {
  45518. height: math.unit(5, "meters"),
  45519. name: "Front",
  45520. image: {
  45521. source: "./media/characters/cintia/front.svg",
  45522. extra: 1312/1228,
  45523. bottom: 38/1350
  45524. }
  45525. },
  45526. back: {
  45527. height: math.unit(5, "meters"),
  45528. name: "Back",
  45529. image: {
  45530. source: "./media/characters/cintia/back.svg",
  45531. extra: 1260/1166,
  45532. bottom: 98/1358
  45533. }
  45534. },
  45535. frontDick: {
  45536. height: math.unit(5, "meters"),
  45537. name: "Front (Dick)",
  45538. image: {
  45539. source: "./media/characters/cintia/front-dick.svg",
  45540. extra: 1312/1228,
  45541. bottom: 38/1350
  45542. }
  45543. },
  45544. backDick: {
  45545. height: math.unit(5, "meters"),
  45546. name: "Back (Dick)",
  45547. image: {
  45548. source: "./media/characters/cintia/back-dick.svg",
  45549. extra: 1260/1166,
  45550. bottom: 98/1358
  45551. }
  45552. },
  45553. bust: {
  45554. height: math.unit(1.97, "meters"),
  45555. name: "Bust",
  45556. image: {
  45557. source: "./media/characters/cintia/bust.svg",
  45558. extra: 617/565,
  45559. bottom: 0/617
  45560. }
  45561. },
  45562. },
  45563. [
  45564. {
  45565. name: "Normal",
  45566. height: math.unit(5, "meters"),
  45567. default: true
  45568. },
  45569. ]
  45570. ))
  45571. characterMakers.push(() => makeCharacter(
  45572. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45573. {
  45574. side: {
  45575. height: math.unit(100, "feet"),
  45576. name: "Side",
  45577. image: {
  45578. source: "./media/characters/denora/side.svg",
  45579. extra: 875/803,
  45580. bottom: 9/884
  45581. }
  45582. },
  45583. },
  45584. [
  45585. {
  45586. name: "Standard",
  45587. height: math.unit(100, "feet"),
  45588. default: true
  45589. },
  45590. {
  45591. name: "Grand",
  45592. height: math.unit(1000, "feet")
  45593. },
  45594. {
  45595. name: "Conquering",
  45596. height: math.unit(10000, "feet")
  45597. },
  45598. ]
  45599. ))
  45600. characterMakers.push(() => makeCharacter(
  45601. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45602. {
  45603. dressed: {
  45604. height: math.unit(8 + 5/12, "feet"),
  45605. weight: math.unit(700, "lb"),
  45606. name: "Dressed",
  45607. image: {
  45608. source: "./media/characters/kiva/dressed.svg",
  45609. extra: 1102/1055,
  45610. bottom: 60/1162
  45611. }
  45612. },
  45613. nude: {
  45614. height: math.unit(8 + 5/12, "feet"),
  45615. weight: math.unit(700, "lb"),
  45616. name: "Nude",
  45617. image: {
  45618. source: "./media/characters/kiva/nude.svg",
  45619. extra: 1102/1055,
  45620. bottom: 60/1162
  45621. }
  45622. },
  45623. },
  45624. [
  45625. {
  45626. name: "Base Height",
  45627. height: math.unit(8 + 5/12, "feet"),
  45628. default: true
  45629. },
  45630. {
  45631. name: "Macro",
  45632. height: math.unit(100, "feet")
  45633. },
  45634. {
  45635. name: "Max",
  45636. height: math.unit(3280, "feet")
  45637. },
  45638. ]
  45639. ))
  45640. characterMakers.push(() => makeCharacter(
  45641. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45642. {
  45643. front: {
  45644. height: math.unit(6 + 8/12, "feet"),
  45645. weight: math.unit(250, "lb"),
  45646. name: "Front",
  45647. image: {
  45648. source: "./media/characters/ztragon/front.svg",
  45649. extra: 1825/1684,
  45650. bottom: 98/1923
  45651. }
  45652. },
  45653. },
  45654. [
  45655. {
  45656. name: "Normal",
  45657. height: math.unit(6 + 8/12, "feet"),
  45658. default: true
  45659. },
  45660. {
  45661. name: "Macro",
  45662. height: math.unit(80, "feet")
  45663. },
  45664. ]
  45665. ))
  45666. characterMakers.push(() => makeCharacter(
  45667. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45668. {
  45669. front: {
  45670. height: math.unit(10.4, "feet"),
  45671. weight: math.unit(2, "tons"),
  45672. name: "Front",
  45673. image: {
  45674. source: "./media/characters/yesenia/front.svg",
  45675. extra: 1479/1474,
  45676. bottom: 233/1712
  45677. }
  45678. },
  45679. },
  45680. [
  45681. {
  45682. name: "Normal",
  45683. height: math.unit(10.4, "feet"),
  45684. default: true
  45685. },
  45686. ]
  45687. ))
  45688. characterMakers.push(() => makeCharacter(
  45689. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45690. {
  45691. normal: {
  45692. height: math.unit(6 + 1/12, "feet"),
  45693. weight: math.unit(180, "lb"),
  45694. name: "Normal",
  45695. image: {
  45696. source: "./media/characters/leanne-lycheborne/normal.svg",
  45697. extra: 1748/1660,
  45698. bottom: 98/1846
  45699. }
  45700. },
  45701. were: {
  45702. height: math.unit(12, "feet"),
  45703. weight: math.unit(1600, "lb"),
  45704. name: "Were",
  45705. image: {
  45706. source: "./media/characters/leanne-lycheborne/were.svg",
  45707. extra: 1485/1432,
  45708. bottom: 66/1551
  45709. }
  45710. },
  45711. },
  45712. [
  45713. {
  45714. name: "Normal",
  45715. height: math.unit(6 + 1/12, "feet"),
  45716. default: true
  45717. },
  45718. ]
  45719. ))
  45720. characterMakers.push(() => makeCharacter(
  45721. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45722. {
  45723. side: {
  45724. height: math.unit(13, "feet"),
  45725. name: "Side",
  45726. image: {
  45727. source: "./media/characters/kira-tyler/side.svg",
  45728. extra: 693/393,
  45729. bottom: 58/751
  45730. }
  45731. },
  45732. },
  45733. [
  45734. {
  45735. name: "Normal",
  45736. height: math.unit(13, "feet"),
  45737. default: true
  45738. },
  45739. ]
  45740. ))
  45741. characterMakers.push(() => makeCharacter(
  45742. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45743. {
  45744. front: {
  45745. height: math.unit(10.3, "feet"),
  45746. weight: math.unit(150, "lb"),
  45747. name: "Front",
  45748. image: {
  45749. source: "./media/characters/blaze/front.svg",
  45750. extra: 1378/1286,
  45751. bottom: 172/1550
  45752. }
  45753. },
  45754. },
  45755. [
  45756. {
  45757. name: "Normal",
  45758. height: math.unit(10.3, "feet"),
  45759. default: true
  45760. },
  45761. ]
  45762. ))
  45763. characterMakers.push(() => makeCharacter(
  45764. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45765. {
  45766. side: {
  45767. height: math.unit(2, "meters"),
  45768. weight: math.unit(400, "kg"),
  45769. name: "Side",
  45770. image: {
  45771. source: "./media/characters/anu/side.svg",
  45772. extra: 506/394,
  45773. bottom: 18/524
  45774. }
  45775. },
  45776. },
  45777. [
  45778. {
  45779. name: "Humanoid",
  45780. height: math.unit(2, "meters")
  45781. },
  45782. {
  45783. name: "Normal",
  45784. height: math.unit(5, "meters"),
  45785. default: true
  45786. },
  45787. ]
  45788. ))
  45789. characterMakers.push(() => makeCharacter(
  45790. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45791. {
  45792. front: {
  45793. height: math.unit(5 + 5/12, "feet"),
  45794. weight: math.unit(170, "lb"),
  45795. name: "Front",
  45796. image: {
  45797. source: "./media/characters/synx-the-lynx/front.svg",
  45798. extra: 1893/1745,
  45799. bottom: 17/1910
  45800. }
  45801. },
  45802. side: {
  45803. height: math.unit(5 + 5/12, "feet"),
  45804. weight: math.unit(170, "lb"),
  45805. name: "Side",
  45806. image: {
  45807. source: "./media/characters/synx-the-lynx/side.svg",
  45808. extra: 1884/1740,
  45809. bottom: 39/1923
  45810. }
  45811. },
  45812. back: {
  45813. height: math.unit(5 + 5/12, "feet"),
  45814. weight: math.unit(170, "lb"),
  45815. name: "Back",
  45816. image: {
  45817. source: "./media/characters/synx-the-lynx/back.svg",
  45818. extra: 1903/1755,
  45819. bottom: 14/1917
  45820. }
  45821. },
  45822. },
  45823. [
  45824. {
  45825. name: "Normal",
  45826. height: math.unit(5 + 5/12, "feet"),
  45827. default: true
  45828. },
  45829. ]
  45830. ))
  45831. characterMakers.push(() => makeCharacter(
  45832. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45833. {
  45834. back: {
  45835. height: math.unit(15, "feet"),
  45836. name: "Back",
  45837. image: {
  45838. source: "./media/characters/nadezda-fex/back.svg",
  45839. extra: 1695/1481,
  45840. bottom: 25/1720
  45841. }
  45842. },
  45843. },
  45844. [
  45845. {
  45846. name: "Normal",
  45847. height: math.unit(15, "feet"),
  45848. default: true
  45849. },
  45850. {
  45851. name: "Macro",
  45852. height: math.unit(2.5, "miles")
  45853. },
  45854. {
  45855. name: "Goddess",
  45856. height: math.unit(2, "multiverses")
  45857. },
  45858. ]
  45859. ))
  45860. characterMakers.push(() => makeCharacter(
  45861. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45862. {
  45863. front: {
  45864. height: math.unit(216, "cm"),
  45865. name: "Front",
  45866. image: {
  45867. source: "./media/characters/lev/front.svg",
  45868. extra: 1728/1670,
  45869. bottom: 82/1810
  45870. }
  45871. },
  45872. back: {
  45873. height: math.unit(216, "cm"),
  45874. name: "Back",
  45875. image: {
  45876. source: "./media/characters/lev/back.svg",
  45877. extra: 1738/1675,
  45878. bottom: 24/1762
  45879. }
  45880. },
  45881. dressed: {
  45882. height: math.unit(216, "cm"),
  45883. name: "Dressed",
  45884. image: {
  45885. source: "./media/characters/lev/dressed.svg",
  45886. extra: 1397/1351,
  45887. bottom: 73/1470
  45888. }
  45889. },
  45890. head: {
  45891. height: math.unit(0.51, "meter"),
  45892. name: "Head",
  45893. image: {
  45894. source: "./media/characters/lev/head.svg"
  45895. }
  45896. },
  45897. },
  45898. [
  45899. {
  45900. name: "Normal",
  45901. height: math.unit(216, "cm"),
  45902. default: true
  45903. },
  45904. {
  45905. name: "Relatively Macro",
  45906. height: math.unit(80, "meters")
  45907. },
  45908. {
  45909. name: "Megamacro",
  45910. height: math.unit(21600, "meters")
  45911. },
  45912. {
  45913. name: "Megamacro+",
  45914. height: math.unit(64800, "meters")
  45915. },
  45916. ]
  45917. ))
  45918. characterMakers.push(() => makeCharacter(
  45919. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45920. {
  45921. front: {
  45922. height: math.unit(2, "meters"),
  45923. weight: math.unit(80, "kg"),
  45924. name: "Front",
  45925. image: {
  45926. source: "./media/characters/moka/front.svg",
  45927. extra: 1337/1255,
  45928. bottom: 58/1395
  45929. }
  45930. },
  45931. },
  45932. [
  45933. {
  45934. name: "Micro",
  45935. height: math.unit(15, "cm")
  45936. },
  45937. {
  45938. name: "Normal",
  45939. height: math.unit(2, "meters"),
  45940. default: true
  45941. },
  45942. {
  45943. name: "Macro",
  45944. height: math.unit(20, "meters"),
  45945. },
  45946. ]
  45947. ))
  45948. characterMakers.push(() => makeCharacter(
  45949. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45950. {
  45951. front: {
  45952. height: math.unit(9, "feet"),
  45953. weight: math.unit(240, "lb"),
  45954. name: "Front",
  45955. image: {
  45956. source: "./media/characters/kuzco/front.svg",
  45957. extra: 1593/1487,
  45958. bottom: 32/1625
  45959. }
  45960. },
  45961. side: {
  45962. height: math.unit(9, "feet"),
  45963. weight: math.unit(240, "lb"),
  45964. name: "Side",
  45965. image: {
  45966. source: "./media/characters/kuzco/side.svg",
  45967. extra: 1575/1485,
  45968. bottom: 30/1605
  45969. }
  45970. },
  45971. back: {
  45972. height: math.unit(9, "feet"),
  45973. weight: math.unit(240, "lb"),
  45974. name: "Back",
  45975. image: {
  45976. source: "./media/characters/kuzco/back.svg",
  45977. extra: 1603/1514,
  45978. bottom: 14/1617
  45979. }
  45980. },
  45981. },
  45982. [
  45983. {
  45984. name: "Normal",
  45985. height: math.unit(9, "feet"),
  45986. default: true
  45987. },
  45988. ]
  45989. ))
  45990. characterMakers.push(() => makeCharacter(
  45991. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45992. {
  45993. side: {
  45994. height: math.unit(2, "meters"),
  45995. weight: math.unit(300, "kg"),
  45996. name: "Side",
  45997. image: {
  45998. source: "./media/characters/ceruleus/side.svg",
  45999. extra: 1068/974,
  46000. bottom: 126/1194
  46001. }
  46002. },
  46003. },
  46004. [
  46005. {
  46006. name: "Normal",
  46007. height: math.unit(16, "meters"),
  46008. default: true
  46009. },
  46010. ]
  46011. ))
  46012. characterMakers.push(() => makeCharacter(
  46013. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46014. {
  46015. front: {
  46016. height: math.unit(9, "feet"),
  46017. weight: math.unit(500, "kg"),
  46018. name: "Front",
  46019. image: {
  46020. source: "./media/characters/acouya/front.svg",
  46021. extra: 1660/1473,
  46022. bottom: 28/1688
  46023. }
  46024. },
  46025. },
  46026. [
  46027. {
  46028. name: "Normal",
  46029. height: math.unit(9, "feet"),
  46030. default: true
  46031. },
  46032. ]
  46033. ))
  46034. characterMakers.push(() => makeCharacter(
  46035. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46036. {
  46037. front: {
  46038. height: math.unit(5 + 6/12, "feet"),
  46039. weight: math.unit(195, "lb"),
  46040. name: "Front",
  46041. image: {
  46042. source: "./media/characters/vant/front.svg",
  46043. extra: 1396/1320,
  46044. bottom: 20/1416
  46045. }
  46046. },
  46047. back: {
  46048. height: math.unit(5 + 6/12, "feet"),
  46049. weight: math.unit(195, "lb"),
  46050. name: "Back",
  46051. image: {
  46052. source: "./media/characters/vant/back.svg",
  46053. extra: 1396/1320,
  46054. bottom: 20/1416
  46055. }
  46056. },
  46057. maw: {
  46058. height: math.unit(0.75, "feet"),
  46059. name: "Maw",
  46060. image: {
  46061. source: "./media/characters/vant/maw.svg"
  46062. }
  46063. },
  46064. paw: {
  46065. height: math.unit(1.07, "feet"),
  46066. name: "Paw",
  46067. image: {
  46068. source: "./media/characters/vant/paw.svg"
  46069. }
  46070. },
  46071. },
  46072. [
  46073. {
  46074. name: "Micro",
  46075. height: math.unit(0.25, "inches")
  46076. },
  46077. {
  46078. name: "Normal",
  46079. height: math.unit(5 + 6/12, "feet"),
  46080. default: true
  46081. },
  46082. {
  46083. name: "Macro",
  46084. height: math.unit(75, "feet")
  46085. },
  46086. ]
  46087. ))
  46088. characterMakers.push(() => makeCharacter(
  46089. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46090. {
  46091. front: {
  46092. height: math.unit(30, "meters"),
  46093. weight: math.unit(363, "tons"),
  46094. name: "Front",
  46095. image: {
  46096. source: "./media/characters/ahra/front.svg",
  46097. extra: 1914/1814,
  46098. bottom: 46/1960
  46099. }
  46100. },
  46101. },
  46102. [
  46103. {
  46104. name: "Macro",
  46105. height: math.unit(30, "meters"),
  46106. default: true
  46107. },
  46108. ]
  46109. ))
  46110. characterMakers.push(() => makeCharacter(
  46111. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46112. {
  46113. undressed: {
  46114. height: math.unit(2, "m"),
  46115. weight: math.unit(250, "kg"),
  46116. name: "Undressed",
  46117. image: {
  46118. source: "./media/characters/coriander/undressed.svg",
  46119. extra: 1757/1606,
  46120. bottom: 107/1864
  46121. }
  46122. },
  46123. dressed: {
  46124. height: math.unit(2, "m"),
  46125. weight: math.unit(250, "kg"),
  46126. name: "Dressed",
  46127. image: {
  46128. source: "./media/characters/coriander/dressed.svg",
  46129. extra: 1757/1606,
  46130. bottom: 107/1864
  46131. }
  46132. },
  46133. },
  46134. [
  46135. {
  46136. name: "Normal",
  46137. height: math.unit(4, "meters"),
  46138. default: true
  46139. },
  46140. {
  46141. name: "XL",
  46142. height: math.unit(6, "meters")
  46143. },
  46144. {
  46145. name: "XXL",
  46146. height: math.unit(8, "meters")
  46147. },
  46148. ]
  46149. ))
  46150. characterMakers.push(() => makeCharacter(
  46151. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46152. {
  46153. front: {
  46154. height: math.unit(6, "feet"),
  46155. name: "Front",
  46156. image: {
  46157. source: "./media/characters/syrinx/front.svg",
  46158. extra: 1557/1259,
  46159. bottom: 171/1728
  46160. }
  46161. },
  46162. },
  46163. [
  46164. {
  46165. name: "Normal",
  46166. height: math.unit(6 + 3/12, "feet"),
  46167. default: true
  46168. },
  46169. ]
  46170. ))
  46171. characterMakers.push(() => makeCharacter(
  46172. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46173. {
  46174. front: {
  46175. height: math.unit(11 + 6/12, "feet"),
  46176. weight: math.unit(1.5, "tons"),
  46177. name: "Front",
  46178. image: {
  46179. source: "./media/characters/bor/front.svg",
  46180. extra: 1189/1109,
  46181. bottom: 170/1359
  46182. }
  46183. },
  46184. },
  46185. [
  46186. {
  46187. name: "Normal",
  46188. height: math.unit(11 + 6/12, "feet"),
  46189. default: true
  46190. },
  46191. {
  46192. name: "Macro",
  46193. height: math.unit(32 + 9/12, "feet")
  46194. },
  46195. ]
  46196. ))
  46197. characterMakers.push(() => makeCharacter(
  46198. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46199. {
  46200. anthro: {
  46201. height: math.unit(9, "feet"),
  46202. weight: math.unit(2076, "lb"),
  46203. name: "Anthro",
  46204. image: {
  46205. source: "./media/characters/abacus/anthro.svg",
  46206. extra: 1540/1494,
  46207. bottom: 233/1773
  46208. }
  46209. },
  46210. pigeon: {
  46211. height: math.unit(1, "feet"),
  46212. name: "Pigeon",
  46213. image: {
  46214. source: "./media/characters/abacus/pigeon.svg",
  46215. extra: 528/525,
  46216. bottom: 46/574
  46217. }
  46218. },
  46219. },
  46220. [
  46221. {
  46222. name: "Normal",
  46223. height: math.unit(9, "feet"),
  46224. default: true
  46225. },
  46226. ]
  46227. ))
  46228. characterMakers.push(() => makeCharacter(
  46229. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46230. {
  46231. side: {
  46232. height: math.unit(6, "feet"),
  46233. name: "Side",
  46234. image: {
  46235. source: "./media/characters/delkhan/side.svg",
  46236. extra: 1884/1786,
  46237. bottom: 308/2192
  46238. }
  46239. },
  46240. head: {
  46241. height: math.unit(3.38, "feet"),
  46242. name: "Head",
  46243. image: {
  46244. source: "./media/characters/delkhan/head.svg"
  46245. }
  46246. },
  46247. },
  46248. [
  46249. {
  46250. name: "Normal",
  46251. height: math.unit(72, "feet"),
  46252. default: true
  46253. },
  46254. {
  46255. name: "Giant",
  46256. height: math.unit(172, "feet")
  46257. },
  46258. ]
  46259. ))
  46260. characterMakers.push(() => makeCharacter(
  46261. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46262. {
  46263. standing: {
  46264. height: math.unit(6, "feet"),
  46265. name: "Standing",
  46266. image: {
  46267. source: "./media/characters/euchidat/standing.svg",
  46268. extra: 1612/1553,
  46269. bottom: 116/1728
  46270. }
  46271. },
  46272. leaning: {
  46273. height: math.unit(6, "feet"),
  46274. name: "Leaning",
  46275. image: {
  46276. source: "./media/characters/euchidat/leaning.svg",
  46277. extra: 1719/1674,
  46278. bottom: 27/1746
  46279. }
  46280. },
  46281. },
  46282. [
  46283. {
  46284. name: "Normal",
  46285. height: math.unit(175, "feet"),
  46286. default: true
  46287. },
  46288. {
  46289. name: "Megamacro",
  46290. height: math.unit(190, "miles")
  46291. },
  46292. {
  46293. name: "Gigamacro",
  46294. height: math.unit(190000, "miles")
  46295. },
  46296. ]
  46297. ))
  46298. characterMakers.push(() => makeCharacter(
  46299. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46300. {
  46301. front: {
  46302. height: math.unit(6, "feet"),
  46303. weight: math.unit(150, "lb"),
  46304. name: "Front",
  46305. image: {
  46306. source: "./media/characters/rebecca-stack/front.svg",
  46307. extra: 1256/1201,
  46308. bottom: 18/1274
  46309. }
  46310. },
  46311. },
  46312. [
  46313. {
  46314. name: "Normal",
  46315. height: math.unit(5 + 8/12, "feet"),
  46316. default: true
  46317. },
  46318. {
  46319. name: "Demolitionist",
  46320. height: math.unit(200, "feet")
  46321. },
  46322. {
  46323. name: "Out of Control",
  46324. height: math.unit(2, "miles")
  46325. },
  46326. {
  46327. name: "Giga",
  46328. height: math.unit(7200, "miles")
  46329. },
  46330. ]
  46331. ))
  46332. characterMakers.push(() => makeCharacter(
  46333. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46334. {
  46335. front: {
  46336. height: math.unit(6, "feet"),
  46337. weight: math.unit(150, "lb"),
  46338. name: "Front",
  46339. image: {
  46340. source: "./media/characters/jenny-cartwright/front.svg",
  46341. extra: 1384/1376,
  46342. bottom: 58/1442
  46343. }
  46344. },
  46345. },
  46346. [
  46347. {
  46348. name: "Normal",
  46349. height: math.unit(6 + 7/12, "feet"),
  46350. default: true
  46351. },
  46352. {
  46353. name: "Librarian",
  46354. height: math.unit(55, "feet")
  46355. },
  46356. {
  46357. name: "Sightseer",
  46358. height: math.unit(50, "miles")
  46359. },
  46360. {
  46361. name: "Giga",
  46362. height: math.unit(30000, "miles")
  46363. },
  46364. ]
  46365. ))
  46366. characterMakers.push(() => makeCharacter(
  46367. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46368. {
  46369. nude: {
  46370. height: math.unit(8, "feet"),
  46371. weight: math.unit(225, "lb"),
  46372. name: "Nude",
  46373. image: {
  46374. source: "./media/characters/marvy/nude.svg",
  46375. extra: 1900/1683,
  46376. bottom: 89/1989
  46377. }
  46378. },
  46379. dressed: {
  46380. height: math.unit(8, "feet"),
  46381. weight: math.unit(225, "lb"),
  46382. name: "Dressed",
  46383. image: {
  46384. source: "./media/characters/marvy/dressed.svg",
  46385. extra: 1900/1683,
  46386. bottom: 89/1989
  46387. }
  46388. },
  46389. head: {
  46390. height: math.unit(2.85, "feet"),
  46391. name: "Head",
  46392. image: {
  46393. source: "./media/characters/marvy/head.svg"
  46394. }
  46395. },
  46396. },
  46397. [
  46398. {
  46399. name: "Normal",
  46400. height: math.unit(8, "feet"),
  46401. default: true
  46402. },
  46403. ]
  46404. ))
  46405. characterMakers.push(() => makeCharacter(
  46406. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46407. {
  46408. front: {
  46409. height: math.unit(8, "feet"),
  46410. weight: math.unit(250, "lb"),
  46411. name: "Front",
  46412. image: {
  46413. source: "./media/characters/leah/front.svg",
  46414. extra: 1257/1149,
  46415. bottom: 109/1366
  46416. }
  46417. },
  46418. },
  46419. [
  46420. {
  46421. name: "Normal",
  46422. height: math.unit(8, "feet"),
  46423. default: true
  46424. },
  46425. {
  46426. name: "Minimacro",
  46427. height: math.unit(40, "feet")
  46428. },
  46429. {
  46430. name: "Macro",
  46431. height: math.unit(124, "feet")
  46432. },
  46433. {
  46434. name: "Megamacro",
  46435. height: math.unit(850, "feet")
  46436. },
  46437. ]
  46438. ))
  46439. characterMakers.push(() => makeCharacter(
  46440. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46441. {
  46442. side: {
  46443. height: math.unit(13 + 6/12, "feet"),
  46444. weight: math.unit(3200, "lb"),
  46445. name: "Side",
  46446. image: {
  46447. source: "./media/characters/alvir/side.svg",
  46448. extra: 896/589,
  46449. bottom: 26/922
  46450. }
  46451. },
  46452. },
  46453. [
  46454. {
  46455. name: "Normal",
  46456. height: math.unit(13 + 6/12, "feet"),
  46457. default: true
  46458. },
  46459. ]
  46460. ))
  46461. characterMakers.push(() => makeCharacter(
  46462. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46463. {
  46464. front: {
  46465. height: math.unit(5 + 4/12, "feet"),
  46466. weight: math.unit(236, "lb"),
  46467. name: "Front",
  46468. image: {
  46469. source: "./media/characters/zaina-khalil/front.svg",
  46470. extra: 1533/1485,
  46471. bottom: 94/1627
  46472. }
  46473. },
  46474. side: {
  46475. height: math.unit(5 + 4/12, "feet"),
  46476. weight: math.unit(236, "lb"),
  46477. name: "Side",
  46478. image: {
  46479. source: "./media/characters/zaina-khalil/side.svg",
  46480. extra: 1537/1498,
  46481. bottom: 66/1603
  46482. }
  46483. },
  46484. back: {
  46485. height: math.unit(5 + 4/12, "feet"),
  46486. weight: math.unit(236, "lb"),
  46487. name: "Back",
  46488. image: {
  46489. source: "./media/characters/zaina-khalil/back.svg",
  46490. extra: 1546/1494,
  46491. bottom: 89/1635
  46492. }
  46493. },
  46494. },
  46495. [
  46496. {
  46497. name: "Normal",
  46498. height: math.unit(5 + 4/12, "feet"),
  46499. default: true
  46500. },
  46501. ]
  46502. ))
  46503. characterMakers.push(() => makeCharacter(
  46504. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46505. {
  46506. side: {
  46507. height: math.unit(12, "feet"),
  46508. weight: math.unit(4000, "lb"),
  46509. name: "Side",
  46510. image: {
  46511. source: "./media/characters/terry/side.svg",
  46512. extra: 1518/1439,
  46513. bottom: 149/1667
  46514. }
  46515. },
  46516. },
  46517. [
  46518. {
  46519. name: "Normal",
  46520. height: math.unit(12, "feet"),
  46521. default: true
  46522. },
  46523. ]
  46524. ))
  46525. characterMakers.push(() => makeCharacter(
  46526. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46527. {
  46528. front: {
  46529. height: math.unit(12, "feet"),
  46530. weight: math.unit(1500, "lb"),
  46531. name: "Front",
  46532. image: {
  46533. source: "./media/characters/kahea/front.svg",
  46534. extra: 1722/1617,
  46535. bottom: 179/1901
  46536. }
  46537. },
  46538. },
  46539. [
  46540. {
  46541. name: "Normal",
  46542. height: math.unit(12, "feet"),
  46543. default: true
  46544. },
  46545. ]
  46546. ))
  46547. characterMakers.push(() => makeCharacter(
  46548. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46549. {
  46550. demonFront: {
  46551. height: math.unit(36, "feet"),
  46552. name: "Front",
  46553. image: {
  46554. source: "./media/characters/alex-xuria/demon-front.svg",
  46555. extra: 1705/1673,
  46556. bottom: 198/1903
  46557. },
  46558. form: "demon",
  46559. default: true
  46560. },
  46561. demonBack: {
  46562. height: math.unit(36, "feet"),
  46563. name: "Back",
  46564. image: {
  46565. source: "./media/characters/alex-xuria/demon-back.svg",
  46566. extra: 1725/1693,
  46567. bottom: 70/1795
  46568. },
  46569. form: "demon"
  46570. },
  46571. demonHead: {
  46572. height: math.unit(2.14, "meters"),
  46573. name: "Head",
  46574. image: {
  46575. source: "./media/characters/alex-xuria/demon-head.svg"
  46576. },
  46577. form: "demon"
  46578. },
  46579. demonHand: {
  46580. height: math.unit(1.61, "meters"),
  46581. name: "Hand",
  46582. image: {
  46583. source: "./media/characters/alex-xuria/demon-hand.svg"
  46584. },
  46585. form: "demon"
  46586. },
  46587. demonPaw: {
  46588. height: math.unit(1.35, "meters"),
  46589. name: "Paw",
  46590. image: {
  46591. source: "./media/characters/alex-xuria/demon-paw.svg"
  46592. },
  46593. form: "demon"
  46594. },
  46595. demonFoot: {
  46596. height: math.unit(2.2, "meters"),
  46597. name: "Foot",
  46598. image: {
  46599. source: "./media/characters/alex-xuria/demon-foot.svg"
  46600. },
  46601. form: "demon"
  46602. },
  46603. demonCock: {
  46604. height: math.unit(1.74, "meters"),
  46605. name: "Cock",
  46606. image: {
  46607. source: "./media/characters/alex-xuria/demon-cock.svg"
  46608. },
  46609. form: "demon"
  46610. },
  46611. demonTailClosed: {
  46612. height: math.unit(1.47, "meters"),
  46613. name: "Tail (Closed)",
  46614. image: {
  46615. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46616. },
  46617. form: "demon"
  46618. },
  46619. demonTailOpen: {
  46620. height: math.unit(2.85, "meters"),
  46621. name: "Tail (Open)",
  46622. image: {
  46623. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46624. },
  46625. form: "demon"
  46626. },
  46627. incubusFront: {
  46628. height: math.unit(12, "feet"),
  46629. name: "Front",
  46630. image: {
  46631. source: "./media/characters/alex-xuria/incubus-front.svg",
  46632. extra: 1754/1677,
  46633. bottom: 125/1879
  46634. },
  46635. form: "incubus",
  46636. default: true
  46637. },
  46638. incubusBack: {
  46639. height: math.unit(12, "feet"),
  46640. name: "Back",
  46641. image: {
  46642. source: "./media/characters/alex-xuria/incubus-back.svg",
  46643. extra: 1702/1647,
  46644. bottom: 30/1732
  46645. },
  46646. form: "incubus"
  46647. },
  46648. incubusHead: {
  46649. height: math.unit(3.45, "feet"),
  46650. name: "Head",
  46651. image: {
  46652. source: "./media/characters/alex-xuria/incubus-head.svg"
  46653. },
  46654. form: "incubus"
  46655. },
  46656. rabbitFront: {
  46657. height: math.unit(6, "feet"),
  46658. name: "Front",
  46659. image: {
  46660. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46661. extra: 1369/1349,
  46662. bottom: 45/1414
  46663. },
  46664. form: "rabbit",
  46665. default: true
  46666. },
  46667. rabbitSide: {
  46668. height: math.unit(6, "feet"),
  46669. name: "Side",
  46670. image: {
  46671. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46672. extra: 1370/1356,
  46673. bottom: 37/1407
  46674. },
  46675. form: "rabbit"
  46676. },
  46677. rabbitBack: {
  46678. height: math.unit(6, "feet"),
  46679. name: "Back",
  46680. image: {
  46681. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46682. extra: 1375/1358,
  46683. bottom: 43/1418
  46684. },
  46685. form: "rabbit"
  46686. },
  46687. },
  46688. [
  46689. {
  46690. name: "Normal",
  46691. height: math.unit(6, "feet"),
  46692. default: true,
  46693. form: "rabbit"
  46694. },
  46695. {
  46696. name: "Incubus",
  46697. height: math.unit(12, "feet"),
  46698. default: true,
  46699. form: "incubus"
  46700. },
  46701. {
  46702. name: "Demon",
  46703. height: math.unit(36, "feet"),
  46704. default: true,
  46705. form: "demon"
  46706. }
  46707. ],
  46708. {
  46709. "demon": {
  46710. name: "Demon",
  46711. default: true
  46712. },
  46713. "incubus": {
  46714. name: "Incubus",
  46715. },
  46716. "rabbit": {
  46717. name: "Rabbit"
  46718. }
  46719. }
  46720. ))
  46721. characterMakers.push(() => makeCharacter(
  46722. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46723. {
  46724. front: {
  46725. height: math.unit(7 + 5/12, "feet"),
  46726. weight: math.unit(510, "lb"),
  46727. name: "Front",
  46728. image: {
  46729. source: "./media/characters/syrup/front.svg",
  46730. extra: 932/916,
  46731. bottom: 26/958
  46732. }
  46733. },
  46734. },
  46735. [
  46736. {
  46737. name: "Normal",
  46738. height: math.unit(7 + 5/12, "feet"),
  46739. default: true
  46740. },
  46741. {
  46742. name: "Big",
  46743. height: math.unit(50, "feet")
  46744. },
  46745. {
  46746. name: "Macro",
  46747. height: math.unit(300, "feet")
  46748. },
  46749. {
  46750. name: "Megamacro",
  46751. height: math.unit(1, "mile")
  46752. },
  46753. ]
  46754. ))
  46755. characterMakers.push(() => makeCharacter(
  46756. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46757. {
  46758. front: {
  46759. height: math.unit(6 + 9/12, "feet"),
  46760. name: "Front",
  46761. image: {
  46762. source: "./media/characters/zeimne/front.svg",
  46763. extra: 1969/1806,
  46764. bottom: 53/2022
  46765. }
  46766. },
  46767. },
  46768. [
  46769. {
  46770. name: "Normal",
  46771. height: math.unit(6 + 9/12, "feet"),
  46772. default: true
  46773. },
  46774. {
  46775. name: "Giant",
  46776. height: math.unit(550, "feet")
  46777. },
  46778. {
  46779. name: "Mega",
  46780. height: math.unit(3, "miles")
  46781. },
  46782. {
  46783. name: "Giga",
  46784. height: math.unit(250, "miles")
  46785. },
  46786. {
  46787. name: "Tera",
  46788. height: math.unit(1, "AU")
  46789. },
  46790. ]
  46791. ))
  46792. characterMakers.push(() => makeCharacter(
  46793. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46794. {
  46795. front: {
  46796. height: math.unit(5 + 2/12, "feet"),
  46797. name: "Front",
  46798. image: {
  46799. source: "./media/characters/grar/front.svg",
  46800. extra: 1331/1119,
  46801. bottom: 60/1391
  46802. }
  46803. },
  46804. back: {
  46805. height: math.unit(5 + 2/12, "feet"),
  46806. name: "Back",
  46807. image: {
  46808. source: "./media/characters/grar/back.svg",
  46809. extra: 1385/1169,
  46810. bottom: 23/1408
  46811. }
  46812. },
  46813. },
  46814. [
  46815. {
  46816. name: "Normal",
  46817. height: math.unit(5 + 2/12, "feet"),
  46818. default: true
  46819. },
  46820. ]
  46821. ))
  46822. characterMakers.push(() => makeCharacter(
  46823. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46824. {
  46825. front: {
  46826. height: math.unit(13 + 7/12, "feet"),
  46827. weight: math.unit(2200, "lb"),
  46828. name: "Front",
  46829. image: {
  46830. source: "./media/characters/endraya/front.svg",
  46831. extra: 1289/1215,
  46832. bottom: 50/1339
  46833. }
  46834. },
  46835. nude: {
  46836. height: math.unit(13 + 7/12, "feet"),
  46837. weight: math.unit(2200, "lb"),
  46838. name: "Nude",
  46839. image: {
  46840. source: "./media/characters/endraya/nude.svg",
  46841. extra: 1247/1171,
  46842. bottom: 40/1287
  46843. }
  46844. },
  46845. head: {
  46846. height: math.unit(2.6, "feet"),
  46847. name: "Head",
  46848. image: {
  46849. source: "./media/characters/endraya/head.svg"
  46850. }
  46851. },
  46852. slit: {
  46853. height: math.unit(3.4, "feet"),
  46854. name: "Slit",
  46855. image: {
  46856. source: "./media/characters/endraya/slit.svg"
  46857. }
  46858. },
  46859. },
  46860. [
  46861. {
  46862. name: "Normal",
  46863. height: math.unit(13 + 7/12, "feet"),
  46864. default: true
  46865. },
  46866. {
  46867. name: "Macro",
  46868. height: math.unit(200, "feet")
  46869. },
  46870. ]
  46871. ))
  46872. characterMakers.push(() => makeCharacter(
  46873. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46874. {
  46875. front: {
  46876. height: math.unit(1.81, "meters"),
  46877. weight: math.unit(69, "kg"),
  46878. name: "Front",
  46879. image: {
  46880. source: "./media/characters/rodryana/front.svg",
  46881. extra: 2002/1921,
  46882. bottom: 53/2055
  46883. }
  46884. },
  46885. back: {
  46886. height: math.unit(1.81, "meters"),
  46887. weight: math.unit(69, "kg"),
  46888. name: "Back",
  46889. image: {
  46890. source: "./media/characters/rodryana/back.svg",
  46891. extra: 1993/1926,
  46892. bottom: 48/2041
  46893. }
  46894. },
  46895. maw: {
  46896. height: math.unit(0.19769417475, "meters"),
  46897. name: "Maw",
  46898. image: {
  46899. source: "./media/characters/rodryana/maw.svg"
  46900. }
  46901. },
  46902. slit: {
  46903. height: math.unit(0.31631067961, "meters"),
  46904. name: "Slit",
  46905. image: {
  46906. source: "./media/characters/rodryana/slit.svg"
  46907. }
  46908. },
  46909. },
  46910. [
  46911. {
  46912. name: "Normal",
  46913. height: math.unit(1.81, "meters")
  46914. },
  46915. {
  46916. name: "Mini Macro",
  46917. height: math.unit(181, "meters")
  46918. },
  46919. {
  46920. name: "Macro",
  46921. height: math.unit(452, "meters"),
  46922. default: true
  46923. },
  46924. {
  46925. name: "Mega Macro",
  46926. height: math.unit(1.375, "km")
  46927. },
  46928. {
  46929. name: "Giga Macro",
  46930. height: math.unit(13.575, "km")
  46931. },
  46932. ]
  46933. ))
  46934. characterMakers.push(() => makeCharacter(
  46935. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46936. {
  46937. front: {
  46938. height: math.unit(6, "feet"),
  46939. weight: math.unit(1000, "lb"),
  46940. name: "Front",
  46941. image: {
  46942. source: "./media/characters/asaya/front.svg",
  46943. extra: 1460/1200,
  46944. bottom: 71/1531
  46945. }
  46946. },
  46947. },
  46948. [
  46949. {
  46950. name: "Normal",
  46951. height: math.unit(8, "km"),
  46952. default: true
  46953. },
  46954. ]
  46955. ))
  46956. characterMakers.push(() => makeCharacter(
  46957. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46958. {
  46959. front: {
  46960. height: math.unit(3.5, "meters"),
  46961. name: "Front",
  46962. image: {
  46963. source: "./media/characters/sarzu-and-israz/front.svg",
  46964. extra: 1570/1558,
  46965. bottom: 150/1720
  46966. },
  46967. },
  46968. back: {
  46969. height: math.unit(3.5, "meters"),
  46970. name: "Back",
  46971. image: {
  46972. source: "./media/characters/sarzu-and-israz/back.svg",
  46973. extra: 1523/1509,
  46974. bottom: 132/1655
  46975. },
  46976. },
  46977. frontFemale: {
  46978. height: math.unit(3.5, "meters"),
  46979. name: "Front (Female)",
  46980. image: {
  46981. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46982. extra: 1570/1558,
  46983. bottom: 150/1720
  46984. },
  46985. },
  46986. frontHerm: {
  46987. height: math.unit(3.5, "meters"),
  46988. name: "Front (Herm)",
  46989. image: {
  46990. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46991. extra: 1570/1558,
  46992. bottom: 150/1720
  46993. },
  46994. },
  46995. },
  46996. [
  46997. {
  46998. name: "Normal",
  46999. height: math.unit(3.5, "meters"),
  47000. default: true,
  47001. },
  47002. {
  47003. name: "Macro",
  47004. height: math.unit(65.5, "meters"),
  47005. },
  47006. ],
  47007. ))
  47008. characterMakers.push(() => makeCharacter(
  47009. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47010. {
  47011. front: {
  47012. height: math.unit(6, "feet"),
  47013. weight: math.unit(250, "lb"),
  47014. name: "Front",
  47015. image: {
  47016. source: "./media/characters/zenimma/front.svg",
  47017. extra: 1346/1320,
  47018. bottom: 58/1404
  47019. }
  47020. },
  47021. back: {
  47022. height: math.unit(6, "feet"),
  47023. weight: math.unit(250, "lb"),
  47024. name: "Back",
  47025. image: {
  47026. source: "./media/characters/zenimma/back.svg",
  47027. extra: 1324/1308,
  47028. bottom: 44/1368
  47029. }
  47030. },
  47031. dick: {
  47032. height: math.unit(1.44, "feet"),
  47033. name: "Dick",
  47034. image: {
  47035. source: "./media/characters/zenimma/dick.svg"
  47036. }
  47037. },
  47038. },
  47039. [
  47040. {
  47041. name: "Canon Height",
  47042. height: math.unit(66, "miles"),
  47043. default: true
  47044. },
  47045. ]
  47046. ))
  47047. characterMakers.push(() => makeCharacter(
  47048. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47049. {
  47050. nude: {
  47051. height: math.unit(6, "feet"),
  47052. weight: math.unit(150, "lb"),
  47053. name: "Nude",
  47054. image: {
  47055. source: "./media/characters/shavon/nude.svg",
  47056. extra: 1242/1096,
  47057. bottom: 98/1340
  47058. }
  47059. },
  47060. dressed: {
  47061. height: math.unit(6, "feet"),
  47062. weight: math.unit(150, "lb"),
  47063. name: "Dressed",
  47064. image: {
  47065. source: "./media/characters/shavon/dressed.svg",
  47066. extra: 1242/1096,
  47067. bottom: 98/1340
  47068. }
  47069. },
  47070. },
  47071. [
  47072. {
  47073. name: "Macro",
  47074. height: math.unit(255, "feet"),
  47075. default: true
  47076. },
  47077. ]
  47078. ))
  47079. characterMakers.push(() => makeCharacter(
  47080. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47081. {
  47082. front: {
  47083. height: math.unit(6, "feet"),
  47084. name: "Front",
  47085. image: {
  47086. source: "./media/characters/steph/front.svg",
  47087. extra: 1430/1330,
  47088. bottom: 54/1484
  47089. }
  47090. },
  47091. },
  47092. [
  47093. {
  47094. name: "Normal",
  47095. height: math.unit(6, "feet"),
  47096. default: true
  47097. },
  47098. ]
  47099. ))
  47100. characterMakers.push(() => makeCharacter(
  47101. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47102. {
  47103. front: {
  47104. height: math.unit(9, "feet"),
  47105. weight: math.unit(400, "lb"),
  47106. name: "Front",
  47107. image: {
  47108. source: "./media/characters/kil'aman/front.svg",
  47109. extra: 1210/1159,
  47110. bottom: 109/1319
  47111. }
  47112. },
  47113. head: {
  47114. height: math.unit(2.14, "feet"),
  47115. name: "Head",
  47116. image: {
  47117. source: "./media/characters/kil'aman/head.svg"
  47118. }
  47119. },
  47120. maw: {
  47121. height: math.unit(1.21, "feet"),
  47122. name: "Maw",
  47123. image: {
  47124. source: "./media/characters/kil'aman/maw.svg"
  47125. }
  47126. },
  47127. foot: {
  47128. height: math.unit(1.7, "feet"),
  47129. name: "Foot",
  47130. image: {
  47131. source: "./media/characters/kil'aman/foot.svg"
  47132. }
  47133. },
  47134. dick: {
  47135. height: math.unit(2.1, "feet"),
  47136. name: "Dick",
  47137. image: {
  47138. source: "./media/characters/kil'aman/dick.svg"
  47139. }
  47140. },
  47141. },
  47142. [
  47143. {
  47144. name: "Normal",
  47145. height: math.unit(9, "feet")
  47146. },
  47147. {
  47148. name: "Canon Height",
  47149. height: math.unit(10, "miles"),
  47150. default: true
  47151. },
  47152. {
  47153. name: "Maximum",
  47154. height: math.unit(6e9, "miles")
  47155. },
  47156. ]
  47157. ))
  47158. characterMakers.push(() => makeCharacter(
  47159. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47160. {
  47161. front: {
  47162. height: math.unit(90, "feet"),
  47163. weight: math.unit(675000, "lb"),
  47164. name: "Front",
  47165. image: {
  47166. source: "./media/characters/qadan/front.svg",
  47167. extra: 1012/1004,
  47168. bottom: 78/1090
  47169. }
  47170. },
  47171. back: {
  47172. height: math.unit(90, "feet"),
  47173. weight: math.unit(675000, "lb"),
  47174. name: "Back",
  47175. image: {
  47176. source: "./media/characters/qadan/back.svg",
  47177. extra: 1042/1031,
  47178. bottom: 55/1097
  47179. }
  47180. },
  47181. armored: {
  47182. height: math.unit(90, "feet"),
  47183. weight: math.unit(675000, "lb"),
  47184. name: "Armored",
  47185. image: {
  47186. source: "./media/characters/qadan/armored.svg",
  47187. extra: 1047/1037,
  47188. bottom: 48/1095
  47189. }
  47190. },
  47191. },
  47192. [
  47193. {
  47194. name: "Normal",
  47195. height: math.unit(90, "feet"),
  47196. default: true
  47197. },
  47198. ]
  47199. ))
  47200. characterMakers.push(() => makeCharacter(
  47201. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47202. {
  47203. front: {
  47204. height: math.unit(6, "feet"),
  47205. weight: math.unit(225, "lb"),
  47206. name: "Front",
  47207. image: {
  47208. source: "./media/characters/brooke/front.svg",
  47209. extra: 1050/1010,
  47210. bottom: 66/1116
  47211. }
  47212. },
  47213. back: {
  47214. height: math.unit(6, "feet"),
  47215. weight: math.unit(225, "lb"),
  47216. name: "Back",
  47217. image: {
  47218. source: "./media/characters/brooke/back.svg",
  47219. extra: 1053/1013,
  47220. bottom: 41/1094
  47221. }
  47222. },
  47223. dressed: {
  47224. height: math.unit(6, "feet"),
  47225. weight: math.unit(225, "lb"),
  47226. name: "Dressed",
  47227. image: {
  47228. source: "./media/characters/brooke/dressed.svg",
  47229. extra: 1050/1010,
  47230. bottom: 66/1116
  47231. }
  47232. },
  47233. },
  47234. [
  47235. {
  47236. name: "Canon Height",
  47237. height: math.unit(500, "miles"),
  47238. default: true
  47239. },
  47240. ]
  47241. ))
  47242. characterMakers.push(() => makeCharacter(
  47243. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47244. {
  47245. front: {
  47246. height: math.unit(6 + 2/12, "feet"),
  47247. weight: math.unit(210, "lb"),
  47248. name: "Front",
  47249. image: {
  47250. source: "./media/characters/wubs/front.svg",
  47251. extra: 1345/1325,
  47252. bottom: 70/1415
  47253. }
  47254. },
  47255. back: {
  47256. height: math.unit(6 + 2/12, "feet"),
  47257. weight: math.unit(210, "lb"),
  47258. name: "Back",
  47259. image: {
  47260. source: "./media/characters/wubs/back.svg",
  47261. extra: 1296/1275,
  47262. bottom: 58/1354
  47263. }
  47264. },
  47265. },
  47266. [
  47267. {
  47268. name: "Normal",
  47269. height: math.unit(6 + 2/12, "feet"),
  47270. default: true
  47271. },
  47272. {
  47273. name: "Macro",
  47274. height: math.unit(1000, "feet")
  47275. },
  47276. {
  47277. name: "Megamacro",
  47278. height: math.unit(1, "mile")
  47279. },
  47280. ]
  47281. ))
  47282. characterMakers.push(() => makeCharacter(
  47283. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47284. {
  47285. front: {
  47286. height: math.unit(4, "feet"),
  47287. weight: math.unit(120, "lb"),
  47288. name: "Front",
  47289. image: {
  47290. source: "./media/characters/blue/front.svg",
  47291. extra: 1636/1525,
  47292. bottom: 43/1679
  47293. }
  47294. },
  47295. back: {
  47296. height: math.unit(4, "feet"),
  47297. weight: math.unit(120, "lb"),
  47298. name: "Back",
  47299. image: {
  47300. source: "./media/characters/blue/back.svg",
  47301. extra: 1660/1560,
  47302. bottom: 57/1717
  47303. }
  47304. },
  47305. paws: {
  47306. height: math.unit(0.826, "feet"),
  47307. name: "Paws",
  47308. image: {
  47309. source: "./media/characters/blue/paws.svg"
  47310. }
  47311. },
  47312. },
  47313. [
  47314. {
  47315. name: "Micro",
  47316. height: math.unit(3, "inches")
  47317. },
  47318. {
  47319. name: "Normal",
  47320. height: math.unit(4, "feet"),
  47321. default: true
  47322. },
  47323. {
  47324. name: "Femenine Form",
  47325. height: math.unit(14, "feet")
  47326. },
  47327. {
  47328. name: "Werebat Form",
  47329. height: math.unit(18, "feet")
  47330. },
  47331. ]
  47332. ))
  47333. characterMakers.push(() => makeCharacter(
  47334. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47335. {
  47336. female: {
  47337. height: math.unit(7 + 4/12, "feet"),
  47338. weight: math.unit(243, "lb"),
  47339. name: "Female",
  47340. image: {
  47341. source: "./media/characters/kaya/female.svg",
  47342. extra: 975/898,
  47343. bottom: 34/1009
  47344. }
  47345. },
  47346. herm: {
  47347. height: math.unit(7 + 4/12, "feet"),
  47348. weight: math.unit(243, "lb"),
  47349. name: "Herm",
  47350. image: {
  47351. source: "./media/characters/kaya/herm.svg",
  47352. extra: 975/898,
  47353. bottom: 34/1009
  47354. }
  47355. },
  47356. },
  47357. [
  47358. {
  47359. name: "Normal",
  47360. height: math.unit(7 + 4/12, "feet"),
  47361. default: true
  47362. },
  47363. ]
  47364. ))
  47365. characterMakers.push(() => makeCharacter(
  47366. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47367. {
  47368. female: {
  47369. height: math.unit(9 + 4/12, "feet"),
  47370. weight: math.unit(398, "lb"),
  47371. name: "Female",
  47372. image: {
  47373. source: "./media/characters/kassandra/female.svg",
  47374. extra: 908/839,
  47375. bottom: 61/969
  47376. }
  47377. },
  47378. intersex: {
  47379. height: math.unit(9 + 4/12, "feet"),
  47380. weight: math.unit(398, "lb"),
  47381. name: "Intersex",
  47382. image: {
  47383. source: "./media/characters/kassandra/intersex.svg",
  47384. extra: 908/839,
  47385. bottom: 61/969
  47386. }
  47387. },
  47388. },
  47389. [
  47390. {
  47391. name: "Normal",
  47392. height: math.unit(9 + 4/12, "feet"),
  47393. default: true
  47394. },
  47395. ]
  47396. ))
  47397. characterMakers.push(() => makeCharacter(
  47398. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47399. {
  47400. front: {
  47401. height: math.unit(3, "meters"),
  47402. name: "Front",
  47403. image: {
  47404. source: "./media/characters/amy/front.svg",
  47405. extra: 1380/1343,
  47406. bottom: 70/1450
  47407. }
  47408. },
  47409. back: {
  47410. height: math.unit(3, "meters"),
  47411. name: "Back",
  47412. image: {
  47413. source: "./media/characters/amy/back.svg",
  47414. extra: 1380/1347,
  47415. bottom: 66/1446
  47416. }
  47417. },
  47418. },
  47419. [
  47420. {
  47421. name: "Normal",
  47422. height: math.unit(3, "meters"),
  47423. default: true
  47424. },
  47425. ]
  47426. ))
  47427. characterMakers.push(() => makeCharacter(
  47428. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47429. {
  47430. side: {
  47431. height: math.unit(47, "cm"),
  47432. weight: math.unit(10.8, "kg"),
  47433. name: "Side",
  47434. image: {
  47435. source: "./media/characters/alphaschakal/side.svg",
  47436. extra: 1058/568,
  47437. bottom: 62/1120
  47438. }
  47439. },
  47440. back: {
  47441. height: math.unit(78, "cm"),
  47442. weight: math.unit(10.8, "kg"),
  47443. name: "Back",
  47444. image: {
  47445. source: "./media/characters/alphaschakal/back.svg",
  47446. extra: 1102/942,
  47447. bottom: 185/1287
  47448. }
  47449. },
  47450. head: {
  47451. height: math.unit(28, "cm"),
  47452. name: "Head",
  47453. image: {
  47454. source: "./media/characters/alphaschakal/head.svg",
  47455. extra: 696/508,
  47456. bottom: 0/696
  47457. }
  47458. },
  47459. paw: {
  47460. height: math.unit(16, "cm"),
  47461. name: "Paw",
  47462. image: {
  47463. source: "./media/characters/alphaschakal/paw.svg"
  47464. }
  47465. },
  47466. },
  47467. [
  47468. {
  47469. name: "Normal",
  47470. height: math.unit(47, "cm"),
  47471. default: true
  47472. },
  47473. {
  47474. name: "Macro",
  47475. height: math.unit(340, "cm")
  47476. },
  47477. ]
  47478. ))
  47479. characterMakers.push(() => makeCharacter(
  47480. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47481. {
  47482. front: {
  47483. height: math.unit(36, "earths"),
  47484. name: "Front",
  47485. image: {
  47486. source: "./media/characters/ecobyss/front.svg",
  47487. extra: 1282/1215,
  47488. bottom: 11/1293
  47489. }
  47490. },
  47491. back: {
  47492. height: math.unit(36, "earths"),
  47493. name: "Back",
  47494. image: {
  47495. source: "./media/characters/ecobyss/back.svg",
  47496. extra: 1291/1222,
  47497. bottom: 8/1299
  47498. }
  47499. },
  47500. },
  47501. [
  47502. {
  47503. name: "Normal",
  47504. height: math.unit(36, "earths"),
  47505. default: true
  47506. },
  47507. ]
  47508. ))
  47509. characterMakers.push(() => makeCharacter(
  47510. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47511. {
  47512. front: {
  47513. height: math.unit(12, "feet"),
  47514. name: "Front",
  47515. image: {
  47516. source: "./media/characters/vasuk/front.svg",
  47517. extra: 1326/1207,
  47518. bottom: 64/1390
  47519. }
  47520. },
  47521. },
  47522. [
  47523. {
  47524. name: "Normal",
  47525. height: math.unit(12, "feet"),
  47526. default: true
  47527. },
  47528. ]
  47529. ))
  47530. characterMakers.push(() => makeCharacter(
  47531. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47532. {
  47533. side: {
  47534. height: math.unit(100, "feet"),
  47535. name: "Side",
  47536. image: {
  47537. source: "./media/characters/linneaus/side.svg",
  47538. extra: 987/807,
  47539. bottom: 47/1034
  47540. }
  47541. },
  47542. },
  47543. [
  47544. {
  47545. name: "Macro",
  47546. height: math.unit(100, "feet"),
  47547. default: true
  47548. },
  47549. ]
  47550. ))
  47551. characterMakers.push(() => makeCharacter(
  47552. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47553. {
  47554. front: {
  47555. height: math.unit(8, "feet"),
  47556. weight: math.unit(1200, "lb"),
  47557. name: "Front",
  47558. image: {
  47559. source: "./media/characters/nyterious-daligdig/front.svg",
  47560. extra: 1284/1094,
  47561. bottom: 84/1368
  47562. }
  47563. },
  47564. back: {
  47565. height: math.unit(8, "feet"),
  47566. weight: math.unit(1200, "lb"),
  47567. name: "Back",
  47568. image: {
  47569. source: "./media/characters/nyterious-daligdig/back.svg",
  47570. extra: 1301/1121,
  47571. bottom: 129/1430
  47572. }
  47573. },
  47574. mouth: {
  47575. height: math.unit(1.464, "feet"),
  47576. name: "Mouth",
  47577. image: {
  47578. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47579. }
  47580. },
  47581. },
  47582. [
  47583. {
  47584. name: "Small",
  47585. height: math.unit(8, "feet"),
  47586. default: true
  47587. },
  47588. {
  47589. name: "Normal",
  47590. height: math.unit(15, "feet")
  47591. },
  47592. {
  47593. name: "Macro",
  47594. height: math.unit(90, "feet")
  47595. },
  47596. ]
  47597. ))
  47598. characterMakers.push(() => makeCharacter(
  47599. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47600. {
  47601. front: {
  47602. height: math.unit(7 + 4/12, "feet"),
  47603. weight: math.unit(252, "lb"),
  47604. name: "Front",
  47605. image: {
  47606. source: "./media/characters/bandel/front.svg",
  47607. extra: 1946/1775,
  47608. bottom: 26/1972
  47609. }
  47610. },
  47611. back: {
  47612. height: math.unit(7 + 4/12, "feet"),
  47613. weight: math.unit(252, "lb"),
  47614. name: "Back",
  47615. image: {
  47616. source: "./media/characters/bandel/back.svg",
  47617. extra: 1940/1770,
  47618. bottom: 25/1965
  47619. }
  47620. },
  47621. maw: {
  47622. height: math.unit(2.15, "feet"),
  47623. name: "Maw",
  47624. image: {
  47625. source: "./media/characters/bandel/maw.svg"
  47626. }
  47627. },
  47628. stomach: {
  47629. height: math.unit(1.95, "feet"),
  47630. name: "Stomach",
  47631. image: {
  47632. source: "./media/characters/bandel/stomach.svg"
  47633. }
  47634. },
  47635. },
  47636. [
  47637. {
  47638. name: "Normal",
  47639. height: math.unit(7 + 4/12, "feet"),
  47640. default: true
  47641. },
  47642. ]
  47643. ))
  47644. characterMakers.push(() => makeCharacter(
  47645. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47646. {
  47647. front: {
  47648. height: math.unit(10 + 5/12, "feet"),
  47649. weight: math.unit(773.5, "kg"),
  47650. name: "Front",
  47651. image: {
  47652. source: "./media/characters/zed/front.svg",
  47653. extra: 987/941,
  47654. bottom: 52/1039
  47655. }
  47656. },
  47657. },
  47658. [
  47659. {
  47660. name: "Short",
  47661. height: math.unit(5 + 4/12, "feet")
  47662. },
  47663. {
  47664. name: "Average",
  47665. height: math.unit(10 + 5/12, "feet"),
  47666. default: true
  47667. },
  47668. {
  47669. name: "Mini-Macro",
  47670. height: math.unit(24 + 9/12, "feet")
  47671. },
  47672. {
  47673. name: "Macro",
  47674. height: math.unit(249, "feet")
  47675. },
  47676. {
  47677. name: "Mega-Macro",
  47678. height: math.unit(12490, "feet")
  47679. },
  47680. {
  47681. name: "Giga-Macro",
  47682. height: math.unit(24.9, "miles")
  47683. },
  47684. {
  47685. name: "Tera-Macro",
  47686. height: math.unit(24900, "miles")
  47687. },
  47688. {
  47689. name: "Cosmic Scale",
  47690. height: math.unit(38.9, "lightyears")
  47691. },
  47692. {
  47693. name: "Universal Scale",
  47694. height: math.unit(138e12, "lightyears")
  47695. },
  47696. ]
  47697. ))
  47698. characterMakers.push(() => makeCharacter(
  47699. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47700. {
  47701. front: {
  47702. height: math.unit(1561, "inches"),
  47703. name: "Front",
  47704. image: {
  47705. source: "./media/characters/ivan/front.svg",
  47706. extra: 1126/1071,
  47707. bottom: 26/1152
  47708. }
  47709. },
  47710. back: {
  47711. height: math.unit(1561, "inches"),
  47712. name: "Back",
  47713. image: {
  47714. source: "./media/characters/ivan/back.svg",
  47715. extra: 1134/1079,
  47716. bottom: 30/1164
  47717. }
  47718. },
  47719. },
  47720. [
  47721. {
  47722. name: "Normal",
  47723. height: math.unit(1561, "inches"),
  47724. default: true
  47725. },
  47726. ]
  47727. ))
  47728. characterMakers.push(() => makeCharacter(
  47729. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47730. {
  47731. front: {
  47732. height: math.unit(5 + 7/12, "feet"),
  47733. weight: math.unit(150, "lb"),
  47734. name: "Front",
  47735. image: {
  47736. source: "./media/characters/robin-arctic-hare/front.svg",
  47737. extra: 1148/974,
  47738. bottom: 20/1168
  47739. }
  47740. },
  47741. },
  47742. [
  47743. {
  47744. name: "Normal",
  47745. height: math.unit(5 + 7/12, "feet"),
  47746. default: true
  47747. },
  47748. ]
  47749. ))
  47750. characterMakers.push(() => makeCharacter(
  47751. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47752. {
  47753. side: {
  47754. height: math.unit(5, "feet"),
  47755. name: "Side",
  47756. image: {
  47757. source: "./media/characters/birch/side.svg",
  47758. extra: 985/796,
  47759. bottom: 111/1096
  47760. }
  47761. },
  47762. },
  47763. [
  47764. {
  47765. name: "Normal",
  47766. height: math.unit(5, "feet"),
  47767. default: true
  47768. },
  47769. ]
  47770. ))
  47771. characterMakers.push(() => makeCharacter(
  47772. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47773. {
  47774. front: {
  47775. height: math.unit(4, "feet"),
  47776. name: "Front",
  47777. image: {
  47778. source: "./media/characters/rasp/front.svg",
  47779. extra: 561/478,
  47780. bottom: 74/635
  47781. }
  47782. },
  47783. },
  47784. [
  47785. {
  47786. name: "Normal",
  47787. height: math.unit(4, "feet"),
  47788. default: true
  47789. },
  47790. ]
  47791. ))
  47792. characterMakers.push(() => makeCharacter(
  47793. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47794. {
  47795. front: {
  47796. height: math.unit(4 + 6/12, "feet"),
  47797. name: "Front",
  47798. image: {
  47799. source: "./media/characters/agatha/front.svg",
  47800. extra: 947/933,
  47801. bottom: 42/989
  47802. }
  47803. },
  47804. back: {
  47805. height: math.unit(4 + 6/12, "feet"),
  47806. name: "Back",
  47807. image: {
  47808. source: "./media/characters/agatha/back.svg",
  47809. extra: 935/922,
  47810. bottom: 48/983
  47811. }
  47812. },
  47813. },
  47814. [
  47815. {
  47816. name: "Normal",
  47817. height: math.unit(4 + 6 /12, "feet"),
  47818. default: true
  47819. },
  47820. {
  47821. name: "Max Size",
  47822. height: math.unit(500, "feet")
  47823. },
  47824. ]
  47825. ))
  47826. characterMakers.push(() => makeCharacter(
  47827. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47828. {
  47829. side: {
  47830. height: math.unit(30, "feet"),
  47831. name: "Side",
  47832. image: {
  47833. source: "./media/characters/roggy/side.svg",
  47834. extra: 909/643,
  47835. bottom: 63/972
  47836. }
  47837. },
  47838. lounging: {
  47839. height: math.unit(20, "feet"),
  47840. name: "Lounging",
  47841. image: {
  47842. source: "./media/characters/roggy/lounging.svg",
  47843. extra: 643/479,
  47844. bottom: 145/788
  47845. }
  47846. },
  47847. handpaw: {
  47848. height: math.unit(13.1, "feet"),
  47849. name: "Handpaw",
  47850. image: {
  47851. source: "./media/characters/roggy/handpaw.svg"
  47852. }
  47853. },
  47854. footpaw: {
  47855. height: math.unit(15.8, "feet"),
  47856. name: "Footpaw",
  47857. image: {
  47858. source: "./media/characters/roggy/footpaw.svg"
  47859. }
  47860. },
  47861. },
  47862. [
  47863. {
  47864. name: "Menacing",
  47865. height: math.unit(30, "feet"),
  47866. default: true
  47867. },
  47868. ]
  47869. ))
  47870. characterMakers.push(() => makeCharacter(
  47871. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47872. {
  47873. front: {
  47874. height: math.unit(5 + 7/12, "feet"),
  47875. weight: math.unit(135, "lb"),
  47876. name: "Front",
  47877. image: {
  47878. source: "./media/characters/naomi/front.svg",
  47879. extra: 1209/1154,
  47880. bottom: 129/1338
  47881. }
  47882. },
  47883. back: {
  47884. height: math.unit(5 + 7/12, "feet"),
  47885. weight: math.unit(135, "lb"),
  47886. name: "Back",
  47887. image: {
  47888. source: "./media/characters/naomi/back.svg",
  47889. extra: 1252/1190,
  47890. bottom: 23/1275
  47891. }
  47892. },
  47893. },
  47894. [
  47895. {
  47896. name: "Normal",
  47897. height: math.unit(5 + 7 /12, "feet"),
  47898. default: true
  47899. },
  47900. ]
  47901. ))
  47902. characterMakers.push(() => makeCharacter(
  47903. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47904. {
  47905. side: {
  47906. height: math.unit(35, "meters"),
  47907. name: "Side",
  47908. image: {
  47909. source: "./media/characters/kimpi/side.svg",
  47910. extra: 419/382,
  47911. bottom: 63/482
  47912. }
  47913. },
  47914. hand: {
  47915. height: math.unit(8.96, "meters"),
  47916. name: "Hand",
  47917. image: {
  47918. source: "./media/characters/kimpi/hand.svg"
  47919. }
  47920. },
  47921. },
  47922. [
  47923. {
  47924. name: "Normal",
  47925. height: math.unit(35, "meters"),
  47926. default: true
  47927. },
  47928. ]
  47929. ))
  47930. characterMakers.push(() => makeCharacter(
  47931. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47932. {
  47933. front: {
  47934. height: math.unit(4 + 4/12, "feet"),
  47935. name: "Front",
  47936. image: {
  47937. source: "./media/characters/pepper-purrloin/front.svg",
  47938. extra: 1141/1024,
  47939. bottom: 21/1162
  47940. }
  47941. },
  47942. },
  47943. [
  47944. {
  47945. name: "Normal",
  47946. height: math.unit(4 + 4/12, "feet"),
  47947. default: true
  47948. },
  47949. ]
  47950. ))
  47951. characterMakers.push(() => makeCharacter(
  47952. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47953. {
  47954. front: {
  47955. height: math.unit(6 + 2/12, "feet"),
  47956. name: "Front",
  47957. image: {
  47958. source: "./media/characters/raphael/front.svg",
  47959. extra: 1101/962,
  47960. bottom: 59/1160
  47961. }
  47962. },
  47963. },
  47964. [
  47965. {
  47966. name: "Normal",
  47967. height: math.unit(6 + 2/12, "feet"),
  47968. default: true
  47969. },
  47970. ]
  47971. ))
  47972. characterMakers.push(() => makeCharacter(
  47973. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47974. {
  47975. front: {
  47976. height: math.unit(6, "feet"),
  47977. weight: math.unit(150, "lb"),
  47978. name: "Front",
  47979. image: {
  47980. source: "./media/characters/victor-williams/front.svg",
  47981. extra: 1894/1825,
  47982. bottom: 67/1961
  47983. }
  47984. },
  47985. },
  47986. [
  47987. {
  47988. name: "Normal",
  47989. height: math.unit(6, "feet"),
  47990. default: true
  47991. },
  47992. ]
  47993. ))
  47994. characterMakers.push(() => makeCharacter(
  47995. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47996. {
  47997. front: {
  47998. height: math.unit(5 + 8/12, "feet"),
  47999. weight: math.unit(150, "lb"),
  48000. name: "Front",
  48001. image: {
  48002. source: "./media/characters/rachel/front.svg",
  48003. extra: 1902/1787,
  48004. bottom: 46/1948
  48005. }
  48006. },
  48007. },
  48008. [
  48009. {
  48010. name: "Base Height",
  48011. height: math.unit(5 + 8/12, "feet"),
  48012. default: true
  48013. },
  48014. {
  48015. name: "Macro",
  48016. height: math.unit(200, "feet")
  48017. },
  48018. {
  48019. name: "Mega Macro",
  48020. height: math.unit(1, "mile")
  48021. },
  48022. {
  48023. name: "Giga Macro",
  48024. height: math.unit(1500, "miles")
  48025. },
  48026. {
  48027. name: "Tera Macro",
  48028. height: math.unit(8000, "miles")
  48029. },
  48030. {
  48031. name: "Tera Macro+",
  48032. height: math.unit(2e5, "miles")
  48033. },
  48034. ]
  48035. ))
  48036. characterMakers.push(() => makeCharacter(
  48037. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48038. {
  48039. front: {
  48040. height: math.unit(6.5, "feet"),
  48041. name: "Front",
  48042. image: {
  48043. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48044. extra: 860/819,
  48045. bottom: 307/1167
  48046. }
  48047. },
  48048. back: {
  48049. height: math.unit(6.5, "feet"),
  48050. name: "Back",
  48051. image: {
  48052. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48053. extra: 880/837,
  48054. bottom: 395/1275
  48055. }
  48056. },
  48057. sleeping: {
  48058. height: math.unit(2.79, "feet"),
  48059. name: "Sleeping",
  48060. image: {
  48061. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48062. extra: 465/383,
  48063. bottom: 263/728
  48064. }
  48065. },
  48066. maw: {
  48067. height: math.unit(2.52, "feet"),
  48068. name: "Maw",
  48069. image: {
  48070. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48071. }
  48072. },
  48073. },
  48074. [
  48075. {
  48076. name: "Normal",
  48077. height: math.unit(6.5, "feet"),
  48078. default: true
  48079. },
  48080. ]
  48081. ))
  48082. characterMakers.push(() => makeCharacter(
  48083. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48084. {
  48085. front: {
  48086. height: math.unit(5, "feet"),
  48087. name: "Front",
  48088. image: {
  48089. source: "./media/characters/nova-nerium/front.svg",
  48090. extra: 1548/1392,
  48091. bottom: 374/1922
  48092. }
  48093. },
  48094. back: {
  48095. height: math.unit(5, "feet"),
  48096. name: "Back",
  48097. image: {
  48098. source: "./media/characters/nova-nerium/back.svg",
  48099. extra: 1658/1468,
  48100. bottom: 257/1915
  48101. }
  48102. },
  48103. },
  48104. [
  48105. {
  48106. name: "Normal",
  48107. height: math.unit(5, "feet"),
  48108. default: true
  48109. },
  48110. ]
  48111. ))
  48112. characterMakers.push(() => makeCharacter(
  48113. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48114. {
  48115. front: {
  48116. height: math.unit(5 + 4/12, "feet"),
  48117. name: "Front",
  48118. image: {
  48119. source: "./media/characters/ashe-pyriph/front.svg",
  48120. extra: 1935/1747,
  48121. bottom: 60/1995
  48122. }
  48123. },
  48124. },
  48125. [
  48126. {
  48127. name: "Normal",
  48128. height: math.unit(5 + 4/12, "feet"),
  48129. default: true
  48130. },
  48131. ]
  48132. ))
  48133. characterMakers.push(() => makeCharacter(
  48134. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48135. {
  48136. front: {
  48137. height: math.unit(8.7, "feet"),
  48138. name: "Front",
  48139. image: {
  48140. source: "./media/characters/flicker-wisp/front.svg",
  48141. extra: 1835/1613,
  48142. bottom: 449/2284
  48143. }
  48144. },
  48145. side: {
  48146. height: math.unit(8.7, "feet"),
  48147. name: "Side",
  48148. image: {
  48149. source: "./media/characters/flicker-wisp/side.svg",
  48150. extra: 1841/1642,
  48151. bottom: 336/2177
  48152. },
  48153. default: true
  48154. },
  48155. maw: {
  48156. height: math.unit(3.35, "feet"),
  48157. name: "Maw",
  48158. image: {
  48159. source: "./media/characters/flicker-wisp/maw.svg",
  48160. extra: 2338/1506,
  48161. bottom: 0/2338
  48162. }
  48163. },
  48164. ovipositor: {
  48165. height: math.unit(4.95, "feet"),
  48166. name: "Ovipositor",
  48167. image: {
  48168. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48169. }
  48170. },
  48171. egg: {
  48172. height: math.unit(0.385, "feet"),
  48173. weight: math.unit(2, "lb"),
  48174. name: "Egg",
  48175. image: {
  48176. source: "./media/characters/flicker-wisp/egg.svg"
  48177. }
  48178. },
  48179. },
  48180. [
  48181. {
  48182. name: "Normal",
  48183. height: math.unit(8.7, "feet"),
  48184. default: true
  48185. },
  48186. ]
  48187. ))
  48188. characterMakers.push(() => makeCharacter(
  48189. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48190. {
  48191. side: {
  48192. height: math.unit(11, "feet"),
  48193. name: "Side",
  48194. image: {
  48195. source: "./media/characters/faefnul/side.svg",
  48196. extra: 1100/1007,
  48197. bottom: 0/1100
  48198. }
  48199. },
  48200. },
  48201. [
  48202. {
  48203. name: "Normal",
  48204. height: math.unit(11, "feet"),
  48205. default: true
  48206. },
  48207. ]
  48208. ))
  48209. characterMakers.push(() => makeCharacter(
  48210. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48211. {
  48212. front: {
  48213. height: math.unit(6 + 2/12, "feet"),
  48214. name: "Front",
  48215. image: {
  48216. source: "./media/characters/shady/front.svg",
  48217. extra: 502/461,
  48218. bottom: 9/511
  48219. }
  48220. },
  48221. kneeling: {
  48222. height: math.unit(4.6, "feet"),
  48223. name: "Kneeling",
  48224. image: {
  48225. source: "./media/characters/shady/kneeling.svg",
  48226. extra: 1328/1219,
  48227. bottom: 117/1445
  48228. }
  48229. },
  48230. maw: {
  48231. height: math.unit(2, "feet"),
  48232. name: "Maw",
  48233. image: {
  48234. source: "./media/characters/shady/maw.svg"
  48235. }
  48236. },
  48237. },
  48238. [
  48239. {
  48240. name: "Nano",
  48241. height: math.unit(1, "mm")
  48242. },
  48243. {
  48244. name: "Micro",
  48245. height: math.unit(12, "mm")
  48246. },
  48247. {
  48248. name: "Tiny",
  48249. height: math.unit(3, "inches")
  48250. },
  48251. {
  48252. name: "Normal",
  48253. height: math.unit(6 + 2/12, "feet"),
  48254. default: true
  48255. },
  48256. {
  48257. name: "Big",
  48258. height: math.unit(15, "feet")
  48259. },
  48260. {
  48261. name: "Macro",
  48262. height: math.unit(150, "feet")
  48263. },
  48264. {
  48265. name: "Titanic",
  48266. height: math.unit(500, "feet")
  48267. },
  48268. ]
  48269. ))
  48270. characterMakers.push(() => makeCharacter(
  48271. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48272. {
  48273. front: {
  48274. height: math.unit(12, "feet"),
  48275. name: "Front",
  48276. image: {
  48277. source: "./media/characters/fenrir/front.svg",
  48278. extra: 968/875,
  48279. bottom: 22/990
  48280. }
  48281. },
  48282. },
  48283. [
  48284. {
  48285. name: "Big",
  48286. height: math.unit(12, "feet"),
  48287. default: true
  48288. },
  48289. ]
  48290. ))
  48291. characterMakers.push(() => makeCharacter(
  48292. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48293. {
  48294. front: {
  48295. height: math.unit(5 + 4/12, "feet"),
  48296. name: "Front",
  48297. image: {
  48298. source: "./media/characters/makar/front.svg",
  48299. extra: 1181/1112,
  48300. bottom: 78/1259
  48301. }
  48302. },
  48303. },
  48304. [
  48305. {
  48306. name: "Normal",
  48307. height: math.unit(5 + 4/12, "feet"),
  48308. default: true
  48309. },
  48310. ]
  48311. ))
  48312. characterMakers.push(() => makeCharacter(
  48313. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48314. {
  48315. front: {
  48316. height: math.unit(5 + 7/12, "feet"),
  48317. name: "Front",
  48318. image: {
  48319. source: "./media/characters/callow/front.svg",
  48320. extra: 1482/1304,
  48321. bottom: 23/1505
  48322. }
  48323. },
  48324. back: {
  48325. height: math.unit(5 + 7/12, "feet"),
  48326. name: "Back",
  48327. image: {
  48328. source: "./media/characters/callow/back.svg",
  48329. extra: 1484/1296,
  48330. bottom: 25/1509
  48331. }
  48332. },
  48333. },
  48334. [
  48335. {
  48336. name: "Micro",
  48337. height: math.unit(3, "inches"),
  48338. default: true
  48339. },
  48340. {
  48341. name: "Normal",
  48342. height: math.unit(5 + 7/12, "feet")
  48343. },
  48344. ]
  48345. ))
  48346. characterMakers.push(() => makeCharacter(
  48347. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48348. {
  48349. front: {
  48350. height: math.unit(6 + 2/12, "feet"),
  48351. name: "Front",
  48352. image: {
  48353. source: "./media/characters/natel/front.svg",
  48354. extra: 1833/1692,
  48355. bottom: 166/1999
  48356. }
  48357. },
  48358. },
  48359. [
  48360. {
  48361. name: "Normal",
  48362. height: math.unit(6 + 2/12, "feet"),
  48363. default: true
  48364. },
  48365. ]
  48366. ))
  48367. characterMakers.push(() => makeCharacter(
  48368. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48369. {
  48370. front: {
  48371. height: math.unit(1.75, "meters"),
  48372. name: "Front",
  48373. image: {
  48374. source: "./media/characters/misu/front.svg",
  48375. extra: 1690/1558,
  48376. bottom: 234/1924
  48377. }
  48378. },
  48379. back: {
  48380. height: math.unit(1.75, "meters"),
  48381. name: "Back",
  48382. image: {
  48383. source: "./media/characters/misu/back.svg",
  48384. extra: 1762/1618,
  48385. bottom: 146/1908
  48386. }
  48387. },
  48388. frontNude: {
  48389. height: math.unit(1.75, "meters"),
  48390. name: "Front (Nude)",
  48391. image: {
  48392. source: "./media/characters/misu/front-nude.svg",
  48393. extra: 1690/1558,
  48394. bottom: 234/1924
  48395. }
  48396. },
  48397. backNude: {
  48398. height: math.unit(1.75, "meters"),
  48399. name: "Back (Nude)",
  48400. image: {
  48401. source: "./media/characters/misu/back-nude.svg",
  48402. extra: 1762/1618,
  48403. bottom: 146/1908
  48404. }
  48405. },
  48406. frontErect: {
  48407. height: math.unit(1.75, "meters"),
  48408. name: "Front (Erect)",
  48409. image: {
  48410. source: "./media/characters/misu/front-erect.svg",
  48411. extra: 1690/1558,
  48412. bottom: 234/1924
  48413. }
  48414. },
  48415. maw: {
  48416. height: math.unit(0.47, "meters"),
  48417. name: "Maw",
  48418. image: {
  48419. source: "./media/characters/misu/maw.svg"
  48420. }
  48421. },
  48422. head: {
  48423. height: math.unit(0.35, "meters"),
  48424. name: "Head",
  48425. image: {
  48426. source: "./media/characters/misu/head.svg"
  48427. }
  48428. },
  48429. rear: {
  48430. height: math.unit(0.47, "meters"),
  48431. name: "Rear",
  48432. image: {
  48433. source: "./media/characters/misu/rear.svg"
  48434. }
  48435. },
  48436. },
  48437. [
  48438. {
  48439. name: "Normal",
  48440. height: math.unit(1.75, "meters")
  48441. },
  48442. {
  48443. name: "Not good for the people",
  48444. height: math.unit(42, "meters")
  48445. },
  48446. {
  48447. name: "Not good for the neighborhood",
  48448. height: math.unit(135, "meters")
  48449. },
  48450. {
  48451. name: "Bit bigger problem",
  48452. height: math.unit(380, "meters"),
  48453. default: true
  48454. },
  48455. {
  48456. name: "Not good for the city",
  48457. height: math.unit(1.5, "km")
  48458. },
  48459. {
  48460. name: "Not good for the county",
  48461. height: math.unit(5.5, "km")
  48462. },
  48463. {
  48464. name: "Not good for the state",
  48465. height: math.unit(25, "km")
  48466. },
  48467. {
  48468. name: "Not good for the country",
  48469. height: math.unit(125, "km")
  48470. },
  48471. {
  48472. name: "Not good for the continent",
  48473. height: math.unit(2100, "km")
  48474. },
  48475. {
  48476. name: "Not good for the planet",
  48477. height: math.unit(35000, "km")
  48478. },
  48479. {
  48480. name: "Just no",
  48481. height: math.unit(8.5e18, "km")
  48482. },
  48483. ]
  48484. ))
  48485. characterMakers.push(() => makeCharacter(
  48486. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48487. {
  48488. front: {
  48489. height: math.unit(6.5, "feet"),
  48490. name: "Front",
  48491. image: {
  48492. source: "./media/characters/poppy/front.svg",
  48493. extra: 1878/1812,
  48494. bottom: 43/1921
  48495. }
  48496. },
  48497. feet: {
  48498. height: math.unit(1.06, "feet"),
  48499. name: "Feet",
  48500. image: {
  48501. source: "./media/characters/poppy/feet.svg",
  48502. extra: 1083/1083,
  48503. bottom: 87/1170
  48504. }
  48505. },
  48506. },
  48507. [
  48508. {
  48509. name: "Human",
  48510. height: math.unit(6.5, "feet")
  48511. },
  48512. {
  48513. name: "Default",
  48514. height: math.unit(300, "feet"),
  48515. default: true
  48516. },
  48517. {
  48518. name: "Huge",
  48519. height: math.unit(850, "feet")
  48520. },
  48521. {
  48522. name: "Mega",
  48523. height: math.unit(8000, "feet")
  48524. },
  48525. {
  48526. name: "Giga",
  48527. height: math.unit(300, "miles")
  48528. },
  48529. ]
  48530. ))
  48531. characterMakers.push(() => makeCharacter(
  48532. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48533. {
  48534. bipedal: {
  48535. height: math.unit(7, "feet"),
  48536. name: "Bipedal",
  48537. image: {
  48538. source: "./media/characters/zener/bipedal.svg",
  48539. extra: 874/805,
  48540. bottom: 109/983
  48541. }
  48542. },
  48543. quadrupedal: {
  48544. height: math.unit(4.64, "feet"),
  48545. name: "Quadrupedal",
  48546. image: {
  48547. source: "./media/characters/zener/quadrupedal.svg",
  48548. extra: 638/507,
  48549. bottom: 190/828
  48550. }
  48551. },
  48552. cock: {
  48553. height: math.unit(18, "inches"),
  48554. name: "Cock",
  48555. image: {
  48556. source: "./media/characters/zener/cock.svg"
  48557. }
  48558. },
  48559. },
  48560. [
  48561. {
  48562. name: "Normal",
  48563. height: math.unit(7, "feet"),
  48564. default: true
  48565. },
  48566. ]
  48567. ))
  48568. characterMakers.push(() => makeCharacter(
  48569. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48570. {
  48571. nude: {
  48572. height: math.unit(5 + 6/12, "feet"),
  48573. name: "Nude",
  48574. image: {
  48575. source: "./media/characters/charlie-dog/nude.svg",
  48576. extra: 768/734,
  48577. bottom: 26/794
  48578. }
  48579. },
  48580. dressed: {
  48581. height: math.unit(5 + 6/12, "feet"),
  48582. name: "Dressed",
  48583. image: {
  48584. source: "./media/characters/charlie-dog/dressed.svg",
  48585. extra: 768/734,
  48586. bottom: 26/794
  48587. }
  48588. },
  48589. },
  48590. [
  48591. {
  48592. name: "Normal",
  48593. height: math.unit(5 + 6/12, "feet"),
  48594. default: true
  48595. },
  48596. ]
  48597. ))
  48598. characterMakers.push(() => makeCharacter(
  48599. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48600. {
  48601. front: {
  48602. height: math.unit(6 + 4/12, "feet"),
  48603. name: "Front",
  48604. image: {
  48605. source: "./media/characters/ir'istrasz/front.svg",
  48606. extra: 1014/977,
  48607. bottom: 65/1079
  48608. }
  48609. },
  48610. back: {
  48611. height: math.unit(6 + 4/12, "feet"),
  48612. name: "Back",
  48613. image: {
  48614. source: "./media/characters/ir'istrasz/back.svg",
  48615. extra: 1024/992,
  48616. bottom: 34/1058
  48617. }
  48618. },
  48619. },
  48620. [
  48621. {
  48622. name: "Normal",
  48623. height: math.unit(6 + 4/12, "feet"),
  48624. default: true
  48625. },
  48626. ]
  48627. ))
  48628. characterMakers.push(() => makeCharacter(
  48629. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48630. {
  48631. front: {
  48632. height: math.unit(5 + 8/12, "feet"),
  48633. name: "Front",
  48634. image: {
  48635. source: "./media/characters/dee-ditto/front.svg",
  48636. extra: 1874/1785,
  48637. bottom: 68/1942
  48638. }
  48639. },
  48640. back: {
  48641. height: math.unit(5 + 8/12, "feet"),
  48642. name: "Back",
  48643. image: {
  48644. source: "./media/characters/dee-ditto/back.svg",
  48645. extra: 1870/1783,
  48646. bottom: 77/1947
  48647. }
  48648. },
  48649. },
  48650. [
  48651. {
  48652. name: "Normal",
  48653. height: math.unit(5 + 8/12, "feet"),
  48654. default: true
  48655. },
  48656. ]
  48657. ))
  48658. characterMakers.push(() => makeCharacter(
  48659. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48660. {
  48661. front: {
  48662. height: math.unit(7 + 6/12, "feet"),
  48663. name: "Front",
  48664. image: {
  48665. source: "./media/characters/fey/front.svg",
  48666. extra: 995/979,
  48667. bottom: 30/1025
  48668. }
  48669. },
  48670. back: {
  48671. height: math.unit(7 + 6/12, "feet"),
  48672. name: "Back",
  48673. image: {
  48674. source: "./media/characters/fey/back.svg",
  48675. extra: 1079/1008,
  48676. bottom: 5/1084
  48677. }
  48678. },
  48679. dressed: {
  48680. height: math.unit(7 + 6/12, "feet"),
  48681. name: "Dressed",
  48682. image: {
  48683. source: "./media/characters/fey/dressed.svg",
  48684. extra: 995/979,
  48685. bottom: 30/1025
  48686. }
  48687. },
  48688. },
  48689. [
  48690. {
  48691. name: "Normal",
  48692. height: math.unit(7 + 6/12, "feet"),
  48693. default: true
  48694. },
  48695. ]
  48696. ))
  48697. characterMakers.push(() => makeCharacter(
  48698. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48699. {
  48700. standing: {
  48701. height: math.unit(17, "feet"),
  48702. name: "Standing",
  48703. image: {
  48704. source: "./media/characters/aster/standing.svg",
  48705. extra: 1798/1598,
  48706. bottom: 117/1915
  48707. }
  48708. },
  48709. },
  48710. [
  48711. {
  48712. name: "Normal",
  48713. height: math.unit(17, "feet"),
  48714. default: true
  48715. },
  48716. {
  48717. name: "Homewrecker",
  48718. height: math.unit(95, "feet")
  48719. },
  48720. {
  48721. name: "Planet Devourer",
  48722. height: math.unit(1008000, "miles")
  48723. },
  48724. ]
  48725. ))
  48726. characterMakers.push(() => makeCharacter(
  48727. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48728. {
  48729. front: {
  48730. height: math.unit(6 + 5/12, "feet"),
  48731. weight: math.unit(265, "lb"),
  48732. name: "Front",
  48733. image: {
  48734. source: "./media/characters/devon-childs/front.svg",
  48735. extra: 1795/1721,
  48736. bottom: 41/1836
  48737. }
  48738. },
  48739. side: {
  48740. height: math.unit(6 + 5/12, "feet"),
  48741. weight: math.unit(265, "lb"),
  48742. name: "Side",
  48743. image: {
  48744. source: "./media/characters/devon-childs/side.svg",
  48745. extra: 1812/1738,
  48746. bottom: 30/1842
  48747. }
  48748. },
  48749. back: {
  48750. height: math.unit(6 + 5/12, "feet"),
  48751. weight: math.unit(265, "lb"),
  48752. name: "Back",
  48753. image: {
  48754. source: "./media/characters/devon-childs/back.svg",
  48755. extra: 1808/1735,
  48756. bottom: 23/1831
  48757. }
  48758. },
  48759. hand: {
  48760. height: math.unit(1.464, "feet"),
  48761. name: "Hand",
  48762. image: {
  48763. source: "./media/characters/devon-childs/hand.svg"
  48764. }
  48765. },
  48766. foot: {
  48767. height: math.unit(1.6, "feet"),
  48768. name: "Foot",
  48769. image: {
  48770. source: "./media/characters/devon-childs/foot.svg"
  48771. }
  48772. },
  48773. },
  48774. [
  48775. {
  48776. name: "Micro",
  48777. height: math.unit(7, "cm")
  48778. },
  48779. {
  48780. name: "Normal",
  48781. height: math.unit(6 + 5/12, "feet"),
  48782. default: true
  48783. },
  48784. {
  48785. name: "Macro",
  48786. height: math.unit(154, "feet")
  48787. },
  48788. ]
  48789. ))
  48790. characterMakers.push(() => makeCharacter(
  48791. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48792. {
  48793. front: {
  48794. height: math.unit(6, "feet"),
  48795. weight: math.unit(180, "lb"),
  48796. name: "Front",
  48797. image: {
  48798. source: "./media/characters/lydemox-vir/front.svg",
  48799. extra: 1632/1435,
  48800. bottom: 58/1690
  48801. }
  48802. },
  48803. frontSFW: {
  48804. height: math.unit(6, "feet"),
  48805. weight: math.unit(180, "lb"),
  48806. name: "Front (SFW)",
  48807. image: {
  48808. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48809. extra: 1632/1435,
  48810. bottom: 58/1690
  48811. }
  48812. },
  48813. back: {
  48814. height: math.unit(6, "feet"),
  48815. weight: math.unit(180, "lb"),
  48816. name: "Back",
  48817. image: {
  48818. source: "./media/characters/lydemox-vir/back.svg",
  48819. extra: 1593/1408,
  48820. bottom: 31/1624
  48821. }
  48822. },
  48823. paw: {
  48824. height: math.unit(1.85, "feet"),
  48825. name: "Paw",
  48826. image: {
  48827. source: "./media/characters/lydemox-vir/paw.svg"
  48828. }
  48829. },
  48830. dick: {
  48831. height: math.unit(1.8, "feet"),
  48832. name: "Dick",
  48833. image: {
  48834. source: "./media/characters/lydemox-vir/dick.svg"
  48835. }
  48836. },
  48837. },
  48838. [
  48839. {
  48840. name: "Macro",
  48841. height: math.unit(100, "feet"),
  48842. default: true
  48843. },
  48844. {
  48845. name: "Teramacro",
  48846. height: math.unit(1, "earth")
  48847. },
  48848. {
  48849. name: "Planetary",
  48850. height: math.unit(20, "earths")
  48851. },
  48852. ]
  48853. ))
  48854. characterMakers.push(() => makeCharacter(
  48855. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48856. {
  48857. front: {
  48858. height: math.unit(15 + 8/12, "feet"),
  48859. weight: math.unit(1237, "kg"),
  48860. name: "Front",
  48861. image: {
  48862. source: "./media/characters/mia/front.svg",
  48863. extra: 1573/1446,
  48864. bottom: 58/1631
  48865. }
  48866. },
  48867. },
  48868. [
  48869. {
  48870. name: "Small",
  48871. height: math.unit(9 + 5/12, "feet")
  48872. },
  48873. {
  48874. name: "Normal",
  48875. height: math.unit(15 + 8/12, "feet"),
  48876. default: true
  48877. },
  48878. ]
  48879. ))
  48880. characterMakers.push(() => makeCharacter(
  48881. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48882. {
  48883. front: {
  48884. height: math.unit(10 + 6/12, "feet"),
  48885. weight: math.unit(1.3, "tons"),
  48886. name: "Front",
  48887. image: {
  48888. source: "./media/characters/mr-graves/front.svg",
  48889. extra: 1779/1695,
  48890. bottom: 198/1977
  48891. }
  48892. },
  48893. },
  48894. [
  48895. {
  48896. name: "Normal",
  48897. height: math.unit(10 + 6 /12, "feet"),
  48898. default: true
  48899. },
  48900. ]
  48901. ))
  48902. characterMakers.push(() => makeCharacter(
  48903. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48904. {
  48905. dressedFront: {
  48906. height: math.unit(5 + 8/12, "feet"),
  48907. weight: math.unit(125, "lb"),
  48908. name: "Dressed (Front)",
  48909. image: {
  48910. source: "./media/characters/jess/dressed-front.svg",
  48911. extra: 1176/1152,
  48912. bottom: 42/1218
  48913. }
  48914. },
  48915. dressedSide: {
  48916. height: math.unit(5 + 8/12, "feet"),
  48917. weight: math.unit(125, "lb"),
  48918. name: "Dressed (Side)",
  48919. image: {
  48920. source: "./media/characters/jess/dressed-side.svg",
  48921. extra: 1204/1190,
  48922. bottom: 6/1210
  48923. }
  48924. },
  48925. nudeFront: {
  48926. height: math.unit(5 + 8/12, "feet"),
  48927. weight: math.unit(125, "lb"),
  48928. name: "Nude (Front)",
  48929. image: {
  48930. source: "./media/characters/jess/nude-front.svg",
  48931. extra: 1176/1152,
  48932. bottom: 42/1218
  48933. }
  48934. },
  48935. nudeSide: {
  48936. height: math.unit(5 + 8/12, "feet"),
  48937. weight: math.unit(125, "lb"),
  48938. name: "Nude (Side)",
  48939. image: {
  48940. source: "./media/characters/jess/nude-side.svg",
  48941. extra: 1204/1190,
  48942. bottom: 6/1210
  48943. }
  48944. },
  48945. organsFront: {
  48946. height: math.unit(2.83799342105, "feet"),
  48947. name: "Organs (Front)",
  48948. image: {
  48949. source: "./media/characters/jess/organs-front.svg"
  48950. }
  48951. },
  48952. organsSide: {
  48953. height: math.unit(2.64225290474, "feet"),
  48954. name: "Organs (Side)",
  48955. image: {
  48956. source: "./media/characters/jess/organs-side.svg"
  48957. }
  48958. },
  48959. digestiveTractFront: {
  48960. height: math.unit(2.8106580871, "feet"),
  48961. name: "Digestive Tract (Front)",
  48962. image: {
  48963. source: "./media/characters/jess/digestive-tract-front.svg"
  48964. }
  48965. },
  48966. digestiveTractSide: {
  48967. height: math.unit(2.54365045014, "feet"),
  48968. name: "Digestive Tract (Side)",
  48969. image: {
  48970. source: "./media/characters/jess/digestive-tract-side.svg"
  48971. }
  48972. },
  48973. respiratorySystemFront: {
  48974. height: math.unit(1.11196233456, "feet"),
  48975. name: "Respiratory System (Front)",
  48976. image: {
  48977. source: "./media/characters/jess/respiratory-system-front.svg"
  48978. }
  48979. },
  48980. respiratorySystemSide: {
  48981. height: math.unit(0.89327966297, "feet"),
  48982. name: "Respiratory System (Side)",
  48983. image: {
  48984. source: "./media/characters/jess/respiratory-system-side.svg"
  48985. }
  48986. },
  48987. urinaryTractFront: {
  48988. height: math.unit(1.16126356186, "feet"),
  48989. name: "Urinary Tract (Front)",
  48990. image: {
  48991. source: "./media/characters/jess/urinary-tract-front.svg"
  48992. }
  48993. },
  48994. urinaryTractSide: {
  48995. height: math.unit(1.20910039627, "feet"),
  48996. name: "Urinary Tract (Side)",
  48997. image: {
  48998. source: "./media/characters/jess/urinary-tract-side.svg"
  48999. }
  49000. },
  49001. reproductiveOrgansFront: {
  49002. height: math.unit(0.48422591566, "feet"),
  49003. name: "Reproductive Organs (Front)",
  49004. image: {
  49005. source: "./media/characters/jess/reproductive-organs-front.svg"
  49006. }
  49007. },
  49008. reproductiveOrgansSide: {
  49009. height: math.unit(0.61553314481, "feet"),
  49010. name: "Reproductive Organs (Side)",
  49011. image: {
  49012. source: "./media/characters/jess/reproductive-organs-side.svg"
  49013. }
  49014. },
  49015. breastsFront: {
  49016. height: math.unit(0.47690395121, "feet"),
  49017. name: "Breasts (Front)",
  49018. image: {
  49019. source: "./media/characters/jess/breasts-front.svg"
  49020. }
  49021. },
  49022. breastsSide: {
  49023. height: math.unit(0.30556998307, "feet"),
  49024. name: "Breasts (Side)",
  49025. image: {
  49026. source: "./media/characters/jess/breasts-side.svg"
  49027. }
  49028. },
  49029. heartFront: {
  49030. height: math.unit(0.53011022622, "feet"),
  49031. name: "Heart (Front)",
  49032. image: {
  49033. source: "./media/characters/jess/heart-front.svg"
  49034. }
  49035. },
  49036. heartSide: {
  49037. height: math.unit(0.51790695213, "feet"),
  49038. name: "Heart (Side)",
  49039. image: {
  49040. source: "./media/characters/jess/heart-side.svg"
  49041. }
  49042. },
  49043. earsAndNoseFront: {
  49044. height: math.unit(0.29385483995, "feet"),
  49045. name: "Ears and Nose (Front)",
  49046. image: {
  49047. source: "./media/characters/jess/ears-and-nose-front.svg"
  49048. }
  49049. },
  49050. earsAndNoseSide: {
  49051. height: math.unit(0.18109658741, "feet"),
  49052. name: "Ears and Nose (Side)",
  49053. image: {
  49054. source: "./media/characters/jess/ears-and-nose-side.svg"
  49055. }
  49056. },
  49057. },
  49058. [
  49059. {
  49060. name: "Normal",
  49061. height: math.unit(5 + 8/12, "feet"),
  49062. default: true
  49063. },
  49064. ]
  49065. ))
  49066. characterMakers.push(() => makeCharacter(
  49067. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49068. {
  49069. front: {
  49070. height: math.unit(6, "feet"),
  49071. weight: math.unit(6.64467e-7, "grams"),
  49072. name: "Front",
  49073. image: {
  49074. source: "./media/characters/wimpering/front.svg",
  49075. extra: 597/587,
  49076. bottom: 34/631
  49077. }
  49078. },
  49079. },
  49080. [
  49081. {
  49082. name: "Micro",
  49083. height: math.unit(0.4, "mm"),
  49084. default: true
  49085. },
  49086. ]
  49087. ))
  49088. characterMakers.push(() => makeCharacter(
  49089. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49090. {
  49091. front: {
  49092. height: math.unit(5 + 2/12, "feet"),
  49093. weight: math.unit(110, "lb"),
  49094. name: "Front",
  49095. image: {
  49096. source: "./media/characters/keltre/front.svg",
  49097. extra: 1099/1057,
  49098. bottom: 22/1121
  49099. }
  49100. },
  49101. back: {
  49102. height: math.unit(5 + 2/12, "feet"),
  49103. weight: math.unit(110, "lb"),
  49104. name: "Back",
  49105. image: {
  49106. source: "./media/characters/keltre/back.svg",
  49107. extra: 1095/1053,
  49108. bottom: 17/1112
  49109. }
  49110. },
  49111. dressed: {
  49112. height: math.unit(5 + 2/12, "feet"),
  49113. weight: math.unit(110, "lb"),
  49114. name: "Dressed",
  49115. image: {
  49116. source: "./media/characters/keltre/dressed.svg",
  49117. extra: 1099/1057,
  49118. bottom: 22/1121
  49119. }
  49120. },
  49121. winter: {
  49122. height: math.unit(5 + 2/12, "feet"),
  49123. weight: math.unit(110, "lb"),
  49124. name: "Winter",
  49125. image: {
  49126. source: "./media/characters/keltre/winter.svg",
  49127. extra: 1099/1057,
  49128. bottom: 22/1121
  49129. }
  49130. },
  49131. head: {
  49132. height: math.unit(1.61 * 0.86, "feet"),
  49133. name: "Head",
  49134. image: {
  49135. source: "./media/characters/keltre/head.svg",
  49136. extra: 534/421,
  49137. bottom: 0/534
  49138. }
  49139. },
  49140. hand: {
  49141. height: math.unit(1.3 * 0.86, "feet"),
  49142. name: "Hand",
  49143. image: {
  49144. source: "./media/characters/keltre/hand.svg"
  49145. }
  49146. },
  49147. foot: {
  49148. height: math.unit(1.8 * 0.86, "feet"),
  49149. name: "Foot",
  49150. image: {
  49151. source: "./media/characters/keltre/foot.svg"
  49152. }
  49153. },
  49154. },
  49155. [
  49156. {
  49157. name: "Fine",
  49158. height: math.unit(1, "inch")
  49159. },
  49160. {
  49161. name: "Dimnutive",
  49162. height: math.unit(4, "inches")
  49163. },
  49164. {
  49165. name: "Tiny",
  49166. height: math.unit(1, "foot")
  49167. },
  49168. {
  49169. name: "Small",
  49170. height: math.unit(3, "feet")
  49171. },
  49172. {
  49173. name: "Normal",
  49174. height: math.unit(5 + 2/12, "feet"),
  49175. default: true
  49176. },
  49177. ]
  49178. ))
  49179. characterMakers.push(() => makeCharacter(
  49180. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49181. {
  49182. front: {
  49183. height: math.unit(6 + 2/12, "feet"),
  49184. name: "Front",
  49185. image: {
  49186. source: "./media/characters/nox/front.svg",
  49187. extra: 1917/1830,
  49188. bottom: 74/1991
  49189. }
  49190. },
  49191. back: {
  49192. height: math.unit(6 + 2/12, "feet"),
  49193. name: "Back",
  49194. image: {
  49195. source: "./media/characters/nox/back.svg",
  49196. extra: 1896/1815,
  49197. bottom: 21/1917
  49198. }
  49199. },
  49200. head: {
  49201. height: math.unit(1.1, "feet"),
  49202. name: "Head",
  49203. image: {
  49204. source: "./media/characters/nox/head.svg",
  49205. extra: 874/704,
  49206. bottom: 0/874
  49207. }
  49208. },
  49209. tattoo: {
  49210. height: math.unit(0.729, "feet"),
  49211. name: "Tattoo",
  49212. image: {
  49213. source: "./media/characters/nox/tattoo.svg"
  49214. }
  49215. },
  49216. },
  49217. [
  49218. {
  49219. name: "Normal",
  49220. height: math.unit(6 + 2/12, "feet")
  49221. },
  49222. {
  49223. name: "Gigamacro",
  49224. height: math.unit(2, "earths"),
  49225. default: true
  49226. },
  49227. {
  49228. name: "Cosmic",
  49229. height: math.unit(867, "yottameters")
  49230. },
  49231. ]
  49232. ))
  49233. characterMakers.push(() => makeCharacter(
  49234. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49235. {
  49236. front: {
  49237. height: math.unit(6, "feet"),
  49238. weight: math.unit(150, "lb"),
  49239. name: "Front",
  49240. image: {
  49241. source: "./media/characters/caspian/front.svg",
  49242. extra: 1443/1359,
  49243. bottom: 0/1443
  49244. }
  49245. },
  49246. back: {
  49247. height: math.unit(6, "feet"),
  49248. weight: math.unit(150, "lb"),
  49249. name: "Back",
  49250. image: {
  49251. source: "./media/characters/caspian/back.svg",
  49252. extra: 1379/1309,
  49253. bottom: 0/1379
  49254. }
  49255. },
  49256. head: {
  49257. height: math.unit(0.9, "feet"),
  49258. name: "Head",
  49259. image: {
  49260. source: "./media/characters/caspian/head.svg",
  49261. extra: 692/492,
  49262. bottom: 0/692
  49263. }
  49264. },
  49265. headAlt: {
  49266. height: math.unit(0.95, "feet"),
  49267. name: "Head (Alt)",
  49268. image: {
  49269. source: "./media/characters/caspian/head-alt.svg",
  49270. extra: 668/508,
  49271. bottom: 0/668
  49272. }
  49273. },
  49274. hand: {
  49275. height: math.unit(0.8, "feet"),
  49276. name: "Hand",
  49277. image: {
  49278. source: "./media/characters/caspian/hand.svg"
  49279. }
  49280. },
  49281. paw: {
  49282. height: math.unit(0.95, "feet"),
  49283. name: "Paw",
  49284. image: {
  49285. source: "./media/characters/caspian/paw.svg"
  49286. }
  49287. },
  49288. },
  49289. [
  49290. {
  49291. name: "Normal",
  49292. height: math.unit(162, "feet"),
  49293. default: true
  49294. },
  49295. ]
  49296. ))
  49297. characterMakers.push(() => makeCharacter(
  49298. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49299. {
  49300. front: {
  49301. height: math.unit(6, "feet"),
  49302. name: "Front",
  49303. image: {
  49304. source: "./media/characters/myra-aisling/front.svg",
  49305. extra: 1268/1166,
  49306. bottom: 73/1341
  49307. }
  49308. },
  49309. back: {
  49310. height: math.unit(6, "feet"),
  49311. name: "Back",
  49312. image: {
  49313. source: "./media/characters/myra-aisling/back.svg",
  49314. extra: 1249/1149,
  49315. bottom: 79/1328
  49316. }
  49317. },
  49318. dressed: {
  49319. height: math.unit(6, "feet"),
  49320. name: "Dressed",
  49321. image: {
  49322. source: "./media/characters/myra-aisling/dressed.svg",
  49323. extra: 1290/1189,
  49324. bottom: 47/1337
  49325. }
  49326. },
  49327. hand: {
  49328. height: math.unit(1.1, "feet"),
  49329. name: "Hand",
  49330. image: {
  49331. source: "./media/characters/myra-aisling/hand.svg"
  49332. }
  49333. },
  49334. paw: {
  49335. height: math.unit(1.23, "feet"),
  49336. name: "Paw",
  49337. image: {
  49338. source: "./media/characters/myra-aisling/paw.svg"
  49339. }
  49340. },
  49341. },
  49342. [
  49343. {
  49344. name: "Normal",
  49345. height: math.unit(160, "feet"),
  49346. default: true
  49347. },
  49348. ]
  49349. ))
  49350. characterMakers.push(() => makeCharacter(
  49351. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49352. {
  49353. front: {
  49354. height: math.unit(6, "feet"),
  49355. name: "Front",
  49356. image: {
  49357. source: "./media/characters/tenley-sidero/front.svg",
  49358. extra: 1365/1276,
  49359. bottom: 47/1412
  49360. }
  49361. },
  49362. back: {
  49363. height: math.unit(6, "feet"),
  49364. name: "Back",
  49365. image: {
  49366. source: "./media/characters/tenley-sidero/back.svg",
  49367. extra: 1383/1283,
  49368. bottom: 35/1418
  49369. }
  49370. },
  49371. dressed: {
  49372. height: math.unit(6, "feet"),
  49373. name: "Dressed",
  49374. image: {
  49375. source: "./media/characters/tenley-sidero/dressed.svg",
  49376. extra: 1364/1275,
  49377. bottom: 42/1406
  49378. }
  49379. },
  49380. head: {
  49381. height: math.unit(1.47, "feet"),
  49382. name: "Head",
  49383. image: {
  49384. source: "./media/characters/tenley-sidero/head.svg",
  49385. extra: 610/490,
  49386. bottom: 0/610
  49387. }
  49388. },
  49389. },
  49390. [
  49391. {
  49392. name: "Normal",
  49393. height: math.unit(154, "feet"),
  49394. default: true
  49395. },
  49396. ]
  49397. ))
  49398. characterMakers.push(() => makeCharacter(
  49399. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49400. {
  49401. front: {
  49402. height: math.unit(5, "inches"),
  49403. name: "Front",
  49404. image: {
  49405. source: "./media/characters/mallory/front.svg",
  49406. extra: 1919/1678,
  49407. bottom: 29/1948
  49408. }
  49409. },
  49410. hand: {
  49411. height: math.unit(0.73, "inches"),
  49412. name: "Hand",
  49413. image: {
  49414. source: "./media/characters/mallory/hand.svg"
  49415. }
  49416. },
  49417. paw: {
  49418. height: math.unit(0.68, "inches"),
  49419. name: "Paw",
  49420. image: {
  49421. source: "./media/characters/mallory/paw.svg"
  49422. }
  49423. },
  49424. },
  49425. [
  49426. {
  49427. name: "Small",
  49428. height: math.unit(5, "inches"),
  49429. default: true
  49430. },
  49431. ]
  49432. ))
  49433. characterMakers.push(() => makeCharacter(
  49434. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49435. {
  49436. naked: {
  49437. height: math.unit(6, "feet"),
  49438. name: "Naked",
  49439. image: {
  49440. source: "./media/characters/mab/naked.svg",
  49441. extra: 1855/1757,
  49442. bottom: 208/2063
  49443. }
  49444. },
  49445. outside: {
  49446. height: math.unit(6, "feet"),
  49447. name: "Outside",
  49448. image: {
  49449. source: "./media/characters/mab/outside.svg",
  49450. extra: 1855/1757,
  49451. bottom: 208/2063
  49452. }
  49453. },
  49454. party: {
  49455. height: math.unit(6, "feet"),
  49456. name: "Party",
  49457. image: {
  49458. source: "./media/characters/mab/party.svg",
  49459. extra: 1855/1757,
  49460. bottom: 208/2063
  49461. }
  49462. },
  49463. },
  49464. [
  49465. {
  49466. name: "Normal",
  49467. height: math.unit(165, "feet"),
  49468. default: true
  49469. },
  49470. ]
  49471. ))
  49472. characterMakers.push(() => makeCharacter(
  49473. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49474. {
  49475. front: {
  49476. height: math.unit(12, "feet"),
  49477. weight: math.unit(4000, "lb"),
  49478. name: "Front",
  49479. image: {
  49480. source: "./media/characters/winter/front.svg",
  49481. extra: 1286/943,
  49482. bottom: 112/1398
  49483. }
  49484. },
  49485. frontNsfw: {
  49486. height: math.unit(12, "feet"),
  49487. weight: math.unit(4000, "lb"),
  49488. name: "Front (NSFW)",
  49489. image: {
  49490. source: "./media/characters/winter/front-nsfw.svg",
  49491. extra: 1286/943,
  49492. bottom: 112/1398
  49493. }
  49494. },
  49495. dick: {
  49496. height: math.unit(3.79, "feet"),
  49497. name: "Dick",
  49498. image: {
  49499. source: "./media/characters/winter/dick.svg"
  49500. }
  49501. },
  49502. },
  49503. [
  49504. {
  49505. name: "Big",
  49506. height: math.unit(12, "feet"),
  49507. default: true
  49508. },
  49509. ]
  49510. ))
  49511. characterMakers.push(() => makeCharacter(
  49512. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49513. {
  49514. front: {
  49515. height: math.unit(4.1, "inches"),
  49516. name: "Front",
  49517. image: {
  49518. source: "./media/characters/alto/front.svg",
  49519. extra: 736/627,
  49520. bottom: 90/826
  49521. }
  49522. },
  49523. },
  49524. [
  49525. {
  49526. name: "Normal",
  49527. height: math.unit(4.1, "inches"),
  49528. default: true
  49529. },
  49530. ]
  49531. ))
  49532. characterMakers.push(() => makeCharacter(
  49533. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49534. {
  49535. sitting: {
  49536. height: math.unit(3, "feet"),
  49537. name: "Sitting",
  49538. image: {
  49539. source: "./media/characters/ratstrid-v/sitting.svg",
  49540. extra: 355/310,
  49541. bottom: 136/491
  49542. }
  49543. },
  49544. },
  49545. [
  49546. {
  49547. name: "Normal",
  49548. height: math.unit(3, "feet"),
  49549. default: true
  49550. },
  49551. ]
  49552. ))
  49553. characterMakers.push(() => makeCharacter(
  49554. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49555. {
  49556. back: {
  49557. height: math.unit(6, "feet"),
  49558. weight: math.unit(350, "lb"),
  49559. name: "Back",
  49560. image: {
  49561. source: "./media/characters/siz/back.svg",
  49562. extra: 1449/1274,
  49563. bottom: 13/1462
  49564. }
  49565. },
  49566. },
  49567. [
  49568. {
  49569. name: "Over-Overcompressed",
  49570. height: math.unit(8, "feet")
  49571. },
  49572. {
  49573. name: "Overcompressed",
  49574. height: math.unit(32, "feet")
  49575. },
  49576. {
  49577. name: "Compressed",
  49578. height: math.unit(128, "feet"),
  49579. default: true
  49580. },
  49581. {
  49582. name: "Half-Compressed",
  49583. height: math.unit(512, "feet")
  49584. },
  49585. {
  49586. name: "Quarter-Compressed",
  49587. height: math.unit(2048, "feet")
  49588. },
  49589. {
  49590. name: "Uncompressed?",
  49591. height: math.unit(8192, "feet")
  49592. },
  49593. ]
  49594. ))
  49595. characterMakers.push(() => makeCharacter(
  49596. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49597. {
  49598. front: {
  49599. height: math.unit(5 + 9/12, "feet"),
  49600. weight: math.unit(150, "lb"),
  49601. name: "Front",
  49602. image: {
  49603. source: "./media/characters/ven/front.svg",
  49604. extra: 1372/1320,
  49605. bottom: 73/1445
  49606. }
  49607. },
  49608. side: {
  49609. height: math.unit(5 + 9/12, "feet"),
  49610. weight: math.unit(1150, "lb"),
  49611. name: "Side",
  49612. image: {
  49613. source: "./media/characters/ven/side.svg",
  49614. extra: 1119/1070,
  49615. bottom: 42/1161
  49616. },
  49617. default: true
  49618. },
  49619. },
  49620. [
  49621. {
  49622. name: "Normal",
  49623. height: math.unit(5 + 9/12, "feet"),
  49624. default: true
  49625. },
  49626. ]
  49627. ))
  49628. characterMakers.push(() => makeCharacter(
  49629. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49630. {
  49631. front: {
  49632. height: math.unit(12, "feet"),
  49633. weight: math.unit(1000, "kg"),
  49634. name: "Front",
  49635. image: {
  49636. source: "./media/characters/maple/front.svg",
  49637. extra: 1193/1081,
  49638. bottom: 22/1215
  49639. }
  49640. },
  49641. },
  49642. [
  49643. {
  49644. name: "Compressed",
  49645. height: math.unit(7, "feet")
  49646. },
  49647. {
  49648. name: "Normal",
  49649. height: math.unit(12, "feet"),
  49650. default: true
  49651. },
  49652. ]
  49653. ))
  49654. characterMakers.push(() => makeCharacter(
  49655. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49656. {
  49657. front: {
  49658. height: math.unit(9, "feet"),
  49659. weight: math.unit(1500, "lb"),
  49660. name: "Front",
  49661. image: {
  49662. source: "./media/characters/nora/front.svg",
  49663. extra: 1348/1286,
  49664. bottom: 218/1566
  49665. }
  49666. },
  49667. erect: {
  49668. height: math.unit(9, "feet"),
  49669. weight: math.unit(11500, "lb"),
  49670. name: "Erect",
  49671. image: {
  49672. source: "./media/characters/nora/erect.svg",
  49673. extra: 1488/1433,
  49674. bottom: 133/1621
  49675. }
  49676. },
  49677. },
  49678. [
  49679. {
  49680. name: "Normal",
  49681. height: math.unit(9, "feet"),
  49682. default: true
  49683. },
  49684. ]
  49685. ))
  49686. characterMakers.push(() => makeCharacter(
  49687. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49688. {
  49689. front: {
  49690. height: math.unit(25, "feet"),
  49691. weight: math.unit(27500, "lb"),
  49692. name: "Front",
  49693. image: {
  49694. source: "./media/characters/north-caudin/front.svg",
  49695. extra: 1184/1082,
  49696. bottom: 23/1207
  49697. }
  49698. },
  49699. },
  49700. [
  49701. {
  49702. name: "Compressed",
  49703. height: math.unit(10, "feet")
  49704. },
  49705. {
  49706. name: "Normal",
  49707. height: math.unit(25, "feet"),
  49708. default: true
  49709. },
  49710. ]
  49711. ))
  49712. characterMakers.push(() => makeCharacter(
  49713. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49714. {
  49715. front: {
  49716. height: math.unit(9, "feet"),
  49717. weight: math.unit(1250, "lb"),
  49718. name: "Front",
  49719. image: {
  49720. source: "./media/characters/merrian/front.svg",
  49721. extra: 2393/2304,
  49722. bottom: 40/2433
  49723. }
  49724. },
  49725. },
  49726. [
  49727. {
  49728. name: "Normal",
  49729. height: math.unit(9, "feet"),
  49730. default: true
  49731. },
  49732. ]
  49733. ))
  49734. characterMakers.push(() => makeCharacter(
  49735. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49736. {
  49737. front: {
  49738. height: math.unit(9, "feet"),
  49739. weight: math.unit(1000, "lb"),
  49740. name: "Front",
  49741. image: {
  49742. source: "./media/characters/hazel/front.svg",
  49743. extra: 2351/2298,
  49744. bottom: 38/2389
  49745. }
  49746. },
  49747. },
  49748. [
  49749. {
  49750. name: "Normal",
  49751. height: math.unit(9, "feet"),
  49752. default: true
  49753. },
  49754. ]
  49755. ))
  49756. characterMakers.push(() => makeCharacter(
  49757. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49758. {
  49759. front: {
  49760. height: math.unit(13, "feet"),
  49761. weight: math.unit(3200, "lb"),
  49762. name: "Front",
  49763. image: {
  49764. source: "./media/characters/emma/front.svg",
  49765. extra: 2263/2029,
  49766. bottom: 68/2331
  49767. }
  49768. },
  49769. },
  49770. [
  49771. {
  49772. name: "Normal",
  49773. height: math.unit(13, "feet"),
  49774. default: true
  49775. },
  49776. ]
  49777. ))
  49778. characterMakers.push(() => makeCharacter(
  49779. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  49780. {
  49781. front: {
  49782. height: math.unit(11 + 9/12, "feet"),
  49783. weight: math.unit(2500, "lb"),
  49784. name: "Front",
  49785. image: {
  49786. source: "./media/characters/ilumina/front.svg",
  49787. extra: 2248/2209,
  49788. bottom: 164/2412
  49789. }
  49790. },
  49791. },
  49792. [
  49793. {
  49794. name: "Normal",
  49795. height: math.unit(11 + 9/12, "feet"),
  49796. default: true
  49797. },
  49798. ]
  49799. ))
  49800. characterMakers.push(() => makeCharacter(
  49801. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  49802. {
  49803. front: {
  49804. height: math.unit(8 + 10/12, "feet"),
  49805. weight: math.unit(1350, "lb"),
  49806. name: "Front",
  49807. image: {
  49808. source: "./media/characters/moonshine/front.svg",
  49809. extra: 2395/2288,
  49810. bottom: 40/2435
  49811. }
  49812. },
  49813. },
  49814. [
  49815. {
  49816. name: "Normal",
  49817. height: math.unit(8 + 10/12, "feet"),
  49818. default: true
  49819. },
  49820. ]
  49821. ))
  49822. characterMakers.push(() => makeCharacter(
  49823. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  49824. {
  49825. front: {
  49826. height: math.unit(14, "feet"),
  49827. weight: math.unit(3400, "lb"),
  49828. name: "Front",
  49829. image: {
  49830. source: "./media/characters/aletia/front.svg",
  49831. extra: 1185/1052,
  49832. bottom: 21/1206
  49833. }
  49834. },
  49835. },
  49836. [
  49837. {
  49838. name: "Compressed",
  49839. height: math.unit(8, "feet")
  49840. },
  49841. {
  49842. name: "Normal",
  49843. height: math.unit(14, "feet"),
  49844. default: true
  49845. },
  49846. ]
  49847. ))
  49848. characterMakers.push(() => makeCharacter(
  49849. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  49850. {
  49851. front: {
  49852. height: math.unit(17, "feet"),
  49853. weight: math.unit(6500, "lb"),
  49854. name: "Front",
  49855. image: {
  49856. source: "./media/characters/deidra/front.svg",
  49857. extra: 1201/1081,
  49858. bottom: 16/1217
  49859. }
  49860. },
  49861. },
  49862. [
  49863. {
  49864. name: "Compressed",
  49865. height: math.unit(9 + 6/12, "feet")
  49866. },
  49867. {
  49868. name: "Normal",
  49869. height: math.unit(17, "feet"),
  49870. default: true
  49871. },
  49872. ]
  49873. ))
  49874. characterMakers.push(() => makeCharacter(
  49875. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  49876. {
  49877. front: {
  49878. height: math.unit(7 + 4/12, "feet"),
  49879. weight: math.unit(280, "lb"),
  49880. name: "Front",
  49881. image: {
  49882. source: "./media/characters/freki-yrmori/front.svg",
  49883. extra: 1286/1182,
  49884. bottom: 29/1315
  49885. }
  49886. },
  49887. maw: {
  49888. height: math.unit(0.9, "feet"),
  49889. name: "Maw",
  49890. image: {
  49891. source: "./media/characters/freki-yrmori/maw.svg"
  49892. }
  49893. },
  49894. },
  49895. [
  49896. {
  49897. name: "Normal",
  49898. height: math.unit(7 + 4/12, "feet"),
  49899. default: true
  49900. },
  49901. {
  49902. name: "Macro",
  49903. height: math.unit(38.5, "meters")
  49904. },
  49905. ]
  49906. ))
  49907. characterMakers.push(() => makeCharacter(
  49908. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  49909. {
  49910. side: {
  49911. height: math.unit(47.2, "meters"),
  49912. weight: math.unit(10000, "tons"),
  49913. name: "Side",
  49914. image: {
  49915. source: "./media/characters/aetherios/side.svg",
  49916. extra: 2363/642,
  49917. bottom: 221/2584
  49918. }
  49919. },
  49920. top: {
  49921. height: math.unit(240, "meters"),
  49922. weight: math.unit(10000, "tons"),
  49923. name: "Top",
  49924. image: {
  49925. source: "./media/characters/aetherios/top.svg"
  49926. }
  49927. },
  49928. bottom: {
  49929. height: math.unit(240, "meters"),
  49930. weight: math.unit(10000, "tons"),
  49931. name: "Bottom",
  49932. image: {
  49933. source: "./media/characters/aetherios/bottom.svg"
  49934. }
  49935. },
  49936. head: {
  49937. height: math.unit(38.6, "meters"),
  49938. name: "Head",
  49939. image: {
  49940. source: "./media/characters/aetherios/head.svg",
  49941. extra: 1335/1112,
  49942. bottom: 0/1335
  49943. }
  49944. },
  49945. front: {
  49946. height: math.unit(29, "meters"),
  49947. name: "Front",
  49948. image: {
  49949. source: "./media/characters/aetherios/front.svg",
  49950. extra: 1266/953,
  49951. bottom: 158/1424
  49952. }
  49953. },
  49954. maw: {
  49955. height: math.unit(16.37, "meters"),
  49956. name: "Maw",
  49957. image: {
  49958. source: "./media/characters/aetherios/maw.svg",
  49959. extra: 748/637,
  49960. bottom: 0/748
  49961. },
  49962. extraAttributes: {
  49963. preyCapacity: {
  49964. name: "Capacity",
  49965. power: 3,
  49966. type: "volume",
  49967. base: math.unit(1000, "people")
  49968. },
  49969. tongueSize: {
  49970. name: "Tongue Size",
  49971. power: 2,
  49972. type: "area",
  49973. base: math.unit(21, "m^2")
  49974. }
  49975. }
  49976. },
  49977. forepaw: {
  49978. height: math.unit(18, "meters"),
  49979. name: "Forepaw",
  49980. image: {
  49981. source: "./media/characters/aetherios/forepaw.svg"
  49982. }
  49983. },
  49984. hindpaw: {
  49985. height: math.unit(23, "meters"),
  49986. name: "Hindpaw",
  49987. image: {
  49988. source: "./media/characters/aetherios/hindpaw.svg"
  49989. }
  49990. },
  49991. genitals: {
  49992. height: math.unit(42, "meters"),
  49993. name: "Genitals",
  49994. image: {
  49995. source: "./media/characters/aetherios/genitals.svg"
  49996. }
  49997. },
  49998. },
  49999. [
  50000. {
  50001. name: "Normal",
  50002. height: math.unit(47.2, "meters"),
  50003. default: true
  50004. },
  50005. {
  50006. name: "Macro",
  50007. height: math.unit(160, "meters")
  50008. },
  50009. {
  50010. name: "Mega",
  50011. height: math.unit(1.87, "km")
  50012. },
  50013. {
  50014. name: "Giga",
  50015. height: math.unit(40000, "km")
  50016. },
  50017. {
  50018. name: "Stellar",
  50019. height: math.unit(158000000, "km")
  50020. },
  50021. {
  50022. name: "Cosmic",
  50023. height: math.unit(9.46e12, "km")
  50024. },
  50025. ]
  50026. ))
  50027. characterMakers.push(() => makeCharacter(
  50028. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50029. {
  50030. front: {
  50031. height: math.unit(5 + 4/12, "feet"),
  50032. weight: math.unit(80, "lb"),
  50033. name: "Front",
  50034. image: {
  50035. source: "./media/characters/mizu-gieeg/front.svg",
  50036. extra: 850/709,
  50037. bottom: 52/902
  50038. }
  50039. },
  50040. back: {
  50041. height: math.unit(5 + 4/12, "feet"),
  50042. weight: math.unit(80, "lb"),
  50043. name: "Back",
  50044. image: {
  50045. source: "./media/characters/mizu-gieeg/back.svg",
  50046. extra: 882/745,
  50047. bottom: 25/907
  50048. }
  50049. },
  50050. },
  50051. [
  50052. {
  50053. name: "Normal",
  50054. height: math.unit(5 + 4/12, "feet"),
  50055. default: true
  50056. },
  50057. ]
  50058. ))
  50059. characterMakers.push(() => makeCharacter(
  50060. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50061. {
  50062. front: {
  50063. height: math.unit(6, "feet"),
  50064. name: "Front",
  50065. image: {
  50066. source: "./media/characters/roselle-st-papier/front.svg",
  50067. extra: 1430/1280,
  50068. bottom: 37/1467
  50069. }
  50070. },
  50071. back: {
  50072. height: math.unit(6, "feet"),
  50073. name: "Back",
  50074. image: {
  50075. source: "./media/characters/roselle-st-papier/back.svg",
  50076. extra: 1491/1296,
  50077. bottom: 23/1514
  50078. }
  50079. },
  50080. ear: {
  50081. height: math.unit(1.26, "feet"),
  50082. name: "Ear",
  50083. image: {
  50084. source: "./media/characters/roselle-st-papier/ear.svg"
  50085. }
  50086. },
  50087. },
  50088. [
  50089. {
  50090. name: "Normal",
  50091. height: math.unit(150, "feet"),
  50092. default: true
  50093. },
  50094. ]
  50095. ))
  50096. characterMakers.push(() => makeCharacter(
  50097. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50098. {
  50099. front: {
  50100. height: math.unit(1, "inches"),
  50101. name: "Front",
  50102. image: {
  50103. source: "./media/characters/valargent/front.svg",
  50104. extra: 1825/1694,
  50105. bottom: 62/1887
  50106. }
  50107. },
  50108. back: {
  50109. height: math.unit(1, "inches"),
  50110. name: "Back",
  50111. image: {
  50112. source: "./media/characters/valargent/back.svg",
  50113. extra: 1775/1682,
  50114. bottom: 88/1863
  50115. }
  50116. },
  50117. },
  50118. [
  50119. {
  50120. name: "Micro",
  50121. height: math.unit(1, "inch"),
  50122. default: true
  50123. },
  50124. ]
  50125. ))
  50126. characterMakers.push(() => makeCharacter(
  50127. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50128. {
  50129. front: {
  50130. height: math.unit(3.4, "meters"),
  50131. name: "Front",
  50132. image: {
  50133. source: "./media/characters/zarina/front.svg",
  50134. extra: 1733/1425,
  50135. bottom: 93/1826
  50136. }
  50137. },
  50138. squatting: {
  50139. height: math.unit(2.14, "meters"),
  50140. name: "Squatting",
  50141. image: {
  50142. source: "./media/characters/zarina/squatting.svg",
  50143. extra: 1073/788,
  50144. bottom: 63/1136
  50145. }
  50146. },
  50147. back: {
  50148. height: math.unit(2.14, "meters"),
  50149. name: "Back",
  50150. image: {
  50151. source: "./media/characters/zarina/back.svg",
  50152. extra: 1128/885,
  50153. bottom: 0/1128
  50154. }
  50155. },
  50156. },
  50157. [
  50158. {
  50159. name: "Normal",
  50160. height: math.unit(3.4, "meters"),
  50161. default: true
  50162. },
  50163. {
  50164. name: "Big",
  50165. height: math.unit(5, "meters")
  50166. },
  50167. {
  50168. name: "Macro",
  50169. height: math.unit(110, "meters")
  50170. },
  50171. ]
  50172. ))
  50173. characterMakers.push(() => makeCharacter(
  50174. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50175. {
  50176. front: {
  50177. height: math.unit(7, "feet"),
  50178. name: "Front",
  50179. image: {
  50180. source: "./media/characters/ventus-astro-fox/front.svg",
  50181. extra: 1792/1623,
  50182. bottom: 28/1820
  50183. }
  50184. },
  50185. back: {
  50186. height: math.unit(7, "feet"),
  50187. name: "Back",
  50188. image: {
  50189. source: "./media/characters/ventus-astro-fox/back.svg",
  50190. extra: 1789/1620,
  50191. bottom: 31/1820
  50192. }
  50193. },
  50194. outfit: {
  50195. height: math.unit(7, "feet"),
  50196. name: "Outfit",
  50197. image: {
  50198. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50199. extra: 1054/925,
  50200. bottom: 15/1069
  50201. }
  50202. },
  50203. head: {
  50204. height: math.unit(1.12, "feet"),
  50205. name: "Head",
  50206. image: {
  50207. source: "./media/characters/ventus-astro-fox/head.svg",
  50208. extra: 866/504,
  50209. bottom: 0/866
  50210. }
  50211. },
  50212. hand: {
  50213. height: math.unit(1, "feet"),
  50214. name: "Hand",
  50215. image: {
  50216. source: "./media/characters/ventus-astro-fox/hand.svg"
  50217. }
  50218. },
  50219. paw: {
  50220. height: math.unit(1.5, "feet"),
  50221. name: "Paw",
  50222. image: {
  50223. source: "./media/characters/ventus-astro-fox/paw.svg"
  50224. }
  50225. },
  50226. },
  50227. [
  50228. {
  50229. name: "Normal",
  50230. height: math.unit(7, "feet"),
  50231. default: true
  50232. },
  50233. {
  50234. name: "Macro",
  50235. height: math.unit(200, "feet")
  50236. },
  50237. {
  50238. name: "Cosmic",
  50239. height: math.unit(3, "universes")
  50240. },
  50241. ]
  50242. ))
  50243. characterMakers.push(() => makeCharacter(
  50244. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50245. {
  50246. front: {
  50247. height: math.unit(3, "meters"),
  50248. weight: math.unit(7000, "lb"),
  50249. name: "Front",
  50250. image: {
  50251. source: "./media/characters/core-t/front.svg",
  50252. extra: 5729/4941,
  50253. bottom: 1129/6858
  50254. }
  50255. },
  50256. },
  50257. [
  50258. {
  50259. name: "Big",
  50260. height: math.unit(3, "meters"),
  50261. default: true
  50262. },
  50263. ]
  50264. ))
  50265. characterMakers.push(() => makeCharacter(
  50266. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50267. {
  50268. normal: {
  50269. height: math.unit(6 + 6/12, "feet"),
  50270. weight: math.unit(275, "lb"),
  50271. name: "Front",
  50272. image: {
  50273. source: "./media/characters/cadbunny/normal.svg",
  50274. extra: 1129/947,
  50275. bottom: 93/1222
  50276. },
  50277. default: true,
  50278. form: "normal"
  50279. },
  50280. gigantamax: {
  50281. height: math.unit(26, "feet"),
  50282. weight: math.unit(16000, "lb"),
  50283. name: "Front",
  50284. image: {
  50285. source: "./media/characters/cadbunny/gigantamax.svg",
  50286. extra: 1133/944,
  50287. bottom: 90/1223
  50288. },
  50289. default: true,
  50290. form: "gigantamax"
  50291. },
  50292. },
  50293. [
  50294. {
  50295. name: "Normal",
  50296. height: math.unit(6 + 6/12, "feet"),
  50297. default: true,
  50298. form: "normal"
  50299. },
  50300. {
  50301. name: "Small",
  50302. height: math.unit(26, "feet"),
  50303. default: true,
  50304. form: "gigantamax"
  50305. },
  50306. {
  50307. name: "Large",
  50308. height: math.unit(78, "feet"),
  50309. form: "gigantamax"
  50310. },
  50311. ],
  50312. {
  50313. "normal": {
  50314. name: "Normal",
  50315. default: true
  50316. },
  50317. "gigantamax": {
  50318. name: "Gigantamax"
  50319. }
  50320. }
  50321. ))
  50322. characterMakers.push(() => makeCharacter(
  50323. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50324. {
  50325. anthroFront: {
  50326. height: math.unit(8, "feet"),
  50327. weight: math.unit(300, "lb"),
  50328. name: "Front",
  50329. image: {
  50330. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50331. extra: 1272/1176,
  50332. bottom: 53/1325
  50333. },
  50334. form: "anthro",
  50335. default: true
  50336. },
  50337. feralSide: {
  50338. height: math.unit(4, "feet"),
  50339. weight: math.unit(250, "lb"),
  50340. name: "Side",
  50341. image: {
  50342. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50343. extra: 731/621,
  50344. bottom: 0/731
  50345. },
  50346. form: "feral",
  50347. default: true
  50348. },
  50349. },
  50350. [
  50351. {
  50352. name: "Regular",
  50353. height: math.unit(8, "feet"),
  50354. form: "anthro"
  50355. },
  50356. {
  50357. name: "Macro",
  50358. height: math.unit(250, "feet"),
  50359. form: "anthro",
  50360. default: true
  50361. },
  50362. {
  50363. name: "Regular",
  50364. height: math.unit(4, "feet"),
  50365. form: "feral"
  50366. },
  50367. {
  50368. name: "Macro",
  50369. height: math.unit(125, "feet"),
  50370. form: "feral",
  50371. default: true
  50372. },
  50373. ],
  50374. {
  50375. "anthro": {
  50376. name: "Anthro",
  50377. default: true
  50378. },
  50379. "feral": {
  50380. name: "Feral",
  50381. },
  50382. }
  50383. ))
  50384. characterMakers.push(() => makeCharacter(
  50385. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50386. {
  50387. front: {
  50388. height: math.unit(11 + 10/12, "feet"),
  50389. weight: math.unit(1587, "kg"),
  50390. name: "Front",
  50391. image: {
  50392. source: "./media/characters/maple-javira-dragon/front.svg",
  50393. extra: 1136/744,
  50394. bottom: 73/1209
  50395. }
  50396. },
  50397. side: {
  50398. height: math.unit(11 + 10/12, "feet"),
  50399. weight: math.unit(1587, "kg"),
  50400. name: "Side",
  50401. image: {
  50402. source: "./media/characters/maple-javira-dragon/side.svg",
  50403. extra: 712/505,
  50404. bottom: 17/729
  50405. }
  50406. },
  50407. head: {
  50408. height: math.unit(8.05, "feet"),
  50409. name: "Head",
  50410. image: {
  50411. source: "./media/characters/maple-javira-dragon/head.svg",
  50412. extra: 1420/1344,
  50413. bottom: 0/1420
  50414. }
  50415. },
  50416. },
  50417. [
  50418. {
  50419. name: "Normal",
  50420. height: math.unit(11 + 10/12, "feet"),
  50421. default: true
  50422. },
  50423. ]
  50424. ))
  50425. characterMakers.push(() => makeCharacter(
  50426. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50427. {
  50428. front: {
  50429. height: math.unit(117, "cm"),
  50430. weight: math.unit(50, "kg"),
  50431. name: "Front",
  50432. image: {
  50433. source: "./media/characters/sonia-wyverntail/front.svg",
  50434. extra: 708/592,
  50435. bottom: 25/733
  50436. }
  50437. },
  50438. },
  50439. [
  50440. {
  50441. name: "Normal",
  50442. height: math.unit(117, "cm"),
  50443. default: true
  50444. },
  50445. ]
  50446. ))
  50447. characterMakers.push(() => makeCharacter(
  50448. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50449. {
  50450. front: {
  50451. height: math.unit(6 + 5/12, "feet"),
  50452. name: "Front",
  50453. image: {
  50454. source: "./media/characters/micah/front.svg",
  50455. extra: 1758/1546,
  50456. bottom: 214/1972
  50457. }
  50458. },
  50459. },
  50460. [
  50461. {
  50462. name: "Normal",
  50463. height: math.unit(6 + 5/12, "feet"),
  50464. default: true
  50465. },
  50466. ]
  50467. ))
  50468. characterMakers.push(() => makeCharacter(
  50469. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50470. {
  50471. front: {
  50472. height: math.unit(5 + 10/12, "feet"),
  50473. weight: math.unit(220, "lb"),
  50474. name: "Front",
  50475. image: {
  50476. source: "./media/characters/zarya/front.svg",
  50477. extra: 593/572,
  50478. bottom: 50/643
  50479. }
  50480. },
  50481. back: {
  50482. height: math.unit(5 + 10/12, "feet"),
  50483. weight: math.unit(220, "lb"),
  50484. name: "Back",
  50485. image: {
  50486. source: "./media/characters/zarya/back.svg",
  50487. extra: 603/582,
  50488. bottom: 38/641
  50489. }
  50490. },
  50491. },
  50492. [
  50493. {
  50494. name: "Normal",
  50495. height: math.unit(5 + 10/12, "feet"),
  50496. default: true
  50497. },
  50498. ]
  50499. ))
  50500. characterMakers.push(() => makeCharacter(
  50501. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50502. {
  50503. front: {
  50504. height: math.unit(7.5, "feet"),
  50505. name: "Front",
  50506. image: {
  50507. source: "./media/characters/sven-hatisson/front.svg",
  50508. extra: 917/857,
  50509. bottom: 42/959
  50510. }
  50511. },
  50512. back: {
  50513. height: math.unit(7.5, "feet"),
  50514. name: "Back",
  50515. image: {
  50516. source: "./media/characters/sven-hatisson/back.svg",
  50517. extra: 903/856,
  50518. bottom: 15/918
  50519. }
  50520. },
  50521. },
  50522. [
  50523. {
  50524. name: "Base Height",
  50525. height: math.unit(7.5, "feet")
  50526. },
  50527. {
  50528. name: "Usual Height",
  50529. height: math.unit(13.5, "feet"),
  50530. default: true
  50531. },
  50532. {
  50533. name: "Smaller Macro",
  50534. height: math.unit(85, "feet")
  50535. },
  50536. {
  50537. name: "Moderate Macro",
  50538. height: math.unit(320, "feet")
  50539. },
  50540. {
  50541. name: "Large Macro",
  50542. height: math.unit(1000, "feet")
  50543. },
  50544. {
  50545. name: "Largest Size",
  50546. height: math.unit(2, "miles")
  50547. },
  50548. ]
  50549. ))
  50550. characterMakers.push(() => makeCharacter(
  50551. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50552. {
  50553. side: {
  50554. height: math.unit(1.8, "meters"),
  50555. weight: math.unit(275, "kg"),
  50556. name: "Side",
  50557. image: {
  50558. source: "./media/characters/terra/side.svg",
  50559. extra: 1273/1147,
  50560. bottom: 0/1273
  50561. }
  50562. },
  50563. },
  50564. [
  50565. {
  50566. name: "Normal",
  50567. height: math.unit(16.2, "meters"),
  50568. default: true
  50569. },
  50570. ]
  50571. ))
  50572. characterMakers.push(() => makeCharacter(
  50573. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50574. {
  50575. borzoiFront: {
  50576. height: math.unit(6 + 9/12, "feet"),
  50577. name: "Front",
  50578. image: {
  50579. source: "./media/characters/rae/borzoi-front.svg",
  50580. extra: 1161/1098,
  50581. bottom: 31/1192
  50582. },
  50583. form: "borzoi",
  50584. default: true
  50585. },
  50586. werewolfFront: {
  50587. height: math.unit(8 + 7/12, "feet"),
  50588. name: "Front",
  50589. image: {
  50590. source: "./media/characters/rae/werewolf-front.svg",
  50591. extra: 1411/1334,
  50592. bottom: 127/1538
  50593. },
  50594. form: "werewolf",
  50595. default: true
  50596. },
  50597. },
  50598. [
  50599. {
  50600. name: "Normal",
  50601. height: math.unit(6 + 9/12, "feet"),
  50602. default: true,
  50603. form: "borzoi"
  50604. },
  50605. {
  50606. name: "Normal",
  50607. height: math.unit(8 + 7/12, "feet"),
  50608. default: true,
  50609. form: "werewolf"
  50610. },
  50611. ],
  50612. {
  50613. "borzoi": {
  50614. name: "Borzoi",
  50615. default: true
  50616. },
  50617. "werewolf": {
  50618. name: "Werewolf",
  50619. },
  50620. }
  50621. ))
  50622. characterMakers.push(() => makeCharacter(
  50623. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50624. {
  50625. front: {
  50626. height: math.unit(8 + 7/12, "feet"),
  50627. weight: math.unit(482, "lb"),
  50628. name: "Front",
  50629. image: {
  50630. source: "./media/characters/kit/front.svg",
  50631. extra: 1247/1103,
  50632. bottom: 41/1288
  50633. }
  50634. },
  50635. back: {
  50636. height: math.unit(8 + 7/12, "feet"),
  50637. weight: math.unit(482, "lb"),
  50638. name: "Back",
  50639. image: {
  50640. source: "./media/characters/kit/back.svg",
  50641. extra: 1252/1123,
  50642. bottom: 21/1273
  50643. }
  50644. },
  50645. paw: {
  50646. height: math.unit(1.46, "feet"),
  50647. name: "Paw",
  50648. image: {
  50649. source: "./media/characters/kit/paw.svg"
  50650. }
  50651. },
  50652. },
  50653. [
  50654. {
  50655. name: "Normal",
  50656. height: math.unit(2.61, "meters"),
  50657. default: true
  50658. },
  50659. {
  50660. name: "\"Tall\"",
  50661. height: math.unit(8.21, "meters")
  50662. },
  50663. {
  50664. name: "Tall",
  50665. height: math.unit(19.6, "meters")
  50666. },
  50667. {
  50668. name: "Very Tall",
  50669. height: math.unit(57.91, "meters")
  50670. },
  50671. {
  50672. name: "Semi-Macro",
  50673. height: math.unit(138.64, "meters")
  50674. },
  50675. {
  50676. name: "Macro",
  50677. height: math.unit(831.99, "meters")
  50678. },
  50679. {
  50680. name: "EX-Macro",
  50681. height: math.unit(96451121, "meters")
  50682. },
  50683. {
  50684. name: "S1-Omnipotent",
  50685. height: math.unit(4.42074e+9, "meters")
  50686. },
  50687. {
  50688. name: "S2-Omnipotent",
  50689. height: math.unit(9.42074e+17, "meters")
  50690. },
  50691. {
  50692. name: "Omnipotent",
  50693. height: math.unit(4.23112e+24, "meters")
  50694. },
  50695. {
  50696. name: "Hypergod",
  50697. height: math.unit(5.05176e+27, "meters")
  50698. },
  50699. {
  50700. name: "Hypergod-EX",
  50701. height: math.unit(9.45532e+49, "meters")
  50702. },
  50703. {
  50704. name: "Hypergod-SP",
  50705. height: math.unit(9.45532e+195, "meters")
  50706. },
  50707. ]
  50708. ))
  50709. characterMakers.push(() => makeCharacter(
  50710. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  50711. {
  50712. side: {
  50713. height: math.unit(0.6, "meters"),
  50714. weight: math.unit(24, "kg"),
  50715. name: "Side",
  50716. image: {
  50717. source: "./media/characters/celeste/side.svg",
  50718. extra: 810/517,
  50719. bottom: 53/863
  50720. }
  50721. },
  50722. },
  50723. [
  50724. {
  50725. name: "Velociraptor",
  50726. height: math.unit(0.6, "meters"),
  50727. default: true
  50728. },
  50729. {
  50730. name: "Utahraptor",
  50731. height: math.unit(1.8, "meters")
  50732. },
  50733. {
  50734. name: "Gallimimus",
  50735. height: math.unit(4.0, "meters")
  50736. },
  50737. {
  50738. name: "Large",
  50739. height: math.unit(20, "meters")
  50740. },
  50741. {
  50742. name: "Planetary",
  50743. height: math.unit(50, "megameters")
  50744. },
  50745. {
  50746. name: "Stellar",
  50747. height: math.unit(1.5, "gigameters")
  50748. },
  50749. {
  50750. name: "Galactic",
  50751. height: math.unit(100, "exameters")
  50752. },
  50753. ]
  50754. ))
  50755. characterMakers.push(() => makeCharacter(
  50756. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  50757. {
  50758. front: {
  50759. height: math.unit(6, "feet"),
  50760. weight: math.unit(210, "lb"),
  50761. name: "Front",
  50762. image: {
  50763. source: "./media/characters/glacia/front.svg",
  50764. extra: 958/901,
  50765. bottom: 45/1003
  50766. }
  50767. },
  50768. },
  50769. [
  50770. {
  50771. name: "Macro",
  50772. height: math.unit(1000, "meters"),
  50773. default: true
  50774. },
  50775. ]
  50776. ))
  50777. characterMakers.push(() => makeCharacter(
  50778. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  50779. {
  50780. front: {
  50781. height: math.unit(4, "meters"),
  50782. name: "Front",
  50783. image: {
  50784. source: "./media/characters/giri/front.svg",
  50785. extra: 966/894,
  50786. bottom: 21/987
  50787. }
  50788. },
  50789. },
  50790. [
  50791. {
  50792. name: "Normal",
  50793. height: math.unit(4, "meters"),
  50794. default: true
  50795. },
  50796. ]
  50797. ))
  50798. characterMakers.push(() => makeCharacter(
  50799. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  50800. {
  50801. back: {
  50802. height: math.unit(4, "feet"),
  50803. weight: math.unit(37, "lb"),
  50804. name: "Back",
  50805. image: {
  50806. source: "./media/characters/tin/back.svg",
  50807. extra: 845/780,
  50808. bottom: 28/873
  50809. }
  50810. },
  50811. },
  50812. [
  50813. {
  50814. name: "Normal",
  50815. height: math.unit(4, "feet"),
  50816. default: true
  50817. },
  50818. ]
  50819. ))
  50820. characterMakers.push(() => makeCharacter(
  50821. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  50822. {
  50823. front: {
  50824. height: math.unit(25, "feet"),
  50825. name: "Front",
  50826. image: {
  50827. source: "./media/characters/cadenza-vivace/front.svg",
  50828. extra: 1842/1578,
  50829. bottom: 30/1872
  50830. }
  50831. },
  50832. },
  50833. [
  50834. {
  50835. name: "Macro",
  50836. height: math.unit(25, "feet"),
  50837. default: true
  50838. },
  50839. ]
  50840. ))
  50841. characterMakers.push(() => makeCharacter(
  50842. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  50843. {
  50844. front: {
  50845. height: math.unit(10, "feet"),
  50846. weight: math.unit(625, "kg"),
  50847. name: "Front",
  50848. image: {
  50849. source: "./media/characters/zain/front.svg",
  50850. extra: 1682/1498,
  50851. bottom: 223/1905
  50852. }
  50853. },
  50854. back: {
  50855. height: math.unit(10, "feet"),
  50856. weight: math.unit(625, "kg"),
  50857. name: "Back",
  50858. image: {
  50859. source: "./media/characters/zain/back.svg",
  50860. extra: 1814/1657,
  50861. bottom: 152/1966
  50862. }
  50863. },
  50864. head: {
  50865. height: math.unit(10, "feet"),
  50866. weight: math.unit(625, "kg"),
  50867. name: "Head",
  50868. image: {
  50869. source: "./media/characters/zain/head.svg",
  50870. extra: 1059/762,
  50871. bottom: 0/1059
  50872. }
  50873. },
  50874. },
  50875. [
  50876. {
  50877. name: "Normal",
  50878. height: math.unit(10, "feet"),
  50879. default: true
  50880. },
  50881. ]
  50882. ))
  50883. characterMakers.push(() => makeCharacter(
  50884. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  50885. {
  50886. front: {
  50887. height: math.unit(6 + 5/12, "feet"),
  50888. weight: math.unit(750, "lb"),
  50889. name: "Front",
  50890. image: {
  50891. source: "./media/characters/ruchex/front.svg",
  50892. extra: 877/820,
  50893. bottom: 17/894
  50894. },
  50895. extraAttributes: {
  50896. "width": {
  50897. name: "Width",
  50898. power: 1,
  50899. type: "length",
  50900. base: math.unit(4.757, "feet")
  50901. },
  50902. }
  50903. },
  50904. },
  50905. [
  50906. {
  50907. name: "Normal",
  50908. height: math.unit(6 + 5/12, "feet"),
  50909. default: true
  50910. },
  50911. ]
  50912. ))
  50913. characterMakers.push(() => makeCharacter(
  50914. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  50915. {
  50916. dressedFront: {
  50917. height: math.unit(191, "cm"),
  50918. weight: math.unit(80, "kg"),
  50919. name: "Front",
  50920. image: {
  50921. source: "./media/characters/buster/dressed-front.svg",
  50922. extra: 1022/973,
  50923. bottom: 69/1091
  50924. }
  50925. },
  50926. dressedBack: {
  50927. height: math.unit(191, "cm"),
  50928. weight: math.unit(80, "kg"),
  50929. name: "Back",
  50930. image: {
  50931. source: "./media/characters/buster/dressed-back.svg",
  50932. extra: 1018/970,
  50933. bottom: 55/1073
  50934. }
  50935. },
  50936. nudeFront: {
  50937. height: math.unit(191, "cm"),
  50938. weight: math.unit(80, "kg"),
  50939. name: "Front (Nude)",
  50940. image: {
  50941. source: "./media/characters/buster/nude-front.svg",
  50942. extra: 1022/973,
  50943. bottom: 69/1091
  50944. }
  50945. },
  50946. nudeBack: {
  50947. height: math.unit(191, "cm"),
  50948. weight: math.unit(80, "kg"),
  50949. name: "Back (Nude)",
  50950. image: {
  50951. source: "./media/characters/buster/nude-back.svg",
  50952. extra: 1018/970,
  50953. bottom: 55/1073
  50954. }
  50955. },
  50956. dick: {
  50957. height: math.unit(2.59, "feet"),
  50958. name: "Dick",
  50959. image: {
  50960. source: "./media/characters/buster/dick.svg"
  50961. }
  50962. },
  50963. ass: {
  50964. height: math.unit(1.2, "feet"),
  50965. name: "Ass",
  50966. image: {
  50967. source: "./media/characters/buster/ass.svg"
  50968. }
  50969. },
  50970. },
  50971. [
  50972. {
  50973. name: "Normal",
  50974. height: math.unit(191, "cm"),
  50975. default: true
  50976. },
  50977. ]
  50978. ))
  50979. characterMakers.push(() => makeCharacter(
  50980. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  50981. {
  50982. side: {
  50983. height: math.unit(8.1, "feet"),
  50984. weight: math.unit(3500, "lb"),
  50985. name: "Side",
  50986. image: {
  50987. source: "./media/characters/sonya/side.svg",
  50988. extra: 1730/1317,
  50989. bottom: 86/1816
  50990. }
  50991. },
  50992. },
  50993. [
  50994. {
  50995. name: "Normal",
  50996. height: math.unit(8.1, "feet"),
  50997. default: true
  50998. },
  50999. ]
  51000. ))
  51001. characterMakers.push(() => makeCharacter(
  51002. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51003. {
  51004. front: {
  51005. height: math.unit(6, "feet"),
  51006. weight: math.unit(150, "lb"),
  51007. name: "Front",
  51008. image: {
  51009. source: "./media/characters/cadence-andrysiak/front.svg",
  51010. extra: 1164/1121,
  51011. bottom: 60/1224
  51012. }
  51013. },
  51014. back: {
  51015. height: math.unit(6, "feet"),
  51016. weight: math.unit(150, "lb"),
  51017. name: "Back",
  51018. image: {
  51019. source: "./media/characters/cadence-andrysiak/back.svg",
  51020. extra: 1200/1165,
  51021. bottom: 9/1209
  51022. }
  51023. },
  51024. dressed: {
  51025. height: math.unit(6, "feet"),
  51026. weight: math.unit(150, "lb"),
  51027. name: "Dressed",
  51028. image: {
  51029. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51030. extra: 1164/1121,
  51031. bottom: 60/1224
  51032. }
  51033. },
  51034. },
  51035. [
  51036. {
  51037. name: "Micro",
  51038. height: math.unit(1, "mm")
  51039. },
  51040. {
  51041. name: "Normal",
  51042. height: math.unit(6, "feet"),
  51043. default: true
  51044. },
  51045. ]
  51046. ))
  51047. characterMakers.push(() => makeCharacter(
  51048. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51049. {
  51050. front: {
  51051. height: math.unit(60, "inches"),
  51052. weight: math.unit(16, "lb"),
  51053. preyCapacity: math.unit(80, "liters"),
  51054. name: "Front",
  51055. image: {
  51056. source: "./media/characters/penny-lynx/front.svg",
  51057. extra: 1959/1769,
  51058. bottom: 49/2008
  51059. }
  51060. },
  51061. },
  51062. [
  51063. {
  51064. name: "Nokia",
  51065. height: math.unit(2, "inches")
  51066. },
  51067. {
  51068. name: "Desktop",
  51069. height: math.unit(24, "inches")
  51070. },
  51071. {
  51072. name: "TV",
  51073. height: math.unit(60, "inches")
  51074. },
  51075. {
  51076. name: "Jumbotron",
  51077. height: math.unit(12, "feet")
  51078. },
  51079. {
  51080. name: "Billboard",
  51081. height: math.unit(48, "feet"),
  51082. default: true
  51083. },
  51084. {
  51085. name: "IMAX",
  51086. height: math.unit(96, "feet")
  51087. },
  51088. {
  51089. name: "SINGULARITY",
  51090. height: math.unit(864938, "miles")
  51091. },
  51092. ]
  51093. ))
  51094. characterMakers.push(() => makeCharacter(
  51095. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51096. {
  51097. front: {
  51098. height: math.unit(5 + 4/12, "feet"),
  51099. weight: math.unit(230, "lb"),
  51100. name: "Front",
  51101. image: {
  51102. source: "./media/characters/sukebe/front.svg",
  51103. extra: 2130/2038,
  51104. bottom: 90/2220
  51105. }
  51106. },
  51107. back: {
  51108. height: math.unit(3.48, "feet"),
  51109. weight: math.unit(230, "lb"),
  51110. name: "Back",
  51111. image: {
  51112. source: "./media/characters/sukebe/back.svg",
  51113. extra: 1670/1604,
  51114. bottom: 0/1670
  51115. }
  51116. },
  51117. },
  51118. [
  51119. {
  51120. name: "Normal",
  51121. height: math.unit(5 + 4/12, "feet"),
  51122. default: true
  51123. },
  51124. ]
  51125. ))
  51126. characterMakers.push(() => makeCharacter(
  51127. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51128. {
  51129. front: {
  51130. height: math.unit(6, "feet"),
  51131. name: "Front",
  51132. image: {
  51133. source: "./media/characters/nylla/front.svg",
  51134. extra: 1868/1699,
  51135. bottom: 97/1965
  51136. }
  51137. },
  51138. back: {
  51139. height: math.unit(6, "feet"),
  51140. name: "Back",
  51141. image: {
  51142. source: "./media/characters/nylla/back.svg",
  51143. extra: 1889/1712,
  51144. bottom: 93/1982
  51145. }
  51146. },
  51147. frontNsfw: {
  51148. height: math.unit(6, "feet"),
  51149. name: "Front (NSFW)",
  51150. image: {
  51151. source: "./media/characters/nylla/front-nsfw.svg",
  51152. extra: 1868/1699,
  51153. bottom: 97/1965
  51154. },
  51155. extraAttributes: {
  51156. "dickLength": {
  51157. name: "Dick Length",
  51158. power: 1,
  51159. type: "length",
  51160. base: math.unit(1.4, "feet")
  51161. },
  51162. "cumVolume": {
  51163. name: "Cum Volume",
  51164. power: 3,
  51165. type: "volume",
  51166. base: math.unit(100, "mL")
  51167. },
  51168. }
  51169. },
  51170. backNsfw: {
  51171. height: math.unit(6, "feet"),
  51172. name: "Back (NSFW)",
  51173. image: {
  51174. source: "./media/characters/nylla/back-nsfw.svg",
  51175. extra: 1889/1712,
  51176. bottom: 93/1982
  51177. }
  51178. },
  51179. maw: {
  51180. height: math.unit(2.10, "feet"),
  51181. name: "Maw",
  51182. image: {
  51183. source: "./media/characters/nylla/maw.svg"
  51184. }
  51185. },
  51186. paws: {
  51187. height: math.unit(2.06, "feet"),
  51188. name: "Paws",
  51189. image: {
  51190. source: "./media/characters/nylla/paws.svg"
  51191. }
  51192. },
  51193. muzzle: {
  51194. height: math.unit(0.61, "feet"),
  51195. name: "Muzzle",
  51196. image: {
  51197. source: "./media/characters/nylla/muzzle.svg"
  51198. }
  51199. },
  51200. sheath: {
  51201. height: math.unit(1.305, "feet"),
  51202. name: "Sheath",
  51203. image: {
  51204. source: "./media/characters/nylla/sheath.svg"
  51205. }
  51206. },
  51207. },
  51208. [
  51209. {
  51210. name: "Micro",
  51211. height: math.unit(7.5, "inches")
  51212. },
  51213. {
  51214. name: "Normal",
  51215. height: math.unit(7, "feet"),
  51216. default: true
  51217. },
  51218. {
  51219. name: "Macro",
  51220. height: math.unit(60, "feet")
  51221. },
  51222. {
  51223. name: "Mega",
  51224. height: math.unit(200, "feet")
  51225. },
  51226. ]
  51227. ))
  51228. characterMakers.push(() => makeCharacter(
  51229. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51230. {
  51231. front: {
  51232. height: math.unit(10, "feet"),
  51233. weight: math.unit(2300, "lb"),
  51234. name: "Front",
  51235. image: {
  51236. source: "./media/characters/hunt3r/front.svg",
  51237. extra: 1909/1742,
  51238. bottom: 46/1955
  51239. }
  51240. },
  51241. },
  51242. [
  51243. {
  51244. name: "Normal",
  51245. height: math.unit(10, "feet"),
  51246. default: true
  51247. },
  51248. ]
  51249. ))
  51250. characterMakers.push(() => makeCharacter(
  51251. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51252. {
  51253. dressed: {
  51254. height: math.unit(11, "feet"),
  51255. weight: math.unit(18500, "lb"),
  51256. preyCapacity: math.unit(9, "people"),
  51257. name: "Dressed",
  51258. image: {
  51259. source: "./media/characters/cylphis/dressed.svg",
  51260. extra: 1028/1003,
  51261. bottom: 75/1103
  51262. },
  51263. },
  51264. undressed: {
  51265. height: math.unit(11, "feet"),
  51266. weight: math.unit(18500, "lb"),
  51267. preyCapacity: math.unit(9, "people"),
  51268. name: "Undressed",
  51269. image: {
  51270. source: "./media/characters/cylphis/undressed.svg",
  51271. extra: 1028/1003,
  51272. bottom: 75/1103
  51273. }
  51274. },
  51275. full: {
  51276. height: math.unit(11, "feet"),
  51277. weight: math.unit(18500 + 150*9, "lb"),
  51278. preyCapacity: math.unit(9, "people"),
  51279. name: "Full",
  51280. image: {
  51281. source: "./media/characters/cylphis/full.svg",
  51282. extra: 1028/1003,
  51283. bottom: 75/1103
  51284. }
  51285. },
  51286. },
  51287. [
  51288. {
  51289. name: "Small",
  51290. height: math.unit(8, "feet")
  51291. },
  51292. {
  51293. name: "Normal",
  51294. height: math.unit(11, "feet"),
  51295. default: true
  51296. },
  51297. ]
  51298. ))
  51299. characterMakers.push(() => makeCharacter(
  51300. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51301. {
  51302. front: {
  51303. height: math.unit(2 + 7/12, "feet"),
  51304. name: "Front",
  51305. image: {
  51306. source: "./media/characters/orishan/front.svg",
  51307. extra: 1058/1023,
  51308. bottom: 23/1081
  51309. }
  51310. },
  51311. back: {
  51312. height: math.unit(2 + 7/12, "feet"),
  51313. name: "Back",
  51314. image: {
  51315. source: "./media/characters/orishan/back.svg",
  51316. extra: 1058/1023,
  51317. bottom: 23/1081
  51318. }
  51319. },
  51320. },
  51321. [
  51322. {
  51323. name: "Micro",
  51324. height: math.unit(2, "cm")
  51325. },
  51326. {
  51327. name: "Normal",
  51328. height: math.unit(2 + 7/12, "feet"),
  51329. default: true
  51330. },
  51331. ]
  51332. ))
  51333. characterMakers.push(() => makeCharacter(
  51334. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  51335. {
  51336. front: {
  51337. height: math.unit(3, "meters"),
  51338. weight: math.unit(508, "kg"),
  51339. name: "Front",
  51340. image: {
  51341. source: "./media/characters/seranis/front.svg",
  51342. extra: 1478/1454,
  51343. bottom: 41/1519
  51344. }
  51345. },
  51346. },
  51347. [
  51348. {
  51349. name: "Normal",
  51350. height: math.unit(3, "meters"),
  51351. default: true
  51352. },
  51353. {
  51354. name: "Macro",
  51355. height: math.unit(108, "meters")
  51356. },
  51357. {
  51358. name: "Megamacro",
  51359. height: math.unit(1250, "meters")
  51360. },
  51361. ]
  51362. ))
  51363. //characters
  51364. function makeCharacters() {
  51365. const results = [];
  51366. characterMakers.forEach(character => {
  51367. results.push(character());
  51368. });
  51369. return results;
  51370. }