less copy protection, more size visualization
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

64293 lines
1.6 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal",
  234. "aquatic"
  235. ]
  236. },
  237. "ram": {
  238. name: "Ram",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "demon": {
  244. name: "Demon",
  245. parents: [
  246. "supernatural"
  247. ]
  248. },
  249. "cougar": {
  250. name: "Cougar",
  251. parents: [
  252. "cat"
  253. ]
  254. },
  255. "goat": {
  256. name: "Goat",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "lion": {
  262. name: "Lion",
  263. parents: [
  264. "cat"
  265. ]
  266. },
  267. "harpy-eager": {
  268. name: "Harpy Eagle",
  269. parents: [
  270. "avian"
  271. ]
  272. },
  273. "deer": {
  274. name: "Deer",
  275. parents: [
  276. "mammal"
  277. ]
  278. },
  279. "phoenix": {
  280. name: "Phoenix",
  281. parents: [
  282. "avian"
  283. ]
  284. },
  285. "aeromorph": {
  286. name: "Aeromorph",
  287. parents: [
  288. "machine"
  289. ]
  290. },
  291. "machine": {
  292. name: "Machine",
  293. },
  294. "android": {
  295. name: "Android",
  296. parents: [
  297. "machine"
  298. ]
  299. },
  300. "jackal": {
  301. name: "Jackal",
  302. parents: [
  303. "canine"
  304. ]
  305. },
  306. "corvid": {
  307. name: "Corvid",
  308. parents: [
  309. "passerine"
  310. ]
  311. },
  312. "pharaoh-hound": {
  313. name: "Pharaoh Hound",
  314. parents: [
  315. "dog"
  316. ]
  317. },
  318. "skunk": {
  319. name: "Skunk",
  320. parents: [
  321. "mammal"
  322. ]
  323. },
  324. "shark": {
  325. name: "Shark",
  326. parents: [
  327. "fish"
  328. ]
  329. },
  330. "black-panther": {
  331. name: "Black Panther",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "umbra": {
  337. name: "Umbra",
  338. parents: [
  339. "animal"
  340. ]
  341. },
  342. "raven": {
  343. name: "Raven",
  344. parents: [
  345. "corvid"
  346. ]
  347. },
  348. "snow-leopard": {
  349. name: "Snow Leopard",
  350. parents: [
  351. "cat"
  352. ]
  353. },
  354. "barbary-lion": {
  355. name: "Barbary Lion",
  356. parents: [
  357. "lion"
  358. ]
  359. },
  360. "dra'gal": {
  361. name: "Dra'Gal",
  362. parents: [
  363. "mammal"
  364. ]
  365. },
  366. "german-shepherd": {
  367. name: "German Shepherd",
  368. parents: [
  369. "dog"
  370. ]
  371. },
  372. "bayleef": {
  373. name: "Bayleef",
  374. parents: [
  375. "pokemon",
  376. "plant",
  377. "animal"
  378. ]
  379. },
  380. "mouse": {
  381. name: "Mouse",
  382. parents: [
  383. "rodent"
  384. ]
  385. },
  386. "rat": {
  387. name: "Rat",
  388. parents: [
  389. "mammal"
  390. ]
  391. },
  392. "hoshiko-beast": {
  393. name: "Hoshiko Beast",
  394. parents: ["animal"]
  395. },
  396. "snow-jugani": {
  397. name: "Snow Jugani",
  398. parents: ["cat"]
  399. },
  400. "patamon": {
  401. name: "Patamon",
  402. parents: ["digimon", "guinea-pig"]
  403. },
  404. "digimon": {
  405. name: "Digimon",
  406. parents: [
  407. "video-games"
  408. ]
  409. },
  410. "jugani": {
  411. name: "Jugani",
  412. parents: ["cat"]
  413. },
  414. "luxray": {
  415. name: "Luxray",
  416. parents: ["pokemon", "lion"]
  417. },
  418. "mech": {
  419. name: "Mech",
  420. parents: ["machine"]
  421. },
  422. "zoid": {
  423. name: "Zoid",
  424. parents: ["mech"]
  425. },
  426. "monster": {
  427. name: "Monster",
  428. parents: ["animal"]
  429. },
  430. "foo-dog": {
  431. name: "Foo Dog",
  432. parents: ["mammal"]
  433. },
  434. "elephant": {
  435. name: "Elephant",
  436. parents: ["mammal"]
  437. },
  438. "eagle": {
  439. name: "Eagle",
  440. parents: ["bird-of-prey"]
  441. },
  442. "cow": {
  443. name: "Cow",
  444. parents: ["mammal"]
  445. },
  446. "crocodile": {
  447. name: "Crocodile",
  448. parents: ["reptile"]
  449. },
  450. "borzoi": {
  451. name: "Borzoi",
  452. parents: ["dog"]
  453. },
  454. "snake": {
  455. name: "Snake",
  456. parents: ["reptile"]
  457. },
  458. "horned-bush-viper": {
  459. name: "Horned Bush Viper",
  460. parents: ["viper"]
  461. },
  462. "cobra": {
  463. name: "Cobra",
  464. parents: ["snake"]
  465. },
  466. "harpy-eagle": {
  467. name: "Harpy Eagle",
  468. parents: ["eagle"]
  469. },
  470. "raptor": {
  471. name: "Raptor",
  472. parents: ["dinosaur"]
  473. },
  474. "dinosaur": {
  475. name: "Dinosaur",
  476. parents: ["saurian"]
  477. },
  478. "saurian": {
  479. name: "Saurian",
  480. parents: ["lizard"]
  481. },
  482. "veilhound": {
  483. name: "Veilhound",
  484. parents: ["hellhound"]
  485. },
  486. "hellhound": {
  487. name: "Hellhound",
  488. parents: ["canine", "demon"]
  489. },
  490. "insect": {
  491. name: "Insect",
  492. parents: ["animal"]
  493. },
  494. "beetle": {
  495. name: "Beetle",
  496. parents: ["insect"]
  497. },
  498. "moth": {
  499. name: "Moth",
  500. parents: ["insect"]
  501. },
  502. "eastern-dragon": {
  503. name: "Eastern Dragon",
  504. parents: ["dragon"]
  505. },
  506. "jaguar": {
  507. name: "Jaguar",
  508. parents: ["cat"]
  509. },
  510. "horse": {
  511. name: "Horse",
  512. parents: ["mammal"]
  513. },
  514. "sergal": {
  515. name: "Sergal",
  516. parents: ["mammal", "avian", "vilous"]
  517. },
  518. "gryphon": {
  519. name: "Gryphon",
  520. parents: ["lion", "eagle"]
  521. },
  522. "robot": {
  523. name: "Robot",
  524. parents: ["machine"]
  525. },
  526. "medihound": {
  527. name: "Medihound",
  528. parents: ["robot", "dog"]
  529. },
  530. "sylveon": {
  531. name: "Sylveon",
  532. parents: ["pokemon"]
  533. },
  534. "catgirl": {
  535. name: "Catgirl",
  536. parents: ["mammal"]
  537. },
  538. "cowgirl": {
  539. name: "Cowgirl",
  540. parents: ["mammal"]
  541. },
  542. "pony": {
  543. name: "Pony",
  544. parents: ["horse"]
  545. },
  546. "rabbit": {
  547. name: "Rabbit",
  548. parents: ["leporidae"]
  549. },
  550. "fennec-fox": {
  551. name: "Fennec Fox",
  552. parents: ["fox"]
  553. },
  554. "azodian": {
  555. name: "Azodian",
  556. parents: ["mouse"]
  557. },
  558. "shiba-inu": {
  559. name: "Shiba Inu",
  560. parents: ["dog"]
  561. },
  562. "changeling": {
  563. name: "Changeling",
  564. parents: ["insect"]
  565. },
  566. "cheetah": {
  567. name: "Cheetah",
  568. parents: ["cat"]
  569. },
  570. "golden-jackal": {
  571. name: "Golden Jackal",
  572. parents: ["jackal"]
  573. },
  574. "manectric": {
  575. name: "Manectric",
  576. parents: ["pokemon", "wolf"]
  577. },
  578. "rat": {
  579. name: "Rat",
  580. parents: ["rodent"]
  581. },
  582. "rodent": {
  583. name: "Rodent",
  584. parents: ["mammal"]
  585. },
  586. "octocoon": {
  587. name: "Octocoon",
  588. parents: ["raccoon", "octopus"]
  589. },
  590. "octopus": {
  591. name: "Octopus",
  592. parents: ["fish"]
  593. },
  594. "werewolf": {
  595. name: "Werewolf",
  596. parents: ["wolf", "werebeast"]
  597. },
  598. "werebeast": {
  599. name: "Werebeast",
  600. parents: ["monster"]
  601. },
  602. "meerkat": {
  603. name: "Meerkat",
  604. parents: ["mammal"]
  605. },
  606. "human": {
  607. name: "Human",
  608. parents: ["mammal", "humanoid"]
  609. },
  610. "geth": {
  611. name: "Geth",
  612. parents: ["android"]
  613. },
  614. "husky": {
  615. name: "Husky",
  616. parents: ["dog"]
  617. },
  618. "long-eared-bat": {
  619. name: "Long Eared Bat",
  620. parents: ["bat"]
  621. },
  622. "lizard": {
  623. name: "Lizard",
  624. parents: ["reptile"]
  625. },
  626. "salamander": {
  627. name: "Salamander",
  628. parents: ["lizard"]
  629. },
  630. "chameleon": {
  631. name: "Chameleon",
  632. parents: ["lizard"]
  633. },
  634. "gecko": {
  635. name: "Gecko",
  636. parents: ["lizard"]
  637. },
  638. "kobold": {
  639. name: "Kobold",
  640. parents: ["reptile"]
  641. },
  642. "charizard": {
  643. name: "Charizard",
  644. parents: ["pokemon", "dragon"]
  645. },
  646. "lugia": {
  647. name: "Lugia",
  648. parents: ["pokemon", "avian"]
  649. },
  650. "cerberus": {
  651. name: "Cerberus",
  652. parents: ["dog"]
  653. },
  654. "tyrantrum": {
  655. name: "Tyrantrum",
  656. parents: ["pokemon"]
  657. },
  658. "lemur": {
  659. name: "Lemur",
  660. parents: ["mammal"]
  661. },
  662. "kelpie": {
  663. name: "Kelpie",
  664. parents: ["horse", "monster"]
  665. },
  666. "labrador": {
  667. name: "Labrador",
  668. parents: ["dog"]
  669. },
  670. "sylveon": {
  671. name: "Sylveon",
  672. parents: ["eeveelution"]
  673. },
  674. "eeveelution": {
  675. name: "Eeveelution",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "polar-bear": {
  679. name: "Polar Bear",
  680. parents: ["bear"]
  681. },
  682. "bear": {
  683. name: "Bear",
  684. parents: ["mammal"]
  685. },
  686. "absol": {
  687. name: "Absol",
  688. parents: ["pokemon", "cat"]
  689. },
  690. "wolver": {
  691. name: "Wolver",
  692. parents: ["mammal"]
  693. },
  694. "rottweiler": {
  695. name: "Rottweiler",
  696. parents: ["dog"]
  697. },
  698. "zebra": {
  699. name: "Zebra",
  700. parents: ["horse"]
  701. },
  702. "yoshi": {
  703. name: "Yoshi",
  704. parents: ["dinosaur"]
  705. },
  706. "lynx": {
  707. name: "Lynx",
  708. parents: ["cat"]
  709. },
  710. "unknown": {
  711. name: "Unknown",
  712. parents: []
  713. },
  714. "thylacine": {
  715. name: "Thylacine",
  716. parents: ["mammal"]
  717. },
  718. "gabumon": {
  719. name: "Gabumon",
  720. parents: ["digimon"]
  721. },
  722. "border-collie": {
  723. name: "Border Collie",
  724. parents: ["dog"]
  725. },
  726. "imp": {
  727. name: "Imp",
  728. parents: ["demon"]
  729. },
  730. "kangaroo": {
  731. name: "Kangaroo",
  732. parents: ["marsupial"]
  733. },
  734. "renamon": {
  735. name: "Renamon",
  736. parents: ["digimon", "fox"]
  737. },
  738. "candy-orca-dragon": {
  739. name: "Candy Orca Dragon",
  740. parents: ["fish", "dragon", "candy"]
  741. },
  742. "sabertooth-tiger": {
  743. name: "Sabertooth Tiger",
  744. parents: ["cat"]
  745. },
  746. "espurr": {
  747. name: "Espurr",
  748. parents: ["pokemon", "cat"]
  749. },
  750. "otter": {
  751. name: "Otter",
  752. parents: ["mustelid"]
  753. },
  754. "elemental": {
  755. name: "Elemental",
  756. parents: ["mammal"]
  757. },
  758. "mew": {
  759. name: "Mew",
  760. parents: ["pokemon"]
  761. },
  762. "goodra": {
  763. name: "Goodra",
  764. parents: ["pokemon"]
  765. },
  766. "fairy": {
  767. name: "Fairy",
  768. parents: ["magical"]
  769. },
  770. "typhlosion": {
  771. name: "Typhlosion",
  772. parents: ["pokemon"]
  773. },
  774. "magical": {
  775. name: "Magical",
  776. parents: []
  777. },
  778. "xenomorph": {
  779. name: "Xenomorph",
  780. parents: ["monster", "alien"]
  781. },
  782. "charr": {
  783. name: "Charr",
  784. parents: ["cat"]
  785. },
  786. "siberian-husky": {
  787. name: "Siberian Husky",
  788. parents: ["husky"]
  789. },
  790. "alligator": {
  791. name: "Alligator",
  792. parents: ["reptile"]
  793. },
  794. "bernese-mountain-dog": {
  795. name: "Bernese Mountain Dog",
  796. parents: ["dog"]
  797. },
  798. "reshiram": {
  799. name: "Reshiram",
  800. parents: ["pokemon", "dragon"]
  801. },
  802. "grizzly-bear": {
  803. name: "Grizzly Bear",
  804. parents: ["bear"]
  805. },
  806. "water-monitor": {
  807. name: "Water Monitor",
  808. parents: ["lizard"]
  809. },
  810. "banchofossa": {
  811. name: "Banchofossa",
  812. parents: ["mammal"]
  813. },
  814. "kirin": {
  815. name: "Kirin",
  816. parents: ["monster"]
  817. },
  818. "quilava": {
  819. name: "Quilava",
  820. parents: ["pokemon"]
  821. },
  822. "seviper": {
  823. name: "Seviper",
  824. parents: ["pokemon", "viper"]
  825. },
  826. "flying-fox": {
  827. name: "Flying Fox",
  828. parents: ["bat"]
  829. },
  830. "keynain": {
  831. name: "Keynain",
  832. parents: ["avian"]
  833. },
  834. "lucario": {
  835. name: "Lucario",
  836. parents: ["pokemon", "jackal"]
  837. },
  838. "siamese-cat": {
  839. name: "Siamese Cat",
  840. parents: ["cat"]
  841. },
  842. "spider": {
  843. name: "Spider",
  844. parents: ["insect"]
  845. },
  846. "samurott": {
  847. name: "Samurott",
  848. parents: ["pokemon", "otter"]
  849. },
  850. "megalodon": {
  851. name: "Megalodon",
  852. parents: ["shark"]
  853. },
  854. "unicorn": {
  855. name: "Unicorn",
  856. parents: ["horse"]
  857. },
  858. "greninja": {
  859. name: "Greninja",
  860. parents: ["pokemon", "frog"]
  861. },
  862. "water-dragon": {
  863. name: "Water Dragon",
  864. parents: ["dragon"]
  865. },
  866. "cross-fox": {
  867. name: "Cross Fox",
  868. parents: ["fox"]
  869. },
  870. "synth": {
  871. name: "Synth",
  872. parents: ["machine"]
  873. },
  874. "construct": {
  875. name: "Construct",
  876. parents: []
  877. },
  878. "mexican-wolf": {
  879. name: "Mexican Wolf",
  880. parents: ["wolf"]
  881. },
  882. "leopard": {
  883. name: "Leopard",
  884. parents: ["cat"]
  885. },
  886. "pig": {
  887. name: "Pig",
  888. parents: ["mammal"]
  889. },
  890. "ampharos": {
  891. name: "Ampharos",
  892. parents: ["pokemon", "sheep"]
  893. },
  894. "orca": {
  895. name: "Orca",
  896. parents: ["fish"]
  897. },
  898. "lycanroc": {
  899. name: "Lycanroc",
  900. parents: ["pokemon", "wolf"]
  901. },
  902. "surkanu": {
  903. name: "Surkanu",
  904. parents: ["monster"]
  905. },
  906. "seal": {
  907. name: "Seal",
  908. parents: ["mammal"]
  909. },
  910. "keldeo": {
  911. name: "Keldeo",
  912. parents: ["pokemon"]
  913. },
  914. "great-dane": {
  915. name: "Great Dane",
  916. parents: ["dog"]
  917. },
  918. "black-backed-jackal": {
  919. name: "Black Backed Jackal",
  920. parents: ["jackal"]
  921. },
  922. "sheep": {
  923. name: "Sheep",
  924. parents: ["mammal"]
  925. },
  926. "leopard-seal": {
  927. name: "Leopard Seal",
  928. parents: ["seal"]
  929. },
  930. "zoroark": {
  931. name: "Zoroark",
  932. parents: ["pokemon", "fox"]
  933. },
  934. "maned-wolf": {
  935. name: "Maned Wolf",
  936. parents: ["canine"]
  937. },
  938. "dracha": {
  939. name: "Dracha",
  940. parents: ["dragon"]
  941. },
  942. "wolxi": {
  943. name: "Wolxi",
  944. parents: ["mammal", "alien"]
  945. },
  946. "dratini": {
  947. name: "Dratini",
  948. parents: ["pokemon", "dragon"]
  949. },
  950. "skaven": {
  951. name: "Skaven",
  952. parents: ["rat"]
  953. },
  954. "mongoose": {
  955. name: "Mongoose",
  956. parents: ["mammal"]
  957. },
  958. "lopunny": {
  959. name: "Lopunny",
  960. parents: ["pokemon", "rabbit"]
  961. },
  962. "feraligatr": {
  963. name: "Feraligatr",
  964. parents: ["pokemon", "alligator"]
  965. },
  966. "houndoom": {
  967. name: "Houndoom",
  968. parents: ["pokemon", "dog"]
  969. },
  970. "protogen": {
  971. name: "Protogen",
  972. parents: ["machine"]
  973. },
  974. "saint-bernard": {
  975. name: "Saint Bernard",
  976. parents: ["dog"]
  977. },
  978. "crow": {
  979. name: "Crow",
  980. parents: ["corvid"]
  981. },
  982. "delphox": {
  983. name: "Delphox",
  984. parents: ["pokemon", "fox"]
  985. },
  986. "moose": {
  987. name: "Moose",
  988. parents: ["mammal"]
  989. },
  990. "joraxian": {
  991. name: "Joraxian",
  992. parents: ["monster", "canine", "demon"]
  993. },
  994. "nimbat": {
  995. name: "Nimbat",
  996. parents: ["mammal"]
  997. },
  998. "aardwolf": {
  999. name: "Aardwolf",
  1000. parents: ["canine"]
  1001. },
  1002. "fluudrani": {
  1003. name: "Fluudrani",
  1004. parents: ["animal"]
  1005. },
  1006. "arcanine": {
  1007. name: "Arcanine",
  1008. parents: ["pokemon", "dog"]
  1009. },
  1010. "inteleon": {
  1011. name: "Inteleon",
  1012. parents: ["pokemon", "fish"]
  1013. },
  1014. "ninetales": {
  1015. name: "Ninetales",
  1016. parents: ["pokemon", "kitsune"]
  1017. },
  1018. "tigrex": {
  1019. name: "Tigrex",
  1020. parents: ["wyvern", "monster-hunter"]
  1021. },
  1022. "zorua": {
  1023. name: "Zorua",
  1024. parents: ["pokemon", "fox"]
  1025. },
  1026. "vulpix": {
  1027. name: "Vulpix",
  1028. parents: ["pokemon", "fox"]
  1029. },
  1030. "barghest": {
  1031. name: "Barghest",
  1032. parents: ["monster"]
  1033. },
  1034. "gray-wolf": {
  1035. name: "Gray Wolf",
  1036. parents: ["wolf"]
  1037. },
  1038. "ruppells-fox": {
  1039. name: "Rüppell's Fox",
  1040. parents: ["fox"]
  1041. },
  1042. "bull-terrier": {
  1043. name: "Bull Terrier",
  1044. parents: ["dog"]
  1045. },
  1046. "european-honey-buzzard": {
  1047. name: "European Honey Buzzard",
  1048. parents: ["avian"]
  1049. },
  1050. "t-rex": {
  1051. name: "Tyrannosaurus Rex",
  1052. parents: ["theropod"]
  1053. },
  1054. "mactarian": {
  1055. name: "Mactarian",
  1056. parents: ["shark", "monster"]
  1057. },
  1058. "mewtwo-y": {
  1059. name: "Mewtwo Y",
  1060. parents: ["mewtwo"]
  1061. },
  1062. "mewtwo": {
  1063. name: "Mewtwo",
  1064. parents: ["pokemon"]
  1065. },
  1066. "eevee": {
  1067. name: "Eevee",
  1068. parents: ["eeveelution"]
  1069. },
  1070. "mienshao": {
  1071. name: "Mienshao",
  1072. parents: ["pokemon"]
  1073. },
  1074. "sugar-glider": {
  1075. name: "Sugar Glider",
  1076. parents: ["opossum"]
  1077. },
  1078. "spectral-bat": {
  1079. name: "Spectral Bat",
  1080. parents: ["bat"]
  1081. },
  1082. "scolipede": {
  1083. name: "Scolipede",
  1084. parents: ["pokemon", "insect"]
  1085. },
  1086. "jackalope": {
  1087. name: "Jackalope",
  1088. parents: ["rabbit", "antelope"]
  1089. },
  1090. "caracal": {
  1091. name: "Caracal",
  1092. parents: ["cat"]
  1093. },
  1094. "stoat": {
  1095. name: "Stoat",
  1096. parents: ["mammal"]
  1097. },
  1098. "african-golden-cat": {
  1099. name: "African Golden Cat",
  1100. parents: ["cat"]
  1101. },
  1102. "gigantosaurus": {
  1103. name: "Gigantosaurus",
  1104. parents: ["dinosaur"]
  1105. },
  1106. "zorgoia": {
  1107. name: "Zorgoia",
  1108. parents: ["mammal"]
  1109. },
  1110. "monitor-lizard": {
  1111. name: "Monitor Lizard",
  1112. parents: ["lizard"]
  1113. },
  1114. "ziralkia": {
  1115. name: "Ziralkia",
  1116. parents: ["mammal"]
  1117. },
  1118. "kiiasi": {
  1119. name: "Kiiasi",
  1120. parents: ["animal"]
  1121. },
  1122. "synx": {
  1123. name: "Synx",
  1124. parents: ["monster"]
  1125. },
  1126. "panther": {
  1127. name: "Panther",
  1128. parents: ["cat"]
  1129. },
  1130. "azumarill": {
  1131. name: "Azumarill",
  1132. parents: ["pokemon"]
  1133. },
  1134. "river-snaptail": {
  1135. name: "River Snaptail",
  1136. parents: ["otter", "crocodile"]
  1137. },
  1138. "great-blue-heron": {
  1139. name: "Great Blue Heron",
  1140. parents: ["avian"]
  1141. },
  1142. "smeargle": {
  1143. name: "Smeargle",
  1144. parents: ["pokemon"]
  1145. },
  1146. "vendeilen": {
  1147. name: "Vendeilen",
  1148. parents: ["monster"]
  1149. },
  1150. "ventura": {
  1151. name: "Ventura",
  1152. parents: ["canine"]
  1153. },
  1154. "clouded-leopard": {
  1155. name: "Clouded Leopard",
  1156. parents: ["leopard"]
  1157. },
  1158. "argonian": {
  1159. name: "Argonian",
  1160. parents: ["lizard"]
  1161. },
  1162. "salazzle": {
  1163. name: "Salazzle",
  1164. parents: ["pokemon", "lizard"]
  1165. },
  1166. "je-stoff-drachen": {
  1167. name: "Je-Stoff Drachen",
  1168. parents: ["dragon"]
  1169. },
  1170. "finnish-spitz-dog": {
  1171. name: "Finnish Spitz Dog",
  1172. parents: ["dog"]
  1173. },
  1174. "gray-fox": {
  1175. name: "Gray Fox",
  1176. parents: ["fox"]
  1177. },
  1178. "opossum": {
  1179. name: "Opossum",
  1180. parents: ["mammal"]
  1181. },
  1182. "antelope": {
  1183. name: "Antelope",
  1184. parents: ["mammal"]
  1185. },
  1186. "weavile": {
  1187. name: "Weavile",
  1188. parents: ["pokemon"]
  1189. },
  1190. "pikachu": {
  1191. name: "Pikachu",
  1192. parents: ["pokemon", "mouse"]
  1193. },
  1194. "grovyle": {
  1195. name: "Grovyle",
  1196. parents: ["pokemon", "plant"]
  1197. },
  1198. "sthara": {
  1199. name: "Sthara",
  1200. parents: ["snow-leopard", "reptile"]
  1201. },
  1202. "star-warrior": {
  1203. name: "Star Warrior",
  1204. parents: ["magical"]
  1205. },
  1206. "dragonoid": {
  1207. name: "Dragonoid",
  1208. parents: ["dragon"]
  1209. },
  1210. "suicune": {
  1211. name: "Suicune",
  1212. parents: ["pokemon"]
  1213. },
  1214. "vole": {
  1215. name: "Vole",
  1216. parents: ["mammal"]
  1217. },
  1218. "blaziken": {
  1219. name: "Blaziken",
  1220. parents: ["pokemon", "avian"]
  1221. },
  1222. "buizel": {
  1223. name: "Buizel",
  1224. parents: ["pokemon", "fish"]
  1225. },
  1226. "floatzel": {
  1227. name: "Floatzel",
  1228. parents: ["pokemon", "fish"]
  1229. },
  1230. "umok": {
  1231. name: "Umok",
  1232. parents: ["avian"]
  1233. },
  1234. "sea-monster": {
  1235. name: "Sea Monster",
  1236. parents: ["monster", "fish"]
  1237. },
  1238. "egyptian-vulture": {
  1239. name: "Egyptian Vulture",
  1240. parents: ["avian"]
  1241. },
  1242. "doberman": {
  1243. name: "Doberman",
  1244. parents: ["dog"]
  1245. },
  1246. "zangoose": {
  1247. name: "Zangoose",
  1248. parents: ["pokemon", "mongoose"]
  1249. },
  1250. "mongoose": {
  1251. name: "Mongoose",
  1252. parents: ["mammal"]
  1253. },
  1254. "wickerbeast": {
  1255. name: "Wickerbeast",
  1256. parents: ["monster"]
  1257. },
  1258. "zenari": {
  1259. name: "Zenari",
  1260. parents: ["lizard"]
  1261. },
  1262. "plant": {
  1263. name: "Plant",
  1264. parents: []
  1265. },
  1266. "raskatox": {
  1267. name: "Raskatox",
  1268. parents: ["raccoon", "skunk", "cat", "fox"]
  1269. },
  1270. "mikromare": {
  1271. name: "mikromare",
  1272. parents: ["alien"]
  1273. },
  1274. "alien": {
  1275. name: "Alien",
  1276. parents: ["animal"]
  1277. },
  1278. "deity": {
  1279. name: "Deity",
  1280. parents: []
  1281. },
  1282. "skarlan": {
  1283. name: "Skarlan",
  1284. parents: ["slug", "dragon"]
  1285. },
  1286. "slug": {
  1287. name: "Slug",
  1288. parents: ["mollusk"]
  1289. },
  1290. "mollusk": {
  1291. name: "Mollusk",
  1292. parents: ["animal"]
  1293. },
  1294. "chimera": {
  1295. name: "Chimera",
  1296. parents: ["monster"]
  1297. },
  1298. "gestalt": {
  1299. name: "Gestalt",
  1300. parents: ["construct"]
  1301. },
  1302. "mimic": {
  1303. name: "Mimic",
  1304. parents: ["monster"]
  1305. },
  1306. "calico-rat": {
  1307. name: "Calico Rat",
  1308. parents: ["rat"]
  1309. },
  1310. "panda": {
  1311. name: "Panda",
  1312. parents: ["mammal"]
  1313. },
  1314. "oni": {
  1315. name: "Oni",
  1316. parents: ["monster"]
  1317. },
  1318. "pegasus": {
  1319. name: "Pegasus",
  1320. parents: ["horse"]
  1321. },
  1322. "vulpera": {
  1323. name: "Vulpera",
  1324. parents: ["fennec-fox"]
  1325. },
  1326. "ceratosaurus": {
  1327. name: "Ceratosaurus",
  1328. parents: ["dinosaur"]
  1329. },
  1330. "nykur": {
  1331. name: "Nykur",
  1332. parents: ["horse", "monster"]
  1333. },
  1334. "giraffe": {
  1335. name: "Giraffe",
  1336. parents: ["mammal"]
  1337. },
  1338. "tauren": {
  1339. name: "Tauren",
  1340. parents: ["cow"]
  1341. },
  1342. "draconi": {
  1343. name: "Draconi",
  1344. parents: ["alien", "cat", "cyborg"]
  1345. },
  1346. "dire-wolf": {
  1347. name: "Dire Wolf",
  1348. parents: ["wolf"]
  1349. },
  1350. "ferromorph": {
  1351. name: "Ferromorph",
  1352. parents: ["construct"]
  1353. },
  1354. "meowth": {
  1355. name: "Meowth",
  1356. parents: ["cat", "pokemon"]
  1357. },
  1358. "pavodragon": {
  1359. name: "Pavodragon",
  1360. parents: ["dragon"]
  1361. },
  1362. "aaltranae": {
  1363. name: "Aaltranae",
  1364. parents: ["dragon"]
  1365. },
  1366. "cyborg": {
  1367. name: "Cyborg",
  1368. parents: ["machine"]
  1369. },
  1370. "draptor": {
  1371. name: "Draptor",
  1372. parents: ["dragon"]
  1373. },
  1374. "candy": {
  1375. name: "Candy",
  1376. parents: []
  1377. },
  1378. "drenath": {
  1379. name: "Drenath",
  1380. parents: ["dragon", "snake", "rabbit"]
  1381. },
  1382. "coyju": {
  1383. name: "Coyju",
  1384. parents: ["coyote", "kaiju"]
  1385. },
  1386. "kaiju": {
  1387. name: "Kaiju",
  1388. parents: ["monster"]
  1389. },
  1390. "nickit": {
  1391. name: "Nickit",
  1392. parents: ["pokemon", "cat"]
  1393. },
  1394. "lopunny": {
  1395. name: "Lopunny",
  1396. parents: ["pokemon", "rabbit"]
  1397. },
  1398. "korean-jindo-dog": {
  1399. name: "Korean Jindo Dog",
  1400. parents: ["dog"]
  1401. },
  1402. "naga": {
  1403. name: "Naga",
  1404. parents: ["snake", "monster"]
  1405. },
  1406. "undead": {
  1407. name: "Undead",
  1408. parents: ["monster"]
  1409. },
  1410. "whale": {
  1411. name: "Whale",
  1412. parents: ["fish"]
  1413. },
  1414. "gelato-bee": {
  1415. name: "Gelato Bee",
  1416. parents: ["bee"]
  1417. },
  1418. "bee": {
  1419. name: "Bee",
  1420. parents: ["insect"]
  1421. },
  1422. "gardevoir": {
  1423. name: "Gardevoir",
  1424. parents: ["pokemon"]
  1425. },
  1426. "ant": {
  1427. name: "Ant",
  1428. parents: ["insect"]
  1429. },
  1430. "frog": {
  1431. name: "Frog",
  1432. parents: ["amphibian"]
  1433. },
  1434. "amphibian": {
  1435. name: "Amphibian",
  1436. parents: ["animal", "aquatic"]
  1437. },
  1438. "pangolin": {
  1439. name: "Pangolin",
  1440. parents: ["mammal"]
  1441. },
  1442. "uragi'viidorn": {
  1443. name: "Uragi'viidorn",
  1444. parents: ["avian", "bear"]
  1445. },
  1446. "gryphdelphais": {
  1447. name: "Gryphdelphais",
  1448. parents: ["dolphin", "gryphon"]
  1449. },
  1450. "plush": {
  1451. name: "Plush",
  1452. parents: ["construct"]
  1453. },
  1454. "draiger": {
  1455. name: "Draiger",
  1456. parents: ["dragon","tiger"]
  1457. },
  1458. "foxsky": {
  1459. name: "Foxsky",
  1460. parents: ["fox", "husky"]
  1461. },
  1462. "umbreon": {
  1463. name: "Umbreon",
  1464. parents: ["eeveelution"]
  1465. },
  1466. "slime-dragon": {
  1467. name: "Slime Dragon",
  1468. parents: ["dragon", "goo"]
  1469. },
  1470. "enderman": {
  1471. name: "Enderman",
  1472. parents: ["monster"]
  1473. },
  1474. "gremlin": {
  1475. name: "Gremlin",
  1476. parents: ["monster"]
  1477. },
  1478. "dragonsune": {
  1479. name: "Dragonsune",
  1480. parents: ["dragon", "kitsune"]
  1481. },
  1482. "ghost": {
  1483. name: "Ghost",
  1484. parents: ["supernatural"]
  1485. },
  1486. "false-vampire-bat": {
  1487. name: "False Vampire Bat",
  1488. parents: ["bat"]
  1489. },
  1490. "succubus": {
  1491. name: "Succubus",
  1492. parents: ["demon"]
  1493. },
  1494. "mia": {
  1495. name: "Mia",
  1496. parents: ["canine"]
  1497. },
  1498. "rainbow": {
  1499. name: "Rainbow",
  1500. parents: ["monster"]
  1501. },
  1502. "solgaleo": {
  1503. name: "Solgaleo",
  1504. parents: ["pokemon"]
  1505. },
  1506. "lucent-nargacuga": {
  1507. name: "Lucent Nargacuga",
  1508. parents: ["nargacuga"]
  1509. },
  1510. "monster-hunter": {
  1511. name: "Monster Hunter",
  1512. parents: ["monster", "video-games"]
  1513. },
  1514. "leviathan": {
  1515. "name": "Leviathan",
  1516. "url": "sea-monster"
  1517. },
  1518. "bull": {
  1519. name: "Bull",
  1520. parents: ["mammal"]
  1521. },
  1522. "tanuki": {
  1523. name: "Tanuki",
  1524. parents: ["monster"]
  1525. },
  1526. "chakat": {
  1527. name: "Chakat",
  1528. parents: ["cat"]
  1529. },
  1530. "hydra": {
  1531. name: "Hydra",
  1532. parents: ["monster"]
  1533. },
  1534. "zigzagoon": {
  1535. name: "Zigzagoon",
  1536. parents: ["raccoon", "pokemon"]
  1537. },
  1538. "vulture": {
  1539. name: "Vulture",
  1540. parents: ["avian"]
  1541. },
  1542. "eastern-dragon": {
  1543. name: "Eastern Dragon",
  1544. parents: ["dragon"]
  1545. },
  1546. "gryffon": {
  1547. name: "Gryffon",
  1548. parents: ["phoenix", "red-panda"]
  1549. },
  1550. "amtsvane": {
  1551. name: "Amtsvane",
  1552. parents: ["reptile"]
  1553. },
  1554. "kigavi": {
  1555. name: "Kigavi",
  1556. parents: ["avian"]
  1557. },
  1558. "turian": {
  1559. name: "Turian",
  1560. parents: ["avian"]
  1561. },
  1562. "zeraora": {
  1563. name: "Zeraora",
  1564. parents: ["pokemon", "cat"]
  1565. },
  1566. "sandshrew": {
  1567. name: "Sandshrew",
  1568. parents: ["pokemon", "pangolin"]
  1569. },
  1570. "valais-blacknose-sheep": {
  1571. name: "Valais Blacknose Sheep",
  1572. parents: ["sheep"]
  1573. },
  1574. "novaleit": {
  1575. name: "Novaleit",
  1576. parents: ["mammal"]
  1577. },
  1578. "dunnoh": {
  1579. name: "Dunnoh",
  1580. parents: ["mammal"]
  1581. },
  1582. "lunaral-dragon": {
  1583. name: "Lunaral Dragon",
  1584. parents: ["dragon"]
  1585. },
  1586. "arctic-wolf": {
  1587. name: "Arctic Wolf",
  1588. parents: ["wolf"]
  1589. },
  1590. "donkey": {
  1591. name: "Donkey",
  1592. parents: ["horse"]
  1593. },
  1594. "chinchilla": {
  1595. name: "Chinchilla",
  1596. parents: ["rodent"]
  1597. },
  1598. "felkin": {
  1599. name: "Felkin",
  1600. parents: ["dragon"]
  1601. },
  1602. "tykeriel": {
  1603. name: "Tykeriel",
  1604. parents: ["avian"]
  1605. },
  1606. "folf": {
  1607. name: "Folf",
  1608. parents: ["fox", "wolf"]
  1609. },
  1610. "pooltoy": {
  1611. name: "Pooltoy",
  1612. parents: ["construct"]
  1613. },
  1614. "demi": {
  1615. name: "Demi",
  1616. parents: ["human"]
  1617. },
  1618. "stegosaurus": {
  1619. name: "Stegosaurus",
  1620. parents: ["dinosaur"]
  1621. },
  1622. "computer-virus": {
  1623. name: "Computer Virus",
  1624. parents: ["program"]
  1625. },
  1626. "program": {
  1627. name: "Program",
  1628. parents: ["construct"]
  1629. },
  1630. "space-springhare": {
  1631. name: "Space Springhare",
  1632. parents: ["hare"]
  1633. },
  1634. "river-drake": {
  1635. name: "River Drake",
  1636. parents: ["dragon"]
  1637. },
  1638. "djinn": {
  1639. "name": "Djinn",
  1640. "url": "supernatural"
  1641. },
  1642. "supernatural": {
  1643. name: "Supernatural",
  1644. parents: ["monster"]
  1645. },
  1646. "grasshopper-mouse": {
  1647. name: "Grasshopper Mouse",
  1648. parents: ["mouse"]
  1649. },
  1650. "somali-cat": {
  1651. name: "Somali Cat",
  1652. parents: ["cat"]
  1653. },
  1654. "minccino": {
  1655. name: "Minccino",
  1656. parents: ["pokemon", "chinchilla"]
  1657. },
  1658. "pine-marten": {
  1659. name: "Pine Marten",
  1660. parents: ["marten"]
  1661. },
  1662. "marten": {
  1663. name: "Marten",
  1664. parents: ["mustelid"]
  1665. },
  1666. "mustelid": {
  1667. name: "Mustelid",
  1668. parents: ["mammal"]
  1669. },
  1670. "caribou": {
  1671. name: "Caribou",
  1672. parents: ["deer"]
  1673. },
  1674. "gnoll": {
  1675. name: "Gnoll",
  1676. parents: ["hyena", "monster"]
  1677. },
  1678. "peacekeeper": {
  1679. name: "Peacekeeper",
  1680. parents: ["human"]
  1681. },
  1682. "river-otter": {
  1683. name: "River Otter",
  1684. parents: ["otter"]
  1685. },
  1686. "dhole": {
  1687. name: "Dhole",
  1688. parents: ["canine"]
  1689. },
  1690. "springbok": {
  1691. name: "Springbok",
  1692. parents: ["antelope"]
  1693. },
  1694. "marsupial": {
  1695. name: "Marsupial",
  1696. parents: ["mammal"]
  1697. },
  1698. "townsend-big-eared-bat": {
  1699. name: "Townsend Big-eared Bat",
  1700. parents: ["bat"]
  1701. },
  1702. "squirrel": {
  1703. name: "Squirrel",
  1704. parents: ["rodent"]
  1705. },
  1706. "magpie": {
  1707. name: "Magpie",
  1708. parents: ["corvid"]
  1709. },
  1710. "civet": {
  1711. name: "Civet",
  1712. parents: ["feliform"]
  1713. },
  1714. "feliform": {
  1715. name: "Feliform",
  1716. parents: ["mammal"]
  1717. },
  1718. "tiefling": {
  1719. name: "Tiefling",
  1720. parents: ["devil"]
  1721. },
  1722. "devil": {
  1723. name: "Devil",
  1724. parents: ["supernatural"]
  1725. },
  1726. "sika-deer": {
  1727. name: "Sika Deer",
  1728. parents: ["deer"]
  1729. },
  1730. "vaporeon": {
  1731. name: "Vaporeon",
  1732. parents: ["eeveelution"]
  1733. },
  1734. "leafeon": {
  1735. name: "Leafeon",
  1736. parents: ["eeveelution"]
  1737. },
  1738. "jolteon": {
  1739. name: "Jolteon",
  1740. parents: ["eeveelution"]
  1741. },
  1742. "spireborn": {
  1743. name: "Spireborn",
  1744. parents: ["zorgoia"]
  1745. },
  1746. "vampire": {
  1747. name: "Vampire",
  1748. parents: ["monster"]
  1749. },
  1750. "extraplanar": {
  1751. name: "Extraplanar",
  1752. parents: []
  1753. },
  1754. "goo": {
  1755. name: "Goo",
  1756. parents: []
  1757. },
  1758. "skink": {
  1759. name: "Skink",
  1760. parents: ["lizard"]
  1761. },
  1762. "bat-eared-fox": {
  1763. name: "Bat-eared Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "belted-kingfisher": {
  1767. name: "Belted Kingfisher",
  1768. parents: ["avian"]
  1769. },
  1770. "omnifalcon": {
  1771. name: "Omnifalcon",
  1772. parents: ["gryphon", "falcon", "harpy-eagle"]
  1773. },
  1774. "falcon": {
  1775. name: "Falcon",
  1776. parents: ["bird-of-prey"]
  1777. },
  1778. "avali": {
  1779. name: "Avali",
  1780. parents: ["avian", "alien"]
  1781. },
  1782. "arctic-fox": {
  1783. name: "Arctic Fox",
  1784. parents: ["fox"]
  1785. },
  1786. "snow-tiger": {
  1787. name: "Snow Tiger",
  1788. parents: ["tiger"]
  1789. },
  1790. "marble-fox": {
  1791. name: "Marble Fox",
  1792. parents: ["fox"]
  1793. },
  1794. "king-wickerbeast": {
  1795. name: "King Wickerbeast",
  1796. parents: ["wickerbeast"]
  1797. },
  1798. "wickerbeast": {
  1799. name: "Wickerbeast",
  1800. parents: ["mammal"]
  1801. },
  1802. "european-polecat": {
  1803. name: "European Polecat",
  1804. parents: ["polecat"]
  1805. },
  1806. "polecat": {
  1807. name: "Polecat",
  1808. parents: ["mustelid"]
  1809. },
  1810. "teshari": {
  1811. name: "Teshari",
  1812. parents: ["avian", "raptor"]
  1813. },
  1814. "alicorn": {
  1815. name: "Alicorn",
  1816. parents: ["horse"]
  1817. },
  1818. "atlas-moth": {
  1819. name: "Atlas Moth",
  1820. parents: ["moth"]
  1821. },
  1822. "owlbear": {
  1823. name: "Owlbear",
  1824. parents: ["owl", "bear", "monster"]
  1825. },
  1826. "owl": {
  1827. name: "Owl",
  1828. parents: ["avian"]
  1829. },
  1830. "silvertongue": {
  1831. name: "Silvertongue",
  1832. parents: ["reptile"]
  1833. },
  1834. "ahuizotl": {
  1835. name: "Ahuizotl",
  1836. parents: ["monster"]
  1837. },
  1838. "ender-dragon": {
  1839. name: "Ender Dragon",
  1840. parents: ["dragon"]
  1841. },
  1842. "bruhathkayosaurus": {
  1843. name: "Bruhathkayosaurus",
  1844. parents: ["sauropod"]
  1845. },
  1846. "sauropod": {
  1847. name: "Sauropod",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "black-sable-antelope": {
  1851. name: "Black Sable Antelope",
  1852. parents: ["antelope"]
  1853. },
  1854. "slime": {
  1855. name: "Slime",
  1856. parents: ["goo"]
  1857. },
  1858. "utahraptor": {
  1859. name: "Utahraptor",
  1860. parents: ["raptor"]
  1861. },
  1862. "indian-giant-squirrel": {
  1863. name: "Indian Giant Squirrel",
  1864. parents: ["squirrel"]
  1865. },
  1866. "golden-retriever": {
  1867. name: "Golden Retriever",
  1868. parents: ["dog"]
  1869. },
  1870. "triceratops": {
  1871. name: "Triceratops",
  1872. parents: ["dinosaur"]
  1873. },
  1874. "drake": {
  1875. name: "Drake",
  1876. parents: ["dragon"]
  1877. },
  1878. "okapi": {
  1879. name: "Okapi",
  1880. parents: ["giraffe"]
  1881. },
  1882. "arctic-hare": {
  1883. name: "Arctic Hare",
  1884. parents: ["hare"]
  1885. },
  1886. "hare": {
  1887. name: "Hare",
  1888. parents: ["leporidae"]
  1889. },
  1890. "leporidae": {
  1891. name: "Leporidae",
  1892. parents: ["mammal"]
  1893. },
  1894. "leopard-gecko": {
  1895. name: "Leopard Gecko",
  1896. parents: ["gecko"]
  1897. },
  1898. "dreamspawn": {
  1899. name: "Dreamspawn",
  1900. parents: ["illusion"]
  1901. },
  1902. "illusion": {
  1903. name: "Illusion",
  1904. parents: []
  1905. },
  1906. "purrloin": {
  1907. name: "Purrloin",
  1908. parents: ["cat", "pokemon"]
  1909. },
  1910. "noivern": {
  1911. name: "Noivern",
  1912. parents: ["bat", "dragon", "pokemon"]
  1913. },
  1914. "hedgehog": {
  1915. name: "Hedgehog",
  1916. parents: ["mammal"]
  1917. },
  1918. "liger": {
  1919. name: "Liger",
  1920. parents: ["lion", "tiger", "hybrid"]
  1921. },
  1922. "hybrid": {
  1923. name: "Hybrid",
  1924. parents: []
  1925. },
  1926. "drider": {
  1927. name: "Drider",
  1928. parents: ["spider"]
  1929. },
  1930. "sabresune": {
  1931. name: "Sabresune",
  1932. parents: ["kitsune", "sabertooth-tiger"]
  1933. },
  1934. "ditto": {
  1935. name: "Ditto",
  1936. parents: ["pokemon", "goo"]
  1937. },
  1938. "amogus": {
  1939. name: "Amogus",
  1940. parents: ["deity"]
  1941. },
  1942. "ferret": {
  1943. name: "Ferret",
  1944. parents: ["mustelid"]
  1945. },
  1946. "guinea-pig": {
  1947. name: "Guinea Pig",
  1948. parents: ["rodent"]
  1949. },
  1950. "viper": {
  1951. name: "Viper",
  1952. parents: ["snake"]
  1953. },
  1954. "cinderace": {
  1955. name: "Cinderace",
  1956. parents: ["pokemon", "rabbit"]
  1957. },
  1958. "caudin": {
  1959. name: "Caudin",
  1960. parents: ["dragon"]
  1961. },
  1962. "red-winged-blackbird": {
  1963. name: "Red-Winged Blackbird",
  1964. parents: ["avian"]
  1965. },
  1966. "hooded-wheater": {
  1967. name: "Hooded Wheater",
  1968. parents: ["passerine"]
  1969. },
  1970. "passerine": {
  1971. name: "Passerine",
  1972. parents: ["avian"]
  1973. },
  1974. "gieeg": {
  1975. name: "Gieeg",
  1976. parents: ["alien"]
  1977. },
  1978. "ringtail": {
  1979. name: "Ringtail",
  1980. parents: ["raccoon"]
  1981. },
  1982. "hisuian-zoroark": {
  1983. name: "Hisuian Zoroark",
  1984. parents: ["zoroark", "hisuian"]
  1985. },
  1986. "hisuian": {
  1987. name: "Hisuian",
  1988. parents: ["regional-pokemon"]
  1989. },
  1990. "regional-pokemon": {
  1991. name: "Regional Pokemon",
  1992. parents: ["pokemon"]
  1993. },
  1994. "cybeast": {
  1995. name: "Cybeast",
  1996. parents: ["computer-virus"]
  1997. },
  1998. "javira-dragon": {
  1999. name: "Javira Dragon",
  2000. parents: ["dragon"]
  2001. },
  2002. "koopew": {
  2003. name: "Koopew",
  2004. parents: ["dragon", "alien"]
  2005. },
  2006. "nevrean": {
  2007. name: "Nevrean",
  2008. parents: ["avian", "vilous"]
  2009. },
  2010. "vilous": {
  2011. name: "Vilous Species",
  2012. parents: []
  2013. },
  2014. "titanoboa": {
  2015. name: "Titanoboa",
  2016. parents: ["snake"]
  2017. },
  2018. "raichu": {
  2019. name: "Raichu",
  2020. parents: ["pikachu"]
  2021. },
  2022. "taur": {
  2023. name: "Taur",
  2024. parents: []
  2025. },
  2026. "continental-giant-rabbit": {
  2027. name: "Continental Giant Rabbit",
  2028. parents: ["rabbit"]
  2029. },
  2030. "demigryph": {
  2031. name: "Demigryph",
  2032. parents: ["lion", "eagle"]
  2033. },
  2034. "bald-eagle": {
  2035. name: "Bald Eagle",
  2036. parents: ["eagle"]
  2037. },
  2038. "kestrel": {
  2039. name: "Kestrel",
  2040. parents: ["falcon"]
  2041. },
  2042. "mockingbird": {
  2043. name: "Mockingbird",
  2044. parents: ["songbird"]
  2045. },
  2046. "songbird": {
  2047. name: "Songbird",
  2048. parents: ["avian"]
  2049. },
  2050. "bird-of-prey": {
  2051. name: "Bird of Prey",
  2052. parents: ["avian"]
  2053. },
  2054. "marowak": {
  2055. name: "Marowak",
  2056. parents: ["pokemon", "reptile"]
  2057. },
  2058. "joltik": {
  2059. name: "Joltik",
  2060. parents: ["pokemon", "insect"]
  2061. },
  2062. "mink": {
  2063. name: "Mink",
  2064. parents: ["mustelid"]
  2065. },
  2066. "sandcat": {
  2067. name: "Sandcat",
  2068. parents: ["cat"]
  2069. },
  2070. "hrothgar": {
  2071. name: "Hrothgar",
  2072. parents: ["cat"]
  2073. },
  2074. "garchomp": {
  2075. name: "Garchomp",
  2076. parents: ["dragon", "pokemon"]
  2077. },
  2078. "nargacuga": {
  2079. name: "Nargacuga",
  2080. parents: ["monster-hunter"]
  2081. },
  2082. "sable": {
  2083. name: "Sable",
  2084. parents: ["marten"]
  2085. },
  2086. "deino": {
  2087. name: "Deino",
  2088. parents: ["pokemon", "dinosaur"]
  2089. },
  2090. "housecat": {
  2091. name: "Housecat",
  2092. parents: ["cat"]
  2093. },
  2094. "bombay-cat": {
  2095. name: "Bombay Cat",
  2096. parents: ["housecat"]
  2097. },
  2098. "maine-coon": {
  2099. name: "Maine Coon",
  2100. parents: ["housecat"]
  2101. },
  2102. "coelacanth": {
  2103. name: "Coelacanth",
  2104. parents: ["fish"]
  2105. },
  2106. "silvally": {
  2107. name: "Silvally",
  2108. parents: ["legendary-pokemon"]
  2109. },
  2110. "legendary-pokemon": {
  2111. name: "Legendary Pokemon",
  2112. parents: ["pokemon"]
  2113. },
  2114. "great-maccao": {
  2115. name: "Great Maccao",
  2116. parents: ["monster-hunter", "raptor"]
  2117. },
  2118. "shapeshifter": {
  2119. name: "shapeshifter",
  2120. parents: []
  2121. },
  2122. "obstagoon": {
  2123. name: "Obstagoon",
  2124. parents: ["zigzagoon"]
  2125. },
  2126. "thomsons-gazelle": {
  2127. name: "Thomsons Gazelle",
  2128. parents: ["gazelle"]
  2129. },
  2130. "gazelle": {
  2131. name: "Gazelle",
  2132. parents: ["antelope"]
  2133. },
  2134. "monkey": {
  2135. name: "Monkey",
  2136. parents: ["primate"]
  2137. },
  2138. "serval": {
  2139. name: "Serval",
  2140. parents: ["cat"]
  2141. },
  2142. "swampert": {
  2143. name: "Swampert",
  2144. parents: ["pokemon"]
  2145. },
  2146. "red-fox": {
  2147. name: "Red Fox",
  2148. parents: ["fox"]
  2149. },
  2150. "sliver": {
  2151. name: "Sliver",
  2152. parents: ["alien"]
  2153. },
  2154. "sergix": {
  2155. name: "Sergix",
  2156. parents: ["demon", "sergal", "phoenix"]
  2157. },
  2158. "behemoth": {
  2159. name: "Behemoth",
  2160. parents: ["monster", "dragon", "final-fantasy"]
  2161. },
  2162. "final-fantasy": {
  2163. name: "Final Fantasy",
  2164. parents: ["video-games"]
  2165. },
  2166. "video-games": {
  2167. name: "Video Games",
  2168. parents: []
  2169. },
  2170. "eastern-cottontail-rabbit": {
  2171. name: "Eastern Cottontail Rabbit",
  2172. parents: ["rabbit"]
  2173. },
  2174. "thresher-shark": {
  2175. name: "Thresher Shark",
  2176. parents: ["shark"]
  2177. },
  2178. "ai": {
  2179. name: "AI",
  2180. parents: []
  2181. },
  2182. "black-tip-reef-shark": {
  2183. name: "Black Tip Reef Shark",
  2184. parents: ["shark"]
  2185. },
  2186. "quetzalcoatlus-northropi": {
  2187. name: "Quetzalcoatlus Northropi",
  2188. parents: ["dinosaur"]
  2189. },
  2190. "snivy": {
  2191. name: "Snivy",
  2192. parents: ["pokemon", "snake"]
  2193. },
  2194. "nedynvor": {
  2195. name: "Nedynvor",
  2196. parents: ["avian"]
  2197. },
  2198. "marbled-polecat": {
  2199. name: "Marbled Polecat",
  2200. parents: ["polecat"]
  2201. },
  2202. "ape": {
  2203. name: "Ape",
  2204. parents: ["primate"]
  2205. },
  2206. "primate": {
  2207. name: "Primate",
  2208. parents: ["mammal"]
  2209. },
  2210. "kulve-taroth": {
  2211. name: "Kulve Taroth",
  2212. parents: ["monster-hunter", "dragon"]
  2213. },
  2214. "irthos": {
  2215. name: "Irthos",
  2216. parents: ["dragon"]
  2217. },
  2218. "furred-dragon": {
  2219. name: "Furred Dragon",
  2220. parents: ["dragon"]
  2221. },
  2222. "hippogriff": {
  2223. name: "Hippogriff",
  2224. parents: ["gryphon", "horse"]
  2225. },
  2226. "peregrine-falcon": {
  2227. name: "Peregrine Falcon",
  2228. parents: ["falcon"]
  2229. },
  2230. "deinonychus": {
  2231. name: "Deinonychus",
  2232. parents: ["theropod"]
  2233. },
  2234. "theropod": {
  2235. name: "Theropod",
  2236. parents: ["dinosaur"]
  2237. },
  2238. "chocobo": {
  2239. name: "Chocobo",
  2240. parents: ["avian"]
  2241. },
  2242. "stilio": {
  2243. name: "Stilio",
  2244. parents: ["snake"]
  2245. },
  2246. "kardox": {
  2247. name: "Kardox",
  2248. parents: ["wolf", "dragon", "horse"]
  2249. },
  2250. "food": {
  2251. name: "Food",
  2252. parents: ["object"]
  2253. },
  2254. "object": {
  2255. name: "Object",
  2256. parents: []
  2257. },
  2258. "honey-badger": {
  2259. name: "honey-badger",
  2260. parents: ["badger"]
  2261. },
  2262. "badger": {
  2263. name: "Badger",
  2264. parents: ["mustelid"]
  2265. },
  2266. "rattlesnake": {
  2267. name: "Rattlesnake",
  2268. parents: ["snake"]
  2269. },
  2270. "diamondback": {
  2271. name: "Diamondback",
  2272. parents: ["snake"]
  2273. },
  2274. "spidox": {
  2275. name: "Spidox",
  2276. parents: ["spider", "fox"]
  2277. },
  2278. "kodiak-bear": {
  2279. name: "Kodiak Bear",
  2280. parents: ["bear"]
  2281. },
  2282. "alurean": {
  2283. name: "Alurean",
  2284. parents: ["saurian", "aquatic", "alien"]
  2285. },
  2286. "aquatic": {
  2287. name: "Aquatic",
  2288. parents: []
  2289. },
  2290. "wyvern": {
  2291. name: "Wyvern",
  2292. parents: ["dragon"]
  2293. },
  2294. "catfish": {
  2295. name: "Catfish",
  2296. parents: ["fish"]
  2297. },
  2298. "vesempress": {
  2299. name: "Vesempress",
  2300. parents: ["vespiquen"]
  2301. },
  2302. "vespiquen": {
  2303. name: "Vespiquen",
  2304. parents: ["pokemon", "bee"]
  2305. },
  2306. "gaelterranian": {
  2307. name: "Gaelterranian",
  2308. parents: ["alien"]
  2309. },
  2310. "pistrogre": {
  2311. name: "Pistrogre",
  2312. parents: ["alien", "deity", "insect", "reptile"]
  2313. },
  2314. "komodo-dragon": {
  2315. name: "Komodo Dragon",
  2316. parents: ["lizard"]
  2317. },
  2318. "shiny": {
  2319. name: "Shiny",
  2320. parents: ["pokemon"]
  2321. },
  2322. "latex": {
  2323. name: "Latex",
  2324. parents: []
  2325. },
  2326. "praying-mantis": {
  2327. name: "Praying Mantis",
  2328. parents: ["insect"]
  2329. },
  2330. "espeon": {
  2331. name: "Espeon",
  2332. parents: ["eeveelution"]
  2333. },
  2334. "skullwolf": {
  2335. name: "Skullwolf",
  2336. parents: ["wolf", "skullmonster"]
  2337. },
  2338. "skulldragon": {
  2339. name: "Skulldragon",
  2340. parents: ["dragon", "skullmonster"]
  2341. },
  2342. "skullmonster": {
  2343. name: "Skullmonster",
  2344. parents: ["monster"]
  2345. },
  2346. "ferrin": {
  2347. name: "Ferrin",
  2348. parents: ["dragon"]
  2349. },
  2350. "rusty-spotted-cat": {
  2351. name: "Rusty-Spotted Cat",
  2352. parents: ["cat"]
  2353. },
  2354. "elf": {
  2355. name: "Elf",
  2356. parents: ["humanoid"]
  2357. },
  2358. "humanoid": {
  2359. name: "Humanoid",
  2360. parents: []
  2361. },
  2362. }
  2363. //species
  2364. function getSpeciesInfo(speciesList) {
  2365. let result = new Set();
  2366. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2367. result.add(entry)
  2368. });
  2369. return Array.from(result);
  2370. };
  2371. function getSpeciesInfoHelper(species) {
  2372. if (!speciesData[species]) {
  2373. console.warn(species + " doesn't exist");
  2374. return [];
  2375. }
  2376. if (speciesData[species].parents) {
  2377. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2378. } else {
  2379. return [species];
  2380. }
  2381. }
  2382. characterMakers.push(() => makeCharacter(
  2383. {
  2384. name: "Fen",
  2385. species: ["crux"],
  2386. description: {
  2387. title: "Bio",
  2388. text: "Very furry. Sheds on everything."
  2389. },
  2390. tags: [
  2391. "anthro",
  2392. "goo"
  2393. ]
  2394. },
  2395. {
  2396. front: {
  2397. height: math.unit(12, "feet"),
  2398. weight: math.unit(2400, "lb"),
  2399. preyCapacity: math.unit(1, "people"),
  2400. name: "Front",
  2401. image: {
  2402. source: "./media/characters/fen/front.svg",
  2403. extra: 1804/1562,
  2404. bottom: 205/2009
  2405. },
  2406. extraAttributes: {
  2407. pawSize: {
  2408. name: "Paw Size",
  2409. power: 2,
  2410. type: "area",
  2411. base: math.unit(0.35, "m^2")
  2412. }
  2413. }
  2414. },
  2415. diving: {
  2416. height: math.unit(4.9, "meters"),
  2417. weight: math.unit(2400, "lb"),
  2418. name: "Diving",
  2419. image: {
  2420. source: "./media/characters/fen/diving.svg"
  2421. }
  2422. },
  2423. sleeby: {
  2424. height: math.unit(3.45, "meters"),
  2425. weight: math.unit(2400, "lb"),
  2426. name: "Sleeby",
  2427. image: {
  2428. source: "./media/characters/fen/sleeby.svg"
  2429. }
  2430. },
  2431. goo: {
  2432. height: math.unit(12, "feet"),
  2433. weight: math.unit(3600, "lb"),
  2434. volume: math.unit(1000, "liters"),
  2435. preyCapacity: math.unit(6, "people"),
  2436. name: "Goo",
  2437. image: {
  2438. source: "./media/characters/fen/goo.svg",
  2439. extra: 1307/1071,
  2440. bottom: 134/1441
  2441. }
  2442. },
  2443. horror: {
  2444. height: math.unit(13.6, "feet"),
  2445. weight: math.unit(2400, "lb"),
  2446. preyCapacity: math.unit(1, "people"),
  2447. name: "Horror",
  2448. image: {
  2449. source: "./media/characters/fen/horror.svg",
  2450. extra: 893/797,
  2451. bottom: 0/893
  2452. }
  2453. },
  2454. gooNsfw: {
  2455. height: math.unit(12, "feet"),
  2456. weight: math.unit(3750, "lb"),
  2457. volume: math.unit(1000, "liters"),
  2458. preyCapacity: math.unit(6, "people"),
  2459. name: "Goo (NSFW)",
  2460. image: {
  2461. source: "./media/characters/fen/goo-nsfw.svg",
  2462. extra: 1875/1734,
  2463. bottom: 122/1997
  2464. }
  2465. },
  2466. maw: {
  2467. height: math.unit(5.03, "feet"),
  2468. name: "Maw",
  2469. image: {
  2470. source: "./media/characters/fen/maw.svg"
  2471. }
  2472. },
  2473. gooCeiling: {
  2474. height: math.unit(6.6, "feet"),
  2475. weight: math.unit(3000, "lb"),
  2476. volume: math.unit(1000, "liters"),
  2477. preyCapacity: math.unit(6, "people"),
  2478. name: "Maw (Goo)",
  2479. image: {
  2480. source: "./media/characters/fen/goo-maw.svg"
  2481. }
  2482. },
  2483. paw: {
  2484. height: math.unit(3.77, "feet"),
  2485. name: "Paw",
  2486. image: {
  2487. source: "./media/characters/fen/paw.svg"
  2488. },
  2489. extraAttributes: {
  2490. "toeSize": {
  2491. name: "Toe Size",
  2492. power: 2,
  2493. type: "area",
  2494. base: math.unit(0.02875, "m^2")
  2495. },
  2496. "pawSize": {
  2497. name: "Paw Size",
  2498. power: 2,
  2499. type: "area",
  2500. base: math.unit(0.378, "m^2")
  2501. },
  2502. }
  2503. },
  2504. tail: {
  2505. height: math.unit(12.1, "feet"),
  2506. name: "Tail",
  2507. image: {
  2508. source: "./media/characters/fen/tail.svg"
  2509. }
  2510. },
  2511. tailFull: {
  2512. height: math.unit(12.1, "feet"),
  2513. name: "Full Tail",
  2514. image: {
  2515. source: "./media/characters/fen/tail-full.svg"
  2516. }
  2517. },
  2518. back: {
  2519. height: math.unit(12, "feet"),
  2520. weight: math.unit(2400, "lb"),
  2521. name: "Back",
  2522. image: {
  2523. source: "./media/characters/fen/back.svg",
  2524. },
  2525. info: {
  2526. description: {
  2527. mode: "append",
  2528. text: "\n\nHe is not currently looking at you."
  2529. }
  2530. }
  2531. },
  2532. full: {
  2533. height: math.unit(1.85, "meter"),
  2534. weight: math.unit(3200, "lb"),
  2535. preyCapacity: math.unit(3, "people"),
  2536. name: "Full",
  2537. image: {
  2538. source: "./media/characters/fen/full.svg",
  2539. extra: 1133/859,
  2540. bottom: 145/1278
  2541. },
  2542. info: {
  2543. description: {
  2544. mode: "append",
  2545. text: "\n\nMunch."
  2546. }
  2547. }
  2548. },
  2549. gooLounging: {
  2550. height: math.unit(4.53, "feet"),
  2551. weight: math.unit(3000, "lb"),
  2552. preyCapacity: math.unit(6, "people"),
  2553. name: "Goo (Lounging)",
  2554. image: {
  2555. source: "./media/characters/fen/goo-lounging.svg",
  2556. bottom: 116 / 613
  2557. }
  2558. },
  2559. lounging: {
  2560. height: math.unit(10.52, "feet"),
  2561. weight: math.unit(2400, "lb"),
  2562. name: "Lounging",
  2563. image: {
  2564. source: "./media/characters/fen/lounging.svg"
  2565. }
  2566. },
  2567. },
  2568. [
  2569. {
  2570. name: "Small",
  2571. height: math.unit(2.2428, "meter")
  2572. },
  2573. {
  2574. name: "Normal",
  2575. height: math.unit(12, "feet"),
  2576. default: true,
  2577. },
  2578. {
  2579. name: "Big",
  2580. height: math.unit(20, "feet")
  2581. },
  2582. {
  2583. name: "Minimacro",
  2584. height: math.unit(40, "feet"),
  2585. info: {
  2586. description: {
  2587. mode: "append",
  2588. text: "\n\nTOO DAMN BIG"
  2589. }
  2590. }
  2591. },
  2592. {
  2593. name: "Macro",
  2594. height: math.unit(100, "feet"),
  2595. info: {
  2596. description: {
  2597. mode: "append",
  2598. text: "\n\nTOO DAMN BIG"
  2599. }
  2600. }
  2601. },
  2602. {
  2603. name: "Megamacro",
  2604. height: math.unit(2, "miles")
  2605. },
  2606. {
  2607. name: "Gigamacro",
  2608. height: math.unit(10, "earths")
  2609. },
  2610. ]
  2611. ))
  2612. characterMakers.push(() => makeCharacter(
  2613. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2614. {
  2615. front: {
  2616. height: math.unit(183, "cm"),
  2617. weight: math.unit(80, "kg"),
  2618. name: "Front",
  2619. image: {
  2620. source: "./media/characters/sofia-fluttertail/front.svg",
  2621. bottom: 0.01,
  2622. extra: 2154 / 2081
  2623. }
  2624. },
  2625. frontAlt: {
  2626. height: math.unit(183, "cm"),
  2627. weight: math.unit(80, "kg"),
  2628. name: "Front (alt)",
  2629. image: {
  2630. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2631. }
  2632. },
  2633. back: {
  2634. height: math.unit(183, "cm"),
  2635. weight: math.unit(80, "kg"),
  2636. name: "Back",
  2637. image: {
  2638. source: "./media/characters/sofia-fluttertail/back.svg"
  2639. }
  2640. },
  2641. kneeling: {
  2642. height: math.unit(125, "cm"),
  2643. weight: math.unit(80, "kg"),
  2644. name: "Kneeling",
  2645. image: {
  2646. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2647. extra: 1033 / 977,
  2648. bottom: 23.7 / 1057
  2649. }
  2650. },
  2651. maw: {
  2652. height: math.unit(183 / 5, "cm"),
  2653. name: "Maw",
  2654. image: {
  2655. source: "./media/characters/sofia-fluttertail/maw.svg"
  2656. }
  2657. },
  2658. mawcloseup: {
  2659. height: math.unit(183 / 5 * 0.41, "cm"),
  2660. name: "Maw (Closeup)",
  2661. image: {
  2662. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2663. }
  2664. },
  2665. paws: {
  2666. height: math.unit(1.17, "feet"),
  2667. name: "Paws",
  2668. image: {
  2669. source: "./media/characters/sofia-fluttertail/paws.svg",
  2670. extra: 851 / 851,
  2671. bottom: 17 / 868
  2672. }
  2673. },
  2674. },
  2675. [
  2676. {
  2677. name: "Normal",
  2678. height: math.unit(1.83, "meter")
  2679. },
  2680. {
  2681. name: "Size Thief",
  2682. height: math.unit(18, "feet")
  2683. },
  2684. {
  2685. name: "50 Foot Collie",
  2686. height: math.unit(50, "feet")
  2687. },
  2688. {
  2689. name: "Macro",
  2690. height: math.unit(96, "feet"),
  2691. default: true
  2692. },
  2693. {
  2694. name: "Megamerger",
  2695. height: math.unit(650, "feet")
  2696. },
  2697. ]
  2698. ))
  2699. characterMakers.push(() => makeCharacter(
  2700. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2701. {
  2702. front: {
  2703. height: math.unit(7, "feet"),
  2704. weight: math.unit(100, "kg"),
  2705. name: "Front",
  2706. image: {
  2707. source: "./media/characters/march/front.svg",
  2708. extra: 1992/1851,
  2709. bottom: 39/2031
  2710. }
  2711. },
  2712. foot: {
  2713. height: math.unit(0.9, "feet"),
  2714. name: "Foot",
  2715. image: {
  2716. source: "./media/characters/march/foot.svg"
  2717. }
  2718. },
  2719. },
  2720. [
  2721. {
  2722. name: "Normal",
  2723. height: math.unit(7.9, "feet")
  2724. },
  2725. {
  2726. name: "Macro",
  2727. height: math.unit(220, "meters")
  2728. },
  2729. {
  2730. name: "Megamacro",
  2731. height: math.unit(2.98, "km"),
  2732. default: true
  2733. },
  2734. {
  2735. name: "Gigamacro",
  2736. height: math.unit(15963, "km")
  2737. },
  2738. {
  2739. name: "Teramacro",
  2740. height: math.unit(2980000000, "km")
  2741. },
  2742. {
  2743. name: "Examacro",
  2744. height: math.unit(250, "parsecs")
  2745. },
  2746. ]
  2747. ))
  2748. characterMakers.push(() => makeCharacter(
  2749. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2750. {
  2751. front: {
  2752. height: math.unit(6, "feet"),
  2753. weight: math.unit(60, "kg"),
  2754. name: "Front",
  2755. image: {
  2756. source: "./media/characters/noir/front.svg",
  2757. extra: 1,
  2758. bottom: 0.032
  2759. }
  2760. },
  2761. },
  2762. [
  2763. {
  2764. name: "Normal",
  2765. height: math.unit(6.6, "feet")
  2766. },
  2767. {
  2768. name: "Macro",
  2769. height: math.unit(500, "feet")
  2770. },
  2771. {
  2772. name: "Megamacro",
  2773. height: math.unit(2.5, "km"),
  2774. default: true
  2775. },
  2776. {
  2777. name: "Gigamacro",
  2778. height: math.unit(22500, "km")
  2779. },
  2780. {
  2781. name: "Teramacro",
  2782. height: math.unit(2500000000, "km")
  2783. },
  2784. {
  2785. name: "Examacro",
  2786. height: math.unit(200, "parsecs")
  2787. },
  2788. ]
  2789. ))
  2790. characterMakers.push(() => makeCharacter(
  2791. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2792. {
  2793. front: {
  2794. height: math.unit(7, "feet"),
  2795. weight: math.unit(100, "kg"),
  2796. name: "Front",
  2797. image: {
  2798. source: "./media/characters/okuri/front.svg",
  2799. extra: 739/665,
  2800. bottom: 39/778
  2801. }
  2802. },
  2803. back: {
  2804. height: math.unit(7, "feet"),
  2805. weight: math.unit(100, "kg"),
  2806. name: "Back",
  2807. image: {
  2808. source: "./media/characters/okuri/back.svg",
  2809. extra: 734/653,
  2810. bottom: 13/747
  2811. }
  2812. },
  2813. sitting: {
  2814. height: math.unit(2.95, "feet"),
  2815. weight: math.unit(100, "kg"),
  2816. name: "Sitting",
  2817. image: {
  2818. source: "./media/characters/okuri/sitting.svg",
  2819. extra: 370/318,
  2820. bottom: 99/469
  2821. }
  2822. },
  2823. },
  2824. [
  2825. {
  2826. name: "Smallest",
  2827. height: math.unit(5 + 2/12, "feet")
  2828. },
  2829. {
  2830. name: "Smaller",
  2831. height: math.unit(300, "feet")
  2832. },
  2833. {
  2834. name: "Small",
  2835. height: math.unit(1000, "feet")
  2836. },
  2837. {
  2838. name: "Macro",
  2839. height: math.unit(1, "mile")
  2840. },
  2841. {
  2842. name: "Mega Macro (Small)",
  2843. height: math.unit(20, "km")
  2844. },
  2845. {
  2846. name: "Mega Macro (Large)",
  2847. height: math.unit(600, "km")
  2848. },
  2849. {
  2850. name: "Giga Macro",
  2851. height: math.unit(10000, "km")
  2852. },
  2853. {
  2854. name: "Normal",
  2855. height: math.unit(577560, "km"),
  2856. default: true
  2857. },
  2858. {
  2859. name: "Large",
  2860. height: math.unit(4, "galaxies")
  2861. },
  2862. {
  2863. name: "Largest",
  2864. height: math.unit(15, "multiverses")
  2865. },
  2866. ]
  2867. ))
  2868. characterMakers.push(() => makeCharacter(
  2869. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2870. {
  2871. front: {
  2872. height: math.unit(7, "feet"),
  2873. weight: math.unit(100, "kg"),
  2874. name: "Front",
  2875. image: {
  2876. source: "./media/characters/manny/front.svg",
  2877. extra: 1,
  2878. bottom: 0.06
  2879. }
  2880. },
  2881. back: {
  2882. height: math.unit(7, "feet"),
  2883. weight: math.unit(100, "kg"),
  2884. name: "Back",
  2885. image: {
  2886. source: "./media/characters/manny/back.svg",
  2887. extra: 1,
  2888. bottom: 0.014
  2889. }
  2890. },
  2891. },
  2892. [
  2893. {
  2894. name: "Normal",
  2895. height: math.unit(7, "feet"),
  2896. },
  2897. {
  2898. name: "Macro",
  2899. height: math.unit(78, "feet"),
  2900. default: true
  2901. },
  2902. {
  2903. name: "Macro+",
  2904. height: math.unit(300, "meters")
  2905. },
  2906. {
  2907. name: "Macro++",
  2908. height: math.unit(2400, "meters")
  2909. },
  2910. {
  2911. name: "Megamacro",
  2912. height: math.unit(5167, "meters")
  2913. },
  2914. {
  2915. name: "Gigamacro",
  2916. height: math.unit(41769, "miles")
  2917. },
  2918. ]
  2919. ))
  2920. characterMakers.push(() => makeCharacter(
  2921. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2922. {
  2923. front: {
  2924. height: math.unit(7, "feet"),
  2925. weight: math.unit(100, "kg"),
  2926. name: "Front",
  2927. image: {
  2928. source: "./media/characters/adake/front-1.svg"
  2929. }
  2930. },
  2931. frontAlt: {
  2932. height: math.unit(7, "feet"),
  2933. weight: math.unit(100, "kg"),
  2934. name: "Front (Alt)",
  2935. image: {
  2936. source: "./media/characters/adake/front-2.svg",
  2937. extra: 1,
  2938. bottom: 0.01
  2939. }
  2940. },
  2941. back: {
  2942. height: math.unit(7, "feet"),
  2943. weight: math.unit(100, "kg"),
  2944. name: "Back",
  2945. image: {
  2946. source: "./media/characters/adake/back.svg",
  2947. }
  2948. },
  2949. kneel: {
  2950. height: math.unit(5.385, "feet"),
  2951. weight: math.unit(100, "kg"),
  2952. name: "Kneeling",
  2953. image: {
  2954. source: "./media/characters/adake/kneel.svg",
  2955. bottom: 0.052
  2956. }
  2957. },
  2958. },
  2959. [
  2960. {
  2961. name: "Normal",
  2962. height: math.unit(7, "feet"),
  2963. },
  2964. {
  2965. name: "Macro",
  2966. height: math.unit(78, "feet"),
  2967. default: true
  2968. },
  2969. {
  2970. name: "Macro+",
  2971. height: math.unit(300, "meters")
  2972. },
  2973. {
  2974. name: "Macro++",
  2975. height: math.unit(2400, "meters")
  2976. },
  2977. {
  2978. name: "Megamacro",
  2979. height: math.unit(5167, "meters")
  2980. },
  2981. {
  2982. name: "Gigamacro",
  2983. height: math.unit(41769, "miles")
  2984. },
  2985. ]
  2986. ))
  2987. characterMakers.push(() => makeCharacter(
  2988. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2989. {
  2990. front: {
  2991. height: math.unit(1.65, "meters"),
  2992. weight: math.unit(50, "kg"),
  2993. name: "Front",
  2994. image: {
  2995. source: "./media/characters/elijah/front.svg",
  2996. extra: 858 / 830,
  2997. bottom: 95.5 / 953.8559
  2998. }
  2999. },
  3000. back: {
  3001. height: math.unit(1.65, "meters"),
  3002. weight: math.unit(50, "kg"),
  3003. name: "Back",
  3004. image: {
  3005. source: "./media/characters/elijah/back.svg",
  3006. extra: 895 / 850,
  3007. bottom: 5.3 / 897.956
  3008. }
  3009. },
  3010. frontNsfw: {
  3011. height: math.unit(1.65, "meters"),
  3012. weight: math.unit(50, "kg"),
  3013. name: "Front (NSFW)",
  3014. image: {
  3015. source: "./media/characters/elijah/front-nsfw.svg",
  3016. extra: 858 / 830,
  3017. bottom: 95.5 / 953.8559
  3018. }
  3019. },
  3020. backNsfw: {
  3021. height: math.unit(1.65, "meters"),
  3022. weight: math.unit(50, "kg"),
  3023. name: "Back (NSFW)",
  3024. image: {
  3025. source: "./media/characters/elijah/back-nsfw.svg",
  3026. extra: 895 / 850,
  3027. bottom: 5.3 / 897.956
  3028. }
  3029. },
  3030. dick: {
  3031. height: math.unit(1, "feet"),
  3032. name: "Dick",
  3033. image: {
  3034. source: "./media/characters/elijah/dick.svg"
  3035. }
  3036. },
  3037. beakOpen: {
  3038. height: math.unit(1.25, "feet"),
  3039. name: "Beak (Open)",
  3040. image: {
  3041. source: "./media/characters/elijah/beak-open.svg"
  3042. }
  3043. },
  3044. beakShut: {
  3045. height: math.unit(1.25, "feet"),
  3046. name: "Beak (Shut)",
  3047. image: {
  3048. source: "./media/characters/elijah/beak-shut.svg"
  3049. }
  3050. },
  3051. footFlexing: {
  3052. height: math.unit(1.61, "feet"),
  3053. name: "Foot (Flexing)",
  3054. image: {
  3055. source: "./media/characters/elijah/foot-flexing.svg"
  3056. }
  3057. },
  3058. footStepping: {
  3059. height: math.unit(1.44, "feet"),
  3060. name: "Foot (Stepping)",
  3061. image: {
  3062. source: "./media/characters/elijah/foot-stepping.svg"
  3063. }
  3064. },
  3065. plantigradeLeg: {
  3066. height: math.unit(2.34, "feet"),
  3067. name: "Plantigrade Leg",
  3068. image: {
  3069. source: "./media/characters/elijah/plantigrade-leg.svg"
  3070. }
  3071. },
  3072. plantigradeFootLeft: {
  3073. height: math.unit(0.9, "feet"),
  3074. name: "Plantigrade Foot (Left)",
  3075. image: {
  3076. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3077. }
  3078. },
  3079. plantigradeFootRight: {
  3080. height: math.unit(0.9, "feet"),
  3081. name: "Plantigrade Foot (Right)",
  3082. image: {
  3083. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3084. }
  3085. },
  3086. },
  3087. [
  3088. {
  3089. name: "Normal",
  3090. height: math.unit(1.65, "meters")
  3091. },
  3092. {
  3093. name: "Macro",
  3094. height: math.unit(55, "meters"),
  3095. default: true
  3096. },
  3097. {
  3098. name: "Macro+",
  3099. height: math.unit(105, "meters")
  3100. },
  3101. ]
  3102. ))
  3103. characterMakers.push(() => makeCharacter(
  3104. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3105. {
  3106. front: {
  3107. height: math.unit(7 + 2/12, "feet"),
  3108. weight: math.unit(320, "kg"),
  3109. preyCapacity: math.unit(0.276549935, "people"),
  3110. name: "Front",
  3111. image: {
  3112. source: "./media/characters/rai/front.svg",
  3113. extra: 1802/1696,
  3114. bottom: 68/1870
  3115. },
  3116. form: "anthro",
  3117. default: true
  3118. },
  3119. frontDressed: {
  3120. height: math.unit(7 + 2/12, "feet"),
  3121. weight: math.unit(320, "kg"),
  3122. preyCapacity: math.unit(0.276549935, "people"),
  3123. name: "Front (Dressed)",
  3124. image: {
  3125. source: "./media/characters/rai/front-dressed.svg",
  3126. extra: 1802/1696,
  3127. bottom: 68/1870
  3128. },
  3129. form: "anthro"
  3130. },
  3131. side: {
  3132. height: math.unit(7 + 2/12, "feet"),
  3133. weight: math.unit(320, "kg"),
  3134. preyCapacity: math.unit(0.276549935, "people"),
  3135. name: "Side",
  3136. image: {
  3137. source: "./media/characters/rai/side.svg",
  3138. extra: 1789/1710,
  3139. bottom: 115/1904
  3140. },
  3141. form: "anthro"
  3142. },
  3143. back: {
  3144. height: math.unit(7 + 2/12, "feet"),
  3145. weight: math.unit(320, "kg"),
  3146. preyCapacity: math.unit(0.276549935, "people"),
  3147. name: "Back",
  3148. image: {
  3149. source: "./media/characters/rai/back.svg",
  3150. extra: 1770/1707,
  3151. bottom: 28/1798
  3152. },
  3153. form: "anthro"
  3154. },
  3155. feral: {
  3156. height: math.unit(9.5, "feet"),
  3157. weight: math.unit(640, "kg"),
  3158. preyCapacity: math.unit(4, "people"),
  3159. name: "Feral",
  3160. image: {
  3161. source: "./media/characters/rai/feral.svg",
  3162. extra: 945/553,
  3163. bottom: 176/1121
  3164. },
  3165. form: "feral",
  3166. default: true
  3167. },
  3168. dragon: {
  3169. height: math.unit(23, "feet"),
  3170. weight: math.unit(50000, "lb"),
  3171. name: "Dragon",
  3172. image: {
  3173. source: "./media/characters/rai/dragon.svg",
  3174. extra: 2498 / 2030,
  3175. bottom: 85.2 / 2584
  3176. },
  3177. form: "dragon",
  3178. default: true
  3179. },
  3180. maw: {
  3181. height: math.unit(1.69, "feet"),
  3182. name: "Maw",
  3183. image: {
  3184. source: "./media/characters/rai/maw.svg"
  3185. },
  3186. form: "anthro"
  3187. },
  3188. },
  3189. [
  3190. {
  3191. name: "Normal",
  3192. height: math.unit(7 + 2/12, "feet"),
  3193. form: "anthro"
  3194. },
  3195. {
  3196. name: "Big",
  3197. height: math.unit(11, "feet"),
  3198. form: "anthro"
  3199. },
  3200. {
  3201. name: "Minimacro",
  3202. height: math.unit(77, "feet"),
  3203. form: "anthro"
  3204. },
  3205. {
  3206. name: "Macro",
  3207. height: math.unit(302, "feet"),
  3208. default: true,
  3209. form: "anthro"
  3210. },
  3211. {
  3212. name: "Normal",
  3213. height: math.unit(9.5, "feet"),
  3214. form: "feral",
  3215. default: true
  3216. },
  3217. {
  3218. name: "Normal",
  3219. height: math.unit(23, "feet"),
  3220. form: "dragon",
  3221. default: true
  3222. }
  3223. ],
  3224. {
  3225. "anthro": {
  3226. name: "Anthro",
  3227. default: true
  3228. },
  3229. "feral": {
  3230. name: "Feral",
  3231. },
  3232. "dragon": {
  3233. name: "Dragon",
  3234. },
  3235. }
  3236. ))
  3237. characterMakers.push(() => makeCharacter(
  3238. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3239. {
  3240. frontDressed: {
  3241. height: math.unit(216, "feet"),
  3242. weight: math.unit(7000000, "lb"),
  3243. preyCapacity: math.unit(1321, "people"),
  3244. name: "Front (Dressed)",
  3245. image: {
  3246. source: "./media/characters/jazzy/front-dressed.svg",
  3247. extra: 2738 / 2651,
  3248. bottom: 41.8 / 2786
  3249. }
  3250. },
  3251. backDressed: {
  3252. height: math.unit(216, "feet"),
  3253. weight: math.unit(7000000, "lb"),
  3254. preyCapacity: math.unit(1321, "people"),
  3255. name: "Back (Dressed)",
  3256. image: {
  3257. source: "./media/characters/jazzy/back-dressed.svg",
  3258. extra: 2775 / 2673,
  3259. bottom: 36.8 / 2817
  3260. }
  3261. },
  3262. front: {
  3263. height: math.unit(216, "feet"),
  3264. weight: math.unit(7000000, "lb"),
  3265. preyCapacity: math.unit(1321, "people"),
  3266. name: "Front",
  3267. image: {
  3268. source: "./media/characters/jazzy/front.svg",
  3269. extra: 2738 / 2651,
  3270. bottom: 41.8 / 2786
  3271. }
  3272. },
  3273. back: {
  3274. height: math.unit(216, "feet"),
  3275. weight: math.unit(7000000, "lb"),
  3276. preyCapacity: math.unit(1321, "people"),
  3277. name: "Back",
  3278. image: {
  3279. source: "./media/characters/jazzy/back.svg",
  3280. extra: 2775 / 2673,
  3281. bottom: 36.8 / 2817
  3282. }
  3283. },
  3284. maw: {
  3285. height: math.unit(20, "feet"),
  3286. name: "Maw",
  3287. image: {
  3288. source: "./media/characters/jazzy/maw.svg"
  3289. }
  3290. },
  3291. paws: {
  3292. height: math.unit(27.5, "feet"),
  3293. name: "Paws",
  3294. image: {
  3295. source: "./media/characters/jazzy/paws.svg"
  3296. }
  3297. },
  3298. eye: {
  3299. height: math.unit(4.4, "feet"),
  3300. name: "Eye",
  3301. image: {
  3302. source: "./media/characters/jazzy/eye.svg"
  3303. }
  3304. },
  3305. droneOffense: {
  3306. height: math.unit(9.5, "inches"),
  3307. name: "Drone (Offense)",
  3308. image: {
  3309. source: "./media/characters/jazzy/drone-offense.svg"
  3310. }
  3311. },
  3312. droneRecon: {
  3313. height: math.unit(9.5, "inches"),
  3314. name: "Drone (Recon)",
  3315. image: {
  3316. source: "./media/characters/jazzy/drone-recon.svg"
  3317. }
  3318. },
  3319. droneDefense: {
  3320. height: math.unit(9.5, "inches"),
  3321. name: "Drone (Defense)",
  3322. image: {
  3323. source: "./media/characters/jazzy/drone-defense.svg"
  3324. }
  3325. },
  3326. },
  3327. [
  3328. {
  3329. name: "Macro",
  3330. height: math.unit(216, "feet"),
  3331. default: true
  3332. },
  3333. ]
  3334. ))
  3335. characterMakers.push(() => makeCharacter(
  3336. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3337. {
  3338. front: {
  3339. height: math.unit(9 + 6/12, "feet"),
  3340. weight: math.unit(700, "lb"),
  3341. name: "Front",
  3342. image: {
  3343. source: "./media/characters/flamm/front.svg",
  3344. extra: 1736/1596,
  3345. bottom: 93/1829
  3346. }
  3347. },
  3348. buff: {
  3349. height: math.unit(9 + 6/12, "feet"),
  3350. weight: math.unit(950, "lb"),
  3351. name: "Buff",
  3352. image: {
  3353. source: "./media/characters/flamm/buff.svg",
  3354. extra: 3018/2874,
  3355. bottom: 221/3239
  3356. }
  3357. },
  3358. },
  3359. [
  3360. {
  3361. name: "Normal",
  3362. height: math.unit(9.5, "feet")
  3363. },
  3364. {
  3365. name: "Macro",
  3366. height: math.unit(200, "feet"),
  3367. default: true
  3368. },
  3369. ]
  3370. ))
  3371. characterMakers.push(() => makeCharacter(
  3372. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3373. {
  3374. front: {
  3375. height: math.unit(5 + 3/12, "feet"),
  3376. weight: math.unit(60, "kg"),
  3377. name: "Front",
  3378. image: {
  3379. source: "./media/characters/zephiro/front.svg",
  3380. extra: 1873/1761,
  3381. bottom: 147/2020
  3382. }
  3383. },
  3384. side: {
  3385. height: math.unit(5 + 3/12, "feet"),
  3386. weight: math.unit(60, "kg"),
  3387. name: "Side",
  3388. image: {
  3389. source: "./media/characters/zephiro/side.svg",
  3390. extra: 1929/1827,
  3391. bottom: 65/1994
  3392. }
  3393. },
  3394. back: {
  3395. height: math.unit(5 + 3/12, "feet"),
  3396. weight: math.unit(60, "kg"),
  3397. name: "Back",
  3398. image: {
  3399. source: "./media/characters/zephiro/back.svg",
  3400. extra: 1926/1816,
  3401. bottom: 41/1967
  3402. }
  3403. },
  3404. hand: {
  3405. height: math.unit(0.68, "feet"),
  3406. name: "Hand",
  3407. image: {
  3408. source: "./media/characters/zephiro/hand.svg"
  3409. }
  3410. },
  3411. paw: {
  3412. height: math.unit(1, "feet"),
  3413. name: "Paw",
  3414. image: {
  3415. source: "./media/characters/zephiro/paw.svg"
  3416. }
  3417. },
  3418. beans: {
  3419. height: math.unit(0.93, "feet"),
  3420. name: "Beans",
  3421. image: {
  3422. source: "./media/characters/zephiro/beans.svg"
  3423. }
  3424. },
  3425. },
  3426. [
  3427. {
  3428. name: "Micro",
  3429. height: math.unit(3, "inches")
  3430. },
  3431. {
  3432. name: "Normal",
  3433. height: math.unit(5 + 3 / 12, "feet"),
  3434. default: true
  3435. },
  3436. {
  3437. name: "Macro",
  3438. height: math.unit(118, "feet")
  3439. },
  3440. ]
  3441. ))
  3442. characterMakers.push(() => makeCharacter(
  3443. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3444. {
  3445. front: {
  3446. height: math.unit(5, "feet"),
  3447. weight: math.unit(90, "kg"),
  3448. preyCapacity: math.unit(14, "people"),
  3449. name: "Front",
  3450. image: {
  3451. source: "./media/characters/fory/front.svg",
  3452. extra: 2862 / 2674,
  3453. bottom: 180 / 3043.8
  3454. },
  3455. form: "weaselbun",
  3456. default: true,
  3457. extraAttributes: {
  3458. "pawSize": {
  3459. name: "Paw Size",
  3460. power: 2,
  3461. type: "area",
  3462. base: math.unit(0.1596, "m^2")
  3463. },
  3464. "pawLength": {
  3465. name: "Paw Length",
  3466. power: 1,
  3467. type: "length",
  3468. base: math.unit(0.7, "m")
  3469. }
  3470. }
  3471. },
  3472. back: {
  3473. height: math.unit(5, "feet"),
  3474. weight: math.unit(90, "kg"),
  3475. preyCapacity: math.unit(14, "people"),
  3476. name: "Back",
  3477. image: {
  3478. source: "./media/characters/fory/back.svg",
  3479. extra: 1790/1672,
  3480. bottom: 84/1874
  3481. },
  3482. form: "weaselbun",
  3483. extraAttributes: {
  3484. "pawSize": {
  3485. name: "Paw Size",
  3486. power: 2,
  3487. type: "area",
  3488. base: math.unit(0.1596, "m^2")
  3489. },
  3490. "pawLength": {
  3491. name: "Paw Length",
  3492. power: 1,
  3493. type: "length",
  3494. base: math.unit(0.7, "m")
  3495. }
  3496. }
  3497. },
  3498. paw: {
  3499. height: math.unit(2.14, "feet"),
  3500. name: "Paw",
  3501. image: {
  3502. source: "./media/characters/fory/paw.svg"
  3503. },
  3504. form: "weaselbun",
  3505. extraAttributes: {
  3506. "pawSize": {
  3507. name: "Paw Size",
  3508. power: 2,
  3509. type: "area",
  3510. base: math.unit(0.1596, "m^2")
  3511. },
  3512. "pawLength": {
  3513. name: "Paw Length",
  3514. power: 1,
  3515. type: "length",
  3516. base: math.unit(0.48, "m")
  3517. }
  3518. }
  3519. },
  3520. bunBack: {
  3521. height: math.unit(3, "feet"),
  3522. weight: math.unit(20, "kg"),
  3523. preyCapacity: math.unit(3, "people"),
  3524. name: "Back",
  3525. image: {
  3526. source: "./media/characters/fory/bun-back.svg",
  3527. extra: 1749/1564,
  3528. bottom: 246/1995
  3529. },
  3530. form: "bun",
  3531. default: true,
  3532. extraAttributes: {
  3533. "pawSize": {
  3534. name: "Paw Size",
  3535. power: 2,
  3536. type: "area",
  3537. base: math.unit(0.072, "m^2")
  3538. },
  3539. "pawLength": {
  3540. name: "Paw Length",
  3541. power: 1,
  3542. type: "length",
  3543. base: math.unit(0.45, "m")
  3544. }
  3545. }
  3546. },
  3547. },
  3548. [
  3549. {
  3550. name: "Normal",
  3551. height: math.unit(5, "feet"),
  3552. form: "weaselbun"
  3553. },
  3554. {
  3555. name: "Macro",
  3556. height: math.unit(50, "feet"),
  3557. default: true,
  3558. form: "weaselbun"
  3559. },
  3560. {
  3561. name: "Megamacro",
  3562. height: math.unit(10, "miles"),
  3563. form: "weaselbun"
  3564. },
  3565. {
  3566. name: "Gigamacro",
  3567. height: math.unit(5, "earths"),
  3568. form: "weaselbun"
  3569. },
  3570. {
  3571. name: "Normal",
  3572. height: math.unit(3, "feet"),
  3573. default: true,
  3574. form: "bun"
  3575. },
  3576. {
  3577. name: "Fun-Size",
  3578. height: math.unit(12, "feet"),
  3579. form: "bun"
  3580. },
  3581. {
  3582. name: "Macro",
  3583. height: math.unit(100, "feet"),
  3584. form: "bun"
  3585. },
  3586. {
  3587. name: "Planetary",
  3588. height: math.unit(3, "earths"),
  3589. form: "bun"
  3590. },
  3591. ],
  3592. {
  3593. "weaselbun": {
  3594. name: "Weaselbun",
  3595. default: true
  3596. },
  3597. "bun": {
  3598. name: "Bun",
  3599. },
  3600. }
  3601. ))
  3602. characterMakers.push(() => makeCharacter(
  3603. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3604. {
  3605. front: {
  3606. height: math.unit(7, "feet"),
  3607. weight: math.unit(90, "kg"),
  3608. name: "Front",
  3609. image: {
  3610. source: "./media/characters/kurrikage/front.svg",
  3611. extra: 1845/1733,
  3612. bottom: 119/1964
  3613. }
  3614. },
  3615. back: {
  3616. height: math.unit(7, "feet"),
  3617. weight: math.unit(90, "kg"),
  3618. name: "Back",
  3619. image: {
  3620. source: "./media/characters/kurrikage/back.svg",
  3621. extra: 1790/1677,
  3622. bottom: 61/1851
  3623. }
  3624. },
  3625. dressed: {
  3626. height: math.unit(7, "feet"),
  3627. weight: math.unit(90, "kg"),
  3628. name: "Dressed",
  3629. image: {
  3630. source: "./media/characters/kurrikage/dressed.svg",
  3631. extra: 1845/1733,
  3632. bottom: 119/1964
  3633. }
  3634. },
  3635. foot: {
  3636. height: math.unit(1.5, "feet"),
  3637. name: "Foot",
  3638. image: {
  3639. source: "./media/characters/kurrikage/foot.svg"
  3640. }
  3641. },
  3642. staff: {
  3643. height: math.unit(6.7, "feet"),
  3644. name: "Staff",
  3645. image: {
  3646. source: "./media/characters/kurrikage/staff.svg"
  3647. }
  3648. },
  3649. peek: {
  3650. height: math.unit(1.05, "feet"),
  3651. name: "Peeking",
  3652. image: {
  3653. source: "./media/characters/kurrikage/peek.svg",
  3654. bottom: 0.08
  3655. }
  3656. },
  3657. },
  3658. [
  3659. {
  3660. name: "Normal",
  3661. height: math.unit(12, "feet"),
  3662. default: true
  3663. },
  3664. {
  3665. name: "Big",
  3666. height: math.unit(20, "feet")
  3667. },
  3668. {
  3669. name: "Macro",
  3670. height: math.unit(500, "feet")
  3671. },
  3672. {
  3673. name: "Megamacro",
  3674. height: math.unit(20, "miles")
  3675. },
  3676. ]
  3677. ))
  3678. characterMakers.push(() => makeCharacter(
  3679. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3680. {
  3681. front: {
  3682. height: math.unit(6, "feet"),
  3683. weight: math.unit(75, "kg"),
  3684. name: "Front",
  3685. image: {
  3686. source: "./media/characters/shingo/front.svg",
  3687. extra: 1900/1825,
  3688. bottom: 82/1982
  3689. }
  3690. },
  3691. side: {
  3692. height: math.unit(6, "feet"),
  3693. weight: math.unit(75, "kg"),
  3694. name: "Side",
  3695. image: {
  3696. source: "./media/characters/shingo/side.svg",
  3697. extra: 1930/1865,
  3698. bottom: 16/1946
  3699. }
  3700. },
  3701. back: {
  3702. height: math.unit(6, "feet"),
  3703. weight: math.unit(75, "kg"),
  3704. name: "Back",
  3705. image: {
  3706. source: "./media/characters/shingo/back.svg",
  3707. extra: 1922/1852,
  3708. bottom: 16/1938
  3709. }
  3710. },
  3711. frontDressed: {
  3712. height: math.unit(6, "feet"),
  3713. weight: math.unit(150, "lb"),
  3714. name: "Front-dressed",
  3715. image: {
  3716. source: "./media/characters/shingo/front-dressed.svg",
  3717. extra: 1900/1825,
  3718. bottom: 82/1982
  3719. }
  3720. },
  3721. paw: {
  3722. height: math.unit(1.29, "feet"),
  3723. name: "Paw",
  3724. image: {
  3725. source: "./media/characters/shingo/paw.svg"
  3726. }
  3727. },
  3728. hand: {
  3729. height: math.unit(1.07, "feet"),
  3730. name: "Hand",
  3731. image: {
  3732. source: "./media/characters/shingo/hand.svg"
  3733. }
  3734. },
  3735. frontAlt: {
  3736. height: math.unit(6, "feet"),
  3737. weight: math.unit(75, "kg"),
  3738. name: "Front (Alt)",
  3739. image: {
  3740. source: "./media/characters/shingo/front-alt.svg",
  3741. extra: 3511 / 3338,
  3742. bottom: 0.005
  3743. }
  3744. },
  3745. frontAlt2: {
  3746. height: math.unit(6, "feet"),
  3747. weight: math.unit(75, "kg"),
  3748. name: "Front (Alt 2)",
  3749. image: {
  3750. source: "./media/characters/shingo/front-alt-2.svg",
  3751. extra: 706/681,
  3752. bottom: 11/717
  3753. }
  3754. },
  3755. pawAlt: {
  3756. height: math.unit(1, "feet"),
  3757. name: "Paw (Alt)",
  3758. image: {
  3759. source: "./media/characters/shingo/paw-alt.svg"
  3760. }
  3761. },
  3762. },
  3763. [
  3764. {
  3765. name: "Micro",
  3766. height: math.unit(4, "inches")
  3767. },
  3768. {
  3769. name: "Normal",
  3770. height: math.unit(6, "feet"),
  3771. default: true
  3772. },
  3773. {
  3774. name: "Macro",
  3775. height: math.unit(108, "feet")
  3776. },
  3777. {
  3778. name: "Macro+",
  3779. height: math.unit(1500, "feet")
  3780. },
  3781. ]
  3782. ))
  3783. characterMakers.push(() => makeCharacter(
  3784. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3785. {
  3786. side: {
  3787. height: math.unit(6, "feet"),
  3788. weight: math.unit(75, "kg"),
  3789. name: "Side",
  3790. image: {
  3791. source: "./media/characters/aigey/side.svg"
  3792. }
  3793. },
  3794. },
  3795. [
  3796. {
  3797. name: "Macro",
  3798. height: math.unit(200, "feet"),
  3799. default: true
  3800. },
  3801. {
  3802. name: "Megamacro",
  3803. height: math.unit(100, "miles")
  3804. },
  3805. ]
  3806. )
  3807. )
  3808. characterMakers.push(() => makeCharacter(
  3809. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3810. {
  3811. front: {
  3812. height: math.unit(5 + 5 / 12, "feet"),
  3813. weight: math.unit(75, "kg"),
  3814. name: "Front",
  3815. image: {
  3816. source: "./media/characters/natasha/front.svg",
  3817. extra: 859 / 824,
  3818. bottom: 23 / 879.6
  3819. }
  3820. },
  3821. frontNsfw: {
  3822. height: math.unit(5 + 5 / 12, "feet"),
  3823. weight: math.unit(75, "kg"),
  3824. name: "Front (NSFW)",
  3825. image: {
  3826. source: "./media/characters/natasha/front-nsfw.svg",
  3827. extra: 859 / 824,
  3828. bottom: 23 / 879.6
  3829. }
  3830. },
  3831. frontErect: {
  3832. height: math.unit(5 + 5 / 12, "feet"),
  3833. weight: math.unit(75, "kg"),
  3834. name: "Front (Erect)",
  3835. image: {
  3836. source: "./media/characters/natasha/front-erect.svg",
  3837. extra: 859 / 824,
  3838. bottom: 23 / 879.6
  3839. }
  3840. },
  3841. back: {
  3842. height: math.unit(5 + 5 / 12, "feet"),
  3843. weight: math.unit(75, "kg"),
  3844. name: "Back",
  3845. image: {
  3846. source: "./media/characters/natasha/back.svg",
  3847. extra: 887.9 / 852.6,
  3848. bottom: 9.7 / 896.4
  3849. }
  3850. },
  3851. backAlt: {
  3852. height: math.unit(5 + 5 / 12, "feet"),
  3853. weight: math.unit(75, "kg"),
  3854. name: "Back (Alt)",
  3855. image: {
  3856. source: "./media/characters/natasha/back-alt.svg",
  3857. extra: 1236.7 / 1192,
  3858. bottom: 22.3 / 1258.2
  3859. }
  3860. },
  3861. dick: {
  3862. height: math.unit(1.772, "feet"),
  3863. name: "Dick",
  3864. image: {
  3865. source: "./media/characters/natasha/dick.svg"
  3866. }
  3867. },
  3868. paw: {
  3869. height: math.unit(0.250, "meters"),
  3870. name: "Paw",
  3871. image: {
  3872. source: "./media/characters/natasha/paw.svg"
  3873. },
  3874. extraAttributes: {
  3875. "toeSize": {
  3876. name: "Toe Size",
  3877. power: 2,
  3878. type: "area",
  3879. base: math.unit(0.0024, "m^2")
  3880. },
  3881. "padSize": {
  3882. name: "Pad Size",
  3883. power: 2,
  3884. type: "area",
  3885. base: math.unit(0.00889, "m^2")
  3886. },
  3887. "pawSize": {
  3888. name: "Paw Size",
  3889. power: 2,
  3890. type: "area",
  3891. base: math.unit(0.023667, "m^2")
  3892. },
  3893. }
  3894. },
  3895. },
  3896. [
  3897. {
  3898. name: "Shortstack",
  3899. height: math.unit(3, "feet"),
  3900. default: true
  3901. },
  3902. {
  3903. name: "Normal",
  3904. height: math.unit(5 + 5 / 12, "feet")
  3905. },
  3906. {
  3907. name: "Large",
  3908. height: math.unit(12, "feet")
  3909. },
  3910. {
  3911. name: "Macro",
  3912. height: math.unit(100, "feet")
  3913. },
  3914. {
  3915. name: "Macro+",
  3916. height: math.unit(260, "feet")
  3917. },
  3918. {
  3919. name: "Macro++",
  3920. height: math.unit(1, "mile")
  3921. },
  3922. ]
  3923. ))
  3924. characterMakers.push(() => makeCharacter(
  3925. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3926. {
  3927. front: {
  3928. height: math.unit(6, "feet"),
  3929. weight: math.unit(75, "kg"),
  3930. name: "Front",
  3931. image: {
  3932. source: "./media/characters/malik/front.svg",
  3933. extra: 1750/1561,
  3934. bottom: 80/1830
  3935. },
  3936. extraAttributes: {
  3937. "toeSize": {
  3938. name: "Toe Size",
  3939. power: 2,
  3940. type: "area",
  3941. base: math.unit(0.0159, "m^2")
  3942. },
  3943. "pawSize": {
  3944. name: "Paw Size",
  3945. power: 2,
  3946. type: "area",
  3947. base: math.unit(0.09834, "m^2")
  3948. },
  3949. }
  3950. },
  3951. side: {
  3952. height: math.unit(6, "feet"),
  3953. weight: math.unit(75, "kg"),
  3954. name: "Side",
  3955. image: {
  3956. source: "./media/characters/malik/side.svg",
  3957. extra: 1802/1685,
  3958. bottom: 42/1844
  3959. },
  3960. extraAttributes: {
  3961. "toeSize": {
  3962. name: "Toe Size",
  3963. power: 2,
  3964. type: "area",
  3965. base: math.unit(0.0159, "m^2")
  3966. },
  3967. "pawSize": {
  3968. name: "Paw Size",
  3969. power: 2,
  3970. type: "area",
  3971. base: math.unit(0.09834, "m^2")
  3972. },
  3973. }
  3974. },
  3975. back: {
  3976. height: math.unit(6, "feet"),
  3977. weight: math.unit(75, "kg"),
  3978. name: "Back",
  3979. image: {
  3980. source: "./media/characters/malik/back.svg",
  3981. extra: 1803/1607,
  3982. bottom: 33/1836
  3983. },
  3984. extraAttributes: {
  3985. "toeSize": {
  3986. name: "Toe Size",
  3987. power: 2,
  3988. type: "area",
  3989. base: math.unit(0.0159, "m^2")
  3990. },
  3991. "pawSize": {
  3992. name: "Paw Size",
  3993. power: 2,
  3994. type: "area",
  3995. base: math.unit(0.09834, "m^2")
  3996. },
  3997. }
  3998. },
  3999. },
  4000. [
  4001. {
  4002. name: "Macro",
  4003. height: math.unit(156, "feet"),
  4004. default: true
  4005. },
  4006. {
  4007. name: "Macro+",
  4008. height: math.unit(1188, "feet")
  4009. },
  4010. ]
  4011. ))
  4012. characterMakers.push(() => makeCharacter(
  4013. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4014. {
  4015. front: {
  4016. height: math.unit(6, "feet"),
  4017. weight: math.unit(75, "kg"),
  4018. name: "Front",
  4019. image: {
  4020. source: "./media/characters/sefer/front.svg",
  4021. extra: 848 / 659,
  4022. bottom: 28.3 / 876.442
  4023. }
  4024. },
  4025. back: {
  4026. height: math.unit(6, "feet"),
  4027. weight: math.unit(75, "kg"),
  4028. name: "Back",
  4029. image: {
  4030. source: "./media/characters/sefer/back.svg",
  4031. extra: 864 / 695,
  4032. bottom: 10 / 871
  4033. }
  4034. },
  4035. frontDressed: {
  4036. height: math.unit(6, "feet"),
  4037. weight: math.unit(75, "kg"),
  4038. name: "Dressed",
  4039. image: {
  4040. source: "./media/characters/sefer/dressed.svg",
  4041. extra: 839 / 653,
  4042. bottom: 37.6 / 878
  4043. }
  4044. },
  4045. },
  4046. [
  4047. {
  4048. name: "Normal",
  4049. height: math.unit(6, "feet"),
  4050. default: true
  4051. },
  4052. {
  4053. name: "Big",
  4054. height: math.unit(8, "meters")
  4055. },
  4056. ]
  4057. ))
  4058. characterMakers.push(() => makeCharacter(
  4059. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4060. {
  4061. body: {
  4062. height: math.unit(2.2428, "meter"),
  4063. weight: math.unit(124.738, "kg"),
  4064. name: "Body",
  4065. image: {
  4066. extra: 1225 / 1050,
  4067. source: "./media/characters/north/front.svg"
  4068. }
  4069. }
  4070. },
  4071. [
  4072. {
  4073. name: "Micro",
  4074. height: math.unit(4, "inches")
  4075. },
  4076. {
  4077. name: "Macro",
  4078. height: math.unit(63, "meters")
  4079. },
  4080. {
  4081. name: "Megamacro",
  4082. height: math.unit(101, "miles"),
  4083. default: true
  4084. }
  4085. ]
  4086. ))
  4087. characterMakers.push(() => makeCharacter(
  4088. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4089. {
  4090. angled: {
  4091. height: math.unit(4, "meter"),
  4092. weight: math.unit(150, "kg"),
  4093. name: "Angled",
  4094. image: {
  4095. source: "./media/characters/talan/angled-sfw.svg",
  4096. bottom: 29 / 3734
  4097. }
  4098. },
  4099. angledNsfw: {
  4100. height: math.unit(4, "meter"),
  4101. weight: math.unit(150, "kg"),
  4102. name: "Angled (NSFW)",
  4103. image: {
  4104. source: "./media/characters/talan/angled-nsfw.svg",
  4105. bottom: 29 / 3734
  4106. }
  4107. },
  4108. frontNsfw: {
  4109. height: math.unit(4, "meter"),
  4110. weight: math.unit(150, "kg"),
  4111. name: "Front (NSFW)",
  4112. image: {
  4113. source: "./media/characters/talan/front-nsfw.svg",
  4114. bottom: 29 / 3734
  4115. }
  4116. },
  4117. sideNsfw: {
  4118. height: math.unit(4, "meter"),
  4119. weight: math.unit(150, "kg"),
  4120. name: "Side (NSFW)",
  4121. image: {
  4122. source: "./media/characters/talan/side-nsfw.svg",
  4123. bottom: 29 / 3734
  4124. }
  4125. },
  4126. back: {
  4127. height: math.unit(4, "meter"),
  4128. weight: math.unit(150, "kg"),
  4129. name: "Back",
  4130. image: {
  4131. source: "./media/characters/talan/back.svg"
  4132. }
  4133. },
  4134. dickBottom: {
  4135. height: math.unit(0.621, "meter"),
  4136. name: "Dick (Bottom)",
  4137. image: {
  4138. source: "./media/characters/talan/dick-bottom.svg"
  4139. }
  4140. },
  4141. dickTop: {
  4142. height: math.unit(0.621, "meter"),
  4143. name: "Dick (Top)",
  4144. image: {
  4145. source: "./media/characters/talan/dick-top.svg"
  4146. }
  4147. },
  4148. dickSide: {
  4149. height: math.unit(0.305, "meter"),
  4150. name: "Dick (Side)",
  4151. image: {
  4152. source: "./media/characters/talan/dick-side.svg"
  4153. }
  4154. },
  4155. dickFront: {
  4156. height: math.unit(0.305, "meter"),
  4157. name: "Dick (Front)",
  4158. image: {
  4159. source: "./media/characters/talan/dick-front.svg"
  4160. }
  4161. },
  4162. },
  4163. [
  4164. {
  4165. name: "Normal",
  4166. height: math.unit(4, "meters")
  4167. },
  4168. {
  4169. name: "Macro",
  4170. height: math.unit(100, "meters")
  4171. },
  4172. {
  4173. name: "Megamacro",
  4174. height: math.unit(2, "miles"),
  4175. default: true
  4176. },
  4177. {
  4178. name: "Gigamacro",
  4179. height: math.unit(5000, "miles")
  4180. },
  4181. {
  4182. name: "Teramacro",
  4183. height: math.unit(100, "parsecs")
  4184. }
  4185. ]
  4186. ))
  4187. characterMakers.push(() => makeCharacter(
  4188. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4189. {
  4190. front: {
  4191. height: math.unit(2, "meter"),
  4192. weight: math.unit(90, "kg"),
  4193. name: "Front",
  4194. image: {
  4195. source: "./media/characters/gael'rathus/front.svg"
  4196. }
  4197. },
  4198. frontAlt: {
  4199. height: math.unit(2, "meter"),
  4200. weight: math.unit(90, "kg"),
  4201. name: "Front (alt)",
  4202. image: {
  4203. source: "./media/characters/gael'rathus/front-alt.svg"
  4204. }
  4205. },
  4206. frontAlt2: {
  4207. height: math.unit(2, "meter"),
  4208. weight: math.unit(90, "kg"),
  4209. name: "Front (alt 2)",
  4210. image: {
  4211. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4212. }
  4213. }
  4214. },
  4215. [
  4216. {
  4217. name: "Normal",
  4218. height: math.unit(9, "feet"),
  4219. default: true
  4220. },
  4221. {
  4222. name: "Large",
  4223. height: math.unit(25, "feet")
  4224. },
  4225. {
  4226. name: "Macro",
  4227. height: math.unit(0.25, "miles")
  4228. },
  4229. {
  4230. name: "Megamacro",
  4231. height: math.unit(10, "miles")
  4232. }
  4233. ]
  4234. ))
  4235. characterMakers.push(() => makeCharacter(
  4236. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4237. {
  4238. side: {
  4239. height: math.unit(2, "meter"),
  4240. weight: math.unit(140, "kg"),
  4241. name: "Side",
  4242. image: {
  4243. source: "./media/characters/sosha/side.svg",
  4244. extra: 1170/1006,
  4245. bottom: 94/1264
  4246. }
  4247. },
  4248. maw: {
  4249. height: math.unit(2.87, "feet"),
  4250. name: "Maw",
  4251. image: {
  4252. source: "./media/characters/sosha/maw.svg",
  4253. extra: 966/865,
  4254. bottom: 0/966
  4255. }
  4256. },
  4257. cooch: {
  4258. height: math.unit(5.6, "feet"),
  4259. name: "Cooch",
  4260. image: {
  4261. source: "./media/characters/sosha/cooch.svg"
  4262. }
  4263. },
  4264. },
  4265. [
  4266. {
  4267. name: "Normal",
  4268. height: math.unit(12, "feet"),
  4269. default: true
  4270. }
  4271. ]
  4272. ))
  4273. characterMakers.push(() => makeCharacter(
  4274. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4275. {
  4276. side: {
  4277. height: math.unit(5 + 5 / 12, "feet"),
  4278. weight: math.unit(170, "kg"),
  4279. name: "Side",
  4280. image: {
  4281. source: "./media/characters/runnola/side.svg",
  4282. extra: 741 / 448,
  4283. bottom: 0.05
  4284. }
  4285. },
  4286. },
  4287. [
  4288. {
  4289. name: "Small",
  4290. height: math.unit(3, "feet")
  4291. },
  4292. {
  4293. name: "Normal",
  4294. height: math.unit(5 + 5 / 12, "feet"),
  4295. default: true
  4296. },
  4297. {
  4298. name: "Big",
  4299. height: math.unit(10, "feet")
  4300. },
  4301. ]
  4302. ))
  4303. characterMakers.push(() => makeCharacter(
  4304. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4305. {
  4306. front: {
  4307. height: math.unit(2, "meter"),
  4308. weight: math.unit(50, "kg"),
  4309. name: "Front",
  4310. image: {
  4311. source: "./media/characters/kurribird/front.svg",
  4312. bottom: 0.015
  4313. }
  4314. },
  4315. frontAlt: {
  4316. height: math.unit(1.5, "meter"),
  4317. weight: math.unit(50, "kg"),
  4318. name: "Front (Alt)",
  4319. image: {
  4320. source: "./media/characters/kurribird/front-alt.svg",
  4321. extra: 1.45
  4322. }
  4323. },
  4324. },
  4325. [
  4326. {
  4327. name: "Normal",
  4328. height: math.unit(7, "feet")
  4329. },
  4330. {
  4331. name: "Big",
  4332. height: math.unit(12, "feet"),
  4333. default: true
  4334. },
  4335. {
  4336. name: "Macro",
  4337. height: math.unit(1500, "feet")
  4338. },
  4339. {
  4340. name: "Megamacro",
  4341. height: math.unit(2, "miles")
  4342. }
  4343. ]
  4344. ))
  4345. characterMakers.push(() => makeCharacter(
  4346. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4347. {
  4348. front: {
  4349. height: math.unit(2, "meter"),
  4350. weight: math.unit(80, "kg"),
  4351. name: "Front",
  4352. image: {
  4353. source: "./media/characters/elbial/front.svg",
  4354. extra: 1643 / 1556,
  4355. bottom: 60.2 / 1696
  4356. }
  4357. },
  4358. side: {
  4359. height: math.unit(2, "meter"),
  4360. weight: math.unit(80, "kg"),
  4361. name: "Side",
  4362. image: {
  4363. source: "./media/characters/elbial/side.svg",
  4364. extra: 1601/1528,
  4365. bottom: 97/1698
  4366. }
  4367. },
  4368. back: {
  4369. height: math.unit(2, "meter"),
  4370. weight: math.unit(80, "kg"),
  4371. name: "Back",
  4372. image: {
  4373. source: "./media/characters/elbial/back.svg",
  4374. extra: 1653/1569,
  4375. bottom: 20/1673
  4376. }
  4377. },
  4378. frontDressed: {
  4379. height: math.unit(2, "meter"),
  4380. weight: math.unit(80, "kg"),
  4381. name: "Front (Dressed)",
  4382. image: {
  4383. source: "./media/characters/elbial/front-dressed.svg",
  4384. extra: 1638/1569,
  4385. bottom: 70/1708
  4386. }
  4387. },
  4388. genitals: {
  4389. height: math.unit(2 / 3.367, "meter"),
  4390. name: "Genitals",
  4391. image: {
  4392. source: "./media/characters/elbial/genitals.svg"
  4393. }
  4394. },
  4395. },
  4396. [
  4397. {
  4398. name: "Large",
  4399. height: math.unit(100, "feet")
  4400. },
  4401. {
  4402. name: "Macro",
  4403. height: math.unit(500, "feet"),
  4404. default: true
  4405. },
  4406. {
  4407. name: "Megamacro",
  4408. height: math.unit(10, "miles")
  4409. },
  4410. {
  4411. name: "Gigamacro",
  4412. height: math.unit(25000, "miles")
  4413. },
  4414. {
  4415. name: "Full-Size",
  4416. height: math.unit(8000000, "gigaparsecs")
  4417. }
  4418. ]
  4419. ))
  4420. characterMakers.push(() => makeCharacter(
  4421. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4422. {
  4423. front: {
  4424. height: math.unit(2, "meter"),
  4425. weight: math.unit(60, "kg"),
  4426. name: "Front",
  4427. image: {
  4428. source: "./media/characters/noah/front.svg",
  4429. extra: 1383/1313,
  4430. bottom: 104/1487
  4431. }
  4432. },
  4433. hand: {
  4434. height: math.unit(0.6, "feet"),
  4435. name: "Hand",
  4436. image: {
  4437. source: "./media/characters/noah/hand.svg"
  4438. }
  4439. },
  4440. talons: {
  4441. height: math.unit(1.385, "feet"),
  4442. name: "Talons",
  4443. image: {
  4444. source: "./media/characters/noah/talons.svg"
  4445. }
  4446. },
  4447. beak: {
  4448. height: math.unit(0.43, "feet"),
  4449. name: "Beak",
  4450. image: {
  4451. source: "./media/characters/noah/beak.svg"
  4452. }
  4453. },
  4454. collar: {
  4455. height: math.unit(0.88, "feet"),
  4456. name: "Collar",
  4457. image: {
  4458. source: "./media/characters/noah/collar.svg"
  4459. }
  4460. },
  4461. eyeNarrow: {
  4462. height: math.unit(0.18, "feet"),
  4463. name: "Eye (Narrow)",
  4464. image: {
  4465. source: "./media/characters/noah/eye-narrow.svg"
  4466. }
  4467. },
  4468. eyeNormal: {
  4469. height: math.unit(0.18, "feet"),
  4470. name: "Eye (Normal)",
  4471. image: {
  4472. source: "./media/characters/noah/eye-normal.svg"
  4473. }
  4474. },
  4475. eyeWide: {
  4476. height: math.unit(0.18, "feet"),
  4477. name: "Eye (Wide)",
  4478. image: {
  4479. source: "./media/characters/noah/eye-wide.svg"
  4480. }
  4481. },
  4482. ear: {
  4483. height: math.unit(0.64, "feet"),
  4484. name: "Ear",
  4485. image: {
  4486. source: "./media/characters/noah/ear.svg"
  4487. }
  4488. },
  4489. },
  4490. [
  4491. {
  4492. name: "Large",
  4493. height: math.unit(50, "feet")
  4494. },
  4495. {
  4496. name: "Macro",
  4497. height: math.unit(750, "feet"),
  4498. default: true
  4499. },
  4500. {
  4501. name: "Megamacro",
  4502. height: math.unit(50, "miles")
  4503. },
  4504. {
  4505. name: "Gigamacro",
  4506. height: math.unit(100000, "miles")
  4507. },
  4508. {
  4509. name: "Full-Size",
  4510. height: math.unit(3000000000, "miles")
  4511. }
  4512. ]
  4513. ))
  4514. characterMakers.push(() => makeCharacter(
  4515. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4516. {
  4517. front: {
  4518. height: math.unit(2, "meter"),
  4519. weight: math.unit(80, "kg"),
  4520. name: "Front",
  4521. image: {
  4522. source: "./media/characters/natalya/front.svg"
  4523. }
  4524. },
  4525. back: {
  4526. height: math.unit(2, "meter"),
  4527. weight: math.unit(80, "kg"),
  4528. name: "Back",
  4529. image: {
  4530. source: "./media/characters/natalya/back.svg"
  4531. }
  4532. }
  4533. },
  4534. [
  4535. {
  4536. name: "Normal",
  4537. height: math.unit(150, "feet"),
  4538. default: true
  4539. },
  4540. {
  4541. name: "Megamacro",
  4542. height: math.unit(5, "miles")
  4543. },
  4544. {
  4545. name: "Full-Size",
  4546. height: math.unit(600, "kiloparsecs")
  4547. }
  4548. ]
  4549. ))
  4550. characterMakers.push(() => makeCharacter(
  4551. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4552. {
  4553. front: {
  4554. height: math.unit(2, "meter"),
  4555. weight: math.unit(50, "kg"),
  4556. name: "Front",
  4557. image: {
  4558. source: "./media/characters/erestrebah/front.svg",
  4559. extra: 1262/1162,
  4560. bottom: 96/1358
  4561. }
  4562. },
  4563. back: {
  4564. height: math.unit(2, "meter"),
  4565. weight: math.unit(50, "kg"),
  4566. name: "Back",
  4567. image: {
  4568. source: "./media/characters/erestrebah/back.svg",
  4569. extra: 1257/1139,
  4570. bottom: 13/1270
  4571. }
  4572. },
  4573. wing: {
  4574. height: math.unit(2, "meter"),
  4575. weight: math.unit(50, "kg"),
  4576. name: "Wing",
  4577. image: {
  4578. source: "./media/characters/erestrebah/wing.svg",
  4579. extra: 1262/1162,
  4580. bottom: 96/1358
  4581. }
  4582. },
  4583. mouth: {
  4584. height: math.unit(0.39, "feet"),
  4585. name: "Mouth",
  4586. image: {
  4587. source: "./media/characters/erestrebah/mouth.svg"
  4588. }
  4589. }
  4590. },
  4591. [
  4592. {
  4593. name: "Normal",
  4594. height: math.unit(10, "feet")
  4595. },
  4596. {
  4597. name: "Large",
  4598. height: math.unit(50, "feet"),
  4599. default: true
  4600. },
  4601. {
  4602. name: "Macro",
  4603. height: math.unit(300, "feet")
  4604. },
  4605. {
  4606. name: "Macro+",
  4607. height: math.unit(750, "feet")
  4608. },
  4609. {
  4610. name: "Megamacro",
  4611. height: math.unit(3, "miles")
  4612. }
  4613. ]
  4614. ))
  4615. characterMakers.push(() => makeCharacter(
  4616. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4617. {
  4618. front: {
  4619. height: math.unit(2, "meter"),
  4620. weight: math.unit(80, "kg"),
  4621. name: "Front",
  4622. image: {
  4623. source: "./media/characters/jennifer/front.svg",
  4624. bottom: 0.11,
  4625. extra: 1.16
  4626. }
  4627. },
  4628. frontAlt: {
  4629. height: math.unit(2, "meter"),
  4630. weight: math.unit(80, "kg"),
  4631. name: "Front (Alt)",
  4632. image: {
  4633. source: "./media/characters/jennifer/front-alt.svg"
  4634. }
  4635. }
  4636. },
  4637. [
  4638. {
  4639. name: "Canon Height",
  4640. height: math.unit(120, "feet"),
  4641. default: true
  4642. },
  4643. {
  4644. name: "Macro+",
  4645. height: math.unit(300, "feet")
  4646. },
  4647. {
  4648. name: "Megamacro",
  4649. height: math.unit(20000, "feet")
  4650. }
  4651. ]
  4652. ))
  4653. characterMakers.push(() => makeCharacter(
  4654. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4655. {
  4656. front: {
  4657. height: math.unit(2, "meter"),
  4658. weight: math.unit(50, "kg"),
  4659. name: "Front",
  4660. image: {
  4661. source: "./media/characters/kalista/front.svg",
  4662. extra: 1314/1145,
  4663. bottom: 101/1415
  4664. }
  4665. },
  4666. back: {
  4667. height: math.unit(2, "meter"),
  4668. weight: math.unit(50, "kg"),
  4669. name: "Back",
  4670. image: {
  4671. source: "./media/characters/kalista/back.svg",
  4672. extra: 1366 / 1156,
  4673. bottom: 33.9 / 1362.78
  4674. }
  4675. }
  4676. },
  4677. [
  4678. {
  4679. name: "Uncomfortably Small",
  4680. height: math.unit(10, "feet")
  4681. },
  4682. {
  4683. name: "Small",
  4684. height: math.unit(30, "feet")
  4685. },
  4686. {
  4687. name: "Macro",
  4688. height: math.unit(100, "feet"),
  4689. default: true
  4690. },
  4691. {
  4692. name: "Macro+",
  4693. height: math.unit(2000, "feet")
  4694. },
  4695. {
  4696. name: "True Form",
  4697. height: math.unit(8924, "miles")
  4698. }
  4699. ]
  4700. ))
  4701. characterMakers.push(() => makeCharacter(
  4702. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4703. {
  4704. front: {
  4705. height: math.unit(2, "meter"),
  4706. weight: math.unit(120, "kg"),
  4707. name: "Front",
  4708. image: {
  4709. source: "./media/characters/ggv/front.svg"
  4710. }
  4711. },
  4712. side: {
  4713. height: math.unit(2, "meter"),
  4714. weight: math.unit(120, "kg"),
  4715. name: "Side",
  4716. image: {
  4717. source: "./media/characters/ggv/side.svg"
  4718. }
  4719. }
  4720. },
  4721. [
  4722. {
  4723. name: "Extremely Puny",
  4724. height: math.unit(9 + 5 / 12, "feet")
  4725. },
  4726. {
  4727. name: "Horribly Small",
  4728. height: math.unit(47.7, "miles"),
  4729. default: true
  4730. },
  4731. {
  4732. name: "Reasonably Sized",
  4733. height: math.unit(25000, "parsecs")
  4734. },
  4735. {
  4736. name: "Slightly Uncompressed",
  4737. height: math.unit(7.77e31, "parsecs")
  4738. },
  4739. {
  4740. name: "Omniversal",
  4741. height: math.unit(1e300, "meters")
  4742. },
  4743. ]
  4744. ))
  4745. characterMakers.push(() => makeCharacter(
  4746. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4747. {
  4748. front: {
  4749. height: math.unit(2, "meter"),
  4750. weight: math.unit(75, "lb"),
  4751. name: "Front",
  4752. image: {
  4753. source: "./media/characters/napalm/front.svg"
  4754. }
  4755. },
  4756. back: {
  4757. height: math.unit(2, "meter"),
  4758. weight: math.unit(75, "lb"),
  4759. name: "Back",
  4760. image: {
  4761. source: "./media/characters/napalm/back.svg"
  4762. }
  4763. }
  4764. },
  4765. [
  4766. {
  4767. name: "Standard",
  4768. height: math.unit(55, "feet"),
  4769. default: true
  4770. }
  4771. ]
  4772. ))
  4773. characterMakers.push(() => makeCharacter(
  4774. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4775. {
  4776. front: {
  4777. height: math.unit(7 + 5 / 6, "feet"),
  4778. weight: math.unit(325, "lb"),
  4779. name: "Front",
  4780. image: {
  4781. source: "./media/characters/asana/front.svg",
  4782. extra: 1133 / 1060,
  4783. bottom: 15.2 / 1148.6
  4784. }
  4785. },
  4786. back: {
  4787. height: math.unit(7 + 5 / 6, "feet"),
  4788. weight: math.unit(325, "lb"),
  4789. name: "Back",
  4790. image: {
  4791. source: "./media/characters/asana/back.svg",
  4792. extra: 1114 / 1043,
  4793. bottom: 5 / 1120
  4794. }
  4795. },
  4796. dressedDark: {
  4797. height: math.unit(7 + 5 / 6, "feet"),
  4798. weight: math.unit(325, "lb"),
  4799. name: "Dressed (Dark)",
  4800. image: {
  4801. source: "./media/characters/asana/dressed-dark.svg",
  4802. extra: 1133 / 1060,
  4803. bottom: 15.2 / 1148.6
  4804. }
  4805. },
  4806. dressedLight: {
  4807. height: math.unit(7 + 5 / 6, "feet"),
  4808. weight: math.unit(325, "lb"),
  4809. name: "Dressed (Light)",
  4810. image: {
  4811. source: "./media/characters/asana/dressed-light.svg",
  4812. extra: 1133 / 1060,
  4813. bottom: 15.2 / 1148.6
  4814. }
  4815. },
  4816. },
  4817. [
  4818. {
  4819. name: "Standard",
  4820. height: math.unit(7 + 5 / 6, "feet"),
  4821. default: true
  4822. },
  4823. {
  4824. name: "Large",
  4825. height: math.unit(10, "meters")
  4826. },
  4827. {
  4828. name: "Macro",
  4829. height: math.unit(2500, "meters")
  4830. },
  4831. {
  4832. name: "Megamacro",
  4833. height: math.unit(5e6, "meters")
  4834. },
  4835. {
  4836. name: "Examacro",
  4837. height: math.unit(5e12, "lightyears")
  4838. },
  4839. {
  4840. name: "Max Size",
  4841. height: math.unit(1e31, "lightyears")
  4842. }
  4843. ]
  4844. ))
  4845. characterMakers.push(() => makeCharacter(
  4846. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4847. {
  4848. front: {
  4849. height: math.unit(2, "meter"),
  4850. weight: math.unit(60, "kg"),
  4851. name: "Front",
  4852. image: {
  4853. source: "./media/characters/ebony/front.svg",
  4854. bottom: 0.03,
  4855. extra: 1045 / 810 + 0.03
  4856. }
  4857. },
  4858. side: {
  4859. height: math.unit(2, "meter"),
  4860. weight: math.unit(60, "kg"),
  4861. name: "Side",
  4862. image: {
  4863. source: "./media/characters/ebony/side.svg",
  4864. bottom: 0.03,
  4865. extra: 1045 / 810 + 0.03
  4866. }
  4867. },
  4868. back: {
  4869. height: math.unit(2, "meter"),
  4870. weight: math.unit(60, "kg"),
  4871. name: "Back",
  4872. image: {
  4873. source: "./media/characters/ebony/back.svg",
  4874. bottom: 0.01,
  4875. extra: 1045 / 810 + 0.01
  4876. }
  4877. },
  4878. },
  4879. [
  4880. // TODO check why I did this lol
  4881. {
  4882. name: "Standard",
  4883. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4884. default: true
  4885. },
  4886. {
  4887. name: "Macro",
  4888. height: math.unit(200, "feet")
  4889. },
  4890. {
  4891. name: "Gigamacro",
  4892. height: math.unit(13000, "km")
  4893. }
  4894. ]
  4895. ))
  4896. characterMakers.push(() => makeCharacter(
  4897. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4898. {
  4899. front: {
  4900. height: math.unit(6, "feet"),
  4901. weight: math.unit(175, "lb"),
  4902. name: "Front",
  4903. image: {
  4904. source: "./media/characters/mountain/front.svg",
  4905. extra: 972 / 955,
  4906. bottom: 64 / 1036.6
  4907. }
  4908. },
  4909. back: {
  4910. height: math.unit(6, "feet"),
  4911. weight: math.unit(175, "lb"),
  4912. name: "Back",
  4913. image: {
  4914. source: "./media/characters/mountain/back.svg",
  4915. extra: 970 / 950,
  4916. bottom: 28.25 / 999
  4917. }
  4918. },
  4919. },
  4920. [
  4921. {
  4922. name: "Large",
  4923. height: math.unit(20, "meters")
  4924. },
  4925. {
  4926. name: "Macro",
  4927. height: math.unit(300, "meters")
  4928. },
  4929. {
  4930. name: "Gigamacro",
  4931. height: math.unit(10000, "km"),
  4932. default: true
  4933. },
  4934. {
  4935. name: "Examacro",
  4936. height: math.unit(10e9, "lightyears")
  4937. }
  4938. ]
  4939. ))
  4940. characterMakers.push(() => makeCharacter(
  4941. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4942. {
  4943. front: {
  4944. height: math.unit(8, "feet"),
  4945. weight: math.unit(500, "lb"),
  4946. name: "Front",
  4947. image: {
  4948. source: "./media/characters/rick/front.svg"
  4949. }
  4950. }
  4951. },
  4952. [
  4953. {
  4954. name: "Normal",
  4955. height: math.unit(8, "feet"),
  4956. default: true
  4957. },
  4958. {
  4959. name: "Macro",
  4960. height: math.unit(5, "km")
  4961. }
  4962. ]
  4963. ))
  4964. characterMakers.push(() => makeCharacter(
  4965. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4966. {
  4967. front: {
  4968. height: math.unit(8, "feet"),
  4969. weight: math.unit(120, "lb"),
  4970. name: "Front",
  4971. image: {
  4972. source: "./media/characters/ona/front.svg"
  4973. }
  4974. },
  4975. frontAlt: {
  4976. height: math.unit(8, "feet"),
  4977. weight: math.unit(120, "lb"),
  4978. name: "Front (Alt)",
  4979. image: {
  4980. source: "./media/characters/ona/front-alt.svg"
  4981. }
  4982. },
  4983. back: {
  4984. height: math.unit(8, "feet"),
  4985. weight: math.unit(120, "lb"),
  4986. name: "Back",
  4987. image: {
  4988. source: "./media/characters/ona/back.svg"
  4989. }
  4990. },
  4991. foot: {
  4992. height: math.unit(1.1, "feet"),
  4993. name: "Foot",
  4994. image: {
  4995. source: "./media/characters/ona/foot.svg"
  4996. }
  4997. }
  4998. },
  4999. [
  5000. {
  5001. name: "Megamacro",
  5002. height: math.unit(70, "km"),
  5003. default: true
  5004. },
  5005. {
  5006. name: "Gigamacro",
  5007. height: math.unit(681818, "miles")
  5008. },
  5009. {
  5010. name: "Examacro",
  5011. height: math.unit(3800000, "lightyears")
  5012. },
  5013. ]
  5014. ))
  5015. characterMakers.push(() => makeCharacter(
  5016. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5017. {
  5018. front: {
  5019. height: math.unit(12, "feet"),
  5020. weight: math.unit(3000, "lb"),
  5021. name: "Front",
  5022. image: {
  5023. source: "./media/characters/mech/front.svg",
  5024. extra: 2900 / 2770,
  5025. bottom: 110 / 3010
  5026. }
  5027. },
  5028. back: {
  5029. height: math.unit(12, "feet"),
  5030. weight: math.unit(3000, "lb"),
  5031. name: "Back",
  5032. image: {
  5033. source: "./media/characters/mech/back.svg",
  5034. extra: 3011 / 2890,
  5035. bottom: 94 / 3105
  5036. }
  5037. },
  5038. maw: {
  5039. height: math.unit(3.07, "feet"),
  5040. name: "Maw",
  5041. image: {
  5042. source: "./media/characters/mech/maw.svg"
  5043. }
  5044. },
  5045. head: {
  5046. height: math.unit(3.07, "feet"),
  5047. name: "Head",
  5048. image: {
  5049. source: "./media/characters/mech/head.svg"
  5050. }
  5051. },
  5052. dick: {
  5053. height: math.unit(1.43, "feet"),
  5054. name: "Dick",
  5055. image: {
  5056. source: "./media/characters/mech/dick.svg"
  5057. }
  5058. },
  5059. },
  5060. [
  5061. {
  5062. name: "Normal",
  5063. height: math.unit(12, "feet")
  5064. },
  5065. {
  5066. name: "Macro",
  5067. height: math.unit(300, "feet"),
  5068. default: true
  5069. },
  5070. {
  5071. name: "Macro+",
  5072. height: math.unit(1500, "feet")
  5073. },
  5074. ]
  5075. ))
  5076. characterMakers.push(() => makeCharacter(
  5077. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5078. {
  5079. front: {
  5080. height: math.unit(1.3, "meter"),
  5081. weight: math.unit(30, "kg"),
  5082. name: "Front",
  5083. image: {
  5084. source: "./media/characters/gregory/front.svg",
  5085. }
  5086. }
  5087. },
  5088. [
  5089. {
  5090. name: "Normal",
  5091. height: math.unit(1.3, "meter"),
  5092. default: true
  5093. },
  5094. {
  5095. name: "Macro",
  5096. height: math.unit(20, "meter")
  5097. }
  5098. ]
  5099. ))
  5100. characterMakers.push(() => makeCharacter(
  5101. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5102. {
  5103. front: {
  5104. height: math.unit(2.8, "meter"),
  5105. weight: math.unit(200, "kg"),
  5106. name: "Front",
  5107. image: {
  5108. source: "./media/characters/elory/front.svg",
  5109. }
  5110. }
  5111. },
  5112. [
  5113. {
  5114. name: "Normal",
  5115. height: math.unit(2.8, "meter"),
  5116. default: true
  5117. },
  5118. {
  5119. name: "Macro",
  5120. height: math.unit(38, "meter")
  5121. }
  5122. ]
  5123. ))
  5124. characterMakers.push(() => makeCharacter(
  5125. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5126. {
  5127. front: {
  5128. height: math.unit(470, "feet"),
  5129. weight: math.unit(924, "tons"),
  5130. name: "Front",
  5131. image: {
  5132. source: "./media/characters/angelpatamon/front.svg",
  5133. }
  5134. }
  5135. },
  5136. [
  5137. {
  5138. name: "Normal",
  5139. height: math.unit(470, "feet"),
  5140. default: true
  5141. },
  5142. {
  5143. name: "Deity Size I",
  5144. height: math.unit(28651.2, "km")
  5145. },
  5146. {
  5147. name: "Deity Size II",
  5148. height: math.unit(171907.2, "km")
  5149. }
  5150. ]
  5151. ))
  5152. characterMakers.push(() => makeCharacter(
  5153. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5154. {
  5155. side: {
  5156. height: math.unit(7.2, "meter"),
  5157. weight: math.unit(8.2, "tons"),
  5158. name: "Side",
  5159. image: {
  5160. source: "./media/characters/cryae/side.svg",
  5161. extra: 3500 / 1500
  5162. }
  5163. }
  5164. },
  5165. [
  5166. {
  5167. name: "Normal",
  5168. height: math.unit(7.2, "meter"),
  5169. default: true
  5170. }
  5171. ]
  5172. ))
  5173. characterMakers.push(() => makeCharacter(
  5174. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5175. {
  5176. front: {
  5177. height: math.unit(6, "feet"),
  5178. weight: math.unit(175, "lb"),
  5179. name: "Front",
  5180. image: {
  5181. source: "./media/characters/xera/front.svg",
  5182. extra: 2377 / 1972,
  5183. bottom: 75.5 / 2452
  5184. }
  5185. },
  5186. side: {
  5187. height: math.unit(6, "feet"),
  5188. weight: math.unit(175, "lb"),
  5189. name: "Side",
  5190. image: {
  5191. source: "./media/characters/xera/side.svg",
  5192. extra: 2345 / 2019,
  5193. bottom: 39.7 / 2384
  5194. }
  5195. },
  5196. back: {
  5197. height: math.unit(6, "feet"),
  5198. weight: math.unit(175, "lb"),
  5199. name: "Back",
  5200. image: {
  5201. source: "./media/characters/xera/back.svg",
  5202. extra: 2095 / 1984,
  5203. bottom: 67 / 2166
  5204. }
  5205. },
  5206. },
  5207. [
  5208. {
  5209. name: "Small",
  5210. height: math.unit(10, "feet")
  5211. },
  5212. {
  5213. name: "Macro",
  5214. height: math.unit(500, "meters"),
  5215. default: true
  5216. },
  5217. {
  5218. name: "Macro+",
  5219. height: math.unit(10, "km")
  5220. },
  5221. {
  5222. name: "Gigamacro",
  5223. height: math.unit(25000, "km")
  5224. },
  5225. {
  5226. name: "Teramacro",
  5227. height: math.unit(3e6, "km")
  5228. }
  5229. ]
  5230. ))
  5231. characterMakers.push(() => makeCharacter(
  5232. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5233. {
  5234. front: {
  5235. height: math.unit(6, "feet"),
  5236. weight: math.unit(175, "lb"),
  5237. name: "Front",
  5238. image: {
  5239. source: "./media/characters/nebula/front.svg",
  5240. extra: 2566 / 2362,
  5241. bottom: 81 / 2644
  5242. }
  5243. }
  5244. },
  5245. [
  5246. {
  5247. name: "Small",
  5248. height: math.unit(4.5, "meters")
  5249. },
  5250. {
  5251. name: "Macro",
  5252. height: math.unit(1500, "meters"),
  5253. default: true
  5254. },
  5255. {
  5256. name: "Megamacro",
  5257. height: math.unit(150, "km")
  5258. },
  5259. {
  5260. name: "Gigamacro",
  5261. height: math.unit(27000, "km")
  5262. }
  5263. ]
  5264. ))
  5265. characterMakers.push(() => makeCharacter(
  5266. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5267. {
  5268. front: {
  5269. height: math.unit(6, "feet"),
  5270. weight: math.unit(225, "lb"),
  5271. name: "Front",
  5272. image: {
  5273. source: "./media/characters/abysgar/front.svg",
  5274. extra: 1739/1614,
  5275. bottom: 71/1810
  5276. }
  5277. },
  5278. frontNsfw: {
  5279. height: math.unit(6, "feet"),
  5280. weight: math.unit(225, "lb"),
  5281. name: "Front (NSFW)",
  5282. image: {
  5283. source: "./media/characters/abysgar/front-nsfw.svg",
  5284. extra: 1739/1614,
  5285. bottom: 71/1810
  5286. }
  5287. },
  5288. back: {
  5289. height: math.unit(4.6, "feet"),
  5290. weight: math.unit(225, "lb"),
  5291. name: "Back",
  5292. image: {
  5293. source: "./media/characters/abysgar/back.svg",
  5294. extra: 1384/1327,
  5295. bottom: 0/1384
  5296. }
  5297. },
  5298. head: {
  5299. height: math.unit(1.25, "feet"),
  5300. name: "Head",
  5301. image: {
  5302. source: "./media/characters/abysgar/head.svg",
  5303. extra: 669/569,
  5304. bottom: 0/669
  5305. }
  5306. },
  5307. },
  5308. [
  5309. {
  5310. name: "Small",
  5311. height: math.unit(4.5, "meters")
  5312. },
  5313. {
  5314. name: "Macro",
  5315. height: math.unit(1250, "meters"),
  5316. default: true
  5317. },
  5318. {
  5319. name: "Megamacro",
  5320. height: math.unit(125, "km")
  5321. },
  5322. {
  5323. name: "Gigamacro",
  5324. height: math.unit(26000, "km")
  5325. }
  5326. ]
  5327. ))
  5328. characterMakers.push(() => makeCharacter(
  5329. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5330. {
  5331. front: {
  5332. height: math.unit(6, "feet"),
  5333. weight: math.unit(180, "lb"),
  5334. name: "Front",
  5335. image: {
  5336. source: "./media/characters/yakuz/front.svg"
  5337. }
  5338. }
  5339. },
  5340. [
  5341. {
  5342. name: "Small",
  5343. height: math.unit(5, "meters")
  5344. },
  5345. {
  5346. name: "Macro",
  5347. height: math.unit(1500, "meters"),
  5348. default: true
  5349. },
  5350. {
  5351. name: "Megamacro",
  5352. height: math.unit(200, "km")
  5353. },
  5354. {
  5355. name: "Gigamacro",
  5356. height: math.unit(100000, "km")
  5357. }
  5358. ]
  5359. ))
  5360. characterMakers.push(() => makeCharacter(
  5361. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5362. {
  5363. front: {
  5364. height: math.unit(6, "feet"),
  5365. weight: math.unit(175, "lb"),
  5366. name: "Front",
  5367. image: {
  5368. source: "./media/characters/mirova/front.svg",
  5369. extra: 3334 / 3071,
  5370. bottom: 42 / 3375.6
  5371. }
  5372. }
  5373. },
  5374. [
  5375. {
  5376. name: "Small",
  5377. height: math.unit(5, "meters")
  5378. },
  5379. {
  5380. name: "Macro",
  5381. height: math.unit(900, "meters"),
  5382. default: true
  5383. },
  5384. {
  5385. name: "Megamacro",
  5386. height: math.unit(135, "km")
  5387. },
  5388. {
  5389. name: "Gigamacro",
  5390. height: math.unit(20000, "km")
  5391. }
  5392. ]
  5393. ))
  5394. characterMakers.push(() => makeCharacter(
  5395. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5396. {
  5397. side: {
  5398. height: math.unit(28.35, "feet"),
  5399. weight: math.unit(99.75, "tons"),
  5400. name: "Side",
  5401. image: {
  5402. source: "./media/characters/asana-mech/side.svg",
  5403. extra: 923 / 699,
  5404. bottom: 50 / 975
  5405. }
  5406. },
  5407. chaingun: {
  5408. height: math.unit(7, "feet"),
  5409. weight: math.unit(2400, "lb"),
  5410. name: "Chaingun",
  5411. image: {
  5412. source: "./media/characters/asana-mech/chaingun.svg"
  5413. }
  5414. },
  5415. laser: {
  5416. height: math.unit(7.12, "feet"),
  5417. weight: math.unit(2000, "lb"),
  5418. name: "Laser",
  5419. image: {
  5420. source: "./media/characters/asana-mech/laser.svg"
  5421. }
  5422. },
  5423. },
  5424. [
  5425. {
  5426. name: "Normal",
  5427. height: math.unit(28.35, "feet"),
  5428. default: true
  5429. },
  5430. {
  5431. name: "Macro",
  5432. height: math.unit(2500, "feet")
  5433. },
  5434. {
  5435. name: "Megamacro",
  5436. height: math.unit(25, "miles")
  5437. },
  5438. {
  5439. name: "Examacro",
  5440. height: math.unit(6e8, "lightyears")
  5441. },
  5442. ]
  5443. ))
  5444. characterMakers.push(() => makeCharacter(
  5445. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5446. {
  5447. front: {
  5448. height: math.unit(5, "meters"),
  5449. weight: math.unit(1000, "kg"),
  5450. name: "Front",
  5451. image: {
  5452. source: "./media/characters/asche/front.svg",
  5453. extra: 1258 / 1190,
  5454. bottom: 47 / 1305
  5455. }
  5456. },
  5457. frontUnderwear: {
  5458. height: math.unit(5, "meters"),
  5459. weight: math.unit(1000, "kg"),
  5460. name: "Front (Underwear)",
  5461. image: {
  5462. source: "./media/characters/asche/front-underwear.svg",
  5463. extra: 1258 / 1190,
  5464. bottom: 47 / 1305
  5465. }
  5466. },
  5467. frontDressed: {
  5468. height: math.unit(5, "meters"),
  5469. weight: math.unit(1000, "kg"),
  5470. name: "Front (Dressed)",
  5471. image: {
  5472. source: "./media/characters/asche/front-dressed.svg",
  5473. extra: 1258 / 1190,
  5474. bottom: 47 / 1305
  5475. }
  5476. },
  5477. frontArmor: {
  5478. height: math.unit(5, "meters"),
  5479. weight: math.unit(1000, "kg"),
  5480. name: "Front (Armored)",
  5481. image: {
  5482. source: "./media/characters/asche/front-armored.svg",
  5483. extra: 1374 / 1308,
  5484. bottom: 23 / 1397
  5485. }
  5486. },
  5487. mp724: {
  5488. height: math.unit(0.96, "meters"),
  5489. weight: math.unit(38, "kg"),
  5490. name: "H&K MP724",
  5491. image: {
  5492. source: "./media/characters/asche/h&k-mp724.svg"
  5493. }
  5494. },
  5495. side: {
  5496. height: math.unit(5, "meters"),
  5497. weight: math.unit(1000, "kg"),
  5498. name: "Side",
  5499. image: {
  5500. source: "./media/characters/asche/side.svg",
  5501. extra: 1717 / 1609,
  5502. bottom: 0.005
  5503. }
  5504. },
  5505. back: {
  5506. height: math.unit(5, "meters"),
  5507. weight: math.unit(1000, "kg"),
  5508. name: "Back",
  5509. image: {
  5510. source: "./media/characters/asche/back.svg",
  5511. extra: 1570 / 1501
  5512. }
  5513. },
  5514. },
  5515. [
  5516. {
  5517. name: "DEFCON 5",
  5518. height: math.unit(5, "meters")
  5519. },
  5520. {
  5521. name: "DEFCON 4",
  5522. height: math.unit(500, "meters"),
  5523. default: true
  5524. },
  5525. {
  5526. name: "DEFCON 3",
  5527. height: math.unit(5, "km")
  5528. },
  5529. {
  5530. name: "DEFCON 2",
  5531. height: math.unit(500, "km")
  5532. },
  5533. {
  5534. name: "DEFCON 1",
  5535. height: math.unit(500000, "km")
  5536. },
  5537. {
  5538. name: "DEFCON 0",
  5539. height: math.unit(3, "gigaparsecs")
  5540. },
  5541. ]
  5542. ))
  5543. characterMakers.push(() => makeCharacter(
  5544. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5545. {
  5546. front: {
  5547. height: math.unit(7, "feet"),
  5548. weight: math.unit(92.7, "kg"),
  5549. name: "Front",
  5550. image: {
  5551. source: "./media/characters/gale/front.svg",
  5552. extra: 977/919,
  5553. bottom: 105/1082
  5554. }
  5555. },
  5556. side: {
  5557. height: math.unit(6.7, "feet"),
  5558. weight: math.unit(92.7, "kg"),
  5559. name: "Side",
  5560. image: {
  5561. source: "./media/characters/gale/side.svg",
  5562. extra: 978/922,
  5563. bottom: 140/1118
  5564. }
  5565. },
  5566. back: {
  5567. height: math.unit(7, "feet"),
  5568. weight: math.unit(92.7, "kg"),
  5569. name: "Back",
  5570. image: {
  5571. source: "./media/characters/gale/back.svg",
  5572. extra: 966/920,
  5573. bottom: 61/1027
  5574. }
  5575. },
  5576. maw: {
  5577. height: math.unit(2.23, "feet"),
  5578. name: "Maw",
  5579. image: {
  5580. source: "./media/characters/gale/maw.svg"
  5581. }
  5582. },
  5583. foot: {
  5584. height: math.unit(2.1, "feet"),
  5585. name: "Foot",
  5586. image: {
  5587. source: "./media/characters/gale/foot.svg"
  5588. }
  5589. },
  5590. },
  5591. [
  5592. {
  5593. name: "Normal",
  5594. height: math.unit(7, "feet")
  5595. },
  5596. {
  5597. name: "Macro",
  5598. height: math.unit(150, "feet"),
  5599. default: true
  5600. },
  5601. {
  5602. name: "Macro+",
  5603. height: math.unit(300, "feet")
  5604. },
  5605. ]
  5606. ))
  5607. characterMakers.push(() => makeCharacter(
  5608. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5609. {
  5610. front: {
  5611. height: math.unit(5 + 10/12, "feet"),
  5612. weight: math.unit(67, "kg"),
  5613. name: "Front",
  5614. image: {
  5615. source: "./media/characters/draylen/front.svg",
  5616. extra: 832/777,
  5617. bottom: 85/917
  5618. }
  5619. }
  5620. },
  5621. [
  5622. {
  5623. name: "Normal",
  5624. height: math.unit(5 + 10/12, "feet")
  5625. },
  5626. {
  5627. name: "Macro",
  5628. height: math.unit(150, "feet"),
  5629. default: true
  5630. }
  5631. ]
  5632. ))
  5633. characterMakers.push(() => makeCharacter(
  5634. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5635. {
  5636. front: {
  5637. height: math.unit(7 + 9 / 12, "feet"),
  5638. weight: math.unit(379, "lbs"),
  5639. name: "Front",
  5640. image: {
  5641. source: "./media/characters/chez/front.svg"
  5642. }
  5643. },
  5644. side: {
  5645. height: math.unit(7 + 9 / 12, "feet"),
  5646. weight: math.unit(379, "lbs"),
  5647. name: "Side",
  5648. image: {
  5649. source: "./media/characters/chez/side.svg"
  5650. }
  5651. }
  5652. },
  5653. [
  5654. {
  5655. name: "Normal",
  5656. height: math.unit(7 + 9 / 12, "feet"),
  5657. default: true
  5658. },
  5659. {
  5660. name: "God King",
  5661. height: math.unit(9750000, "meters")
  5662. }
  5663. ]
  5664. ))
  5665. characterMakers.push(() => makeCharacter(
  5666. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5667. {
  5668. front: {
  5669. height: math.unit(6, "feet"),
  5670. weight: math.unit(275, "lbs"),
  5671. name: "Front",
  5672. image: {
  5673. source: "./media/characters/kaylum/front.svg",
  5674. bottom: 0.01,
  5675. extra: 1166 / 1031
  5676. }
  5677. },
  5678. frontWingless: {
  5679. height: math.unit(6, "feet"),
  5680. weight: math.unit(275, "lbs"),
  5681. name: "Front (Wingless)",
  5682. image: {
  5683. source: "./media/characters/kaylum/front-wingless.svg",
  5684. bottom: 0.01,
  5685. extra: 1117 / 1031
  5686. }
  5687. }
  5688. },
  5689. [
  5690. {
  5691. name: "Normal",
  5692. height: math.unit(3.05, "meters")
  5693. },
  5694. {
  5695. name: "Master",
  5696. height: math.unit(5.5, "meters")
  5697. },
  5698. {
  5699. name: "Rampage",
  5700. height: math.unit(19, "meters")
  5701. },
  5702. {
  5703. name: "Macro Lite",
  5704. height: math.unit(37, "meters")
  5705. },
  5706. {
  5707. name: "Hyper Predator",
  5708. height: math.unit(61, "meters")
  5709. },
  5710. {
  5711. name: "Macro",
  5712. height: math.unit(138, "meters"),
  5713. default: true
  5714. }
  5715. ]
  5716. ))
  5717. characterMakers.push(() => makeCharacter(
  5718. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5719. {
  5720. front: {
  5721. height: math.unit(5 + 5 / 12, "feet"),
  5722. weight: math.unit(120, "lbs"),
  5723. name: "Front",
  5724. image: {
  5725. source: "./media/characters/geta/front.svg",
  5726. extra: 1003/933,
  5727. bottom: 21/1024
  5728. }
  5729. },
  5730. paw: {
  5731. height: math.unit(0.35, "feet"),
  5732. name: "Paw",
  5733. image: {
  5734. source: "./media/characters/geta/paw.svg"
  5735. }
  5736. },
  5737. },
  5738. [
  5739. {
  5740. name: "Micro",
  5741. height: math.unit(3, "inches"),
  5742. default: true
  5743. },
  5744. {
  5745. name: "Normal",
  5746. height: math.unit(5 + 5 / 12, "feet")
  5747. }
  5748. ]
  5749. ))
  5750. characterMakers.push(() => makeCharacter(
  5751. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5752. {
  5753. front: {
  5754. height: math.unit(6, "feet"),
  5755. weight: math.unit(300, "lbs"),
  5756. name: "Front",
  5757. image: {
  5758. source: "./media/characters/tyrnn/front.svg"
  5759. }
  5760. }
  5761. },
  5762. [
  5763. {
  5764. name: "Main Height",
  5765. height: math.unit(355, "feet"),
  5766. default: true
  5767. },
  5768. {
  5769. name: "Fave. Height",
  5770. height: math.unit(2400, "feet")
  5771. }
  5772. ]
  5773. ))
  5774. characterMakers.push(() => makeCharacter(
  5775. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5776. {
  5777. front: {
  5778. height: math.unit(6, "feet"),
  5779. weight: math.unit(300, "lbs"),
  5780. name: "Front",
  5781. image: {
  5782. source: "./media/characters/appledectomy/front.svg"
  5783. }
  5784. }
  5785. },
  5786. [
  5787. {
  5788. name: "Macro",
  5789. height: math.unit(2500, "feet")
  5790. },
  5791. {
  5792. name: "Megamacro",
  5793. height: math.unit(50, "miles"),
  5794. default: true
  5795. },
  5796. {
  5797. name: "Gigamacro",
  5798. height: math.unit(5000, "miles")
  5799. },
  5800. {
  5801. name: "Teramacro",
  5802. height: math.unit(250000, "miles")
  5803. },
  5804. ]
  5805. ))
  5806. characterMakers.push(() => makeCharacter(
  5807. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5808. {
  5809. front: {
  5810. height: math.unit(6, "feet"),
  5811. weight: math.unit(200, "lbs"),
  5812. name: "Front",
  5813. image: {
  5814. source: "./media/characters/vulpes/front.svg",
  5815. extra: 573 / 543,
  5816. bottom: 0.033
  5817. }
  5818. },
  5819. side: {
  5820. height: math.unit(6, "feet"),
  5821. weight: math.unit(200, "lbs"),
  5822. name: "Side",
  5823. image: {
  5824. source: "./media/characters/vulpes/side.svg",
  5825. extra: 577 / 549,
  5826. bottom: 11 / 588
  5827. }
  5828. },
  5829. back: {
  5830. height: math.unit(6, "feet"),
  5831. weight: math.unit(200, "lbs"),
  5832. name: "Back",
  5833. image: {
  5834. source: "./media/characters/vulpes/back.svg",
  5835. extra: 573 / 549,
  5836. bottom: 20 / 593
  5837. }
  5838. },
  5839. feet: {
  5840. height: math.unit(1.276, "feet"),
  5841. name: "Feet",
  5842. image: {
  5843. source: "./media/characters/vulpes/feet.svg"
  5844. }
  5845. },
  5846. maw: {
  5847. height: math.unit(1.18, "feet"),
  5848. name: "Maw",
  5849. image: {
  5850. source: "./media/characters/vulpes/maw.svg"
  5851. }
  5852. },
  5853. },
  5854. [
  5855. {
  5856. name: "Micro",
  5857. height: math.unit(2, "inches")
  5858. },
  5859. {
  5860. name: "Normal",
  5861. height: math.unit(6.3, "feet")
  5862. },
  5863. {
  5864. name: "Macro",
  5865. height: math.unit(850, "feet")
  5866. },
  5867. {
  5868. name: "Megamacro",
  5869. height: math.unit(7500, "feet"),
  5870. default: true
  5871. },
  5872. {
  5873. name: "Gigamacro",
  5874. height: math.unit(570000, "miles")
  5875. }
  5876. ]
  5877. ))
  5878. characterMakers.push(() => makeCharacter(
  5879. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5880. {
  5881. front: {
  5882. height: math.unit(6, "feet"),
  5883. weight: math.unit(210, "lbs"),
  5884. name: "Front",
  5885. image: {
  5886. source: "./media/characters/rain-fallen/front.svg"
  5887. }
  5888. },
  5889. side: {
  5890. height: math.unit(6, "feet"),
  5891. weight: math.unit(210, "lbs"),
  5892. name: "Side",
  5893. image: {
  5894. source: "./media/characters/rain-fallen/side.svg"
  5895. }
  5896. },
  5897. back: {
  5898. height: math.unit(6, "feet"),
  5899. weight: math.unit(210, "lbs"),
  5900. name: "Back",
  5901. image: {
  5902. source: "./media/characters/rain-fallen/back.svg"
  5903. }
  5904. },
  5905. feral: {
  5906. height: math.unit(9, "feet"),
  5907. weight: math.unit(700, "lbs"),
  5908. name: "Feral",
  5909. image: {
  5910. source: "./media/characters/rain-fallen/feral.svg"
  5911. }
  5912. },
  5913. },
  5914. [
  5915. {
  5916. name: "Meddling with Mortals",
  5917. height: math.unit(8 + 8/12, "feet")
  5918. },
  5919. {
  5920. name: "Normal",
  5921. height: math.unit(5, "meter")
  5922. },
  5923. {
  5924. name: "Macro",
  5925. height: math.unit(150, "meter"),
  5926. default: true
  5927. },
  5928. {
  5929. name: "Megamacro",
  5930. height: math.unit(278e6, "meter")
  5931. },
  5932. {
  5933. name: "Gigamacro",
  5934. height: math.unit(2e9, "meter")
  5935. },
  5936. {
  5937. name: "Teramacro",
  5938. height: math.unit(8e12, "meter")
  5939. },
  5940. {
  5941. name: "Devourer",
  5942. height: math.unit(14, "zettameters")
  5943. },
  5944. {
  5945. name: "Scarlet King",
  5946. height: math.unit(18, "yottameters")
  5947. },
  5948. {
  5949. name: "Void",
  5950. height: math.unit(1e88, "yottameters")
  5951. }
  5952. ]
  5953. ))
  5954. characterMakers.push(() => makeCharacter(
  5955. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5956. {
  5957. standing: {
  5958. height: math.unit(6, "feet"),
  5959. weight: math.unit(180, "lbs"),
  5960. name: "Standing",
  5961. image: {
  5962. source: "./media/characters/zaakira/standing.svg",
  5963. extra: 1599/1504,
  5964. bottom: 39/1638
  5965. }
  5966. },
  5967. laying: {
  5968. height: math.unit(3.3, "feet"),
  5969. weight: math.unit(180, "lbs"),
  5970. name: "Laying",
  5971. image: {
  5972. source: "./media/characters/zaakira/laying.svg"
  5973. }
  5974. },
  5975. },
  5976. [
  5977. {
  5978. name: "Normal",
  5979. height: math.unit(12, "feet")
  5980. },
  5981. {
  5982. name: "Macro",
  5983. height: math.unit(279, "feet"),
  5984. default: true
  5985. }
  5986. ]
  5987. ))
  5988. characterMakers.push(() => makeCharacter(
  5989. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5990. {
  5991. femSfw: {
  5992. height: math.unit(8, "feet"),
  5993. weight: math.unit(350, "lb"),
  5994. name: "Fem",
  5995. image: {
  5996. source: "./media/characters/sigvald/fem-sfw.svg",
  5997. extra: 182 / 164,
  5998. bottom: 8.7 / 190.5
  5999. }
  6000. },
  6001. femNsfw: {
  6002. height: math.unit(8, "feet"),
  6003. weight: math.unit(350, "lb"),
  6004. name: "Fem (NSFW)",
  6005. image: {
  6006. source: "./media/characters/sigvald/fem-nsfw.svg",
  6007. extra: 182 / 164,
  6008. bottom: 8.7 / 190.5
  6009. }
  6010. },
  6011. maleNsfw: {
  6012. height: math.unit(8, "feet"),
  6013. weight: math.unit(350, "lb"),
  6014. name: "Male (NSFW)",
  6015. image: {
  6016. source: "./media/characters/sigvald/male-nsfw.svg",
  6017. extra: 182 / 164,
  6018. bottom: 8.7 / 190.5
  6019. }
  6020. },
  6021. hermNsfw: {
  6022. height: math.unit(8, "feet"),
  6023. weight: math.unit(350, "lb"),
  6024. name: "Herm (NSFW)",
  6025. image: {
  6026. source: "./media/characters/sigvald/herm-nsfw.svg",
  6027. extra: 182 / 164,
  6028. bottom: 8.7 / 190.5
  6029. }
  6030. },
  6031. dick: {
  6032. height: math.unit(2.36, "feet"),
  6033. name: "Dick",
  6034. image: {
  6035. source: "./media/characters/sigvald/dick.svg"
  6036. }
  6037. },
  6038. eye: {
  6039. height: math.unit(0.31, "feet"),
  6040. name: "Eye",
  6041. image: {
  6042. source: "./media/characters/sigvald/eye.svg"
  6043. }
  6044. },
  6045. mouth: {
  6046. height: math.unit(0.92, "feet"),
  6047. name: "Mouth",
  6048. image: {
  6049. source: "./media/characters/sigvald/mouth.svg"
  6050. }
  6051. },
  6052. paws: {
  6053. height: math.unit(2.2, "feet"),
  6054. name: "Paws",
  6055. image: {
  6056. source: "./media/characters/sigvald/paws.svg"
  6057. }
  6058. }
  6059. },
  6060. [
  6061. {
  6062. name: "Normal",
  6063. height: math.unit(8, "feet")
  6064. },
  6065. {
  6066. name: "Large",
  6067. height: math.unit(12, "feet")
  6068. },
  6069. {
  6070. name: "Larger",
  6071. height: math.unit(20, "feet")
  6072. },
  6073. {
  6074. name: "Macro",
  6075. height: math.unit(150, "feet")
  6076. },
  6077. {
  6078. name: "Macro+",
  6079. height: math.unit(200, "feet"),
  6080. default: true
  6081. },
  6082. ]
  6083. ))
  6084. characterMakers.push(() => makeCharacter(
  6085. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6086. {
  6087. side: {
  6088. height: math.unit(12, "feet"),
  6089. weight: math.unit(2000, "kg"),
  6090. name: "Side",
  6091. image: {
  6092. source: "./media/characters/scott/side.svg",
  6093. extra: 754 / 724,
  6094. bottom: 0.069
  6095. }
  6096. },
  6097. upright: {
  6098. height: math.unit(12, "feet"),
  6099. weight: math.unit(2000, "kg"),
  6100. name: "Upright",
  6101. image: {
  6102. source: "./media/characters/scott/upright.svg",
  6103. extra: 3881 / 3722,
  6104. bottom: 0.05
  6105. }
  6106. },
  6107. },
  6108. [
  6109. {
  6110. name: "Normal",
  6111. height: math.unit(12, "feet"),
  6112. default: true
  6113. },
  6114. ]
  6115. ))
  6116. characterMakers.push(() => makeCharacter(
  6117. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6118. {
  6119. side: {
  6120. height: math.unit(8, "meters"),
  6121. weight: math.unit(84755, "lbs"),
  6122. name: "Side",
  6123. image: {
  6124. source: "./media/characters/tobias/side.svg",
  6125. extra: 1474 / 1096,
  6126. bottom: 38.9 / 1513.1235
  6127. }
  6128. },
  6129. maw: {
  6130. height: math.unit(2.3, "meters"),
  6131. name: "Maw",
  6132. image: {
  6133. source: "./media/characters/tobias/maw.svg"
  6134. }
  6135. },
  6136. burp: {
  6137. height: math.unit(2.85, "meters"),
  6138. name: "Burp",
  6139. image: {
  6140. source: "./media/characters/tobias/burp.svg"
  6141. }
  6142. },
  6143. },
  6144. [
  6145. {
  6146. name: "Normal",
  6147. height: math.unit(8, "meters"),
  6148. default: true
  6149. },
  6150. ]
  6151. ))
  6152. characterMakers.push(() => makeCharacter(
  6153. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6154. {
  6155. front: {
  6156. height: math.unit(5.5, "feet"),
  6157. weight: math.unit(400, "lbs"),
  6158. name: "Front",
  6159. image: {
  6160. source: "./media/characters/kieran/front.svg",
  6161. extra: 2694 / 2364,
  6162. bottom: 217 / 2908
  6163. }
  6164. },
  6165. side: {
  6166. height: math.unit(5.5, "feet"),
  6167. weight: math.unit(400, "lbs"),
  6168. name: "Side",
  6169. image: {
  6170. source: "./media/characters/kieran/side.svg",
  6171. extra: 875 / 777,
  6172. bottom: 84.6 / 959
  6173. }
  6174. },
  6175. },
  6176. [
  6177. {
  6178. name: "Normal",
  6179. height: math.unit(5.5, "feet"),
  6180. default: true
  6181. },
  6182. ]
  6183. ))
  6184. characterMakers.push(() => makeCharacter(
  6185. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6186. {
  6187. side: {
  6188. height: math.unit(2, "meters"),
  6189. weight: math.unit(70, "kg"),
  6190. name: "Side",
  6191. image: {
  6192. source: "./media/characters/sanya/side.svg",
  6193. bottom: 0.02,
  6194. extra: 1.02
  6195. }
  6196. },
  6197. },
  6198. [
  6199. {
  6200. name: "Small",
  6201. height: math.unit(2, "meters")
  6202. },
  6203. {
  6204. name: "Normal",
  6205. height: math.unit(3, "meters")
  6206. },
  6207. {
  6208. name: "Macro",
  6209. height: math.unit(16, "meters"),
  6210. default: true
  6211. },
  6212. ]
  6213. ))
  6214. characterMakers.push(() => makeCharacter(
  6215. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6216. {
  6217. front: {
  6218. height: math.unit(2, "meters"),
  6219. weight: math.unit(120, "kg"),
  6220. name: "Front",
  6221. image: {
  6222. source: "./media/characters/miranda/front.svg",
  6223. extra: 195 / 185,
  6224. bottom: 10.9 / 206.5
  6225. }
  6226. },
  6227. back: {
  6228. height: math.unit(2, "meters"),
  6229. weight: math.unit(120, "kg"),
  6230. name: "Back",
  6231. image: {
  6232. source: "./media/characters/miranda/back.svg",
  6233. extra: 201 / 193,
  6234. bottom: 2.3 / 203.7
  6235. }
  6236. },
  6237. },
  6238. [
  6239. {
  6240. name: "Normal",
  6241. height: math.unit(10, "feet"),
  6242. default: true
  6243. }
  6244. ]
  6245. ))
  6246. characterMakers.push(() => makeCharacter(
  6247. { name: "James", species: ["deer"], tags: ["anthro"] },
  6248. {
  6249. side: {
  6250. height: math.unit(2, "meters"),
  6251. weight: math.unit(100, "kg"),
  6252. name: "Front",
  6253. image: {
  6254. source: "./media/characters/james/front.svg",
  6255. extra: 10 / 8.5
  6256. }
  6257. },
  6258. },
  6259. [
  6260. {
  6261. name: "Normal",
  6262. height: math.unit(8.5, "feet"),
  6263. default: true
  6264. }
  6265. ]
  6266. ))
  6267. characterMakers.push(() => makeCharacter(
  6268. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6269. {
  6270. side: {
  6271. height: math.unit(9.5, "feet"),
  6272. weight: math.unit(2500, "lbs"),
  6273. name: "Side",
  6274. image: {
  6275. source: "./media/characters/heather/side.svg"
  6276. }
  6277. },
  6278. },
  6279. [
  6280. {
  6281. name: "Normal",
  6282. height: math.unit(9.5, "feet"),
  6283. default: true
  6284. }
  6285. ]
  6286. ))
  6287. characterMakers.push(() => makeCharacter(
  6288. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6289. {
  6290. side: {
  6291. height: math.unit(6.5, "feet"),
  6292. weight: math.unit(400, "lbs"),
  6293. name: "Side",
  6294. image: {
  6295. source: "./media/characters/lukas/side.svg",
  6296. extra: 7.25 / 6.5
  6297. }
  6298. },
  6299. },
  6300. [
  6301. {
  6302. name: "Normal",
  6303. height: math.unit(6.5, "feet"),
  6304. default: true
  6305. }
  6306. ]
  6307. ))
  6308. characterMakers.push(() => makeCharacter(
  6309. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6310. {
  6311. side: {
  6312. height: math.unit(5, "feet"),
  6313. weight: math.unit(3000, "lbs"),
  6314. name: "Side",
  6315. image: {
  6316. source: "./media/characters/louise/side.svg"
  6317. }
  6318. },
  6319. },
  6320. [
  6321. {
  6322. name: "Normal",
  6323. height: math.unit(5, "feet"),
  6324. default: true
  6325. }
  6326. ]
  6327. ))
  6328. characterMakers.push(() => makeCharacter(
  6329. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6330. {
  6331. side: {
  6332. height: math.unit(6, "feet"),
  6333. weight: math.unit(150, "lbs"),
  6334. name: "Side",
  6335. image: {
  6336. source: "./media/characters/ramona/side.svg",
  6337. extra: 871/854,
  6338. bottom: 41/912
  6339. }
  6340. },
  6341. },
  6342. [
  6343. {
  6344. name: "Normal",
  6345. height: math.unit(6 + 4/12, "feet")
  6346. },
  6347. {
  6348. name: "Minimacro",
  6349. height: math.unit(5.3, "meters"),
  6350. default: true
  6351. },
  6352. {
  6353. name: "Macro",
  6354. height: math.unit(20, "stories")
  6355. },
  6356. {
  6357. name: "Macro+",
  6358. height: math.unit(50, "stories")
  6359. },
  6360. ]
  6361. ))
  6362. characterMakers.push(() => makeCharacter(
  6363. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6364. {
  6365. standing: {
  6366. height: math.unit(5.75, "feet"),
  6367. weight: math.unit(160, "lbs"),
  6368. name: "Standing",
  6369. image: {
  6370. source: "./media/characters/deerpuff/standing.svg",
  6371. extra: 682 / 624
  6372. }
  6373. },
  6374. sitting: {
  6375. height: math.unit(5.75 / 1.79, "feet"),
  6376. weight: math.unit(160, "lbs"),
  6377. name: "Sitting",
  6378. image: {
  6379. source: "./media/characters/deerpuff/sitting.svg",
  6380. bottom: 44 / 400,
  6381. extra: 1
  6382. }
  6383. },
  6384. taurLaying: {
  6385. height: math.unit(6, "feet"),
  6386. weight: math.unit(400, "lbs"),
  6387. name: "Taur (Laying)",
  6388. image: {
  6389. source: "./media/characters/deerpuff/taur-laying.svg"
  6390. }
  6391. },
  6392. },
  6393. [
  6394. {
  6395. name: "Puffball",
  6396. height: math.unit(6, "inches")
  6397. },
  6398. {
  6399. name: "Normalpuff",
  6400. height: math.unit(5.75, "feet")
  6401. },
  6402. {
  6403. name: "Macropuff",
  6404. height: math.unit(1500, "feet"),
  6405. default: true
  6406. },
  6407. {
  6408. name: "Megapuff",
  6409. height: math.unit(500, "miles")
  6410. },
  6411. {
  6412. name: "Gigapuff",
  6413. height: math.unit(250000, "miles")
  6414. },
  6415. {
  6416. name: "Omegapuff",
  6417. height: math.unit(1000, "lightyears")
  6418. },
  6419. ]
  6420. ))
  6421. characterMakers.push(() => makeCharacter(
  6422. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6423. {
  6424. stomping: {
  6425. height: math.unit(6, "feet"),
  6426. weight: math.unit(170, "lbs"),
  6427. name: "Stomping",
  6428. image: {
  6429. source: "./media/characters/vivian/stomping.svg"
  6430. }
  6431. },
  6432. sitting: {
  6433. height: math.unit(6 / 1.75, "feet"),
  6434. weight: math.unit(170, "lbs"),
  6435. name: "Sitting",
  6436. image: {
  6437. source: "./media/characters/vivian/sitting.svg",
  6438. bottom: 1 / 6.4,
  6439. extra: 1,
  6440. }
  6441. },
  6442. },
  6443. [
  6444. {
  6445. name: "Normal",
  6446. height: math.unit(7, "feet"),
  6447. default: true
  6448. },
  6449. {
  6450. name: "Macro",
  6451. height: math.unit(10, "stories")
  6452. },
  6453. {
  6454. name: "Macro+",
  6455. height: math.unit(30, "stories")
  6456. },
  6457. {
  6458. name: "Megamacro",
  6459. height: math.unit(10, "miles")
  6460. },
  6461. {
  6462. name: "Megamacro+",
  6463. height: math.unit(2750000, "meters")
  6464. },
  6465. ]
  6466. ))
  6467. characterMakers.push(() => makeCharacter(
  6468. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6469. {
  6470. front: {
  6471. height: math.unit(6, "feet"),
  6472. weight: math.unit(160, "lbs"),
  6473. name: "Front",
  6474. image: {
  6475. source: "./media/characters/prince/front.svg",
  6476. extra: 1938/1682,
  6477. bottom: 45/1983
  6478. }
  6479. },
  6480. back: {
  6481. height: math.unit(6, "feet"),
  6482. weight: math.unit(160, "lbs"),
  6483. name: "Back",
  6484. image: {
  6485. source: "./media/characters/prince/back.svg",
  6486. extra: 1955/1726,
  6487. bottom: 6/1961
  6488. }
  6489. },
  6490. },
  6491. [
  6492. {
  6493. name: "Normal",
  6494. height: math.unit(7.75, "feet"),
  6495. default: true
  6496. },
  6497. {
  6498. name: "Not cute",
  6499. height: math.unit(17, "feet")
  6500. },
  6501. {
  6502. name: "I said NOT",
  6503. height: math.unit(91, "feet")
  6504. },
  6505. {
  6506. name: "Please stop",
  6507. height: math.unit(560, "feet")
  6508. },
  6509. {
  6510. name: "What have you done",
  6511. height: math.unit(2200, "feet")
  6512. },
  6513. {
  6514. name: "Deer God",
  6515. height: math.unit(3.6, "miles")
  6516. },
  6517. ]
  6518. ))
  6519. characterMakers.push(() => makeCharacter(
  6520. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6521. {
  6522. standing: {
  6523. height: math.unit(6, "feet"),
  6524. weight: math.unit(300, "lbs"),
  6525. name: "Standing",
  6526. image: {
  6527. source: "./media/characters/psymon/standing.svg",
  6528. extra: 1888 / 1810,
  6529. bottom: 0.05
  6530. }
  6531. },
  6532. slithering: {
  6533. height: math.unit(6, "feet"),
  6534. weight: math.unit(300, "lbs"),
  6535. name: "Slithering",
  6536. image: {
  6537. source: "./media/characters/psymon/slithering.svg",
  6538. extra: 1330 / 1224
  6539. }
  6540. },
  6541. slitheringAlt: {
  6542. height: math.unit(6, "feet"),
  6543. weight: math.unit(300, "lbs"),
  6544. name: "Slithering (Alt)",
  6545. image: {
  6546. source: "./media/characters/psymon/slithering-alt.svg",
  6547. extra: 1330 / 1224
  6548. }
  6549. },
  6550. },
  6551. [
  6552. {
  6553. name: "Normal",
  6554. height: math.unit(11.25, "feet"),
  6555. default: true
  6556. },
  6557. {
  6558. name: "Large",
  6559. height: math.unit(27, "feet")
  6560. },
  6561. {
  6562. name: "Giant",
  6563. height: math.unit(87, "feet")
  6564. },
  6565. {
  6566. name: "Macro",
  6567. height: math.unit(365, "feet")
  6568. },
  6569. {
  6570. name: "Megamacro",
  6571. height: math.unit(3, "miles")
  6572. },
  6573. {
  6574. name: "World Serpent",
  6575. height: math.unit(8000, "miles")
  6576. },
  6577. ]
  6578. ))
  6579. characterMakers.push(() => makeCharacter(
  6580. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6581. {
  6582. front: {
  6583. height: math.unit(6, "feet"),
  6584. weight: math.unit(180, "lbs"),
  6585. name: "Front",
  6586. image: {
  6587. source: "./media/characters/daimos/front.svg",
  6588. extra: 4160 / 3897,
  6589. bottom: 0.021
  6590. }
  6591. }
  6592. },
  6593. [
  6594. {
  6595. name: "Normal",
  6596. height: math.unit(8, "feet"),
  6597. default: true
  6598. },
  6599. {
  6600. name: "Big Dog",
  6601. height: math.unit(22, "feet")
  6602. },
  6603. {
  6604. name: "Macro",
  6605. height: math.unit(127, "feet")
  6606. },
  6607. {
  6608. name: "Megamacro",
  6609. height: math.unit(3600, "feet")
  6610. },
  6611. ]
  6612. ))
  6613. characterMakers.push(() => makeCharacter(
  6614. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6615. {
  6616. side: {
  6617. height: math.unit(6, "feet"),
  6618. weight: math.unit(180, "lbs"),
  6619. name: "Side",
  6620. image: {
  6621. source: "./media/characters/blake/side.svg",
  6622. extra: 1212 / 1120,
  6623. bottom: 0.05
  6624. }
  6625. },
  6626. crouched: {
  6627. height: math.unit(6 * 0.57, "feet"),
  6628. weight: math.unit(180, "lbs"),
  6629. name: "Crouched",
  6630. image: {
  6631. source: "./media/characters/blake/crouched.svg",
  6632. extra: 840 / 587,
  6633. bottom: 0.04
  6634. }
  6635. },
  6636. bent: {
  6637. height: math.unit(6 * 0.75, "feet"),
  6638. weight: math.unit(180, "lbs"),
  6639. name: "Bent",
  6640. image: {
  6641. source: "./media/characters/blake/bent.svg",
  6642. extra: 592 / 544,
  6643. bottom: 0.035
  6644. }
  6645. },
  6646. },
  6647. [
  6648. {
  6649. name: "Normal",
  6650. height: math.unit(8 + 1 / 6, "feet"),
  6651. default: true
  6652. },
  6653. {
  6654. name: "Big Backside",
  6655. height: math.unit(37, "feet")
  6656. },
  6657. {
  6658. name: "Subway Shredder",
  6659. height: math.unit(72, "feet")
  6660. },
  6661. {
  6662. name: "City Carver",
  6663. height: math.unit(1675, "feet")
  6664. },
  6665. {
  6666. name: "Tectonic Tweaker",
  6667. height: math.unit(2300, "miles")
  6668. },
  6669. ]
  6670. ))
  6671. characterMakers.push(() => makeCharacter(
  6672. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6673. {
  6674. front: {
  6675. height: math.unit(6, "feet"),
  6676. weight: math.unit(180, "lbs"),
  6677. name: "Front",
  6678. image: {
  6679. source: "./media/characters/guisetto/front.svg",
  6680. extra: 856 / 817,
  6681. bottom: 0.06
  6682. }
  6683. },
  6684. airborne: {
  6685. height: math.unit(6, "feet"),
  6686. weight: math.unit(180, "lbs"),
  6687. name: "Airborne",
  6688. image: {
  6689. source: "./media/characters/guisetto/airborne.svg",
  6690. extra: 584 / 525
  6691. }
  6692. },
  6693. },
  6694. [
  6695. {
  6696. name: "Normal",
  6697. height: math.unit(10 + 11 / 12, "feet"),
  6698. default: true
  6699. },
  6700. {
  6701. name: "Large",
  6702. height: math.unit(35, "feet")
  6703. },
  6704. {
  6705. name: "Macro",
  6706. height: math.unit(475, "feet")
  6707. },
  6708. ]
  6709. ))
  6710. characterMakers.push(() => makeCharacter(
  6711. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6712. {
  6713. front: {
  6714. height: math.unit(6, "feet"),
  6715. weight: math.unit(180, "lbs"),
  6716. name: "Front",
  6717. image: {
  6718. source: "./media/characters/luxor/front.svg",
  6719. extra: 2940 / 2152
  6720. }
  6721. },
  6722. back: {
  6723. height: math.unit(6, "feet"),
  6724. weight: math.unit(180, "lbs"),
  6725. name: "Back",
  6726. image: {
  6727. source: "./media/characters/luxor/back.svg",
  6728. extra: 1083 / 960
  6729. }
  6730. },
  6731. },
  6732. [
  6733. {
  6734. name: "Normal",
  6735. height: math.unit(5 + 5 / 6, "feet"),
  6736. default: true
  6737. },
  6738. {
  6739. name: "Lamp",
  6740. height: math.unit(50, "feet")
  6741. },
  6742. {
  6743. name: "Lämp",
  6744. height: math.unit(300, "feet")
  6745. },
  6746. {
  6747. name: "The sun is a lamp",
  6748. height: math.unit(250000, "miles")
  6749. },
  6750. ]
  6751. ))
  6752. characterMakers.push(() => makeCharacter(
  6753. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6754. {
  6755. front: {
  6756. height: math.unit(6, "feet"),
  6757. weight: math.unit(50, "lbs"),
  6758. name: "Front",
  6759. image: {
  6760. source: "./media/characters/huoyan/front.svg"
  6761. }
  6762. },
  6763. side: {
  6764. height: math.unit(6, "feet"),
  6765. weight: math.unit(180, "lbs"),
  6766. name: "Side",
  6767. image: {
  6768. source: "./media/characters/huoyan/side.svg"
  6769. }
  6770. },
  6771. },
  6772. [
  6773. {
  6774. name: "Chef",
  6775. height: math.unit(9, "feet")
  6776. },
  6777. {
  6778. name: "Normal",
  6779. height: math.unit(65, "feet"),
  6780. default: true
  6781. },
  6782. {
  6783. name: "Macro",
  6784. height: math.unit(780, "feet")
  6785. },
  6786. {
  6787. name: "Flaming Mountain",
  6788. height: math.unit(4.8, "miles")
  6789. },
  6790. {
  6791. name: "Celestial",
  6792. height: math.unit(765000, "miles")
  6793. },
  6794. ]
  6795. ))
  6796. characterMakers.push(() => makeCharacter(
  6797. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6798. {
  6799. front: {
  6800. height: math.unit(5 + 3 / 4, "feet"),
  6801. weight: math.unit(120, "lbs"),
  6802. name: "Front",
  6803. image: {
  6804. source: "./media/characters/tails/front.svg"
  6805. }
  6806. }
  6807. },
  6808. [
  6809. {
  6810. name: "Normal",
  6811. height: math.unit(5 + 3 / 4, "feet"),
  6812. default: true
  6813. }
  6814. ]
  6815. ))
  6816. characterMakers.push(() => makeCharacter(
  6817. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6818. {
  6819. front: {
  6820. height: math.unit(4, "feet"),
  6821. weight: math.unit(50, "lbs"),
  6822. name: "Front",
  6823. image: {
  6824. source: "./media/characters/rainy/front.svg"
  6825. }
  6826. }
  6827. },
  6828. [
  6829. {
  6830. name: "Macro",
  6831. height: math.unit(800, "feet"),
  6832. default: true
  6833. }
  6834. ]
  6835. ))
  6836. characterMakers.push(() => makeCharacter(
  6837. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6838. {
  6839. front: {
  6840. height: math.unit(6, "feet"),
  6841. weight: math.unit(150, "lbs"),
  6842. name: "Front",
  6843. image: {
  6844. source: "./media/characters/rainier/front.svg"
  6845. }
  6846. }
  6847. },
  6848. [
  6849. {
  6850. name: "Micro",
  6851. height: math.unit(2, "mm"),
  6852. default: true
  6853. }
  6854. ]
  6855. ))
  6856. characterMakers.push(() => makeCharacter(
  6857. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6858. {
  6859. front: {
  6860. height: math.unit(8 + 4/12, "feet"),
  6861. weight: math.unit(450, "kilograms"),
  6862. volume: math.unit(5, "cups"),
  6863. name: "Front",
  6864. image: {
  6865. source: "./media/characters/andy-renard/front.svg",
  6866. extra: 1839/1726,
  6867. bottom: 134/1973
  6868. }
  6869. },
  6870. back: {
  6871. height: math.unit(8 + 4/12, "feet"),
  6872. weight: math.unit(450, "kilograms"),
  6873. volume: math.unit(5, "cups"),
  6874. name: "Back",
  6875. image: {
  6876. source: "./media/characters/andy-renard/back.svg",
  6877. extra: 1838/1710,
  6878. bottom: 105/1943
  6879. }
  6880. },
  6881. },
  6882. [
  6883. {
  6884. name: "Tall",
  6885. height: math.unit(8 + 4/12, "feet")
  6886. },
  6887. {
  6888. name: "Mini Macro",
  6889. height: math.unit(15, "feet"),
  6890. default: true
  6891. },
  6892. {
  6893. name: "Macro",
  6894. height: math.unit(100, "feet")
  6895. },
  6896. {
  6897. name: "Mega Macro",
  6898. height: math.unit(1000, "feet")
  6899. },
  6900. {
  6901. name: "Giga Macro",
  6902. height: math.unit(10, "miles")
  6903. },
  6904. {
  6905. name: "God Macro",
  6906. height: math.unit(1, "multiverse")
  6907. },
  6908. ]
  6909. ))
  6910. characterMakers.push(() => makeCharacter(
  6911. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6912. {
  6913. front: {
  6914. height: math.unit(6, "feet"),
  6915. weight: math.unit(210, "lbs"),
  6916. name: "Front",
  6917. image: {
  6918. source: "./media/characters/cimmaron/front-sfw.svg",
  6919. extra: 701 / 676,
  6920. bottom: 0.046
  6921. }
  6922. },
  6923. back: {
  6924. height: math.unit(6, "feet"),
  6925. weight: math.unit(210, "lbs"),
  6926. name: "Back",
  6927. image: {
  6928. source: "./media/characters/cimmaron/back-sfw.svg",
  6929. extra: 701 / 676,
  6930. bottom: 0.046
  6931. }
  6932. },
  6933. frontNsfw: {
  6934. height: math.unit(6, "feet"),
  6935. weight: math.unit(210, "lbs"),
  6936. name: "Front (NSFW)",
  6937. image: {
  6938. source: "./media/characters/cimmaron/front-nsfw.svg",
  6939. extra: 701 / 676,
  6940. bottom: 0.046
  6941. }
  6942. },
  6943. backNsfw: {
  6944. height: math.unit(6, "feet"),
  6945. weight: math.unit(210, "lbs"),
  6946. name: "Back (NSFW)",
  6947. image: {
  6948. source: "./media/characters/cimmaron/back-nsfw.svg",
  6949. extra: 701 / 676,
  6950. bottom: 0.046
  6951. }
  6952. },
  6953. dick: {
  6954. height: math.unit(1.714, "feet"),
  6955. name: "Dick",
  6956. image: {
  6957. source: "./media/characters/cimmaron/dick.svg"
  6958. }
  6959. },
  6960. },
  6961. [
  6962. {
  6963. name: "Normal",
  6964. height: math.unit(6, "feet"),
  6965. default: true
  6966. },
  6967. {
  6968. name: "Macro Mayor",
  6969. height: math.unit(350, "meters")
  6970. },
  6971. ]
  6972. ))
  6973. characterMakers.push(() => makeCharacter(
  6974. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6975. {
  6976. front: {
  6977. height: math.unit(6, "feet"),
  6978. weight: math.unit(200, "lbs"),
  6979. name: "Front",
  6980. image: {
  6981. source: "./media/characters/akari/front.svg",
  6982. extra: 962 / 901,
  6983. bottom: 0.04
  6984. }
  6985. }
  6986. },
  6987. [
  6988. {
  6989. name: "Micro",
  6990. height: math.unit(5, "inches"),
  6991. default: true
  6992. },
  6993. {
  6994. name: "Normal",
  6995. height: math.unit(7, "feet")
  6996. },
  6997. ]
  6998. ))
  6999. characterMakers.push(() => makeCharacter(
  7000. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7001. {
  7002. front: {
  7003. height: math.unit(6, "feet"),
  7004. weight: math.unit(140, "lbs"),
  7005. name: "Front",
  7006. image: {
  7007. source: "./media/characters/cynosura/front.svg",
  7008. extra: 437/410,
  7009. bottom: 9/446
  7010. }
  7011. },
  7012. back: {
  7013. height: math.unit(6, "feet"),
  7014. weight: math.unit(140, "lbs"),
  7015. name: "Back",
  7016. image: {
  7017. source: "./media/characters/cynosura/back.svg",
  7018. extra: 1304/1160,
  7019. bottom: 71/1375
  7020. }
  7021. },
  7022. },
  7023. [
  7024. {
  7025. name: "Micro",
  7026. height: math.unit(4, "inches")
  7027. },
  7028. {
  7029. name: "Normal",
  7030. height: math.unit(5.75, "feet"),
  7031. default: true
  7032. },
  7033. {
  7034. name: "Tall",
  7035. height: math.unit(10, "feet")
  7036. },
  7037. {
  7038. name: "Big",
  7039. height: math.unit(20, "feet")
  7040. },
  7041. {
  7042. name: "Macro",
  7043. height: math.unit(50, "feet")
  7044. },
  7045. ]
  7046. ))
  7047. characterMakers.push(() => makeCharacter(
  7048. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7049. {
  7050. front: {
  7051. height: math.unit(13 + 2/12, "feet"),
  7052. weight: math.unit(800, "kg"),
  7053. name: "Front",
  7054. image: {
  7055. source: "./media/characters/gin/front.svg",
  7056. extra: 1312/1191,
  7057. bottom: 45/1357
  7058. }
  7059. },
  7060. mouth: {
  7061. height: math.unit(2.39 * 1.8, "feet"),
  7062. name: "Mouth",
  7063. image: {
  7064. source: "./media/characters/gin/mouth.svg"
  7065. }
  7066. },
  7067. hand: {
  7068. height: math.unit(1.57 * 2.19, "feet"),
  7069. name: "Hand",
  7070. image: {
  7071. source: "./media/characters/gin/hand.svg"
  7072. }
  7073. },
  7074. foot: {
  7075. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7076. name: "Foot",
  7077. image: {
  7078. source: "./media/characters/gin/foot.svg"
  7079. }
  7080. },
  7081. sole: {
  7082. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7083. name: "Sole",
  7084. image: {
  7085. source: "./media/characters/gin/sole.svg"
  7086. }
  7087. },
  7088. },
  7089. [
  7090. {
  7091. name: "Very Small",
  7092. height: math.unit(13 + 2 / 12, "feet")
  7093. },
  7094. {
  7095. name: "Micro",
  7096. height: math.unit(600, "miles")
  7097. },
  7098. {
  7099. name: "Regular",
  7100. height: math.unit(20, "earths"),
  7101. default: true
  7102. },
  7103. {
  7104. name: "Macro",
  7105. height: math.unit(2.2, "solarradii")
  7106. },
  7107. {
  7108. name: "Teramacro",
  7109. height: math.unit(1.2, "galaxies")
  7110. },
  7111. {
  7112. name: "Omegamacro",
  7113. height: math.unit(200, "universes")
  7114. },
  7115. ]
  7116. ))
  7117. characterMakers.push(() => makeCharacter(
  7118. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7119. {
  7120. front: {
  7121. height: math.unit(6 + 1 / 6, "feet"),
  7122. weight: math.unit(178, "lbs"),
  7123. name: "Front",
  7124. image: {
  7125. source: "./media/characters/guy/front.svg"
  7126. }
  7127. }
  7128. },
  7129. [
  7130. {
  7131. name: "Normal",
  7132. height: math.unit(6 + 1 / 6, "feet"),
  7133. default: true
  7134. },
  7135. {
  7136. name: "Large",
  7137. height: math.unit(25 + 7 / 12, "feet")
  7138. },
  7139. {
  7140. name: "Macro",
  7141. height: math.unit(60 + 9 / 12, "feet")
  7142. },
  7143. {
  7144. name: "Macro+",
  7145. height: math.unit(246, "feet")
  7146. },
  7147. {
  7148. name: "Macro++",
  7149. height: math.unit(878, "feet")
  7150. }
  7151. ]
  7152. ))
  7153. characterMakers.push(() => makeCharacter(
  7154. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7155. {
  7156. front: {
  7157. height: math.unit(9, "feet"),
  7158. weight: math.unit(800, "lbs"),
  7159. name: "Front",
  7160. image: {
  7161. source: "./media/characters/tiberius/front.svg",
  7162. extra: 2295 / 2071
  7163. }
  7164. },
  7165. back: {
  7166. height: math.unit(9, "feet"),
  7167. weight: math.unit(800, "lbs"),
  7168. name: "Back",
  7169. image: {
  7170. source: "./media/characters/tiberius/back.svg",
  7171. extra: 2373 / 2160
  7172. }
  7173. },
  7174. },
  7175. [
  7176. {
  7177. name: "Normal",
  7178. height: math.unit(9, "feet"),
  7179. default: true
  7180. }
  7181. ]
  7182. ))
  7183. characterMakers.push(() => makeCharacter(
  7184. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7185. {
  7186. front: {
  7187. height: math.unit(6, "feet"),
  7188. weight: math.unit(600, "lbs"),
  7189. name: "Front",
  7190. image: {
  7191. source: "./media/characters/surgo/front.svg",
  7192. extra: 3591 / 2227
  7193. }
  7194. },
  7195. back: {
  7196. height: math.unit(6, "feet"),
  7197. weight: math.unit(600, "lbs"),
  7198. name: "Back",
  7199. image: {
  7200. source: "./media/characters/surgo/back.svg",
  7201. extra: 3557 / 2228
  7202. }
  7203. },
  7204. laying: {
  7205. height: math.unit(6 * 0.85, "feet"),
  7206. weight: math.unit(600, "lbs"),
  7207. name: "Laying",
  7208. image: {
  7209. source: "./media/characters/surgo/laying.svg"
  7210. }
  7211. },
  7212. },
  7213. [
  7214. {
  7215. name: "Normal",
  7216. height: math.unit(6, "feet"),
  7217. default: true
  7218. }
  7219. ]
  7220. ))
  7221. characterMakers.push(() => makeCharacter(
  7222. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7223. {
  7224. side: {
  7225. height: math.unit(6, "feet"),
  7226. weight: math.unit(150, "lbs"),
  7227. name: "Side",
  7228. image: {
  7229. source: "./media/characters/cibus/side.svg",
  7230. extra: 800 / 400
  7231. }
  7232. },
  7233. },
  7234. [
  7235. {
  7236. name: "Normal",
  7237. height: math.unit(6, "feet"),
  7238. default: true
  7239. }
  7240. ]
  7241. ))
  7242. characterMakers.push(() => makeCharacter(
  7243. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7244. {
  7245. front: {
  7246. height: math.unit(6, "feet"),
  7247. weight: math.unit(240, "lbs"),
  7248. name: "Front",
  7249. image: {
  7250. source: "./media/characters/nibbles/front.svg"
  7251. }
  7252. },
  7253. side: {
  7254. height: math.unit(6, "feet"),
  7255. weight: math.unit(240, "lbs"),
  7256. name: "Side",
  7257. image: {
  7258. source: "./media/characters/nibbles/side.svg"
  7259. }
  7260. },
  7261. },
  7262. [
  7263. {
  7264. name: "Normal",
  7265. height: math.unit(9, "feet"),
  7266. default: true
  7267. }
  7268. ]
  7269. ))
  7270. characterMakers.push(() => makeCharacter(
  7271. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7272. {
  7273. side: {
  7274. height: math.unit(5 + 1 / 6, "feet"),
  7275. weight: math.unit(130, "lbs"),
  7276. name: "Side",
  7277. image: {
  7278. source: "./media/characters/rikky/side.svg",
  7279. extra: 851 / 801
  7280. }
  7281. },
  7282. },
  7283. [
  7284. {
  7285. name: "Normal",
  7286. height: math.unit(5 + 1 / 6, "feet")
  7287. },
  7288. {
  7289. name: "Macro",
  7290. height: math.unit(152, "feet"),
  7291. default: true
  7292. },
  7293. {
  7294. name: "Megamacro",
  7295. height: math.unit(7, "miles")
  7296. }
  7297. ]
  7298. ))
  7299. characterMakers.push(() => makeCharacter(
  7300. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7301. {
  7302. side: {
  7303. height: math.unit(370, "cm"),
  7304. weight: math.unit(350, "lbs"),
  7305. name: "Side",
  7306. image: {
  7307. source: "./media/characters/malfressa/side.svg"
  7308. }
  7309. },
  7310. walking: {
  7311. height: math.unit(370, "cm"),
  7312. weight: math.unit(350, "lbs"),
  7313. name: "Walking",
  7314. image: {
  7315. source: "./media/characters/malfressa/walking.svg"
  7316. }
  7317. },
  7318. feral: {
  7319. height: math.unit(2500, "cm"),
  7320. weight: math.unit(100000, "lbs"),
  7321. name: "Feral",
  7322. image: {
  7323. source: "./media/characters/malfressa/feral.svg",
  7324. extra: 2108 / 837,
  7325. bottom: 0.02
  7326. }
  7327. },
  7328. },
  7329. [
  7330. {
  7331. name: "Normal",
  7332. height: math.unit(370, "cm")
  7333. },
  7334. {
  7335. name: "Macro",
  7336. height: math.unit(300, "meters"),
  7337. default: true
  7338. }
  7339. ]
  7340. ))
  7341. characterMakers.push(() => makeCharacter(
  7342. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7343. {
  7344. front: {
  7345. height: math.unit(6, "feet"),
  7346. weight: math.unit(60, "kg"),
  7347. name: "Front",
  7348. image: {
  7349. source: "./media/characters/jaro/front.svg",
  7350. extra: 845/817,
  7351. bottom: 45/890
  7352. }
  7353. },
  7354. back: {
  7355. height: math.unit(6, "feet"),
  7356. weight: math.unit(60, "kg"),
  7357. name: "Back",
  7358. image: {
  7359. source: "./media/characters/jaro/back.svg",
  7360. extra: 847/817,
  7361. bottom: 34/881
  7362. }
  7363. },
  7364. },
  7365. [
  7366. {
  7367. name: "Micro",
  7368. height: math.unit(7, "inches")
  7369. },
  7370. {
  7371. name: "Normal",
  7372. height: math.unit(5.5, "feet"),
  7373. default: true
  7374. },
  7375. {
  7376. name: "Minimacro",
  7377. height: math.unit(20, "feet")
  7378. },
  7379. {
  7380. name: "Macro",
  7381. height: math.unit(200, "meters")
  7382. }
  7383. ]
  7384. ))
  7385. characterMakers.push(() => makeCharacter(
  7386. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7387. {
  7388. front: {
  7389. height: math.unit(6, "feet"),
  7390. weight: math.unit(195, "lb"),
  7391. name: "Front",
  7392. image: {
  7393. source: "./media/characters/rogue/front.svg"
  7394. }
  7395. },
  7396. },
  7397. [
  7398. {
  7399. name: "Macro",
  7400. height: math.unit(90, "feet"),
  7401. default: true
  7402. },
  7403. ]
  7404. ))
  7405. characterMakers.push(() => makeCharacter(
  7406. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7407. {
  7408. standing: {
  7409. height: math.unit(5 + 8 / 12, "feet"),
  7410. weight: math.unit(140, "lb"),
  7411. name: "Standing",
  7412. image: {
  7413. source: "./media/characters/piper/standing.svg",
  7414. extra: 1440/1284,
  7415. bottom: 66/1506
  7416. }
  7417. },
  7418. running: {
  7419. height: math.unit(5 + 8 / 12, "feet"),
  7420. weight: math.unit(140, "lb"),
  7421. name: "Running",
  7422. image: {
  7423. source: "./media/characters/piper/running.svg",
  7424. extra: 3948/3655,
  7425. bottom: 0/3948
  7426. }
  7427. },
  7428. sole: {
  7429. height: math.unit(0.81, "feet"),
  7430. weight: math.unit(2, "kg"),
  7431. name: "Sole",
  7432. image: {
  7433. source: "./media/characters/piper/sole.svg"
  7434. }
  7435. },
  7436. nipple: {
  7437. height: math.unit(0.25, "feet"),
  7438. weight: math.unit(1.5, "lb"),
  7439. name: "Nipple",
  7440. image: {
  7441. source: "./media/characters/piper/nipple.svg"
  7442. }
  7443. },
  7444. head: {
  7445. height: math.unit(1.1, "feet"),
  7446. name: "Head",
  7447. image: {
  7448. source: "./media/characters/piper/head.svg"
  7449. }
  7450. },
  7451. },
  7452. [
  7453. {
  7454. name: "Micro",
  7455. height: math.unit(2, "inches")
  7456. },
  7457. {
  7458. name: "Normal",
  7459. height: math.unit(5 + 8 / 12, "feet")
  7460. },
  7461. {
  7462. name: "Macro",
  7463. height: math.unit(250, "feet"),
  7464. default: true
  7465. },
  7466. {
  7467. name: "Megamacro",
  7468. height: math.unit(7, "miles")
  7469. },
  7470. ]
  7471. ))
  7472. characterMakers.push(() => makeCharacter(
  7473. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7474. {
  7475. front: {
  7476. height: math.unit(6, "feet"),
  7477. weight: math.unit(220, "lb"),
  7478. name: "Front",
  7479. image: {
  7480. source: "./media/characters/gemini/front.svg"
  7481. }
  7482. },
  7483. back: {
  7484. height: math.unit(6, "feet"),
  7485. weight: math.unit(220, "lb"),
  7486. name: "Back",
  7487. image: {
  7488. source: "./media/characters/gemini/back.svg"
  7489. }
  7490. },
  7491. kneeling: {
  7492. height: math.unit(6 / 1.5, "feet"),
  7493. weight: math.unit(220, "lb"),
  7494. name: "Kneeling",
  7495. image: {
  7496. source: "./media/characters/gemini/kneeling.svg",
  7497. bottom: 0.02
  7498. }
  7499. },
  7500. },
  7501. [
  7502. {
  7503. name: "Macro",
  7504. height: math.unit(300, "meters"),
  7505. default: true
  7506. },
  7507. {
  7508. name: "Megamacro",
  7509. height: math.unit(6900, "meters")
  7510. },
  7511. ]
  7512. ))
  7513. characterMakers.push(() => makeCharacter(
  7514. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7515. {
  7516. anthro: {
  7517. height: math.unit(2.35, "meters"),
  7518. weight: math.unit(73, "kg"),
  7519. name: "Anthro",
  7520. image: {
  7521. source: "./media/characters/alicia/anthro.svg",
  7522. extra: 2571 / 2385,
  7523. bottom: 75 / 2648
  7524. }
  7525. },
  7526. paw: {
  7527. height: math.unit(1.32, "feet"),
  7528. name: "Paw",
  7529. image: {
  7530. source: "./media/characters/alicia/paw.svg"
  7531. }
  7532. },
  7533. feral: {
  7534. height: math.unit(1.69, "meters"),
  7535. weight: math.unit(73, "kg"),
  7536. name: "Feral",
  7537. image: {
  7538. source: "./media/characters/alicia/feral.svg",
  7539. extra: 2123 / 1715,
  7540. bottom: 222 / 2349
  7541. }
  7542. },
  7543. },
  7544. [
  7545. {
  7546. name: "Normal",
  7547. height: math.unit(2.35, "meters")
  7548. },
  7549. {
  7550. name: "Macro",
  7551. height: math.unit(60, "meters"),
  7552. default: true
  7553. },
  7554. {
  7555. name: "Megamacro",
  7556. height: math.unit(10000, "kilometers")
  7557. },
  7558. ]
  7559. ))
  7560. characterMakers.push(() => makeCharacter(
  7561. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7562. {
  7563. front: {
  7564. height: math.unit(7, "feet"),
  7565. weight: math.unit(250, "lbs"),
  7566. name: "Front",
  7567. image: {
  7568. source: "./media/characters/archy/front.svg"
  7569. }
  7570. }
  7571. },
  7572. [
  7573. {
  7574. name: "Micro",
  7575. height: math.unit(1, "inch")
  7576. },
  7577. {
  7578. name: "Shorty",
  7579. height: math.unit(5, "feet")
  7580. },
  7581. {
  7582. name: "Normal",
  7583. height: math.unit(7, "feet")
  7584. },
  7585. {
  7586. name: "Macro",
  7587. height: math.unit(600, "meters"),
  7588. default: true
  7589. },
  7590. {
  7591. name: "Megamacro",
  7592. height: math.unit(1, "mile")
  7593. },
  7594. ]
  7595. ))
  7596. characterMakers.push(() => makeCharacter(
  7597. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7598. {
  7599. front: {
  7600. height: math.unit(1.65, "meters"),
  7601. weight: math.unit(74, "kg"),
  7602. name: "Front",
  7603. image: {
  7604. source: "./media/characters/berri/front.svg",
  7605. extra: 857 / 837,
  7606. bottom: 18 / 877
  7607. }
  7608. },
  7609. bum: {
  7610. height: math.unit(1.46, "feet"),
  7611. name: "Bum",
  7612. image: {
  7613. source: "./media/characters/berri/bum.svg"
  7614. }
  7615. },
  7616. mouth: {
  7617. height: math.unit(0.44, "feet"),
  7618. name: "Mouth",
  7619. image: {
  7620. source: "./media/characters/berri/mouth.svg"
  7621. }
  7622. },
  7623. paw: {
  7624. height: math.unit(0.826, "feet"),
  7625. name: "Paw",
  7626. image: {
  7627. source: "./media/characters/berri/paw.svg"
  7628. }
  7629. },
  7630. },
  7631. [
  7632. {
  7633. name: "Normal",
  7634. height: math.unit(1.65, "meters")
  7635. },
  7636. {
  7637. name: "Macro",
  7638. height: math.unit(60, "m"),
  7639. default: true
  7640. },
  7641. {
  7642. name: "Megamacro",
  7643. height: math.unit(9.213, "km")
  7644. },
  7645. {
  7646. name: "Planet Eater",
  7647. height: math.unit(489, "megameters")
  7648. },
  7649. {
  7650. name: "Teramacro",
  7651. height: math.unit(2471635000000, "meters")
  7652. },
  7653. {
  7654. name: "Examacro",
  7655. height: math.unit(8.0624e+26, "meters")
  7656. }
  7657. ]
  7658. ))
  7659. characterMakers.push(() => makeCharacter(
  7660. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7661. {
  7662. front: {
  7663. height: math.unit(1.72, "meters"),
  7664. weight: math.unit(68, "kg"),
  7665. name: "Front",
  7666. image: {
  7667. source: "./media/characters/lexi/front.svg"
  7668. }
  7669. }
  7670. },
  7671. [
  7672. {
  7673. name: "Very Smol",
  7674. height: math.unit(10, "mm")
  7675. },
  7676. {
  7677. name: "Micro",
  7678. height: math.unit(6.8, "cm"),
  7679. default: true
  7680. },
  7681. {
  7682. name: "Normal",
  7683. height: math.unit(1.72, "m")
  7684. }
  7685. ]
  7686. ))
  7687. characterMakers.push(() => makeCharacter(
  7688. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7689. {
  7690. front: {
  7691. height: math.unit(1.69, "meters"),
  7692. weight: math.unit(68, "kg"),
  7693. name: "Front",
  7694. image: {
  7695. source: "./media/characters/martin/front.svg",
  7696. extra: 596 / 581
  7697. }
  7698. }
  7699. },
  7700. [
  7701. {
  7702. name: "Micro",
  7703. height: math.unit(6.85, "cm"),
  7704. default: true
  7705. },
  7706. {
  7707. name: "Normal",
  7708. height: math.unit(1.69, "m")
  7709. }
  7710. ]
  7711. ))
  7712. characterMakers.push(() => makeCharacter(
  7713. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7714. {
  7715. front: {
  7716. height: math.unit(1.69, "meters"),
  7717. weight: math.unit(68, "kg"),
  7718. name: "Front",
  7719. image: {
  7720. source: "./media/characters/juno/front.svg"
  7721. }
  7722. }
  7723. },
  7724. [
  7725. {
  7726. name: "Micro",
  7727. height: math.unit(7, "cm")
  7728. },
  7729. {
  7730. name: "Normal",
  7731. height: math.unit(1.89, "m")
  7732. },
  7733. {
  7734. name: "Macro",
  7735. height: math.unit(353, "meters"),
  7736. default: true
  7737. }
  7738. ]
  7739. ))
  7740. characterMakers.push(() => makeCharacter(
  7741. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7742. {
  7743. front: {
  7744. height: math.unit(1.93, "meters"),
  7745. weight: math.unit(83, "kg"),
  7746. name: "Front",
  7747. image: {
  7748. source: "./media/characters/samantha/front.svg"
  7749. }
  7750. },
  7751. frontClothed: {
  7752. height: math.unit(1.93, "meters"),
  7753. weight: math.unit(83, "kg"),
  7754. name: "Front (Clothed)",
  7755. image: {
  7756. source: "./media/characters/samantha/front-clothed.svg"
  7757. }
  7758. },
  7759. back: {
  7760. height: math.unit(1.93, "meters"),
  7761. weight: math.unit(83, "kg"),
  7762. name: "Back",
  7763. image: {
  7764. source: "./media/characters/samantha/back.svg"
  7765. }
  7766. },
  7767. },
  7768. [
  7769. {
  7770. name: "Normal",
  7771. height: math.unit(1.93, "m")
  7772. },
  7773. {
  7774. name: "Macro",
  7775. height: math.unit(74, "meters"),
  7776. default: true
  7777. },
  7778. {
  7779. name: "Macro+",
  7780. height: math.unit(223, "meters"),
  7781. },
  7782. {
  7783. name: "Megamacro",
  7784. height: math.unit(8381, "meters"),
  7785. },
  7786. {
  7787. name: "Megamacro+",
  7788. height: math.unit(12000, "kilometers")
  7789. },
  7790. ]
  7791. ))
  7792. characterMakers.push(() => makeCharacter(
  7793. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7794. {
  7795. front: {
  7796. height: math.unit(1.92, "meters"),
  7797. weight: math.unit(80, "kg"),
  7798. name: "Front",
  7799. image: {
  7800. source: "./media/characters/dr-clay/front.svg"
  7801. }
  7802. },
  7803. frontClothed: {
  7804. height: math.unit(1.92, "meters"),
  7805. weight: math.unit(80, "kg"),
  7806. name: "Front (Clothed)",
  7807. image: {
  7808. source: "./media/characters/dr-clay/front-clothed.svg"
  7809. }
  7810. }
  7811. },
  7812. [
  7813. {
  7814. name: "Normal",
  7815. height: math.unit(1.92, "m")
  7816. },
  7817. {
  7818. name: "Macro",
  7819. height: math.unit(214, "meters"),
  7820. default: true
  7821. },
  7822. {
  7823. name: "Macro+",
  7824. height: math.unit(12.237, "meters"),
  7825. },
  7826. {
  7827. name: "Megamacro",
  7828. height: math.unit(557, "megameters"),
  7829. },
  7830. {
  7831. name: "Unimaginable",
  7832. height: math.unit(120e9, "lightyears")
  7833. },
  7834. ]
  7835. ))
  7836. characterMakers.push(() => makeCharacter(
  7837. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7838. {
  7839. front: {
  7840. height: math.unit(2, "meters"),
  7841. weight: math.unit(80, "kg"),
  7842. name: "Front",
  7843. image: {
  7844. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7845. }
  7846. }
  7847. },
  7848. [
  7849. {
  7850. name: "Teramacro",
  7851. height: math.unit(500000, "lightyears"),
  7852. default: true
  7853. },
  7854. ]
  7855. ))
  7856. characterMakers.push(() => makeCharacter(
  7857. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7858. {
  7859. crux: {
  7860. height: math.unit(2, "meters"),
  7861. weight: math.unit(150, "kg"),
  7862. name: "Crux",
  7863. image: {
  7864. source: "./media/characters/vemus/crux.svg",
  7865. extra: 1074/936,
  7866. bottom: 23/1097
  7867. }
  7868. },
  7869. skunkTanuki: {
  7870. height: math.unit(2, "meters"),
  7871. weight: math.unit(150, "kg"),
  7872. name: "Skunk-Tanuki",
  7873. image: {
  7874. source: "./media/characters/vemus/skunk-tanuki.svg",
  7875. extra: 926/893,
  7876. bottom: 20/946
  7877. }
  7878. },
  7879. },
  7880. [
  7881. {
  7882. name: "Normal",
  7883. height: math.unit(4, "meters"),
  7884. default: true
  7885. },
  7886. {
  7887. name: "Big",
  7888. height: math.unit(8, "meters")
  7889. },
  7890. {
  7891. name: "Macro",
  7892. height: math.unit(100, "meters")
  7893. },
  7894. {
  7895. name: "Macro+",
  7896. height: math.unit(1500, "meters")
  7897. },
  7898. {
  7899. name: "Stellar",
  7900. height: math.unit(14e8, "meters")
  7901. },
  7902. ]
  7903. ))
  7904. characterMakers.push(() => makeCharacter(
  7905. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7906. {
  7907. front: {
  7908. height: math.unit(2, "meters"),
  7909. weight: math.unit(70, "kg"),
  7910. name: "Front",
  7911. image: {
  7912. source: "./media/characters/beherit/front.svg",
  7913. extra: 1234/1109,
  7914. bottom: 55/1289
  7915. }
  7916. }
  7917. },
  7918. [
  7919. {
  7920. name: "Normal",
  7921. height: math.unit(6, "feet")
  7922. },
  7923. {
  7924. name: "Lorg",
  7925. height: math.unit(25, "feet"),
  7926. default: true
  7927. },
  7928. {
  7929. name: "Lorger",
  7930. height: math.unit(75, "feet")
  7931. },
  7932. {
  7933. name: "Macro",
  7934. height: math.unit(200, "meters")
  7935. },
  7936. ]
  7937. ))
  7938. characterMakers.push(() => makeCharacter(
  7939. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7940. {
  7941. front: {
  7942. height: math.unit(2, "meters"),
  7943. weight: math.unit(150, "kg"),
  7944. name: "Front",
  7945. image: {
  7946. source: "./media/characters/everett/front.svg",
  7947. extra: 1017/866,
  7948. bottom: 86/1103
  7949. }
  7950. },
  7951. paw: {
  7952. height: math.unit(2 / 3.6, "meters"),
  7953. name: "Paw",
  7954. image: {
  7955. source: "./media/characters/everett/paw.svg"
  7956. }
  7957. },
  7958. },
  7959. [
  7960. {
  7961. name: "Normal",
  7962. height: math.unit(15, "feet"),
  7963. default: true
  7964. },
  7965. {
  7966. name: "Lorg",
  7967. height: math.unit(70, "feet"),
  7968. default: true
  7969. },
  7970. {
  7971. name: "Lorger",
  7972. height: math.unit(250, "feet")
  7973. },
  7974. {
  7975. name: "Macro",
  7976. height: math.unit(500, "meters")
  7977. },
  7978. ]
  7979. ))
  7980. characterMakers.push(() => makeCharacter(
  7981. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7982. {
  7983. front: {
  7984. height: math.unit(2, "meters"),
  7985. weight: math.unit(86, "kg"),
  7986. name: "Front",
  7987. image: {
  7988. source: "./media/characters/rose/front.svg",
  7989. extra: 1785/1636,
  7990. bottom: 30/1815
  7991. },
  7992. form: "liom",
  7993. default: true
  7994. },
  7995. frontSporty: {
  7996. height: math.unit(2, "meters"),
  7997. weight: math.unit(86, "kg"),
  7998. name: "Front (Sporty)",
  7999. image: {
  8000. source: "./media/characters/rose/front-sporty.svg",
  8001. extra: 350/335,
  8002. bottom: 10/360
  8003. },
  8004. form: "liom"
  8005. },
  8006. frontAlt: {
  8007. height: math.unit(1.6, "meters"),
  8008. weight: math.unit(86, "kg"),
  8009. name: "Front (Alt)",
  8010. image: {
  8011. source: "./media/characters/rose/front-alt.svg",
  8012. extra: 299/283,
  8013. bottom: 3/302
  8014. },
  8015. form: "liom"
  8016. },
  8017. plush: {
  8018. height: math.unit(2, "meters"),
  8019. weight: math.unit(86/3, "kg"),
  8020. name: "Plush",
  8021. image: {
  8022. source: "./media/characters/rose/plush.svg",
  8023. extra: 361/337,
  8024. bottom: 11/372
  8025. },
  8026. form: "plush",
  8027. default: true
  8028. },
  8029. faeStanding: {
  8030. height: math.unit(10, "cm"),
  8031. weight: math.unit(10, "grams"),
  8032. name: "Standing",
  8033. image: {
  8034. source: "./media/characters/rose/fae-standing.svg",
  8035. extra: 1189/1060,
  8036. bottom: 27/1216
  8037. },
  8038. form: "fae",
  8039. default: true
  8040. },
  8041. faeSitting: {
  8042. height: math.unit(5, "cm"),
  8043. weight: math.unit(10, "grams"),
  8044. name: "Sitting",
  8045. image: {
  8046. source: "./media/characters/rose/fae-sitting.svg",
  8047. extra: 737/577,
  8048. bottom: 356/1093
  8049. },
  8050. form: "fae"
  8051. },
  8052. faePaw: {
  8053. height: math.unit(1.35, "cm"),
  8054. name: "Paw",
  8055. image: {
  8056. source: "./media/characters/rose/fae-paw.svg"
  8057. },
  8058. form: "fae"
  8059. },
  8060. },
  8061. [
  8062. {
  8063. name: "True Micro",
  8064. height: math.unit(9, "cm"),
  8065. form: "liom"
  8066. },
  8067. {
  8068. name: "Micro",
  8069. height: math.unit(16, "cm"),
  8070. form: "liom"
  8071. },
  8072. {
  8073. name: "Normal",
  8074. height: math.unit(1.85, "meters"),
  8075. default: true,
  8076. form: "liom"
  8077. },
  8078. {
  8079. name: "Mini-Macro",
  8080. height: math.unit(5, "meters"),
  8081. form: "liom"
  8082. },
  8083. {
  8084. name: "Macro",
  8085. height: math.unit(15, "meters"),
  8086. form: "liom"
  8087. },
  8088. {
  8089. name: "True Macro",
  8090. height: math.unit(40, "meters"),
  8091. form: "liom"
  8092. },
  8093. {
  8094. name: "City Scale",
  8095. height: math.unit(1, "km"),
  8096. form: "liom"
  8097. },
  8098. {
  8099. name: "Plushie",
  8100. height: math.unit(9, "cm"),
  8101. form: "plush",
  8102. default: true
  8103. },
  8104. {
  8105. name: "Fae",
  8106. height: math.unit(10, "cm"),
  8107. form: "fae",
  8108. default: true
  8109. },
  8110. ],
  8111. {
  8112. "liom": {
  8113. name: "Liom"
  8114. },
  8115. "plush": {
  8116. name: "Plush"
  8117. },
  8118. "fae": {
  8119. name: "Fae Fox",
  8120. default: true
  8121. }
  8122. }
  8123. ))
  8124. characterMakers.push(() => makeCharacter(
  8125. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8126. {
  8127. front: {
  8128. height: math.unit(2, "meters"),
  8129. weight: math.unit(350, "lbs"),
  8130. name: "Front",
  8131. image: {
  8132. source: "./media/characters/regal/front.svg"
  8133. }
  8134. },
  8135. back: {
  8136. height: math.unit(2, "meters"),
  8137. weight: math.unit(350, "lbs"),
  8138. name: "Back",
  8139. image: {
  8140. source: "./media/characters/regal/back.svg"
  8141. }
  8142. },
  8143. },
  8144. [
  8145. {
  8146. name: "Macro",
  8147. height: math.unit(350, "feet"),
  8148. default: true
  8149. }
  8150. ]
  8151. ))
  8152. characterMakers.push(() => makeCharacter(
  8153. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8154. {
  8155. standing: {
  8156. height: math.unit(4 + 11/12, "feet"),
  8157. weight: math.unit(100, "lb"),
  8158. name: "Standing",
  8159. image: {
  8160. source: "./media/characters/opal/standing.svg",
  8161. extra: 1588/1513,
  8162. bottom: 23/1611
  8163. }
  8164. },
  8165. sitting: {
  8166. height: math.unit(2.3, "feet"),
  8167. weight: math.unit(100, "lb"),
  8168. name: "Sitting",
  8169. image: {
  8170. source: "./media/characters/opal/sitting.svg",
  8171. extra: 1031/892,
  8172. bottom: 142/1173
  8173. }
  8174. },
  8175. hand: {
  8176. height: math.unit(0.59, "feet"),
  8177. name: "Hand",
  8178. image: {
  8179. source: "./media/characters/opal/hand.svg"
  8180. }
  8181. },
  8182. foot: {
  8183. height: math.unit(0.61, "feet"),
  8184. name: "Foot",
  8185. image: {
  8186. source: "./media/characters/opal/foot.svg"
  8187. }
  8188. },
  8189. },
  8190. [
  8191. {
  8192. name: "Small",
  8193. height: math.unit(4 + 11 / 12, "feet")
  8194. },
  8195. {
  8196. name: "Normal",
  8197. height: math.unit(20, "feet"),
  8198. default: true
  8199. },
  8200. {
  8201. name: "Macro",
  8202. height: math.unit(120, "feet")
  8203. },
  8204. {
  8205. name: "Megamacro",
  8206. height: math.unit(80, "miles")
  8207. },
  8208. {
  8209. name: "True Size",
  8210. height: math.unit(100000, "lightyears")
  8211. },
  8212. ]
  8213. ))
  8214. characterMakers.push(() => makeCharacter(
  8215. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8216. {
  8217. front: {
  8218. height: math.unit(6, "feet"),
  8219. weight: math.unit(200, "lbs"),
  8220. name: "Front",
  8221. image: {
  8222. source: "./media/characters/vector-wuff/front.svg"
  8223. }
  8224. }
  8225. },
  8226. [
  8227. {
  8228. name: "Normal",
  8229. height: math.unit(2.8, "meters")
  8230. },
  8231. {
  8232. name: "Macro",
  8233. height: math.unit(450, "meters"),
  8234. default: true
  8235. },
  8236. {
  8237. name: "Megamacro",
  8238. height: math.unit(15, "kilometers")
  8239. }
  8240. ]
  8241. ))
  8242. characterMakers.push(() => makeCharacter(
  8243. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8244. {
  8245. front: {
  8246. height: math.unit(6, "feet"),
  8247. weight: math.unit(256, "lbs"),
  8248. name: "Front",
  8249. image: {
  8250. source: "./media/characters/dannik/front.svg"
  8251. }
  8252. }
  8253. },
  8254. [
  8255. {
  8256. name: "Macro",
  8257. height: math.unit(69.57, "meters"),
  8258. default: true
  8259. },
  8260. ]
  8261. ))
  8262. characterMakers.push(() => makeCharacter(
  8263. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8264. {
  8265. front: {
  8266. height: math.unit(6, "feet"),
  8267. weight: math.unit(120, "lbs"),
  8268. name: "Front",
  8269. image: {
  8270. source: "./media/characters/azura-saharah/front.svg"
  8271. }
  8272. },
  8273. back: {
  8274. height: math.unit(6, "feet"),
  8275. weight: math.unit(120, "lbs"),
  8276. name: "Back",
  8277. image: {
  8278. source: "./media/characters/azura-saharah/back.svg"
  8279. }
  8280. },
  8281. },
  8282. [
  8283. {
  8284. name: "Macro",
  8285. height: math.unit(100, "feet"),
  8286. default: true
  8287. },
  8288. ]
  8289. ))
  8290. characterMakers.push(() => makeCharacter(
  8291. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8292. {
  8293. side: {
  8294. height: math.unit(5 + 4 / 12, "feet"),
  8295. weight: math.unit(163, "lbs"),
  8296. name: "Side",
  8297. image: {
  8298. source: "./media/characters/kennedy/side.svg"
  8299. }
  8300. }
  8301. },
  8302. [
  8303. {
  8304. name: "Standard Doggo",
  8305. height: math.unit(5 + 4 / 12, "feet")
  8306. },
  8307. {
  8308. name: "Big Doggo",
  8309. height: math.unit(25 + 3 / 12, "feet"),
  8310. default: true
  8311. },
  8312. ]
  8313. ))
  8314. characterMakers.push(() => makeCharacter(
  8315. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8316. {
  8317. front: {
  8318. height: math.unit(5 + 5/12, "feet"),
  8319. weight: math.unit(100, "lbs"),
  8320. name: "Front",
  8321. image: {
  8322. source: "./media/characters/odios-de-lunar/front.svg",
  8323. extra: 1468/1323,
  8324. bottom: 22/1490
  8325. }
  8326. }
  8327. },
  8328. [
  8329. {
  8330. name: "Micro",
  8331. height: math.unit(3, "inches")
  8332. },
  8333. {
  8334. name: "Normal",
  8335. height: math.unit(5.5, "feet"),
  8336. default: true
  8337. },
  8338. {
  8339. name: "Macro",
  8340. height: math.unit(100, "feet")
  8341. },
  8342. ]
  8343. ))
  8344. characterMakers.push(() => makeCharacter(
  8345. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8346. {
  8347. back: {
  8348. height: math.unit(6, "feet"),
  8349. weight: math.unit(220, "lbs"),
  8350. name: "Back",
  8351. image: {
  8352. source: "./media/characters/mandake/back.svg"
  8353. }
  8354. }
  8355. },
  8356. [
  8357. {
  8358. name: "Normal",
  8359. height: math.unit(7, "feet"),
  8360. default: true
  8361. },
  8362. {
  8363. name: "Macro",
  8364. height: math.unit(78, "feet")
  8365. },
  8366. {
  8367. name: "Macro+",
  8368. height: math.unit(300, "meters")
  8369. },
  8370. {
  8371. name: "Macro++",
  8372. height: math.unit(2400, "feet")
  8373. },
  8374. {
  8375. name: "Megamacro",
  8376. height: math.unit(5167, "meters")
  8377. },
  8378. {
  8379. name: "Gigamacro",
  8380. height: math.unit(41769, "miles")
  8381. },
  8382. ]
  8383. ))
  8384. characterMakers.push(() => makeCharacter(
  8385. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8386. {
  8387. front: {
  8388. height: math.unit(6, "feet"),
  8389. weight: math.unit(120, "lbs"),
  8390. name: "Front",
  8391. image: {
  8392. source: "./media/characters/yozey/front.svg"
  8393. }
  8394. },
  8395. frontAlt: {
  8396. height: math.unit(6, "feet"),
  8397. weight: math.unit(120, "lbs"),
  8398. name: "Front (Alt)",
  8399. image: {
  8400. source: "./media/characters/yozey/front-alt.svg"
  8401. }
  8402. },
  8403. side: {
  8404. height: math.unit(6, "feet"),
  8405. weight: math.unit(120, "lbs"),
  8406. name: "Side",
  8407. image: {
  8408. source: "./media/characters/yozey/side.svg"
  8409. }
  8410. },
  8411. },
  8412. [
  8413. {
  8414. name: "Micro",
  8415. height: math.unit(3, "inches"),
  8416. default: true
  8417. },
  8418. {
  8419. name: "Normal",
  8420. height: math.unit(6, "feet")
  8421. }
  8422. ]
  8423. ))
  8424. characterMakers.push(() => makeCharacter(
  8425. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8426. {
  8427. front: {
  8428. height: math.unit(6, "feet"),
  8429. weight: math.unit(103, "lbs"),
  8430. name: "Front",
  8431. image: {
  8432. source: "./media/characters/valeska-voss/front.svg"
  8433. }
  8434. }
  8435. },
  8436. [
  8437. {
  8438. name: "Mini-Sized Sub",
  8439. height: math.unit(3.1, "inches")
  8440. },
  8441. {
  8442. name: "Mid-Sized Sub",
  8443. height: math.unit(6.2, "inches")
  8444. },
  8445. {
  8446. name: "Full-Sized Sub",
  8447. height: math.unit(9.3, "inches")
  8448. },
  8449. {
  8450. name: "Normal",
  8451. height: math.unit(5 + 2 / 12, "foot"),
  8452. default: true
  8453. },
  8454. ]
  8455. ))
  8456. characterMakers.push(() => makeCharacter(
  8457. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8458. {
  8459. front: {
  8460. height: math.unit(6, "feet"),
  8461. weight: math.unit(160, "lbs"),
  8462. name: "Front",
  8463. image: {
  8464. source: "./media/characters/gene-zeta/front.svg",
  8465. extra: 3006 / 2826,
  8466. bottom: 182 / 3188
  8467. }
  8468. }
  8469. },
  8470. [
  8471. {
  8472. name: "Micro",
  8473. height: math.unit(6, "inches")
  8474. },
  8475. {
  8476. name: "Normal",
  8477. height: math.unit(5 + 11 / 12, "foot"),
  8478. default: true
  8479. },
  8480. {
  8481. name: "Macro",
  8482. height: math.unit(140, "feet")
  8483. },
  8484. {
  8485. name: "Supercharged",
  8486. height: math.unit(2500, "feet")
  8487. },
  8488. ]
  8489. ))
  8490. characterMakers.push(() => makeCharacter(
  8491. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8492. {
  8493. front: {
  8494. height: math.unit(6, "feet"),
  8495. weight: math.unit(350, "lbs"),
  8496. name: "Front",
  8497. image: {
  8498. source: "./media/characters/razinox/front.svg",
  8499. extra: 1686 / 1548,
  8500. bottom: 28.2 / 1868
  8501. }
  8502. },
  8503. back: {
  8504. height: math.unit(6, "feet"),
  8505. weight: math.unit(350, "lbs"),
  8506. name: "Back",
  8507. image: {
  8508. source: "./media/characters/razinox/back.svg",
  8509. extra: 1660 / 1590,
  8510. bottom: 15 / 1665
  8511. }
  8512. },
  8513. },
  8514. [
  8515. {
  8516. name: "Normal",
  8517. height: math.unit(10 + 8 / 12, "foot")
  8518. },
  8519. {
  8520. name: "Minimacro",
  8521. height: math.unit(15, "foot")
  8522. },
  8523. {
  8524. name: "Macro",
  8525. height: math.unit(60, "foot"),
  8526. default: true
  8527. },
  8528. {
  8529. name: "Megamacro",
  8530. height: math.unit(5, "miles")
  8531. },
  8532. {
  8533. name: "Gigamacro",
  8534. height: math.unit(6000, "miles")
  8535. },
  8536. ]
  8537. ))
  8538. characterMakers.push(() => makeCharacter(
  8539. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8540. {
  8541. front: {
  8542. height: math.unit(6, "feet"),
  8543. weight: math.unit(150, "lbs"),
  8544. name: "Front",
  8545. image: {
  8546. source: "./media/characters/cobalt/front.svg"
  8547. }
  8548. }
  8549. },
  8550. [
  8551. {
  8552. name: "Normal",
  8553. height: math.unit(8 + 1 / 12, "foot")
  8554. },
  8555. {
  8556. name: "Macro",
  8557. height: math.unit(111, "foot"),
  8558. default: true
  8559. },
  8560. {
  8561. name: "Supracosmic",
  8562. height: math.unit(1e42, "feet")
  8563. },
  8564. ]
  8565. ))
  8566. characterMakers.push(() => makeCharacter(
  8567. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8568. {
  8569. front: {
  8570. height: math.unit(5, "inches"),
  8571. name: "Front",
  8572. image: {
  8573. source: "./media/characters/amanda/front.svg",
  8574. extra: 926/791,
  8575. bottom: 38/964
  8576. }
  8577. },
  8578. back: {
  8579. height: math.unit(5, "inches"),
  8580. name: "Back",
  8581. image: {
  8582. source: "./media/characters/amanda/back.svg",
  8583. extra: 909/805,
  8584. bottom: 43/952
  8585. }
  8586. },
  8587. },
  8588. [
  8589. {
  8590. name: "Micro",
  8591. height: math.unit(5, "inches"),
  8592. default: true
  8593. },
  8594. ]
  8595. ))
  8596. characterMakers.push(() => makeCharacter(
  8597. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8598. {
  8599. front: {
  8600. height: math.unit(2.75, "meters"),
  8601. weight: math.unit(1200, "lb"),
  8602. name: "Front",
  8603. image: {
  8604. source: "./media/characters/teal/front.svg",
  8605. extra: 2463 / 2320,
  8606. bottom: 166 / 2629
  8607. }
  8608. },
  8609. back: {
  8610. height: math.unit(2.75, "meters"),
  8611. weight: math.unit(1200, "lb"),
  8612. name: "Back",
  8613. image: {
  8614. source: "./media/characters/teal/back.svg",
  8615. extra: 2580 / 2489,
  8616. bottom: 151 / 2731
  8617. }
  8618. },
  8619. sitting: {
  8620. height: math.unit(1.9, "meters"),
  8621. weight: math.unit(1200, "lb"),
  8622. name: "Sitting",
  8623. image: {
  8624. source: "./media/characters/teal/sitting.svg",
  8625. extra: 623 / 590,
  8626. bottom: 121 / 744
  8627. }
  8628. },
  8629. standing: {
  8630. height: math.unit(2.75, "meters"),
  8631. weight: math.unit(1200, "lb"),
  8632. name: "Standing",
  8633. image: {
  8634. source: "./media/characters/teal/standing.svg",
  8635. extra: 923 / 893,
  8636. bottom: 60 / 983
  8637. }
  8638. },
  8639. stretching: {
  8640. height: math.unit(3.65, "meters"),
  8641. weight: math.unit(1200, "lb"),
  8642. name: "Stretching",
  8643. image: {
  8644. source: "./media/characters/teal/stretching.svg",
  8645. extra: 1276 / 1244,
  8646. bottom: 0 / 1276
  8647. }
  8648. },
  8649. legged: {
  8650. height: math.unit(1.3, "meters"),
  8651. weight: math.unit(100, "lb"),
  8652. name: "Legged",
  8653. image: {
  8654. source: "./media/characters/teal/legged.svg",
  8655. extra: 462 / 437,
  8656. bottom: 24 / 486
  8657. }
  8658. },
  8659. naga: {
  8660. height: math.unit(5.4, "meters"),
  8661. weight: math.unit(4000, "lb"),
  8662. name: "Naga",
  8663. image: {
  8664. source: "./media/characters/teal/naga.svg",
  8665. extra: 1902 / 1858,
  8666. bottom: 0 / 1902
  8667. }
  8668. },
  8669. hand: {
  8670. height: math.unit(0.52, "meters"),
  8671. name: "Hand",
  8672. image: {
  8673. source: "./media/characters/teal/hand.svg"
  8674. }
  8675. },
  8676. maw: {
  8677. height: math.unit(0.43, "meters"),
  8678. name: "Maw",
  8679. image: {
  8680. source: "./media/characters/teal/maw.svg"
  8681. }
  8682. },
  8683. slit: {
  8684. height: math.unit(0.25, "meters"),
  8685. name: "Slit",
  8686. image: {
  8687. source: "./media/characters/teal/slit.svg"
  8688. }
  8689. },
  8690. },
  8691. [
  8692. {
  8693. name: "Normal",
  8694. height: math.unit(2.75, "meters"),
  8695. default: true
  8696. },
  8697. {
  8698. name: "Macro",
  8699. height: math.unit(300, "feet")
  8700. },
  8701. {
  8702. name: "Macro+",
  8703. height: math.unit(2000, "feet")
  8704. },
  8705. ]
  8706. ))
  8707. characterMakers.push(() => makeCharacter(
  8708. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8709. {
  8710. frontCat: {
  8711. height: math.unit(6, "feet"),
  8712. weight: math.unit(180, "lbs"),
  8713. name: "Front (Cat)",
  8714. image: {
  8715. source: "./media/characters/ravin-amulet/front-cat.svg"
  8716. }
  8717. },
  8718. frontCatAlt: {
  8719. height: math.unit(6, "feet"),
  8720. weight: math.unit(180, "lbs"),
  8721. name: "Front (Alt, Cat)",
  8722. image: {
  8723. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8724. }
  8725. },
  8726. frontWerewolf: {
  8727. height: math.unit(6 * 1.2, "feet"),
  8728. weight: math.unit(225, "lbs"),
  8729. name: "Front (Werewolf)",
  8730. image: {
  8731. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8732. }
  8733. },
  8734. backWerewolf: {
  8735. height: math.unit(6 * 1.2, "feet"),
  8736. weight: math.unit(225, "lbs"),
  8737. name: "Back (Werewolf)",
  8738. image: {
  8739. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8740. }
  8741. },
  8742. },
  8743. [
  8744. {
  8745. name: "Nano",
  8746. height: math.unit(1, "micrometer")
  8747. },
  8748. {
  8749. name: "Micro",
  8750. height: math.unit(1, "inch")
  8751. },
  8752. {
  8753. name: "Normal",
  8754. height: math.unit(6, "feet"),
  8755. default: true
  8756. },
  8757. {
  8758. name: "Macro",
  8759. height: math.unit(60, "feet")
  8760. }
  8761. ]
  8762. ))
  8763. characterMakers.push(() => makeCharacter(
  8764. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8765. {
  8766. front: {
  8767. height: math.unit(6, "feet"),
  8768. weight: math.unit(165, "lbs"),
  8769. name: "Front",
  8770. image: {
  8771. source: "./media/characters/fluoresce/front.svg"
  8772. }
  8773. }
  8774. },
  8775. [
  8776. {
  8777. name: "Micro",
  8778. height: math.unit(6, "cm")
  8779. },
  8780. {
  8781. name: "Normal",
  8782. height: math.unit(5 + 7 / 12, "feet"),
  8783. default: true
  8784. },
  8785. {
  8786. name: "Macro",
  8787. height: math.unit(56, "feet")
  8788. },
  8789. {
  8790. name: "Megamacro",
  8791. height: math.unit(1.9, "miles")
  8792. },
  8793. ]
  8794. ))
  8795. characterMakers.push(() => makeCharacter(
  8796. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8797. {
  8798. front: {
  8799. height: math.unit(9 + 6 / 12, "feet"),
  8800. weight: math.unit(523, "lbs"),
  8801. name: "Side",
  8802. image: {
  8803. source: "./media/characters/aurora/side.svg",
  8804. extra: 474/393,
  8805. bottom: 5/479
  8806. }
  8807. }
  8808. },
  8809. [
  8810. {
  8811. name: "Normal",
  8812. height: math.unit(9 + 6 / 12, "feet")
  8813. },
  8814. {
  8815. name: "Macro",
  8816. height: math.unit(96, "feet"),
  8817. default: true
  8818. },
  8819. {
  8820. name: "Macro+",
  8821. height: math.unit(243, "feet")
  8822. },
  8823. ]
  8824. ))
  8825. characterMakers.push(() => makeCharacter(
  8826. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8827. {
  8828. front: {
  8829. height: math.unit(194, "cm"),
  8830. weight: math.unit(90, "kg"),
  8831. name: "Front",
  8832. image: {
  8833. source: "./media/characters/ranek/front.svg",
  8834. extra: 1862/1791,
  8835. bottom: 80/1942
  8836. }
  8837. },
  8838. back: {
  8839. height: math.unit(194, "cm"),
  8840. weight: math.unit(90, "kg"),
  8841. name: "Back",
  8842. image: {
  8843. source: "./media/characters/ranek/back.svg",
  8844. extra: 1853/1787,
  8845. bottom: 74/1927
  8846. }
  8847. },
  8848. feral: {
  8849. height: math.unit(30, "cm"),
  8850. weight: math.unit(1.6, "lbs"),
  8851. name: "Feral",
  8852. image: {
  8853. source: "./media/characters/ranek/feral.svg",
  8854. extra: 990/631,
  8855. bottom: 29/1019
  8856. }
  8857. },
  8858. },
  8859. [
  8860. {
  8861. name: "Normal",
  8862. height: math.unit(194, "cm"),
  8863. default: true
  8864. },
  8865. {
  8866. name: "Macro",
  8867. height: math.unit(100, "meters")
  8868. },
  8869. ]
  8870. ))
  8871. characterMakers.push(() => makeCharacter(
  8872. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8873. {
  8874. front: {
  8875. height: math.unit(5 + 6 / 12, "feet"),
  8876. weight: math.unit(153, "lbs"),
  8877. name: "Front",
  8878. image: {
  8879. source: "./media/characters/andrew-cooper/front.svg"
  8880. }
  8881. },
  8882. },
  8883. [
  8884. {
  8885. name: "Nano",
  8886. height: math.unit(1, "mm")
  8887. },
  8888. {
  8889. name: "Micro",
  8890. height: math.unit(2, "inches")
  8891. },
  8892. {
  8893. name: "Normal",
  8894. height: math.unit(5 + 6 / 12, "feet"),
  8895. default: true
  8896. }
  8897. ]
  8898. ))
  8899. characterMakers.push(() => makeCharacter(
  8900. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8901. {
  8902. front: {
  8903. height: math.unit(6, "feet"),
  8904. weight: math.unit(180, "lbs"),
  8905. name: "Front",
  8906. image: {
  8907. source: "./media/characters/akane-sato/front.svg",
  8908. extra: 1219 / 1140
  8909. }
  8910. },
  8911. back: {
  8912. height: math.unit(6, "feet"),
  8913. weight: math.unit(180, "lbs"),
  8914. name: "Back",
  8915. image: {
  8916. source: "./media/characters/akane-sato/back.svg",
  8917. extra: 1219 / 1170
  8918. }
  8919. },
  8920. },
  8921. [
  8922. {
  8923. name: "Normal",
  8924. height: math.unit(2.5, "meters")
  8925. },
  8926. {
  8927. name: "Macro",
  8928. height: math.unit(250, "meters"),
  8929. default: true
  8930. },
  8931. {
  8932. name: "Megamacro",
  8933. height: math.unit(25, "km")
  8934. },
  8935. ]
  8936. ))
  8937. characterMakers.push(() => makeCharacter(
  8938. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8939. {
  8940. front: {
  8941. height: math.unit(6, "feet"),
  8942. weight: math.unit(65, "kg"),
  8943. name: "Front",
  8944. image: {
  8945. source: "./media/characters/rook/front.svg",
  8946. extra: 960 / 950
  8947. }
  8948. }
  8949. },
  8950. [
  8951. {
  8952. name: "Normal",
  8953. height: math.unit(8.8, "feet")
  8954. },
  8955. {
  8956. name: "Macro",
  8957. height: math.unit(88, "feet"),
  8958. default: true
  8959. },
  8960. {
  8961. name: "Megamacro",
  8962. height: math.unit(8, "miles")
  8963. },
  8964. ]
  8965. ))
  8966. characterMakers.push(() => makeCharacter(
  8967. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8968. {
  8969. front: {
  8970. height: math.unit(12 + 2 / 12, "feet"),
  8971. weight: math.unit(808, "lbs"),
  8972. name: "Front",
  8973. image: {
  8974. source: "./media/characters/prodigy/front.svg"
  8975. }
  8976. }
  8977. },
  8978. [
  8979. {
  8980. name: "Normal",
  8981. height: math.unit(12 + 2 / 12, "feet"),
  8982. default: true
  8983. },
  8984. {
  8985. name: "Macro",
  8986. height: math.unit(143, "feet")
  8987. },
  8988. {
  8989. name: "Macro+",
  8990. height: math.unit(400, "feet")
  8991. },
  8992. ]
  8993. ))
  8994. characterMakers.push(() => makeCharacter(
  8995. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8996. {
  8997. front: {
  8998. height: math.unit(6, "feet"),
  8999. weight: math.unit(225, "lbs"),
  9000. name: "Front",
  9001. image: {
  9002. source: "./media/characters/daniel/front.svg"
  9003. }
  9004. },
  9005. leaning: {
  9006. height: math.unit(6, "feet"),
  9007. weight: math.unit(225, "lbs"),
  9008. name: "Leaning",
  9009. image: {
  9010. source: "./media/characters/daniel/leaning.svg"
  9011. }
  9012. },
  9013. },
  9014. [
  9015. {
  9016. name: "Macro",
  9017. height: math.unit(1000, "feet"),
  9018. default: true
  9019. },
  9020. ]
  9021. ))
  9022. characterMakers.push(() => makeCharacter(
  9023. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9024. {
  9025. front: {
  9026. height: math.unit(6, "feet"),
  9027. weight: math.unit(88, "lbs"),
  9028. name: "Front",
  9029. image: {
  9030. source: "./media/characters/chiros/front.svg",
  9031. extra: 306 / 226
  9032. }
  9033. },
  9034. side: {
  9035. height: math.unit(6, "feet"),
  9036. weight: math.unit(88, "lbs"),
  9037. name: "Side",
  9038. image: {
  9039. source: "./media/characters/chiros/side.svg",
  9040. extra: 306 / 226
  9041. }
  9042. },
  9043. },
  9044. [
  9045. {
  9046. name: "Normal",
  9047. height: math.unit(6, "cm"),
  9048. default: true
  9049. },
  9050. ]
  9051. ))
  9052. characterMakers.push(() => makeCharacter(
  9053. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9054. {
  9055. front: {
  9056. height: math.unit(6, "feet"),
  9057. weight: math.unit(100, "lbs"),
  9058. name: "Front",
  9059. image: {
  9060. source: "./media/characters/selka/front.svg",
  9061. extra: 947 / 887
  9062. }
  9063. }
  9064. },
  9065. [
  9066. {
  9067. name: "Normal",
  9068. height: math.unit(5, "cm"),
  9069. default: true
  9070. },
  9071. ]
  9072. ))
  9073. characterMakers.push(() => makeCharacter(
  9074. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9075. {
  9076. front: {
  9077. height: math.unit(8 + 3 / 12, "feet"),
  9078. weight: math.unit(424, "lbs"),
  9079. name: "Front",
  9080. image: {
  9081. source: "./media/characters/verin/front.svg",
  9082. extra: 1845 / 1550
  9083. }
  9084. },
  9085. frontArmored: {
  9086. height: math.unit(8 + 3 / 12, "feet"),
  9087. weight: math.unit(424, "lbs"),
  9088. name: "Front (Armored)",
  9089. image: {
  9090. source: "./media/characters/verin/front-armor.svg",
  9091. extra: 1845 / 1550,
  9092. bottom: 0.01
  9093. }
  9094. },
  9095. back: {
  9096. height: math.unit(8 + 3 / 12, "feet"),
  9097. weight: math.unit(424, "lbs"),
  9098. name: "Back",
  9099. image: {
  9100. source: "./media/characters/verin/back.svg",
  9101. bottom: 0.1,
  9102. extra: 1
  9103. }
  9104. },
  9105. foot: {
  9106. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9107. name: "Foot",
  9108. image: {
  9109. source: "./media/characters/verin/foot.svg"
  9110. }
  9111. },
  9112. },
  9113. [
  9114. {
  9115. name: "Normal",
  9116. height: math.unit(8 + 3 / 12, "feet")
  9117. },
  9118. {
  9119. name: "Minimacro",
  9120. height: math.unit(21, "feet"),
  9121. default: true
  9122. },
  9123. {
  9124. name: "Macro",
  9125. height: math.unit(626, "feet")
  9126. },
  9127. ]
  9128. ))
  9129. characterMakers.push(() => makeCharacter(
  9130. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9131. {
  9132. front: {
  9133. height: math.unit(2.718, "meters"),
  9134. weight: math.unit(150, "lbs"),
  9135. name: "Front",
  9136. image: {
  9137. source: "./media/characters/sovrim-terraquian/front.svg",
  9138. extra: 1752/1689,
  9139. bottom: 36/1788
  9140. }
  9141. },
  9142. back: {
  9143. height: math.unit(2.718, "meters"),
  9144. weight: math.unit(150, "lbs"),
  9145. name: "Back",
  9146. image: {
  9147. source: "./media/characters/sovrim-terraquian/back.svg",
  9148. extra: 1698/1657,
  9149. bottom: 58/1756
  9150. }
  9151. },
  9152. tongue: {
  9153. height: math.unit(2.865, "feet"),
  9154. name: "Tongue",
  9155. image: {
  9156. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9157. }
  9158. },
  9159. hand: {
  9160. height: math.unit(1.61, "feet"),
  9161. name: "Hand",
  9162. image: {
  9163. source: "./media/characters/sovrim-terraquian/hand.svg"
  9164. }
  9165. },
  9166. foot: {
  9167. height: math.unit(1.05, "feet"),
  9168. name: "Foot",
  9169. image: {
  9170. source: "./media/characters/sovrim-terraquian/foot.svg"
  9171. }
  9172. },
  9173. footAlt: {
  9174. height: math.unit(0.88, "feet"),
  9175. name: "Foot (Alt)",
  9176. image: {
  9177. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9178. }
  9179. },
  9180. },
  9181. [
  9182. {
  9183. name: "Micro",
  9184. height: math.unit(2, "inches")
  9185. },
  9186. {
  9187. name: "Small",
  9188. height: math.unit(1, "meter")
  9189. },
  9190. {
  9191. name: "Normal",
  9192. height: math.unit(Math.E, "meters"),
  9193. default: true
  9194. },
  9195. {
  9196. name: "Macro",
  9197. height: math.unit(20, "meters")
  9198. },
  9199. {
  9200. name: "Macro+",
  9201. height: math.unit(400, "meters")
  9202. },
  9203. ]
  9204. ))
  9205. characterMakers.push(() => makeCharacter(
  9206. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9207. {
  9208. front: {
  9209. height: math.unit(7, "feet"),
  9210. weight: math.unit(489, "lbs"),
  9211. name: "Front",
  9212. image: {
  9213. source: "./media/characters/reece-silvermane/front.svg",
  9214. bottom: 0.02,
  9215. extra: 1
  9216. }
  9217. },
  9218. },
  9219. [
  9220. {
  9221. name: "Macro",
  9222. height: math.unit(1.5, "miles"),
  9223. default: true
  9224. },
  9225. ]
  9226. ))
  9227. characterMakers.push(() => makeCharacter(
  9228. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9229. {
  9230. front: {
  9231. height: math.unit(6, "feet"),
  9232. weight: math.unit(78, "kg"),
  9233. name: "Front",
  9234. image: {
  9235. source: "./media/characters/kane/front.svg",
  9236. extra: 978 / 899
  9237. }
  9238. },
  9239. back: {
  9240. height: math.unit(6, "feet"),
  9241. weight: math.unit(78, "kg"),
  9242. name: "Back",
  9243. image: {
  9244. source: "./media/characters/kane/back.svg",
  9245. extra: 1966/1800,
  9246. bottom: 0/1966
  9247. }
  9248. },
  9249. head: {
  9250. height: math.unit(1.4, "feet"),
  9251. name: "Head",
  9252. image: {
  9253. source: "./media/characters/kane/head.svg"
  9254. }
  9255. },
  9256. },
  9257. [
  9258. {
  9259. name: "Normal",
  9260. height: math.unit(2.1, "m"),
  9261. },
  9262. {
  9263. name: "Macro",
  9264. height: math.unit(1, "km"),
  9265. default: true
  9266. },
  9267. ]
  9268. ))
  9269. characterMakers.push(() => makeCharacter(
  9270. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9271. {
  9272. front: {
  9273. height: math.unit(6, "feet"),
  9274. weight: math.unit(200, "kg"),
  9275. name: "Front",
  9276. image: {
  9277. source: "./media/characters/tegon/front.svg",
  9278. bottom: 0.01,
  9279. extra: 1
  9280. }
  9281. },
  9282. },
  9283. [
  9284. {
  9285. name: "Micro",
  9286. height: math.unit(1, "inch")
  9287. },
  9288. {
  9289. name: "Normal",
  9290. height: math.unit(6 + 3 / 12, "feet"),
  9291. default: true
  9292. },
  9293. {
  9294. name: "Macro",
  9295. height: math.unit(300, "feet")
  9296. },
  9297. {
  9298. name: "Megamacro",
  9299. height: math.unit(69, "miles")
  9300. },
  9301. ]
  9302. ))
  9303. characterMakers.push(() => makeCharacter(
  9304. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9305. {
  9306. side: {
  9307. height: math.unit(6, "feet"),
  9308. weight: math.unit(2304, "lbs"),
  9309. name: "Side",
  9310. image: {
  9311. source: "./media/characters/arcturax/side.svg",
  9312. extra: 790 / 376,
  9313. bottom: 0.01
  9314. }
  9315. },
  9316. },
  9317. [
  9318. {
  9319. name: "Micro",
  9320. height: math.unit(2, "inch")
  9321. },
  9322. {
  9323. name: "Normal",
  9324. height: math.unit(6, "feet")
  9325. },
  9326. {
  9327. name: "Macro",
  9328. height: math.unit(39, "feet"),
  9329. default: true
  9330. },
  9331. {
  9332. name: "Megamacro",
  9333. height: math.unit(7, "miles")
  9334. },
  9335. ]
  9336. ))
  9337. characterMakers.push(() => makeCharacter(
  9338. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9339. {
  9340. front: {
  9341. height: math.unit(6, "feet"),
  9342. weight: math.unit(50, "lbs"),
  9343. name: "Front",
  9344. image: {
  9345. source: "./media/characters/sentri/front.svg",
  9346. extra: 1750 / 1570,
  9347. bottom: 0.025
  9348. }
  9349. },
  9350. frontAlt: {
  9351. height: math.unit(6, "feet"),
  9352. weight: math.unit(50, "lbs"),
  9353. name: "Front (Alt)",
  9354. image: {
  9355. source: "./media/characters/sentri/front-alt.svg",
  9356. extra: 1750 / 1570,
  9357. bottom: 0.025
  9358. }
  9359. },
  9360. },
  9361. [
  9362. {
  9363. name: "Normal",
  9364. height: math.unit(15, "feet"),
  9365. default: true
  9366. },
  9367. {
  9368. name: "Macro",
  9369. height: math.unit(2500, "feet")
  9370. }
  9371. ]
  9372. ))
  9373. characterMakers.push(() => makeCharacter(
  9374. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9375. {
  9376. front: {
  9377. height: math.unit(5 + 8 / 12, "feet"),
  9378. weight: math.unit(130, "lbs"),
  9379. name: "Front",
  9380. image: {
  9381. source: "./media/characters/corvin/front.svg",
  9382. extra: 1803 / 1629
  9383. }
  9384. },
  9385. frontShirt: {
  9386. height: math.unit(5 + 8 / 12, "feet"),
  9387. weight: math.unit(130, "lbs"),
  9388. name: "Front (Shirt)",
  9389. image: {
  9390. source: "./media/characters/corvin/front-shirt.svg",
  9391. extra: 1803 / 1629
  9392. }
  9393. },
  9394. frontPoncho: {
  9395. height: math.unit(5 + 8 / 12, "feet"),
  9396. weight: math.unit(130, "lbs"),
  9397. name: "Front (Poncho)",
  9398. image: {
  9399. source: "./media/characters/corvin/front-poncho.svg",
  9400. extra: 1803 / 1629
  9401. }
  9402. },
  9403. side: {
  9404. height: math.unit(5 + 8 / 12, "feet"),
  9405. weight: math.unit(130, "lbs"),
  9406. name: "Side",
  9407. image: {
  9408. source: "./media/characters/corvin/side.svg",
  9409. extra: 1012 / 945
  9410. }
  9411. },
  9412. back: {
  9413. height: math.unit(5 + 8 / 12, "feet"),
  9414. weight: math.unit(130, "lbs"),
  9415. name: "Back",
  9416. image: {
  9417. source: "./media/characters/corvin/back.svg",
  9418. extra: 1803 / 1629
  9419. }
  9420. },
  9421. },
  9422. [
  9423. {
  9424. name: "Micro",
  9425. height: math.unit(3, "inches")
  9426. },
  9427. {
  9428. name: "Normal",
  9429. height: math.unit(5 + 8 / 12, "feet")
  9430. },
  9431. {
  9432. name: "Macro",
  9433. height: math.unit(300, "feet"),
  9434. default: true
  9435. },
  9436. {
  9437. name: "Megamacro",
  9438. height: math.unit(500, "miles")
  9439. }
  9440. ]
  9441. ))
  9442. characterMakers.push(() => makeCharacter(
  9443. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9444. {
  9445. front: {
  9446. height: math.unit(6, "feet"),
  9447. weight: math.unit(135, "lbs"),
  9448. name: "Front",
  9449. image: {
  9450. source: "./media/characters/q/front.svg",
  9451. extra: 854 / 752,
  9452. bottom: 0.005
  9453. }
  9454. },
  9455. back: {
  9456. height: math.unit(6, "feet"),
  9457. weight: math.unit(130, "lbs"),
  9458. name: "Back",
  9459. image: {
  9460. source: "./media/characters/q/back.svg",
  9461. extra: 854 / 752
  9462. }
  9463. },
  9464. },
  9465. [
  9466. {
  9467. name: "Macro",
  9468. height: math.unit(90, "feet"),
  9469. default: true
  9470. },
  9471. {
  9472. name: "Extra Macro",
  9473. height: math.unit(300, "feet"),
  9474. },
  9475. {
  9476. name: "BIG WALF",
  9477. height: math.unit(750, "feet"),
  9478. },
  9479. ]
  9480. ))
  9481. characterMakers.push(() => makeCharacter(
  9482. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9483. {
  9484. front: {
  9485. height: math.unit(3, "feet"),
  9486. weight: math.unit(28, "lbs"),
  9487. name: "Front",
  9488. image: {
  9489. source: "./media/characters/citrine/front.svg"
  9490. }
  9491. }
  9492. },
  9493. [
  9494. {
  9495. name: "Normal",
  9496. height: math.unit(3, "feet"),
  9497. default: true
  9498. }
  9499. ]
  9500. ))
  9501. characterMakers.push(() => makeCharacter(
  9502. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9503. {
  9504. front: {
  9505. height: math.unit(14, "feet"),
  9506. weight: math.unit(1450, "kg"),
  9507. preyCapacity: math.unit(15, "people"),
  9508. name: "Front",
  9509. image: {
  9510. source: "./media/characters/aura-starwind/front.svg",
  9511. extra: 1440/1327,
  9512. bottom: 11/1451
  9513. }
  9514. },
  9515. side: {
  9516. height: math.unit(14, "feet"),
  9517. weight: math.unit(1450, "kg"),
  9518. preyCapacity: math.unit(15, "people"),
  9519. name: "Side",
  9520. image: {
  9521. source: "./media/characters/aura-starwind/side.svg",
  9522. extra: 1654 / 1497
  9523. }
  9524. },
  9525. taur: {
  9526. height: math.unit(18, "feet"),
  9527. weight: math.unit(5500, "kg"),
  9528. preyCapacity: math.unit(50, "people"),
  9529. name: "Taur",
  9530. image: {
  9531. source: "./media/characters/aura-starwind/taur.svg",
  9532. extra: 1760 / 1650
  9533. }
  9534. },
  9535. feral: {
  9536. height: math.unit(46, "feet"),
  9537. weight: math.unit(25000, "kg"),
  9538. preyCapacity: math.unit(120, "people"),
  9539. name: "Feral",
  9540. image: {
  9541. source: "./media/characters/aura-starwind/feral.svg"
  9542. }
  9543. },
  9544. },
  9545. [
  9546. {
  9547. name: "Normal",
  9548. height: math.unit(14, "feet"),
  9549. default: true
  9550. },
  9551. {
  9552. name: "Macro",
  9553. height: math.unit(50, "meters")
  9554. },
  9555. {
  9556. name: "Megamacro",
  9557. height: math.unit(5000, "meters")
  9558. },
  9559. {
  9560. name: "Gigamacro",
  9561. height: math.unit(100000, "kilometers")
  9562. },
  9563. ]
  9564. ))
  9565. characterMakers.push(() => makeCharacter(
  9566. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9567. {
  9568. front: {
  9569. height: math.unit(2 + 7 / 12, "feet"),
  9570. weight: math.unit(32, "lbs"),
  9571. name: "Front",
  9572. image: {
  9573. source: "./media/characters/rivet/front.svg",
  9574. extra: 1716 / 1658,
  9575. bottom: 0.03
  9576. }
  9577. },
  9578. foot: {
  9579. height: math.unit(0.551, "feet"),
  9580. name: "Rivet's Foot",
  9581. image: {
  9582. source: "./media/characters/rivet/foot.svg"
  9583. },
  9584. rename: true
  9585. }
  9586. },
  9587. [
  9588. {
  9589. name: "Micro",
  9590. height: math.unit(1.5, "inches"),
  9591. },
  9592. {
  9593. name: "Normal",
  9594. height: math.unit(2 + 7 / 12, "feet"),
  9595. default: true
  9596. },
  9597. {
  9598. name: "Macro",
  9599. height: math.unit(85, "feet")
  9600. },
  9601. {
  9602. name: "Megamacro",
  9603. height: math.unit(2.2, "km")
  9604. }
  9605. ]
  9606. ))
  9607. characterMakers.push(() => makeCharacter(
  9608. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9609. {
  9610. front: {
  9611. height: math.unit(5 + 9 / 12, "feet"),
  9612. weight: math.unit(150, "lbs"),
  9613. name: "Front",
  9614. image: {
  9615. source: "./media/characters/coffee/front.svg",
  9616. extra: 946/880,
  9617. bottom: 66/1012
  9618. }
  9619. },
  9620. foot: {
  9621. height: math.unit(1.29, "feet"),
  9622. name: "Foot",
  9623. image: {
  9624. source: "./media/characters/coffee/foot.svg"
  9625. }
  9626. },
  9627. },
  9628. [
  9629. {
  9630. name: "Micro",
  9631. height: math.unit(2, "inches"),
  9632. },
  9633. {
  9634. name: "Normal",
  9635. height: math.unit(5 + 9 / 12, "feet"),
  9636. default: true
  9637. },
  9638. {
  9639. name: "Macro",
  9640. height: math.unit(800, "feet")
  9641. },
  9642. {
  9643. name: "Megamacro",
  9644. height: math.unit(25, "miles")
  9645. }
  9646. ]
  9647. ))
  9648. characterMakers.push(() => makeCharacter(
  9649. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9650. {
  9651. front: {
  9652. height: math.unit(6, "feet"),
  9653. weight: math.unit(200, "lbs"),
  9654. name: "Front",
  9655. image: {
  9656. source: "./media/characters/chari-gal/front.svg",
  9657. extra: 735/649,
  9658. bottom: 55/790
  9659. },
  9660. form: "normal",
  9661. default: true
  9662. },
  9663. back: {
  9664. height: math.unit(6, "feet"),
  9665. weight: math.unit(200, "lb"),
  9666. name: "Back",
  9667. image: {
  9668. source: "./media/characters/chari-gal/back.svg",
  9669. extra: 762/666,
  9670. bottom: 31/793
  9671. },
  9672. form: "normal"
  9673. },
  9674. mouth: {
  9675. height: math.unit(1.35, "feet"),
  9676. name: "Mouth",
  9677. image: {
  9678. source: "./media/characters/chari-gal/mouth.svg"
  9679. },
  9680. form: "normal"
  9681. },
  9682. gigantamax: {
  9683. height: math.unit(6 * 16, "feet"),
  9684. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9685. name: "Gigantamax",
  9686. image: {
  9687. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9688. extra: 1507/1149,
  9689. bottom: 254/1761
  9690. },
  9691. form: "gigantamax",
  9692. default: true
  9693. },
  9694. },
  9695. [
  9696. {
  9697. name: "Normal",
  9698. height: math.unit(5 + 7 / 12, "feet"),
  9699. form: "normal",
  9700. },
  9701. {
  9702. name: "Macro",
  9703. height: math.unit(200, "feet"),
  9704. default: true,
  9705. form: "normal"
  9706. },
  9707. {
  9708. name: "Normal",
  9709. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9710. form: "gigantamax",
  9711. },
  9712. {
  9713. name: "Macro",
  9714. height: math.unit(16 * 200, "feet"),
  9715. default: true,
  9716. form: "gigantamax"
  9717. },
  9718. ],
  9719. {
  9720. "normal": {
  9721. name: "Normal",
  9722. default: true
  9723. },
  9724. "gigantamax": {
  9725. name: "Gigantamax",
  9726. },
  9727. }
  9728. ))
  9729. characterMakers.push(() => makeCharacter(
  9730. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9731. {
  9732. front: {
  9733. height: math.unit(6, "feet"),
  9734. weight: math.unit(150, "lbs"),
  9735. name: "Front",
  9736. image: {
  9737. source: "./media/characters/nova/front.svg",
  9738. extra: 5000 / 4722,
  9739. bottom: 0.02
  9740. }
  9741. }
  9742. },
  9743. [
  9744. {
  9745. name: "Micro-",
  9746. height: math.unit(0.8, "inches")
  9747. },
  9748. {
  9749. name: "Micro",
  9750. height: math.unit(2, "inches"),
  9751. default: true
  9752. },
  9753. ]
  9754. ))
  9755. characterMakers.push(() => makeCharacter(
  9756. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9757. {
  9758. koboldFront: {
  9759. height: math.unit(3 + 1 / 12, "feet"),
  9760. weight: math.unit(21.7, "lbs"),
  9761. name: "Front",
  9762. image: {
  9763. source: "./media/characters/argent/kobold-front.svg",
  9764. extra: 1471 / 1331,
  9765. bottom: 100.8 / 1575.5
  9766. },
  9767. form: "kobold",
  9768. default: true
  9769. },
  9770. dragonFront: {
  9771. height: math.unit(75, "inches"),
  9772. name: "Front",
  9773. image: {
  9774. source: "./media/characters/argent/dragon-front.svg",
  9775. extra: 1389/1248,
  9776. bottom: 54/1443
  9777. },
  9778. form: "dragon",
  9779. },
  9780. dragonBack: {
  9781. height: math.unit(75, "inches"),
  9782. name: "Back",
  9783. image: {
  9784. source: "./media/characters/argent/dragon-back.svg",
  9785. extra: 1399/1271,
  9786. bottom: 23/1422
  9787. },
  9788. form: "dragon",
  9789. },
  9790. dragonDressed: {
  9791. height: math.unit(75, "inches"),
  9792. name: "Dressed",
  9793. image: {
  9794. source: "./media/characters/argent/dragon-dressed.svg",
  9795. extra: 1350/1215,
  9796. bottom: 26/1376
  9797. },
  9798. form: "dragon"
  9799. },
  9800. dragonHead: {
  9801. height: math.unit(23.5, "inches"),
  9802. name: "Head",
  9803. image: {
  9804. source: "./media/characters/argent/dragon-head.svg"
  9805. },
  9806. form: "dragon",
  9807. },
  9808. },
  9809. [
  9810. {
  9811. name: "Micro",
  9812. height: math.unit(2, "inches"),
  9813. form: "kobold",
  9814. },
  9815. {
  9816. name: "Normal",
  9817. height: math.unit(3 + 1 / 12, "feet"),
  9818. form: "kobold",
  9819. default: true
  9820. },
  9821. {
  9822. name: "Macro",
  9823. height: math.unit(120, "feet"),
  9824. form: "kobold",
  9825. },
  9826. {
  9827. name: "Speck",
  9828. height: math.unit(1, "mm"),
  9829. form: "dragon",
  9830. },
  9831. {
  9832. name: "Tiny",
  9833. height: math.unit(1, "cm"),
  9834. form: "dragon",
  9835. },
  9836. {
  9837. name: "Micro",
  9838. height: math.unit(5, "cm"),
  9839. form: "dragon",
  9840. },
  9841. {
  9842. name: "Normal",
  9843. height: math.unit(75, "inches"),
  9844. form: "dragon",
  9845. default: true
  9846. },
  9847. {
  9848. name: "Extra Tall",
  9849. height: math.unit(9, "feet"),
  9850. form: "dragon",
  9851. },
  9852. {
  9853. name: "Inconvenient",
  9854. height: math.unit(5, "meters"),
  9855. form: "dragon",
  9856. },
  9857. {
  9858. name: "Macro",
  9859. height: math.unit(70, "meters"),
  9860. form: "dragon",
  9861. },
  9862. {
  9863. name: "Macro+",
  9864. height: math.unit(250, "meters"),
  9865. form: "dragon",
  9866. },
  9867. {
  9868. name: "Megamacro",
  9869. height: math.unit(20, "km"),
  9870. form: "dragon",
  9871. },
  9872. {
  9873. name: "Mountainous",
  9874. height: math.unit(100, "km"),
  9875. form: "dragon",
  9876. },
  9877. {
  9878. name: "Continental",
  9879. height: math.unit(2, "megameters"),
  9880. form: "dragon",
  9881. },
  9882. {
  9883. name: "Too Big",
  9884. height: math.unit(900, "megameters"),
  9885. form: "dragon",
  9886. },
  9887. ],
  9888. {
  9889. "kobold": {
  9890. name: "Kobold",
  9891. default: true
  9892. },
  9893. "dragon": {
  9894. name: "Dragon",
  9895. },
  9896. }
  9897. ))
  9898. characterMakers.push(() => makeCharacter(
  9899. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9900. {
  9901. lamp: {
  9902. height: math.unit(7 * 1559 / 989, "feet"),
  9903. name: "Magic Lamp",
  9904. image: {
  9905. source: "./media/characters/mira-al-cul/lamp.svg",
  9906. extra: 1617 / 1559
  9907. }
  9908. },
  9909. front: {
  9910. height: math.unit(7, "feet"),
  9911. name: "Front",
  9912. image: {
  9913. source: "./media/characters/mira-al-cul/front.svg",
  9914. extra: 1044 / 990
  9915. }
  9916. },
  9917. },
  9918. [
  9919. {
  9920. name: "Heavily Restricted",
  9921. height: math.unit(7 * 1559 / 989, "feet")
  9922. },
  9923. {
  9924. name: "Freshly Freed",
  9925. height: math.unit(50 * 1559 / 989, "feet")
  9926. },
  9927. {
  9928. name: "World Encompassing",
  9929. height: math.unit(10000 * 1559 / 989, "miles")
  9930. },
  9931. {
  9932. name: "Galactic",
  9933. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9934. },
  9935. {
  9936. name: "Palmed Universe",
  9937. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9938. default: true
  9939. },
  9940. {
  9941. name: "Multiversal Matriarch",
  9942. height: math.unit(8.87e10, "yottameters")
  9943. },
  9944. {
  9945. name: "Void Mother",
  9946. height: math.unit(3.14e110, "yottaparsecs")
  9947. },
  9948. {
  9949. name: "Toying with Transcendence",
  9950. height: math.unit(1e307, "meters")
  9951. },
  9952. ]
  9953. ))
  9954. characterMakers.push(() => makeCharacter(
  9955. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9956. {
  9957. front: {
  9958. height: math.unit(17 + 1 / 12, "feet"),
  9959. weight: math.unit(476.2 * 5, "lbs"),
  9960. name: "Front",
  9961. image: {
  9962. source: "./media/characters/kuro-shi-uchū/front.svg",
  9963. extra: 2329 / 1835,
  9964. bottom: 0.02
  9965. }
  9966. },
  9967. },
  9968. [
  9969. {
  9970. name: "Micro",
  9971. height: math.unit(2, "inches")
  9972. },
  9973. {
  9974. name: "Normal",
  9975. height: math.unit(12, "meters")
  9976. },
  9977. {
  9978. name: "Planetary",
  9979. height: math.unit(0.00929, "AU"),
  9980. default: true
  9981. },
  9982. {
  9983. name: "Universal",
  9984. height: math.unit(20, "gigaparsecs")
  9985. },
  9986. ]
  9987. ))
  9988. characterMakers.push(() => makeCharacter(
  9989. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9990. {
  9991. front: {
  9992. height: math.unit(5 + 2 / 12, "feet"),
  9993. weight: math.unit(120, "lbs"),
  9994. name: "Front",
  9995. image: {
  9996. source: "./media/characters/katherine/front.svg",
  9997. extra: 2075 / 1969
  9998. }
  9999. },
  10000. dress: {
  10001. height: math.unit(5 + 2 / 12, "feet"),
  10002. weight: math.unit(120, "lbs"),
  10003. name: "Dress",
  10004. image: {
  10005. source: "./media/characters/katherine/dress.svg",
  10006. extra: 2258 / 2064
  10007. }
  10008. },
  10009. },
  10010. [
  10011. {
  10012. name: "Micro",
  10013. height: math.unit(1, "inches"),
  10014. default: true
  10015. },
  10016. {
  10017. name: "Normal",
  10018. height: math.unit(5 + 2 / 12, "feet")
  10019. },
  10020. {
  10021. name: "Macro",
  10022. height: math.unit(100, "meters")
  10023. },
  10024. {
  10025. name: "Megamacro",
  10026. height: math.unit(80, "miles")
  10027. },
  10028. ]
  10029. ))
  10030. characterMakers.push(() => makeCharacter(
  10031. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10032. {
  10033. front: {
  10034. height: math.unit(7 + 8 / 12, "feet"),
  10035. weight: math.unit(250, "lbs"),
  10036. name: "Front",
  10037. image: {
  10038. source: "./media/characters/yevis/front.svg",
  10039. extra: 1938 / 1755
  10040. }
  10041. }
  10042. },
  10043. [
  10044. {
  10045. name: "Mortal",
  10046. height: math.unit(7 + 8 / 12, "feet")
  10047. },
  10048. {
  10049. name: "Battle",
  10050. height: math.unit(25 + 11 / 12, "feet")
  10051. },
  10052. {
  10053. name: "Wrath",
  10054. height: math.unit(1654 + 11 / 12, "feet")
  10055. },
  10056. {
  10057. name: "Planet Destroyer",
  10058. height: math.unit(12000, "miles")
  10059. },
  10060. {
  10061. name: "Galaxy Conqueror",
  10062. height: math.unit(1.45, "zettameters"),
  10063. default: true
  10064. },
  10065. {
  10066. name: "Universal War",
  10067. height: math.unit(184, "gigaparsecs")
  10068. },
  10069. {
  10070. name: "Eternity War",
  10071. height: math.unit(1.98e55, "yottaparsecs")
  10072. },
  10073. ]
  10074. ))
  10075. characterMakers.push(() => makeCharacter(
  10076. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10077. {
  10078. front: {
  10079. height: math.unit(5 + 8 / 12, "feet"),
  10080. weight: math.unit(63, "kg"),
  10081. name: "Front",
  10082. image: {
  10083. source: "./media/characters/xavier/front.svg",
  10084. extra: 944 / 883
  10085. }
  10086. },
  10087. frontStretch: {
  10088. height: math.unit(5 + 8 / 12, "feet"),
  10089. weight: math.unit(63, "kg"),
  10090. name: "Stretching",
  10091. image: {
  10092. source: "./media/characters/xavier/front-stretch.svg",
  10093. extra: 962 / 820
  10094. }
  10095. },
  10096. },
  10097. [
  10098. {
  10099. name: "Normal",
  10100. height: math.unit(5 + 8 / 12, "feet")
  10101. },
  10102. {
  10103. name: "Macro",
  10104. height: math.unit(100, "meters"),
  10105. default: true
  10106. },
  10107. {
  10108. name: "McLargeHuge",
  10109. height: math.unit(10, "miles")
  10110. },
  10111. ]
  10112. ))
  10113. characterMakers.push(() => makeCharacter(
  10114. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10115. {
  10116. front: {
  10117. height: math.unit(5 + 5 / 12, "feet"),
  10118. weight: math.unit(150, "lb"),
  10119. name: "Front",
  10120. image: {
  10121. source: "./media/characters/joshii/front.svg",
  10122. extra: 765 / 653,
  10123. bottom: 51 / 816
  10124. }
  10125. },
  10126. foot: {
  10127. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10128. name: "Foot",
  10129. image: {
  10130. source: "./media/characters/joshii/foot.svg"
  10131. }
  10132. },
  10133. },
  10134. [
  10135. {
  10136. name: "Micro",
  10137. height: math.unit(2, "inches")
  10138. },
  10139. {
  10140. name: "Normal",
  10141. height: math.unit(5 + 5 / 12, "feet")
  10142. },
  10143. {
  10144. name: "Macro",
  10145. height: math.unit(785, "feet"),
  10146. default: true
  10147. },
  10148. {
  10149. name: "Megamacro",
  10150. height: math.unit(24.5, "miles")
  10151. },
  10152. ]
  10153. ))
  10154. characterMakers.push(() => makeCharacter(
  10155. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10156. {
  10157. front: {
  10158. height: math.unit(6, "feet"),
  10159. weight: math.unit(150, "lb"),
  10160. name: "Front",
  10161. image: {
  10162. source: "./media/characters/goddess-elizabeth/front.svg",
  10163. extra: 1800 / 1525,
  10164. bottom: 0.005
  10165. }
  10166. },
  10167. foot: {
  10168. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10169. name: "Foot",
  10170. image: {
  10171. source: "./media/characters/goddess-elizabeth/foot.svg"
  10172. }
  10173. },
  10174. mouth: {
  10175. height: math.unit(6, "feet"),
  10176. name: "Mouth",
  10177. image: {
  10178. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10179. }
  10180. },
  10181. },
  10182. [
  10183. {
  10184. name: "Micro",
  10185. height: math.unit(12, "feet")
  10186. },
  10187. {
  10188. name: "Normal",
  10189. height: math.unit(80, "miles"),
  10190. default: true
  10191. },
  10192. {
  10193. name: "Macro",
  10194. height: math.unit(15000, "parsecs")
  10195. },
  10196. ]
  10197. ))
  10198. characterMakers.push(() => makeCharacter(
  10199. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10200. {
  10201. front: {
  10202. height: math.unit(5 + 9 / 12, "feet"),
  10203. weight: math.unit(144, "lb"),
  10204. name: "Front",
  10205. image: {
  10206. source: "./media/characters/kara/front.svg"
  10207. }
  10208. },
  10209. feet: {
  10210. height: math.unit(6 / 6.765, "feet"),
  10211. name: "Kara's Feet",
  10212. rename: true,
  10213. image: {
  10214. source: "./media/characters/kara/feet.svg"
  10215. }
  10216. },
  10217. },
  10218. [
  10219. {
  10220. name: "Normal",
  10221. height: math.unit(5 + 9 / 12, "feet")
  10222. },
  10223. {
  10224. name: "Macro",
  10225. height: math.unit(174, "feet"),
  10226. default: true
  10227. },
  10228. ]
  10229. ))
  10230. characterMakers.push(() => makeCharacter(
  10231. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10232. {
  10233. front: {
  10234. height: math.unit(18, "feet"),
  10235. weight: math.unit(4050, "lb"),
  10236. name: "Front",
  10237. image: {
  10238. source: "./media/characters/tyrone/front.svg",
  10239. extra: 2405 / 2270,
  10240. bottom: 182 / 2587
  10241. }
  10242. },
  10243. },
  10244. [
  10245. {
  10246. name: "Normal",
  10247. height: math.unit(18, "feet"),
  10248. default: true
  10249. },
  10250. {
  10251. name: "Macro",
  10252. height: math.unit(300, "feet")
  10253. },
  10254. {
  10255. name: "Megamacro",
  10256. height: math.unit(15, "km")
  10257. },
  10258. {
  10259. name: "Gigamacro",
  10260. height: math.unit(500, "km")
  10261. },
  10262. {
  10263. name: "Teramacro",
  10264. height: math.unit(0.5, "gigameters")
  10265. },
  10266. {
  10267. name: "Omnimacro",
  10268. height: math.unit(1e252, "yottauniverse")
  10269. },
  10270. ]
  10271. ))
  10272. characterMakers.push(() => makeCharacter(
  10273. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10274. {
  10275. front: {
  10276. height: math.unit(7 + 8 / 12, "feet"),
  10277. weight: math.unit(120, "lb"),
  10278. name: "Front",
  10279. image: {
  10280. source: "./media/characters/danny/front.svg",
  10281. extra: 1490 / 1350
  10282. }
  10283. },
  10284. back: {
  10285. height: math.unit(7 + 8 / 12, "feet"),
  10286. weight: math.unit(120, "lb"),
  10287. name: "Back",
  10288. image: {
  10289. source: "./media/characters/danny/back.svg",
  10290. extra: 1490 / 1350
  10291. }
  10292. },
  10293. },
  10294. [
  10295. {
  10296. name: "Normal",
  10297. height: math.unit(7 + 8 / 12, "feet"),
  10298. default: true
  10299. },
  10300. ]
  10301. ))
  10302. characterMakers.push(() => makeCharacter(
  10303. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10304. {
  10305. front: {
  10306. height: math.unit(3.5, "inches"),
  10307. weight: math.unit(19, "grams"),
  10308. name: "Front",
  10309. image: {
  10310. source: "./media/characters/mallow/front.svg",
  10311. extra: 471 / 431
  10312. }
  10313. },
  10314. back: {
  10315. height: math.unit(3.5, "inches"),
  10316. weight: math.unit(19, "grams"),
  10317. name: "Back",
  10318. image: {
  10319. source: "./media/characters/mallow/back.svg",
  10320. extra: 471 / 431
  10321. }
  10322. },
  10323. },
  10324. [
  10325. {
  10326. name: "Normal",
  10327. height: math.unit(3.5, "inches"),
  10328. default: true
  10329. },
  10330. ]
  10331. ))
  10332. characterMakers.push(() => makeCharacter(
  10333. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10334. {
  10335. front: {
  10336. height: math.unit(9, "feet"),
  10337. weight: math.unit(230, "kg"),
  10338. name: "Front",
  10339. image: {
  10340. source: "./media/characters/starry-aqua/front.svg"
  10341. }
  10342. },
  10343. back: {
  10344. height: math.unit(9, "feet"),
  10345. weight: math.unit(230, "kg"),
  10346. name: "Back",
  10347. image: {
  10348. source: "./media/characters/starry-aqua/back.svg"
  10349. }
  10350. },
  10351. hand: {
  10352. height: math.unit(9 * 0.1168, "feet"),
  10353. name: "Hand",
  10354. image: {
  10355. source: "./media/characters/starry-aqua/hand.svg"
  10356. }
  10357. },
  10358. foot: {
  10359. height: math.unit(9 * 0.18, "feet"),
  10360. name: "Foot",
  10361. image: {
  10362. source: "./media/characters/starry-aqua/foot.svg"
  10363. }
  10364. }
  10365. },
  10366. [
  10367. {
  10368. name: "Micro",
  10369. height: math.unit(3, "inches")
  10370. },
  10371. {
  10372. name: "Normal",
  10373. height: math.unit(9, "feet")
  10374. },
  10375. {
  10376. name: "Macro",
  10377. height: math.unit(300, "feet"),
  10378. default: true
  10379. },
  10380. {
  10381. name: "Megamacro",
  10382. height: math.unit(3200, "feet")
  10383. }
  10384. ]
  10385. ))
  10386. characterMakers.push(() => makeCharacter(
  10387. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10388. {
  10389. front: {
  10390. height: math.unit(15, "feet"),
  10391. weight: math.unit(5026, "lb"),
  10392. name: "Front",
  10393. image: {
  10394. source: "./media/characters/luka-towers/front.svg",
  10395. extra: 1269/1133,
  10396. bottom: 51/1320
  10397. }
  10398. },
  10399. },
  10400. [
  10401. {
  10402. name: "Normal",
  10403. height: math.unit(15, "feet"),
  10404. default: true
  10405. },
  10406. {
  10407. name: "Minimacro",
  10408. height: math.unit(25, "feet")
  10409. },
  10410. {
  10411. name: "Macro",
  10412. height: math.unit(320, "feet")
  10413. },
  10414. {
  10415. name: "Megamacro",
  10416. height: math.unit(35000, "feet")
  10417. },
  10418. {
  10419. name: "Gigamacro",
  10420. height: math.unit(4000, "miles")
  10421. },
  10422. {
  10423. name: "Teramacro",
  10424. height: math.unit(15000, "miles")
  10425. },
  10426. ]
  10427. ))
  10428. characterMakers.push(() => makeCharacter(
  10429. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10430. {
  10431. front: {
  10432. height: math.unit(6, "feet"),
  10433. weight: math.unit(150, "lb"),
  10434. name: "Front",
  10435. image: {
  10436. source: "./media/characters/natalie-nightring/front.svg",
  10437. extra: 1,
  10438. bottom: 0.06
  10439. }
  10440. },
  10441. },
  10442. [
  10443. {
  10444. name: "Uh Oh",
  10445. height: math.unit(0.1, "mm")
  10446. },
  10447. {
  10448. name: "Small",
  10449. height: math.unit(3, "inches")
  10450. },
  10451. {
  10452. name: "Human Scale",
  10453. height: math.unit(6, "feet")
  10454. },
  10455. {
  10456. name: "Librarian",
  10457. height: math.unit(50, "feet"),
  10458. default: true
  10459. },
  10460. {
  10461. name: "Immense",
  10462. height: math.unit(200, "miles")
  10463. },
  10464. ]
  10465. ))
  10466. characterMakers.push(() => makeCharacter(
  10467. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10468. {
  10469. front: {
  10470. height: math.unit(6, "feet"),
  10471. weight: math.unit(180, "lbs"),
  10472. name: "Front",
  10473. image: {
  10474. source: "./media/characters/danni-rosie/front.svg",
  10475. extra: 1260 / 1128,
  10476. bottom: 0.022
  10477. }
  10478. },
  10479. },
  10480. [
  10481. {
  10482. name: "Micro",
  10483. height: math.unit(2, "inches"),
  10484. default: true
  10485. },
  10486. ]
  10487. ))
  10488. characterMakers.push(() => makeCharacter(
  10489. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10490. {
  10491. front: {
  10492. height: math.unit(5 + 9 / 12, "feet"),
  10493. weight: math.unit(220, "lb"),
  10494. name: "Front",
  10495. image: {
  10496. source: "./media/characters/samantha-kruse/front.svg",
  10497. extra: (985 / 935),
  10498. bottom: 0.03
  10499. }
  10500. },
  10501. frontUndressed: {
  10502. height: math.unit(5 + 9 / 12, "feet"),
  10503. weight: math.unit(220, "lb"),
  10504. name: "Front (Undressed)",
  10505. image: {
  10506. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10507. extra: (973 / 923),
  10508. bottom: 0.025
  10509. }
  10510. },
  10511. fat: {
  10512. height: math.unit(5 + 9 / 12, "feet"),
  10513. weight: math.unit(900, "lb"),
  10514. name: "Front (Fat)",
  10515. image: {
  10516. source: "./media/characters/samantha-kruse/fat.svg",
  10517. extra: 2688 / 2561
  10518. }
  10519. },
  10520. },
  10521. [
  10522. {
  10523. name: "Normal",
  10524. height: math.unit(5 + 9 / 12, "feet"),
  10525. default: true
  10526. }
  10527. ]
  10528. ))
  10529. characterMakers.push(() => makeCharacter(
  10530. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10531. {
  10532. back: {
  10533. height: math.unit(5 + 4 / 12, "feet"),
  10534. weight: math.unit(4963, "lb"),
  10535. name: "Back",
  10536. image: {
  10537. source: "./media/characters/amelia-rosie/back.svg",
  10538. extra: 1113 / 963,
  10539. bottom: 0.01
  10540. }
  10541. },
  10542. },
  10543. [
  10544. {
  10545. name: "Level 0",
  10546. height: math.unit(5 + 4 / 12, "feet")
  10547. },
  10548. {
  10549. name: "Level 1",
  10550. height: math.unit(164597, "feet"),
  10551. default: true
  10552. },
  10553. {
  10554. name: "Level 2",
  10555. height: math.unit(956243, "miles")
  10556. },
  10557. {
  10558. name: "Level 3",
  10559. height: math.unit(29421709423, "miles")
  10560. },
  10561. {
  10562. name: "Level 4",
  10563. height: math.unit(154, "lightyears")
  10564. },
  10565. {
  10566. name: "Level 5",
  10567. height: math.unit(4738272, "lightyears")
  10568. },
  10569. {
  10570. name: "Level 6",
  10571. height: math.unit(145787152896, "lightyears")
  10572. },
  10573. ]
  10574. ))
  10575. characterMakers.push(() => makeCharacter(
  10576. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10577. {
  10578. front: {
  10579. height: math.unit(5 + 11 / 12, "feet"),
  10580. weight: math.unit(65, "kg"),
  10581. name: "Front",
  10582. image: {
  10583. source: "./media/characters/rook-kitara/front.svg",
  10584. extra: 1347 / 1274,
  10585. bottom: 0.005
  10586. }
  10587. },
  10588. },
  10589. [
  10590. {
  10591. name: "Totally Unfair",
  10592. height: math.unit(1.8, "mm")
  10593. },
  10594. {
  10595. name: "Lap Rookie",
  10596. height: math.unit(1.4, "feet")
  10597. },
  10598. {
  10599. name: "Normal",
  10600. height: math.unit(5 + 11 / 12, "feet"),
  10601. default: true
  10602. },
  10603. {
  10604. name: "How Did This Happen",
  10605. height: math.unit(80, "miles")
  10606. }
  10607. ]
  10608. ))
  10609. characterMakers.push(() => makeCharacter(
  10610. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10611. {
  10612. front: {
  10613. height: math.unit(7, "feet"),
  10614. weight: math.unit(300, "lb"),
  10615. name: "Front",
  10616. image: {
  10617. source: "./media/characters/pisces/front.svg",
  10618. extra: 2255 / 2115,
  10619. bottom: 0.03
  10620. }
  10621. },
  10622. back: {
  10623. height: math.unit(7, "feet"),
  10624. weight: math.unit(300, "lb"),
  10625. name: "Back",
  10626. image: {
  10627. source: "./media/characters/pisces/back.svg",
  10628. extra: 2146 / 2055,
  10629. bottom: 0.04
  10630. }
  10631. },
  10632. },
  10633. [
  10634. {
  10635. name: "Normal",
  10636. height: math.unit(7, "feet"),
  10637. default: true
  10638. },
  10639. {
  10640. name: "Swimming Pool",
  10641. height: math.unit(12.2, "meters")
  10642. },
  10643. {
  10644. name: "Olympic Swimming Pool",
  10645. height: math.unit(56.3, "meters")
  10646. },
  10647. {
  10648. name: "Lake Superior",
  10649. height: math.unit(93900, "meters")
  10650. },
  10651. {
  10652. name: "Mediterranean Sea",
  10653. height: math.unit(644457, "meters")
  10654. },
  10655. {
  10656. name: "World's Oceans",
  10657. height: math.unit(4567491, "meters")
  10658. },
  10659. ]
  10660. ))
  10661. characterMakers.push(() => makeCharacter(
  10662. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10663. {
  10664. front: {
  10665. height: math.unit(2.3, "meters"),
  10666. weight: math.unit(120, "kg"),
  10667. name: "Front",
  10668. image: {
  10669. source: "./media/characters/zelas/front.svg"
  10670. }
  10671. },
  10672. side: {
  10673. height: math.unit(2.3, "meters"),
  10674. weight: math.unit(120, "kg"),
  10675. name: "Side",
  10676. image: {
  10677. source: "./media/characters/zelas/side.svg"
  10678. }
  10679. },
  10680. back: {
  10681. height: math.unit(2.3, "meters"),
  10682. weight: math.unit(120, "kg"),
  10683. name: "Back",
  10684. image: {
  10685. source: "./media/characters/zelas/back.svg"
  10686. }
  10687. },
  10688. foot: {
  10689. height: math.unit(1.116, "feet"),
  10690. name: "Foot",
  10691. image: {
  10692. source: "./media/characters/zelas/foot.svg"
  10693. }
  10694. },
  10695. },
  10696. [
  10697. {
  10698. name: "Normal",
  10699. height: math.unit(2.3, "meters")
  10700. },
  10701. {
  10702. name: "Macro",
  10703. height: math.unit(30, "meters"),
  10704. default: true
  10705. },
  10706. ]
  10707. ))
  10708. characterMakers.push(() => makeCharacter(
  10709. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10710. {
  10711. front: {
  10712. height: math.unit(1, "inch"),
  10713. weight: math.unit(0.21, "grams"),
  10714. name: "Front",
  10715. image: {
  10716. source: "./media/characters/talbot/front.svg",
  10717. extra: 594 / 544
  10718. }
  10719. },
  10720. },
  10721. [
  10722. {
  10723. name: "Micro",
  10724. height: math.unit(1, "inch"),
  10725. default: true
  10726. },
  10727. ]
  10728. ))
  10729. characterMakers.push(() => makeCharacter(
  10730. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10731. {
  10732. front: {
  10733. height: math.unit(3 + 3 / 12, "feet"),
  10734. weight: math.unit(51.8, "lb"),
  10735. name: "Front",
  10736. image: {
  10737. source: "./media/characters/fliss/front.svg",
  10738. extra: 840 / 640
  10739. }
  10740. },
  10741. },
  10742. [
  10743. {
  10744. name: "Teeny Tiny",
  10745. height: math.unit(1, "mm")
  10746. },
  10747. {
  10748. name: "Small",
  10749. height: math.unit(1, "inch"),
  10750. default: true
  10751. },
  10752. {
  10753. name: "Standard Sylveon",
  10754. height: math.unit(3 + 3 / 12, "feet")
  10755. },
  10756. {
  10757. name: "Large Nuisance",
  10758. height: math.unit(33, "feet")
  10759. },
  10760. {
  10761. name: "City Filler",
  10762. height: math.unit(3000, "feet")
  10763. },
  10764. {
  10765. name: "New Horizon",
  10766. height: math.unit(6000, "miles")
  10767. },
  10768. ]
  10769. ))
  10770. characterMakers.push(() => makeCharacter(
  10771. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10772. {
  10773. front: {
  10774. height: math.unit(5, "cm"),
  10775. weight: math.unit(1.94, "g"),
  10776. name: "Front",
  10777. image: {
  10778. source: "./media/characters/fleta/front.svg",
  10779. extra: 835 / 803
  10780. }
  10781. },
  10782. back: {
  10783. height: math.unit(5, "cm"),
  10784. weight: math.unit(1.94, "g"),
  10785. name: "Back",
  10786. image: {
  10787. source: "./media/characters/fleta/back.svg",
  10788. extra: 835 / 803
  10789. }
  10790. },
  10791. },
  10792. [
  10793. {
  10794. name: "Micro",
  10795. height: math.unit(5, "cm"),
  10796. default: true
  10797. },
  10798. ]
  10799. ))
  10800. characterMakers.push(() => makeCharacter(
  10801. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10802. {
  10803. front: {
  10804. height: math.unit(6, "feet"),
  10805. weight: math.unit(225, "lb"),
  10806. name: "Front",
  10807. image: {
  10808. source: "./media/characters/dominic/front.svg",
  10809. extra: 1770 / 1620,
  10810. bottom: 0.025
  10811. }
  10812. },
  10813. back: {
  10814. height: math.unit(6, "feet"),
  10815. weight: math.unit(225, "lb"),
  10816. name: "Back",
  10817. image: {
  10818. source: "./media/characters/dominic/back.svg",
  10819. extra: 1745 / 1620,
  10820. bottom: 0.065
  10821. }
  10822. },
  10823. },
  10824. [
  10825. {
  10826. name: "Nano",
  10827. height: math.unit(0.1, "mm")
  10828. },
  10829. {
  10830. name: "Micro-",
  10831. height: math.unit(1, "mm")
  10832. },
  10833. {
  10834. name: "Micro",
  10835. height: math.unit(4, "inches")
  10836. },
  10837. {
  10838. name: "Normal",
  10839. height: math.unit(6 + 4 / 12, "feet"),
  10840. default: true
  10841. },
  10842. {
  10843. name: "Macro",
  10844. height: math.unit(115, "feet")
  10845. },
  10846. {
  10847. name: "Macro+",
  10848. height: math.unit(955, "feet")
  10849. },
  10850. {
  10851. name: "Megamacro",
  10852. height: math.unit(8990, "feet")
  10853. },
  10854. {
  10855. name: "Gigmacro",
  10856. height: math.unit(9310, "miles")
  10857. },
  10858. {
  10859. name: "Teramacro",
  10860. height: math.unit(1567005010, "miles")
  10861. },
  10862. {
  10863. name: "Examacro",
  10864. height: math.unit(1425, "parsecs")
  10865. },
  10866. ]
  10867. ))
  10868. characterMakers.push(() => makeCharacter(
  10869. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10870. {
  10871. front: {
  10872. height: math.unit(400, "feet"),
  10873. weight: math.unit(44444444, "lb"),
  10874. name: "Front",
  10875. image: {
  10876. source: "./media/characters/major-colonel/front.svg"
  10877. }
  10878. },
  10879. back: {
  10880. height: math.unit(400, "feet"),
  10881. weight: math.unit(44444444, "lb"),
  10882. name: "Back",
  10883. image: {
  10884. source: "./media/characters/major-colonel/back.svg"
  10885. }
  10886. },
  10887. },
  10888. [
  10889. {
  10890. name: "Macro",
  10891. height: math.unit(400, "feet"),
  10892. default: true
  10893. },
  10894. ]
  10895. ))
  10896. characterMakers.push(() => makeCharacter(
  10897. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10898. {
  10899. catFront: {
  10900. height: math.unit(6, "feet"),
  10901. weight: math.unit(120, "lb"),
  10902. name: "Front (Cat Side)",
  10903. image: {
  10904. source: "./media/characters/axel-lycan/cat-front.svg",
  10905. extra: 430 / 402,
  10906. bottom: 43 / 472.35
  10907. }
  10908. },
  10909. catBack: {
  10910. height: math.unit(6, "feet"),
  10911. weight: math.unit(120, "lb"),
  10912. name: "Back (Cat Side)",
  10913. image: {
  10914. source: "./media/characters/axel-lycan/cat-back.svg",
  10915. extra: 447 / 419,
  10916. bottom: 23.3 / 469
  10917. }
  10918. },
  10919. wolfFront: {
  10920. height: math.unit(6, "feet"),
  10921. weight: math.unit(120, "lb"),
  10922. name: "Front (Wolf Side)",
  10923. image: {
  10924. source: "./media/characters/axel-lycan/wolf-front.svg",
  10925. extra: 485 / 456,
  10926. bottom: 19 / 504
  10927. }
  10928. },
  10929. wolfBack: {
  10930. height: math.unit(6, "feet"),
  10931. weight: math.unit(120, "lb"),
  10932. name: "Back (Wolf Side)",
  10933. image: {
  10934. source: "./media/characters/axel-lycan/wolf-back.svg",
  10935. extra: 475 / 438,
  10936. bottom: 39.2 / 514
  10937. }
  10938. },
  10939. },
  10940. [
  10941. {
  10942. name: "Macro",
  10943. height: math.unit(1, "km"),
  10944. default: true
  10945. },
  10946. ]
  10947. ))
  10948. characterMakers.push(() => makeCharacter(
  10949. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10950. {
  10951. front: {
  10952. height: math.unit(5 + 9 / 12, "feet"),
  10953. weight: math.unit(175, "lb"),
  10954. name: "Front",
  10955. image: {
  10956. source: "./media/characters/vanrel-hyena/front.svg",
  10957. extra: 1086 / 1010,
  10958. bottom: 0.04
  10959. }
  10960. },
  10961. },
  10962. [
  10963. {
  10964. name: "Normal",
  10965. height: math.unit(5 + 9 / 12, "feet"),
  10966. default: true
  10967. },
  10968. ]
  10969. ))
  10970. characterMakers.push(() => makeCharacter(
  10971. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10972. {
  10973. front: {
  10974. height: math.unit(6, "feet"),
  10975. weight: math.unit(103, "lb"),
  10976. name: "Front",
  10977. image: {
  10978. source: "./media/characters/abbott-absol/front.svg",
  10979. extra: 765/694,
  10980. bottom: 47/812
  10981. }
  10982. },
  10983. },
  10984. [
  10985. {
  10986. name: "Megamicro",
  10987. height: math.unit(0.1, "mm")
  10988. },
  10989. {
  10990. name: "Micro",
  10991. height: math.unit(1, "inch")
  10992. },
  10993. {
  10994. name: "Normal",
  10995. height: math.unit(6, "feet"),
  10996. default: true
  10997. },
  10998. ]
  10999. ))
  11000. characterMakers.push(() => makeCharacter(
  11001. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11002. {
  11003. front: {
  11004. height: math.unit(6, "feet"),
  11005. weight: math.unit(264, "lb"),
  11006. name: "Front",
  11007. image: {
  11008. source: "./media/characters/hector/front.svg",
  11009. extra: 2280 / 2130,
  11010. bottom: 0.07
  11011. }
  11012. },
  11013. },
  11014. [
  11015. {
  11016. name: "Normal",
  11017. height: math.unit(12.25, "foot"),
  11018. default: true
  11019. },
  11020. {
  11021. name: "Macro",
  11022. height: math.unit(160, "feet")
  11023. },
  11024. ]
  11025. ))
  11026. characterMakers.push(() => makeCharacter(
  11027. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11028. {
  11029. front: {
  11030. height: math.unit(6, "feet"),
  11031. weight: math.unit(150, "lb"),
  11032. name: "Front",
  11033. image: {
  11034. source: "./media/characters/sal/front.svg",
  11035. extra: 1846 / 1699,
  11036. bottom: 0.04
  11037. }
  11038. },
  11039. },
  11040. [
  11041. {
  11042. name: "Megamacro",
  11043. height: math.unit(10, "miles"),
  11044. default: true
  11045. },
  11046. ]
  11047. ))
  11048. characterMakers.push(() => makeCharacter(
  11049. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11050. {
  11051. front: {
  11052. height: math.unit(3, "meters"),
  11053. weight: math.unit(450, "kg"),
  11054. name: "front",
  11055. image: {
  11056. source: "./media/characters/ranger/front.svg",
  11057. extra: 2401 / 2243,
  11058. bottom: 0.05
  11059. }
  11060. },
  11061. },
  11062. [
  11063. {
  11064. name: "Normal",
  11065. height: math.unit(3, "meters"),
  11066. default: true
  11067. },
  11068. ]
  11069. ))
  11070. characterMakers.push(() => makeCharacter(
  11071. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11072. {
  11073. front: {
  11074. height: math.unit(14, "feet"),
  11075. weight: math.unit(800, "kg"),
  11076. name: "Front",
  11077. image: {
  11078. source: "./media/characters/theresa/front.svg",
  11079. extra: 3575 / 3346,
  11080. bottom: 0.03
  11081. }
  11082. },
  11083. },
  11084. [
  11085. {
  11086. name: "Normal",
  11087. height: math.unit(14, "feet"),
  11088. default: true
  11089. },
  11090. ]
  11091. ))
  11092. characterMakers.push(() => makeCharacter(
  11093. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11094. {
  11095. front: {
  11096. height: math.unit(6, "feet"),
  11097. weight: math.unit(3, "kg"),
  11098. name: "Front",
  11099. image: {
  11100. source: "./media/characters/ine/front.svg",
  11101. extra: 678 / 539,
  11102. bottom: 0.023
  11103. }
  11104. },
  11105. },
  11106. [
  11107. {
  11108. name: "Normal",
  11109. height: math.unit(2.265, "feet"),
  11110. default: true
  11111. },
  11112. ]
  11113. ))
  11114. characterMakers.push(() => makeCharacter(
  11115. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11116. {
  11117. front: {
  11118. height: math.unit(5, "feet"),
  11119. weight: math.unit(30, "kg"),
  11120. name: "Front",
  11121. image: {
  11122. source: "./media/characters/vial/front.svg",
  11123. extra: 1365 / 1277,
  11124. bottom: 0.04
  11125. }
  11126. },
  11127. },
  11128. [
  11129. {
  11130. name: "Normal",
  11131. height: math.unit(5, "feet"),
  11132. default: true
  11133. },
  11134. ]
  11135. ))
  11136. characterMakers.push(() => makeCharacter(
  11137. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11138. {
  11139. side: {
  11140. height: math.unit(3.4, "meters"),
  11141. weight: math.unit(1000, "lb"),
  11142. name: "Side",
  11143. image: {
  11144. source: "./media/characters/rovoska/side.svg",
  11145. extra: 4403 / 1515
  11146. }
  11147. },
  11148. },
  11149. [
  11150. {
  11151. name: "Normal",
  11152. height: math.unit(3.4, "meters"),
  11153. default: true
  11154. },
  11155. ]
  11156. ))
  11157. characterMakers.push(() => makeCharacter(
  11158. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11159. {
  11160. front: {
  11161. height: math.unit(8, "feet"),
  11162. weight: math.unit(315, "lb"),
  11163. name: "Front",
  11164. image: {
  11165. source: "./media/characters/gunner-rotthbauer/front.svg"
  11166. }
  11167. },
  11168. back: {
  11169. height: math.unit(8, "feet"),
  11170. weight: math.unit(315, "lb"),
  11171. name: "Back",
  11172. image: {
  11173. source: "./media/characters/gunner-rotthbauer/back.svg"
  11174. }
  11175. },
  11176. },
  11177. [
  11178. {
  11179. name: "Micro",
  11180. height: math.unit(3.5, "inches")
  11181. },
  11182. {
  11183. name: "Normal",
  11184. height: math.unit(8, "feet"),
  11185. default: true
  11186. },
  11187. {
  11188. name: "Macro",
  11189. height: math.unit(250, "feet")
  11190. },
  11191. {
  11192. name: "Megamacro",
  11193. height: math.unit(1, "AU")
  11194. },
  11195. ]
  11196. ))
  11197. characterMakers.push(() => makeCharacter(
  11198. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11199. {
  11200. front: {
  11201. height: math.unit(5 + 5 / 12, "feet"),
  11202. weight: math.unit(140, "lb"),
  11203. name: "Front",
  11204. image: {
  11205. source: "./media/characters/allatia/front.svg",
  11206. extra: 1227 / 1180,
  11207. bottom: 0.027
  11208. }
  11209. },
  11210. },
  11211. [
  11212. {
  11213. name: "Normal",
  11214. height: math.unit(5 + 5 / 12, "feet")
  11215. },
  11216. {
  11217. name: "Macro",
  11218. height: math.unit(250, "feet"),
  11219. default: true
  11220. },
  11221. {
  11222. name: "Megamacro",
  11223. height: math.unit(8, "miles")
  11224. }
  11225. ]
  11226. ))
  11227. characterMakers.push(() => makeCharacter(
  11228. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11229. {
  11230. front: {
  11231. height: math.unit(6, "feet"),
  11232. weight: math.unit(120, "lb"),
  11233. name: "Front",
  11234. image: {
  11235. source: "./media/characters/tene/front.svg",
  11236. extra: 814/750,
  11237. bottom: 36/850
  11238. }
  11239. },
  11240. stomping: {
  11241. height: math.unit(2.025, "meters"),
  11242. weight: math.unit(120, "lb"),
  11243. name: "Stomping",
  11244. image: {
  11245. source: "./media/characters/tene/stomping.svg",
  11246. extra: 885/821,
  11247. bottom: 15/900
  11248. }
  11249. },
  11250. sitting: {
  11251. height: math.unit(1, "meter"),
  11252. weight: math.unit(120, "lb"),
  11253. name: "Sitting",
  11254. image: {
  11255. source: "./media/characters/tene/sitting.svg",
  11256. extra: 396/366,
  11257. bottom: 79/475
  11258. }
  11259. },
  11260. smiling: {
  11261. height: math.unit(1.2, "feet"),
  11262. name: "Smiling",
  11263. image: {
  11264. source: "./media/characters/tene/smiling.svg",
  11265. extra: 1364/1071,
  11266. bottom: 0/1364
  11267. }
  11268. },
  11269. smug: {
  11270. height: math.unit(1.3, "feet"),
  11271. name: "Smug",
  11272. image: {
  11273. source: "./media/characters/tene/smug.svg",
  11274. extra: 1323/1082,
  11275. bottom: 0/1323
  11276. }
  11277. },
  11278. feral: {
  11279. height: math.unit(3.9, "feet"),
  11280. weight: math.unit(250, "lb"),
  11281. name: "Feral",
  11282. image: {
  11283. source: "./media/characters/tene/feral.svg",
  11284. extra: 717 / 458,
  11285. bottom: 0.179
  11286. }
  11287. },
  11288. },
  11289. [
  11290. {
  11291. name: "Normal",
  11292. height: math.unit(6, "feet")
  11293. },
  11294. {
  11295. name: "Macro",
  11296. height: math.unit(300, "feet"),
  11297. default: true
  11298. },
  11299. {
  11300. name: "Megamacro",
  11301. height: math.unit(5, "miles")
  11302. },
  11303. ]
  11304. ))
  11305. characterMakers.push(() => makeCharacter(
  11306. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11307. {
  11308. side: {
  11309. height: math.unit(6, "feet"),
  11310. name: "Side",
  11311. image: {
  11312. source: "./media/characters/evander/side.svg",
  11313. extra: 877 / 477
  11314. }
  11315. },
  11316. },
  11317. [
  11318. {
  11319. name: "Normal",
  11320. height: math.unit(0.83, "meters"),
  11321. default: true
  11322. },
  11323. ]
  11324. ))
  11325. characterMakers.push(() => makeCharacter(
  11326. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11327. {
  11328. front: {
  11329. height: math.unit(12, "feet"),
  11330. weight: math.unit(1000, "lb"),
  11331. name: "Front",
  11332. image: {
  11333. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11334. extra: 1762 / 1611
  11335. }
  11336. },
  11337. back: {
  11338. height: math.unit(12, "feet"),
  11339. weight: math.unit(1000, "lb"),
  11340. name: "Back",
  11341. image: {
  11342. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11343. extra: 1762 / 1611
  11344. }
  11345. },
  11346. },
  11347. [
  11348. {
  11349. name: "Normal",
  11350. height: math.unit(12, "feet"),
  11351. default: true
  11352. },
  11353. {
  11354. name: "Kaiju",
  11355. height: math.unit(150, "feet")
  11356. },
  11357. ]
  11358. ))
  11359. characterMakers.push(() => makeCharacter(
  11360. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11361. {
  11362. front: {
  11363. height: math.unit(6, "feet"),
  11364. weight: math.unit(150, "lb"),
  11365. name: "Front",
  11366. image: {
  11367. source: "./media/characters/zero-alurus/front.svg"
  11368. }
  11369. },
  11370. back: {
  11371. height: math.unit(6, "feet"),
  11372. weight: math.unit(150, "lb"),
  11373. name: "Back",
  11374. image: {
  11375. source: "./media/characters/zero-alurus/back.svg"
  11376. }
  11377. },
  11378. },
  11379. [
  11380. {
  11381. name: "Normal",
  11382. height: math.unit(5 + 10 / 12, "feet")
  11383. },
  11384. {
  11385. name: "Macro",
  11386. height: math.unit(60, "feet"),
  11387. default: true
  11388. },
  11389. {
  11390. name: "Macro+",
  11391. height: math.unit(450, "feet")
  11392. },
  11393. ]
  11394. ))
  11395. characterMakers.push(() => makeCharacter(
  11396. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11397. {
  11398. front: {
  11399. height: math.unit(6, "feet"),
  11400. weight: math.unit(200, "lb"),
  11401. name: "Front",
  11402. image: {
  11403. source: "./media/characters/mega-shi/front.svg",
  11404. extra: 1279 / 1250,
  11405. bottom: 0.02
  11406. }
  11407. },
  11408. back: {
  11409. height: math.unit(6, "feet"),
  11410. weight: math.unit(200, "lb"),
  11411. name: "Back",
  11412. image: {
  11413. source: "./media/characters/mega-shi/back.svg",
  11414. extra: 1279 / 1250,
  11415. bottom: 0.02
  11416. }
  11417. },
  11418. },
  11419. [
  11420. {
  11421. name: "Micro",
  11422. height: math.unit(16 + 6 / 12, "feet")
  11423. },
  11424. {
  11425. name: "Third Dimension",
  11426. height: math.unit(40, "meters")
  11427. },
  11428. {
  11429. name: "Normal",
  11430. height: math.unit(660, "feet"),
  11431. default: true
  11432. },
  11433. {
  11434. name: "Megamacro",
  11435. height: math.unit(10, "miles")
  11436. },
  11437. {
  11438. name: "Planetary Launch",
  11439. height: math.unit(500, "miles")
  11440. },
  11441. {
  11442. name: "Interstellar",
  11443. height: math.unit(1e9, "miles")
  11444. },
  11445. {
  11446. name: "Leaving the Universe",
  11447. height: math.unit(1, "gigaparsec")
  11448. },
  11449. {
  11450. name: "Travelling Universes",
  11451. height: math.unit(30e15, "parsecs")
  11452. },
  11453. ]
  11454. ))
  11455. characterMakers.push(() => makeCharacter(
  11456. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11457. {
  11458. front: {
  11459. height: math.unit(5 + 4/12, "feet"),
  11460. weight: math.unit(120, "lb"),
  11461. name: "Front",
  11462. image: {
  11463. source: "./media/characters/odyssey/front.svg",
  11464. extra: 1747/1571,
  11465. bottom: 47/1794
  11466. }
  11467. },
  11468. side: {
  11469. height: math.unit(5.1, "feet"),
  11470. weight: math.unit(120, "lb"),
  11471. name: "Side",
  11472. image: {
  11473. source: "./media/characters/odyssey/side.svg",
  11474. extra: 1847/1619,
  11475. bottom: 47/1894
  11476. }
  11477. },
  11478. lounging: {
  11479. height: math.unit(1.464, "feet"),
  11480. weight: math.unit(120, "lb"),
  11481. name: "Lounging",
  11482. image: {
  11483. source: "./media/characters/odyssey/lounging.svg",
  11484. extra: 1235/837,
  11485. bottom: 551/1786
  11486. }
  11487. },
  11488. },
  11489. [
  11490. {
  11491. name: "Normal",
  11492. height: math.unit(5 + 4 / 12, "feet")
  11493. },
  11494. {
  11495. name: "Macro",
  11496. height: math.unit(1, "km")
  11497. },
  11498. {
  11499. name: "Megamacro",
  11500. height: math.unit(3000, "km")
  11501. },
  11502. {
  11503. name: "Gigamacro",
  11504. height: math.unit(1, "AU"),
  11505. default: true
  11506. },
  11507. {
  11508. name: "Omniversal",
  11509. height: math.unit(100e14, "lightyears")
  11510. },
  11511. ]
  11512. ))
  11513. characterMakers.push(() => makeCharacter(
  11514. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11515. {
  11516. front: {
  11517. height: math.unit(5 + 10/12, "feet"),
  11518. name: "Front",
  11519. image: {
  11520. source: "./media/characters/mekuto/front.svg",
  11521. extra: 875/835,
  11522. bottom: 46/921
  11523. }
  11524. },
  11525. },
  11526. [
  11527. {
  11528. name: "Minimicro",
  11529. height: math.unit(0.2, "inches")
  11530. },
  11531. {
  11532. name: "Micro",
  11533. height: math.unit(1.5, "inches")
  11534. },
  11535. {
  11536. name: "Normal",
  11537. height: math.unit(5 + 10 / 12, "feet"),
  11538. default: true
  11539. },
  11540. {
  11541. name: "Minimacro",
  11542. height: math.unit(17 + 9 / 12, "feet")
  11543. },
  11544. {
  11545. name: "Macro",
  11546. height: math.unit(177.5, "feet")
  11547. },
  11548. {
  11549. name: "Megamacro",
  11550. height: math.unit(152, "miles")
  11551. },
  11552. ]
  11553. ))
  11554. characterMakers.push(() => makeCharacter(
  11555. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11556. {
  11557. front: {
  11558. height: math.unit(6.5, "inches"),
  11559. weight: math.unit(13, "oz"),
  11560. name: "Front",
  11561. image: {
  11562. source: "./media/characters/dafydd-tomos/front.svg",
  11563. extra: 2990 / 2603,
  11564. bottom: 0.03
  11565. }
  11566. },
  11567. },
  11568. [
  11569. {
  11570. name: "Micro",
  11571. height: math.unit(6.5, "inches"),
  11572. default: true
  11573. },
  11574. ]
  11575. ))
  11576. characterMakers.push(() => makeCharacter(
  11577. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11578. {
  11579. front: {
  11580. height: math.unit(6, "feet"),
  11581. weight: math.unit(150, "lb"),
  11582. name: "Front",
  11583. image: {
  11584. source: "./media/characters/splinter/front.svg",
  11585. extra: 2990 / 2882,
  11586. bottom: 0.04
  11587. }
  11588. },
  11589. back: {
  11590. height: math.unit(6, "feet"),
  11591. weight: math.unit(150, "lb"),
  11592. name: "Back",
  11593. image: {
  11594. source: "./media/characters/splinter/back.svg",
  11595. extra: 2990 / 2882,
  11596. bottom: 0.04
  11597. }
  11598. },
  11599. },
  11600. [
  11601. {
  11602. name: "Normal",
  11603. height: math.unit(6, "feet")
  11604. },
  11605. {
  11606. name: "Macro",
  11607. height: math.unit(230, "meters"),
  11608. default: true
  11609. },
  11610. ]
  11611. ))
  11612. characterMakers.push(() => makeCharacter(
  11613. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11614. {
  11615. front: {
  11616. height: math.unit(4 + 10 / 12, "feet"),
  11617. weight: math.unit(480, "lb"),
  11618. name: "Front",
  11619. image: {
  11620. source: "./media/characters/snow-gabumon/front.svg",
  11621. extra: 1140 / 963,
  11622. bottom: 0.058
  11623. }
  11624. },
  11625. back: {
  11626. height: math.unit(4 + 10 / 12, "feet"),
  11627. weight: math.unit(480, "lb"),
  11628. name: "Back",
  11629. image: {
  11630. source: "./media/characters/snow-gabumon/back.svg",
  11631. extra: 1115 / 962,
  11632. bottom: 0.041
  11633. }
  11634. },
  11635. frontUndresed: {
  11636. height: math.unit(4 + 10 / 12, "feet"),
  11637. weight: math.unit(480, "lb"),
  11638. name: "Front (Undressed)",
  11639. image: {
  11640. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11641. extra: 1061 / 960,
  11642. bottom: 0.045
  11643. }
  11644. },
  11645. },
  11646. [
  11647. {
  11648. name: "Micro",
  11649. height: math.unit(1, "inch")
  11650. },
  11651. {
  11652. name: "Normal",
  11653. height: math.unit(4 + 10 / 12, "feet"),
  11654. default: true
  11655. },
  11656. {
  11657. name: "Macro",
  11658. height: math.unit(200, "feet")
  11659. },
  11660. {
  11661. name: "Megamacro",
  11662. height: math.unit(120, "miles")
  11663. },
  11664. {
  11665. name: "Gigamacro",
  11666. height: math.unit(9800, "miles")
  11667. },
  11668. ]
  11669. ))
  11670. characterMakers.push(() => makeCharacter(
  11671. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11672. {
  11673. front: {
  11674. height: math.unit(1.7, "meters"),
  11675. weight: math.unit(140, "lb"),
  11676. name: "Front",
  11677. image: {
  11678. source: "./media/characters/moody/front.svg",
  11679. extra: 3226 / 3007,
  11680. bottom: 0.087
  11681. }
  11682. },
  11683. },
  11684. [
  11685. {
  11686. name: "Micro",
  11687. height: math.unit(1, "mm")
  11688. },
  11689. {
  11690. name: "Normal",
  11691. height: math.unit(1.7, "meters"),
  11692. default: true
  11693. },
  11694. {
  11695. name: "Macro",
  11696. height: math.unit(80, "meters")
  11697. },
  11698. {
  11699. name: "Macro+",
  11700. height: math.unit(500, "meters")
  11701. },
  11702. ]
  11703. ))
  11704. characterMakers.push(() => makeCharacter(
  11705. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11706. {
  11707. front: {
  11708. height: math.unit(6, "feet"),
  11709. weight: math.unit(150, "lb"),
  11710. name: "Front",
  11711. image: {
  11712. source: "./media/characters/zyas/front.svg",
  11713. extra: 1180 / 1120,
  11714. bottom: 0.045
  11715. }
  11716. },
  11717. },
  11718. [
  11719. {
  11720. name: "Normal",
  11721. height: math.unit(10, "feet"),
  11722. default: true
  11723. },
  11724. {
  11725. name: "Macro",
  11726. height: math.unit(500, "feet")
  11727. },
  11728. {
  11729. name: "Megamacro",
  11730. height: math.unit(5, "miles")
  11731. },
  11732. {
  11733. name: "Teramacro",
  11734. height: math.unit(150000, "miles")
  11735. },
  11736. ]
  11737. ))
  11738. characterMakers.push(() => makeCharacter(
  11739. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11740. {
  11741. front: {
  11742. height: math.unit(6, "feet"),
  11743. weight: math.unit(150, "lb"),
  11744. name: "Front",
  11745. image: {
  11746. source: "./media/characters/cuon/front.svg",
  11747. extra: 1390 / 1320,
  11748. bottom: 0.008
  11749. }
  11750. },
  11751. },
  11752. [
  11753. {
  11754. name: "Micro",
  11755. height: math.unit(3, "inches")
  11756. },
  11757. {
  11758. name: "Normal",
  11759. height: math.unit(18 + 9 / 12, "feet"),
  11760. default: true
  11761. },
  11762. {
  11763. name: "Macro",
  11764. height: math.unit(360, "feet")
  11765. },
  11766. {
  11767. name: "Megamacro",
  11768. height: math.unit(360, "miles")
  11769. },
  11770. ]
  11771. ))
  11772. characterMakers.push(() => makeCharacter(
  11773. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11774. {
  11775. front: {
  11776. height: math.unit(2.4, "meters"),
  11777. weight: math.unit(70, "kg"),
  11778. name: "Front",
  11779. image: {
  11780. source: "./media/characters/nyanuxk/front.svg",
  11781. extra: 1172 / 1084,
  11782. bottom: 0.065
  11783. }
  11784. },
  11785. side: {
  11786. height: math.unit(2.4, "meters"),
  11787. weight: math.unit(70, "kg"),
  11788. name: "Side",
  11789. image: {
  11790. source: "./media/characters/nyanuxk/side.svg",
  11791. extra: 1190 / 1132,
  11792. bottom: 0.007
  11793. }
  11794. },
  11795. back: {
  11796. height: math.unit(2.4, "meters"),
  11797. weight: math.unit(70, "kg"),
  11798. name: "Back",
  11799. image: {
  11800. source: "./media/characters/nyanuxk/back.svg",
  11801. extra: 1200 / 1141,
  11802. bottom: 0.015
  11803. }
  11804. },
  11805. foot: {
  11806. height: math.unit(0.52, "meters"),
  11807. name: "Foot",
  11808. image: {
  11809. source: "./media/characters/nyanuxk/foot.svg"
  11810. }
  11811. },
  11812. },
  11813. [
  11814. {
  11815. name: "Micro",
  11816. height: math.unit(2, "cm")
  11817. },
  11818. {
  11819. name: "Normal",
  11820. height: math.unit(2.4, "meters"),
  11821. default: true
  11822. },
  11823. {
  11824. name: "Smaller Macro",
  11825. height: math.unit(120, "meters")
  11826. },
  11827. {
  11828. name: "Bigger Macro",
  11829. height: math.unit(1.2, "km")
  11830. },
  11831. {
  11832. name: "Megamacro",
  11833. height: math.unit(15, "kilometers")
  11834. },
  11835. {
  11836. name: "Gigamacro",
  11837. height: math.unit(2000, "km")
  11838. },
  11839. {
  11840. name: "Teramacro",
  11841. height: math.unit(500000, "km")
  11842. },
  11843. ]
  11844. ))
  11845. characterMakers.push(() => makeCharacter(
  11846. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11847. {
  11848. side: {
  11849. height: math.unit(6, "feet"),
  11850. name: "Side",
  11851. image: {
  11852. source: "./media/characters/ailbhe/side.svg",
  11853. extra: 757 / 464,
  11854. bottom: 0.041
  11855. }
  11856. },
  11857. },
  11858. [
  11859. {
  11860. name: "Normal",
  11861. height: math.unit(1.07, "meters"),
  11862. default: true
  11863. },
  11864. ]
  11865. ))
  11866. characterMakers.push(() => makeCharacter(
  11867. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11868. {
  11869. front: {
  11870. height: math.unit(6, "feet"),
  11871. weight: math.unit(120, "kg"),
  11872. name: "Front",
  11873. image: {
  11874. source: "./media/characters/zevulfius/front.svg",
  11875. extra: 965 / 903
  11876. }
  11877. },
  11878. side: {
  11879. height: math.unit(6, "feet"),
  11880. weight: math.unit(120, "kg"),
  11881. name: "Side",
  11882. image: {
  11883. source: "./media/characters/zevulfius/side.svg",
  11884. extra: 939 / 900
  11885. }
  11886. },
  11887. back: {
  11888. height: math.unit(6, "feet"),
  11889. weight: math.unit(120, "kg"),
  11890. name: "Back",
  11891. image: {
  11892. source: "./media/characters/zevulfius/back.svg",
  11893. extra: 918 / 854,
  11894. bottom: 0.005
  11895. }
  11896. },
  11897. foot: {
  11898. height: math.unit(6 / 3.72, "feet"),
  11899. name: "Foot",
  11900. image: {
  11901. source: "./media/characters/zevulfius/foot.svg"
  11902. }
  11903. },
  11904. },
  11905. [
  11906. {
  11907. name: "Macro",
  11908. height: math.unit(750, "meters")
  11909. },
  11910. {
  11911. name: "Megamacro",
  11912. height: math.unit(20, "km"),
  11913. default: true
  11914. },
  11915. {
  11916. name: "Gigamacro",
  11917. height: math.unit(2000, "km")
  11918. },
  11919. {
  11920. name: "Teramacro",
  11921. height: math.unit(250000, "km")
  11922. },
  11923. ]
  11924. ))
  11925. characterMakers.push(() => makeCharacter(
  11926. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11927. {
  11928. front: {
  11929. height: math.unit(100, "feet"),
  11930. weight: math.unit(350, "kg"),
  11931. name: "Front",
  11932. image: {
  11933. source: "./media/characters/rikes/front.svg",
  11934. extra: 1565 / 1483,
  11935. bottom: 0.017
  11936. }
  11937. },
  11938. },
  11939. [
  11940. {
  11941. name: "Macro",
  11942. height: math.unit(100, "feet"),
  11943. default: true
  11944. },
  11945. ]
  11946. ))
  11947. characterMakers.push(() => makeCharacter(
  11948. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11949. {
  11950. front: {
  11951. height: math.unit(8, "feet"),
  11952. weight: math.unit(356, "lb"),
  11953. name: "Front",
  11954. image: {
  11955. source: "./media/characters/adam-silver-mane/front.svg",
  11956. extra: 1036/937,
  11957. bottom: 63/1099
  11958. }
  11959. },
  11960. side: {
  11961. height: math.unit(8, "feet"),
  11962. weight: math.unit(356, "lb"),
  11963. name: "Side",
  11964. image: {
  11965. source: "./media/characters/adam-silver-mane/side.svg",
  11966. extra: 997/901,
  11967. bottom: 59/1056
  11968. }
  11969. },
  11970. frontNsfw: {
  11971. height: math.unit(8, "feet"),
  11972. weight: math.unit(356, "lb"),
  11973. name: "Front (NSFW)",
  11974. image: {
  11975. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11976. extra: 1036/937,
  11977. bottom: 63/1099
  11978. }
  11979. },
  11980. sideNsfw: {
  11981. height: math.unit(8, "feet"),
  11982. weight: math.unit(356, "lb"),
  11983. name: "Side (NSFW)",
  11984. image: {
  11985. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11986. extra: 997/901,
  11987. bottom: 59/1056
  11988. }
  11989. },
  11990. dick: {
  11991. height: math.unit(2.1, "feet"),
  11992. name: "Dick",
  11993. image: {
  11994. source: "./media/characters/adam-silver-mane/dick.svg"
  11995. }
  11996. },
  11997. taur: {
  11998. height: math.unit(16, "feet"),
  11999. weight: math.unit(1500, "kg"),
  12000. name: "Taur",
  12001. image: {
  12002. source: "./media/characters/adam-silver-mane/taur.svg",
  12003. extra: 1713 / 1571,
  12004. bottom: 0.01
  12005. }
  12006. },
  12007. },
  12008. [
  12009. {
  12010. name: "Normal",
  12011. height: math.unit(8, "feet")
  12012. },
  12013. {
  12014. name: "Minimacro",
  12015. height: math.unit(80, "feet")
  12016. },
  12017. {
  12018. name: "MDA",
  12019. height: math.unit(80, "meters")
  12020. },
  12021. {
  12022. name: "Macro",
  12023. height: math.unit(800, "feet"),
  12024. default: true
  12025. },
  12026. {
  12027. name: "Megamacro",
  12028. height: math.unit(8000, "feet")
  12029. },
  12030. {
  12031. name: "Gigamacro",
  12032. height: math.unit(800, "miles")
  12033. },
  12034. {
  12035. name: "Teramacro",
  12036. height: math.unit(80000, "miles")
  12037. },
  12038. {
  12039. name: "Celestial",
  12040. height: math.unit(8e6, "miles")
  12041. },
  12042. {
  12043. name: "Star Dragon",
  12044. height: math.unit(800000, "parsecs")
  12045. },
  12046. {
  12047. name: "Godly",
  12048. height: math.unit(800, "teraparsecs")
  12049. },
  12050. ]
  12051. ))
  12052. characterMakers.push(() => makeCharacter(
  12053. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12054. {
  12055. front: {
  12056. height: math.unit(6, "feet"),
  12057. weight: math.unit(150, "lb"),
  12058. name: "Front",
  12059. image: {
  12060. source: "./media/characters/ky'owin/front.svg",
  12061. extra: 3862/3053,
  12062. bottom: 74/3936
  12063. }
  12064. },
  12065. },
  12066. [
  12067. {
  12068. name: "Normal",
  12069. height: math.unit(6 + 8 / 12, "feet")
  12070. },
  12071. {
  12072. name: "Large",
  12073. height: math.unit(68, "feet")
  12074. },
  12075. {
  12076. name: "Macro",
  12077. height: math.unit(132, "feet")
  12078. },
  12079. {
  12080. name: "Macro+",
  12081. height: math.unit(340, "feet")
  12082. },
  12083. {
  12084. name: "Macro++",
  12085. height: math.unit(680, "feet"),
  12086. default: true
  12087. },
  12088. {
  12089. name: "Megamacro",
  12090. height: math.unit(1, "mile")
  12091. },
  12092. {
  12093. name: "Megamacro+",
  12094. height: math.unit(10, "miles")
  12095. },
  12096. ]
  12097. ))
  12098. characterMakers.push(() => makeCharacter(
  12099. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12100. {
  12101. front: {
  12102. height: math.unit(4, "feet"),
  12103. weight: math.unit(50, "lb"),
  12104. name: "Front",
  12105. image: {
  12106. source: "./media/characters/mal/front.svg",
  12107. extra: 785 / 724,
  12108. bottom: 0.07
  12109. }
  12110. },
  12111. },
  12112. [
  12113. {
  12114. name: "Micro",
  12115. height: math.unit(4, "inches")
  12116. },
  12117. {
  12118. name: "Normal",
  12119. height: math.unit(4, "feet"),
  12120. default: true
  12121. },
  12122. {
  12123. name: "Macro",
  12124. height: math.unit(200, "feet")
  12125. },
  12126. ]
  12127. ))
  12128. characterMakers.push(() => makeCharacter(
  12129. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12130. {
  12131. front: {
  12132. height: math.unit(6, "feet"),
  12133. weight: math.unit(150, "lb"),
  12134. name: "Front",
  12135. image: {
  12136. source: "./media/characters/jordan-deware/front.svg",
  12137. extra: 1191 / 1012
  12138. }
  12139. },
  12140. },
  12141. [
  12142. {
  12143. name: "Nano",
  12144. height: math.unit(0.01, "mm")
  12145. },
  12146. {
  12147. name: "Minimicro",
  12148. height: math.unit(1, "mm")
  12149. },
  12150. {
  12151. name: "Micro",
  12152. height: math.unit(0.5, "inches")
  12153. },
  12154. {
  12155. name: "Normal",
  12156. height: math.unit(4, "feet"),
  12157. default: true
  12158. },
  12159. {
  12160. name: "Minimacro",
  12161. height: math.unit(40, "meters")
  12162. },
  12163. {
  12164. name: "Small Macro",
  12165. height: math.unit(400, "meters")
  12166. },
  12167. {
  12168. name: "Macro",
  12169. height: math.unit(4, "miles")
  12170. },
  12171. {
  12172. name: "Megamacro",
  12173. height: math.unit(40, "miles")
  12174. },
  12175. {
  12176. name: "Megamacro+",
  12177. height: math.unit(400, "miles")
  12178. },
  12179. {
  12180. name: "Gigamacro",
  12181. height: math.unit(400000, "miles")
  12182. },
  12183. ]
  12184. ))
  12185. characterMakers.push(() => makeCharacter(
  12186. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12187. {
  12188. side: {
  12189. height: math.unit(6, "feet"),
  12190. weight: math.unit(150, "lb"),
  12191. name: "Side",
  12192. image: {
  12193. source: "./media/characters/kimiko/side.svg",
  12194. extra: 600 / 358
  12195. }
  12196. },
  12197. },
  12198. [
  12199. {
  12200. name: "Normal",
  12201. height: math.unit(15, "feet"),
  12202. default: true
  12203. },
  12204. {
  12205. name: "Macro",
  12206. height: math.unit(220, "feet")
  12207. },
  12208. {
  12209. name: "Macro+",
  12210. height: math.unit(1450, "feet")
  12211. },
  12212. {
  12213. name: "Megamacro",
  12214. height: math.unit(11500, "feet")
  12215. },
  12216. {
  12217. name: "Gigamacro",
  12218. height: math.unit(9500, "miles")
  12219. },
  12220. {
  12221. name: "Teramacro",
  12222. height: math.unit(2208005005, "miles")
  12223. },
  12224. {
  12225. name: "Examacro",
  12226. height: math.unit(2750, "parsecs")
  12227. },
  12228. {
  12229. name: "Zettamacro",
  12230. height: math.unit(101500, "parsecs")
  12231. },
  12232. ]
  12233. ))
  12234. characterMakers.push(() => makeCharacter(
  12235. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12236. {
  12237. front: {
  12238. height: math.unit(6, "feet"),
  12239. weight: math.unit(70, "kg"),
  12240. name: "Front",
  12241. image: {
  12242. source: "./media/characters/andrew-sleepy/front.svg"
  12243. }
  12244. },
  12245. side: {
  12246. height: math.unit(6, "feet"),
  12247. weight: math.unit(70, "kg"),
  12248. name: "Side",
  12249. image: {
  12250. source: "./media/characters/andrew-sleepy/side.svg"
  12251. }
  12252. },
  12253. },
  12254. [
  12255. {
  12256. name: "Micro",
  12257. height: math.unit(1, "mm"),
  12258. default: true
  12259. },
  12260. ]
  12261. ))
  12262. characterMakers.push(() => makeCharacter(
  12263. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12264. {
  12265. front: {
  12266. height: math.unit(6, "feet"),
  12267. weight: math.unit(150, "lb"),
  12268. name: "Front",
  12269. image: {
  12270. source: "./media/characters/judio/front.svg",
  12271. extra: 1258 / 1110
  12272. }
  12273. },
  12274. },
  12275. [
  12276. {
  12277. name: "Normal",
  12278. height: math.unit(5 + 6 / 12, "feet")
  12279. },
  12280. {
  12281. name: "Macro",
  12282. height: math.unit(1000, "feet"),
  12283. default: true
  12284. },
  12285. {
  12286. name: "Megamacro",
  12287. height: math.unit(10, "miles")
  12288. },
  12289. ]
  12290. ))
  12291. characterMakers.push(() => makeCharacter(
  12292. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12293. {
  12294. frontDressed: {
  12295. height: math.unit(6, "feet"),
  12296. weight: math.unit(68, "kg"),
  12297. name: "Front (Dressed)",
  12298. image: {
  12299. source: "./media/characters/nomaxice/front-dressed.svg",
  12300. extra: 1137/824,
  12301. bottom: 74/1211
  12302. }
  12303. },
  12304. frontShorts: {
  12305. height: math.unit(6, "feet"),
  12306. weight: math.unit(68, "kg"),
  12307. name: "Front (Shorts)",
  12308. image: {
  12309. source: "./media/characters/nomaxice/front-shorts.svg",
  12310. extra: 1137/824,
  12311. bottom: 74/1211
  12312. }
  12313. },
  12314. back: {
  12315. height: math.unit(6, "feet"),
  12316. weight: math.unit(68, "kg"),
  12317. name: "Back",
  12318. image: {
  12319. source: "./media/characters/nomaxice/back.svg",
  12320. extra: 822/786,
  12321. bottom: 39/861
  12322. }
  12323. },
  12324. hand: {
  12325. height: math.unit(0.565, "feet"),
  12326. name: "Hand",
  12327. image: {
  12328. source: "./media/characters/nomaxice/hand.svg"
  12329. }
  12330. },
  12331. foot: {
  12332. height: math.unit(1, "feet"),
  12333. name: "Foot",
  12334. image: {
  12335. source: "./media/characters/nomaxice/foot.svg"
  12336. }
  12337. },
  12338. },
  12339. [
  12340. {
  12341. name: "Micro",
  12342. height: math.unit(8, "cm")
  12343. },
  12344. {
  12345. name: "Norm",
  12346. height: math.unit(1.82, "m")
  12347. },
  12348. {
  12349. name: "Norm+",
  12350. height: math.unit(8.8, "feet"),
  12351. default: true
  12352. },
  12353. {
  12354. name: "Big",
  12355. height: math.unit(8, "meters")
  12356. },
  12357. {
  12358. name: "Macro",
  12359. height: math.unit(18, "meters")
  12360. },
  12361. {
  12362. name: "Macro+",
  12363. height: math.unit(88, "meters")
  12364. },
  12365. ]
  12366. ))
  12367. characterMakers.push(() => makeCharacter(
  12368. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12369. {
  12370. front: {
  12371. height: math.unit(12, "feet"),
  12372. weight: math.unit(1.5, "tons"),
  12373. name: "Front",
  12374. image: {
  12375. source: "./media/characters/dydros/front.svg",
  12376. extra: 863 / 800,
  12377. bottom: 0.015
  12378. }
  12379. },
  12380. back: {
  12381. height: math.unit(12, "feet"),
  12382. weight: math.unit(1.5, "tons"),
  12383. name: "Back",
  12384. image: {
  12385. source: "./media/characters/dydros/back.svg",
  12386. extra: 900 / 843,
  12387. bottom: 0.005
  12388. }
  12389. },
  12390. },
  12391. [
  12392. {
  12393. name: "Normal",
  12394. height: math.unit(12, "feet"),
  12395. default: true
  12396. },
  12397. ]
  12398. ))
  12399. characterMakers.push(() => makeCharacter(
  12400. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12401. {
  12402. front: {
  12403. height: math.unit(6, "feet"),
  12404. weight: math.unit(100, "kg"),
  12405. name: "Front",
  12406. image: {
  12407. source: "./media/characters/riggi/front.svg",
  12408. extra: 5787 / 5303
  12409. }
  12410. },
  12411. hyper: {
  12412. height: math.unit(6 * 5 / 3, "feet"),
  12413. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12414. name: "Hyper",
  12415. image: {
  12416. source: "./media/characters/riggi/hyper.svg",
  12417. extra: 3595 / 3485
  12418. }
  12419. },
  12420. },
  12421. [
  12422. {
  12423. name: "Small Macro",
  12424. height: math.unit(50, "feet")
  12425. },
  12426. {
  12427. name: "Default",
  12428. height: math.unit(200, "feet"),
  12429. default: true
  12430. },
  12431. {
  12432. name: "Loom",
  12433. height: math.unit(10000, "feet")
  12434. },
  12435. {
  12436. name: "Cruising Altitude",
  12437. height: math.unit(30000, "feet")
  12438. },
  12439. {
  12440. name: "Megamacro",
  12441. height: math.unit(100, "miles")
  12442. },
  12443. {
  12444. name: "Continent Sized",
  12445. height: math.unit(2800, "miles")
  12446. },
  12447. {
  12448. name: "Earth Sized",
  12449. height: math.unit(8000, "miles")
  12450. },
  12451. ]
  12452. ))
  12453. characterMakers.push(() => makeCharacter(
  12454. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12455. {
  12456. front: {
  12457. height: math.unit(6, "feet"),
  12458. weight: math.unit(250, "lb"),
  12459. name: "Front",
  12460. image: {
  12461. source: "./media/characters/alexi/front.svg",
  12462. extra: 3483 / 3291,
  12463. bottom: 0.04
  12464. }
  12465. },
  12466. back: {
  12467. height: math.unit(6, "feet"),
  12468. weight: math.unit(250, "lb"),
  12469. name: "Back",
  12470. image: {
  12471. source: "./media/characters/alexi/back.svg",
  12472. extra: 3533 / 3356,
  12473. bottom: 0.021
  12474. }
  12475. },
  12476. frontTransforming: {
  12477. height: math.unit(8.58, "feet"),
  12478. weight: math.unit(1300, "lb"),
  12479. name: "Transforming",
  12480. image: {
  12481. source: "./media/characters/alexi/front-transforming.svg",
  12482. extra: 437 / 409,
  12483. bottom: 19 / 458.66
  12484. }
  12485. },
  12486. frontTransformed: {
  12487. height: math.unit(12.5, "feet"),
  12488. weight: math.unit(4000, "lb"),
  12489. name: "Transformed",
  12490. image: {
  12491. source: "./media/characters/alexi/front-transformed.svg",
  12492. extra: 639 / 614,
  12493. bottom: 30.55 / 671
  12494. }
  12495. },
  12496. },
  12497. [
  12498. {
  12499. name: "Normal",
  12500. height: math.unit(14, "feet"),
  12501. default: true
  12502. },
  12503. {
  12504. name: "Minimacro",
  12505. height: math.unit(30, "meters")
  12506. },
  12507. {
  12508. name: "Macro",
  12509. height: math.unit(500, "meters")
  12510. },
  12511. {
  12512. name: "Megamacro",
  12513. height: math.unit(9000, "km")
  12514. },
  12515. {
  12516. name: "Teramacro",
  12517. height: math.unit(384000, "km")
  12518. },
  12519. ]
  12520. ))
  12521. characterMakers.push(() => makeCharacter(
  12522. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12523. {
  12524. front: {
  12525. height: math.unit(6, "feet"),
  12526. weight: math.unit(150, "lb"),
  12527. name: "Front",
  12528. image: {
  12529. source: "./media/characters/kayroo/front.svg",
  12530. extra: 1153 / 1038,
  12531. bottom: 0.06
  12532. }
  12533. },
  12534. foot: {
  12535. height: math.unit(6, "feet"),
  12536. weight: math.unit(150, "lb"),
  12537. name: "Foot",
  12538. image: {
  12539. source: "./media/characters/kayroo/foot.svg"
  12540. }
  12541. },
  12542. },
  12543. [
  12544. {
  12545. name: "Normal",
  12546. height: math.unit(8, "feet"),
  12547. default: true
  12548. },
  12549. {
  12550. name: "Minimacro",
  12551. height: math.unit(250, "feet")
  12552. },
  12553. {
  12554. name: "Macro",
  12555. height: math.unit(2800, "feet")
  12556. },
  12557. {
  12558. name: "Megamacro",
  12559. height: math.unit(5200, "feet")
  12560. },
  12561. {
  12562. name: "Gigamacro",
  12563. height: math.unit(27000, "feet")
  12564. },
  12565. {
  12566. name: "Omega",
  12567. height: math.unit(45000, "feet")
  12568. },
  12569. ]
  12570. ))
  12571. characterMakers.push(() => makeCharacter(
  12572. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12573. {
  12574. front: {
  12575. height: math.unit(18, "feet"),
  12576. weight: math.unit(5800, "lb"),
  12577. name: "Front",
  12578. image: {
  12579. source: "./media/characters/rhys/front.svg",
  12580. extra: 3386 / 3090,
  12581. bottom: 0.07
  12582. }
  12583. },
  12584. },
  12585. [
  12586. {
  12587. name: "Normal",
  12588. height: math.unit(18, "feet"),
  12589. default: true
  12590. },
  12591. {
  12592. name: "Working Size",
  12593. height: math.unit(200, "feet")
  12594. },
  12595. {
  12596. name: "Demolition Size",
  12597. height: math.unit(2000, "feet")
  12598. },
  12599. {
  12600. name: "Maximum Licensed Size",
  12601. height: math.unit(5, "miles")
  12602. },
  12603. {
  12604. name: "Maximum Observed Size",
  12605. height: math.unit(10, "yottameters")
  12606. },
  12607. ]
  12608. ))
  12609. characterMakers.push(() => makeCharacter(
  12610. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12611. {
  12612. front: {
  12613. height: math.unit(6, "feet"),
  12614. weight: math.unit(250, "lb"),
  12615. name: "Front",
  12616. image: {
  12617. source: "./media/characters/toto/front.svg",
  12618. extra: 527 / 479,
  12619. bottom: 0.05
  12620. }
  12621. },
  12622. },
  12623. [
  12624. {
  12625. name: "Micro",
  12626. height: math.unit(3, "feet")
  12627. },
  12628. {
  12629. name: "Normal",
  12630. height: math.unit(10, "feet")
  12631. },
  12632. {
  12633. name: "Macro",
  12634. height: math.unit(150, "feet"),
  12635. default: true
  12636. },
  12637. {
  12638. name: "Megamacro",
  12639. height: math.unit(1200, "feet")
  12640. },
  12641. ]
  12642. ))
  12643. characterMakers.push(() => makeCharacter(
  12644. { name: "King", species: ["lion"], tags: ["anthro"] },
  12645. {
  12646. back: {
  12647. height: math.unit(6, "feet"),
  12648. weight: math.unit(150, "lb"),
  12649. name: "Back",
  12650. image: {
  12651. source: "./media/characters/king/back.svg"
  12652. }
  12653. },
  12654. },
  12655. [
  12656. {
  12657. name: "Micro",
  12658. height: math.unit(2, "inches")
  12659. },
  12660. {
  12661. name: "Normal",
  12662. height: math.unit(8, "feet")
  12663. },
  12664. {
  12665. name: "Macro",
  12666. height: math.unit(200, "feet"),
  12667. default: true
  12668. },
  12669. {
  12670. name: "Megamacro",
  12671. height: math.unit(50, "miles")
  12672. },
  12673. ]
  12674. ))
  12675. characterMakers.push(() => makeCharacter(
  12676. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12677. {
  12678. front: {
  12679. height: math.unit(11, "feet"),
  12680. weight: math.unit(1400, "lb"),
  12681. name: "Front",
  12682. image: {
  12683. source: "./media/characters/cordite/front.svg",
  12684. extra: 1919/1827,
  12685. bottom: 40/1959
  12686. }
  12687. },
  12688. side: {
  12689. height: math.unit(11, "feet"),
  12690. weight: math.unit(1400, "lb"),
  12691. name: "Side",
  12692. image: {
  12693. source: "./media/characters/cordite/side.svg",
  12694. extra: 1908/1793,
  12695. bottom: 38/1946
  12696. }
  12697. },
  12698. back: {
  12699. height: math.unit(11, "feet"),
  12700. weight: math.unit(1400, "lb"),
  12701. name: "Back",
  12702. image: {
  12703. source: "./media/characters/cordite/back.svg",
  12704. extra: 1938/1837,
  12705. bottom: 10/1948
  12706. }
  12707. },
  12708. feral: {
  12709. height: math.unit(2, "feet"),
  12710. weight: math.unit(90, "lb"),
  12711. name: "Feral",
  12712. image: {
  12713. source: "./media/characters/cordite/feral.svg",
  12714. extra: 1260 / 755,
  12715. bottom: 0.05
  12716. }
  12717. },
  12718. },
  12719. [
  12720. {
  12721. name: "Normal",
  12722. height: math.unit(11, "feet"),
  12723. default: true
  12724. },
  12725. ]
  12726. ))
  12727. characterMakers.push(() => makeCharacter(
  12728. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12729. {
  12730. front: {
  12731. height: math.unit(6, "feet"),
  12732. weight: math.unit(150, "lb"),
  12733. name: "Front",
  12734. image: {
  12735. source: "./media/characters/pianostrong/front.svg",
  12736. extra: 6577 / 6254,
  12737. bottom: 0.02
  12738. }
  12739. },
  12740. side: {
  12741. height: math.unit(6, "feet"),
  12742. weight: math.unit(150, "lb"),
  12743. name: "Side",
  12744. image: {
  12745. source: "./media/characters/pianostrong/side.svg",
  12746. extra: 6106 / 5730
  12747. }
  12748. },
  12749. back: {
  12750. height: math.unit(6, "feet"),
  12751. weight: math.unit(150, "lb"),
  12752. name: "Back",
  12753. image: {
  12754. source: "./media/characters/pianostrong/back.svg",
  12755. extra: 6085 / 5733,
  12756. bottom: 0.01
  12757. }
  12758. },
  12759. },
  12760. [
  12761. {
  12762. name: "Macro",
  12763. height: math.unit(100, "feet")
  12764. },
  12765. {
  12766. name: "Macro+",
  12767. height: math.unit(300, "feet"),
  12768. default: true
  12769. },
  12770. {
  12771. name: "Macro++",
  12772. height: math.unit(1000, "feet")
  12773. },
  12774. ]
  12775. ))
  12776. characterMakers.push(() => makeCharacter(
  12777. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12778. {
  12779. front: {
  12780. height: math.unit(6, "feet"),
  12781. weight: math.unit(150, "lb"),
  12782. name: "Front",
  12783. image: {
  12784. source: "./media/characters/kona/front.svg",
  12785. extra: 2960 / 2629,
  12786. bottom: 0.005
  12787. }
  12788. },
  12789. },
  12790. [
  12791. {
  12792. name: "Normal",
  12793. height: math.unit(11 + 8 / 12, "feet")
  12794. },
  12795. {
  12796. name: "Macro",
  12797. height: math.unit(850, "feet"),
  12798. default: true
  12799. },
  12800. {
  12801. name: "Macro+",
  12802. height: math.unit(1.5, "km"),
  12803. default: true
  12804. },
  12805. {
  12806. name: "Megamacro",
  12807. height: math.unit(80, "miles")
  12808. },
  12809. {
  12810. name: "Gigamacro",
  12811. height: math.unit(3500, "miles")
  12812. },
  12813. ]
  12814. ))
  12815. characterMakers.push(() => makeCharacter(
  12816. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12817. {
  12818. side: {
  12819. height: math.unit(1.9, "meters"),
  12820. weight: math.unit(326, "kg"),
  12821. name: "Side",
  12822. image: {
  12823. source: "./media/characters/levi/side.svg",
  12824. extra: 1704 / 1334,
  12825. bottom: 0.02
  12826. }
  12827. },
  12828. },
  12829. [
  12830. {
  12831. name: "Normal",
  12832. height: math.unit(1.9, "meters"),
  12833. default: true
  12834. },
  12835. {
  12836. name: "Macro",
  12837. height: math.unit(20, "meters")
  12838. },
  12839. {
  12840. name: "Macro+",
  12841. height: math.unit(200, "meters")
  12842. },
  12843. {
  12844. name: "Megamacro",
  12845. height: math.unit(2, "km")
  12846. },
  12847. {
  12848. name: "Megamacro+",
  12849. height: math.unit(20, "km")
  12850. },
  12851. {
  12852. name: "Gigamacro",
  12853. height: math.unit(2500, "km")
  12854. },
  12855. {
  12856. name: "Gigamacro+",
  12857. height: math.unit(120000, "km")
  12858. },
  12859. {
  12860. name: "Teramacro",
  12861. height: math.unit(7.77e6, "km")
  12862. },
  12863. ]
  12864. ))
  12865. characterMakers.push(() => makeCharacter(
  12866. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12867. {
  12868. front: {
  12869. height: math.unit(6 + 4/12, "feet"),
  12870. weight: math.unit(190, "lb"),
  12871. name: "Front",
  12872. image: {
  12873. source: "./media/characters/bmc/front.svg",
  12874. extra: 1626/1472,
  12875. bottom: 79/1705
  12876. }
  12877. },
  12878. back: {
  12879. height: math.unit(6 + 4/12, "feet"),
  12880. weight: math.unit(190, "lb"),
  12881. name: "Back",
  12882. image: {
  12883. source: "./media/characters/bmc/back.svg",
  12884. extra: 1640/1479,
  12885. bottom: 45/1685
  12886. }
  12887. },
  12888. frontArmor: {
  12889. height: math.unit(6 + 4/12, "feet"),
  12890. weight: math.unit(190, "lb"),
  12891. name: "Front-armor",
  12892. image: {
  12893. source: "./media/characters/bmc/front-armor.svg",
  12894. extra: 1538/1468,
  12895. bottom: 79/1617
  12896. }
  12897. },
  12898. },
  12899. [
  12900. {
  12901. name: "Human-sized",
  12902. height: math.unit(6 + 4 / 12, "feet")
  12903. },
  12904. {
  12905. name: "Interactive Size",
  12906. height: math.unit(25, "feet")
  12907. },
  12908. {
  12909. name: "Small",
  12910. height: math.unit(250, "feet")
  12911. },
  12912. {
  12913. name: "Normal",
  12914. height: math.unit(1250, "feet"),
  12915. default: true
  12916. },
  12917. {
  12918. name: "Good Day",
  12919. height: math.unit(88, "miles")
  12920. },
  12921. {
  12922. name: "Largest Measured Size",
  12923. height: math.unit(105.960, "galaxies")
  12924. },
  12925. ]
  12926. ))
  12927. characterMakers.push(() => makeCharacter(
  12928. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12929. {
  12930. front: {
  12931. height: math.unit(20, "feet"),
  12932. weight: math.unit(2016, "kg"),
  12933. name: "Front",
  12934. image: {
  12935. source: "./media/characters/sven-the-kaiju/front.svg",
  12936. extra: 1277/1250,
  12937. bottom: 35/1312
  12938. }
  12939. },
  12940. mouth: {
  12941. height: math.unit(1.85, "feet"),
  12942. name: "Mouth",
  12943. image: {
  12944. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12945. }
  12946. },
  12947. },
  12948. [
  12949. {
  12950. name: "Fairy",
  12951. height: math.unit(6, "inches")
  12952. },
  12953. {
  12954. name: "Normal",
  12955. height: math.unit(20, "feet"),
  12956. default: true
  12957. },
  12958. {
  12959. name: "Rampage",
  12960. height: math.unit(200, "feet")
  12961. },
  12962. {
  12963. name: "Archfey Forest Guardian",
  12964. height: math.unit(1, "mile")
  12965. },
  12966. ]
  12967. ))
  12968. characterMakers.push(() => makeCharacter(
  12969. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12970. {
  12971. front: {
  12972. height: math.unit(4, "meters"),
  12973. weight: math.unit(2, "tons"),
  12974. name: "Front",
  12975. image: {
  12976. source: "./media/characters/marik/front.svg",
  12977. extra: 1057 / 1003,
  12978. bottom: 0.08
  12979. }
  12980. },
  12981. },
  12982. [
  12983. {
  12984. name: "Normal",
  12985. height: math.unit(4, "meters"),
  12986. default: true
  12987. },
  12988. {
  12989. name: "Macro",
  12990. height: math.unit(20, "meters")
  12991. },
  12992. {
  12993. name: "Megamacro",
  12994. height: math.unit(50, "km")
  12995. },
  12996. {
  12997. name: "Gigamacro",
  12998. height: math.unit(100, "km")
  12999. },
  13000. {
  13001. name: "Alpha Macro",
  13002. height: math.unit(7.88e7, "yottameters")
  13003. },
  13004. ]
  13005. ))
  13006. characterMakers.push(() => makeCharacter(
  13007. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13008. {
  13009. front: {
  13010. height: math.unit(6, "feet"),
  13011. weight: math.unit(110, "lb"),
  13012. name: "Front",
  13013. image: {
  13014. source: "./media/characters/mel/front.svg",
  13015. extra: 736 / 617,
  13016. bottom: 0.017
  13017. }
  13018. },
  13019. },
  13020. [
  13021. {
  13022. name: "Pico",
  13023. height: math.unit(3, "pm")
  13024. },
  13025. {
  13026. name: "Nano",
  13027. height: math.unit(3, "nm")
  13028. },
  13029. {
  13030. name: "Micro",
  13031. height: math.unit(0.3, "mm"),
  13032. default: true
  13033. },
  13034. {
  13035. name: "Micro+",
  13036. height: math.unit(3, "mm")
  13037. },
  13038. {
  13039. name: "Normal",
  13040. height: math.unit(5 + 10.5 / 12, "feet")
  13041. },
  13042. ]
  13043. ))
  13044. characterMakers.push(() => makeCharacter(
  13045. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13046. {
  13047. kaiju: {
  13048. height: math.unit(1.75, "meters"),
  13049. weight: math.unit(55, "kg"),
  13050. name: "Kaiju",
  13051. image: {
  13052. source: "./media/characters/lykonous/kaiju.svg",
  13053. extra: 1055 / 946,
  13054. bottom: 0.135
  13055. }
  13056. },
  13057. },
  13058. [
  13059. {
  13060. name: "Normal",
  13061. height: math.unit(2.5, "meters"),
  13062. default: true
  13063. },
  13064. {
  13065. name: "Kaiju Dragon",
  13066. height: math.unit(60, "meters")
  13067. },
  13068. {
  13069. name: "Mega Kaiju",
  13070. height: math.unit(120, "km")
  13071. },
  13072. {
  13073. name: "Giga Kaiju",
  13074. height: math.unit(200, "megameters")
  13075. },
  13076. {
  13077. name: "Terra Kaiju",
  13078. height: math.unit(400, "gigameters")
  13079. },
  13080. {
  13081. name: "Kaiju Dragon God",
  13082. height: math.unit(13000, "exaparsecs")
  13083. },
  13084. ]
  13085. ))
  13086. characterMakers.push(() => makeCharacter(
  13087. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13088. {
  13089. front: {
  13090. height: math.unit(6, "feet"),
  13091. weight: math.unit(150, "lb"),
  13092. name: "Front",
  13093. image: {
  13094. source: "./media/characters/blü/front.svg",
  13095. extra: 1883 / 1564,
  13096. bottom: 0.031
  13097. }
  13098. },
  13099. },
  13100. [
  13101. {
  13102. name: "Normal",
  13103. height: math.unit(13, "feet"),
  13104. default: true
  13105. },
  13106. {
  13107. name: "Big Boi",
  13108. height: math.unit(150, "meters")
  13109. },
  13110. {
  13111. name: "Mini Stomper",
  13112. height: math.unit(300, "meters")
  13113. },
  13114. {
  13115. name: "Macro",
  13116. height: math.unit(1000, "meters")
  13117. },
  13118. {
  13119. name: "Megamacro",
  13120. height: math.unit(11000, "meters")
  13121. },
  13122. {
  13123. name: "Gigamacro",
  13124. height: math.unit(11000, "km")
  13125. },
  13126. {
  13127. name: "Teramacro",
  13128. height: math.unit(420000, "km")
  13129. },
  13130. {
  13131. name: "Examacro",
  13132. height: math.unit(120, "parsecs")
  13133. },
  13134. {
  13135. name: "God Tho",
  13136. height: math.unit(98000000000, "parsecs")
  13137. },
  13138. ]
  13139. ))
  13140. characterMakers.push(() => makeCharacter(
  13141. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13142. {
  13143. taurFront: {
  13144. height: math.unit(6, "feet"),
  13145. weight: math.unit(200, "lb"),
  13146. name: "Taur (Front)",
  13147. image: {
  13148. source: "./media/characters/scales/taur-front.svg",
  13149. extra: 1,
  13150. bottom: 0.05
  13151. }
  13152. },
  13153. taurBack: {
  13154. height: math.unit(6, "feet"),
  13155. weight: math.unit(200, "lb"),
  13156. name: "Taur (Back)",
  13157. image: {
  13158. source: "./media/characters/scales/taur-back.svg",
  13159. extra: 1,
  13160. bottom: 0.08
  13161. }
  13162. },
  13163. anthro: {
  13164. height: math.unit(6 * 7 / 12, "feet"),
  13165. weight: math.unit(100, "lb"),
  13166. name: "Anthro",
  13167. image: {
  13168. source: "./media/characters/scales/anthro.svg",
  13169. extra: 1,
  13170. bottom: 0.06
  13171. }
  13172. },
  13173. },
  13174. [
  13175. {
  13176. name: "Normal",
  13177. height: math.unit(12, "feet"),
  13178. default: true
  13179. },
  13180. ]
  13181. ))
  13182. characterMakers.push(() => makeCharacter(
  13183. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13184. {
  13185. front: {
  13186. height: math.unit(6, "feet"),
  13187. weight: math.unit(150, "lb"),
  13188. name: "Front",
  13189. image: {
  13190. source: "./media/characters/koragos/front.svg",
  13191. extra: 841 / 794,
  13192. bottom: 0.035
  13193. }
  13194. },
  13195. back: {
  13196. height: math.unit(6, "feet"),
  13197. weight: math.unit(150, "lb"),
  13198. name: "Back",
  13199. image: {
  13200. source: "./media/characters/koragos/back.svg",
  13201. extra: 841 / 810,
  13202. bottom: 0.022
  13203. }
  13204. },
  13205. },
  13206. [
  13207. {
  13208. name: "Normal",
  13209. height: math.unit(6 + 11 / 12, "feet"),
  13210. default: true
  13211. },
  13212. {
  13213. name: "Macro",
  13214. height: math.unit(490, "feet")
  13215. },
  13216. {
  13217. name: "Megamacro",
  13218. height: math.unit(10, "miles")
  13219. },
  13220. {
  13221. name: "Gigamacro",
  13222. height: math.unit(50, "miles")
  13223. },
  13224. ]
  13225. ))
  13226. characterMakers.push(() => makeCharacter(
  13227. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13228. {
  13229. front: {
  13230. height: math.unit(6, "feet"),
  13231. weight: math.unit(250, "lb"),
  13232. name: "Front",
  13233. image: {
  13234. source: "./media/characters/xylrem/front.svg",
  13235. extra: 3323 / 3050,
  13236. bottom: 0.065
  13237. }
  13238. },
  13239. },
  13240. [
  13241. {
  13242. name: "Micro",
  13243. height: math.unit(4, "feet")
  13244. },
  13245. {
  13246. name: "Normal",
  13247. height: math.unit(16, "feet"),
  13248. default: true
  13249. },
  13250. {
  13251. name: "Macro",
  13252. height: math.unit(2720, "feet")
  13253. },
  13254. {
  13255. name: "Megamacro",
  13256. height: math.unit(25000, "miles")
  13257. },
  13258. ]
  13259. ))
  13260. characterMakers.push(() => makeCharacter(
  13261. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13262. {
  13263. front: {
  13264. height: math.unit(8, "feet"),
  13265. weight: math.unit(250, "kg"),
  13266. name: "Front",
  13267. image: {
  13268. source: "./media/characters/ikideru/front.svg",
  13269. extra: 930 / 870,
  13270. bottom: 0.087
  13271. }
  13272. },
  13273. back: {
  13274. height: math.unit(8, "feet"),
  13275. weight: math.unit(250, "kg"),
  13276. name: "Back",
  13277. image: {
  13278. source: "./media/characters/ikideru/back.svg",
  13279. extra: 919 / 852,
  13280. bottom: 0.055
  13281. }
  13282. },
  13283. },
  13284. [
  13285. {
  13286. name: "Rare",
  13287. height: math.unit(8, "feet"),
  13288. default: true
  13289. },
  13290. {
  13291. name: "Playful Loom",
  13292. height: math.unit(80, "feet")
  13293. },
  13294. {
  13295. name: "City Leaner",
  13296. height: math.unit(230, "feet")
  13297. },
  13298. {
  13299. name: "Megamacro",
  13300. height: math.unit(2500, "feet")
  13301. },
  13302. {
  13303. name: "Gigamacro",
  13304. height: math.unit(26400, "feet")
  13305. },
  13306. {
  13307. name: "Tectonic Shifter",
  13308. height: math.unit(1.7, "megameters")
  13309. },
  13310. {
  13311. name: "Planet Carer",
  13312. height: math.unit(21, "megameters")
  13313. },
  13314. {
  13315. name: "God",
  13316. height: math.unit(11157.22, "parsecs")
  13317. },
  13318. ]
  13319. ))
  13320. characterMakers.push(() => makeCharacter(
  13321. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13322. {
  13323. front: {
  13324. height: math.unit(6, "feet"),
  13325. weight: math.unit(120, "lb"),
  13326. name: "Front",
  13327. image: {
  13328. source: "./media/characters/neo/front.svg"
  13329. }
  13330. },
  13331. },
  13332. [
  13333. {
  13334. name: "Micro",
  13335. height: math.unit(2, "inches"),
  13336. default: true
  13337. },
  13338. {
  13339. name: "Human Size",
  13340. height: math.unit(5 + 8 / 12, "feet")
  13341. },
  13342. ]
  13343. ))
  13344. characterMakers.push(() => makeCharacter(
  13345. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13346. {
  13347. front: {
  13348. height: math.unit(13 + 10 / 12, "feet"),
  13349. weight: math.unit(5320, "lb"),
  13350. name: "Front",
  13351. image: {
  13352. source: "./media/characters/chauncey-chantz/front.svg",
  13353. extra: 1587 / 1435,
  13354. bottom: 0.02
  13355. }
  13356. },
  13357. },
  13358. [
  13359. {
  13360. name: "Normal",
  13361. height: math.unit(13 + 10 / 12, "feet"),
  13362. default: true
  13363. },
  13364. {
  13365. name: "Macro",
  13366. height: math.unit(45, "feet")
  13367. },
  13368. {
  13369. name: "Megamacro",
  13370. height: math.unit(250, "miles")
  13371. },
  13372. {
  13373. name: "Planetary",
  13374. height: math.unit(10000, "miles")
  13375. },
  13376. {
  13377. name: "Galactic",
  13378. height: math.unit(40000, "parsecs")
  13379. },
  13380. {
  13381. name: "Universal",
  13382. height: math.unit(1, "yottameter")
  13383. },
  13384. ]
  13385. ))
  13386. characterMakers.push(() => makeCharacter(
  13387. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13388. {
  13389. front: {
  13390. height: math.unit(6, "feet"),
  13391. weight: math.unit(150, "lb"),
  13392. name: "Front",
  13393. image: {
  13394. source: "./media/characters/epifox/front.svg",
  13395. extra: 1,
  13396. bottom: 0.075
  13397. }
  13398. },
  13399. },
  13400. [
  13401. {
  13402. name: "Micro",
  13403. height: math.unit(6, "inches")
  13404. },
  13405. {
  13406. name: "Normal",
  13407. height: math.unit(12, "feet"),
  13408. default: true
  13409. },
  13410. {
  13411. name: "Macro",
  13412. height: math.unit(3810, "feet")
  13413. },
  13414. {
  13415. name: "Megamacro",
  13416. height: math.unit(500, "miles")
  13417. },
  13418. ]
  13419. ))
  13420. characterMakers.push(() => makeCharacter(
  13421. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13422. {
  13423. front: {
  13424. height: math.unit(1.8796, "m"),
  13425. weight: math.unit(230, "lb"),
  13426. name: "Front",
  13427. image: {
  13428. source: "./media/characters/colin-t/front.svg",
  13429. extra: 1272 / 1193,
  13430. bottom: 0.07
  13431. }
  13432. },
  13433. },
  13434. [
  13435. {
  13436. name: "Micro",
  13437. height: math.unit(0.571, "meters")
  13438. },
  13439. {
  13440. name: "Normal",
  13441. height: math.unit(1.8796, "meters"),
  13442. default: true
  13443. },
  13444. {
  13445. name: "Tall",
  13446. height: math.unit(4, "meters")
  13447. },
  13448. {
  13449. name: "Macro",
  13450. height: math.unit(67.241, "meters")
  13451. },
  13452. {
  13453. name: "Megamacro",
  13454. height: math.unit(371.856, "meters")
  13455. },
  13456. {
  13457. name: "Planetary",
  13458. height: math.unit(12631.5689, "km")
  13459. },
  13460. ]
  13461. ))
  13462. characterMakers.push(() => makeCharacter(
  13463. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13464. {
  13465. front: {
  13466. height: math.unit(1.85, "meters"),
  13467. weight: math.unit(80, "kg"),
  13468. name: "Front",
  13469. image: {
  13470. source: "./media/characters/matvei/front.svg",
  13471. extra: 456/447,
  13472. bottom: 8/464
  13473. }
  13474. },
  13475. back: {
  13476. height: math.unit(1.85, "meters"),
  13477. weight: math.unit(80, "kg"),
  13478. name: "Back",
  13479. image: {
  13480. source: "./media/characters/matvei/back.svg",
  13481. extra: 434/427,
  13482. bottom: 11/445
  13483. }
  13484. },
  13485. },
  13486. [
  13487. {
  13488. name: "Normal",
  13489. height: math.unit(1.85, "meters"),
  13490. default: true
  13491. },
  13492. ]
  13493. ))
  13494. characterMakers.push(() => makeCharacter(
  13495. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13496. {
  13497. front: {
  13498. height: math.unit(5 + 9 / 12, "feet"),
  13499. weight: math.unit(70, "lb"),
  13500. name: "Front",
  13501. image: {
  13502. source: "./media/characters/quincy/front.svg",
  13503. extra: 3041 / 2751
  13504. }
  13505. },
  13506. back: {
  13507. height: math.unit(5 + 9 / 12, "feet"),
  13508. weight: math.unit(70, "lb"),
  13509. name: "Back",
  13510. image: {
  13511. source: "./media/characters/quincy/back.svg",
  13512. extra: 3041 / 2751
  13513. }
  13514. },
  13515. flying: {
  13516. height: math.unit(5 + 4 / 12, "feet"),
  13517. weight: math.unit(70, "lb"),
  13518. name: "Flying",
  13519. image: {
  13520. source: "./media/characters/quincy/flying.svg",
  13521. extra: 1044 / 930
  13522. }
  13523. },
  13524. },
  13525. [
  13526. {
  13527. name: "Micro",
  13528. height: math.unit(3, "cm")
  13529. },
  13530. {
  13531. name: "Normal",
  13532. height: math.unit(5 + 9 / 12, "feet")
  13533. },
  13534. {
  13535. name: "Macro",
  13536. height: math.unit(200, "meters"),
  13537. default: true
  13538. },
  13539. {
  13540. name: "Megamacro",
  13541. height: math.unit(1000, "meters")
  13542. },
  13543. ]
  13544. ))
  13545. characterMakers.push(() => makeCharacter(
  13546. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13547. {
  13548. front: {
  13549. height: math.unit(3 + 11/12, "feet"),
  13550. weight: math.unit(50, "lb"),
  13551. name: "Front",
  13552. image: {
  13553. source: "./media/characters/vanrel/front.svg",
  13554. extra: 1104/949,
  13555. bottom: 52/1156
  13556. }
  13557. },
  13558. back: {
  13559. height: math.unit(3 + 11/12, "feet"),
  13560. weight: math.unit(50, "lb"),
  13561. name: "Back",
  13562. image: {
  13563. source: "./media/characters/vanrel/back.svg",
  13564. extra: 1119/976,
  13565. bottom: 37/1156
  13566. }
  13567. },
  13568. tome: {
  13569. height: math.unit(1.35, "feet"),
  13570. weight: math.unit(10, "lb"),
  13571. name: "Vanrel's Tome",
  13572. rename: true,
  13573. image: {
  13574. source: "./media/characters/vanrel/tome.svg"
  13575. }
  13576. },
  13577. beans: {
  13578. height: math.unit(0.89, "feet"),
  13579. name: "Beans",
  13580. image: {
  13581. source: "./media/characters/vanrel/beans.svg"
  13582. }
  13583. },
  13584. },
  13585. [
  13586. {
  13587. name: "Normal",
  13588. height: math.unit(3 + 11/12, "feet"),
  13589. default: true
  13590. },
  13591. ]
  13592. ))
  13593. characterMakers.push(() => makeCharacter(
  13594. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13595. {
  13596. front: {
  13597. height: math.unit(7 + 5 / 12, "feet"),
  13598. name: "Front",
  13599. image: {
  13600. source: "./media/characters/kuiper-vanrel/front.svg",
  13601. extra: 1219/1169,
  13602. bottom: 69/1288
  13603. }
  13604. },
  13605. back: {
  13606. height: math.unit(7 + 5 / 12, "feet"),
  13607. name: "Back",
  13608. image: {
  13609. source: "./media/characters/kuiper-vanrel/back.svg",
  13610. extra: 1236/1193,
  13611. bottom: 27/1263
  13612. }
  13613. },
  13614. foot: {
  13615. height: math.unit(0.55, "meters"),
  13616. name: "Foot",
  13617. image: {
  13618. source: "./media/characters/kuiper-vanrel/foot.svg",
  13619. }
  13620. },
  13621. battle: {
  13622. height: math.unit(6.824, "feet"),
  13623. name: "Battle",
  13624. image: {
  13625. source: "./media/characters/kuiper-vanrel/battle.svg",
  13626. extra: 1466 / 1327,
  13627. bottom: 29 / 1492.5
  13628. }
  13629. },
  13630. meerkui: {
  13631. height: math.unit(18, "inches"),
  13632. name: "Meerkui",
  13633. image: {
  13634. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13635. extra: 1354/1289,
  13636. bottom: 69/1423
  13637. }
  13638. },
  13639. },
  13640. [
  13641. {
  13642. name: "Normal",
  13643. height: math.unit(7 + 5 / 12, "feet"),
  13644. default: true
  13645. },
  13646. ]
  13647. ))
  13648. characterMakers.push(() => makeCharacter(
  13649. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13650. {
  13651. front: {
  13652. height: math.unit(8 + 5 / 12, "feet"),
  13653. name: "Front",
  13654. image: {
  13655. source: "./media/characters/keset-vanrel/front.svg",
  13656. extra: 1231/1148,
  13657. bottom: 82/1313
  13658. }
  13659. },
  13660. back: {
  13661. height: math.unit(8 + 5 / 12, "feet"),
  13662. name: "Back",
  13663. image: {
  13664. source: "./media/characters/keset-vanrel/back.svg",
  13665. extra: 1240/1174,
  13666. bottom: 33/1273
  13667. }
  13668. },
  13669. hand: {
  13670. height: math.unit(0.6, "meters"),
  13671. name: "Hand",
  13672. image: {
  13673. source: "./media/characters/keset-vanrel/hand.svg"
  13674. }
  13675. },
  13676. foot: {
  13677. height: math.unit(0.94978, "meters"),
  13678. name: "Foot",
  13679. image: {
  13680. source: "./media/characters/keset-vanrel/foot.svg"
  13681. }
  13682. },
  13683. battle: {
  13684. height: math.unit(7.408, "feet"),
  13685. name: "Battle",
  13686. image: {
  13687. source: "./media/characters/keset-vanrel/battle.svg",
  13688. extra: 1890 / 1386,
  13689. bottom: 73.28 / 1970
  13690. }
  13691. },
  13692. },
  13693. [
  13694. {
  13695. name: "Normal",
  13696. height: math.unit(8 + 5 / 12, "feet"),
  13697. default: true
  13698. },
  13699. ]
  13700. ))
  13701. characterMakers.push(() => makeCharacter(
  13702. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13703. {
  13704. front: {
  13705. height: math.unit(6, "feet"),
  13706. weight: math.unit(150, "lb"),
  13707. name: "Front",
  13708. image: {
  13709. source: "./media/characters/neos/front.svg",
  13710. extra: 1696 / 992,
  13711. bottom: 0.14
  13712. }
  13713. },
  13714. },
  13715. [
  13716. {
  13717. name: "Normal",
  13718. height: math.unit(54, "cm"),
  13719. default: true
  13720. },
  13721. {
  13722. name: "Macro",
  13723. height: math.unit(100, "m")
  13724. },
  13725. {
  13726. name: "Megamacro",
  13727. height: math.unit(10, "km")
  13728. },
  13729. {
  13730. name: "Megamacro+",
  13731. height: math.unit(100, "km")
  13732. },
  13733. {
  13734. name: "Gigamacro",
  13735. height: math.unit(100, "Mm")
  13736. },
  13737. {
  13738. name: "Teramacro",
  13739. height: math.unit(100, "Gm")
  13740. },
  13741. {
  13742. name: "Examacro",
  13743. height: math.unit(100, "Em")
  13744. },
  13745. {
  13746. name: "Godly",
  13747. height: math.unit(10000, "Ym")
  13748. },
  13749. {
  13750. name: "Beyond Godly",
  13751. height: math.unit(25, "multiverses")
  13752. },
  13753. ]
  13754. ))
  13755. characterMakers.push(() => makeCharacter(
  13756. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13757. {
  13758. feminine: {
  13759. height: math.unit(5, "feet"),
  13760. weight: math.unit(100, "lb"),
  13761. name: "Feminine",
  13762. image: {
  13763. source: "./media/characters/sammy-mouse/feminine.svg",
  13764. extra: 2526 / 2425,
  13765. bottom: 0.123
  13766. }
  13767. },
  13768. masculine: {
  13769. height: math.unit(5, "feet"),
  13770. weight: math.unit(100, "lb"),
  13771. name: "Masculine",
  13772. image: {
  13773. source: "./media/characters/sammy-mouse/masculine.svg",
  13774. extra: 2526 / 2425,
  13775. bottom: 0.123
  13776. }
  13777. },
  13778. },
  13779. [
  13780. {
  13781. name: "Micro",
  13782. height: math.unit(5, "inches")
  13783. },
  13784. {
  13785. name: "Normal",
  13786. height: math.unit(5, "feet"),
  13787. default: true
  13788. },
  13789. {
  13790. name: "Macro",
  13791. height: math.unit(60, "feet")
  13792. },
  13793. ]
  13794. ))
  13795. characterMakers.push(() => makeCharacter(
  13796. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13797. {
  13798. front: {
  13799. height: math.unit(4, "feet"),
  13800. weight: math.unit(50, "lb"),
  13801. name: "Front",
  13802. image: {
  13803. source: "./media/characters/kole/front.svg",
  13804. extra: 1423 / 1303,
  13805. bottom: 0.025
  13806. }
  13807. },
  13808. back: {
  13809. height: math.unit(4, "feet"),
  13810. weight: math.unit(50, "lb"),
  13811. name: "Back",
  13812. image: {
  13813. source: "./media/characters/kole/back.svg",
  13814. extra: 1426 / 1280,
  13815. bottom: 0.02
  13816. }
  13817. },
  13818. },
  13819. [
  13820. {
  13821. name: "Normal",
  13822. height: math.unit(4, "feet"),
  13823. default: true
  13824. },
  13825. ]
  13826. ))
  13827. characterMakers.push(() => makeCharacter(
  13828. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13829. {
  13830. front: {
  13831. height: math.unit(2.5, "feet"),
  13832. weight: math.unit(32, "lb"),
  13833. name: "Front",
  13834. image: {
  13835. source: "./media/characters/rufran/front.svg",
  13836. extra: 1313/885,
  13837. bottom: 94/1407
  13838. }
  13839. },
  13840. side: {
  13841. height: math.unit(2.5, "feet"),
  13842. weight: math.unit(32, "lb"),
  13843. name: "Side",
  13844. image: {
  13845. source: "./media/characters/rufran/side.svg",
  13846. extra: 1109/852,
  13847. bottom: 118/1227
  13848. }
  13849. },
  13850. back: {
  13851. height: math.unit(2.5, "feet"),
  13852. weight: math.unit(32, "lb"),
  13853. name: "Back",
  13854. image: {
  13855. source: "./media/characters/rufran/back.svg",
  13856. extra: 1280/878,
  13857. bottom: 131/1411
  13858. }
  13859. },
  13860. mouth: {
  13861. height: math.unit(1.13, "feet"),
  13862. name: "Mouth",
  13863. image: {
  13864. source: "./media/characters/rufran/mouth.svg"
  13865. }
  13866. },
  13867. foot: {
  13868. height: math.unit(1.33, "feet"),
  13869. name: "Foot",
  13870. image: {
  13871. source: "./media/characters/rufran/foot.svg"
  13872. }
  13873. },
  13874. koboldFront: {
  13875. height: math.unit(2 + 6 / 12, "feet"),
  13876. weight: math.unit(20, "lb"),
  13877. name: "Front (Kobold)",
  13878. image: {
  13879. source: "./media/characters/rufran/kobold-front.svg",
  13880. extra: 2041 / 1839,
  13881. bottom: 0.055
  13882. }
  13883. },
  13884. koboldBack: {
  13885. height: math.unit(2 + 6 / 12, "feet"),
  13886. weight: math.unit(20, "lb"),
  13887. name: "Back (Kobold)",
  13888. image: {
  13889. source: "./media/characters/rufran/kobold-back.svg",
  13890. extra: 2054 / 1839,
  13891. bottom: 0.01
  13892. }
  13893. },
  13894. koboldHand: {
  13895. height: math.unit(0.2166, "meters"),
  13896. name: "Hand (Kobold)",
  13897. image: {
  13898. source: "./media/characters/rufran/kobold-hand.svg"
  13899. }
  13900. },
  13901. koboldFoot: {
  13902. height: math.unit(0.185, "meters"),
  13903. name: "Foot (Kobold)",
  13904. image: {
  13905. source: "./media/characters/rufran/kobold-foot.svg"
  13906. }
  13907. },
  13908. },
  13909. [
  13910. {
  13911. name: "Micro",
  13912. height: math.unit(1, "inch")
  13913. },
  13914. {
  13915. name: "Normal",
  13916. height: math.unit(2 + 6 / 12, "feet"),
  13917. default: true
  13918. },
  13919. {
  13920. name: "Big",
  13921. height: math.unit(60, "feet")
  13922. },
  13923. {
  13924. name: "Macro",
  13925. height: math.unit(325, "feet")
  13926. },
  13927. ]
  13928. ))
  13929. characterMakers.push(() => makeCharacter(
  13930. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13931. {
  13932. front: {
  13933. height: math.unit(0.3, "meters"),
  13934. weight: math.unit(3.5, "kg"),
  13935. name: "Front",
  13936. image: {
  13937. source: "./media/characters/chip/front.svg",
  13938. extra: 748 / 674
  13939. }
  13940. },
  13941. },
  13942. [
  13943. {
  13944. name: "Micro",
  13945. height: math.unit(1, "inch"),
  13946. default: true
  13947. },
  13948. ]
  13949. ))
  13950. characterMakers.push(() => makeCharacter(
  13951. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13952. {
  13953. side: {
  13954. height: math.unit(2.3, "meters"),
  13955. weight: math.unit(3500, "lb"),
  13956. name: "Side",
  13957. image: {
  13958. source: "./media/characters/torvid/side.svg",
  13959. extra: 1972 / 722,
  13960. bottom: 0.035
  13961. }
  13962. },
  13963. },
  13964. [
  13965. {
  13966. name: "Normal",
  13967. height: math.unit(2.3, "meters"),
  13968. default: true
  13969. },
  13970. ]
  13971. ))
  13972. characterMakers.push(() => makeCharacter(
  13973. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13974. {
  13975. front: {
  13976. height: math.unit(2, "meters"),
  13977. weight: math.unit(150.5, "kg"),
  13978. name: "Front",
  13979. image: {
  13980. source: "./media/characters/susan/front.svg",
  13981. extra: 693 / 635,
  13982. bottom: 0.05
  13983. }
  13984. },
  13985. },
  13986. [
  13987. {
  13988. name: "Megamacro",
  13989. height: math.unit(505, "miles"),
  13990. default: true
  13991. },
  13992. ]
  13993. ))
  13994. characterMakers.push(() => makeCharacter(
  13995. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13996. {
  13997. front: {
  13998. height: math.unit(6, "feet"),
  13999. weight: math.unit(150, "lb"),
  14000. name: "Front",
  14001. image: {
  14002. source: "./media/characters/raindrops/front.svg",
  14003. extra: 2655 / 2461,
  14004. bottom: 49 / 2705
  14005. }
  14006. },
  14007. back: {
  14008. height: math.unit(6, "feet"),
  14009. weight: math.unit(150, "lb"),
  14010. name: "Back",
  14011. image: {
  14012. source: "./media/characters/raindrops/back.svg",
  14013. extra: 2574 / 2400,
  14014. bottom: 65 / 2634
  14015. }
  14016. },
  14017. },
  14018. [
  14019. {
  14020. name: "Micro",
  14021. height: math.unit(6, "inches")
  14022. },
  14023. {
  14024. name: "Normal",
  14025. height: math.unit(6 + 2 / 12, "feet")
  14026. },
  14027. {
  14028. name: "Macro",
  14029. height: math.unit(131, "feet"),
  14030. default: true
  14031. },
  14032. {
  14033. name: "Megamacro",
  14034. height: math.unit(15, "miles")
  14035. },
  14036. {
  14037. name: "Gigamacro",
  14038. height: math.unit(4000, "miles")
  14039. },
  14040. {
  14041. name: "Teramacro",
  14042. height: math.unit(315000, "miles")
  14043. },
  14044. ]
  14045. ))
  14046. characterMakers.push(() => makeCharacter(
  14047. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14048. {
  14049. front: {
  14050. height: math.unit(2.794, "meters"),
  14051. weight: math.unit(325, "kg"),
  14052. name: "Front",
  14053. image: {
  14054. source: "./media/characters/tezwa/front.svg",
  14055. extra: 2083 / 1906,
  14056. bottom: 0.031
  14057. }
  14058. },
  14059. foot: {
  14060. height: math.unit(0.687, "meters"),
  14061. name: "Foot",
  14062. image: {
  14063. source: "./media/characters/tezwa/foot.svg"
  14064. }
  14065. },
  14066. },
  14067. [
  14068. {
  14069. name: "Normal",
  14070. height: math.unit(9 + 2 / 12, "feet"),
  14071. default: true
  14072. },
  14073. ]
  14074. ))
  14075. characterMakers.push(() => makeCharacter(
  14076. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14077. {
  14078. front: {
  14079. height: math.unit(58, "feet"),
  14080. weight: math.unit(89000, "lb"),
  14081. name: "Front",
  14082. image: {
  14083. source: "./media/characters/typhus/front.svg",
  14084. extra: 816 / 800,
  14085. bottom: 0.065
  14086. }
  14087. },
  14088. },
  14089. [
  14090. {
  14091. name: "Macro",
  14092. height: math.unit(58, "feet"),
  14093. default: true
  14094. },
  14095. ]
  14096. ))
  14097. characterMakers.push(() => makeCharacter(
  14098. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14099. {
  14100. front: {
  14101. height: math.unit(12, "feet"),
  14102. weight: math.unit(6, "tonnes"),
  14103. name: "Front",
  14104. image: {
  14105. source: "./media/characters/lyra-von-wulf/front.svg",
  14106. extra: 1,
  14107. bottom: 0.10
  14108. }
  14109. },
  14110. frontMecha: {
  14111. height: math.unit(12, "feet"),
  14112. weight: math.unit(12, "tonnes"),
  14113. name: "Front (Mecha)",
  14114. image: {
  14115. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14116. extra: 1,
  14117. bottom: 0.042
  14118. }
  14119. },
  14120. maw: {
  14121. height: math.unit(2.2, "feet"),
  14122. name: "Maw",
  14123. image: {
  14124. source: "./media/characters/lyra-von-wulf/maw.svg"
  14125. }
  14126. },
  14127. },
  14128. [
  14129. {
  14130. name: "Normal",
  14131. height: math.unit(12, "feet"),
  14132. default: true
  14133. },
  14134. {
  14135. name: "Classic",
  14136. height: math.unit(50, "feet")
  14137. },
  14138. {
  14139. name: "Macro",
  14140. height: math.unit(500, "feet")
  14141. },
  14142. {
  14143. name: "Megamacro",
  14144. height: math.unit(1, "mile")
  14145. },
  14146. {
  14147. name: "Gigamacro",
  14148. height: math.unit(400, "miles")
  14149. },
  14150. {
  14151. name: "Teramacro",
  14152. height: math.unit(22000, "miles")
  14153. },
  14154. {
  14155. name: "Solarmacro",
  14156. height: math.unit(8600000, "miles")
  14157. },
  14158. {
  14159. name: "Galactic",
  14160. height: math.unit(1057000, "lightyears")
  14161. },
  14162. ]
  14163. ))
  14164. characterMakers.push(() => makeCharacter(
  14165. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14166. {
  14167. front: {
  14168. height: math.unit(6 + 10 / 12, "feet"),
  14169. weight: math.unit(150, "lb"),
  14170. name: "Front",
  14171. image: {
  14172. source: "./media/characters/dixon/front.svg",
  14173. extra: 3361 / 3209,
  14174. bottom: 0.01
  14175. }
  14176. },
  14177. },
  14178. [
  14179. {
  14180. name: "Normal",
  14181. height: math.unit(6 + 10 / 12, "feet"),
  14182. default: true
  14183. },
  14184. {
  14185. name: "Big",
  14186. height: math.unit(12, "meters")
  14187. },
  14188. {
  14189. name: "Macro",
  14190. height: math.unit(500, "meters")
  14191. },
  14192. {
  14193. name: "Megamacro",
  14194. height: math.unit(2, "km")
  14195. },
  14196. ]
  14197. ))
  14198. characterMakers.push(() => makeCharacter(
  14199. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  14200. {
  14201. front: {
  14202. height: math.unit(185, "cm"),
  14203. weight: math.unit(68, "kg"),
  14204. name: "Front",
  14205. image: {
  14206. source: "./media/characters/kauko/front.svg",
  14207. extra: 1455 / 1421,
  14208. bottom: 0.03
  14209. }
  14210. },
  14211. back: {
  14212. height: math.unit(185, "cm"),
  14213. weight: math.unit(68, "kg"),
  14214. name: "Back",
  14215. image: {
  14216. source: "./media/characters/kauko/back.svg",
  14217. extra: 1455 / 1421,
  14218. bottom: 0.004
  14219. }
  14220. },
  14221. },
  14222. [
  14223. {
  14224. name: "Normal",
  14225. height: math.unit(185, "cm"),
  14226. default: true
  14227. },
  14228. ]
  14229. ))
  14230. characterMakers.push(() => makeCharacter(
  14231. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14232. {
  14233. frontSfw: {
  14234. height: math.unit(5, "meters"),
  14235. weight: math.unit(4250, "lb"),
  14236. name: "Front",
  14237. image: {
  14238. source: "./media/characters/varg/front-sfw.svg",
  14239. extra: 1103/1010,
  14240. bottom: 50/1153
  14241. },
  14242. form: "anthro",
  14243. default: true
  14244. },
  14245. backSfw: {
  14246. height: math.unit(5, "meters"),
  14247. weight: math.unit(4250, "lb"),
  14248. name: "Back",
  14249. image: {
  14250. source: "./media/characters/varg/back-sfw.svg",
  14251. extra: 1038/1022,
  14252. bottom: 36/1074
  14253. },
  14254. form: "anthro"
  14255. },
  14256. frontNsfw: {
  14257. height: math.unit(5, "meters"),
  14258. weight: math.unit(4250, "lb"),
  14259. name: "Front (NSFW)",
  14260. image: {
  14261. source: "./media/characters/varg/front-nsfw.svg",
  14262. extra: 1103/1010,
  14263. bottom: 50/1153
  14264. },
  14265. form: "anthro"
  14266. },
  14267. sheath: {
  14268. height: math.unit(3.8, "feet"),
  14269. weight: math.unit(90, "kilograms"),
  14270. name: "Sheath",
  14271. image: {
  14272. source: "./media/characters/varg/sheath.svg"
  14273. },
  14274. form: "anthro"
  14275. },
  14276. dick: {
  14277. height: math.unit(4.6, "feet"),
  14278. weight: math.unit(451, "kilograms"),
  14279. name: "Dick",
  14280. image: {
  14281. source: "./media/characters/varg/dick.svg"
  14282. },
  14283. form: "anthro"
  14284. },
  14285. feralSfw: {
  14286. height: math.unit(5, "meters"),
  14287. weight: math.unit(100000, "lb"),
  14288. name: "Side",
  14289. image: {
  14290. source: "./media/characters/varg/feral-sfw.svg",
  14291. extra: 1065/511,
  14292. bottom: 211/1276
  14293. },
  14294. form: "feral",
  14295. default: true
  14296. },
  14297. feralNsfw: {
  14298. height: math.unit(5, "meters"),
  14299. weight: math.unit(100000, "lb"),
  14300. name: "Side (NSFW)",
  14301. image: {
  14302. source: "./media/characters/varg/feral-nsfw.svg",
  14303. extra: 1065/511,
  14304. bottom: 211/1276
  14305. },
  14306. form: "feral",
  14307. },
  14308. feralSheath: {
  14309. height: math.unit(9.8, "feet"),
  14310. weight: math.unit(2000, "kilograms"),
  14311. name: "Sheath",
  14312. image: {
  14313. source: "./media/characters/varg/sheath.svg"
  14314. },
  14315. form: "feral"
  14316. },
  14317. feralDick: {
  14318. height: math.unit(13.11, "feet"),
  14319. weight: math.unit(10440, "kilograms"),
  14320. name: "Dick",
  14321. image: {
  14322. source: "./media/characters/varg/dick.svg"
  14323. },
  14324. form: "feral"
  14325. },
  14326. },
  14327. [
  14328. {
  14329. name: "Normal",
  14330. height: math.unit(5, "meters"),
  14331. form: "anthro"
  14332. },
  14333. {
  14334. name: "Macro",
  14335. height: math.unit(200, "meters"),
  14336. form: "anthro"
  14337. },
  14338. {
  14339. name: "Megamacro",
  14340. height: math.unit(20, "kilometers"),
  14341. form: "anthro"
  14342. },
  14343. {
  14344. name: "True Size",
  14345. height: math.unit(211, "km"),
  14346. form: "anthro",
  14347. default: true
  14348. },
  14349. {
  14350. name: "Gigamacro",
  14351. height: math.unit(1000, "km"),
  14352. form: "anthro"
  14353. },
  14354. {
  14355. name: "Gigamacro+",
  14356. height: math.unit(8000, "km"),
  14357. form: "anthro"
  14358. },
  14359. {
  14360. name: "Teramacro",
  14361. height: math.unit(1000000, "km"),
  14362. form: "anthro"
  14363. },
  14364. {
  14365. name: "Normal",
  14366. height: math.unit(5, "meters"),
  14367. form: "feral"
  14368. },
  14369. {
  14370. name: "Macro",
  14371. height: math.unit(200, "meters"),
  14372. form: "feral"
  14373. },
  14374. {
  14375. name: "Megamacro",
  14376. height: math.unit(20, "kilometers"),
  14377. form: "feral"
  14378. },
  14379. {
  14380. name: "True Size",
  14381. height: math.unit(211, "km"),
  14382. form: "feral",
  14383. default: true
  14384. },
  14385. {
  14386. name: "Gigamacro",
  14387. height: math.unit(1000, "km"),
  14388. form: "feral"
  14389. },
  14390. {
  14391. name: "Gigamacro+",
  14392. height: math.unit(8000, "km"),
  14393. form: "feral"
  14394. },
  14395. {
  14396. name: "Teramacro",
  14397. height: math.unit(1000000, "km"),
  14398. form: "feral"
  14399. },
  14400. ],
  14401. {
  14402. "anthro": {
  14403. name: "Anthro",
  14404. default: true
  14405. },
  14406. "feral": {
  14407. name: "Feral",
  14408. },
  14409. }
  14410. ))
  14411. characterMakers.push(() => makeCharacter(
  14412. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14413. {
  14414. front: {
  14415. height: math.unit(7 + 7 / 12, "feet"),
  14416. weight: math.unit(267, "lb"),
  14417. name: "Front",
  14418. image: {
  14419. source: "./media/characters/dayza/front.svg",
  14420. extra: 1262 / 1200,
  14421. bottom: 0.035
  14422. }
  14423. },
  14424. side: {
  14425. height: math.unit(7 + 7 / 12, "feet"),
  14426. weight: math.unit(267, "lb"),
  14427. name: "Side",
  14428. image: {
  14429. source: "./media/characters/dayza/side.svg",
  14430. extra: 1295 / 1245,
  14431. bottom: 0.05
  14432. }
  14433. },
  14434. back: {
  14435. height: math.unit(7 + 7 / 12, "feet"),
  14436. weight: math.unit(267, "lb"),
  14437. name: "Back",
  14438. image: {
  14439. source: "./media/characters/dayza/back.svg",
  14440. extra: 1241 / 1170
  14441. }
  14442. },
  14443. },
  14444. [
  14445. {
  14446. name: "Normal",
  14447. height: math.unit(7 + 7 / 12, "feet"),
  14448. default: true
  14449. },
  14450. {
  14451. name: "Macro",
  14452. height: math.unit(155, "feet")
  14453. },
  14454. ]
  14455. ))
  14456. characterMakers.push(() => makeCharacter(
  14457. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14458. {
  14459. front: {
  14460. height: math.unit(6 + 5 / 12, "feet"),
  14461. weight: math.unit(160, "lb"),
  14462. name: "Front",
  14463. image: {
  14464. source: "./media/characters/xanthos/front.svg",
  14465. extra: 1,
  14466. bottom: 0.04
  14467. }
  14468. },
  14469. back: {
  14470. height: math.unit(6 + 5 / 12, "feet"),
  14471. weight: math.unit(160, "lb"),
  14472. name: "Back",
  14473. image: {
  14474. source: "./media/characters/xanthos/back.svg",
  14475. extra: 1,
  14476. bottom: 0.03
  14477. }
  14478. },
  14479. hand: {
  14480. height: math.unit(0.928, "feet"),
  14481. name: "Hand",
  14482. image: {
  14483. source: "./media/characters/xanthos/hand.svg"
  14484. }
  14485. },
  14486. foot: {
  14487. height: math.unit(1.286, "feet"),
  14488. name: "Foot",
  14489. image: {
  14490. source: "./media/characters/xanthos/foot.svg"
  14491. }
  14492. },
  14493. },
  14494. [
  14495. {
  14496. name: "Normal",
  14497. height: math.unit(6 + 5 / 12, "feet"),
  14498. default: true
  14499. },
  14500. {
  14501. name: "Normal+",
  14502. height: math.unit(6, "meters")
  14503. },
  14504. {
  14505. name: "Macro",
  14506. height: math.unit(40, "feet")
  14507. },
  14508. {
  14509. name: "Macro+",
  14510. height: math.unit(200, "meters")
  14511. },
  14512. {
  14513. name: "Megamacro",
  14514. height: math.unit(20, "km")
  14515. },
  14516. {
  14517. name: "Megamacro+",
  14518. height: math.unit(100, "km")
  14519. },
  14520. {
  14521. name: "Gigamacro",
  14522. height: math.unit(200, "megameters")
  14523. },
  14524. {
  14525. name: "Gigamacro+",
  14526. height: math.unit(1.5, "gigameters")
  14527. },
  14528. ]
  14529. ))
  14530. characterMakers.push(() => makeCharacter(
  14531. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14532. {
  14533. front: {
  14534. height: math.unit(6 + 3 / 12, "feet"),
  14535. weight: math.unit(215, "lb"),
  14536. name: "Front",
  14537. image: {
  14538. source: "./media/characters/grynn/front.svg",
  14539. extra: 4627 / 4209,
  14540. bottom: 0.047
  14541. }
  14542. },
  14543. },
  14544. [
  14545. {
  14546. name: "Micro",
  14547. height: math.unit(6, "inches")
  14548. },
  14549. {
  14550. name: "Normal",
  14551. height: math.unit(6 + 3 / 12, "feet"),
  14552. default: true
  14553. },
  14554. {
  14555. name: "Big",
  14556. height: math.unit(104, "feet")
  14557. },
  14558. {
  14559. name: "Macro",
  14560. height: math.unit(944, "feet")
  14561. },
  14562. {
  14563. name: "Macro+",
  14564. height: math.unit(9480, "feet")
  14565. },
  14566. {
  14567. name: "Megamacro",
  14568. height: math.unit(78752, "feet")
  14569. },
  14570. {
  14571. name: "Megamacro+",
  14572. height: math.unit(630128, "feet")
  14573. },
  14574. {
  14575. name: "Megamacro++",
  14576. height: math.unit(3150695, "feet")
  14577. },
  14578. ]
  14579. ))
  14580. characterMakers.push(() => makeCharacter(
  14581. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14582. {
  14583. front: {
  14584. height: math.unit(7 + 5 / 12, "feet"),
  14585. weight: math.unit(450, "lb"),
  14586. name: "Front",
  14587. image: {
  14588. source: "./media/characters/mocha-aura/front.svg",
  14589. extra: 1907 / 1817,
  14590. bottom: 0.04
  14591. }
  14592. },
  14593. back: {
  14594. height: math.unit(7 + 5 / 12, "feet"),
  14595. weight: math.unit(450, "lb"),
  14596. name: "Back",
  14597. image: {
  14598. source: "./media/characters/mocha-aura/back.svg",
  14599. extra: 1900 / 1825,
  14600. bottom: 0.045
  14601. }
  14602. },
  14603. },
  14604. [
  14605. {
  14606. name: "Nano",
  14607. height: math.unit(1, "nm")
  14608. },
  14609. {
  14610. name: "Megamicro",
  14611. height: math.unit(1, "mm")
  14612. },
  14613. {
  14614. name: "Micro",
  14615. height: math.unit(3, "inches")
  14616. },
  14617. {
  14618. name: "Normal",
  14619. height: math.unit(7 + 5 / 12, "feet"),
  14620. default: true
  14621. },
  14622. {
  14623. name: "Macro",
  14624. height: math.unit(30, "feet")
  14625. },
  14626. {
  14627. name: "Megamacro",
  14628. height: math.unit(3500, "feet")
  14629. },
  14630. {
  14631. name: "Teramacro",
  14632. height: math.unit(500000, "miles")
  14633. },
  14634. {
  14635. name: "Petamacro",
  14636. height: math.unit(50000000000000000, "parsecs")
  14637. },
  14638. ]
  14639. ))
  14640. characterMakers.push(() => makeCharacter(
  14641. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14642. {
  14643. front: {
  14644. height: math.unit(6, "feet"),
  14645. weight: math.unit(150, "lb"),
  14646. name: "Front",
  14647. image: {
  14648. source: "./media/characters/ilisha-devya/front.svg",
  14649. extra: 1053/1049,
  14650. bottom: 270/1323
  14651. }
  14652. },
  14653. back: {
  14654. height: math.unit(6, "feet"),
  14655. weight: math.unit(150, "lb"),
  14656. name: "Back",
  14657. image: {
  14658. source: "./media/characters/ilisha-devya/back.svg",
  14659. extra: 1131/1128,
  14660. bottom: 39/1170
  14661. }
  14662. },
  14663. },
  14664. [
  14665. {
  14666. name: "Macro",
  14667. height: math.unit(500, "feet"),
  14668. default: true
  14669. },
  14670. {
  14671. name: "Megamacro",
  14672. height: math.unit(10, "miles")
  14673. },
  14674. {
  14675. name: "Gigamacro",
  14676. height: math.unit(100000, "miles")
  14677. },
  14678. {
  14679. name: "Examacro",
  14680. height: math.unit(1e9, "lightyears")
  14681. },
  14682. {
  14683. name: "Omniversal",
  14684. height: math.unit(1e33, "lightyears")
  14685. },
  14686. {
  14687. name: "Beyond Infinite",
  14688. height: math.unit(1e100, "lightyears")
  14689. },
  14690. ]
  14691. ))
  14692. characterMakers.push(() => makeCharacter(
  14693. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14694. {
  14695. Side: {
  14696. height: math.unit(6, "feet"),
  14697. weight: math.unit(150, "lb"),
  14698. name: "Side",
  14699. image: {
  14700. source: "./media/characters/mira/side.svg",
  14701. extra: 900 / 799,
  14702. bottom: 0.02
  14703. }
  14704. },
  14705. },
  14706. [
  14707. {
  14708. name: "Human Size",
  14709. height: math.unit(6, "feet")
  14710. },
  14711. {
  14712. name: "Macro",
  14713. height: math.unit(100, "feet"),
  14714. default: true
  14715. },
  14716. {
  14717. name: "Megamacro",
  14718. height: math.unit(10, "miles")
  14719. },
  14720. {
  14721. name: "Gigamacro",
  14722. height: math.unit(25000, "miles")
  14723. },
  14724. {
  14725. name: "Teramacro",
  14726. height: math.unit(300, "AU")
  14727. },
  14728. {
  14729. name: "Full Size",
  14730. height: math.unit(4.5e10, "lightyears")
  14731. },
  14732. ]
  14733. ))
  14734. characterMakers.push(() => makeCharacter(
  14735. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14736. {
  14737. front: {
  14738. height: math.unit(6, "feet"),
  14739. weight: math.unit(150, "lb"),
  14740. name: "Front",
  14741. image: {
  14742. source: "./media/characters/holly/front.svg",
  14743. extra: 639 / 606
  14744. }
  14745. },
  14746. back: {
  14747. height: math.unit(6, "feet"),
  14748. weight: math.unit(150, "lb"),
  14749. name: "Back",
  14750. image: {
  14751. source: "./media/characters/holly/back.svg",
  14752. extra: 623 / 598
  14753. }
  14754. },
  14755. frontWorking: {
  14756. height: math.unit(6, "feet"),
  14757. weight: math.unit(150, "lb"),
  14758. name: "Front (Working)",
  14759. image: {
  14760. source: "./media/characters/holly/front-working.svg",
  14761. extra: 607 / 577,
  14762. bottom: 0.048
  14763. }
  14764. },
  14765. },
  14766. [
  14767. {
  14768. name: "Normal",
  14769. height: math.unit(12 + 3 / 12, "feet"),
  14770. default: true
  14771. },
  14772. ]
  14773. ))
  14774. characterMakers.push(() => makeCharacter(
  14775. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14776. {
  14777. front: {
  14778. height: math.unit(6, "feet"),
  14779. weight: math.unit(150, "lb"),
  14780. name: "Front",
  14781. image: {
  14782. source: "./media/characters/porter/front.svg",
  14783. extra: 1,
  14784. bottom: 0.01
  14785. }
  14786. },
  14787. frontRobes: {
  14788. height: math.unit(6, "feet"),
  14789. weight: math.unit(150, "lb"),
  14790. name: "Front (Robes)",
  14791. image: {
  14792. source: "./media/characters/porter/front-robes.svg",
  14793. extra: 1.01,
  14794. bottom: 0.01
  14795. }
  14796. },
  14797. },
  14798. [
  14799. {
  14800. name: "Normal",
  14801. height: math.unit(11 + 9 / 12, "feet"),
  14802. default: true
  14803. },
  14804. ]
  14805. ))
  14806. characterMakers.push(() => makeCharacter(
  14807. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14808. {
  14809. legendary: {
  14810. height: math.unit(6, "feet"),
  14811. weight: math.unit(150, "lb"),
  14812. name: "Legendary",
  14813. image: {
  14814. source: "./media/characters/lucy/legendary.svg",
  14815. extra: 1355 / 1100,
  14816. bottom: 0.045
  14817. }
  14818. },
  14819. },
  14820. [
  14821. {
  14822. name: "Legendary",
  14823. height: math.unit(86882 * 2, "miles"),
  14824. default: true
  14825. },
  14826. ]
  14827. ))
  14828. characterMakers.push(() => makeCharacter(
  14829. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14830. {
  14831. front: {
  14832. height: math.unit(6, "feet"),
  14833. weight: math.unit(150, "lb"),
  14834. name: "Front",
  14835. image: {
  14836. source: "./media/characters/drusilla/front.svg",
  14837. extra: 678 / 635,
  14838. bottom: 0.03
  14839. }
  14840. },
  14841. back: {
  14842. height: math.unit(6, "feet"),
  14843. weight: math.unit(150, "lb"),
  14844. name: "Back",
  14845. image: {
  14846. source: "./media/characters/drusilla/back.svg",
  14847. extra: 678 / 635,
  14848. bottom: 0.005
  14849. }
  14850. },
  14851. },
  14852. [
  14853. {
  14854. name: "Macro",
  14855. height: math.unit(100, "feet")
  14856. },
  14857. {
  14858. name: "Canon Height",
  14859. height: math.unit(2000, "feet"),
  14860. default: true
  14861. },
  14862. ]
  14863. ))
  14864. characterMakers.push(() => makeCharacter(
  14865. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14866. {
  14867. front: {
  14868. height: math.unit(6, "feet"),
  14869. weight: math.unit(180, "lb"),
  14870. name: "Front",
  14871. image: {
  14872. source: "./media/characters/renard-thatch/front.svg",
  14873. extra: 2411 / 2275,
  14874. bottom: 0.01
  14875. }
  14876. },
  14877. frontPosing: {
  14878. height: math.unit(6, "feet"),
  14879. weight: math.unit(180, "lb"),
  14880. name: "Front (Posing)",
  14881. image: {
  14882. source: "./media/characters/renard-thatch/front-posing.svg",
  14883. extra: 2381 / 2261,
  14884. bottom: 0.01
  14885. }
  14886. },
  14887. back: {
  14888. height: math.unit(6, "feet"),
  14889. weight: math.unit(180, "lb"),
  14890. name: "Back",
  14891. image: {
  14892. source: "./media/characters/renard-thatch/back.svg",
  14893. extra: 2428 / 2288
  14894. }
  14895. },
  14896. },
  14897. [
  14898. {
  14899. name: "Micro",
  14900. height: math.unit(3, "inches")
  14901. },
  14902. {
  14903. name: "Default",
  14904. height: math.unit(6, "feet"),
  14905. default: true
  14906. },
  14907. {
  14908. name: "Macro",
  14909. height: math.unit(75, "feet")
  14910. },
  14911. ]
  14912. ))
  14913. characterMakers.push(() => makeCharacter(
  14914. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14915. {
  14916. front: {
  14917. height: math.unit(1450, "feet"),
  14918. weight: math.unit(1.21e6, "tons"),
  14919. name: "Front",
  14920. image: {
  14921. source: "./media/characters/sekvra/front.svg",
  14922. extra: 1193/1190,
  14923. bottom: 78/1271
  14924. }
  14925. },
  14926. side: {
  14927. height: math.unit(1450, "feet"),
  14928. weight: math.unit(1.21e6, "tons"),
  14929. name: "Side",
  14930. image: {
  14931. source: "./media/characters/sekvra/side.svg",
  14932. extra: 1193/1190,
  14933. bottom: 52/1245
  14934. }
  14935. },
  14936. back: {
  14937. height: math.unit(1450, "feet"),
  14938. weight: math.unit(1.21e6, "tons"),
  14939. name: "Back",
  14940. image: {
  14941. source: "./media/characters/sekvra/back.svg",
  14942. extra: 1219/1216,
  14943. bottom: 21/1240
  14944. }
  14945. },
  14946. frontClothed: {
  14947. height: math.unit(1450, "feet"),
  14948. weight: math.unit(1.21e6, "tons"),
  14949. name: "Front (Clothed)",
  14950. image: {
  14951. source: "./media/characters/sekvra/front-clothed.svg",
  14952. extra: 1192/1189,
  14953. bottom: 79/1271
  14954. }
  14955. },
  14956. },
  14957. [
  14958. {
  14959. name: "Macro",
  14960. height: math.unit(1450, "feet"),
  14961. default: true
  14962. },
  14963. {
  14964. name: "Megamacro",
  14965. height: math.unit(15000, "feet")
  14966. },
  14967. ]
  14968. ))
  14969. characterMakers.push(() => makeCharacter(
  14970. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14971. {
  14972. front: {
  14973. height: math.unit(6, "feet"),
  14974. weight: math.unit(150, "lb"),
  14975. name: "Front",
  14976. image: {
  14977. source: "./media/characters/carmine/front.svg",
  14978. extra: 1557/1538,
  14979. bottom: 68/1625
  14980. }
  14981. },
  14982. frontArmor: {
  14983. height: math.unit(6, "feet"),
  14984. weight: math.unit(150, "lb"),
  14985. name: "Front (Armor)",
  14986. image: {
  14987. source: "./media/characters/carmine/front-armor.svg",
  14988. extra: 1549/1530,
  14989. bottom: 82/1631
  14990. }
  14991. },
  14992. mouth: {
  14993. height: math.unit(0.55, "feet"),
  14994. name: "Mouth",
  14995. image: {
  14996. source: "./media/characters/carmine/mouth.svg"
  14997. }
  14998. },
  14999. hand: {
  15000. height: math.unit(1.05, "feet"),
  15001. name: "Hand",
  15002. image: {
  15003. source: "./media/characters/carmine/hand.svg"
  15004. }
  15005. },
  15006. foot: {
  15007. height: math.unit(0.6, "feet"),
  15008. name: "Foot",
  15009. image: {
  15010. source: "./media/characters/carmine/foot.svg"
  15011. }
  15012. },
  15013. },
  15014. [
  15015. {
  15016. name: "Large",
  15017. height: math.unit(1, "mile")
  15018. },
  15019. {
  15020. name: "Huge",
  15021. height: math.unit(40, "miles"),
  15022. default: true
  15023. },
  15024. {
  15025. name: "Colossal",
  15026. height: math.unit(2500, "miles")
  15027. },
  15028. ]
  15029. ))
  15030. characterMakers.push(() => makeCharacter(
  15031. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15032. {
  15033. front: {
  15034. height: math.unit(6, "feet"),
  15035. weight: math.unit(150, "lb"),
  15036. name: "Front",
  15037. image: {
  15038. source: "./media/characters/elyssia/front.svg",
  15039. extra: 2201 / 2035,
  15040. bottom: 0.05
  15041. }
  15042. },
  15043. frontClothed: {
  15044. height: math.unit(6, "feet"),
  15045. weight: math.unit(150, "lb"),
  15046. name: "Front (Clothed)",
  15047. image: {
  15048. source: "./media/characters/elyssia/front-clothed.svg",
  15049. extra: 2201 / 2035,
  15050. bottom: 0.05
  15051. }
  15052. },
  15053. back: {
  15054. height: math.unit(6, "feet"),
  15055. weight: math.unit(150, "lb"),
  15056. name: "Back",
  15057. image: {
  15058. source: "./media/characters/elyssia/back.svg",
  15059. extra: 2201 / 2035,
  15060. bottom: 0.013
  15061. }
  15062. },
  15063. },
  15064. [
  15065. {
  15066. name: "Smaller",
  15067. height: math.unit(150, "feet")
  15068. },
  15069. {
  15070. name: "Standard",
  15071. height: math.unit(1400, "feet"),
  15072. default: true
  15073. },
  15074. {
  15075. name: "Distracted",
  15076. height: math.unit(15000, "feet")
  15077. },
  15078. ]
  15079. ))
  15080. characterMakers.push(() => makeCharacter(
  15081. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15082. {
  15083. front: {
  15084. height: math.unit(7 + 4/12, "feet"),
  15085. weight: math.unit(690, "lb"),
  15086. name: "Front",
  15087. image: {
  15088. source: "./media/characters/geno-maxwell/front.svg",
  15089. extra: 984/856,
  15090. bottom: 87/1071
  15091. }
  15092. },
  15093. back: {
  15094. height: math.unit(7 + 4/12, "feet"),
  15095. weight: math.unit(690, "lb"),
  15096. name: "Back",
  15097. image: {
  15098. source: "./media/characters/geno-maxwell/back.svg",
  15099. extra: 981/854,
  15100. bottom: 57/1038
  15101. }
  15102. },
  15103. frontCostume: {
  15104. height: math.unit(7 + 4/12, "feet"),
  15105. weight: math.unit(690, "lb"),
  15106. name: "Front (Costume)",
  15107. image: {
  15108. source: "./media/characters/geno-maxwell/front-costume.svg",
  15109. extra: 984/856,
  15110. bottom: 87/1071
  15111. }
  15112. },
  15113. backcostume: {
  15114. height: math.unit(7 + 4/12, "feet"),
  15115. weight: math.unit(690, "lb"),
  15116. name: "Back (Costume)",
  15117. image: {
  15118. source: "./media/characters/geno-maxwell/back-costume.svg",
  15119. extra: 981/854,
  15120. bottom: 57/1038
  15121. }
  15122. },
  15123. },
  15124. [
  15125. {
  15126. name: "Micro",
  15127. height: math.unit(3, "inches")
  15128. },
  15129. {
  15130. name: "Normal",
  15131. height: math.unit(7 + 4 / 12, "feet"),
  15132. default: true
  15133. },
  15134. {
  15135. name: "Macro",
  15136. height: math.unit(220, "feet")
  15137. },
  15138. {
  15139. name: "Megamacro",
  15140. height: math.unit(11, "miles")
  15141. },
  15142. ]
  15143. ))
  15144. characterMakers.push(() => makeCharacter(
  15145. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15146. {
  15147. front: {
  15148. height: math.unit(7 + 4/12, "feet"),
  15149. weight: math.unit(750, "lb"),
  15150. name: "Front",
  15151. image: {
  15152. source: "./media/characters/regena-maxwell/front.svg",
  15153. extra: 984/856,
  15154. bottom: 87/1071
  15155. }
  15156. },
  15157. back: {
  15158. height: math.unit(7 + 4/12, "feet"),
  15159. weight: math.unit(750, "lb"),
  15160. name: "Back",
  15161. image: {
  15162. source: "./media/characters/regena-maxwell/back.svg",
  15163. extra: 981/854,
  15164. bottom: 57/1038
  15165. }
  15166. },
  15167. frontCostume: {
  15168. height: math.unit(7 + 4/12, "feet"),
  15169. weight: math.unit(750, "lb"),
  15170. name: "Front (Costume)",
  15171. image: {
  15172. source: "./media/characters/regena-maxwell/front-costume.svg",
  15173. extra: 984/856,
  15174. bottom: 87/1071
  15175. }
  15176. },
  15177. backcostume: {
  15178. height: math.unit(7 + 4/12, "feet"),
  15179. weight: math.unit(750, "lb"),
  15180. name: "Back (Costume)",
  15181. image: {
  15182. source: "./media/characters/regena-maxwell/back-costume.svg",
  15183. extra: 981/854,
  15184. bottom: 57/1038
  15185. }
  15186. },
  15187. },
  15188. [
  15189. {
  15190. name: "Normal",
  15191. height: math.unit(7 + 4 / 12, "feet"),
  15192. default: true
  15193. },
  15194. {
  15195. name: "Macro",
  15196. height: math.unit(220, "feet")
  15197. },
  15198. {
  15199. name: "Megamacro",
  15200. height: math.unit(11, "miles")
  15201. },
  15202. ]
  15203. ))
  15204. characterMakers.push(() => makeCharacter(
  15205. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15206. {
  15207. front: {
  15208. height: math.unit(6, "feet"),
  15209. weight: math.unit(150, "lb"),
  15210. name: "Front",
  15211. image: {
  15212. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15213. extra: 860 / 690,
  15214. bottom: 0.03
  15215. }
  15216. },
  15217. },
  15218. [
  15219. {
  15220. name: "Normal",
  15221. height: math.unit(1.7, "meters"),
  15222. default: true
  15223. },
  15224. ]
  15225. ))
  15226. characterMakers.push(() => makeCharacter(
  15227. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15228. {
  15229. front: {
  15230. height: math.unit(6, "feet"),
  15231. weight: math.unit(150, "lb"),
  15232. name: "Front",
  15233. image: {
  15234. source: "./media/characters/quilly/front.svg",
  15235. extra: 890 / 776
  15236. }
  15237. },
  15238. },
  15239. [
  15240. {
  15241. name: "Gigamacro",
  15242. height: math.unit(404090, "miles"),
  15243. default: true
  15244. },
  15245. ]
  15246. ))
  15247. characterMakers.push(() => makeCharacter(
  15248. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15249. {
  15250. front: {
  15251. height: math.unit(7 + 8 / 12, "feet"),
  15252. weight: math.unit(350, "lb"),
  15253. name: "Front",
  15254. image: {
  15255. source: "./media/characters/tempest/front.svg",
  15256. extra: 1175 / 1086,
  15257. bottom: 0.02
  15258. }
  15259. },
  15260. },
  15261. [
  15262. {
  15263. name: "Normal",
  15264. height: math.unit(7 + 8 / 12, "feet"),
  15265. default: true
  15266. },
  15267. ]
  15268. ))
  15269. characterMakers.push(() => makeCharacter(
  15270. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15271. {
  15272. side: {
  15273. height: math.unit(4 + 5 / 12, "feet"),
  15274. weight: math.unit(80, "lb"),
  15275. name: "Side",
  15276. image: {
  15277. source: "./media/characters/rodger/side.svg",
  15278. extra: 1235 / 1118
  15279. }
  15280. },
  15281. },
  15282. [
  15283. {
  15284. name: "Micro",
  15285. height: math.unit(1, "inch")
  15286. },
  15287. {
  15288. name: "Normal",
  15289. height: math.unit(4 + 5 / 12, "feet"),
  15290. default: true
  15291. },
  15292. {
  15293. name: "Macro",
  15294. height: math.unit(120, "feet")
  15295. },
  15296. ]
  15297. ))
  15298. characterMakers.push(() => makeCharacter(
  15299. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15300. {
  15301. front: {
  15302. height: math.unit(6, "feet"),
  15303. weight: math.unit(150, "lb"),
  15304. name: "Front",
  15305. image: {
  15306. source: "./media/characters/danyel/front.svg",
  15307. extra: 1185 / 1123,
  15308. bottom: 0.05
  15309. }
  15310. },
  15311. },
  15312. [
  15313. {
  15314. name: "Shrunken",
  15315. height: math.unit(0.5, "mm")
  15316. },
  15317. {
  15318. name: "Micro",
  15319. height: math.unit(1, "mm"),
  15320. default: true
  15321. },
  15322. {
  15323. name: "Upsized",
  15324. height: math.unit(5 + 5 / 12, "feet")
  15325. },
  15326. ]
  15327. ))
  15328. characterMakers.push(() => makeCharacter(
  15329. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15330. {
  15331. front: {
  15332. height: math.unit(5 + 6 / 12, "feet"),
  15333. weight: math.unit(200, "lb"),
  15334. name: "Front",
  15335. image: {
  15336. source: "./media/characters/vivian-bijoux/front.svg",
  15337. extra: 1217/1209,
  15338. bottom: 76/1293
  15339. }
  15340. },
  15341. back: {
  15342. height: math.unit(5 + 6 / 12, "feet"),
  15343. weight: math.unit(200, "lb"),
  15344. name: "Back",
  15345. image: {
  15346. source: "./media/characters/vivian-bijoux/back.svg",
  15347. extra: 1214/1208,
  15348. bottom: 51/1265
  15349. }
  15350. },
  15351. dressed: {
  15352. height: math.unit(5 + 6 / 12, "feet"),
  15353. weight: math.unit(200, "lb"),
  15354. name: "Dressed",
  15355. image: {
  15356. source: "./media/characters/vivian-bijoux/dressed.svg",
  15357. extra: 1217/1209,
  15358. bottom: 76/1293
  15359. }
  15360. },
  15361. },
  15362. [
  15363. {
  15364. name: "Normal",
  15365. height: math.unit(5 + 6 / 12, "feet"),
  15366. default: true
  15367. },
  15368. {
  15369. name: "Bad Dream",
  15370. height: math.unit(500, "feet")
  15371. },
  15372. {
  15373. name: "Nightmare",
  15374. height: math.unit(500, "miles")
  15375. },
  15376. ]
  15377. ))
  15378. characterMakers.push(() => makeCharacter(
  15379. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15380. {
  15381. front: {
  15382. height: math.unit(6 + 1 / 12, "feet"),
  15383. weight: math.unit(260, "lb"),
  15384. name: "Front",
  15385. image: {
  15386. source: "./media/characters/zeta/front.svg",
  15387. extra: 1968 / 1889,
  15388. bottom: 0.06
  15389. }
  15390. },
  15391. back: {
  15392. height: math.unit(6 + 1 / 12, "feet"),
  15393. weight: math.unit(260, "lb"),
  15394. name: "Back",
  15395. image: {
  15396. source: "./media/characters/zeta/back.svg",
  15397. extra: 1944 / 1858,
  15398. bottom: 0.03
  15399. }
  15400. },
  15401. hand: {
  15402. height: math.unit(1.112, "feet"),
  15403. name: "Hand",
  15404. image: {
  15405. source: "./media/characters/zeta/hand.svg"
  15406. }
  15407. },
  15408. foot: {
  15409. height: math.unit(1.48, "feet"),
  15410. name: "Foot",
  15411. image: {
  15412. source: "./media/characters/zeta/foot.svg"
  15413. }
  15414. },
  15415. },
  15416. [
  15417. {
  15418. name: "Micro",
  15419. height: math.unit(6, "inches")
  15420. },
  15421. {
  15422. name: "Normal",
  15423. height: math.unit(6 + 1 / 12, "feet"),
  15424. default: true
  15425. },
  15426. {
  15427. name: "Macro",
  15428. height: math.unit(20, "feet")
  15429. },
  15430. ]
  15431. ))
  15432. characterMakers.push(() => makeCharacter(
  15433. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15434. {
  15435. front: {
  15436. height: math.unit(6, "feet"),
  15437. weight: math.unit(150, "lb"),
  15438. name: "Front",
  15439. image: {
  15440. source: "./media/characters/jamie-larsen/front.svg",
  15441. extra: 962 / 933,
  15442. bottom: 0.02
  15443. }
  15444. },
  15445. back: {
  15446. height: math.unit(6, "feet"),
  15447. weight: math.unit(150, "lb"),
  15448. name: "Back",
  15449. image: {
  15450. source: "./media/characters/jamie-larsen/back.svg",
  15451. extra: 997 / 946
  15452. }
  15453. },
  15454. },
  15455. [
  15456. {
  15457. name: "Macro",
  15458. height: math.unit(28 + 7 / 12, "feet"),
  15459. default: true
  15460. },
  15461. {
  15462. name: "Macro+",
  15463. height: math.unit(180, "feet")
  15464. },
  15465. {
  15466. name: "Megamacro",
  15467. height: math.unit(10, "miles")
  15468. },
  15469. {
  15470. name: "Gigamacro",
  15471. height: math.unit(200000, "miles")
  15472. },
  15473. ]
  15474. ))
  15475. characterMakers.push(() => makeCharacter(
  15476. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15477. {
  15478. front: {
  15479. height: math.unit(6, "feet"),
  15480. weight: math.unit(120, "lb"),
  15481. name: "Front",
  15482. image: {
  15483. source: "./media/characters/vance/front.svg",
  15484. extra: 1980 / 1890,
  15485. bottom: 0.09
  15486. }
  15487. },
  15488. back: {
  15489. height: math.unit(6, "feet"),
  15490. weight: math.unit(120, "lb"),
  15491. name: "Back",
  15492. image: {
  15493. source: "./media/characters/vance/back.svg",
  15494. extra: 2081 / 1994,
  15495. bottom: 0.014
  15496. }
  15497. },
  15498. hand: {
  15499. height: math.unit(0.88, "feet"),
  15500. name: "Hand",
  15501. image: {
  15502. source: "./media/characters/vance/hand.svg"
  15503. }
  15504. },
  15505. foot: {
  15506. height: math.unit(0.64, "feet"),
  15507. name: "Foot",
  15508. image: {
  15509. source: "./media/characters/vance/foot.svg"
  15510. }
  15511. },
  15512. },
  15513. [
  15514. {
  15515. name: "Small",
  15516. height: math.unit(90, "feet"),
  15517. default: true
  15518. },
  15519. {
  15520. name: "Macro",
  15521. height: math.unit(100, "meters")
  15522. },
  15523. {
  15524. name: "Megamacro",
  15525. height: math.unit(15, "miles")
  15526. },
  15527. ]
  15528. ))
  15529. characterMakers.push(() => makeCharacter(
  15530. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15531. {
  15532. front: {
  15533. height: math.unit(6, "feet"),
  15534. weight: math.unit(180, "lb"),
  15535. name: "Front",
  15536. image: {
  15537. source: "./media/characters/xochitl/front.svg",
  15538. extra: 2297 / 2261,
  15539. bottom: 0.065
  15540. }
  15541. },
  15542. back: {
  15543. height: math.unit(6, "feet"),
  15544. weight: math.unit(180, "lb"),
  15545. name: "Back",
  15546. image: {
  15547. source: "./media/characters/xochitl/back.svg",
  15548. extra: 2386 / 2354,
  15549. bottom: 0.01
  15550. }
  15551. },
  15552. foot: {
  15553. height: math.unit(6 / 5 * 1.15, "feet"),
  15554. weight: math.unit(150, "lb"),
  15555. name: "Foot",
  15556. image: {
  15557. source: "./media/characters/xochitl/foot.svg"
  15558. }
  15559. },
  15560. },
  15561. [
  15562. {
  15563. name: "Macro",
  15564. height: math.unit(80, "feet")
  15565. },
  15566. {
  15567. name: "Macro+",
  15568. height: math.unit(400, "feet"),
  15569. default: true
  15570. },
  15571. {
  15572. name: "Gigamacro",
  15573. height: math.unit(80000, "miles")
  15574. },
  15575. {
  15576. name: "Gigamacro+",
  15577. height: math.unit(400000, "miles")
  15578. },
  15579. {
  15580. name: "Teramacro",
  15581. height: math.unit(300, "AU")
  15582. },
  15583. ]
  15584. ))
  15585. characterMakers.push(() => makeCharacter(
  15586. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15587. {
  15588. front: {
  15589. height: math.unit(6, "feet"),
  15590. weight: math.unit(150, "lb"),
  15591. name: "Front",
  15592. image: {
  15593. source: "./media/characters/vincent/front.svg",
  15594. extra: 1130 / 1080,
  15595. bottom: 0.055
  15596. }
  15597. },
  15598. beak: {
  15599. height: math.unit(6 * 0.1, "feet"),
  15600. name: "Beak",
  15601. image: {
  15602. source: "./media/characters/vincent/beak.svg"
  15603. }
  15604. },
  15605. hand: {
  15606. height: math.unit(6 * 0.85, "feet"),
  15607. weight: math.unit(150, "lb"),
  15608. name: "Hand",
  15609. image: {
  15610. source: "./media/characters/vincent/hand.svg"
  15611. }
  15612. },
  15613. foot: {
  15614. height: math.unit(6 * 0.19, "feet"),
  15615. weight: math.unit(150, "lb"),
  15616. name: "Foot",
  15617. image: {
  15618. source: "./media/characters/vincent/foot.svg"
  15619. }
  15620. },
  15621. },
  15622. [
  15623. {
  15624. name: "Base",
  15625. height: math.unit(6 + 5 / 12, "feet"),
  15626. default: true
  15627. },
  15628. {
  15629. name: "Macro",
  15630. height: math.unit(300, "feet")
  15631. },
  15632. {
  15633. name: "Megamacro",
  15634. height: math.unit(2, "miles")
  15635. },
  15636. {
  15637. name: "Gigamacro",
  15638. height: math.unit(1000, "miles")
  15639. },
  15640. ]
  15641. ))
  15642. characterMakers.push(() => makeCharacter(
  15643. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15644. {
  15645. front: {
  15646. height: math.unit(2, "meters"),
  15647. weight: math.unit(500, "kg"),
  15648. name: "Front",
  15649. image: {
  15650. source: "./media/characters/coatl/front.svg",
  15651. extra: 3948 / 3500,
  15652. bottom: 0.082
  15653. }
  15654. },
  15655. },
  15656. [
  15657. {
  15658. name: "Normal",
  15659. height: math.unit(4, "meters")
  15660. },
  15661. {
  15662. name: "Macro",
  15663. height: math.unit(100, "meters"),
  15664. default: true
  15665. },
  15666. {
  15667. name: "Macro+",
  15668. height: math.unit(300, "meters")
  15669. },
  15670. {
  15671. name: "Megamacro",
  15672. height: math.unit(3, "gigameters")
  15673. },
  15674. {
  15675. name: "Megamacro+",
  15676. height: math.unit(300, "terameters")
  15677. },
  15678. {
  15679. name: "Megamacro++",
  15680. height: math.unit(3, "lightyears")
  15681. },
  15682. ]
  15683. ))
  15684. characterMakers.push(() => makeCharacter(
  15685. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15686. {
  15687. front: {
  15688. height: math.unit(6, "feet"),
  15689. weight: math.unit(50, "kg"),
  15690. name: "front",
  15691. image: {
  15692. source: "./media/characters/shiroryu/front.svg",
  15693. extra: 1990 / 1935
  15694. }
  15695. },
  15696. },
  15697. [
  15698. {
  15699. name: "Mortal Mingling",
  15700. height: math.unit(3, "meters")
  15701. },
  15702. {
  15703. name: "Kaiju-ish",
  15704. height: math.unit(250, "meters")
  15705. },
  15706. {
  15707. name: "Somewhat Godly",
  15708. height: math.unit(400, "km"),
  15709. default: true
  15710. },
  15711. {
  15712. name: "Planetary",
  15713. height: math.unit(300, "megameters")
  15714. },
  15715. {
  15716. name: "Galaxy-dwarfing",
  15717. height: math.unit(450, "kiloparsecs")
  15718. },
  15719. {
  15720. name: "Universe Eater",
  15721. height: math.unit(150, "gigaparsecs")
  15722. },
  15723. {
  15724. name: "Almost Immeasurable",
  15725. height: math.unit(1.3e266, "yottaparsecs")
  15726. },
  15727. ]
  15728. ))
  15729. characterMakers.push(() => makeCharacter(
  15730. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15731. {
  15732. front: {
  15733. height: math.unit(6, "feet"),
  15734. weight: math.unit(150, "lb"),
  15735. name: "Front",
  15736. image: {
  15737. source: "./media/characters/umeko/front.svg",
  15738. extra: 1,
  15739. bottom: 0.019
  15740. }
  15741. },
  15742. frontArmored: {
  15743. height: math.unit(6, "feet"),
  15744. weight: math.unit(150, "lb"),
  15745. name: "Front (Armored)",
  15746. image: {
  15747. source: "./media/characters/umeko/front-armored.svg",
  15748. extra: 1,
  15749. bottom: 0.021
  15750. }
  15751. },
  15752. },
  15753. [
  15754. {
  15755. name: "Macro",
  15756. height: math.unit(220, "feet"),
  15757. default: true
  15758. },
  15759. {
  15760. name: "Guardian Dragon",
  15761. height: math.unit(50, "miles")
  15762. },
  15763. {
  15764. name: "Cosmic",
  15765. height: math.unit(800000, "miles")
  15766. },
  15767. ]
  15768. ))
  15769. characterMakers.push(() => makeCharacter(
  15770. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15771. {
  15772. front: {
  15773. height: math.unit(6, "feet"),
  15774. weight: math.unit(150, "lb"),
  15775. name: "Front",
  15776. image: {
  15777. source: "./media/characters/cassidy/front.svg",
  15778. extra: 810/808,
  15779. bottom: 41/851
  15780. }
  15781. },
  15782. },
  15783. [
  15784. {
  15785. name: "Canon Height",
  15786. height: math.unit(120, "feet"),
  15787. default: true
  15788. },
  15789. {
  15790. name: "Macro+",
  15791. height: math.unit(400, "feet")
  15792. },
  15793. {
  15794. name: "Macro++",
  15795. height: math.unit(4000, "feet")
  15796. },
  15797. {
  15798. name: "Megamacro",
  15799. height: math.unit(3, "miles")
  15800. },
  15801. ]
  15802. ))
  15803. characterMakers.push(() => makeCharacter(
  15804. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15805. {
  15806. front: {
  15807. height: math.unit(6, "feet"),
  15808. weight: math.unit(150, "lb"),
  15809. name: "Front",
  15810. image: {
  15811. source: "./media/characters/isaac/front.svg",
  15812. extra: 896 / 815,
  15813. bottom: 0.11
  15814. }
  15815. },
  15816. },
  15817. [
  15818. {
  15819. name: "Human Size",
  15820. height: math.unit(8, "feet"),
  15821. default: true
  15822. },
  15823. {
  15824. name: "Macro",
  15825. height: math.unit(400, "feet")
  15826. },
  15827. {
  15828. name: "Megamacro",
  15829. height: math.unit(50, "miles")
  15830. },
  15831. {
  15832. name: "Canon Height",
  15833. height: math.unit(200, "AU")
  15834. },
  15835. ]
  15836. ))
  15837. characterMakers.push(() => makeCharacter(
  15838. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15839. {
  15840. front: {
  15841. height: math.unit(6, "feet"),
  15842. weight: math.unit(72, "kg"),
  15843. name: "Front",
  15844. image: {
  15845. source: "./media/characters/sleekit/front.svg",
  15846. extra: 4693 / 4487,
  15847. bottom: 0.012
  15848. }
  15849. },
  15850. },
  15851. [
  15852. {
  15853. name: "Minimum Height",
  15854. height: math.unit(10, "meters")
  15855. },
  15856. {
  15857. name: "Smaller",
  15858. height: math.unit(25, "meters")
  15859. },
  15860. {
  15861. name: "Larger",
  15862. height: math.unit(38, "meters"),
  15863. default: true
  15864. },
  15865. {
  15866. name: "Maximum height",
  15867. height: math.unit(100, "meters")
  15868. },
  15869. ]
  15870. ))
  15871. characterMakers.push(() => makeCharacter(
  15872. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15873. {
  15874. front: {
  15875. height: math.unit(6, "feet"),
  15876. weight: math.unit(150, "lb"),
  15877. name: "Front",
  15878. image: {
  15879. source: "./media/characters/nillia/front.svg",
  15880. extra: 719/665,
  15881. bottom: 6/725
  15882. }
  15883. },
  15884. back: {
  15885. height: math.unit(6, "feet"),
  15886. weight: math.unit(150, "lb"),
  15887. name: "Back",
  15888. image: {
  15889. source: "./media/characters/nillia/back.svg",
  15890. extra: 705/651,
  15891. bottom: 5/710
  15892. }
  15893. },
  15894. },
  15895. [
  15896. {
  15897. name: "Canon Height",
  15898. height: math.unit(489, "feet"),
  15899. default: true
  15900. }
  15901. ]
  15902. ))
  15903. characterMakers.push(() => makeCharacter(
  15904. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  15905. {
  15906. front: {
  15907. height: math.unit(6, "feet"),
  15908. weight: math.unit(150, "lb"),
  15909. name: "Front",
  15910. image: {
  15911. source: "./media/characters/mesmyriza/front.svg",
  15912. extra: 1541/1291,
  15913. bottom: 87/1628
  15914. }
  15915. },
  15916. foot: {
  15917. height: math.unit(6 / (250 / 35), "feet"),
  15918. name: "Foot",
  15919. image: {
  15920. source: "./media/characters/mesmyriza/foot.svg"
  15921. }
  15922. },
  15923. },
  15924. [
  15925. {
  15926. name: "Macro",
  15927. height: math.unit(457, "meters"),
  15928. default: true
  15929. },
  15930. {
  15931. name: "Megamacro",
  15932. height: math.unit(8, "megameters")
  15933. },
  15934. ]
  15935. ))
  15936. characterMakers.push(() => makeCharacter(
  15937. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15938. {
  15939. front: {
  15940. height: math.unit(6, "feet"),
  15941. weight: math.unit(250, "lb"),
  15942. name: "Front",
  15943. image: {
  15944. source: "./media/characters/saudade/front.svg",
  15945. extra: 1172 / 1139,
  15946. bottom: 0.035
  15947. }
  15948. },
  15949. },
  15950. [
  15951. {
  15952. name: "Micro",
  15953. height: math.unit(3, "inches")
  15954. },
  15955. {
  15956. name: "Normal",
  15957. height: math.unit(6, "feet"),
  15958. default: true
  15959. },
  15960. {
  15961. name: "Macro",
  15962. height: math.unit(50, "feet")
  15963. },
  15964. {
  15965. name: "Megamacro",
  15966. height: math.unit(2800, "feet")
  15967. },
  15968. ]
  15969. ))
  15970. characterMakers.push(() => makeCharacter(
  15971. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15972. {
  15973. front: {
  15974. height: math.unit(5 + 4 / 12, "feet"),
  15975. weight: math.unit(100, "lb"),
  15976. name: "Front",
  15977. image: {
  15978. source: "./media/characters/keireer/front.svg",
  15979. extra: 716 / 666,
  15980. bottom: 0.05
  15981. }
  15982. },
  15983. },
  15984. [
  15985. {
  15986. name: "Normal",
  15987. height: math.unit(5 + 4 / 12, "feet"),
  15988. default: true
  15989. },
  15990. ]
  15991. ))
  15992. characterMakers.push(() => makeCharacter(
  15993. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15994. {
  15995. front: {
  15996. height: math.unit(5.5, "feet"),
  15997. weight: math.unit(90, "kg"),
  15998. name: "Front",
  15999. image: {
  16000. source: "./media/characters/mirja/front.svg",
  16001. extra: 1452/1262,
  16002. bottom: 67/1519
  16003. }
  16004. },
  16005. frontDressed: {
  16006. height: math.unit(5.5, "feet"),
  16007. weight: math.unit(90, "lb"),
  16008. name: "Front (Dressed)",
  16009. image: {
  16010. source: "./media/characters/mirja/dressed.svg",
  16011. extra: 1452/1262,
  16012. bottom: 67/1519
  16013. }
  16014. },
  16015. back: {
  16016. height: math.unit(6, "feet"),
  16017. weight: math.unit(90, "lb"),
  16018. name: "Back",
  16019. image: {
  16020. source: "./media/characters/mirja/back.svg",
  16021. extra: 1892/1795,
  16022. bottom: 48/1940
  16023. }
  16024. },
  16025. maw: {
  16026. height: math.unit(1.312, "feet"),
  16027. name: "Maw",
  16028. image: {
  16029. source: "./media/characters/mirja/maw.svg"
  16030. }
  16031. },
  16032. paw: {
  16033. height: math.unit(1.15, "feet"),
  16034. name: "Paw",
  16035. image: {
  16036. source: "./media/characters/mirja/paw.svg"
  16037. }
  16038. },
  16039. },
  16040. [
  16041. {
  16042. name: "\"Incognito\"",
  16043. height: math.unit(3, "meters")
  16044. },
  16045. {
  16046. name: "Strolling Size",
  16047. height: math.unit(15, "km")
  16048. },
  16049. {
  16050. name: "Larger Strolling Size",
  16051. height: math.unit(400, "km")
  16052. },
  16053. {
  16054. name: "Preferred Size",
  16055. height: math.unit(5000, "km"),
  16056. default: true
  16057. },
  16058. {
  16059. name: "True Size",
  16060. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16061. },
  16062. ]
  16063. ))
  16064. characterMakers.push(() => makeCharacter(
  16065. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16066. {
  16067. front: {
  16068. height: math.unit(15, "feet"),
  16069. weight: math.unit(880, "kg"),
  16070. name: "Front",
  16071. image: {
  16072. source: "./media/characters/nightraver/front.svg",
  16073. extra: 2444 / 2160,
  16074. bottom: 0.027
  16075. }
  16076. },
  16077. back: {
  16078. height: math.unit(15, "feet"),
  16079. weight: math.unit(880, "kg"),
  16080. name: "Back",
  16081. image: {
  16082. source: "./media/characters/nightraver/back.svg",
  16083. extra: 2309 / 2180,
  16084. bottom: 0.005
  16085. }
  16086. },
  16087. sole: {
  16088. height: math.unit(2.878, "feet"),
  16089. name: "Sole",
  16090. image: {
  16091. source: "./media/characters/nightraver/sole.svg"
  16092. }
  16093. },
  16094. foot: {
  16095. height: math.unit(2.285, "feet"),
  16096. name: "Foot",
  16097. image: {
  16098. source: "./media/characters/nightraver/foot.svg"
  16099. }
  16100. },
  16101. maw: {
  16102. height: math.unit(2.67, "feet"),
  16103. name: "Maw",
  16104. image: {
  16105. source: "./media/characters/nightraver/maw.svg"
  16106. }
  16107. },
  16108. },
  16109. [
  16110. {
  16111. name: "Micro",
  16112. height: math.unit(1, "cm")
  16113. },
  16114. {
  16115. name: "Normal",
  16116. height: math.unit(15, "feet"),
  16117. default: true
  16118. },
  16119. {
  16120. name: "Macro",
  16121. height: math.unit(300, "feet")
  16122. },
  16123. {
  16124. name: "Megamacro",
  16125. height: math.unit(300, "miles")
  16126. },
  16127. {
  16128. name: "Gigamacro",
  16129. height: math.unit(10000, "miles")
  16130. },
  16131. ]
  16132. ))
  16133. characterMakers.push(() => makeCharacter(
  16134. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16135. {
  16136. side: {
  16137. height: math.unit(2, "inches"),
  16138. weight: math.unit(5, "grams"),
  16139. name: "Side",
  16140. image: {
  16141. source: "./media/characters/arc/side.svg"
  16142. }
  16143. },
  16144. },
  16145. [
  16146. {
  16147. name: "Micro",
  16148. height: math.unit(2, "inches"),
  16149. default: true
  16150. },
  16151. ]
  16152. ))
  16153. characterMakers.push(() => makeCharacter(
  16154. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16155. {
  16156. front: {
  16157. height: math.unit(1.1938, "meters"),
  16158. weight: math.unit(54, "kg"),
  16159. name: "Front",
  16160. image: {
  16161. source: "./media/characters/nebula-shahar/front.svg",
  16162. extra: 1642 / 1436,
  16163. bottom: 0.06
  16164. }
  16165. },
  16166. },
  16167. [
  16168. {
  16169. name: "Megamicro",
  16170. height: math.unit(0.3, "mm")
  16171. },
  16172. {
  16173. name: "Micro",
  16174. height: math.unit(3, "cm")
  16175. },
  16176. {
  16177. name: "Normal",
  16178. height: math.unit(138, "cm"),
  16179. default: true
  16180. },
  16181. {
  16182. name: "Macro",
  16183. height: math.unit(30, "m")
  16184. },
  16185. ]
  16186. ))
  16187. characterMakers.push(() => makeCharacter(
  16188. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16189. {
  16190. front: {
  16191. height: math.unit(5.24, "feet"),
  16192. weight: math.unit(150, "lb"),
  16193. name: "Front",
  16194. image: {
  16195. source: "./media/characters/shayla/front.svg",
  16196. extra: 1512 / 1414,
  16197. bottom: 0.01
  16198. }
  16199. },
  16200. back: {
  16201. height: math.unit(5.24, "feet"),
  16202. weight: math.unit(150, "lb"),
  16203. name: "Back",
  16204. image: {
  16205. source: "./media/characters/shayla/back.svg",
  16206. extra: 1512 / 1414
  16207. }
  16208. },
  16209. hand: {
  16210. height: math.unit(0.7781496062992126, "feet"),
  16211. name: "Hand",
  16212. image: {
  16213. source: "./media/characters/shayla/hand.svg"
  16214. }
  16215. },
  16216. foot: {
  16217. height: math.unit(1.4206036745406823, "feet"),
  16218. name: "Foot",
  16219. image: {
  16220. source: "./media/characters/shayla/foot.svg"
  16221. }
  16222. },
  16223. },
  16224. [
  16225. {
  16226. name: "Micro",
  16227. height: math.unit(0.32, "feet")
  16228. },
  16229. {
  16230. name: "Normal",
  16231. height: math.unit(5.24, "feet"),
  16232. default: true
  16233. },
  16234. {
  16235. name: "Macro",
  16236. height: math.unit(492.12, "feet")
  16237. },
  16238. {
  16239. name: "Megamacro",
  16240. height: math.unit(186.41, "miles")
  16241. },
  16242. ]
  16243. ))
  16244. characterMakers.push(() => makeCharacter(
  16245. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16246. {
  16247. front: {
  16248. height: math.unit(2.2, "m"),
  16249. weight: math.unit(120, "kg"),
  16250. name: "Front",
  16251. image: {
  16252. source: "./media/characters/pia-jr/front.svg",
  16253. extra: 1000 / 970,
  16254. bottom: 0.035
  16255. }
  16256. },
  16257. hand: {
  16258. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16259. name: "Hand",
  16260. image: {
  16261. source: "./media/characters/pia-jr/hand.svg"
  16262. }
  16263. },
  16264. paw: {
  16265. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16266. name: "Paw",
  16267. image: {
  16268. source: "./media/characters/pia-jr/paw.svg"
  16269. }
  16270. },
  16271. },
  16272. [
  16273. {
  16274. name: "Micro",
  16275. height: math.unit(1.2, "cm")
  16276. },
  16277. {
  16278. name: "Normal",
  16279. height: math.unit(2.2, "m"),
  16280. default: true
  16281. },
  16282. {
  16283. name: "Macro",
  16284. height: math.unit(180, "m")
  16285. },
  16286. {
  16287. name: "Megamacro",
  16288. height: math.unit(420, "km")
  16289. },
  16290. ]
  16291. ))
  16292. characterMakers.push(() => makeCharacter(
  16293. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16294. {
  16295. front: {
  16296. height: math.unit(2, "m"),
  16297. weight: math.unit(115, "kg"),
  16298. name: "Front",
  16299. image: {
  16300. source: "./media/characters/pia-sr/front.svg",
  16301. extra: 760 / 730,
  16302. bottom: 0.015
  16303. }
  16304. },
  16305. back: {
  16306. height: math.unit(2, "m"),
  16307. weight: math.unit(115, "kg"),
  16308. name: "Back",
  16309. image: {
  16310. source: "./media/characters/pia-sr/back.svg",
  16311. extra: 760 / 730,
  16312. bottom: 0.01
  16313. }
  16314. },
  16315. hand: {
  16316. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16317. name: "Hand",
  16318. image: {
  16319. source: "./media/characters/pia-sr/hand.svg"
  16320. }
  16321. },
  16322. foot: {
  16323. height: math.unit(1.83, "feet"),
  16324. name: "Foot",
  16325. image: {
  16326. source: "./media/characters/pia-sr/foot.svg"
  16327. }
  16328. },
  16329. },
  16330. [
  16331. {
  16332. name: "Micro",
  16333. height: math.unit(88, "mm")
  16334. },
  16335. {
  16336. name: "Normal",
  16337. height: math.unit(2, "m"),
  16338. default: true
  16339. },
  16340. {
  16341. name: "Macro",
  16342. height: math.unit(200, "m")
  16343. },
  16344. {
  16345. name: "Megamacro",
  16346. height: math.unit(420, "km")
  16347. },
  16348. ]
  16349. ))
  16350. characterMakers.push(() => makeCharacter(
  16351. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16352. {
  16353. front: {
  16354. height: math.unit(8 + 2 / 12, "feet"),
  16355. weight: math.unit(300, "lb"),
  16356. name: "Front",
  16357. image: {
  16358. source: "./media/characters/kibibyte/front.svg",
  16359. extra: 2221 / 2098,
  16360. bottom: 0.04
  16361. }
  16362. },
  16363. },
  16364. [
  16365. {
  16366. name: "Normal",
  16367. height: math.unit(8 + 2 / 12, "feet"),
  16368. default: true
  16369. },
  16370. {
  16371. name: "Socialable Macro",
  16372. height: math.unit(50, "feet")
  16373. },
  16374. {
  16375. name: "Macro",
  16376. height: math.unit(300, "feet")
  16377. },
  16378. {
  16379. name: "Megamacro",
  16380. height: math.unit(500, "miles")
  16381. },
  16382. ]
  16383. ))
  16384. characterMakers.push(() => makeCharacter(
  16385. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16386. {
  16387. front: {
  16388. height: math.unit(6, "feet"),
  16389. weight: math.unit(150, "lb"),
  16390. name: "Front",
  16391. image: {
  16392. source: "./media/characters/felix/front.svg",
  16393. extra: 762 / 722,
  16394. bottom: 0.02
  16395. }
  16396. },
  16397. frontClothed: {
  16398. height: math.unit(6, "feet"),
  16399. weight: math.unit(150, "lb"),
  16400. name: "Front (Clothed)",
  16401. image: {
  16402. source: "./media/characters/felix/front-clothed.svg",
  16403. extra: 762 / 722,
  16404. bottom: 0.02
  16405. }
  16406. },
  16407. },
  16408. [
  16409. {
  16410. name: "Normal",
  16411. height: math.unit(6 + 8 / 12, "feet"),
  16412. default: true
  16413. },
  16414. {
  16415. name: "Macro",
  16416. height: math.unit(2600, "feet")
  16417. },
  16418. {
  16419. name: "Megamacro",
  16420. height: math.unit(450, "miles")
  16421. },
  16422. ]
  16423. ))
  16424. characterMakers.push(() => makeCharacter(
  16425. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16426. {
  16427. front: {
  16428. height: math.unit(6 + 1 / 12, "feet"),
  16429. weight: math.unit(250, "lb"),
  16430. name: "Front",
  16431. image: {
  16432. source: "./media/characters/tobo/front.svg",
  16433. extra: 608 / 586,
  16434. bottom: 0.023
  16435. }
  16436. },
  16437. back: {
  16438. height: math.unit(6 + 1 / 12, "feet"),
  16439. weight: math.unit(250, "lb"),
  16440. name: "Back",
  16441. image: {
  16442. source: "./media/characters/tobo/back.svg",
  16443. extra: 608 / 586
  16444. }
  16445. },
  16446. },
  16447. [
  16448. {
  16449. name: "Nano",
  16450. height: math.unit(2, "nm")
  16451. },
  16452. {
  16453. name: "Megamicro",
  16454. height: math.unit(0.1, "mm")
  16455. },
  16456. {
  16457. name: "Micro",
  16458. height: math.unit(1, "inch"),
  16459. default: true
  16460. },
  16461. {
  16462. name: "Human-sized",
  16463. height: math.unit(6 + 1 / 12, "feet")
  16464. },
  16465. {
  16466. name: "Macro",
  16467. height: math.unit(250, "feet")
  16468. },
  16469. {
  16470. name: "Megamacro",
  16471. height: math.unit(75, "miles")
  16472. },
  16473. {
  16474. name: "Texas-sized",
  16475. height: math.unit(750, "miles")
  16476. },
  16477. {
  16478. name: "Teramacro",
  16479. height: math.unit(50000, "miles")
  16480. },
  16481. ]
  16482. ))
  16483. characterMakers.push(() => makeCharacter(
  16484. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16485. {
  16486. front: {
  16487. height: math.unit(6, "feet"),
  16488. weight: math.unit(269, "lb"),
  16489. name: "Front",
  16490. image: {
  16491. source: "./media/characters/danny-kapowsky/front.svg",
  16492. extra: 766 / 736,
  16493. bottom: 0.044
  16494. }
  16495. },
  16496. back: {
  16497. height: math.unit(6, "feet"),
  16498. weight: math.unit(269, "lb"),
  16499. name: "Back",
  16500. image: {
  16501. source: "./media/characters/danny-kapowsky/back.svg",
  16502. extra: 797 / 760,
  16503. bottom: 0.025
  16504. }
  16505. },
  16506. },
  16507. [
  16508. {
  16509. name: "Macro",
  16510. height: math.unit(150, "feet"),
  16511. default: true
  16512. },
  16513. {
  16514. name: "Macro+",
  16515. height: math.unit(200, "feet")
  16516. },
  16517. {
  16518. name: "Macro++",
  16519. height: math.unit(300, "feet")
  16520. },
  16521. {
  16522. name: "Macro+++",
  16523. height: math.unit(400, "feet")
  16524. },
  16525. ]
  16526. ))
  16527. characterMakers.push(() => makeCharacter(
  16528. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16529. {
  16530. side: {
  16531. height: math.unit(6, "feet"),
  16532. weight: math.unit(170, "lb"),
  16533. name: "Side",
  16534. image: {
  16535. source: "./media/characters/finn/side.svg",
  16536. extra: 1953 / 1807,
  16537. bottom: 0.057
  16538. }
  16539. },
  16540. },
  16541. [
  16542. {
  16543. name: "Megamacro",
  16544. height: math.unit(14445, "feet"),
  16545. default: true
  16546. },
  16547. ]
  16548. ))
  16549. characterMakers.push(() => makeCharacter(
  16550. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16551. {
  16552. front: {
  16553. height: math.unit(5 + 6 / 12, "feet"),
  16554. weight: math.unit(125, "lb"),
  16555. name: "Front",
  16556. image: {
  16557. source: "./media/characters/roy/front.svg",
  16558. extra: 1,
  16559. bottom: 0.11
  16560. }
  16561. },
  16562. },
  16563. [
  16564. {
  16565. name: "Micro",
  16566. height: math.unit(3, "inches"),
  16567. default: true
  16568. },
  16569. {
  16570. name: "Normal",
  16571. height: math.unit(5 + 6 / 12, "feet")
  16572. },
  16573. {
  16574. name: "Lesser Macro",
  16575. height: math.unit(60, "feet")
  16576. },
  16577. {
  16578. name: "Greater Macro",
  16579. height: math.unit(120, "feet")
  16580. },
  16581. ]
  16582. ))
  16583. characterMakers.push(() => makeCharacter(
  16584. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16585. {
  16586. front: {
  16587. height: math.unit(6, "feet"),
  16588. weight: math.unit(100, "lb"),
  16589. name: "Front",
  16590. image: {
  16591. source: "./media/characters/aevsivs/front.svg",
  16592. extra: 1,
  16593. bottom: 0.03
  16594. }
  16595. },
  16596. back: {
  16597. height: math.unit(6, "feet"),
  16598. weight: math.unit(100, "lb"),
  16599. name: "Back",
  16600. image: {
  16601. source: "./media/characters/aevsivs/back.svg"
  16602. }
  16603. },
  16604. },
  16605. [
  16606. {
  16607. name: "Micro",
  16608. height: math.unit(2, "inches"),
  16609. default: true
  16610. },
  16611. {
  16612. name: "Normal",
  16613. height: math.unit(5, "feet")
  16614. },
  16615. ]
  16616. ))
  16617. characterMakers.push(() => makeCharacter(
  16618. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16619. {
  16620. front: {
  16621. height: math.unit(5 + 7 / 12, "feet"),
  16622. weight: math.unit(159, "lb"),
  16623. name: "Front",
  16624. image: {
  16625. source: "./media/characters/hildegard/front.svg",
  16626. extra: 289 / 269,
  16627. bottom: 7.63 / 297.8
  16628. }
  16629. },
  16630. back: {
  16631. height: math.unit(5 + 7 / 12, "feet"),
  16632. weight: math.unit(159, "lb"),
  16633. name: "Back",
  16634. image: {
  16635. source: "./media/characters/hildegard/back.svg",
  16636. extra: 280 / 260,
  16637. bottom: 2.3 / 282
  16638. }
  16639. },
  16640. },
  16641. [
  16642. {
  16643. name: "Normal",
  16644. height: math.unit(5 + 7 / 12, "feet"),
  16645. default: true
  16646. },
  16647. ]
  16648. ))
  16649. characterMakers.push(() => makeCharacter(
  16650. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16651. {
  16652. bernard: {
  16653. height: math.unit(2 + 7 / 12, "feet"),
  16654. weight: math.unit(66, "lb"),
  16655. name: "Bernard",
  16656. rename: true,
  16657. image: {
  16658. source: "./media/characters/bernard-wilder/bernard.svg",
  16659. extra: 192 / 128,
  16660. bottom: 0.05
  16661. }
  16662. },
  16663. wilder: {
  16664. height: math.unit(5 + 8 / 12, "feet"),
  16665. weight: math.unit(143, "lb"),
  16666. name: "Wilder",
  16667. rename: true,
  16668. image: {
  16669. source: "./media/characters/bernard-wilder/wilder.svg",
  16670. extra: 361 / 312,
  16671. bottom: 0.02
  16672. }
  16673. },
  16674. },
  16675. [
  16676. {
  16677. name: "Normal",
  16678. height: math.unit(2 + 7 / 12, "feet"),
  16679. default: true
  16680. },
  16681. ]
  16682. ))
  16683. characterMakers.push(() => makeCharacter(
  16684. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16685. {
  16686. anthro: {
  16687. height: math.unit(6 + 1 / 12, "feet"),
  16688. weight: math.unit(155, "lb"),
  16689. name: "Anthro",
  16690. image: {
  16691. source: "./media/characters/hearth/anthro.svg",
  16692. extra: 1178/1136,
  16693. bottom: 28/1206
  16694. }
  16695. },
  16696. feral: {
  16697. height: math.unit(3.78, "feet"),
  16698. weight: math.unit(35, "kg"),
  16699. name: "Feral",
  16700. image: {
  16701. source: "./media/characters/hearth/feral.svg",
  16702. extra: 153 / 135,
  16703. bottom: 0.03
  16704. }
  16705. },
  16706. },
  16707. [
  16708. {
  16709. name: "Normal",
  16710. height: math.unit(6 + 1 / 12, "feet"),
  16711. default: true
  16712. },
  16713. ]
  16714. ))
  16715. characterMakers.push(() => makeCharacter(
  16716. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16717. {
  16718. front: {
  16719. height: math.unit(6, "feet"),
  16720. weight: math.unit(182, "lb"),
  16721. name: "Front",
  16722. image: {
  16723. source: "./media/characters/ingrid/front.svg",
  16724. extra: 294 / 268,
  16725. bottom: 0.027
  16726. }
  16727. },
  16728. },
  16729. [
  16730. {
  16731. name: "Normal",
  16732. height: math.unit(6, "feet"),
  16733. default: true
  16734. },
  16735. ]
  16736. ))
  16737. characterMakers.push(() => makeCharacter(
  16738. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16739. {
  16740. eevee: {
  16741. height: math.unit(2 + 10 / 12, "feet"),
  16742. weight: math.unit(86, "lb"),
  16743. name: "Malgam",
  16744. image: {
  16745. source: "./media/characters/malgam/eevee.svg",
  16746. extra: 952/784,
  16747. bottom: 38/990
  16748. }
  16749. },
  16750. sylveon: {
  16751. height: math.unit(4, "feet"),
  16752. weight: math.unit(101, "lb"),
  16753. name: "Future Malgam",
  16754. rename: true,
  16755. image: {
  16756. source: "./media/characters/malgam/sylveon.svg",
  16757. extra: 371 / 325,
  16758. bottom: 0.015
  16759. }
  16760. },
  16761. gigantamax: {
  16762. height: math.unit(50, "feet"),
  16763. name: "Gigantamax Malgam",
  16764. rename: true,
  16765. image: {
  16766. source: "./media/characters/malgam/gigantamax.svg"
  16767. }
  16768. },
  16769. },
  16770. [
  16771. {
  16772. name: "Normal",
  16773. height: math.unit(2 + 10 / 12, "feet"),
  16774. default: true
  16775. },
  16776. ]
  16777. ))
  16778. characterMakers.push(() => makeCharacter(
  16779. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16780. {
  16781. front: {
  16782. height: math.unit(5 + 11 / 12, "feet"),
  16783. weight: math.unit(188, "lb"),
  16784. name: "Front",
  16785. image: {
  16786. source: "./media/characters/fleur/front.svg",
  16787. extra: 309 / 283,
  16788. bottom: 0.007
  16789. }
  16790. },
  16791. },
  16792. [
  16793. {
  16794. name: "Normal",
  16795. height: math.unit(5 + 11 / 12, "feet"),
  16796. default: true
  16797. },
  16798. ]
  16799. ))
  16800. characterMakers.push(() => makeCharacter(
  16801. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16802. {
  16803. front: {
  16804. height: math.unit(5 + 4 / 12, "feet"),
  16805. weight: math.unit(122, "lb"),
  16806. name: "Front",
  16807. image: {
  16808. source: "./media/characters/jude/front.svg",
  16809. extra: 288 / 273,
  16810. bottom: 0.03
  16811. }
  16812. },
  16813. },
  16814. [
  16815. {
  16816. name: "Normal",
  16817. height: math.unit(5 + 4 / 12, "feet"),
  16818. default: true
  16819. },
  16820. ]
  16821. ))
  16822. characterMakers.push(() => makeCharacter(
  16823. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16824. {
  16825. front: {
  16826. height: math.unit(5 + 11 / 12, "feet"),
  16827. weight: math.unit(190, "lb"),
  16828. name: "Front",
  16829. image: {
  16830. source: "./media/characters/seara/front.svg",
  16831. extra: 1,
  16832. bottom: 0.05
  16833. }
  16834. },
  16835. },
  16836. [
  16837. {
  16838. name: "Normal",
  16839. height: math.unit(5 + 11 / 12, "feet"),
  16840. default: true
  16841. },
  16842. ]
  16843. ))
  16844. characterMakers.push(() => makeCharacter(
  16845. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16846. {
  16847. front: {
  16848. height: math.unit(16 + 5 / 12, "feet"),
  16849. weight: math.unit(524, "lb"),
  16850. name: "Front",
  16851. image: {
  16852. source: "./media/characters/caspian-lugia/front.svg",
  16853. extra: 1,
  16854. bottom: 0.04
  16855. }
  16856. },
  16857. },
  16858. [
  16859. {
  16860. name: "Normal",
  16861. height: math.unit(16 + 5 / 12, "feet"),
  16862. default: true
  16863. },
  16864. ]
  16865. ))
  16866. characterMakers.push(() => makeCharacter(
  16867. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16868. {
  16869. front: {
  16870. height: math.unit(5 + 7 / 12, "feet"),
  16871. weight: math.unit(170, "lb"),
  16872. name: "Front",
  16873. image: {
  16874. source: "./media/characters/mika/front.svg",
  16875. extra: 1,
  16876. bottom: 0.016
  16877. }
  16878. },
  16879. },
  16880. [
  16881. {
  16882. name: "Normal",
  16883. height: math.unit(5 + 7 / 12, "feet"),
  16884. default: true
  16885. },
  16886. ]
  16887. ))
  16888. characterMakers.push(() => makeCharacter(
  16889. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16890. {
  16891. front: {
  16892. height: math.unit(6 + 2 / 12, "feet"),
  16893. weight: math.unit(268, "lb"),
  16894. name: "Front",
  16895. image: {
  16896. source: "./media/characters/sol/front.svg",
  16897. extra: 247 / 231,
  16898. bottom: 0.05
  16899. }
  16900. },
  16901. },
  16902. [
  16903. {
  16904. name: "Normal",
  16905. height: math.unit(6 + 2 / 12, "feet"),
  16906. default: true
  16907. },
  16908. ]
  16909. ))
  16910. characterMakers.push(() => makeCharacter(
  16911. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16912. {
  16913. buizel: {
  16914. height: math.unit(2 + 5 / 12, "feet"),
  16915. weight: math.unit(87, "lb"),
  16916. name: "Front",
  16917. image: {
  16918. source: "./media/characters/umiko/buizel.svg",
  16919. extra: 172 / 157,
  16920. bottom: 0.01
  16921. },
  16922. form: "buizel",
  16923. default: true
  16924. },
  16925. floatzel: {
  16926. height: math.unit(5 + 9 / 12, "feet"),
  16927. weight: math.unit(250, "lb"),
  16928. name: "Front",
  16929. image: {
  16930. source: "./media/characters/umiko/floatzel.svg",
  16931. extra: 1076/1006,
  16932. bottom: 15/1091
  16933. },
  16934. form: "floatzel",
  16935. default: true
  16936. },
  16937. },
  16938. [
  16939. {
  16940. name: "Normal",
  16941. height: math.unit(2 + 5 / 12, "feet"),
  16942. form: "buizel",
  16943. default: true
  16944. },
  16945. {
  16946. name: "Normal",
  16947. height: math.unit(5 + 9 / 12, "feet"),
  16948. form: "floatzel",
  16949. default: true
  16950. },
  16951. ],
  16952. {
  16953. "buizel": {
  16954. name: "Buizel"
  16955. },
  16956. "floatzel": {
  16957. name: "Floatzel",
  16958. default: true
  16959. }
  16960. }
  16961. ))
  16962. characterMakers.push(() => makeCharacter(
  16963. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16964. {
  16965. front: {
  16966. height: math.unit(6 + 2 / 12, "feet"),
  16967. weight: math.unit(146, "lb"),
  16968. name: "Front",
  16969. image: {
  16970. source: "./media/characters/iliac/front.svg",
  16971. extra: 389 / 365,
  16972. bottom: 0.035
  16973. }
  16974. },
  16975. },
  16976. [
  16977. {
  16978. name: "Normal",
  16979. height: math.unit(6 + 2 / 12, "feet"),
  16980. default: true
  16981. },
  16982. ]
  16983. ))
  16984. characterMakers.push(() => makeCharacter(
  16985. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16986. {
  16987. front: {
  16988. height: math.unit(6, "feet"),
  16989. weight: math.unit(170, "lb"),
  16990. name: "Front",
  16991. image: {
  16992. source: "./media/characters/topaz/front.svg",
  16993. extra: 317 / 303,
  16994. bottom: 0.055
  16995. }
  16996. },
  16997. },
  16998. [
  16999. {
  17000. name: "Normal",
  17001. height: math.unit(6, "feet"),
  17002. default: true
  17003. },
  17004. ]
  17005. ))
  17006. characterMakers.push(() => makeCharacter(
  17007. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17008. {
  17009. front: {
  17010. height: math.unit(5 + 11 / 12, "feet"),
  17011. weight: math.unit(144, "lb"),
  17012. name: "Front",
  17013. image: {
  17014. source: "./media/characters/gabriel/front.svg",
  17015. extra: 285 / 262,
  17016. bottom: 0.004
  17017. }
  17018. },
  17019. },
  17020. [
  17021. {
  17022. name: "Normal",
  17023. height: math.unit(5 + 11 / 12, "feet"),
  17024. default: true
  17025. },
  17026. ]
  17027. ))
  17028. characterMakers.push(() => makeCharacter(
  17029. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17030. {
  17031. side: {
  17032. height: math.unit(6 + 5 / 12, "feet"),
  17033. weight: math.unit(300, "lb"),
  17034. name: "Side",
  17035. image: {
  17036. source: "./media/characters/tempest-suicune/side.svg",
  17037. extra: 195 / 154,
  17038. bottom: 0.04
  17039. }
  17040. },
  17041. },
  17042. [
  17043. {
  17044. name: "Normal",
  17045. height: math.unit(6 + 5 / 12, "feet"),
  17046. default: true
  17047. },
  17048. ]
  17049. ))
  17050. characterMakers.push(() => makeCharacter(
  17051. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17052. {
  17053. front: {
  17054. height: math.unit(7 + 2 / 12, "feet"),
  17055. weight: math.unit(322, "lb"),
  17056. name: "Front",
  17057. image: {
  17058. source: "./media/characters/vulcan/front.svg",
  17059. extra: 154 / 147,
  17060. bottom: 0.04
  17061. }
  17062. },
  17063. },
  17064. [
  17065. {
  17066. name: "Normal",
  17067. height: math.unit(7 + 2 / 12, "feet"),
  17068. default: true
  17069. },
  17070. ]
  17071. ))
  17072. characterMakers.push(() => makeCharacter(
  17073. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17074. {
  17075. front: {
  17076. height: math.unit(5 + 10 / 12, "feet"),
  17077. weight: math.unit(264, "lb"),
  17078. name: "Front",
  17079. image: {
  17080. source: "./media/characters/gault/front.svg",
  17081. extra: 161 / 140,
  17082. bottom: 0.028
  17083. }
  17084. },
  17085. },
  17086. [
  17087. {
  17088. name: "Normal",
  17089. height: math.unit(5 + 10 / 12, "feet"),
  17090. default: true
  17091. },
  17092. ]
  17093. ))
  17094. characterMakers.push(() => makeCharacter(
  17095. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17096. {
  17097. front: {
  17098. height: math.unit(6, "feet"),
  17099. weight: math.unit(150, "lb"),
  17100. name: "Front",
  17101. image: {
  17102. source: "./media/characters/shard/front.svg",
  17103. extra: 273 / 238,
  17104. bottom: 0.02
  17105. }
  17106. },
  17107. },
  17108. [
  17109. {
  17110. name: "Normal",
  17111. height: math.unit(3 + 6 / 12, "feet"),
  17112. default: true
  17113. },
  17114. ]
  17115. ))
  17116. characterMakers.push(() => makeCharacter(
  17117. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17118. {
  17119. front: {
  17120. height: math.unit(5 + 11 / 12, "feet"),
  17121. weight: math.unit(146, "lb"),
  17122. name: "Front",
  17123. image: {
  17124. source: "./media/characters/ashe/front.svg",
  17125. extra: 400 / 373,
  17126. bottom: 0.01
  17127. }
  17128. },
  17129. },
  17130. [
  17131. {
  17132. name: "Normal",
  17133. height: math.unit(5 + 11 / 12, "feet"),
  17134. default: true
  17135. },
  17136. ]
  17137. ))
  17138. characterMakers.push(() => makeCharacter(
  17139. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17140. {
  17141. front: {
  17142. height: math.unit(5 + 5 / 12, "feet"),
  17143. weight: math.unit(135, "lb"),
  17144. name: "Front",
  17145. image: {
  17146. source: "./media/characters/beatrix/front.svg",
  17147. extra: 392 / 379,
  17148. bottom: 0.01
  17149. }
  17150. },
  17151. },
  17152. [
  17153. {
  17154. name: "Normal",
  17155. height: math.unit(6, "feet"),
  17156. default: true
  17157. },
  17158. ]
  17159. ))
  17160. characterMakers.push(() => makeCharacter(
  17161. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17162. {
  17163. front: {
  17164. height: math.unit(6 + 2/12, "feet"),
  17165. weight: math.unit(135, "lb"),
  17166. name: "Front",
  17167. image: {
  17168. source: "./media/characters/ignatius/front.svg",
  17169. extra: 1380/1259,
  17170. bottom: 27/1407
  17171. }
  17172. },
  17173. },
  17174. [
  17175. {
  17176. name: "Normal",
  17177. height: math.unit(6 + 2/12, "feet"),
  17178. default: true
  17179. },
  17180. ]
  17181. ))
  17182. characterMakers.push(() => makeCharacter(
  17183. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17184. {
  17185. front: {
  17186. height: math.unit(6 + 2 / 12, "feet"),
  17187. weight: math.unit(138, "lb"),
  17188. name: "Front",
  17189. image: {
  17190. source: "./media/characters/mei-li/front.svg",
  17191. extra: 237 / 229,
  17192. bottom: 0.03
  17193. }
  17194. },
  17195. },
  17196. [
  17197. {
  17198. name: "Normal",
  17199. height: math.unit(6 + 2 / 12, "feet"),
  17200. default: true
  17201. },
  17202. ]
  17203. ))
  17204. characterMakers.push(() => makeCharacter(
  17205. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17206. {
  17207. front: {
  17208. height: math.unit(2 + 4 / 12, "feet"),
  17209. weight: math.unit(62, "lb"),
  17210. name: "Front",
  17211. image: {
  17212. source: "./media/characters/puru/front.svg",
  17213. extra: 206 / 149,
  17214. bottom: 0.06
  17215. }
  17216. },
  17217. },
  17218. [
  17219. {
  17220. name: "Normal",
  17221. height: math.unit(2 + 4 / 12, "feet"),
  17222. default: true
  17223. },
  17224. ]
  17225. ))
  17226. characterMakers.push(() => makeCharacter(
  17227. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17228. {
  17229. anthro: {
  17230. height: math.unit(5 + 8/12, "feet"),
  17231. weight: math.unit(200, "lb"),
  17232. energyNeed: math.unit(2000, "kcal"),
  17233. name: "Anthro",
  17234. image: {
  17235. source: "./media/characters/kee/anthro.svg",
  17236. extra: 3251/3184,
  17237. bottom: 250/3501
  17238. }
  17239. },
  17240. taur: {
  17241. height: math.unit(11, "feet"),
  17242. weight: math.unit(500, "lb"),
  17243. energyNeed: math.unit(5000, "kcal"),
  17244. name: "Taur",
  17245. image: {
  17246. source: "./media/characters/kee/taur.svg",
  17247. extra: 1362/1320,
  17248. bottom: 83/1445
  17249. }
  17250. },
  17251. },
  17252. [
  17253. {
  17254. name: "Normal",
  17255. height: math.unit(5 + 8/12, "feet"),
  17256. default: true
  17257. },
  17258. {
  17259. name: "Macro",
  17260. height: math.unit(35, "feet")
  17261. },
  17262. ]
  17263. ))
  17264. characterMakers.push(() => makeCharacter(
  17265. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17266. {
  17267. anthro: {
  17268. height: math.unit(7, "feet"),
  17269. weight: math.unit(190, "lb"),
  17270. name: "Anthro",
  17271. image: {
  17272. source: "./media/characters/cobalt-dracha/anthro.svg",
  17273. extra: 231 / 225,
  17274. bottom: 0.04
  17275. }
  17276. },
  17277. feral: {
  17278. height: math.unit(9 + 7 / 12, "feet"),
  17279. weight: math.unit(294, "lb"),
  17280. name: "Feral",
  17281. image: {
  17282. source: "./media/characters/cobalt-dracha/feral.svg",
  17283. extra: 692 / 633,
  17284. bottom: 0.05
  17285. }
  17286. },
  17287. },
  17288. [
  17289. {
  17290. name: "Normal",
  17291. height: math.unit(7, "feet"),
  17292. default: true
  17293. },
  17294. ]
  17295. ))
  17296. characterMakers.push(() => makeCharacter(
  17297. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17298. {
  17299. fallen: {
  17300. height: math.unit(11 + 8 / 12, "feet"),
  17301. weight: math.unit(485, "lb"),
  17302. name: "Java (Fallen)",
  17303. rename: true,
  17304. image: {
  17305. source: "./media/characters/java/fallen.svg",
  17306. extra: 226 / 208,
  17307. bottom: 0.005
  17308. }
  17309. },
  17310. godkin: {
  17311. height: math.unit(10 + 6 / 12, "feet"),
  17312. weight: math.unit(328, "lb"),
  17313. name: "Java (Godkin)",
  17314. rename: true,
  17315. image: {
  17316. source: "./media/characters/java/godkin.svg",
  17317. extra: 1104/1068,
  17318. bottom: 36/1140
  17319. }
  17320. },
  17321. },
  17322. [
  17323. {
  17324. name: "Normal",
  17325. height: math.unit(11 + 8 / 12, "feet"),
  17326. default: true
  17327. },
  17328. ]
  17329. ))
  17330. characterMakers.push(() => makeCharacter(
  17331. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17332. {
  17333. front: {
  17334. height: math.unit(5 + 9 / 12, "feet"),
  17335. weight: math.unit(170, "lb"),
  17336. name: "Front",
  17337. image: {
  17338. source: "./media/characters/purna/front.svg",
  17339. extra: 239 / 229,
  17340. bottom: 0.01
  17341. }
  17342. },
  17343. },
  17344. [
  17345. {
  17346. name: "Normal",
  17347. height: math.unit(5 + 9 / 12, "feet"),
  17348. default: true
  17349. },
  17350. ]
  17351. ))
  17352. characterMakers.push(() => makeCharacter(
  17353. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17354. {
  17355. front: {
  17356. height: math.unit(5 + 9 / 12, "feet"),
  17357. weight: math.unit(142, "lb"),
  17358. name: "Front",
  17359. image: {
  17360. source: "./media/characters/kuva/front.svg",
  17361. extra: 281 / 271,
  17362. bottom: 0.006
  17363. }
  17364. },
  17365. },
  17366. [
  17367. {
  17368. name: "Normal",
  17369. height: math.unit(5 + 9 / 12, "feet"),
  17370. default: true
  17371. },
  17372. ]
  17373. ))
  17374. characterMakers.push(() => makeCharacter(
  17375. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17376. {
  17377. anthro: {
  17378. height: math.unit(9 + 2 / 12, "feet"),
  17379. weight: math.unit(270, "lb"),
  17380. name: "Anthro",
  17381. image: {
  17382. source: "./media/characters/embra/anthro.svg",
  17383. extra: 200 / 187,
  17384. bottom: 0.02
  17385. }
  17386. },
  17387. feral: {
  17388. height: math.unit(18 + 8 / 12, "feet"),
  17389. weight: math.unit(576, "lb"),
  17390. name: "Feral",
  17391. image: {
  17392. source: "./media/characters/embra/feral.svg",
  17393. extra: 152 / 137,
  17394. bottom: 0.037
  17395. }
  17396. },
  17397. },
  17398. [
  17399. {
  17400. name: "Normal",
  17401. height: math.unit(9 + 2 / 12, "feet"),
  17402. default: true
  17403. },
  17404. ]
  17405. ))
  17406. characterMakers.push(() => makeCharacter(
  17407. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17408. {
  17409. anthro: {
  17410. height: math.unit(10 + 9 / 12, "feet"),
  17411. weight: math.unit(224, "lb"),
  17412. name: "Anthro",
  17413. image: {
  17414. source: "./media/characters/grottos/anthro.svg",
  17415. extra: 350 / 332,
  17416. bottom: 0.045
  17417. }
  17418. },
  17419. feral: {
  17420. height: math.unit(20 + 7 / 12, "feet"),
  17421. weight: math.unit(629, "lb"),
  17422. name: "Feral",
  17423. image: {
  17424. source: "./media/characters/grottos/feral.svg",
  17425. extra: 207 / 190,
  17426. bottom: 0.05
  17427. }
  17428. },
  17429. },
  17430. [
  17431. {
  17432. name: "Normal",
  17433. height: math.unit(10 + 9 / 12, "feet"),
  17434. default: true
  17435. },
  17436. ]
  17437. ))
  17438. characterMakers.push(() => makeCharacter(
  17439. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17440. {
  17441. anthro: {
  17442. height: math.unit(9 + 6 / 12, "feet"),
  17443. weight: math.unit(298, "lb"),
  17444. name: "Anthro",
  17445. image: {
  17446. source: "./media/characters/frifna/anthro.svg",
  17447. extra: 282 / 269,
  17448. bottom: 0.015
  17449. }
  17450. },
  17451. feral: {
  17452. height: math.unit(16 + 2 / 12, "feet"),
  17453. weight: math.unit(624, "lb"),
  17454. name: "Feral",
  17455. image: {
  17456. source: "./media/characters/frifna/feral.svg"
  17457. }
  17458. },
  17459. },
  17460. [
  17461. {
  17462. name: "Normal",
  17463. height: math.unit(9 + 6 / 12, "feet"),
  17464. default: true
  17465. },
  17466. ]
  17467. ))
  17468. characterMakers.push(() => makeCharacter(
  17469. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17470. {
  17471. front: {
  17472. height: math.unit(6 + 2 / 12, "feet"),
  17473. weight: math.unit(168, "lb"),
  17474. name: "Front",
  17475. image: {
  17476. source: "./media/characters/elise/front.svg",
  17477. extra: 276 / 271
  17478. }
  17479. },
  17480. },
  17481. [
  17482. {
  17483. name: "Normal",
  17484. height: math.unit(6 + 2 / 12, "feet"),
  17485. default: true
  17486. },
  17487. ]
  17488. ))
  17489. characterMakers.push(() => makeCharacter(
  17490. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17491. {
  17492. front: {
  17493. height: math.unit(5 + 10 / 12, "feet"),
  17494. weight: math.unit(210, "lb"),
  17495. name: "Front",
  17496. image: {
  17497. source: "./media/characters/glade/front.svg",
  17498. extra: 258 / 247,
  17499. bottom: 0.008
  17500. }
  17501. },
  17502. },
  17503. [
  17504. {
  17505. name: "Normal",
  17506. height: math.unit(5 + 10 / 12, "feet"),
  17507. default: true
  17508. },
  17509. ]
  17510. ))
  17511. characterMakers.push(() => makeCharacter(
  17512. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17513. {
  17514. front: {
  17515. height: math.unit(5 + 10 / 12, "feet"),
  17516. weight: math.unit(129, "lb"),
  17517. name: "Front",
  17518. image: {
  17519. source: "./media/characters/rina/front.svg",
  17520. extra: 266 / 255,
  17521. bottom: 0.005
  17522. }
  17523. },
  17524. },
  17525. [
  17526. {
  17527. name: "Normal",
  17528. height: math.unit(5 + 10 / 12, "feet"),
  17529. default: true
  17530. },
  17531. ]
  17532. ))
  17533. characterMakers.push(() => makeCharacter(
  17534. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17535. {
  17536. front: {
  17537. height: math.unit(6 + 1 / 12, "feet"),
  17538. weight: math.unit(192, "lb"),
  17539. name: "Front",
  17540. image: {
  17541. source: "./media/characters/veronica/front.svg",
  17542. extra: 319 / 309,
  17543. bottom: 0.005
  17544. }
  17545. },
  17546. },
  17547. [
  17548. {
  17549. name: "Normal",
  17550. height: math.unit(6 + 1 / 12, "feet"),
  17551. default: true
  17552. },
  17553. ]
  17554. ))
  17555. characterMakers.push(() => makeCharacter(
  17556. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17557. {
  17558. front: {
  17559. height: math.unit(9 + 3 / 12, "feet"),
  17560. weight: math.unit(1100, "lb"),
  17561. name: "Front",
  17562. image: {
  17563. source: "./media/characters/braxton/front.svg",
  17564. extra: 1057 / 984,
  17565. bottom: 0.05
  17566. }
  17567. },
  17568. },
  17569. [
  17570. {
  17571. name: "Normal",
  17572. height: math.unit(9 + 3 / 12, "feet")
  17573. },
  17574. {
  17575. name: "Giant",
  17576. height: math.unit(300, "feet"),
  17577. default: true
  17578. },
  17579. {
  17580. name: "Macro",
  17581. height: math.unit(700, "feet")
  17582. },
  17583. {
  17584. name: "Megamacro",
  17585. height: math.unit(6000, "feet")
  17586. },
  17587. ]
  17588. ))
  17589. characterMakers.push(() => makeCharacter(
  17590. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17591. {
  17592. front: {
  17593. height: math.unit(6 + 7 / 12, "feet"),
  17594. weight: math.unit(150, "lb"),
  17595. name: "Front",
  17596. image: {
  17597. source: "./media/characters/blue-feyonics/front.svg",
  17598. extra: 1403 / 1306,
  17599. bottom: 0.047
  17600. }
  17601. },
  17602. },
  17603. [
  17604. {
  17605. name: "Normal",
  17606. height: math.unit(6 + 7 / 12, "feet"),
  17607. default: true
  17608. },
  17609. ]
  17610. ))
  17611. characterMakers.push(() => makeCharacter(
  17612. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17613. {
  17614. front: {
  17615. height: math.unit(1.8, "meters"),
  17616. weight: math.unit(60, "kg"),
  17617. name: "Front",
  17618. image: {
  17619. source: "./media/characters/maxwell/front.svg",
  17620. extra: 2060 / 1873
  17621. }
  17622. },
  17623. },
  17624. [
  17625. {
  17626. name: "Micro",
  17627. height: math.unit(1, "mm")
  17628. },
  17629. {
  17630. name: "Normal",
  17631. height: math.unit(1.8, "meter"),
  17632. default: true
  17633. },
  17634. {
  17635. name: "Macro",
  17636. height: math.unit(30, "meters")
  17637. },
  17638. {
  17639. name: "Megamacro",
  17640. height: math.unit(10, "km")
  17641. },
  17642. ]
  17643. ))
  17644. characterMakers.push(() => makeCharacter(
  17645. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17646. {
  17647. front: {
  17648. height: math.unit(6, "feet"),
  17649. weight: math.unit(150, "lb"),
  17650. name: "Front",
  17651. image: {
  17652. source: "./media/characters/jack/front.svg",
  17653. extra: 1754 / 1640,
  17654. bottom: 0.01
  17655. }
  17656. },
  17657. },
  17658. [
  17659. {
  17660. name: "Normal",
  17661. height: math.unit(80000, "feet"),
  17662. default: true
  17663. },
  17664. {
  17665. name: "Max size",
  17666. height: math.unit(10, "lightyears")
  17667. },
  17668. ]
  17669. ))
  17670. characterMakers.push(() => makeCharacter(
  17671. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17672. {
  17673. urban: {
  17674. height: math.unit(5, "feet"),
  17675. weight: math.unit(240, "lb"),
  17676. name: "Urban",
  17677. image: {
  17678. source: "./media/characters/cafat/urban.svg",
  17679. extra: 1223/1126,
  17680. bottom: 205/1428
  17681. }
  17682. },
  17683. summer: {
  17684. height: math.unit(5, "feet"),
  17685. weight: math.unit(240, "lb"),
  17686. name: "Summer",
  17687. image: {
  17688. source: "./media/characters/cafat/summer.svg",
  17689. extra: 1223/1126,
  17690. bottom: 205/1428
  17691. }
  17692. },
  17693. winter: {
  17694. height: math.unit(5, "feet"),
  17695. weight: math.unit(240, "lb"),
  17696. name: "Winter",
  17697. image: {
  17698. source: "./media/characters/cafat/winter.svg",
  17699. extra: 1223/1126,
  17700. bottom: 205/1428
  17701. }
  17702. },
  17703. lingerie: {
  17704. height: math.unit(5, "feet"),
  17705. weight: math.unit(240, "lb"),
  17706. name: "Lingerie",
  17707. image: {
  17708. source: "./media/characters/cafat/lingerie.svg",
  17709. extra: 1223/1126,
  17710. bottom: 205/1428
  17711. }
  17712. },
  17713. upright: {
  17714. height: math.unit(6.3, "feet"),
  17715. weight: math.unit(240, "lb"),
  17716. name: "Upright",
  17717. image: {
  17718. source: "./media/characters/cafat/upright.svg",
  17719. bottom: 0.01
  17720. }
  17721. },
  17722. uprightFull: {
  17723. height: math.unit(6.3, "feet"),
  17724. weight: math.unit(240, "lb"),
  17725. name: "Upright (Full)",
  17726. image: {
  17727. source: "./media/characters/cafat/upright-full.svg",
  17728. bottom: 0.01
  17729. }
  17730. },
  17731. },
  17732. [
  17733. {
  17734. name: "Small",
  17735. height: math.unit(5, "feet"),
  17736. default: true
  17737. },
  17738. {
  17739. name: "Large",
  17740. height: math.unit(13, "feet")
  17741. },
  17742. ]
  17743. ))
  17744. characterMakers.push(() => makeCharacter(
  17745. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17746. {
  17747. front: {
  17748. height: math.unit(6, "feet"),
  17749. weight: math.unit(150, "lb"),
  17750. name: "Front",
  17751. image: {
  17752. source: "./media/characters/verin-raharra/front.svg",
  17753. extra: 5019 / 4835,
  17754. bottom: 0.023
  17755. }
  17756. },
  17757. },
  17758. [
  17759. {
  17760. name: "Normal",
  17761. height: math.unit(7 + 5 / 12, "feet"),
  17762. default: true
  17763. },
  17764. {
  17765. name: "Upsized",
  17766. height: math.unit(20, "feet")
  17767. },
  17768. ]
  17769. ))
  17770. characterMakers.push(() => makeCharacter(
  17771. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17772. {
  17773. front: {
  17774. height: math.unit(7, "feet"),
  17775. weight: math.unit(230, "lb"),
  17776. name: "Front",
  17777. image: {
  17778. source: "./media/characters/nakata/front.svg",
  17779. extra: 1.005,
  17780. bottom: 0.01
  17781. }
  17782. },
  17783. },
  17784. [
  17785. {
  17786. name: "Normal",
  17787. height: math.unit(7, "feet"),
  17788. default: true
  17789. },
  17790. {
  17791. name: "Big",
  17792. height: math.unit(14, "feet")
  17793. },
  17794. {
  17795. name: "Macro",
  17796. height: math.unit(400, "feet")
  17797. },
  17798. ]
  17799. ))
  17800. characterMakers.push(() => makeCharacter(
  17801. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17802. {
  17803. front: {
  17804. height: math.unit(4.91, "feet"),
  17805. weight: math.unit(100, "lb"),
  17806. name: "Front",
  17807. image: {
  17808. source: "./media/characters/lily/front.svg",
  17809. extra: 1585 / 1415,
  17810. bottom: 0.02
  17811. }
  17812. },
  17813. },
  17814. [
  17815. {
  17816. name: "Normal",
  17817. height: math.unit(4.91, "feet"),
  17818. default: true
  17819. },
  17820. ]
  17821. ))
  17822. characterMakers.push(() => makeCharacter(
  17823. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17824. {
  17825. laying: {
  17826. height: math.unit(4 + 4 / 12, "feet"),
  17827. weight: math.unit(600, "lb"),
  17828. name: "Laying",
  17829. image: {
  17830. source: "./media/characters/sheila/laying.svg",
  17831. extra: 1333 / 1265,
  17832. bottom: 0.16
  17833. }
  17834. },
  17835. },
  17836. [
  17837. {
  17838. name: "Normal",
  17839. height: math.unit(4 + 4 / 12, "feet"),
  17840. default: true
  17841. },
  17842. ]
  17843. ))
  17844. characterMakers.push(() => makeCharacter(
  17845. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17846. {
  17847. front: {
  17848. height: math.unit(6, "feet"),
  17849. weight: math.unit(190, "lb"),
  17850. name: "Front",
  17851. image: {
  17852. source: "./media/characters/sax/front.svg",
  17853. extra: 1187 / 973,
  17854. bottom: 0.042
  17855. }
  17856. },
  17857. },
  17858. [
  17859. {
  17860. name: "Micro",
  17861. height: math.unit(4, "inches"),
  17862. default: true
  17863. },
  17864. ]
  17865. ))
  17866. characterMakers.push(() => makeCharacter(
  17867. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17868. {
  17869. front: {
  17870. height: math.unit(6, "feet"),
  17871. weight: math.unit(150, "lb"),
  17872. name: "Front",
  17873. image: {
  17874. source: "./media/characters/pandora/front.svg",
  17875. extra: 2720 / 2556,
  17876. bottom: 0.015
  17877. }
  17878. },
  17879. back: {
  17880. height: math.unit(6, "feet"),
  17881. weight: math.unit(150, "lb"),
  17882. name: "Back",
  17883. image: {
  17884. source: "./media/characters/pandora/back.svg",
  17885. extra: 2720 / 2556,
  17886. bottom: 0.01
  17887. }
  17888. },
  17889. beans: {
  17890. height: math.unit(6 / 8, "feet"),
  17891. name: "Beans",
  17892. image: {
  17893. source: "./media/characters/pandora/beans.svg"
  17894. }
  17895. },
  17896. collar: {
  17897. height: math.unit(0.31, "feet"),
  17898. name: "Collar",
  17899. image: {
  17900. source: "./media/characters/pandora/collar.svg"
  17901. }
  17902. },
  17903. skirt: {
  17904. height: math.unit(6, "feet"),
  17905. weight: math.unit(150, "lb"),
  17906. name: "Skirt",
  17907. image: {
  17908. source: "./media/characters/pandora/skirt.svg",
  17909. extra: 1622 / 1525,
  17910. bottom: 0.015
  17911. }
  17912. },
  17913. hoodie: {
  17914. height: math.unit(6, "feet"),
  17915. weight: math.unit(150, "lb"),
  17916. name: "Hoodie",
  17917. image: {
  17918. source: "./media/characters/pandora/hoodie.svg",
  17919. extra: 1622 / 1525,
  17920. bottom: 0.015
  17921. }
  17922. },
  17923. casual: {
  17924. height: math.unit(6, "feet"),
  17925. weight: math.unit(150, "lb"),
  17926. name: "Casual",
  17927. image: {
  17928. source: "./media/characters/pandora/casual.svg",
  17929. extra: 1622 / 1525,
  17930. bottom: 0.015
  17931. }
  17932. },
  17933. },
  17934. [
  17935. {
  17936. name: "Normal",
  17937. height: math.unit(6, "feet")
  17938. },
  17939. {
  17940. name: "Big Steppy",
  17941. height: math.unit(1, "km"),
  17942. default: true
  17943. },
  17944. {
  17945. name: "Galactic Steppy",
  17946. height: math.unit(2, "gigameters")
  17947. },
  17948. ]
  17949. ))
  17950. characterMakers.push(() => makeCharacter(
  17951. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17952. {
  17953. side: {
  17954. height: math.unit(10, "feet"),
  17955. weight: math.unit(800, "kg"),
  17956. name: "Side",
  17957. image: {
  17958. source: "./media/characters/venio-darcony/side.svg",
  17959. extra: 1373 / 1003,
  17960. bottom: 0.037
  17961. }
  17962. },
  17963. front: {
  17964. height: math.unit(19, "feet"),
  17965. weight: math.unit(800, "kg"),
  17966. name: "Front",
  17967. image: {
  17968. source: "./media/characters/venio-darcony/front.svg"
  17969. }
  17970. },
  17971. back: {
  17972. height: math.unit(19, "feet"),
  17973. weight: math.unit(800, "kg"),
  17974. name: "Back",
  17975. image: {
  17976. source: "./media/characters/venio-darcony/back.svg"
  17977. }
  17978. },
  17979. sideNsfw: {
  17980. height: math.unit(10, "feet"),
  17981. weight: math.unit(800, "kg"),
  17982. name: "Side (NSFW)",
  17983. image: {
  17984. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17985. extra: 1373 / 1003,
  17986. bottom: 0.037
  17987. }
  17988. },
  17989. frontNsfw: {
  17990. height: math.unit(19, "feet"),
  17991. weight: math.unit(800, "kg"),
  17992. name: "Front (NSFW)",
  17993. image: {
  17994. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17995. }
  17996. },
  17997. backNsfw: {
  17998. height: math.unit(19, "feet"),
  17999. weight: math.unit(800, "kg"),
  18000. name: "Back (NSFW)",
  18001. image: {
  18002. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18003. }
  18004. },
  18005. sideArmored: {
  18006. height: math.unit(10, "feet"),
  18007. weight: math.unit(800, "kg"),
  18008. name: "Side (Armored)",
  18009. image: {
  18010. source: "./media/characters/venio-darcony/side-armored.svg",
  18011. extra: 1373 / 1003,
  18012. bottom: 0.037
  18013. }
  18014. },
  18015. frontArmored: {
  18016. height: math.unit(19, "feet"),
  18017. weight: math.unit(900, "kg"),
  18018. name: "Front (Armored)",
  18019. image: {
  18020. source: "./media/characters/venio-darcony/front-armored.svg"
  18021. }
  18022. },
  18023. backArmored: {
  18024. height: math.unit(19, "feet"),
  18025. weight: math.unit(900, "kg"),
  18026. name: "Back (Armored)",
  18027. image: {
  18028. source: "./media/characters/venio-darcony/back-armored.svg"
  18029. }
  18030. },
  18031. sword: {
  18032. height: math.unit(10, "feet"),
  18033. weight: math.unit(50, "lb"),
  18034. name: "Sword",
  18035. image: {
  18036. source: "./media/characters/venio-darcony/sword.svg"
  18037. }
  18038. },
  18039. },
  18040. [
  18041. {
  18042. name: "Normal",
  18043. height: math.unit(10, "feet")
  18044. },
  18045. {
  18046. name: "Macro",
  18047. height: math.unit(130, "feet"),
  18048. default: true
  18049. },
  18050. {
  18051. name: "Macro+",
  18052. height: math.unit(240, "feet")
  18053. },
  18054. ]
  18055. ))
  18056. characterMakers.push(() => makeCharacter(
  18057. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18058. {
  18059. front: {
  18060. height: math.unit(6, "feet"),
  18061. weight: math.unit(150, "lb"),
  18062. name: "Front",
  18063. image: {
  18064. source: "./media/characters/veski/front.svg",
  18065. extra: 1299 / 1225,
  18066. bottom: 0.04
  18067. }
  18068. },
  18069. back: {
  18070. height: math.unit(6, "feet"),
  18071. weight: math.unit(150, "lb"),
  18072. name: "Back",
  18073. image: {
  18074. source: "./media/characters/veski/back.svg",
  18075. extra: 1299 / 1225,
  18076. bottom: 0.008
  18077. }
  18078. },
  18079. maw: {
  18080. height: math.unit(1.5 * 1.21, "feet"),
  18081. name: "Maw",
  18082. image: {
  18083. source: "./media/characters/veski/maw.svg"
  18084. }
  18085. },
  18086. },
  18087. [
  18088. {
  18089. name: "Macro",
  18090. height: math.unit(2, "km"),
  18091. default: true
  18092. },
  18093. ]
  18094. ))
  18095. characterMakers.push(() => makeCharacter(
  18096. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18097. {
  18098. front: {
  18099. height: math.unit(5 + 7 / 12, "feet"),
  18100. name: "Front",
  18101. image: {
  18102. source: "./media/characters/isabelle/front.svg",
  18103. extra: 2130 / 1976,
  18104. bottom: 0.05
  18105. }
  18106. },
  18107. },
  18108. [
  18109. {
  18110. name: "Supermicro",
  18111. height: math.unit(10, "micrometers")
  18112. },
  18113. {
  18114. name: "Micro",
  18115. height: math.unit(1, "inch")
  18116. },
  18117. {
  18118. name: "Tiny",
  18119. height: math.unit(5, "inches")
  18120. },
  18121. {
  18122. name: "Standard",
  18123. height: math.unit(5 + 7 / 12, "inches")
  18124. },
  18125. {
  18126. name: "Macro",
  18127. height: math.unit(80, "meters"),
  18128. default: true
  18129. },
  18130. {
  18131. name: "Megamacro",
  18132. height: math.unit(250, "meters")
  18133. },
  18134. {
  18135. name: "Gigamacro",
  18136. height: math.unit(5, "km")
  18137. },
  18138. {
  18139. name: "Cosmic",
  18140. height: math.unit(2.5e6, "miles")
  18141. },
  18142. ]
  18143. ))
  18144. characterMakers.push(() => makeCharacter(
  18145. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18146. {
  18147. front: {
  18148. height: math.unit(6, "feet"),
  18149. weight: math.unit(150, "lb"),
  18150. name: "Front",
  18151. image: {
  18152. source: "./media/characters/hanzo/front.svg",
  18153. extra: 374 / 344,
  18154. bottom: 0.02
  18155. }
  18156. },
  18157. },
  18158. [
  18159. {
  18160. name: "Normal",
  18161. height: math.unit(8, "feet"),
  18162. default: true
  18163. },
  18164. ]
  18165. ))
  18166. characterMakers.push(() => makeCharacter(
  18167. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18168. {
  18169. front: {
  18170. height: math.unit(7, "feet"),
  18171. weight: math.unit(130, "lb"),
  18172. name: "Front",
  18173. image: {
  18174. source: "./media/characters/anna/front.svg",
  18175. extra: 169 / 145,
  18176. bottom: 0.06
  18177. }
  18178. },
  18179. full: {
  18180. height: math.unit(4.96, "feet"),
  18181. weight: math.unit(220, "lb"),
  18182. name: "Full",
  18183. image: {
  18184. source: "./media/characters/anna/full.svg",
  18185. extra: 138 / 114,
  18186. bottom: 0.15
  18187. }
  18188. },
  18189. tongue: {
  18190. height: math.unit(2.53, "feet"),
  18191. name: "Tongue",
  18192. image: {
  18193. source: "./media/characters/anna/tongue.svg"
  18194. }
  18195. },
  18196. },
  18197. [
  18198. {
  18199. name: "Normal",
  18200. height: math.unit(7, "feet"),
  18201. default: true
  18202. },
  18203. ]
  18204. ))
  18205. characterMakers.push(() => makeCharacter(
  18206. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18207. {
  18208. front: {
  18209. height: math.unit(7, "feet"),
  18210. weight: math.unit(150, "lb"),
  18211. name: "Front",
  18212. image: {
  18213. source: "./media/characters/ian-corvid/front.svg",
  18214. extra: 150 / 142,
  18215. bottom: 0.02
  18216. }
  18217. },
  18218. back: {
  18219. height: math.unit(7, "feet"),
  18220. weight: math.unit(150, "lb"),
  18221. name: "Back",
  18222. image: {
  18223. source: "./media/characters/ian-corvid/back.svg",
  18224. extra: 150 / 143,
  18225. bottom: 0.01
  18226. }
  18227. },
  18228. stomping: {
  18229. height: math.unit(7, "feet"),
  18230. weight: math.unit(150, "lb"),
  18231. name: "Stomping",
  18232. image: {
  18233. source: "./media/characters/ian-corvid/stomping.svg",
  18234. extra: 76 / 72
  18235. }
  18236. },
  18237. sitting: {
  18238. height: math.unit(7 / 1.8, "feet"),
  18239. weight: math.unit(150, "lb"),
  18240. name: "Sitting",
  18241. image: {
  18242. source: "./media/characters/ian-corvid/sitting.svg",
  18243. extra: 1400 / 1269,
  18244. bottom: 0.15
  18245. }
  18246. },
  18247. },
  18248. [
  18249. {
  18250. name: "Tiny Microw",
  18251. height: math.unit(1, "inch")
  18252. },
  18253. {
  18254. name: "Microw",
  18255. height: math.unit(6, "inches")
  18256. },
  18257. {
  18258. name: "Crow",
  18259. height: math.unit(7 + 1 / 12, "feet"),
  18260. default: true
  18261. },
  18262. {
  18263. name: "Macrow",
  18264. height: math.unit(176, "feet")
  18265. },
  18266. ]
  18267. ))
  18268. characterMakers.push(() => makeCharacter(
  18269. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18270. {
  18271. front: {
  18272. height: math.unit(5 + 7 / 12, "feet"),
  18273. weight: math.unit(147, "lb"),
  18274. name: "Front",
  18275. image: {
  18276. source: "./media/characters/natalie-kellon/front.svg",
  18277. extra: 1214 / 1141,
  18278. bottom: 0.02
  18279. }
  18280. },
  18281. },
  18282. [
  18283. {
  18284. name: "Micro",
  18285. height: math.unit(1 / 16, "inch")
  18286. },
  18287. {
  18288. name: "Tiny",
  18289. height: math.unit(4, "inches")
  18290. },
  18291. {
  18292. name: "Normal",
  18293. height: math.unit(5 + 7 / 12, "feet"),
  18294. default: true
  18295. },
  18296. {
  18297. name: "Amazon",
  18298. height: math.unit(12, "feet")
  18299. },
  18300. {
  18301. name: "Giantess",
  18302. height: math.unit(160, "meters")
  18303. },
  18304. {
  18305. name: "Titaness",
  18306. height: math.unit(800, "meters")
  18307. },
  18308. ]
  18309. ))
  18310. characterMakers.push(() => makeCharacter(
  18311. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18312. {
  18313. front: {
  18314. height: math.unit(6, "feet"),
  18315. weight: math.unit(150, "lb"),
  18316. name: "Front",
  18317. image: {
  18318. source: "./media/characters/alluria/front.svg",
  18319. extra: 806 / 738,
  18320. bottom: 0.01
  18321. }
  18322. },
  18323. side: {
  18324. height: math.unit(6, "feet"),
  18325. weight: math.unit(150, "lb"),
  18326. name: "Side",
  18327. image: {
  18328. source: "./media/characters/alluria/side.svg",
  18329. extra: 800 / 750,
  18330. }
  18331. },
  18332. back: {
  18333. height: math.unit(6, "feet"),
  18334. weight: math.unit(150, "lb"),
  18335. name: "Back",
  18336. image: {
  18337. source: "./media/characters/alluria/back.svg",
  18338. extra: 806 / 738,
  18339. }
  18340. },
  18341. frontMaid: {
  18342. height: math.unit(6, "feet"),
  18343. weight: math.unit(150, "lb"),
  18344. name: "Front (Maid)",
  18345. image: {
  18346. source: "./media/characters/alluria/front-maid.svg",
  18347. extra: 806 / 738,
  18348. bottom: 0.01
  18349. }
  18350. },
  18351. sideMaid: {
  18352. height: math.unit(6, "feet"),
  18353. weight: math.unit(150, "lb"),
  18354. name: "Side (Maid)",
  18355. image: {
  18356. source: "./media/characters/alluria/side-maid.svg",
  18357. extra: 800 / 750,
  18358. bottom: 0.005
  18359. }
  18360. },
  18361. backMaid: {
  18362. height: math.unit(6, "feet"),
  18363. weight: math.unit(150, "lb"),
  18364. name: "Back (Maid)",
  18365. image: {
  18366. source: "./media/characters/alluria/back-maid.svg",
  18367. extra: 806 / 738,
  18368. }
  18369. },
  18370. },
  18371. [
  18372. {
  18373. name: "Micro",
  18374. height: math.unit(6, "inches"),
  18375. default: true
  18376. },
  18377. ]
  18378. ))
  18379. characterMakers.push(() => makeCharacter(
  18380. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18381. {
  18382. front: {
  18383. height: math.unit(6, "feet"),
  18384. weight: math.unit(150, "lb"),
  18385. name: "Front",
  18386. image: {
  18387. source: "./media/characters/kyle/front.svg",
  18388. extra: 1069 / 962,
  18389. bottom: 77.228 / 1727.45
  18390. }
  18391. },
  18392. },
  18393. [
  18394. {
  18395. name: "Macro",
  18396. height: math.unit(150, "feet"),
  18397. default: true
  18398. },
  18399. ]
  18400. ))
  18401. characterMakers.push(() => makeCharacter(
  18402. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18403. {
  18404. front: {
  18405. height: math.unit(6, "feet"),
  18406. weight: math.unit(300, "lb"),
  18407. name: "Front",
  18408. image: {
  18409. source: "./media/characters/duncan/front.svg",
  18410. extra: 1650 / 1482,
  18411. bottom: 0.05
  18412. }
  18413. },
  18414. },
  18415. [
  18416. {
  18417. name: "Macro",
  18418. height: math.unit(100, "feet"),
  18419. default: true
  18420. },
  18421. ]
  18422. ))
  18423. characterMakers.push(() => makeCharacter(
  18424. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18425. {
  18426. front: {
  18427. height: math.unit(5 + 4 / 12, "feet"),
  18428. weight: math.unit(220, "lb"),
  18429. name: "Front",
  18430. image: {
  18431. source: "./media/characters/memory/front.svg",
  18432. extra: 3641 / 3545,
  18433. bottom: 0.03
  18434. }
  18435. },
  18436. back: {
  18437. height: math.unit(5 + 4 / 12, "feet"),
  18438. weight: math.unit(220, "lb"),
  18439. name: "Back",
  18440. image: {
  18441. source: "./media/characters/memory/back.svg",
  18442. extra: 3641 / 3545,
  18443. bottom: 0.025
  18444. }
  18445. },
  18446. frontSkirt: {
  18447. height: math.unit(5 + 4 / 12, "feet"),
  18448. weight: math.unit(220, "lb"),
  18449. name: "Front (Skirt)",
  18450. image: {
  18451. source: "./media/characters/memory/front-skirt.svg",
  18452. extra: 3641 / 3545,
  18453. bottom: 0.03
  18454. }
  18455. },
  18456. frontDress: {
  18457. height: math.unit(5 + 4 / 12, "feet"),
  18458. weight: math.unit(220, "lb"),
  18459. name: "Front (Dress)",
  18460. image: {
  18461. source: "./media/characters/memory/front-dress.svg",
  18462. extra: 3641 / 3545,
  18463. bottom: 0.03
  18464. }
  18465. },
  18466. },
  18467. [
  18468. {
  18469. name: "Micro",
  18470. height: math.unit(6, "inches"),
  18471. default: true
  18472. },
  18473. {
  18474. name: "Normal",
  18475. height: math.unit(5 + 4 / 12, "feet")
  18476. },
  18477. ]
  18478. ))
  18479. characterMakers.push(() => makeCharacter(
  18480. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18481. {
  18482. front: {
  18483. height: math.unit(4 + 11 / 12, "feet"),
  18484. weight: math.unit(100, "lb"),
  18485. name: "Front",
  18486. image: {
  18487. source: "./media/characters/luno/front.svg",
  18488. extra: 1535 / 1487,
  18489. bottom: 0.03
  18490. }
  18491. },
  18492. },
  18493. [
  18494. {
  18495. name: "Micro",
  18496. height: math.unit(3, "inches")
  18497. },
  18498. {
  18499. name: "Normal",
  18500. height: math.unit(4 + 11 / 12, "feet"),
  18501. default: true
  18502. },
  18503. {
  18504. name: "Macro",
  18505. height: math.unit(300, "feet")
  18506. },
  18507. {
  18508. name: "Megamacro",
  18509. height: math.unit(700, "miles")
  18510. },
  18511. ]
  18512. ))
  18513. characterMakers.push(() => makeCharacter(
  18514. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18515. {
  18516. front: {
  18517. height: math.unit(6 + 2 / 12, "feet"),
  18518. weight: math.unit(170, "lb"),
  18519. name: "Front",
  18520. image: {
  18521. source: "./media/characters/jamesy/front.svg",
  18522. extra: 440 / 382,
  18523. bottom: 0.005
  18524. }
  18525. },
  18526. },
  18527. [
  18528. {
  18529. name: "Micro",
  18530. height: math.unit(3, "inches")
  18531. },
  18532. {
  18533. name: "Normal",
  18534. height: math.unit(6 + 2 / 12, "feet"),
  18535. default: true
  18536. },
  18537. {
  18538. name: "Macro",
  18539. height: math.unit(300, "feet")
  18540. },
  18541. {
  18542. name: "Megamacro",
  18543. height: math.unit(700, "miles")
  18544. },
  18545. ]
  18546. ))
  18547. characterMakers.push(() => makeCharacter(
  18548. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18549. {
  18550. front: {
  18551. height: math.unit(6, "feet"),
  18552. weight: math.unit(160, "lb"),
  18553. name: "Front",
  18554. image: {
  18555. source: "./media/characters/mark/front.svg",
  18556. extra: 3300 / 3100,
  18557. bottom: 136.42 / 3440.47
  18558. }
  18559. },
  18560. },
  18561. [
  18562. {
  18563. name: "Macro",
  18564. height: math.unit(120, "meters")
  18565. },
  18566. {
  18567. name: "Bigger Macro",
  18568. height: math.unit(350, "meters")
  18569. },
  18570. {
  18571. name: "Megamacro",
  18572. height: math.unit(8, "km"),
  18573. default: true
  18574. },
  18575. {
  18576. name: "Continental",
  18577. height: math.unit(4550, "km")
  18578. },
  18579. {
  18580. name: "Planetary",
  18581. height: math.unit(65000, "km")
  18582. },
  18583. ]
  18584. ))
  18585. characterMakers.push(() => makeCharacter(
  18586. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18587. {
  18588. front: {
  18589. height: math.unit(6, "feet"),
  18590. weight: math.unit(400, "lb"),
  18591. name: "Front",
  18592. image: {
  18593. source: "./media/characters/mac/front.svg",
  18594. extra: 1048 / 987.7,
  18595. bottom: 60 / 1107.6,
  18596. }
  18597. },
  18598. },
  18599. [
  18600. {
  18601. name: "Macro",
  18602. height: math.unit(500, "feet"),
  18603. default: true
  18604. },
  18605. ]
  18606. ))
  18607. characterMakers.push(() => makeCharacter(
  18608. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18609. {
  18610. front: {
  18611. height: math.unit(5 + 2 / 12, "feet"),
  18612. weight: math.unit(190, "lb"),
  18613. name: "Front",
  18614. image: {
  18615. source: "./media/characters/bari/front.svg",
  18616. extra: 3156 / 2880,
  18617. bottom: 0.03
  18618. }
  18619. },
  18620. back: {
  18621. height: math.unit(5 + 2 / 12, "feet"),
  18622. weight: math.unit(190, "lb"),
  18623. name: "Back",
  18624. image: {
  18625. source: "./media/characters/bari/back.svg",
  18626. extra: 3260 / 2834,
  18627. bottom: 0.025
  18628. }
  18629. },
  18630. frontPlush: {
  18631. height: math.unit(5 + 2 / 12, "feet"),
  18632. weight: math.unit(190, "lb"),
  18633. name: "Front (Plush)",
  18634. image: {
  18635. source: "./media/characters/bari/front-plush.svg",
  18636. extra: 1112 / 1061,
  18637. bottom: 0.002
  18638. }
  18639. },
  18640. },
  18641. [
  18642. {
  18643. name: "Micro",
  18644. height: math.unit(3, "inches")
  18645. },
  18646. {
  18647. name: "Normal",
  18648. height: math.unit(5 + 2 / 12, "feet"),
  18649. default: true
  18650. },
  18651. {
  18652. name: "Macro",
  18653. height: math.unit(20, "feet")
  18654. },
  18655. ]
  18656. ))
  18657. characterMakers.push(() => makeCharacter(
  18658. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18659. {
  18660. front: {
  18661. height: math.unit(6 + 1 / 12, "feet"),
  18662. weight: math.unit(275, "lb"),
  18663. name: "Front",
  18664. image: {
  18665. source: "./media/characters/hunter-misha-raven/front.svg"
  18666. }
  18667. },
  18668. },
  18669. [
  18670. {
  18671. name: "Mortal",
  18672. height: math.unit(6 + 1 / 12, "feet")
  18673. },
  18674. {
  18675. name: "Divine",
  18676. height: math.unit(1.12134e34, "parsecs"),
  18677. default: true
  18678. },
  18679. ]
  18680. ))
  18681. characterMakers.push(() => makeCharacter(
  18682. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18683. {
  18684. front: {
  18685. height: math.unit(6 + 3 / 12, "feet"),
  18686. weight: math.unit(220, "lb"),
  18687. name: "Front",
  18688. image: {
  18689. source: "./media/characters/max-calore/front.svg",
  18690. extra: 1700 / 1648,
  18691. bottom: 0.01
  18692. }
  18693. },
  18694. back: {
  18695. height: math.unit(6 + 3 / 12, "feet"),
  18696. weight: math.unit(220, "lb"),
  18697. name: "Back",
  18698. image: {
  18699. source: "./media/characters/max-calore/back.svg",
  18700. extra: 1700 / 1648,
  18701. bottom: 0.01
  18702. }
  18703. },
  18704. },
  18705. [
  18706. {
  18707. name: "Normal",
  18708. height: math.unit(6 + 3 / 12, "feet"),
  18709. default: true
  18710. },
  18711. ]
  18712. ))
  18713. characterMakers.push(() => makeCharacter(
  18714. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18715. {
  18716. side: {
  18717. height: math.unit(2 + 8 / 12, "feet"),
  18718. weight: math.unit(99, "lb"),
  18719. name: "Side",
  18720. image: {
  18721. source: "./media/characters/aspen/side.svg",
  18722. extra: 152 / 138,
  18723. bottom: 0.032
  18724. }
  18725. },
  18726. },
  18727. [
  18728. {
  18729. name: "Normal",
  18730. height: math.unit(2 + 8 / 12, "feet"),
  18731. default: true
  18732. },
  18733. ]
  18734. ))
  18735. characterMakers.push(() => makeCharacter(
  18736. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18737. {
  18738. side: {
  18739. height: math.unit(3 + 2 / 12, "feet"),
  18740. weight: math.unit(224, "lb"),
  18741. name: "Side",
  18742. image: {
  18743. source: "./media/characters/sheila-feral-wolf/side.svg",
  18744. extra: 179 / 166,
  18745. bottom: 0.03
  18746. }
  18747. },
  18748. },
  18749. [
  18750. {
  18751. name: "Normal",
  18752. height: math.unit(3 + 2 / 12, "feet"),
  18753. default: true
  18754. },
  18755. ]
  18756. ))
  18757. characterMakers.push(() => makeCharacter(
  18758. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18759. {
  18760. side: {
  18761. height: math.unit(1 + 9 / 12, "feet"),
  18762. weight: math.unit(38, "lb"),
  18763. name: "Side",
  18764. image: {
  18765. source: "./media/characters/michelle/side.svg",
  18766. extra: 147 / 136.7,
  18767. bottom: 0.03
  18768. }
  18769. },
  18770. },
  18771. [
  18772. {
  18773. name: "Normal",
  18774. height: math.unit(1 + 9 / 12, "feet"),
  18775. default: true
  18776. },
  18777. ]
  18778. ))
  18779. characterMakers.push(() => makeCharacter(
  18780. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18781. {
  18782. front: {
  18783. height: math.unit(1.54, "feet"),
  18784. weight: math.unit(50, "lb"),
  18785. name: "Front",
  18786. image: {
  18787. source: "./media/characters/nino/front.svg"
  18788. }
  18789. },
  18790. },
  18791. [
  18792. {
  18793. name: "Normal",
  18794. height: math.unit(1.54, "feet"),
  18795. default: true
  18796. },
  18797. ]
  18798. ))
  18799. characterMakers.push(() => makeCharacter(
  18800. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18801. {
  18802. front: {
  18803. height: math.unit(1.49, "feet"),
  18804. weight: math.unit(45, "lb"),
  18805. name: "Front",
  18806. image: {
  18807. source: "./media/characters/viola/front.svg"
  18808. }
  18809. },
  18810. },
  18811. [
  18812. {
  18813. name: "Normal",
  18814. height: math.unit(1.49, "feet"),
  18815. default: true
  18816. },
  18817. ]
  18818. ))
  18819. characterMakers.push(() => makeCharacter(
  18820. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18821. {
  18822. front: {
  18823. height: math.unit(6 + 5 / 12, "feet"),
  18824. weight: math.unit(580, "lb"),
  18825. name: "Front",
  18826. image: {
  18827. source: "./media/characters/atlas/front.svg",
  18828. extra: 298.5 / 290,
  18829. bottom: 0.015
  18830. }
  18831. },
  18832. },
  18833. [
  18834. {
  18835. name: "Normal",
  18836. height: math.unit(6 + 5 / 12, "feet"),
  18837. default: true
  18838. },
  18839. ]
  18840. ))
  18841. characterMakers.push(() => makeCharacter(
  18842. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18843. {
  18844. side: {
  18845. height: math.unit(15.6, "inches"),
  18846. weight: math.unit(10, "lb"),
  18847. name: "Side",
  18848. image: {
  18849. source: "./media/characters/davy/side.svg",
  18850. extra: 200 / 170,
  18851. bottom: 0.01
  18852. }
  18853. },
  18854. },
  18855. [
  18856. {
  18857. name: "Normal",
  18858. height: math.unit(15.6, "inches"),
  18859. default: true
  18860. },
  18861. ]
  18862. ))
  18863. characterMakers.push(() => makeCharacter(
  18864. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18865. {
  18866. side: {
  18867. height: math.unit(4 + 8 / 12, "feet"),
  18868. weight: math.unit(166, "lb"),
  18869. name: "Side",
  18870. image: {
  18871. source: "./media/characters/fiona/side.svg",
  18872. extra: 232 / 220,
  18873. bottom: 0.03
  18874. }
  18875. },
  18876. },
  18877. [
  18878. {
  18879. name: "Normal",
  18880. height: math.unit(4 + 8 / 12, "feet"),
  18881. default: true
  18882. },
  18883. ]
  18884. ))
  18885. characterMakers.push(() => makeCharacter(
  18886. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18887. {
  18888. front: {
  18889. height: math.unit(26, "inches"),
  18890. weight: math.unit(35, "lb"),
  18891. name: "Front",
  18892. image: {
  18893. source: "./media/characters/lyla/front.svg",
  18894. bottom: 0.1
  18895. }
  18896. },
  18897. },
  18898. [
  18899. {
  18900. name: "Normal",
  18901. height: math.unit(3, "feet"),
  18902. default: true
  18903. },
  18904. ]
  18905. ))
  18906. characterMakers.push(() => makeCharacter(
  18907. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18908. {
  18909. side: {
  18910. height: math.unit(1.8, "feet"),
  18911. weight: math.unit(44, "lb"),
  18912. name: "Side",
  18913. image: {
  18914. source: "./media/characters/perseus/side.svg",
  18915. bottom: 0.21
  18916. }
  18917. },
  18918. },
  18919. [
  18920. {
  18921. name: "Normal",
  18922. height: math.unit(1.8, "feet"),
  18923. default: true
  18924. },
  18925. ]
  18926. ))
  18927. characterMakers.push(() => makeCharacter(
  18928. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18929. {
  18930. side: {
  18931. height: math.unit(4 + 2 / 12, "feet"),
  18932. weight: math.unit(20, "lb"),
  18933. name: "Side",
  18934. image: {
  18935. source: "./media/characters/remus/side.svg"
  18936. }
  18937. },
  18938. },
  18939. [
  18940. {
  18941. name: "Normal",
  18942. height: math.unit(4 + 2 / 12, "feet"),
  18943. default: true
  18944. },
  18945. ]
  18946. ))
  18947. characterMakers.push(() => makeCharacter(
  18948. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18949. {
  18950. front: {
  18951. height: math.unit(4 + 11 / 12, "feet"),
  18952. weight: math.unit(114, "lb"),
  18953. name: "Front",
  18954. image: {
  18955. source: "./media/characters/raf/front.svg",
  18956. extra: 1504/1339,
  18957. bottom: 26/1530
  18958. }
  18959. },
  18960. side: {
  18961. height: math.unit(4 + 11 / 12, "feet"),
  18962. weight: math.unit(114, "lb"),
  18963. name: "Side",
  18964. image: {
  18965. source: "./media/characters/raf/side.svg",
  18966. extra: 1466/1316,
  18967. bottom: 29/1495
  18968. }
  18969. },
  18970. paw: {
  18971. height: math.unit(1.45, "feet"),
  18972. name: "Paw",
  18973. image: {
  18974. source: "./media/characters/raf/paw.svg"
  18975. },
  18976. extraAttributes: {
  18977. "toeSize": {
  18978. name: "Toe Size",
  18979. power: 2,
  18980. type: "area",
  18981. base: math.unit(0.004, "m^2")
  18982. },
  18983. "padSize": {
  18984. name: "Pad Size",
  18985. power: 2,
  18986. type: "area",
  18987. base: math.unit(0.04, "m^2")
  18988. },
  18989. "footSize": {
  18990. name: "Foot Size",
  18991. power: 2,
  18992. type: "area",
  18993. base: math.unit(0.08, "m^2")
  18994. },
  18995. }
  18996. },
  18997. },
  18998. [
  18999. {
  19000. name: "Micro",
  19001. height: math.unit(2, "inches")
  19002. },
  19003. {
  19004. name: "Normal",
  19005. height: math.unit(4 + 11 / 12, "feet"),
  19006. default: true
  19007. },
  19008. {
  19009. name: "Macro",
  19010. height: math.unit(70, "feet")
  19011. },
  19012. ]
  19013. ))
  19014. characterMakers.push(() => makeCharacter(
  19015. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19016. {
  19017. front: {
  19018. height: math.unit(1.5, "meters"),
  19019. weight: math.unit(68, "kg"),
  19020. name: "Front",
  19021. image: {
  19022. source: "./media/characters/liam-einarr/front.svg",
  19023. extra: 2822 / 2666
  19024. }
  19025. },
  19026. back: {
  19027. height: math.unit(1.5, "meters"),
  19028. weight: math.unit(68, "kg"),
  19029. name: "Back",
  19030. image: {
  19031. source: "./media/characters/liam-einarr/back.svg",
  19032. extra: 2822 / 2666,
  19033. bottom: 0.015
  19034. }
  19035. },
  19036. },
  19037. [
  19038. {
  19039. name: "Normal",
  19040. height: math.unit(1.5, "meters"),
  19041. default: true
  19042. },
  19043. {
  19044. name: "Macro",
  19045. height: math.unit(150, "meters")
  19046. },
  19047. {
  19048. name: "Megamacro",
  19049. height: math.unit(35, "km")
  19050. },
  19051. ]
  19052. ))
  19053. characterMakers.push(() => makeCharacter(
  19054. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19055. {
  19056. front: {
  19057. height: math.unit(6, "feet"),
  19058. weight: math.unit(75, "kg"),
  19059. name: "Front",
  19060. image: {
  19061. source: "./media/characters/linda/front.svg",
  19062. extra: 930 / 874,
  19063. bottom: 0.004
  19064. }
  19065. },
  19066. },
  19067. [
  19068. {
  19069. name: "Normal",
  19070. height: math.unit(6, "feet"),
  19071. default: true
  19072. },
  19073. ]
  19074. ))
  19075. characterMakers.push(() => makeCharacter(
  19076. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19077. {
  19078. front: {
  19079. height: math.unit(6 + 8 / 12, "feet"),
  19080. weight: math.unit(220, "lb"),
  19081. name: "Front",
  19082. image: {
  19083. source: "./media/characters/caylex/front.svg",
  19084. extra: 821 / 772,
  19085. bottom: 0.07
  19086. }
  19087. },
  19088. back: {
  19089. height: math.unit(6 + 8 / 12, "feet"),
  19090. weight: math.unit(220, "lb"),
  19091. name: "Back",
  19092. image: {
  19093. source: "./media/characters/caylex/back.svg",
  19094. extra: 821 / 772,
  19095. bottom: 0.022
  19096. }
  19097. },
  19098. hand: {
  19099. height: math.unit(1.25, "feet"),
  19100. name: "Hand",
  19101. image: {
  19102. source: "./media/characters/caylex/hand.svg"
  19103. }
  19104. },
  19105. foot: {
  19106. height: math.unit(1.6, "feet"),
  19107. name: "Foot",
  19108. image: {
  19109. source: "./media/characters/caylex/foot.svg"
  19110. }
  19111. },
  19112. armored: {
  19113. height: math.unit(6 + 8 / 12, "feet"),
  19114. weight: math.unit(250, "lb"),
  19115. name: "Armored",
  19116. image: {
  19117. source: "./media/characters/caylex/armored.svg",
  19118. extra: 1420 / 1310,
  19119. bottom: 0.045
  19120. }
  19121. },
  19122. },
  19123. [
  19124. {
  19125. name: "Normal",
  19126. height: math.unit(6 + 8 / 12, "feet"),
  19127. default: true
  19128. },
  19129. {
  19130. name: "Normal+",
  19131. height: math.unit(12, "feet")
  19132. },
  19133. ]
  19134. ))
  19135. characterMakers.push(() => makeCharacter(
  19136. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19137. {
  19138. front: {
  19139. height: math.unit(7 + 6 / 12, "feet"),
  19140. weight: math.unit(288, "lb"),
  19141. name: "Front",
  19142. image: {
  19143. source: "./media/characters/alana/front.svg",
  19144. extra: 679 / 653,
  19145. bottom: 22.5 / 701
  19146. }
  19147. },
  19148. },
  19149. [
  19150. {
  19151. name: "Normal",
  19152. height: math.unit(7 + 6 / 12, "feet")
  19153. },
  19154. {
  19155. name: "Large",
  19156. height: math.unit(50, "feet")
  19157. },
  19158. {
  19159. name: "Macro",
  19160. height: math.unit(100, "feet"),
  19161. default: true
  19162. },
  19163. {
  19164. name: "Macro+",
  19165. height: math.unit(200, "feet")
  19166. },
  19167. ]
  19168. ))
  19169. characterMakers.push(() => makeCharacter(
  19170. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19171. {
  19172. front: {
  19173. height: math.unit(6 + 1 / 12, "feet"),
  19174. weight: math.unit(210, "lb"),
  19175. name: "Front",
  19176. image: {
  19177. source: "./media/characters/hasani/front.svg",
  19178. extra: 244 / 232,
  19179. bottom: 0.01
  19180. }
  19181. },
  19182. back: {
  19183. height: math.unit(6 + 1 / 12, "feet"),
  19184. weight: math.unit(210, "lb"),
  19185. name: "Back",
  19186. image: {
  19187. source: "./media/characters/hasani/back.svg",
  19188. extra: 244 / 232,
  19189. bottom: 0.01
  19190. }
  19191. },
  19192. },
  19193. [
  19194. {
  19195. name: "Normal",
  19196. height: math.unit(6 + 1 / 12, "feet")
  19197. },
  19198. {
  19199. name: "Macro",
  19200. height: math.unit(175, "feet"),
  19201. default: true
  19202. },
  19203. ]
  19204. ))
  19205. characterMakers.push(() => makeCharacter(
  19206. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19207. {
  19208. front: {
  19209. height: math.unit(1.82, "meters"),
  19210. weight: math.unit(140, "lb"),
  19211. name: "Front",
  19212. image: {
  19213. source: "./media/characters/nita/front.svg",
  19214. extra: 2473 / 2363,
  19215. bottom: 0.01
  19216. }
  19217. },
  19218. },
  19219. [
  19220. {
  19221. name: "Normal",
  19222. height: math.unit(1.82, "m")
  19223. },
  19224. {
  19225. name: "Macro",
  19226. height: math.unit(300, "m")
  19227. },
  19228. {
  19229. name: "Mistake Canon",
  19230. height: math.unit(0.5, "miles"),
  19231. default: true
  19232. },
  19233. {
  19234. name: "Big Mistake",
  19235. height: math.unit(13, "miles")
  19236. },
  19237. {
  19238. name: "Playing God",
  19239. height: math.unit(2450, "miles")
  19240. },
  19241. ]
  19242. ))
  19243. characterMakers.push(() => makeCharacter(
  19244. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19245. {
  19246. front: {
  19247. height: math.unit(4, "feet"),
  19248. weight: math.unit(120, "lb"),
  19249. name: "Front",
  19250. image: {
  19251. source: "./media/characters/shiriko/front.svg",
  19252. extra: 970/934,
  19253. bottom: 5/975
  19254. }
  19255. },
  19256. },
  19257. [
  19258. {
  19259. name: "Normal",
  19260. height: math.unit(4, "feet"),
  19261. default: true
  19262. },
  19263. ]
  19264. ))
  19265. characterMakers.push(() => makeCharacter(
  19266. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19267. {
  19268. front: {
  19269. height: math.unit(6, "feet"),
  19270. name: "front",
  19271. image: {
  19272. source: "./media/characters/deja/front.svg",
  19273. extra: 926 / 840,
  19274. bottom: 0.07
  19275. }
  19276. },
  19277. },
  19278. [
  19279. {
  19280. name: "Planck Length",
  19281. height: math.unit(1.6e-35, "meters")
  19282. },
  19283. {
  19284. name: "Normal",
  19285. height: math.unit(30.48, "meters"),
  19286. default: true
  19287. },
  19288. {
  19289. name: "Universal",
  19290. height: math.unit(8.8e26, "meters")
  19291. },
  19292. ]
  19293. ))
  19294. characterMakers.push(() => makeCharacter(
  19295. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19296. {
  19297. side: {
  19298. height: math.unit(8, "feet"),
  19299. weight: math.unit(6300, "lb"),
  19300. name: "Side",
  19301. image: {
  19302. source: "./media/characters/anima/side.svg",
  19303. bottom: 0.035
  19304. }
  19305. },
  19306. },
  19307. [
  19308. {
  19309. name: "Normal",
  19310. height: math.unit(8, "feet"),
  19311. default: true
  19312. },
  19313. ]
  19314. ))
  19315. characterMakers.push(() => makeCharacter(
  19316. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19317. {
  19318. front: {
  19319. height: math.unit(8, "feet"),
  19320. weight: math.unit(350, "lb"),
  19321. name: "Front",
  19322. image: {
  19323. source: "./media/characters/bianca/front.svg",
  19324. extra: 234 / 225,
  19325. bottom: 0.03
  19326. }
  19327. },
  19328. },
  19329. [
  19330. {
  19331. name: "Normal",
  19332. height: math.unit(8, "feet"),
  19333. default: true
  19334. },
  19335. ]
  19336. ))
  19337. characterMakers.push(() => makeCharacter(
  19338. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19339. {
  19340. front: {
  19341. height: math.unit(11 + 5/12, "feet"),
  19342. weight: math.unit(1200, "lb"),
  19343. name: "Front",
  19344. image: {
  19345. source: "./media/characters/adinia/front.svg",
  19346. extra: 1767/1641,
  19347. bottom: 44/1811
  19348. },
  19349. extraAttributes: {
  19350. "energyIntake": {
  19351. name: "Energy Intake",
  19352. power: 3,
  19353. type: "energy",
  19354. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19355. },
  19356. }
  19357. },
  19358. back: {
  19359. height: math.unit(11 + 5/12, "feet"),
  19360. weight: math.unit(1200, "lb"),
  19361. name: "Back",
  19362. image: {
  19363. source: "./media/characters/adinia/back.svg",
  19364. extra: 1834/1684,
  19365. bottom: 14/1848
  19366. },
  19367. extraAttributes: {
  19368. "energyIntake": {
  19369. name: "Energy Intake",
  19370. power: 3,
  19371. type: "energy",
  19372. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19373. },
  19374. }
  19375. },
  19376. maw: {
  19377. height: math.unit(3.79, "feet"),
  19378. name: "Maw",
  19379. image: {
  19380. source: "./media/characters/adinia/maw.svg"
  19381. }
  19382. },
  19383. rump: {
  19384. height: math.unit(4.6, "feet"),
  19385. name: "Rump",
  19386. image: {
  19387. source: "./media/characters/adinia/rump.svg"
  19388. }
  19389. },
  19390. },
  19391. [
  19392. {
  19393. name: "Normal",
  19394. height: math.unit(11 + 5 / 12, "feet"),
  19395. default: true
  19396. },
  19397. ]
  19398. ))
  19399. characterMakers.push(() => makeCharacter(
  19400. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19401. {
  19402. front: {
  19403. height: math.unit(3, "meters"),
  19404. weight: math.unit(200, "kg"),
  19405. name: "Front",
  19406. image: {
  19407. source: "./media/characters/lykasa/front.svg",
  19408. extra: 1076 / 976,
  19409. bottom: 0.06
  19410. }
  19411. },
  19412. },
  19413. [
  19414. {
  19415. name: "Normal",
  19416. height: math.unit(3, "meters")
  19417. },
  19418. {
  19419. name: "Kaiju",
  19420. height: math.unit(120, "meters"),
  19421. default: true
  19422. },
  19423. {
  19424. name: "Mega Kaiju",
  19425. height: math.unit(240, "km")
  19426. },
  19427. {
  19428. name: "Giga Kaiju",
  19429. height: math.unit(400, "megameters")
  19430. },
  19431. {
  19432. name: "Tera Kaiju",
  19433. height: math.unit(800, "gigameters")
  19434. },
  19435. {
  19436. name: "Kaiju Dragon Goddess",
  19437. height: math.unit(26, "zettaparsecs")
  19438. },
  19439. ]
  19440. ))
  19441. characterMakers.push(() => makeCharacter(
  19442. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19443. {
  19444. side: {
  19445. height: math.unit(283 / 124 * 6, "feet"),
  19446. weight: math.unit(35000, "lb"),
  19447. name: "Side",
  19448. image: {
  19449. source: "./media/characters/malfaren/side.svg",
  19450. extra: 1310/529,
  19451. bottom: 24/1334
  19452. }
  19453. },
  19454. front: {
  19455. height: math.unit(22.36, "feet"),
  19456. weight: math.unit(35000, "lb"),
  19457. name: "Front",
  19458. image: {
  19459. source: "./media/characters/malfaren/front.svg",
  19460. extra: 1237/1115,
  19461. bottom: 32/1269
  19462. }
  19463. },
  19464. maw: {
  19465. height: math.unit(6.9, "feet"),
  19466. name: "Maw",
  19467. image: {
  19468. source: "./media/characters/malfaren/maw.svg"
  19469. }
  19470. },
  19471. dick: {
  19472. height: math.unit(6.19, "feet"),
  19473. name: "Dick",
  19474. image: {
  19475. source: "./media/characters/malfaren/dick.svg"
  19476. }
  19477. },
  19478. eye: {
  19479. height: math.unit(0.69, "feet"),
  19480. name: "Eye",
  19481. image: {
  19482. source: "./media/characters/malfaren/eye.svg"
  19483. }
  19484. },
  19485. },
  19486. [
  19487. {
  19488. name: "Big",
  19489. height: math.unit(283 / 162 * 6, "feet"),
  19490. },
  19491. {
  19492. name: "Bigger",
  19493. height: math.unit(283 / 124 * 6, "feet")
  19494. },
  19495. {
  19496. name: "Massive",
  19497. height: math.unit(283 / 92 * 6, "feet"),
  19498. default: true
  19499. },
  19500. {
  19501. name: "👀💦",
  19502. height: math.unit(283 / 73 * 6, "feet"),
  19503. },
  19504. ]
  19505. ))
  19506. characterMakers.push(() => makeCharacter(
  19507. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19508. {
  19509. front: {
  19510. height: math.unit(1.7, "m"),
  19511. weight: math.unit(70, "kg"),
  19512. name: "Front",
  19513. image: {
  19514. source: "./media/characters/kernel/front.svg",
  19515. extra: 222 / 210,
  19516. bottom: 0.007
  19517. }
  19518. },
  19519. },
  19520. [
  19521. {
  19522. name: "Nano",
  19523. height: math.unit(17, "micrometers")
  19524. },
  19525. {
  19526. name: "Micro",
  19527. height: math.unit(1.7, "mm")
  19528. },
  19529. {
  19530. name: "Small",
  19531. height: math.unit(1.7, "cm")
  19532. },
  19533. {
  19534. name: "Normal",
  19535. height: math.unit(1.7, "m"),
  19536. default: true
  19537. },
  19538. ]
  19539. ))
  19540. characterMakers.push(() => makeCharacter(
  19541. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19542. {
  19543. front: {
  19544. height: math.unit(1.75, "meters"),
  19545. weight: math.unit(65, "kg"),
  19546. name: "Front",
  19547. image: {
  19548. source: "./media/characters/jayne-folest/front.svg",
  19549. extra: 2115 / 2007,
  19550. bottom: 0.02
  19551. }
  19552. },
  19553. back: {
  19554. height: math.unit(1.75, "meters"),
  19555. weight: math.unit(65, "kg"),
  19556. name: "Back",
  19557. image: {
  19558. source: "./media/characters/jayne-folest/back.svg",
  19559. extra: 2115 / 2007,
  19560. bottom: 0.005
  19561. }
  19562. },
  19563. frontClothed: {
  19564. height: math.unit(1.75, "meters"),
  19565. weight: math.unit(65, "kg"),
  19566. name: "Front (Clothed)",
  19567. image: {
  19568. source: "./media/characters/jayne-folest/front-clothed.svg",
  19569. extra: 2115 / 2007,
  19570. bottom: 0.035
  19571. }
  19572. },
  19573. hand: {
  19574. height: math.unit(1 / 1.260, "feet"),
  19575. name: "Hand",
  19576. image: {
  19577. source: "./media/characters/jayne-folest/hand.svg"
  19578. }
  19579. },
  19580. foot: {
  19581. height: math.unit(1 / 0.918, "feet"),
  19582. name: "Foot",
  19583. image: {
  19584. source: "./media/characters/jayne-folest/foot.svg"
  19585. }
  19586. },
  19587. },
  19588. [
  19589. {
  19590. name: "Micro",
  19591. height: math.unit(4, "cm")
  19592. },
  19593. {
  19594. name: "Normal",
  19595. height: math.unit(1.75, "meters")
  19596. },
  19597. {
  19598. name: "Macro",
  19599. height: math.unit(47.5, "meters"),
  19600. default: true
  19601. },
  19602. ]
  19603. ))
  19604. characterMakers.push(() => makeCharacter(
  19605. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19606. {
  19607. front: {
  19608. height: math.unit(180, "cm"),
  19609. weight: math.unit(70, "kg"),
  19610. name: "Front",
  19611. image: {
  19612. source: "./media/characters/algier/front.svg",
  19613. extra: 596 / 572,
  19614. bottom: 0.04
  19615. }
  19616. },
  19617. back: {
  19618. height: math.unit(180, "cm"),
  19619. weight: math.unit(70, "kg"),
  19620. name: "Back",
  19621. image: {
  19622. source: "./media/characters/algier/back.svg",
  19623. extra: 596 / 572,
  19624. bottom: 0.025
  19625. }
  19626. },
  19627. frontdressed: {
  19628. height: math.unit(180, "cm"),
  19629. weight: math.unit(150, "kg"),
  19630. name: "Front-dressed",
  19631. image: {
  19632. source: "./media/characters/algier/front-dressed.svg",
  19633. extra: 596 / 572,
  19634. bottom: 0.038
  19635. }
  19636. },
  19637. },
  19638. [
  19639. {
  19640. name: "Micro",
  19641. height: math.unit(5, "cm")
  19642. },
  19643. {
  19644. name: "Normal",
  19645. height: math.unit(180, "cm"),
  19646. default: true
  19647. },
  19648. {
  19649. name: "Macro",
  19650. height: math.unit(64, "m")
  19651. },
  19652. ]
  19653. ))
  19654. characterMakers.push(() => makeCharacter(
  19655. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19656. {
  19657. upright: {
  19658. height: math.unit(7, "feet"),
  19659. weight: math.unit(300, "lb"),
  19660. name: "Upright",
  19661. image: {
  19662. source: "./media/characters/pretzel/upright.svg",
  19663. extra: 534 / 522,
  19664. bottom: 0.065
  19665. }
  19666. },
  19667. sprawling: {
  19668. height: math.unit(3.75, "feet"),
  19669. weight: math.unit(300, "lb"),
  19670. name: "Sprawling",
  19671. image: {
  19672. source: "./media/characters/pretzel/sprawling.svg",
  19673. extra: 314 / 281,
  19674. bottom: 0.1
  19675. }
  19676. },
  19677. tongue: {
  19678. height: math.unit(2, "feet"),
  19679. name: "Tongue",
  19680. image: {
  19681. source: "./media/characters/pretzel/tongue.svg"
  19682. }
  19683. },
  19684. },
  19685. [
  19686. {
  19687. name: "Normal",
  19688. height: math.unit(7, "feet"),
  19689. default: true
  19690. },
  19691. {
  19692. name: "Oversized",
  19693. height: math.unit(15, "feet")
  19694. },
  19695. {
  19696. name: "Huge",
  19697. height: math.unit(30, "feet")
  19698. },
  19699. {
  19700. name: "Macro",
  19701. height: math.unit(250, "feet")
  19702. },
  19703. ]
  19704. ))
  19705. characterMakers.push(() => makeCharacter(
  19706. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19707. {
  19708. sideFront: {
  19709. height: math.unit(5 + 2 / 12, "feet"),
  19710. weight: math.unit(120, "lb"),
  19711. name: "Front Side",
  19712. image: {
  19713. source: "./media/characters/roxi/side-front.svg",
  19714. extra: 2924 / 2717,
  19715. bottom: 0.08
  19716. }
  19717. },
  19718. sideBack: {
  19719. height: math.unit(5 + 2 / 12, "feet"),
  19720. weight: math.unit(120, "lb"),
  19721. name: "Back Side",
  19722. image: {
  19723. source: "./media/characters/roxi/side-back.svg",
  19724. extra: 2904 / 2693,
  19725. bottom: 0.06
  19726. }
  19727. },
  19728. front: {
  19729. height: math.unit(5 + 2 / 12, "feet"),
  19730. weight: math.unit(120, "lb"),
  19731. name: "Front",
  19732. image: {
  19733. source: "./media/characters/roxi/front.svg",
  19734. extra: 2028 / 1907,
  19735. bottom: 0.01
  19736. }
  19737. },
  19738. frontAlt: {
  19739. height: math.unit(5 + 2 / 12, "feet"),
  19740. weight: math.unit(120, "lb"),
  19741. name: "Front (Alt)",
  19742. image: {
  19743. source: "./media/characters/roxi/front-alt.svg",
  19744. extra: 1828 / 1798,
  19745. bottom: 0.01
  19746. }
  19747. },
  19748. sitting: {
  19749. height: math.unit(2.8, "feet"),
  19750. weight: math.unit(120, "lb"),
  19751. name: "Sitting",
  19752. image: {
  19753. source: "./media/characters/roxi/sitting.svg",
  19754. extra: 2660 / 2462,
  19755. bottom: 0.1
  19756. }
  19757. },
  19758. },
  19759. [
  19760. {
  19761. name: "Normal",
  19762. height: math.unit(5 + 2 / 12, "feet"),
  19763. default: true
  19764. },
  19765. ]
  19766. ))
  19767. characterMakers.push(() => makeCharacter(
  19768. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19769. {
  19770. side: {
  19771. height: math.unit(55, "feet"),
  19772. weight: math.unit(153, "tons"),
  19773. name: "Side",
  19774. image: {
  19775. source: "./media/characters/shadow/side.svg",
  19776. extra: 701 / 628,
  19777. bottom: 0.02
  19778. }
  19779. },
  19780. flying: {
  19781. height: math.unit(145, "feet"),
  19782. weight: math.unit(153, "tons"),
  19783. name: "Flying",
  19784. image: {
  19785. source: "./media/characters/shadow/flying.svg"
  19786. }
  19787. },
  19788. },
  19789. [
  19790. {
  19791. name: "Normal",
  19792. height: math.unit(55, "feet"),
  19793. default: true
  19794. },
  19795. ]
  19796. ))
  19797. characterMakers.push(() => makeCharacter(
  19798. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19799. {
  19800. front: {
  19801. height: math.unit(6, "feet"),
  19802. weight: math.unit(200, "lb"),
  19803. name: "Front",
  19804. image: {
  19805. source: "./media/characters/marcie/front.svg",
  19806. extra: 960 / 876,
  19807. bottom: 58 / 1017.87
  19808. }
  19809. },
  19810. },
  19811. [
  19812. {
  19813. name: "Macro",
  19814. height: math.unit(1, "mile"),
  19815. default: true
  19816. },
  19817. ]
  19818. ))
  19819. characterMakers.push(() => makeCharacter(
  19820. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19821. {
  19822. front: {
  19823. height: math.unit(7, "feet"),
  19824. weight: math.unit(200, "lb"),
  19825. name: "Front",
  19826. image: {
  19827. source: "./media/characters/kachina/front.svg",
  19828. extra: 1290.68 / 1119,
  19829. bottom: 36.5 / 1327.18
  19830. }
  19831. },
  19832. },
  19833. [
  19834. {
  19835. name: "Normal",
  19836. height: math.unit(7, "feet"),
  19837. default: true
  19838. },
  19839. ]
  19840. ))
  19841. characterMakers.push(() => makeCharacter(
  19842. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19843. {
  19844. looking: {
  19845. height: math.unit(2, "meters"),
  19846. weight: math.unit(300, "kg"),
  19847. name: "Looking",
  19848. image: {
  19849. source: "./media/characters/kash/looking.svg",
  19850. extra: 474 / 344,
  19851. bottom: 0.03
  19852. }
  19853. },
  19854. side: {
  19855. height: math.unit(2, "meters"),
  19856. weight: math.unit(300, "kg"),
  19857. name: "Side",
  19858. image: {
  19859. source: "./media/characters/kash/side.svg",
  19860. extra: 302 / 251,
  19861. bottom: 0.03
  19862. }
  19863. },
  19864. front: {
  19865. height: math.unit(2, "meters"),
  19866. weight: math.unit(300, "kg"),
  19867. name: "Front",
  19868. image: {
  19869. source: "./media/characters/kash/front.svg",
  19870. extra: 495 / 360,
  19871. bottom: 0.015
  19872. }
  19873. },
  19874. },
  19875. [
  19876. {
  19877. name: "Normal",
  19878. height: math.unit(2, "meters"),
  19879. default: true
  19880. },
  19881. {
  19882. name: "Big",
  19883. height: math.unit(3, "meters")
  19884. },
  19885. {
  19886. name: "Large",
  19887. height: math.unit(5, "meters")
  19888. },
  19889. ]
  19890. ))
  19891. characterMakers.push(() => makeCharacter(
  19892. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19893. {
  19894. feeding: {
  19895. height: math.unit(6.7, "feet"),
  19896. weight: math.unit(350, "lb"),
  19897. name: "Feeding",
  19898. image: {
  19899. source: "./media/characters/lalim/feeding.svg",
  19900. }
  19901. },
  19902. },
  19903. [
  19904. {
  19905. name: "Normal",
  19906. height: math.unit(6.7, "feet"),
  19907. default: true
  19908. },
  19909. ]
  19910. ))
  19911. characterMakers.push(() => makeCharacter(
  19912. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19913. {
  19914. front: {
  19915. height: math.unit(9.5, "feet"),
  19916. weight: math.unit(600, "lb"),
  19917. name: "Front",
  19918. image: {
  19919. source: "./media/characters/de'vout/front.svg",
  19920. extra: 1443 / 1328,
  19921. bottom: 0.025
  19922. }
  19923. },
  19924. back: {
  19925. height: math.unit(9.5, "feet"),
  19926. weight: math.unit(600, "lb"),
  19927. name: "Back",
  19928. image: {
  19929. source: "./media/characters/de'vout/back.svg",
  19930. extra: 1443 / 1328
  19931. }
  19932. },
  19933. frontDressed: {
  19934. height: math.unit(9.5, "feet"),
  19935. weight: math.unit(600, "lb"),
  19936. name: "Front (Dressed",
  19937. image: {
  19938. source: "./media/characters/de'vout/front-dressed.svg",
  19939. extra: 1443 / 1328,
  19940. bottom: 0.025
  19941. }
  19942. },
  19943. backDressed: {
  19944. height: math.unit(9.5, "feet"),
  19945. weight: math.unit(600, "lb"),
  19946. name: "Back (Dressed",
  19947. image: {
  19948. source: "./media/characters/de'vout/back-dressed.svg",
  19949. extra: 1443 / 1328
  19950. }
  19951. },
  19952. },
  19953. [
  19954. {
  19955. name: "Normal",
  19956. height: math.unit(9.5, "feet"),
  19957. default: true
  19958. },
  19959. ]
  19960. ))
  19961. characterMakers.push(() => makeCharacter(
  19962. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19963. {
  19964. front: {
  19965. height: math.unit(8, "feet"),
  19966. weight: math.unit(225, "lb"),
  19967. name: "Front",
  19968. image: {
  19969. source: "./media/characters/talana/front.svg",
  19970. extra: 1410 / 1300,
  19971. bottom: 0.015
  19972. }
  19973. },
  19974. frontDressed: {
  19975. height: math.unit(8, "feet"),
  19976. weight: math.unit(225, "lb"),
  19977. name: "Front (Dressed",
  19978. image: {
  19979. source: "./media/characters/talana/front-dressed.svg",
  19980. extra: 1410 / 1300,
  19981. bottom: 0.015
  19982. }
  19983. },
  19984. },
  19985. [
  19986. {
  19987. name: "Normal",
  19988. height: math.unit(8, "feet"),
  19989. default: true
  19990. },
  19991. ]
  19992. ))
  19993. characterMakers.push(() => makeCharacter(
  19994. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19995. {
  19996. side: {
  19997. height: math.unit(7.2, "feet"),
  19998. weight: math.unit(150, "lb"),
  19999. name: "Side",
  20000. image: {
  20001. source: "./media/characters/xeauvok/side.svg",
  20002. extra: 1975 / 1523,
  20003. bottom: 0.07
  20004. }
  20005. },
  20006. },
  20007. [
  20008. {
  20009. name: "Normal",
  20010. height: math.unit(7.2, "feet"),
  20011. default: true
  20012. },
  20013. ]
  20014. ))
  20015. characterMakers.push(() => makeCharacter(
  20016. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20017. {
  20018. side: {
  20019. height: math.unit(4, "meters"),
  20020. weight: math.unit(2200, "kg"),
  20021. name: "Side",
  20022. image: {
  20023. source: "./media/characters/zara/side.svg",
  20024. extra: 765/744,
  20025. bottom: 156/921
  20026. }
  20027. },
  20028. },
  20029. [
  20030. {
  20031. name: "Normal",
  20032. height: math.unit(4, "meters"),
  20033. default: true
  20034. },
  20035. ]
  20036. ))
  20037. characterMakers.push(() => makeCharacter(
  20038. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20039. {
  20040. side: {
  20041. height: math.unit(6, "feet"),
  20042. weight: math.unit(150, "lb"),
  20043. name: "Side",
  20044. image: {
  20045. source: "./media/characters/richard-dragon/side.svg",
  20046. extra: 845 / 340,
  20047. bottom: 0.017
  20048. }
  20049. },
  20050. maw: {
  20051. height: math.unit(2.97, "feet"),
  20052. name: "Maw",
  20053. image: {
  20054. source: "./media/characters/richard-dragon/maw.svg"
  20055. }
  20056. },
  20057. },
  20058. [
  20059. ]
  20060. ))
  20061. characterMakers.push(() => makeCharacter(
  20062. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20063. {
  20064. front: {
  20065. height: math.unit(4, "feet"),
  20066. weight: math.unit(100, "lb"),
  20067. name: "Front",
  20068. image: {
  20069. source: "./media/characters/richard-smeargle/front.svg",
  20070. extra: 2952 / 2820,
  20071. bottom: 0.028
  20072. }
  20073. },
  20074. },
  20075. [
  20076. {
  20077. name: "Normal",
  20078. height: math.unit(4, "feet"),
  20079. default: true
  20080. },
  20081. {
  20082. name: "Dynamax",
  20083. height: math.unit(20, "meters")
  20084. },
  20085. ]
  20086. ))
  20087. characterMakers.push(() => makeCharacter(
  20088. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20089. {
  20090. front: {
  20091. height: math.unit(6, "feet"),
  20092. weight: math.unit(110, "lb"),
  20093. name: "Front",
  20094. image: {
  20095. source: "./media/characters/klay/front.svg",
  20096. extra: 962 / 883,
  20097. bottom: 0.04
  20098. }
  20099. },
  20100. back: {
  20101. height: math.unit(6, "feet"),
  20102. weight: math.unit(110, "lb"),
  20103. name: "Back",
  20104. image: {
  20105. source: "./media/characters/klay/back.svg",
  20106. extra: 962 / 883
  20107. }
  20108. },
  20109. beans: {
  20110. height: math.unit(1.15, "feet"),
  20111. name: "Beans",
  20112. image: {
  20113. source: "./media/characters/klay/beans.svg"
  20114. }
  20115. },
  20116. },
  20117. [
  20118. {
  20119. name: "Micro",
  20120. height: math.unit(6, "inches")
  20121. },
  20122. {
  20123. name: "Mini",
  20124. height: math.unit(3, "feet")
  20125. },
  20126. {
  20127. name: "Normal",
  20128. height: math.unit(6, "feet"),
  20129. default: true
  20130. },
  20131. {
  20132. name: "Big",
  20133. height: math.unit(25, "feet")
  20134. },
  20135. {
  20136. name: "Macro",
  20137. height: math.unit(100, "feet")
  20138. },
  20139. {
  20140. name: "Megamacro",
  20141. height: math.unit(400, "feet")
  20142. },
  20143. ]
  20144. ))
  20145. characterMakers.push(() => makeCharacter(
  20146. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20147. {
  20148. front: {
  20149. height: math.unit(6, "feet"),
  20150. weight: math.unit(160, "lb"),
  20151. name: "Front",
  20152. image: {
  20153. source: "./media/characters/marcus/front.svg",
  20154. extra: 734 / 676,
  20155. bottom: 0.03
  20156. }
  20157. },
  20158. },
  20159. [
  20160. {
  20161. name: "Little",
  20162. height: math.unit(6, "feet")
  20163. },
  20164. {
  20165. name: "Normal",
  20166. height: math.unit(110, "feet"),
  20167. default: true
  20168. },
  20169. {
  20170. name: "Macro",
  20171. height: math.unit(250, "feet")
  20172. },
  20173. {
  20174. name: "Megamacro",
  20175. height: math.unit(1000, "feet")
  20176. },
  20177. ]
  20178. ))
  20179. characterMakers.push(() => makeCharacter(
  20180. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20181. {
  20182. front: {
  20183. height: math.unit(7, "feet"),
  20184. weight: math.unit(275, "lb"),
  20185. name: "Front",
  20186. image: {
  20187. source: "./media/characters/claude-delroute/front.svg",
  20188. extra: 902/827,
  20189. bottom: 26/928
  20190. }
  20191. },
  20192. side: {
  20193. height: math.unit(7, "feet"),
  20194. weight: math.unit(275, "lb"),
  20195. name: "Side",
  20196. image: {
  20197. source: "./media/characters/claude-delroute/side.svg",
  20198. extra: 908/853,
  20199. bottom: 16/924
  20200. }
  20201. },
  20202. back: {
  20203. height: math.unit(7, "feet"),
  20204. weight: math.unit(275, "lb"),
  20205. name: "Back",
  20206. image: {
  20207. source: "./media/characters/claude-delroute/back.svg",
  20208. extra: 911/829,
  20209. bottom: 18/929
  20210. }
  20211. },
  20212. maw: {
  20213. height: math.unit(0.6407, "meters"),
  20214. name: "Maw",
  20215. image: {
  20216. source: "./media/characters/claude-delroute/maw.svg"
  20217. }
  20218. },
  20219. },
  20220. [
  20221. {
  20222. name: "Normal",
  20223. height: math.unit(7, "feet"),
  20224. default: true
  20225. },
  20226. {
  20227. name: "Lorge",
  20228. height: math.unit(20, "feet")
  20229. },
  20230. ]
  20231. ))
  20232. characterMakers.push(() => makeCharacter(
  20233. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20234. {
  20235. front: {
  20236. height: math.unit(8 + 4 / 12, "feet"),
  20237. weight: math.unit(600, "lb"),
  20238. name: "Front",
  20239. image: {
  20240. source: "./media/characters/dragonien/front.svg",
  20241. extra: 100 / 94,
  20242. bottom: 3.3 / 103.3445
  20243. }
  20244. },
  20245. back: {
  20246. height: math.unit(8 + 4 / 12, "feet"),
  20247. weight: math.unit(600, "lb"),
  20248. name: "Back",
  20249. image: {
  20250. source: "./media/characters/dragonien/back.svg",
  20251. extra: 776 / 746,
  20252. bottom: 6.4 / 782.0616
  20253. }
  20254. },
  20255. foot: {
  20256. height: math.unit(1.54, "feet"),
  20257. name: "Foot",
  20258. image: {
  20259. source: "./media/characters/dragonien/foot.svg",
  20260. }
  20261. },
  20262. },
  20263. [
  20264. {
  20265. name: "Normal",
  20266. height: math.unit(8 + 4 / 12, "feet"),
  20267. default: true
  20268. },
  20269. {
  20270. name: "Macro",
  20271. height: math.unit(200, "feet")
  20272. },
  20273. {
  20274. name: "Megamacro",
  20275. height: math.unit(1, "mile")
  20276. },
  20277. {
  20278. name: "Gigamacro",
  20279. height: math.unit(1000, "miles")
  20280. },
  20281. ]
  20282. ))
  20283. characterMakers.push(() => makeCharacter(
  20284. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20285. {
  20286. front: {
  20287. height: math.unit(5 + 2 / 12, "feet"),
  20288. weight: math.unit(110, "lb"),
  20289. name: "Front",
  20290. image: {
  20291. source: "./media/characters/desta/front.svg",
  20292. extra: 767 / 726,
  20293. bottom: 11.7 / 779
  20294. }
  20295. },
  20296. back: {
  20297. height: math.unit(5 + 2 / 12, "feet"),
  20298. weight: math.unit(110, "lb"),
  20299. name: "Back",
  20300. image: {
  20301. source: "./media/characters/desta/back.svg",
  20302. extra: 777 / 728,
  20303. bottom: 6 / 784
  20304. }
  20305. },
  20306. frontAlt: {
  20307. height: math.unit(5 + 2 / 12, "feet"),
  20308. weight: math.unit(110, "lb"),
  20309. name: "Front",
  20310. image: {
  20311. source: "./media/characters/desta/front-alt.svg",
  20312. extra: 1482 / 1417
  20313. }
  20314. },
  20315. side: {
  20316. height: math.unit(5 + 2 / 12, "feet"),
  20317. weight: math.unit(110, "lb"),
  20318. name: "Side",
  20319. image: {
  20320. source: "./media/characters/desta/side.svg",
  20321. extra: 2579 / 2491,
  20322. bottom: 0.053
  20323. }
  20324. },
  20325. },
  20326. [
  20327. {
  20328. name: "Micro",
  20329. height: math.unit(6, "inches")
  20330. },
  20331. {
  20332. name: "Normal",
  20333. height: math.unit(5 + 2 / 12, "feet"),
  20334. default: true
  20335. },
  20336. {
  20337. name: "Macro",
  20338. height: math.unit(62, "feet")
  20339. },
  20340. {
  20341. name: "Megamacro",
  20342. height: math.unit(1800, "feet")
  20343. },
  20344. ]
  20345. ))
  20346. characterMakers.push(() => makeCharacter(
  20347. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20348. {
  20349. front: {
  20350. height: math.unit(10, "feet"),
  20351. weight: math.unit(700, "lb"),
  20352. name: "Front",
  20353. image: {
  20354. source: "./media/characters/storm-alystar/front.svg",
  20355. extra: 2112 / 1898,
  20356. bottom: 0.034
  20357. }
  20358. },
  20359. },
  20360. [
  20361. {
  20362. name: "Micro",
  20363. height: math.unit(3.5, "inches")
  20364. },
  20365. {
  20366. name: "Normal",
  20367. height: math.unit(10, "feet"),
  20368. default: true
  20369. },
  20370. {
  20371. name: "Macro",
  20372. height: math.unit(400, "feet")
  20373. },
  20374. {
  20375. name: "Deific",
  20376. height: math.unit(60, "miles")
  20377. },
  20378. ]
  20379. ))
  20380. characterMakers.push(() => makeCharacter(
  20381. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20382. {
  20383. front: {
  20384. height: math.unit(2.35, "meters"),
  20385. weight: math.unit(119, "kg"),
  20386. name: "Front",
  20387. image: {
  20388. source: "./media/characters/ilia/front.svg",
  20389. extra: 1285 / 1255,
  20390. bottom: 0.06
  20391. }
  20392. },
  20393. },
  20394. [
  20395. {
  20396. name: "Normal",
  20397. height: math.unit(2.35, "meters")
  20398. },
  20399. {
  20400. name: "Macro",
  20401. height: math.unit(140, "meters"),
  20402. default: true
  20403. },
  20404. {
  20405. name: "Megamacro",
  20406. height: math.unit(100, "miles")
  20407. },
  20408. ]
  20409. ))
  20410. characterMakers.push(() => makeCharacter(
  20411. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20412. {
  20413. front: {
  20414. height: math.unit(6 + 5 / 12, "feet"),
  20415. weight: math.unit(190, "lb"),
  20416. name: "Front",
  20417. image: {
  20418. source: "./media/characters/kingdead/front.svg",
  20419. extra: 1228 / 1177
  20420. }
  20421. },
  20422. },
  20423. [
  20424. {
  20425. name: "Micro",
  20426. height: math.unit(7, "inches")
  20427. },
  20428. {
  20429. name: "Normal",
  20430. height: math.unit(6 + 5 / 12, "feet")
  20431. },
  20432. {
  20433. name: "Macro",
  20434. height: math.unit(150, "feet"),
  20435. default: true
  20436. },
  20437. {
  20438. name: "Megamacro",
  20439. height: math.unit(200, "miles")
  20440. },
  20441. ]
  20442. ))
  20443. characterMakers.push(() => makeCharacter(
  20444. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20445. {
  20446. front: {
  20447. height: math.unit(8, "feet"),
  20448. weight: math.unit(600, "lb"),
  20449. name: "Front",
  20450. image: {
  20451. source: "./media/characters/kyrehx/front.svg",
  20452. extra: 1195 / 1095,
  20453. bottom: 0.034
  20454. }
  20455. },
  20456. },
  20457. [
  20458. {
  20459. name: "Micro",
  20460. height: math.unit(2, "inches")
  20461. },
  20462. {
  20463. name: "Normal",
  20464. height: math.unit(8, "feet"),
  20465. default: true
  20466. },
  20467. {
  20468. name: "Macro",
  20469. height: math.unit(255, "feet")
  20470. },
  20471. ]
  20472. ))
  20473. characterMakers.push(() => makeCharacter(
  20474. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20475. {
  20476. front: {
  20477. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20478. weight: math.unit(184, "lb"),
  20479. name: "Front",
  20480. image: {
  20481. source: "./media/characters/xang/front.svg",
  20482. extra: 845 / 755
  20483. }
  20484. },
  20485. },
  20486. [
  20487. {
  20488. name: "Normal",
  20489. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20490. default: true
  20491. },
  20492. {
  20493. name: "Macro",
  20494. height: math.unit(0.935 * 146, "feet")
  20495. },
  20496. {
  20497. name: "Megamacro",
  20498. height: math.unit(0.935 * 3, "miles")
  20499. },
  20500. ]
  20501. ))
  20502. characterMakers.push(() => makeCharacter(
  20503. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20504. {
  20505. frontDressed: {
  20506. height: math.unit(5 + 7 / 12, "feet"),
  20507. weight: math.unit(140, "lb"),
  20508. name: "Front (Dressed)",
  20509. image: {
  20510. source: "./media/characters/doc-weardno/front-dressed.svg",
  20511. extra: 263 / 234
  20512. }
  20513. },
  20514. backDressed: {
  20515. height: math.unit(5 + 7 / 12, "feet"),
  20516. weight: math.unit(140, "lb"),
  20517. name: "Back (Dressed)",
  20518. image: {
  20519. source: "./media/characters/doc-weardno/back-dressed.svg",
  20520. extra: 266 / 238
  20521. }
  20522. },
  20523. front: {
  20524. height: math.unit(5 + 7 / 12, "feet"),
  20525. weight: math.unit(140, "lb"),
  20526. name: "Front",
  20527. image: {
  20528. source: "./media/characters/doc-weardno/front.svg",
  20529. extra: 254 / 233
  20530. }
  20531. },
  20532. },
  20533. [
  20534. {
  20535. name: "Micro",
  20536. height: math.unit(3, "inches")
  20537. },
  20538. {
  20539. name: "Normal",
  20540. height: math.unit(5 + 7 / 12, "feet"),
  20541. default: true
  20542. },
  20543. {
  20544. name: "Macro",
  20545. height: math.unit(25, "feet")
  20546. },
  20547. {
  20548. name: "Megamacro",
  20549. height: math.unit(2, "miles")
  20550. },
  20551. ]
  20552. ))
  20553. characterMakers.push(() => makeCharacter(
  20554. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20555. {
  20556. front: {
  20557. height: math.unit(6 + 2 / 12, "feet"),
  20558. weight: math.unit(153, "lb"),
  20559. name: "Front",
  20560. image: {
  20561. source: "./media/characters/seth-whilst/front.svg",
  20562. bottom: 0.07
  20563. }
  20564. },
  20565. },
  20566. [
  20567. {
  20568. name: "Micro",
  20569. height: math.unit(5, "inches")
  20570. },
  20571. {
  20572. name: "Normal",
  20573. height: math.unit(6 + 2 / 12, "feet"),
  20574. default: true
  20575. },
  20576. ]
  20577. ))
  20578. characterMakers.push(() => makeCharacter(
  20579. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20580. {
  20581. front: {
  20582. height: math.unit(3, "inches"),
  20583. weight: math.unit(8, "grams"),
  20584. name: "Front",
  20585. image: {
  20586. source: "./media/characters/pocket-jabari/front.svg",
  20587. extra: 1024 / 974,
  20588. bottom: 0.039
  20589. }
  20590. },
  20591. },
  20592. [
  20593. {
  20594. name: "Minimicro",
  20595. height: math.unit(8, "mm")
  20596. },
  20597. {
  20598. name: "Micro",
  20599. height: math.unit(3, "inches"),
  20600. default: true
  20601. },
  20602. {
  20603. name: "Normal",
  20604. height: math.unit(3, "feet")
  20605. },
  20606. ]
  20607. ))
  20608. characterMakers.push(() => makeCharacter(
  20609. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20610. {
  20611. frontDressed: {
  20612. height: math.unit(15, "feet"),
  20613. weight: math.unit(3280, "lb"),
  20614. name: "Front (Dressed)",
  20615. image: {
  20616. source: "./media/characters/sapphy/front-dressed.svg",
  20617. extra: 1951/1654,
  20618. bottom: 194/2145
  20619. },
  20620. form: "anthro",
  20621. default: true
  20622. },
  20623. backDressed: {
  20624. height: math.unit(15, "feet"),
  20625. weight: math.unit(3280, "lb"),
  20626. name: "Back (Dressed)",
  20627. image: {
  20628. source: "./media/characters/sapphy/back-dressed.svg",
  20629. extra: 2058/1918,
  20630. bottom: 125/2183
  20631. },
  20632. form: "anthro"
  20633. },
  20634. frontNude: {
  20635. height: math.unit(15, "feet"),
  20636. weight: math.unit(3280, "lb"),
  20637. name: "Front (Nude)",
  20638. image: {
  20639. source: "./media/characters/sapphy/front-nude.svg",
  20640. extra: 1951/1654,
  20641. bottom: 194/2145
  20642. },
  20643. form: "anthro"
  20644. },
  20645. backNude: {
  20646. height: math.unit(15, "feet"),
  20647. weight: math.unit(3280, "lb"),
  20648. name: "Back (Nude)",
  20649. image: {
  20650. source: "./media/characters/sapphy/back-nude.svg",
  20651. extra: 2058/1918,
  20652. bottom: 125/2183
  20653. },
  20654. form: "anthro"
  20655. },
  20656. full: {
  20657. height: math.unit(15, "feet"),
  20658. weight: math.unit(3280, "lb"),
  20659. name: "Full",
  20660. image: {
  20661. source: "./media/characters/sapphy/full.svg",
  20662. extra: 1396/1317,
  20663. bottom: 44/1440
  20664. },
  20665. form: "anthro"
  20666. },
  20667. dick: {
  20668. height: math.unit(3.8, "feet"),
  20669. name: "Dick",
  20670. image: {
  20671. source: "./media/characters/sapphy/dick.svg"
  20672. },
  20673. form: "anthro"
  20674. },
  20675. feral: {
  20676. height: math.unit(35, "feet"),
  20677. weight: math.unit(160, "tons"),
  20678. name: "Feral",
  20679. image: {
  20680. source: "./media/characters/sapphy/feral.svg",
  20681. extra: 1050/573,
  20682. bottom: 60/1110
  20683. },
  20684. form: "feral",
  20685. default: true
  20686. },
  20687. },
  20688. [
  20689. {
  20690. name: "Normal",
  20691. height: math.unit(15, "feet"),
  20692. form: "anthro"
  20693. },
  20694. {
  20695. name: "Casual Macro",
  20696. height: math.unit(120, "feet"),
  20697. form: "anthro"
  20698. },
  20699. {
  20700. name: "Macro",
  20701. height: math.unit(2150, "feet"),
  20702. default: true,
  20703. form: "anthro"
  20704. },
  20705. {
  20706. name: "Megamacro",
  20707. height: math.unit(8, "miles"),
  20708. form: "anthro"
  20709. },
  20710. {
  20711. name: "Galaxy Mom",
  20712. height: math.unit(6, "megalightyears"),
  20713. form: "anthro"
  20714. },
  20715. {
  20716. name: "Normal",
  20717. height: math.unit(35, "feet"),
  20718. form: "feral",
  20719. default: true
  20720. },
  20721. {
  20722. name: "Macro",
  20723. height: math.unit(300, "feet"),
  20724. form: "feral"
  20725. },
  20726. {
  20727. name: "Galaxy Mom",
  20728. height: math.unit(10, "megalightyears"),
  20729. form: "feral"
  20730. },
  20731. ],
  20732. {
  20733. "anthro": {
  20734. name: "Anthro",
  20735. default: true
  20736. },
  20737. "feral": {
  20738. name: "Feral"
  20739. }
  20740. }
  20741. ))
  20742. characterMakers.push(() => makeCharacter(
  20743. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20744. {
  20745. hyenaFront: {
  20746. height: math.unit(6, "feet"),
  20747. weight: math.unit(190, "lb"),
  20748. name: "Front",
  20749. image: {
  20750. source: "./media/characters/kiro/hyena-front.svg",
  20751. extra: 927/839,
  20752. bottom: 91/1018
  20753. },
  20754. form: "hyena",
  20755. default: true
  20756. },
  20757. front: {
  20758. height: math.unit(6, "feet"),
  20759. weight: math.unit(170, "lb"),
  20760. name: "Front",
  20761. image: {
  20762. source: "./media/characters/kiro/front.svg",
  20763. extra: 1064 / 1012,
  20764. bottom: 0.052
  20765. },
  20766. form: "folf",
  20767. default: true
  20768. },
  20769. },
  20770. [
  20771. {
  20772. name: "Micro",
  20773. height: math.unit(6, "inches"),
  20774. form: "folf"
  20775. },
  20776. {
  20777. name: "Normal",
  20778. height: math.unit(6, "feet"),
  20779. form: "folf",
  20780. default: true
  20781. },
  20782. {
  20783. name: "Macro",
  20784. height: math.unit(72, "feet"),
  20785. form: "folf"
  20786. },
  20787. {
  20788. name: "Micro",
  20789. height: math.unit(6, "inches"),
  20790. form: "hyena"
  20791. },
  20792. {
  20793. name: "Normal",
  20794. height: math.unit(6, "feet"),
  20795. form: "hyena",
  20796. default: true
  20797. },
  20798. {
  20799. name: "Macro",
  20800. height: math.unit(72, "feet"),
  20801. form: "hyena"
  20802. },
  20803. ],
  20804. {
  20805. "hyena": {
  20806. name: "Hyena",
  20807. default: true
  20808. },
  20809. "folf": {
  20810. name: "Folf",
  20811. },
  20812. }
  20813. ))
  20814. characterMakers.push(() => makeCharacter(
  20815. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20816. {
  20817. front: {
  20818. height: math.unit(5 + 9 / 12, "feet"),
  20819. weight: math.unit(175, "lb"),
  20820. name: "Front",
  20821. image: {
  20822. source: "./media/characters/irishfox/front.svg",
  20823. extra: 1912 / 1680,
  20824. bottom: 0.02
  20825. }
  20826. },
  20827. },
  20828. [
  20829. {
  20830. name: "Nano",
  20831. height: math.unit(1, "mm")
  20832. },
  20833. {
  20834. name: "Micro",
  20835. height: math.unit(2, "inches")
  20836. },
  20837. {
  20838. name: "Normal",
  20839. height: math.unit(5 + 9 / 12, "feet"),
  20840. default: true
  20841. },
  20842. {
  20843. name: "Macro",
  20844. height: math.unit(45, "feet")
  20845. },
  20846. ]
  20847. ))
  20848. characterMakers.push(() => makeCharacter(
  20849. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20850. {
  20851. front: {
  20852. height: math.unit(6 + 1 / 12, "feet"),
  20853. weight: math.unit(75, "lb"),
  20854. name: "Front",
  20855. image: {
  20856. source: "./media/characters/aronai-sieyes/front.svg",
  20857. extra: 1532/1450,
  20858. bottom: 42/1574
  20859. }
  20860. },
  20861. side: {
  20862. height: math.unit(6 + 1 / 12, "feet"),
  20863. weight: math.unit(75, "lb"),
  20864. name: "Side",
  20865. image: {
  20866. source: "./media/characters/aronai-sieyes/side.svg",
  20867. extra: 1422/1365,
  20868. bottom: 148/1570
  20869. }
  20870. },
  20871. back: {
  20872. height: math.unit(6 + 1 / 12, "feet"),
  20873. weight: math.unit(75, "lb"),
  20874. name: "Back",
  20875. image: {
  20876. source: "./media/characters/aronai-sieyes/back.svg",
  20877. extra: 1526/1464,
  20878. bottom: 51/1577
  20879. }
  20880. },
  20881. dressed: {
  20882. height: math.unit(6 + 1 / 12, "feet"),
  20883. weight: math.unit(75, "lb"),
  20884. name: "Dressed",
  20885. image: {
  20886. source: "./media/characters/aronai-sieyes/dressed.svg",
  20887. extra: 1559/1483,
  20888. bottom: 39/1598
  20889. }
  20890. },
  20891. slit: {
  20892. height: math.unit(1.3, "feet"),
  20893. name: "Slit",
  20894. image: {
  20895. source: "./media/characters/aronai-sieyes/slit.svg"
  20896. }
  20897. },
  20898. slitSpread: {
  20899. height: math.unit(0.9, "feet"),
  20900. name: "Slit (Spread)",
  20901. image: {
  20902. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20903. }
  20904. },
  20905. rump: {
  20906. height: math.unit(1.3, "feet"),
  20907. name: "Rump",
  20908. image: {
  20909. source: "./media/characters/aronai-sieyes/rump.svg"
  20910. }
  20911. },
  20912. maw: {
  20913. height: math.unit(1.25, "feet"),
  20914. name: "Maw",
  20915. image: {
  20916. source: "./media/characters/aronai-sieyes/maw.svg"
  20917. }
  20918. },
  20919. feral: {
  20920. height: math.unit(18, "feet"),
  20921. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20922. name: "Feral",
  20923. image: {
  20924. source: "./media/characters/aronai-sieyes/feral.svg",
  20925. extra: 1530 / 1240,
  20926. bottom: 0.035
  20927. }
  20928. },
  20929. },
  20930. [
  20931. {
  20932. name: "Micro",
  20933. height: math.unit(2, "inches")
  20934. },
  20935. {
  20936. name: "Normal",
  20937. height: math.unit(6 + 1 / 12, "feet"),
  20938. default: true
  20939. }
  20940. ]
  20941. ))
  20942. characterMakers.push(() => makeCharacter(
  20943. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20944. {
  20945. front: {
  20946. height: math.unit(12, "feet"),
  20947. weight: math.unit(410, "kg"),
  20948. name: "Front",
  20949. image: {
  20950. source: "./media/characters/xuna/front.svg",
  20951. extra: 2184 / 1980
  20952. }
  20953. },
  20954. side: {
  20955. height: math.unit(12, "feet"),
  20956. weight: math.unit(410, "kg"),
  20957. name: "Side",
  20958. image: {
  20959. source: "./media/characters/xuna/side.svg",
  20960. extra: 2184 / 1980
  20961. }
  20962. },
  20963. back: {
  20964. height: math.unit(12, "feet"),
  20965. weight: math.unit(410, "kg"),
  20966. name: "Back",
  20967. image: {
  20968. source: "./media/characters/xuna/back.svg",
  20969. extra: 2184 / 1980
  20970. }
  20971. },
  20972. },
  20973. [
  20974. {
  20975. name: "Nano glow",
  20976. height: math.unit(10, "nm")
  20977. },
  20978. {
  20979. name: "Micro floof",
  20980. height: math.unit(0.3, "m")
  20981. },
  20982. {
  20983. name: "Huggable softy boi",
  20984. height: math.unit(3.6576, "m"),
  20985. default: true
  20986. },
  20987. {
  20988. name: "Admirable floof",
  20989. height: math.unit(80, "meters")
  20990. },
  20991. {
  20992. name: "Gentle macro",
  20993. height: math.unit(300, "meters")
  20994. },
  20995. {
  20996. name: "Very careful floof",
  20997. height: math.unit(3200, "meters")
  20998. },
  20999. {
  21000. name: "The mega floof",
  21001. height: math.unit(36000, "meters")
  21002. },
  21003. {
  21004. name: "Giga-fur-Wicker",
  21005. height: math.unit(4800000, "meters")
  21006. },
  21007. {
  21008. name: "Licky world",
  21009. height: math.unit(20000000, "meters")
  21010. },
  21011. {
  21012. name: "Floofy cyan sun",
  21013. height: math.unit(1500000000, "meters")
  21014. },
  21015. {
  21016. name: "Milky Wicker",
  21017. height: math.unit(1000000000000000000000, "meters")
  21018. },
  21019. {
  21020. name: "The observing Wicker",
  21021. height: math.unit(999999999999999999999999999, "meters")
  21022. },
  21023. ]
  21024. ))
  21025. characterMakers.push(() => makeCharacter(
  21026. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21027. {
  21028. front: {
  21029. height: math.unit(5 + 9 / 12, "feet"),
  21030. weight: math.unit(150, "lb"),
  21031. name: "Front",
  21032. image: {
  21033. source: "./media/characters/arokha-sieyes/front.svg",
  21034. extra: 1425 / 1284,
  21035. bottom: 0.05
  21036. }
  21037. },
  21038. },
  21039. [
  21040. {
  21041. name: "Normal",
  21042. height: math.unit(5 + 9 / 12, "feet")
  21043. },
  21044. {
  21045. name: "Macro",
  21046. height: math.unit(30, "meters"),
  21047. default: true
  21048. },
  21049. ]
  21050. ))
  21051. characterMakers.push(() => makeCharacter(
  21052. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21053. {
  21054. front: {
  21055. height: math.unit(6, "feet"),
  21056. weight: math.unit(180, "lb"),
  21057. name: "Front",
  21058. image: {
  21059. source: "./media/characters/arokh-sieyes/front.svg",
  21060. extra: 1830 / 1769,
  21061. bottom: 0.01
  21062. }
  21063. },
  21064. },
  21065. [
  21066. {
  21067. name: "Normal",
  21068. height: math.unit(6, "feet")
  21069. },
  21070. {
  21071. name: "Macro",
  21072. height: math.unit(30, "meters"),
  21073. default: true
  21074. },
  21075. ]
  21076. ))
  21077. characterMakers.push(() => makeCharacter(
  21078. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21079. {
  21080. side: {
  21081. height: math.unit(13 + 1 / 12, "feet"),
  21082. weight: math.unit(8.5, "tonnes"),
  21083. preyCapacity: math.unit(36, "people"),
  21084. name: "Side",
  21085. image: {
  21086. source: "./media/characters/goldeneye/side.svg",
  21087. extra: 1139/741,
  21088. bottom: 98/1237
  21089. }
  21090. },
  21091. front: {
  21092. height: math.unit(5.1, "feet"),
  21093. weight: math.unit(8.5, "tonnes"),
  21094. preyCapacity: math.unit(36, "people"),
  21095. name: "Front",
  21096. image: {
  21097. source: "./media/characters/goldeneye/front.svg",
  21098. extra: 635/365,
  21099. bottom: 598/1233
  21100. }
  21101. },
  21102. maw: {
  21103. height: math.unit(6.6, "feet"),
  21104. name: "Maw",
  21105. image: {
  21106. source: "./media/characters/goldeneye/maw.svg"
  21107. }
  21108. },
  21109. headFront: {
  21110. height: math.unit(8, "feet"),
  21111. name: "Head (Front)",
  21112. image: {
  21113. source: "./media/characters/goldeneye/head-front.svg"
  21114. }
  21115. },
  21116. headSide: {
  21117. height: math.unit(6, "feet"),
  21118. name: "Head (Side)",
  21119. image: {
  21120. source: "./media/characters/goldeneye/head-side.svg"
  21121. }
  21122. },
  21123. headBack: {
  21124. height: math.unit(8, "feet"),
  21125. name: "Head (Back)",
  21126. image: {
  21127. source: "./media/characters/goldeneye/head-back.svg"
  21128. }
  21129. },
  21130. paw: {
  21131. height: math.unit(3.4, "feet"),
  21132. name: "Paw",
  21133. image: {
  21134. source: "./media/characters/goldeneye/paw.svg"
  21135. }
  21136. },
  21137. toering: {
  21138. height: math.unit(0.45, "feet"),
  21139. name: "Toering",
  21140. image: {
  21141. source: "./media/characters/goldeneye/toering.svg"
  21142. }
  21143. },
  21144. eyes: {
  21145. height: math.unit(0.5, "feet"),
  21146. name: "Eyes",
  21147. image: {
  21148. source: "./media/characters/goldeneye/eyes.svg"
  21149. }
  21150. },
  21151. },
  21152. [
  21153. {
  21154. name: "Normal",
  21155. height: math.unit(13 + 1 / 12, "feet"),
  21156. default: true
  21157. },
  21158. ]
  21159. ))
  21160. characterMakers.push(() => makeCharacter(
  21161. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21162. {
  21163. front: {
  21164. height: math.unit(6 + 1 / 12, "feet"),
  21165. weight: math.unit(210, "lb"),
  21166. name: "Front",
  21167. image: {
  21168. source: "./media/characters/leonardo-lycheborne/front.svg",
  21169. extra: 776/723,
  21170. bottom: 34/810
  21171. }
  21172. },
  21173. side: {
  21174. height: math.unit(6 + 1 / 12, "feet"),
  21175. weight: math.unit(210, "lb"),
  21176. name: "Side",
  21177. image: {
  21178. source: "./media/characters/leonardo-lycheborne/side.svg",
  21179. extra: 780/728,
  21180. bottom: 12/792
  21181. }
  21182. },
  21183. back: {
  21184. height: math.unit(6 + 1 / 12, "feet"),
  21185. weight: math.unit(210, "lb"),
  21186. name: "Back",
  21187. image: {
  21188. source: "./media/characters/leonardo-lycheborne/back.svg",
  21189. extra: 775/721,
  21190. bottom: 17/792
  21191. }
  21192. },
  21193. hand: {
  21194. height: math.unit(1.08, "feet"),
  21195. name: "Hand",
  21196. image: {
  21197. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21198. }
  21199. },
  21200. foot: {
  21201. height: math.unit(1.32, "feet"),
  21202. name: "Foot",
  21203. image: {
  21204. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21205. }
  21206. },
  21207. maw: {
  21208. height: math.unit(1, "feet"),
  21209. name: "Maw",
  21210. image: {
  21211. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21212. }
  21213. },
  21214. were: {
  21215. height: math.unit(20, "feet"),
  21216. weight: math.unit(7800, "lb"),
  21217. name: "Were",
  21218. image: {
  21219. source: "./media/characters/leonardo-lycheborne/were.svg",
  21220. extra: 1224/1165,
  21221. bottom: 72/1296
  21222. }
  21223. },
  21224. feral: {
  21225. height: math.unit(7.5, "feet"),
  21226. weight: math.unit(600, "lb"),
  21227. name: "Feral",
  21228. image: {
  21229. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21230. extra: 797/702,
  21231. bottom: 139/936
  21232. }
  21233. },
  21234. taur: {
  21235. height: math.unit(11, "feet"),
  21236. weight: math.unit(3300, "lb"),
  21237. name: "Taur",
  21238. image: {
  21239. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21240. extra: 1271/1197,
  21241. bottom: 47/1318
  21242. }
  21243. },
  21244. barghest: {
  21245. height: math.unit(11, "feet"),
  21246. weight: math.unit(1300, "lb"),
  21247. name: "Barghest",
  21248. image: {
  21249. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21250. extra: 1291/1204,
  21251. bottom: 37/1328
  21252. }
  21253. },
  21254. dick: {
  21255. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21256. name: "Dick",
  21257. image: {
  21258. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21259. }
  21260. },
  21261. dickWere: {
  21262. height: math.unit((20) / 3.8, "feet"),
  21263. name: "Dick (Were)",
  21264. image: {
  21265. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21266. }
  21267. },
  21268. },
  21269. [
  21270. {
  21271. name: "Normal",
  21272. height: math.unit(6 + 1 / 12, "feet"),
  21273. default: true
  21274. },
  21275. ]
  21276. ))
  21277. characterMakers.push(() => makeCharacter(
  21278. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21279. {
  21280. front: {
  21281. height: math.unit(10, "feet"),
  21282. weight: math.unit(350, "lb"),
  21283. name: "Front",
  21284. image: {
  21285. source: "./media/characters/jet/front.svg",
  21286. extra: 2050 / 1980,
  21287. bottom: 0.013
  21288. }
  21289. },
  21290. back: {
  21291. height: math.unit(10, "feet"),
  21292. weight: math.unit(350, "lb"),
  21293. name: "Back",
  21294. image: {
  21295. source: "./media/characters/jet/back.svg",
  21296. extra: 2050 / 1980,
  21297. bottom: 0.013
  21298. }
  21299. },
  21300. },
  21301. [
  21302. {
  21303. name: "Micro",
  21304. height: math.unit(6, "inches")
  21305. },
  21306. {
  21307. name: "Normal",
  21308. height: math.unit(10, "feet"),
  21309. default: true
  21310. },
  21311. {
  21312. name: "Macro",
  21313. height: math.unit(100, "feet")
  21314. },
  21315. ]
  21316. ))
  21317. characterMakers.push(() => makeCharacter(
  21318. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21319. {
  21320. front: {
  21321. height: math.unit(15, "feet"),
  21322. weight: math.unit(2800, "lb"),
  21323. name: "Front",
  21324. image: {
  21325. source: "./media/characters/tanarath/front.svg",
  21326. extra: 2392 / 2220,
  21327. bottom: 0.03
  21328. }
  21329. },
  21330. back: {
  21331. height: math.unit(15, "feet"),
  21332. weight: math.unit(2800, "lb"),
  21333. name: "Back",
  21334. image: {
  21335. source: "./media/characters/tanarath/back.svg",
  21336. extra: 2392 / 2220,
  21337. bottom: 0.03
  21338. }
  21339. },
  21340. },
  21341. [
  21342. {
  21343. name: "Normal",
  21344. height: math.unit(15, "feet"),
  21345. default: true
  21346. },
  21347. ]
  21348. ))
  21349. characterMakers.push(() => makeCharacter(
  21350. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21351. {
  21352. front: {
  21353. height: math.unit(7 + 1 / 12, "feet"),
  21354. weight: math.unit(175, "lb"),
  21355. name: "Front",
  21356. image: {
  21357. source: "./media/characters/patty-cattybatty/front.svg",
  21358. extra: 908 / 874,
  21359. bottom: 0.025
  21360. }
  21361. },
  21362. },
  21363. [
  21364. {
  21365. name: "Micro",
  21366. height: math.unit(1, "inch")
  21367. },
  21368. {
  21369. name: "Normal",
  21370. height: math.unit(7 + 1 / 12, "feet")
  21371. },
  21372. {
  21373. name: "Mini Macro",
  21374. height: math.unit(155, "feet")
  21375. },
  21376. {
  21377. name: "Macro",
  21378. height: math.unit(1077, "feet")
  21379. },
  21380. {
  21381. name: "Mega Macro",
  21382. height: math.unit(47650, "feet"),
  21383. default: true
  21384. },
  21385. {
  21386. name: "Giga Macro",
  21387. height: math.unit(440, "miles")
  21388. },
  21389. {
  21390. name: "Tera Macro",
  21391. height: math.unit(8700, "miles")
  21392. },
  21393. {
  21394. name: "Planetary Macro",
  21395. height: math.unit(32700, "miles")
  21396. },
  21397. {
  21398. name: "Solar Macro",
  21399. height: math.unit(550000, "miles")
  21400. },
  21401. {
  21402. name: "Celestial Macro",
  21403. height: math.unit(2.5, "AU")
  21404. },
  21405. ]
  21406. ))
  21407. characterMakers.push(() => makeCharacter(
  21408. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21409. {
  21410. front: {
  21411. height: math.unit(4 + 5 / 12, "feet"),
  21412. weight: math.unit(90, "lb"),
  21413. name: "Front",
  21414. image: {
  21415. source: "./media/characters/cappu/front.svg",
  21416. extra: 1247 / 1152,
  21417. bottom: 0.012
  21418. }
  21419. },
  21420. },
  21421. [
  21422. {
  21423. name: "Normal",
  21424. height: math.unit(4 + 5 / 12, "feet"),
  21425. default: true
  21426. },
  21427. ]
  21428. ))
  21429. characterMakers.push(() => makeCharacter(
  21430. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21431. {
  21432. frontDressed: {
  21433. height: math.unit(70, "cm"),
  21434. weight: math.unit(6, "kg"),
  21435. name: "Front (Dressed)",
  21436. image: {
  21437. source: "./media/characters/sebi/front-dressed.svg",
  21438. extra: 713.5 / 686.5,
  21439. bottom: 0.003
  21440. }
  21441. },
  21442. front: {
  21443. height: math.unit(70, "cm"),
  21444. weight: math.unit(5, "kg"),
  21445. name: "Front",
  21446. image: {
  21447. source: "./media/characters/sebi/front.svg",
  21448. extra: 713.5 / 686.5,
  21449. bottom: 0.003
  21450. }
  21451. }
  21452. },
  21453. [
  21454. {
  21455. name: "Normal",
  21456. height: math.unit(70, "cm"),
  21457. default: true
  21458. },
  21459. {
  21460. name: "Macro",
  21461. height: math.unit(8, "meters")
  21462. },
  21463. ]
  21464. ))
  21465. characterMakers.push(() => makeCharacter(
  21466. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21467. {
  21468. front: {
  21469. height: math.unit(6, "feet"),
  21470. weight: math.unit(150, "lb"),
  21471. name: "Front",
  21472. image: {
  21473. source: "./media/characters/typhek/front.svg",
  21474. extra: 1948 / 1929,
  21475. bottom: 0.025
  21476. }
  21477. },
  21478. side: {
  21479. height: math.unit(6, "feet"),
  21480. weight: math.unit(150, "lb"),
  21481. name: "Side",
  21482. image: {
  21483. source: "./media/characters/typhek/side.svg",
  21484. extra: 2034 / 2010,
  21485. bottom: 0.003
  21486. }
  21487. },
  21488. back: {
  21489. height: math.unit(6, "feet"),
  21490. weight: math.unit(150, "lb"),
  21491. name: "Back",
  21492. image: {
  21493. source: "./media/characters/typhek/back.svg",
  21494. extra: 2005 / 1978,
  21495. bottom: 0.004
  21496. }
  21497. },
  21498. palm: {
  21499. height: math.unit(1.2, "feet"),
  21500. name: "Palm",
  21501. image: {
  21502. source: "./media/characters/typhek/palm.svg"
  21503. }
  21504. },
  21505. fist: {
  21506. height: math.unit(1.1, "feet"),
  21507. name: "Fist",
  21508. image: {
  21509. source: "./media/characters/typhek/fist.svg"
  21510. }
  21511. },
  21512. foot: {
  21513. height: math.unit(1.57, "feet"),
  21514. name: "Foot",
  21515. image: {
  21516. source: "./media/characters/typhek/foot.svg"
  21517. }
  21518. },
  21519. sole: {
  21520. height: math.unit(2.05, "feet"),
  21521. name: "Sole",
  21522. image: {
  21523. source: "./media/characters/typhek/sole.svg"
  21524. }
  21525. },
  21526. },
  21527. [
  21528. {
  21529. name: "Macro",
  21530. height: math.unit(40, "stories"),
  21531. default: true
  21532. },
  21533. {
  21534. name: "Megamacro",
  21535. height: math.unit(1, "mile")
  21536. },
  21537. {
  21538. name: "Gigamacro",
  21539. height: math.unit(4000, "solarradii")
  21540. },
  21541. {
  21542. name: "Universal",
  21543. height: math.unit(1.1, "universes")
  21544. }
  21545. ]
  21546. ))
  21547. characterMakers.push(() => makeCharacter(
  21548. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21549. {
  21550. side: {
  21551. height: math.unit(5 + 7 / 12, "feet"),
  21552. weight: math.unit(150, "lb"),
  21553. name: "Side",
  21554. image: {
  21555. source: "./media/characters/kassy/side.svg",
  21556. extra: 1280 / 1225,
  21557. bottom: 0.002
  21558. }
  21559. },
  21560. front: {
  21561. height: math.unit(5 + 7 / 12, "feet"),
  21562. weight: math.unit(150, "lb"),
  21563. name: "Front",
  21564. image: {
  21565. source: "./media/characters/kassy/front.svg",
  21566. extra: 1280 / 1225,
  21567. bottom: 0.025
  21568. }
  21569. },
  21570. back: {
  21571. height: math.unit(5 + 7 / 12, "feet"),
  21572. weight: math.unit(150, "lb"),
  21573. name: "Back",
  21574. image: {
  21575. source: "./media/characters/kassy/back.svg",
  21576. extra: 1280 / 1225,
  21577. bottom: 0.002
  21578. }
  21579. },
  21580. foot: {
  21581. height: math.unit(1.266, "feet"),
  21582. name: "Foot",
  21583. image: {
  21584. source: "./media/characters/kassy/foot.svg"
  21585. }
  21586. },
  21587. },
  21588. [
  21589. {
  21590. name: "Normal",
  21591. height: math.unit(5 + 7 / 12, "feet")
  21592. },
  21593. {
  21594. name: "Macro",
  21595. height: math.unit(137, "feet"),
  21596. default: true
  21597. },
  21598. {
  21599. name: "Megamacro",
  21600. height: math.unit(1, "mile")
  21601. },
  21602. ]
  21603. ))
  21604. characterMakers.push(() => makeCharacter(
  21605. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21606. {
  21607. front: {
  21608. height: math.unit(6 + 1 / 12, "feet"),
  21609. weight: math.unit(200, "lb"),
  21610. name: "Front",
  21611. image: {
  21612. source: "./media/characters/neil/front.svg",
  21613. extra: 1326 / 1250,
  21614. bottom: 0.023
  21615. }
  21616. },
  21617. },
  21618. [
  21619. {
  21620. name: "Normal",
  21621. height: math.unit(6 + 1 / 12, "feet"),
  21622. default: true
  21623. },
  21624. {
  21625. name: "Macro",
  21626. height: math.unit(200, "feet")
  21627. },
  21628. ]
  21629. ))
  21630. characterMakers.push(() => makeCharacter(
  21631. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21632. {
  21633. front: {
  21634. height: math.unit(5 + 9 / 12, "feet"),
  21635. weight: math.unit(190, "lb"),
  21636. name: "Front",
  21637. image: {
  21638. source: "./media/characters/atticus/front.svg",
  21639. extra: 2934 / 2785,
  21640. bottom: 0.025
  21641. }
  21642. },
  21643. },
  21644. [
  21645. {
  21646. name: "Normal",
  21647. height: math.unit(5 + 9 / 12, "feet"),
  21648. default: true
  21649. },
  21650. {
  21651. name: "Macro",
  21652. height: math.unit(180, "feet")
  21653. },
  21654. ]
  21655. ))
  21656. characterMakers.push(() => makeCharacter(
  21657. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21658. {
  21659. side: {
  21660. height: math.unit(9, "feet"),
  21661. weight: math.unit(650, "lb"),
  21662. name: "Side",
  21663. image: {
  21664. source: "./media/characters/milo/side.svg",
  21665. extra: 2644 / 2310,
  21666. bottom: 0.032
  21667. }
  21668. },
  21669. },
  21670. [
  21671. {
  21672. name: "Normal",
  21673. height: math.unit(9, "feet"),
  21674. default: true
  21675. },
  21676. {
  21677. name: "Macro",
  21678. height: math.unit(300, "feet")
  21679. },
  21680. ]
  21681. ))
  21682. characterMakers.push(() => makeCharacter(
  21683. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21684. {
  21685. side: {
  21686. height: math.unit(8, "meters"),
  21687. weight: math.unit(90000, "kg"),
  21688. name: "Side",
  21689. image: {
  21690. source: "./media/characters/ijzer/side.svg",
  21691. extra: 2756 / 1600,
  21692. bottom: 0.01
  21693. }
  21694. },
  21695. },
  21696. [
  21697. {
  21698. name: "Small",
  21699. height: math.unit(3, "meters")
  21700. },
  21701. {
  21702. name: "Normal",
  21703. height: math.unit(8, "meters"),
  21704. default: true
  21705. },
  21706. {
  21707. name: "Normal+",
  21708. height: math.unit(10, "meters")
  21709. },
  21710. {
  21711. name: "Bigger",
  21712. height: math.unit(24, "meters")
  21713. },
  21714. {
  21715. name: "Huge",
  21716. height: math.unit(80, "meters")
  21717. },
  21718. ]
  21719. ))
  21720. characterMakers.push(() => makeCharacter(
  21721. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21722. {
  21723. front: {
  21724. height: math.unit(6 + 2 / 12, "feet"),
  21725. weight: math.unit(153, "lb"),
  21726. name: "Front",
  21727. image: {
  21728. source: "./media/characters/luca-cervicum/front.svg",
  21729. extra: 370 / 327,
  21730. bottom: 0.015
  21731. }
  21732. },
  21733. back: {
  21734. height: math.unit(6 + 2 / 12, "feet"),
  21735. weight: math.unit(153, "lb"),
  21736. name: "Back",
  21737. image: {
  21738. source: "./media/characters/luca-cervicum/back.svg",
  21739. extra: 367 / 333,
  21740. bottom: 0.005
  21741. }
  21742. },
  21743. frontGear: {
  21744. height: math.unit(6 + 2 / 12, "feet"),
  21745. weight: math.unit(173, "lb"),
  21746. name: "Front (Gear)",
  21747. image: {
  21748. source: "./media/characters/luca-cervicum/front-gear.svg",
  21749. extra: 377 / 333,
  21750. bottom: 0.006
  21751. }
  21752. },
  21753. },
  21754. [
  21755. {
  21756. name: "Normal",
  21757. height: math.unit(6 + 2 / 12, "feet"),
  21758. default: true
  21759. },
  21760. ]
  21761. ))
  21762. characterMakers.push(() => makeCharacter(
  21763. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21764. {
  21765. front: {
  21766. height: math.unit(6 + 1 / 12, "feet"),
  21767. weight: math.unit(304, "lb"),
  21768. name: "Front",
  21769. image: {
  21770. source: "./media/characters/oliver/front.svg",
  21771. extra: 157 / 143,
  21772. bottom: 0.08
  21773. }
  21774. },
  21775. },
  21776. [
  21777. {
  21778. name: "Normal",
  21779. height: math.unit(6 + 1 / 12, "feet"),
  21780. default: true
  21781. },
  21782. ]
  21783. ))
  21784. characterMakers.push(() => makeCharacter(
  21785. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21786. {
  21787. front: {
  21788. height: math.unit(5 + 7 / 12, "feet"),
  21789. weight: math.unit(140, "lb"),
  21790. name: "Front",
  21791. image: {
  21792. source: "./media/characters/shane/front.svg",
  21793. extra: 304 / 289,
  21794. bottom: 0.005
  21795. }
  21796. },
  21797. },
  21798. [
  21799. {
  21800. name: "Normal",
  21801. height: math.unit(5 + 7 / 12, "feet"),
  21802. default: true
  21803. },
  21804. ]
  21805. ))
  21806. characterMakers.push(() => makeCharacter(
  21807. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21808. {
  21809. front: {
  21810. height: math.unit(5 + 9 / 12, "feet"),
  21811. weight: math.unit(178, "lb"),
  21812. name: "Front",
  21813. image: {
  21814. source: "./media/characters/shin/front.svg",
  21815. extra: 159 / 151,
  21816. bottom: 0.015
  21817. }
  21818. },
  21819. },
  21820. [
  21821. {
  21822. name: "Normal",
  21823. height: math.unit(5 + 9 / 12, "feet"),
  21824. default: true
  21825. },
  21826. ]
  21827. ))
  21828. characterMakers.push(() => makeCharacter(
  21829. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21830. {
  21831. front: {
  21832. height: math.unit(5 + 10 / 12, "feet"),
  21833. weight: math.unit(168, "lb"),
  21834. name: "Front",
  21835. image: {
  21836. source: "./media/characters/xerxes/front.svg",
  21837. extra: 282 / 260,
  21838. bottom: 0.045
  21839. }
  21840. },
  21841. },
  21842. [
  21843. {
  21844. name: "Normal",
  21845. height: math.unit(5 + 10 / 12, "feet"),
  21846. default: true
  21847. },
  21848. ]
  21849. ))
  21850. characterMakers.push(() => makeCharacter(
  21851. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21852. {
  21853. front: {
  21854. height: math.unit(6 + 7 / 12, "feet"),
  21855. weight: math.unit(208, "lb"),
  21856. name: "Front",
  21857. image: {
  21858. source: "./media/characters/chaska/front.svg",
  21859. extra: 332 / 319,
  21860. bottom: 0.015
  21861. }
  21862. },
  21863. },
  21864. [
  21865. {
  21866. name: "Normal",
  21867. height: math.unit(6 + 7 / 12, "feet"),
  21868. default: true
  21869. },
  21870. ]
  21871. ))
  21872. characterMakers.push(() => makeCharacter(
  21873. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21874. {
  21875. front: {
  21876. height: math.unit(5 + 8 / 12, "feet"),
  21877. weight: math.unit(208, "lb"),
  21878. name: "Front",
  21879. image: {
  21880. source: "./media/characters/enuk/front.svg",
  21881. extra: 437 / 406,
  21882. bottom: 0.02
  21883. }
  21884. },
  21885. },
  21886. [
  21887. {
  21888. name: "Normal",
  21889. height: math.unit(5 + 8 / 12, "feet"),
  21890. default: true
  21891. },
  21892. ]
  21893. ))
  21894. characterMakers.push(() => makeCharacter(
  21895. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21896. {
  21897. front: {
  21898. height: math.unit(5 + 10 / 12, "feet"),
  21899. weight: math.unit(252, "lb"),
  21900. name: "Front",
  21901. image: {
  21902. source: "./media/characters/bruun/front.svg",
  21903. extra: 197 / 187,
  21904. bottom: 0.012
  21905. }
  21906. },
  21907. },
  21908. [
  21909. {
  21910. name: "Normal",
  21911. height: math.unit(5 + 10 / 12, "feet"),
  21912. default: true
  21913. },
  21914. ]
  21915. ))
  21916. characterMakers.push(() => makeCharacter(
  21917. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21918. {
  21919. front: {
  21920. height: math.unit(6 + 10 / 12, "feet"),
  21921. weight: math.unit(255, "lb"),
  21922. name: "Front",
  21923. image: {
  21924. source: "./media/characters/alexeev/front.svg",
  21925. extra: 213 / 200,
  21926. bottom: 0.05
  21927. }
  21928. },
  21929. },
  21930. [
  21931. {
  21932. name: "Normal",
  21933. height: math.unit(6 + 10 / 12, "feet"),
  21934. default: true
  21935. },
  21936. ]
  21937. ))
  21938. characterMakers.push(() => makeCharacter(
  21939. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21940. {
  21941. front: {
  21942. height: math.unit(2 + 8 / 12, "feet"),
  21943. weight: math.unit(22, "lb"),
  21944. name: "Front",
  21945. image: {
  21946. source: "./media/characters/evelyn/front.svg",
  21947. extra: 208 / 180
  21948. }
  21949. },
  21950. },
  21951. [
  21952. {
  21953. name: "Normal",
  21954. height: math.unit(2 + 8 / 12, "feet"),
  21955. default: true
  21956. },
  21957. ]
  21958. ))
  21959. characterMakers.push(() => makeCharacter(
  21960. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21961. {
  21962. front: {
  21963. height: math.unit(5 + 9 / 12, "feet"),
  21964. weight: math.unit(139, "lb"),
  21965. name: "Front",
  21966. image: {
  21967. source: "./media/characters/inca/front.svg",
  21968. extra: 294 / 291,
  21969. bottom: 0.03
  21970. }
  21971. },
  21972. },
  21973. [
  21974. {
  21975. name: "Normal",
  21976. height: math.unit(5 + 9 / 12, "feet"),
  21977. default: true
  21978. },
  21979. ]
  21980. ))
  21981. characterMakers.push(() => makeCharacter(
  21982. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21983. {
  21984. front: {
  21985. height: math.unit(6 + 3 / 12, "feet"),
  21986. weight: math.unit(185, "lb"),
  21987. name: "Front",
  21988. image: {
  21989. source: "./media/characters/mera/front.svg",
  21990. extra: 291 / 277,
  21991. bottom: 0.03
  21992. }
  21993. },
  21994. },
  21995. [
  21996. {
  21997. name: "Normal",
  21998. height: math.unit(6 + 3 / 12, "feet"),
  21999. default: true
  22000. },
  22001. ]
  22002. ))
  22003. characterMakers.push(() => makeCharacter(
  22004. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22005. {
  22006. front: {
  22007. height: math.unit(6 + 7 / 12, "feet"),
  22008. weight: math.unit(160, "lb"),
  22009. name: "Front",
  22010. image: {
  22011. source: "./media/characters/ceres/front.svg",
  22012. extra: 1023 / 950,
  22013. bottom: 0.027
  22014. }
  22015. },
  22016. back: {
  22017. height: math.unit(6 + 7 / 12, "feet"),
  22018. weight: math.unit(160, "lb"),
  22019. name: "Back",
  22020. image: {
  22021. source: "./media/characters/ceres/back.svg",
  22022. extra: 1023 / 950
  22023. }
  22024. },
  22025. },
  22026. [
  22027. {
  22028. name: "Normal",
  22029. height: math.unit(6 + 7 / 12, "feet"),
  22030. default: true
  22031. },
  22032. ]
  22033. ))
  22034. characterMakers.push(() => makeCharacter(
  22035. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22036. {
  22037. front: {
  22038. height: math.unit(5 + 10 / 12, "feet"),
  22039. weight: math.unit(150, "lb"),
  22040. name: "Front",
  22041. image: {
  22042. source: "./media/characters/kris/front.svg",
  22043. extra: 885 / 803,
  22044. bottom: 0.03
  22045. }
  22046. },
  22047. },
  22048. [
  22049. {
  22050. name: "Normal",
  22051. height: math.unit(5 + 10 / 12, "feet"),
  22052. default: true
  22053. },
  22054. ]
  22055. ))
  22056. characterMakers.push(() => makeCharacter(
  22057. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22058. {
  22059. dragon_front: {
  22060. height: math.unit(5, "feet"),
  22061. name: "Front",
  22062. image: {
  22063. source: "./media/characters/taluthus/dragon-front.svg",
  22064. extra: 1203/1098,
  22065. bottom: 46/1249
  22066. },
  22067. form: "dragon",
  22068. default: true
  22069. },
  22070. dragon_maw: {
  22071. height: math.unit(2.35, "feet"),
  22072. name: "Maw",
  22073. image: {
  22074. source: "./media/characters/taluthus/dragon-maw.svg"
  22075. },
  22076. form: "dragon",
  22077. },
  22078. kitsune_front: {
  22079. height: math.unit(7, "feet"),
  22080. name: "Front",
  22081. image: {
  22082. source: "./media/characters/taluthus/kitsune-front.svg",
  22083. extra: 900/841,
  22084. bottom: 65/965
  22085. },
  22086. form: "kitsune",
  22087. default: true
  22088. },
  22089. },
  22090. [
  22091. {
  22092. name: "Normal",
  22093. height: math.unit(5, "feet"),
  22094. form: "dragon",
  22095. default: true,
  22096. },
  22097. {
  22098. name: "Normal",
  22099. height: math.unit(7, "feet"),
  22100. form: "kitsune",
  22101. default: true
  22102. },
  22103. {
  22104. name: "Macro",
  22105. height: math.unit(300, "feet"),
  22106. allForms: true
  22107. },
  22108. ],
  22109. {
  22110. "dragon": {
  22111. name: "Dragon",
  22112. default: true
  22113. },
  22114. "kitsune": {
  22115. name: "Kitsune",
  22116. },
  22117. }
  22118. ))
  22119. characterMakers.push(() => makeCharacter(
  22120. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22121. {
  22122. front: {
  22123. height: math.unit(5 + 9 / 12, "feet"),
  22124. weight: math.unit(145, "lb"),
  22125. name: "Front",
  22126. image: {
  22127. source: "./media/characters/dawn/front.svg",
  22128. extra: 2094 / 2016,
  22129. bottom: 0.025
  22130. }
  22131. },
  22132. back: {
  22133. height: math.unit(5 + 9 / 12, "feet"),
  22134. weight: math.unit(160, "lb"),
  22135. name: "Back",
  22136. image: {
  22137. source: "./media/characters/dawn/back.svg",
  22138. extra: 2112 / 2080,
  22139. bottom: 0.005
  22140. }
  22141. },
  22142. },
  22143. [
  22144. {
  22145. name: "Normal",
  22146. height: math.unit(6 + 7 / 12, "feet"),
  22147. default: true
  22148. },
  22149. ]
  22150. ))
  22151. characterMakers.push(() => makeCharacter(
  22152. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22153. {
  22154. anthro: {
  22155. height: math.unit(8 + 3 / 12, "feet"),
  22156. weight: math.unit(450, "lb"),
  22157. name: "Anthro",
  22158. image: {
  22159. source: "./media/characters/arador/anthro.svg",
  22160. extra: 1835 / 1718,
  22161. bottom: 0.025
  22162. }
  22163. },
  22164. feral: {
  22165. height: math.unit(4, "feet"),
  22166. weight: math.unit(200, "lb"),
  22167. name: "Feral",
  22168. image: {
  22169. source: "./media/characters/arador/feral.svg",
  22170. extra: 1683 / 1514,
  22171. bottom: 0.07
  22172. }
  22173. },
  22174. },
  22175. [
  22176. {
  22177. name: "Normal",
  22178. height: math.unit(8 + 3 / 12, "feet")
  22179. },
  22180. {
  22181. name: "Macro",
  22182. height: math.unit(82.5, "feet"),
  22183. default: true
  22184. },
  22185. ]
  22186. ))
  22187. characterMakers.push(() => makeCharacter(
  22188. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22189. {
  22190. front: {
  22191. height: math.unit(5 + 10 / 12, "feet"),
  22192. weight: math.unit(125, "lb"),
  22193. name: "Front",
  22194. image: {
  22195. source: "./media/characters/dharsi/front.svg",
  22196. extra: 716 / 630,
  22197. bottom: 0.035
  22198. }
  22199. },
  22200. },
  22201. [
  22202. {
  22203. name: "Nano",
  22204. height: math.unit(100, "nm")
  22205. },
  22206. {
  22207. name: "Micro",
  22208. height: math.unit(2, "inches")
  22209. },
  22210. {
  22211. name: "Normal",
  22212. height: math.unit(5 + 10 / 12, "feet"),
  22213. default: true
  22214. },
  22215. {
  22216. name: "Macro",
  22217. height: math.unit(1000, "feet")
  22218. },
  22219. {
  22220. name: "Megamacro",
  22221. height: math.unit(10, "miles")
  22222. },
  22223. {
  22224. name: "Gigamacro",
  22225. height: math.unit(3000, "miles")
  22226. },
  22227. {
  22228. name: "Teramacro",
  22229. height: math.unit(500000, "miles")
  22230. },
  22231. {
  22232. name: "Teramacro+",
  22233. height: math.unit(30, "galaxies")
  22234. },
  22235. ]
  22236. ))
  22237. characterMakers.push(() => makeCharacter(
  22238. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22239. {
  22240. front: {
  22241. height: math.unit(6, "feet"),
  22242. weight: math.unit(150, "lb"),
  22243. name: "Front",
  22244. image: {
  22245. source: "./media/characters/deathy/front.svg",
  22246. extra: 1552 / 1463,
  22247. bottom: 0.025
  22248. }
  22249. },
  22250. side: {
  22251. height: math.unit(6, "feet"),
  22252. weight: math.unit(150, "lb"),
  22253. name: "Side",
  22254. image: {
  22255. source: "./media/characters/deathy/side.svg",
  22256. extra: 1604 / 1455,
  22257. bottom: 0.025
  22258. }
  22259. },
  22260. back: {
  22261. height: math.unit(6, "feet"),
  22262. weight: math.unit(150, "lb"),
  22263. name: "Back",
  22264. image: {
  22265. source: "./media/characters/deathy/back.svg",
  22266. extra: 1580 / 1463,
  22267. bottom: 0.005
  22268. }
  22269. },
  22270. },
  22271. [
  22272. {
  22273. name: "Micro",
  22274. height: math.unit(5, "millimeters")
  22275. },
  22276. {
  22277. name: "Normal",
  22278. height: math.unit(6 + 5 / 12, "feet"),
  22279. default: true
  22280. },
  22281. ]
  22282. ))
  22283. characterMakers.push(() => makeCharacter(
  22284. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22285. {
  22286. front: {
  22287. height: math.unit(16, "feet"),
  22288. weight: math.unit(4000, "lb"),
  22289. name: "Front",
  22290. image: {
  22291. source: "./media/characters/juniper/front.svg",
  22292. bottom: 0.04
  22293. }
  22294. },
  22295. },
  22296. [
  22297. {
  22298. name: "Normal",
  22299. height: math.unit(16, "feet"),
  22300. default: true
  22301. },
  22302. ]
  22303. ))
  22304. characterMakers.push(() => makeCharacter(
  22305. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22306. {
  22307. front: {
  22308. height: math.unit(6, "feet"),
  22309. weight: math.unit(150, "lb"),
  22310. name: "Front",
  22311. image: {
  22312. source: "./media/characters/hipster/front.svg",
  22313. extra: 1312 / 1209,
  22314. bottom: 0.025
  22315. }
  22316. },
  22317. back: {
  22318. height: math.unit(6, "feet"),
  22319. weight: math.unit(150, "lb"),
  22320. name: "Back",
  22321. image: {
  22322. source: "./media/characters/hipster/back.svg",
  22323. extra: 1281 / 1196,
  22324. bottom: 0.01
  22325. }
  22326. },
  22327. },
  22328. [
  22329. {
  22330. name: "Micro",
  22331. height: math.unit(1, "mm")
  22332. },
  22333. {
  22334. name: "Normal",
  22335. height: math.unit(4, "inches"),
  22336. default: true
  22337. },
  22338. {
  22339. name: "Macro",
  22340. height: math.unit(500, "feet")
  22341. },
  22342. {
  22343. name: "Megamacro",
  22344. height: math.unit(1000, "miles")
  22345. },
  22346. ]
  22347. ))
  22348. characterMakers.push(() => makeCharacter(
  22349. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22350. {
  22351. front: {
  22352. height: math.unit(6, "feet"),
  22353. weight: math.unit(150, "lb"),
  22354. name: "Front",
  22355. image: {
  22356. source: "./media/characters/tendirmuldr/front.svg",
  22357. extra: 1878 / 1772,
  22358. bottom: 0.015
  22359. }
  22360. },
  22361. },
  22362. [
  22363. {
  22364. name: "Megamacro",
  22365. height: math.unit(1500, "miles"),
  22366. default: true
  22367. },
  22368. ]
  22369. ))
  22370. characterMakers.push(() => makeCharacter(
  22371. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22372. {
  22373. front: {
  22374. height: math.unit(14, "feet"),
  22375. weight: math.unit(12000, "lb"),
  22376. name: "Front",
  22377. image: {
  22378. source: "./media/characters/mort/front.svg",
  22379. extra: 365 / 318,
  22380. bottom: 0.01
  22381. }
  22382. },
  22383. side: {
  22384. height: math.unit(14, "feet"),
  22385. weight: math.unit(12000, "lb"),
  22386. name: "Side",
  22387. image: {
  22388. source: "./media/characters/mort/side.svg",
  22389. extra: 365 / 318,
  22390. bottom: 0.052
  22391. },
  22392. default: true
  22393. },
  22394. back: {
  22395. height: math.unit(14, "feet"),
  22396. weight: math.unit(12000, "lb"),
  22397. name: "Back",
  22398. image: {
  22399. source: "./media/characters/mort/back.svg",
  22400. extra: 371 / 332,
  22401. bottom: 0.18
  22402. }
  22403. },
  22404. },
  22405. [
  22406. {
  22407. name: "Normal",
  22408. height: math.unit(14, "feet"),
  22409. default: true
  22410. },
  22411. ]
  22412. ))
  22413. characterMakers.push(() => makeCharacter(
  22414. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22415. {
  22416. front: {
  22417. height: math.unit(8, "feet"),
  22418. weight: math.unit(1, "ton"),
  22419. name: "Front",
  22420. image: {
  22421. source: "./media/characters/lycoa/front.svg",
  22422. extra: 1836/1728,
  22423. bottom: 81/1917
  22424. }
  22425. },
  22426. back: {
  22427. height: math.unit(8, "feet"),
  22428. weight: math.unit(1, "ton"),
  22429. name: "Back",
  22430. image: {
  22431. source: "./media/characters/lycoa/back.svg",
  22432. extra: 1785/1720,
  22433. bottom: 91/1876
  22434. }
  22435. },
  22436. head: {
  22437. height: math.unit(1.6243, "feet"),
  22438. name: "Head",
  22439. image: {
  22440. source: "./media/characters/lycoa/head.svg",
  22441. extra: 1011/782,
  22442. bottom: 0/1011
  22443. }
  22444. },
  22445. tailmaw: {
  22446. height: math.unit(1.9, "feet"),
  22447. name: "Tailmaw",
  22448. image: {
  22449. source: "./media/characters/lycoa/tailmaw.svg"
  22450. }
  22451. },
  22452. tentacles: {
  22453. height: math.unit(2.1, "feet"),
  22454. name: "Tentacles",
  22455. image: {
  22456. source: "./media/characters/lycoa/tentacles.svg"
  22457. }
  22458. },
  22459. dick: {
  22460. height: math.unit(1.73, "feet"),
  22461. name: "Dick",
  22462. image: {
  22463. source: "./media/characters/lycoa/dick.svg"
  22464. }
  22465. },
  22466. },
  22467. [
  22468. {
  22469. name: "Normal",
  22470. height: math.unit(8, "feet"),
  22471. default: true
  22472. },
  22473. {
  22474. name: "Macro",
  22475. height: math.unit(30, "feet")
  22476. },
  22477. ]
  22478. ))
  22479. characterMakers.push(() => makeCharacter(
  22480. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22481. {
  22482. front: {
  22483. height: math.unit(4 + 2 / 12, "feet"),
  22484. weight: math.unit(70, "lb"),
  22485. name: "Front",
  22486. image: {
  22487. source: "./media/characters/naldara/front.svg",
  22488. extra: 1664/1387,
  22489. bottom: 81/1745
  22490. },
  22491. form: "anthro",
  22492. default: true
  22493. },
  22494. naga: {
  22495. height: math.unit(20, "feet"),
  22496. weight: math.unit(15000, "kg"),
  22497. name: "Front",
  22498. image: {
  22499. source: "./media/characters/naldara/naga.svg",
  22500. extra: 1590/1396,
  22501. bottom: 285/1875
  22502. },
  22503. form: "naga",
  22504. default: true
  22505. },
  22506. },
  22507. [
  22508. {
  22509. name: "Normal",
  22510. height: math.unit(4 + 2 / 12, "feet"),
  22511. form: "anthro",
  22512. default: true
  22513. },
  22514. {
  22515. name: "Normal",
  22516. height: math.unit(20, "feet"),
  22517. form: "naga",
  22518. default: true
  22519. },
  22520. ],
  22521. {
  22522. "anthro": {
  22523. name: "Anthro",
  22524. default: true
  22525. },
  22526. "naga": {
  22527. name: "Naga"
  22528. }
  22529. }
  22530. ))
  22531. characterMakers.push(() => makeCharacter(
  22532. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22533. {
  22534. front: {
  22535. height: math.unit(13 + 7 / 12, "feet"),
  22536. weight: math.unit(1500, "lb"),
  22537. name: "Front",
  22538. image: {
  22539. source: "./media/characters/briar/front.svg",
  22540. extra: 1223/1157,
  22541. bottom: 123/1346
  22542. }
  22543. },
  22544. },
  22545. [
  22546. {
  22547. name: "Normal",
  22548. height: math.unit(13 + 7 / 12, "feet"),
  22549. default: true
  22550. },
  22551. ]
  22552. ))
  22553. characterMakers.push(() => makeCharacter(
  22554. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22555. {
  22556. side: {
  22557. height: math.unit(16, "feet"),
  22558. weight: math.unit(500, "lb"),
  22559. name: "Side",
  22560. image: {
  22561. source: "./media/characters/vanguard/side.svg",
  22562. extra: 1022/914,
  22563. bottom: 30/1052
  22564. }
  22565. },
  22566. sideAlt: {
  22567. height: math.unit(10, "feet"),
  22568. weight: math.unit(500, "lb"),
  22569. name: "Side (Alt)",
  22570. image: {
  22571. source: "./media/characters/vanguard/side-alt.svg",
  22572. extra: 502 / 425,
  22573. bottom: 0.087
  22574. }
  22575. },
  22576. },
  22577. [
  22578. {
  22579. name: "Normal",
  22580. height: math.unit(17.71, "feet"),
  22581. default: true
  22582. },
  22583. ]
  22584. ))
  22585. characterMakers.push(() => makeCharacter(
  22586. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22587. {
  22588. front: {
  22589. height: math.unit(7.5, "feet"),
  22590. weight: math.unit(2, "lb"),
  22591. name: "Front",
  22592. image: {
  22593. source: "./media/characters/artemis/work-safe-front.svg",
  22594. extra: 1192 / 1075,
  22595. bottom: 0.07
  22596. },
  22597. form: "work-safe",
  22598. default: true
  22599. },
  22600. frontNsfw: {
  22601. height: math.unit(7.5, "feet"),
  22602. weight: math.unit(2, "lb"),
  22603. name: "Front",
  22604. image: {
  22605. source: "./media/characters/artemis/calibrating-front.svg",
  22606. extra: 1192 / 1075,
  22607. bottom: 0.07
  22608. },
  22609. form: "calibrating",
  22610. default: true
  22611. },
  22612. frontNsfwer: {
  22613. height: math.unit(7.5, "feet"),
  22614. weight: math.unit(2, "lb"),
  22615. name: "Front",
  22616. image: {
  22617. source: "./media/characters/artemis/oversize-load-front.svg",
  22618. extra: 1192 / 1075,
  22619. bottom: 0.07
  22620. },
  22621. form: "oversize-load",
  22622. default: true
  22623. },
  22624. side: {
  22625. height: math.unit(7.5, "feet"),
  22626. weight: math.unit(2, "lb"),
  22627. name: "Side",
  22628. image: {
  22629. source: "./media/characters/artemis/work-safe-side.svg",
  22630. extra: 1192 / 1075,
  22631. bottom: 0.07
  22632. },
  22633. form: "work-safe"
  22634. },
  22635. sideNsfw: {
  22636. height: math.unit(7.5, "feet"),
  22637. weight: math.unit(2, "lb"),
  22638. name: "Side",
  22639. image: {
  22640. source: "./media/characters/artemis/calibrating-side.svg",
  22641. extra: 1192 / 1075,
  22642. bottom: 0.07
  22643. },
  22644. form: "calibrating"
  22645. },
  22646. sideNsfwer: {
  22647. height: math.unit(7.5, "feet"),
  22648. weight: math.unit(2, "lb"),
  22649. name: "Side",
  22650. image: {
  22651. source: "./media/characters/artemis/oversize-load-side.svg",
  22652. extra: 1192 / 1075,
  22653. bottom: 0.07
  22654. },
  22655. form: "oversize-load"
  22656. },
  22657. maw: {
  22658. height: math.unit(1.1, "feet"),
  22659. name: "Maw",
  22660. image: {
  22661. source: "./media/characters/artemis/maw.svg"
  22662. },
  22663. form: "work-safe"
  22664. },
  22665. stomach: {
  22666. height: math.unit(0.95, "feet"),
  22667. name: "Stomach",
  22668. image: {
  22669. source: "./media/characters/artemis/stomach.svg"
  22670. },
  22671. form: "work-safe"
  22672. },
  22673. dickCanine: {
  22674. height: math.unit(1, "feet"),
  22675. name: "Dick (Canine)",
  22676. image: {
  22677. source: "./media/characters/artemis/dick-canine.svg"
  22678. },
  22679. form: "calibrating"
  22680. },
  22681. dickEquine: {
  22682. height: math.unit(0.85, "feet"),
  22683. name: "Dick (Equine)",
  22684. image: {
  22685. source: "./media/characters/artemis/dick-equine.svg"
  22686. },
  22687. form: "calibrating"
  22688. },
  22689. dickExotic: {
  22690. height: math.unit(0.85, "feet"),
  22691. name: "Dick (Exotic)",
  22692. image: {
  22693. source: "./media/characters/artemis/dick-exotic.svg"
  22694. },
  22695. form: "calibrating"
  22696. },
  22697. dickCanineBigger: {
  22698. height: math.unit(1 * 1.33, "feet"),
  22699. name: "Dick (Canine)",
  22700. image: {
  22701. source: "./media/characters/artemis/dick-canine.svg"
  22702. },
  22703. form: "oversize-load"
  22704. },
  22705. dickEquineBigger: {
  22706. height: math.unit(0.85 * 1.33, "feet"),
  22707. name: "Dick (Equine)",
  22708. image: {
  22709. source: "./media/characters/artemis/dick-equine.svg"
  22710. },
  22711. form: "oversize-load"
  22712. },
  22713. dickExoticBigger: {
  22714. height: math.unit(0.85 * 1.33, "feet"),
  22715. name: "Dick (Exotic)",
  22716. image: {
  22717. source: "./media/characters/artemis/dick-exotic.svg"
  22718. },
  22719. form: "oversize-load"
  22720. },
  22721. },
  22722. [
  22723. {
  22724. name: "Normal",
  22725. height: math.unit(7.5, "feet"),
  22726. form: "work-safe",
  22727. default: true
  22728. },
  22729. {
  22730. name: "Normal",
  22731. height: math.unit(7.5, "feet"),
  22732. form: "calibrating",
  22733. default: true
  22734. },
  22735. {
  22736. name: "Normal",
  22737. height: math.unit(7.5, "feet"),
  22738. form: "oversize-load",
  22739. default: true
  22740. },
  22741. {
  22742. name: "Enlarged",
  22743. height: math.unit(12, "feet"),
  22744. form: "work-safe",
  22745. },
  22746. {
  22747. name: "Enlarged",
  22748. height: math.unit(12, "feet"),
  22749. form: "calibrating",
  22750. },
  22751. {
  22752. name: "Enlarged",
  22753. height: math.unit(12, "feet"),
  22754. form: "oversize-load",
  22755. },
  22756. ],
  22757. {
  22758. "work-safe": {
  22759. name: "Work-Safe",
  22760. default: true
  22761. },
  22762. "calibrating": {
  22763. name: "Calibrating"
  22764. },
  22765. "oversize-load": {
  22766. name: "Oversize Load"
  22767. }
  22768. }
  22769. ))
  22770. characterMakers.push(() => makeCharacter(
  22771. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22772. {
  22773. front: {
  22774. height: math.unit(5 + 3 / 12, "feet"),
  22775. weight: math.unit(160, "lb"),
  22776. name: "Front",
  22777. image: {
  22778. source: "./media/characters/kira/front.svg",
  22779. extra: 906 / 786,
  22780. bottom: 0.01
  22781. }
  22782. },
  22783. back: {
  22784. height: math.unit(5 + 3 / 12, "feet"),
  22785. weight: math.unit(160, "lb"),
  22786. name: "Back",
  22787. image: {
  22788. source: "./media/characters/kira/back.svg",
  22789. extra: 882 / 757,
  22790. bottom: 0.005
  22791. }
  22792. },
  22793. frontDressed: {
  22794. height: math.unit(5 + 3 / 12, "feet"),
  22795. weight: math.unit(160, "lb"),
  22796. name: "Front (Dressed)",
  22797. image: {
  22798. source: "./media/characters/kira/front-dressed.svg",
  22799. extra: 906 / 786,
  22800. bottom: 0.01
  22801. }
  22802. },
  22803. beans: {
  22804. height: math.unit(0.92, "feet"),
  22805. name: "Beans",
  22806. image: {
  22807. source: "./media/characters/kira/beans.svg"
  22808. }
  22809. },
  22810. },
  22811. [
  22812. {
  22813. name: "Normal",
  22814. height: math.unit(5 + 3 / 12, "feet"),
  22815. default: true
  22816. },
  22817. ]
  22818. ))
  22819. characterMakers.push(() => makeCharacter(
  22820. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22821. {
  22822. front: {
  22823. height: math.unit(5 + 4 / 12, "feet"),
  22824. weight: math.unit(145, "lb"),
  22825. name: "Front",
  22826. image: {
  22827. source: "./media/characters/scramble/front.svg",
  22828. extra: 763 / 727,
  22829. bottom: 0.05
  22830. }
  22831. },
  22832. back: {
  22833. height: math.unit(5 + 4 / 12, "feet"),
  22834. weight: math.unit(145, "lb"),
  22835. name: "Back",
  22836. image: {
  22837. source: "./media/characters/scramble/back.svg",
  22838. extra: 826 / 737,
  22839. bottom: 0.002
  22840. }
  22841. },
  22842. },
  22843. [
  22844. {
  22845. name: "Normal",
  22846. height: math.unit(5 + 4 / 12, "feet"),
  22847. default: true
  22848. },
  22849. ]
  22850. ))
  22851. characterMakers.push(() => makeCharacter(
  22852. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22853. {
  22854. side: {
  22855. height: math.unit(6 + 2 / 12, "feet"),
  22856. weight: math.unit(190, "lb"),
  22857. name: "Side",
  22858. image: {
  22859. source: "./media/characters/biscuit/side.svg",
  22860. extra: 858 / 791,
  22861. bottom: 0.044
  22862. }
  22863. },
  22864. },
  22865. [
  22866. {
  22867. name: "Normal",
  22868. height: math.unit(6 + 2 / 12, "feet"),
  22869. default: true
  22870. },
  22871. ]
  22872. ))
  22873. characterMakers.push(() => makeCharacter(
  22874. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22875. {
  22876. front: {
  22877. height: math.unit(5 + 2 / 12, "feet"),
  22878. weight: math.unit(120, "lb"),
  22879. name: "Front",
  22880. image: {
  22881. source: "./media/characters/poffin/front.svg",
  22882. extra: 786 / 680,
  22883. bottom: 0.005
  22884. }
  22885. },
  22886. },
  22887. [
  22888. {
  22889. name: "Normal",
  22890. height: math.unit(5 + 2 / 12, "feet"),
  22891. default: true
  22892. },
  22893. ]
  22894. ))
  22895. characterMakers.push(() => makeCharacter(
  22896. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22897. {
  22898. front: {
  22899. height: math.unit(6 + 3 / 12, "feet"),
  22900. weight: math.unit(519, "lb"),
  22901. name: "Front",
  22902. image: {
  22903. source: "./media/characters/dhari/front.svg",
  22904. extra: 1048 / 946,
  22905. bottom: 0.015
  22906. }
  22907. },
  22908. back: {
  22909. height: math.unit(6 + 3 / 12, "feet"),
  22910. weight: math.unit(519, "lb"),
  22911. name: "Back",
  22912. image: {
  22913. source: "./media/characters/dhari/back.svg",
  22914. extra: 1048 / 931,
  22915. bottom: 0.005
  22916. }
  22917. },
  22918. frontDressed: {
  22919. height: math.unit(6 + 3 / 12, "feet"),
  22920. weight: math.unit(519, "lb"),
  22921. name: "Front (Dressed)",
  22922. image: {
  22923. source: "./media/characters/dhari/front-dressed.svg",
  22924. extra: 1713 / 1546,
  22925. bottom: 0.02
  22926. }
  22927. },
  22928. backDressed: {
  22929. height: math.unit(6 + 3 / 12, "feet"),
  22930. weight: math.unit(519, "lb"),
  22931. name: "Back (Dressed)",
  22932. image: {
  22933. source: "./media/characters/dhari/back-dressed.svg",
  22934. extra: 1699 / 1537,
  22935. bottom: 0.01
  22936. }
  22937. },
  22938. maw: {
  22939. height: math.unit(0.95, "feet"),
  22940. name: "Maw",
  22941. image: {
  22942. source: "./media/characters/dhari/maw.svg"
  22943. }
  22944. },
  22945. wereFront: {
  22946. height: math.unit(12 + 8 / 12, "feet"),
  22947. weight: math.unit(4000, "lb"),
  22948. name: "Front (Were)",
  22949. image: {
  22950. source: "./media/characters/dhari/were-front.svg",
  22951. extra: 1065 / 969,
  22952. bottom: 0.015
  22953. }
  22954. },
  22955. wereBack: {
  22956. height: math.unit(12 + 8 / 12, "feet"),
  22957. weight: math.unit(4000, "lb"),
  22958. name: "Back (Were)",
  22959. image: {
  22960. source: "./media/characters/dhari/were-back.svg",
  22961. extra: 1065 / 969,
  22962. bottom: 0.012
  22963. }
  22964. },
  22965. wereMaw: {
  22966. height: math.unit(0.625, "meters"),
  22967. name: "Maw (Were)",
  22968. image: {
  22969. source: "./media/characters/dhari/were-maw.svg"
  22970. }
  22971. },
  22972. },
  22973. [
  22974. {
  22975. name: "Normal",
  22976. height: math.unit(6 + 3 / 12, "feet"),
  22977. default: true
  22978. },
  22979. ]
  22980. ))
  22981. characterMakers.push(() => makeCharacter(
  22982. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22983. {
  22984. anthro: {
  22985. height: math.unit(5 + 7 / 12, "feet"),
  22986. weight: math.unit(175, "lb"),
  22987. name: "Anthro",
  22988. image: {
  22989. source: "./media/characters/rena-dyne/anthro.svg",
  22990. extra: 1849 / 1785,
  22991. bottom: 0.005
  22992. }
  22993. },
  22994. taur: {
  22995. height: math.unit(15 + 6 / 12, "feet"),
  22996. weight: math.unit(8000, "lb"),
  22997. name: "Taur",
  22998. image: {
  22999. source: "./media/characters/rena-dyne/taur.svg",
  23000. extra: 2315 / 2234,
  23001. bottom: 0.033
  23002. }
  23003. },
  23004. },
  23005. [
  23006. {
  23007. name: "Normal",
  23008. height: math.unit(5 + 7 / 12, "feet"),
  23009. default: true
  23010. },
  23011. ]
  23012. ))
  23013. characterMakers.push(() => makeCharacter(
  23014. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23015. {
  23016. front: {
  23017. height: math.unit(8, "feet"),
  23018. weight: math.unit(600, "lb"),
  23019. name: "Front",
  23020. image: {
  23021. source: "./media/characters/weremeep/front.svg",
  23022. extra: 970/849,
  23023. bottom: 7/977
  23024. }
  23025. },
  23026. },
  23027. [
  23028. {
  23029. name: "Normal",
  23030. height: math.unit(8, "feet"),
  23031. default: true
  23032. },
  23033. {
  23034. name: "Lorg",
  23035. height: math.unit(12, "feet")
  23036. },
  23037. {
  23038. name: "Oh Lawd She Comin'",
  23039. height: math.unit(20, "feet")
  23040. },
  23041. ]
  23042. ))
  23043. characterMakers.push(() => makeCharacter(
  23044. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23045. {
  23046. front: {
  23047. height: math.unit(4, "feet"),
  23048. weight: math.unit(90, "lb"),
  23049. name: "Front",
  23050. image: {
  23051. source: "./media/characters/reza/front.svg",
  23052. extra: 1183 / 1111,
  23053. bottom: 0.017
  23054. }
  23055. },
  23056. back: {
  23057. height: math.unit(4, "feet"),
  23058. weight: math.unit(90, "lb"),
  23059. name: "Back",
  23060. image: {
  23061. source: "./media/characters/reza/back.svg",
  23062. extra: 1183 / 1111,
  23063. bottom: 0.01
  23064. }
  23065. },
  23066. drake: {
  23067. height: math.unit(30, "feet"),
  23068. weight: math.unit(246960, "lb"),
  23069. name: "Drake",
  23070. image: {
  23071. source: "./media/characters/reza/drake.svg",
  23072. extra: 2350 / 2024,
  23073. bottom: 60.7 / 2403
  23074. }
  23075. },
  23076. },
  23077. [
  23078. {
  23079. name: "Normal",
  23080. height: math.unit(4, "feet"),
  23081. default: true
  23082. },
  23083. ]
  23084. ))
  23085. characterMakers.push(() => makeCharacter(
  23086. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23087. {
  23088. side: {
  23089. height: math.unit(15, "feet"),
  23090. weight: math.unit(14, "tons"),
  23091. name: "Side",
  23092. image: {
  23093. source: "./media/characters/athea/side.svg",
  23094. extra: 960 / 540,
  23095. bottom: 0.003
  23096. }
  23097. },
  23098. sitting: {
  23099. height: math.unit(6 * 2.85, "feet"),
  23100. weight: math.unit(14, "tons"),
  23101. name: "Sitting",
  23102. image: {
  23103. source: "./media/characters/athea/sitting.svg",
  23104. extra: 621 / 581,
  23105. bottom: 0.075
  23106. }
  23107. },
  23108. maw: {
  23109. height: math.unit(7.59498031496063, "feet"),
  23110. name: "Maw",
  23111. image: {
  23112. source: "./media/characters/athea/maw.svg"
  23113. }
  23114. },
  23115. },
  23116. [
  23117. {
  23118. name: "Lap Cat",
  23119. height: math.unit(2.5, "feet")
  23120. },
  23121. {
  23122. name: "Minimacro",
  23123. height: math.unit(15, "feet"),
  23124. default: true
  23125. },
  23126. {
  23127. name: "Macro",
  23128. height: math.unit(120, "feet")
  23129. },
  23130. {
  23131. name: "Macro+",
  23132. height: math.unit(640, "feet")
  23133. },
  23134. {
  23135. name: "Colossus",
  23136. height: math.unit(2.2, "miles")
  23137. },
  23138. ]
  23139. ))
  23140. characterMakers.push(() => makeCharacter(
  23141. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23142. {
  23143. front: {
  23144. height: math.unit(8 + 8 / 12, "feet"),
  23145. weight: math.unit(130, "kg"),
  23146. name: "Front",
  23147. image: {
  23148. source: "./media/characters/seroko/front.svg",
  23149. extra: 1385 / 1280,
  23150. bottom: 0.025
  23151. }
  23152. },
  23153. back: {
  23154. height: math.unit(8 + 8 / 12, "feet"),
  23155. weight: math.unit(130, "kg"),
  23156. name: "Back",
  23157. image: {
  23158. source: "./media/characters/seroko/back.svg",
  23159. extra: 1369 / 1238,
  23160. bottom: 0.018
  23161. }
  23162. },
  23163. frontDressed: {
  23164. height: math.unit(8 + 8 / 12, "feet"),
  23165. weight: math.unit(130, "kg"),
  23166. name: "Front (Dressed)",
  23167. image: {
  23168. source: "./media/characters/seroko/front-dressed.svg",
  23169. extra: 1366 / 1275,
  23170. bottom: 0.03
  23171. }
  23172. },
  23173. },
  23174. [
  23175. {
  23176. name: "Normal",
  23177. height: math.unit(8 + 8 / 12, "feet"),
  23178. default: true
  23179. },
  23180. ]
  23181. ))
  23182. characterMakers.push(() => makeCharacter(
  23183. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23184. {
  23185. front: {
  23186. height: math.unit(5.5, "feet"),
  23187. weight: math.unit(160, "lb"),
  23188. name: "Front",
  23189. image: {
  23190. source: "./media/characters/quatzi/front.svg",
  23191. extra: 2346 / 2242,
  23192. bottom: 0.015
  23193. }
  23194. },
  23195. },
  23196. [
  23197. {
  23198. name: "Normal",
  23199. height: math.unit(5.5, "feet"),
  23200. default: true
  23201. },
  23202. {
  23203. name: "Big",
  23204. height: math.unit(7.7, "feet")
  23205. },
  23206. ]
  23207. ))
  23208. characterMakers.push(() => makeCharacter(
  23209. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23210. {
  23211. front: {
  23212. height: math.unit(5 + 11 / 12, "feet"),
  23213. weight: math.unit(180, "lb"),
  23214. name: "Front",
  23215. image: {
  23216. source: "./media/characters/sen/front.svg",
  23217. extra: 1321 / 1254,
  23218. bottom: 0.015
  23219. }
  23220. },
  23221. side: {
  23222. height: math.unit(5 + 11 / 12, "feet"),
  23223. weight: math.unit(180, "lb"),
  23224. name: "Side",
  23225. image: {
  23226. source: "./media/characters/sen/side.svg",
  23227. extra: 1321 / 1254,
  23228. bottom: 0.007
  23229. }
  23230. },
  23231. back: {
  23232. height: math.unit(5 + 11 / 12, "feet"),
  23233. weight: math.unit(180, "lb"),
  23234. name: "Back",
  23235. image: {
  23236. source: "./media/characters/sen/back.svg",
  23237. extra: 1321 / 1254
  23238. }
  23239. },
  23240. },
  23241. [
  23242. {
  23243. name: "Normal",
  23244. height: math.unit(5 + 11 / 12, "feet"),
  23245. default: true
  23246. },
  23247. ]
  23248. ))
  23249. characterMakers.push(() => makeCharacter(
  23250. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23251. {
  23252. front: {
  23253. height: math.unit(166.6, "cm"),
  23254. weight: math.unit(66.6, "kg"),
  23255. name: "Front",
  23256. image: {
  23257. source: "./media/characters/fruity/front.svg",
  23258. extra: 1510 / 1386,
  23259. bottom: 0.04
  23260. }
  23261. },
  23262. back: {
  23263. height: math.unit(166.6, "cm"),
  23264. weight: math.unit(66.6, "lb"),
  23265. name: "Back",
  23266. image: {
  23267. source: "./media/characters/fruity/back.svg",
  23268. extra: 1563 / 1435,
  23269. bottom: 0.005
  23270. }
  23271. },
  23272. },
  23273. [
  23274. {
  23275. name: "Normal",
  23276. height: math.unit(166.6, "cm"),
  23277. default: true
  23278. },
  23279. {
  23280. name: "Demonic",
  23281. height: math.unit(166.6, "feet")
  23282. },
  23283. ]
  23284. ))
  23285. characterMakers.push(() => makeCharacter(
  23286. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23287. {
  23288. side: {
  23289. height: math.unit(10, "feet"),
  23290. weight: math.unit(500, "lb"),
  23291. name: "Side",
  23292. image: {
  23293. source: "./media/characters/zost/side.svg",
  23294. extra: 2870/2533,
  23295. bottom: 252/3122
  23296. }
  23297. },
  23298. mawFront: {
  23299. height: math.unit(1.08, "meters"),
  23300. name: "Maw (Front)",
  23301. image: {
  23302. source: "./media/characters/zost/maw-front.svg"
  23303. }
  23304. },
  23305. mawSide: {
  23306. height: math.unit(2.66, "feet"),
  23307. name: "Maw (Side)",
  23308. image: {
  23309. source: "./media/characters/zost/maw-side.svg"
  23310. }
  23311. },
  23312. wingspan: {
  23313. height: math.unit(7.4, "feet"),
  23314. name: "Wingspan",
  23315. image: {
  23316. source: "./media/characters/zost/wingspan.svg"
  23317. }
  23318. },
  23319. },
  23320. [
  23321. {
  23322. name: "Normal",
  23323. height: math.unit(10, "feet"),
  23324. default: true
  23325. },
  23326. ]
  23327. ))
  23328. characterMakers.push(() => makeCharacter(
  23329. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23330. {
  23331. front: {
  23332. height: math.unit(5 + 4 / 12, "feet"),
  23333. weight: math.unit(120, "lb"),
  23334. name: "Front",
  23335. image: {
  23336. source: "./media/characters/luci/front.svg",
  23337. extra: 1985 / 1884,
  23338. bottom: 0.04
  23339. }
  23340. },
  23341. back: {
  23342. height: math.unit(5 + 4 / 12, "feet"),
  23343. weight: math.unit(120, "lb"),
  23344. name: "Back",
  23345. image: {
  23346. source: "./media/characters/luci/back.svg",
  23347. extra: 1892 / 1791,
  23348. bottom: 0.002
  23349. }
  23350. },
  23351. },
  23352. [
  23353. {
  23354. name: "Normal",
  23355. height: math.unit(5 + 4 / 12, "feet"),
  23356. default: true
  23357. },
  23358. ]
  23359. ))
  23360. characterMakers.push(() => makeCharacter(
  23361. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23362. {
  23363. front: {
  23364. height: math.unit(1500, "feet"),
  23365. weight: math.unit(3.8e6, "tons"),
  23366. name: "Front",
  23367. image: {
  23368. source: "./media/characters/2th/front.svg",
  23369. extra: 3489 / 3350,
  23370. bottom: 0.1
  23371. }
  23372. },
  23373. foot: {
  23374. height: math.unit(461, "feet"),
  23375. name: "Foot",
  23376. image: {
  23377. source: "./media/characters/2th/foot.svg"
  23378. }
  23379. },
  23380. },
  23381. [
  23382. {
  23383. name: "\"Micro\"",
  23384. height: math.unit(15 + 7 / 12, "feet")
  23385. },
  23386. {
  23387. name: "Normal",
  23388. height: math.unit(1500, "feet"),
  23389. default: true
  23390. },
  23391. {
  23392. name: "Macro",
  23393. height: math.unit(5000, "feet")
  23394. },
  23395. {
  23396. name: "Megamacro",
  23397. height: math.unit(15, "miles")
  23398. },
  23399. {
  23400. name: "Gigamacro",
  23401. height: math.unit(4000, "miles")
  23402. },
  23403. {
  23404. name: "Galactic",
  23405. height: math.unit(50, "AU")
  23406. },
  23407. ]
  23408. ))
  23409. characterMakers.push(() => makeCharacter(
  23410. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23411. {
  23412. front: {
  23413. height: math.unit(5 + 6 / 12, "feet"),
  23414. weight: math.unit(220, "lb"),
  23415. name: "Front",
  23416. image: {
  23417. source: "./media/characters/amethyst/front.svg",
  23418. extra: 2078 / 2040,
  23419. bottom: 0.045
  23420. }
  23421. },
  23422. back: {
  23423. height: math.unit(5 + 6 / 12, "feet"),
  23424. weight: math.unit(220, "lb"),
  23425. name: "Back",
  23426. image: {
  23427. source: "./media/characters/amethyst/back.svg",
  23428. extra: 2021 / 1989,
  23429. bottom: 0.02
  23430. }
  23431. },
  23432. },
  23433. [
  23434. {
  23435. name: "Normal",
  23436. height: math.unit(5 + 6 / 12, "feet"),
  23437. default: true
  23438. },
  23439. ]
  23440. ))
  23441. characterMakers.push(() => makeCharacter(
  23442. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23443. {
  23444. front: {
  23445. height: math.unit(4 + 11 / 12, "feet"),
  23446. weight: math.unit(120, "lb"),
  23447. name: "Front",
  23448. image: {
  23449. source: "./media/characters/yumi-akiyama/front.svg",
  23450. extra: 1327 / 1235,
  23451. bottom: 0.02
  23452. }
  23453. },
  23454. back: {
  23455. height: math.unit(4 + 11 / 12, "feet"),
  23456. weight: math.unit(120, "lb"),
  23457. name: "Back",
  23458. image: {
  23459. source: "./media/characters/yumi-akiyama/back.svg",
  23460. extra: 1287 / 1245,
  23461. bottom: 0.002
  23462. }
  23463. },
  23464. },
  23465. [
  23466. {
  23467. name: "Galactic",
  23468. height: math.unit(50, "galaxies"),
  23469. default: true
  23470. },
  23471. {
  23472. name: "Universal",
  23473. height: math.unit(100, "universes")
  23474. },
  23475. ]
  23476. ))
  23477. characterMakers.push(() => makeCharacter(
  23478. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23479. {
  23480. front: {
  23481. height: math.unit(8, "feet"),
  23482. weight: math.unit(500, "lb"),
  23483. name: "Front",
  23484. image: {
  23485. source: "./media/characters/rifter-yrmori/front.svg",
  23486. extra: 1180 / 1125,
  23487. bottom: 0.02
  23488. }
  23489. },
  23490. back: {
  23491. height: math.unit(8, "feet"),
  23492. weight: math.unit(500, "lb"),
  23493. name: "Back",
  23494. image: {
  23495. source: "./media/characters/rifter-yrmori/back.svg",
  23496. extra: 1190 / 1145,
  23497. bottom: 0.001
  23498. }
  23499. },
  23500. wings: {
  23501. height: math.unit(7.75, "feet"),
  23502. weight: math.unit(500, "lb"),
  23503. name: "Wings",
  23504. image: {
  23505. source: "./media/characters/rifter-yrmori/wings.svg",
  23506. extra: 1357 / 1285
  23507. }
  23508. },
  23509. maw: {
  23510. height: math.unit(0.8, "feet"),
  23511. name: "Maw",
  23512. image: {
  23513. source: "./media/characters/rifter-yrmori/maw.svg"
  23514. }
  23515. },
  23516. mawfront: {
  23517. height: math.unit(1.45, "feet"),
  23518. name: "Maw (Front)",
  23519. image: {
  23520. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23521. }
  23522. },
  23523. },
  23524. [
  23525. {
  23526. name: "Normal",
  23527. height: math.unit(8, "feet"),
  23528. default: true
  23529. },
  23530. {
  23531. name: "Macro",
  23532. height: math.unit(42, "meters")
  23533. },
  23534. ]
  23535. ))
  23536. characterMakers.push(() => makeCharacter(
  23537. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23538. {
  23539. were: {
  23540. height: math.unit(25 + 6 / 12, "feet"),
  23541. weight: math.unit(10000, "lb"),
  23542. name: "Were",
  23543. image: {
  23544. source: "./media/characters/tahajin/were.svg",
  23545. extra: 801 / 770,
  23546. bottom: 0.042
  23547. }
  23548. },
  23549. aquatic: {
  23550. height: math.unit(6 + 4 / 12, "feet"),
  23551. weight: math.unit(160, "lb"),
  23552. name: "Aquatic",
  23553. image: {
  23554. source: "./media/characters/tahajin/aquatic.svg",
  23555. extra: 572 / 542,
  23556. bottom: 0.04
  23557. }
  23558. },
  23559. chow: {
  23560. height: math.unit(8 + 11 / 12, "feet"),
  23561. weight: math.unit(450, "lb"),
  23562. name: "Chow",
  23563. image: {
  23564. source: "./media/characters/tahajin/chow.svg",
  23565. extra: 660 / 640,
  23566. bottom: 0.015
  23567. }
  23568. },
  23569. demiNaga: {
  23570. height: math.unit(6 + 8 / 12, "feet"),
  23571. weight: math.unit(300, "lb"),
  23572. name: "Demi Naga",
  23573. image: {
  23574. source: "./media/characters/tahajin/demi-naga.svg",
  23575. extra: 643 / 615,
  23576. bottom: 0.1
  23577. }
  23578. },
  23579. data: {
  23580. height: math.unit(5, "inches"),
  23581. weight: math.unit(0.1, "lb"),
  23582. name: "Data",
  23583. image: {
  23584. source: "./media/characters/tahajin/data.svg"
  23585. }
  23586. },
  23587. fluu: {
  23588. height: math.unit(5 + 7 / 12, "feet"),
  23589. weight: math.unit(140, "lb"),
  23590. name: "Fluu",
  23591. image: {
  23592. source: "./media/characters/tahajin/fluu.svg",
  23593. extra: 628 / 592,
  23594. bottom: 0.02
  23595. }
  23596. },
  23597. starWarrior: {
  23598. height: math.unit(4 + 5 / 12, "feet"),
  23599. weight: math.unit(50, "lb"),
  23600. name: "Star Warrior",
  23601. image: {
  23602. source: "./media/characters/tahajin/star-warrior.svg"
  23603. }
  23604. },
  23605. },
  23606. [
  23607. {
  23608. name: "Normal",
  23609. height: math.unit(25 + 6 / 12, "feet"),
  23610. default: true
  23611. },
  23612. ]
  23613. ))
  23614. characterMakers.push(() => makeCharacter(
  23615. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23616. {
  23617. front: {
  23618. height: math.unit(8, "feet"),
  23619. weight: math.unit(350, "lb"),
  23620. name: "Front",
  23621. image: {
  23622. source: "./media/characters/gabira/front.svg",
  23623. extra: 1261/1154,
  23624. bottom: 51/1312
  23625. }
  23626. },
  23627. back: {
  23628. height: math.unit(8, "feet"),
  23629. weight: math.unit(350, "lb"),
  23630. name: "Back",
  23631. image: {
  23632. source: "./media/characters/gabira/back.svg",
  23633. extra: 1265/1163,
  23634. bottom: 46/1311
  23635. }
  23636. },
  23637. head: {
  23638. height: math.unit(2.85, "feet"),
  23639. name: "Head",
  23640. image: {
  23641. source: "./media/characters/gabira/head.svg"
  23642. }
  23643. },
  23644. },
  23645. [
  23646. {
  23647. name: "Normal",
  23648. height: math.unit(8, "feet"),
  23649. default: true
  23650. },
  23651. ]
  23652. ))
  23653. characterMakers.push(() => makeCharacter(
  23654. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23655. {
  23656. front: {
  23657. height: math.unit(5 + 3 / 12, "feet"),
  23658. weight: math.unit(137, "lb"),
  23659. name: "Front",
  23660. image: {
  23661. source: "./media/characters/sasha-katraine/front.svg",
  23662. extra: 1745/1694,
  23663. bottom: 37/1782
  23664. }
  23665. },
  23666. back: {
  23667. height: math.unit(5 + 3 / 12, "feet"),
  23668. weight: math.unit(137, "lb"),
  23669. name: "Back",
  23670. image: {
  23671. source: "./media/characters/sasha-katraine/back.svg",
  23672. extra: 1776/1699,
  23673. bottom: 26/1802
  23674. }
  23675. },
  23676. },
  23677. [
  23678. {
  23679. name: "Micro",
  23680. height: math.unit(5, "inches")
  23681. },
  23682. {
  23683. name: "Normal",
  23684. height: math.unit(5 + 3 / 12, "feet"),
  23685. default: true
  23686. },
  23687. ]
  23688. ))
  23689. characterMakers.push(() => makeCharacter(
  23690. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23691. {
  23692. side: {
  23693. height: math.unit(4, "inches"),
  23694. weight: math.unit(200, "grams"),
  23695. name: "Side",
  23696. image: {
  23697. source: "./media/characters/der/side.svg",
  23698. extra: 719 / 400,
  23699. bottom: 30.6 / 749.9187
  23700. }
  23701. },
  23702. },
  23703. [
  23704. {
  23705. name: "Micro",
  23706. height: math.unit(4, "inches"),
  23707. default: true
  23708. },
  23709. ]
  23710. ))
  23711. characterMakers.push(() => makeCharacter(
  23712. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23713. {
  23714. side: {
  23715. height: math.unit(30, "meters"),
  23716. weight: math.unit(700, "tonnes"),
  23717. name: "Side",
  23718. image: {
  23719. source: "./media/characters/fixerdragon/side.svg",
  23720. extra: (1293.0514 - 116.03) / 1106.86,
  23721. bottom: 116.03 / 1293.0514
  23722. }
  23723. },
  23724. },
  23725. [
  23726. {
  23727. name: "Planck",
  23728. height: math.unit(1.6e-35, "meters")
  23729. },
  23730. {
  23731. name: "Micro",
  23732. height: math.unit(0.4, "meters")
  23733. },
  23734. {
  23735. name: "Normal",
  23736. height: math.unit(30, "meters"),
  23737. default: true
  23738. },
  23739. {
  23740. name: "Megamacro",
  23741. height: math.unit(1.2, "megameters")
  23742. },
  23743. {
  23744. name: "Teramacro",
  23745. height: math.unit(130, "terameters")
  23746. },
  23747. {
  23748. name: "Yottamacro",
  23749. height: math.unit(6200, "yottameters")
  23750. },
  23751. ]
  23752. ));
  23753. characterMakers.push(() => makeCharacter(
  23754. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23755. {
  23756. front: {
  23757. height: math.unit(8, "feet"),
  23758. weight: math.unit(250, "lb"),
  23759. name: "Front",
  23760. image: {
  23761. source: "./media/characters/kite/front.svg",
  23762. extra: 2796 / 2659,
  23763. bottom: 0.002
  23764. }
  23765. },
  23766. },
  23767. [
  23768. {
  23769. name: "Normal",
  23770. height: math.unit(8, "feet"),
  23771. default: true
  23772. },
  23773. {
  23774. name: "Macro",
  23775. height: math.unit(360, "feet")
  23776. },
  23777. {
  23778. name: "Megamacro",
  23779. height: math.unit(1500, "feet")
  23780. },
  23781. ]
  23782. ))
  23783. characterMakers.push(() => makeCharacter(
  23784. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23785. {
  23786. anthro_front: {
  23787. height: math.unit(5 + 11/12, "feet"),
  23788. weight: math.unit(170, "lb"),
  23789. name: "Front",
  23790. image: {
  23791. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  23792. extra: 1735/1585,
  23793. bottom: 96/1831
  23794. },
  23795. form: "anthro",
  23796. default: true
  23797. },
  23798. anthro_back: {
  23799. height: math.unit(5 + 11/12, "feet"),
  23800. weight: math.unit(170, "lb"),
  23801. name: "Back",
  23802. image: {
  23803. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  23804. extra: 1749/1607,
  23805. bottom: 28/1777
  23806. },
  23807. form: "anthro"
  23808. },
  23809. anthro_male: {
  23810. height: math.unit(5 + 11/12, "feet"),
  23811. weight: math.unit(170, "lb"),
  23812. name: "Male",
  23813. image: {
  23814. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  23815. extra: 1855/1713,
  23816. bottom: 63/1918
  23817. },
  23818. form: "anthro"
  23819. },
  23820. taur_front: {
  23821. height: math.unit(5 + 7/12, "feet"),
  23822. weight: math.unit(170, "lb"),
  23823. name: "Front",
  23824. image: {
  23825. source: "./media/characters/poojawa-vynar/taur-front.svg",
  23826. extra: 1151/1059,
  23827. bottom: 356/1507
  23828. },
  23829. form: "taur",
  23830. default: true
  23831. },
  23832. anthro_frontDressed: {
  23833. height: math.unit(5 + 11/12, "feet"),
  23834. weight: math.unit(170, "lb"),
  23835. name: "Front (Dressed)",
  23836. image: {
  23837. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  23838. extra: 1735/1585,
  23839. bottom: 96/1831
  23840. },
  23841. form: "anthro"
  23842. },
  23843. anthro_backDressed: {
  23844. height: math.unit(5 + 11/12, "feet"),
  23845. weight: math.unit(170, "lb"),
  23846. name: "Back (Dressed)",
  23847. image: {
  23848. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  23849. extra: 1749/1607,
  23850. bottom: 28/1777
  23851. },
  23852. form: "anthro"
  23853. },
  23854. anthro_maleDressed: {
  23855. height: math.unit(5 + 11/12, "feet"),
  23856. weight: math.unit(170, "lb"),
  23857. name: "Male (Dressed)",
  23858. image: {
  23859. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  23860. extra: 1855/1713,
  23861. bottom: 63/1918
  23862. },
  23863. form: "anthro"
  23864. },
  23865. taur_frontDressed: {
  23866. height: math.unit(5 + 7/12, "feet"),
  23867. weight: math.unit(170, "lb"),
  23868. name: "Front (Dressed)",
  23869. image: {
  23870. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  23871. extra: 1151/1059,
  23872. bottom: 356/1507
  23873. },
  23874. form: "taur"
  23875. },
  23876. maw: {
  23877. height: math.unit(1.46, "feet"),
  23878. name: "Maw",
  23879. image: {
  23880. source: "./media/characters/poojawa-vynar/maw.svg"
  23881. },
  23882. allForms: true
  23883. },
  23884. head: {
  23885. height: math.unit(2.34, "feet"),
  23886. name: "Head",
  23887. image: {
  23888. source: "./media/characters/poojawa-vynar/head.svg"
  23889. },
  23890. allForms: true
  23891. },
  23892. leftPaw: {
  23893. height: math.unit(1.72, "feet"),
  23894. name: "Left Paw",
  23895. image: {
  23896. source: "./media/characters/poojawa-vynar/paw-left.svg"
  23897. },
  23898. allForms: true
  23899. },
  23900. rightPaw: {
  23901. height: math.unit(1.61, "feet"),
  23902. name: "Right Paw",
  23903. image: {
  23904. source: "./media/characters/poojawa-vynar/paw-right.svg"
  23905. },
  23906. allForms: true
  23907. },
  23908. toering: {
  23909. height: math.unit(2.9, "inches"),
  23910. name: "Toering",
  23911. image: {
  23912. source: "./media/characters/poojawa-vynar/toering.svg"
  23913. },
  23914. allForms: true
  23915. },
  23916. shaft: {
  23917. height: math.unit(0.625, "feet"),
  23918. name: "Shaft",
  23919. image: {
  23920. source: "./media/characters/poojawa-vynar/shaft.svg"
  23921. },
  23922. allForms: true
  23923. },
  23924. spade: {
  23925. height: math.unit(0.42, "feet"),
  23926. name: "Spade",
  23927. image: {
  23928. source: "./media/characters/poojawa-vynar/spade.svg"
  23929. },
  23930. allForms: true
  23931. },
  23932. },
  23933. [
  23934. {
  23935. name: "Shortstack",
  23936. height: math.unit(4, "feet"),
  23937. form: "anthro"
  23938. },
  23939. {
  23940. name: "Normal",
  23941. height: math.unit(5 + 11 / 12, "feet"),
  23942. form: "anthro",
  23943. default: true
  23944. },
  23945. {
  23946. name: "Tauric",
  23947. height: math.unit(4, "meters"),
  23948. form: "taur",
  23949. default: true
  23950. },
  23951. ],
  23952. {
  23953. "anthro": {
  23954. name: "Anthro",
  23955. default: true
  23956. },
  23957. "taur": {
  23958. name: "Taur",
  23959. },
  23960. }
  23961. ))
  23962. characterMakers.push(() => makeCharacter(
  23963. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23964. {
  23965. front: {
  23966. height: math.unit(293, "meters"),
  23967. weight: math.unit(70400, "tons"),
  23968. name: "Front",
  23969. image: {
  23970. source: "./media/characters/violette/front.svg",
  23971. extra: 1227 / 1180,
  23972. bottom: 0.005
  23973. }
  23974. },
  23975. back: {
  23976. height: math.unit(293, "meters"),
  23977. weight: math.unit(70400, "tons"),
  23978. name: "Back",
  23979. image: {
  23980. source: "./media/characters/violette/back.svg",
  23981. extra: 1227 / 1180,
  23982. bottom: 0.005
  23983. }
  23984. },
  23985. },
  23986. [
  23987. {
  23988. name: "Macro",
  23989. height: math.unit(293, "meters"),
  23990. default: true
  23991. },
  23992. ]
  23993. ))
  23994. characterMakers.push(() => makeCharacter(
  23995. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23996. {
  23997. front: {
  23998. height: math.unit(1050, "feet"),
  23999. weight: math.unit(200000, "tons"),
  24000. name: "Front",
  24001. image: {
  24002. source: "./media/characters/alessandra/front.svg",
  24003. extra: 960 / 912,
  24004. bottom: 0.06
  24005. }
  24006. },
  24007. },
  24008. [
  24009. {
  24010. name: "Macro",
  24011. height: math.unit(1050, "feet")
  24012. },
  24013. {
  24014. name: "Macro+",
  24015. height: math.unit(900, "meters"),
  24016. default: true
  24017. },
  24018. ]
  24019. ))
  24020. characterMakers.push(() => makeCharacter(
  24021. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24022. {
  24023. front: {
  24024. height: math.unit(5, "feet"),
  24025. weight: math.unit(187, "lb"),
  24026. name: "Front",
  24027. image: {
  24028. source: "./media/characters/person/front.svg",
  24029. extra: 3087 / 2945,
  24030. bottom: 91 / 3181
  24031. }
  24032. },
  24033. },
  24034. [
  24035. {
  24036. name: "Micro",
  24037. height: math.unit(3, "inches")
  24038. },
  24039. {
  24040. name: "Normal",
  24041. height: math.unit(5, "feet"),
  24042. default: true
  24043. },
  24044. {
  24045. name: "Macro",
  24046. height: math.unit(90, "feet")
  24047. },
  24048. {
  24049. name: "Max Size",
  24050. height: math.unit(280, "feet")
  24051. },
  24052. ]
  24053. ))
  24054. characterMakers.push(() => makeCharacter(
  24055. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24056. {
  24057. front: {
  24058. height: math.unit(4.5, "meters"),
  24059. weight: math.unit(3200, "lb"),
  24060. name: "Front",
  24061. image: {
  24062. source: "./media/characters/ty/front.svg",
  24063. extra: 1038 / 960,
  24064. bottom: 31.156 / 1068
  24065. }
  24066. },
  24067. back: {
  24068. height: math.unit(4.5, "meters"),
  24069. weight: math.unit(3200, "lb"),
  24070. name: "Back",
  24071. image: {
  24072. source: "./media/characters/ty/back.svg",
  24073. extra: 1044 / 966,
  24074. bottom: 7.48 / 1049
  24075. }
  24076. },
  24077. },
  24078. [
  24079. {
  24080. name: "Normal",
  24081. height: math.unit(4.5, "meters"),
  24082. default: true
  24083. },
  24084. ]
  24085. ))
  24086. characterMakers.push(() => makeCharacter(
  24087. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24088. {
  24089. front: {
  24090. height: math.unit(5 + 4 / 12, "feet"),
  24091. weight: math.unit(115, "lb"),
  24092. name: "Front",
  24093. image: {
  24094. source: "./media/characters/rocky/front.svg",
  24095. extra: 1012 / 975,
  24096. bottom: 54 / 1066
  24097. }
  24098. },
  24099. },
  24100. [
  24101. {
  24102. name: "Normal",
  24103. height: math.unit(5 + 4 / 12, "feet"),
  24104. default: true
  24105. },
  24106. ]
  24107. ))
  24108. characterMakers.push(() => makeCharacter(
  24109. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24110. {
  24111. upright: {
  24112. height: math.unit(6, "meters"),
  24113. weight: math.unit(4000, "kg"),
  24114. name: "Upright",
  24115. image: {
  24116. source: "./media/characters/ruin/upright.svg",
  24117. extra: 668 / 661,
  24118. bottom: 42 / 799.8396
  24119. }
  24120. },
  24121. },
  24122. [
  24123. {
  24124. name: "Normal",
  24125. height: math.unit(6, "meters"),
  24126. default: true
  24127. },
  24128. ]
  24129. ))
  24130. characterMakers.push(() => makeCharacter(
  24131. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24132. {
  24133. front: {
  24134. height: math.unit(5, "feet"),
  24135. weight: math.unit(106, "lb"),
  24136. name: "Front",
  24137. image: {
  24138. source: "./media/characters/robin/front.svg",
  24139. extra: 862 / 799,
  24140. bottom: 42.4 / 914.8856
  24141. }
  24142. },
  24143. },
  24144. [
  24145. {
  24146. name: "Normal",
  24147. height: math.unit(5, "feet"),
  24148. default: true
  24149. },
  24150. ]
  24151. ))
  24152. characterMakers.push(() => makeCharacter(
  24153. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24154. {
  24155. side: {
  24156. height: math.unit(3, "feet"),
  24157. weight: math.unit(225, "lb"),
  24158. name: "Side",
  24159. image: {
  24160. source: "./media/characters/saian/side.svg",
  24161. extra: 566 / 356,
  24162. bottom: 79.7 / 643
  24163. }
  24164. },
  24165. maw: {
  24166. height: math.unit(2.85, "feet"),
  24167. name: "Maw",
  24168. image: {
  24169. source: "./media/characters/saian/maw.svg"
  24170. }
  24171. },
  24172. },
  24173. [
  24174. {
  24175. name: "Normal",
  24176. height: math.unit(3, "feet"),
  24177. default: true
  24178. },
  24179. ]
  24180. ))
  24181. characterMakers.push(() => makeCharacter(
  24182. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24183. {
  24184. side: {
  24185. height: math.unit(8, "feet"),
  24186. weight: math.unit(300, "lb"),
  24187. name: "Side",
  24188. image: {
  24189. source: "./media/characters/equus-silvermane/side.svg",
  24190. extra: 2176 / 2050,
  24191. bottom: 65.7 / 2245
  24192. }
  24193. },
  24194. front: {
  24195. height: math.unit(8, "feet"),
  24196. weight: math.unit(300, "lb"),
  24197. name: "Front",
  24198. image: {
  24199. source: "./media/characters/equus-silvermane/front.svg",
  24200. extra: 4633 / 4400,
  24201. bottom: 71.3 / 4706.915
  24202. }
  24203. },
  24204. sideStepping: {
  24205. height: math.unit(8, "feet"),
  24206. weight: math.unit(300, "lb"),
  24207. name: "Side (Stepping)",
  24208. image: {
  24209. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24210. extra: 1968 / 1860,
  24211. bottom: 16.4 / 1989
  24212. }
  24213. },
  24214. },
  24215. [
  24216. {
  24217. name: "Normal",
  24218. height: math.unit(8, "feet")
  24219. },
  24220. {
  24221. name: "Minimacro",
  24222. height: math.unit(75, "feet"),
  24223. default: true
  24224. },
  24225. {
  24226. name: "Macro",
  24227. height: math.unit(150, "feet")
  24228. },
  24229. {
  24230. name: "Macro+",
  24231. height: math.unit(1000, "feet")
  24232. },
  24233. {
  24234. name: "Megamacro",
  24235. height: math.unit(1, "mile")
  24236. },
  24237. ]
  24238. ))
  24239. characterMakers.push(() => makeCharacter(
  24240. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24241. {
  24242. side: {
  24243. height: math.unit(20, "feet"),
  24244. weight: math.unit(30000, "kg"),
  24245. name: "Side",
  24246. image: {
  24247. source: "./media/characters/windar/side.svg",
  24248. extra: 1491 / 1248,
  24249. bottom: 82.56 / 1568
  24250. }
  24251. },
  24252. },
  24253. [
  24254. {
  24255. name: "Normal",
  24256. height: math.unit(20, "feet"),
  24257. default: true
  24258. },
  24259. ]
  24260. ))
  24261. characterMakers.push(() => makeCharacter(
  24262. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24263. {
  24264. side: {
  24265. height: math.unit(15.66, "feet"),
  24266. weight: math.unit(150, "lb"),
  24267. name: "Side",
  24268. image: {
  24269. source: "./media/characters/melody/side.svg",
  24270. extra: 1097 / 944,
  24271. bottom: 11.8 / 1109
  24272. }
  24273. },
  24274. sideOutfit: {
  24275. height: math.unit(15.66, "feet"),
  24276. weight: math.unit(150, "lb"),
  24277. name: "Side (Outfit)",
  24278. image: {
  24279. source: "./media/characters/melody/side-outfit.svg",
  24280. extra: 1097 / 944,
  24281. bottom: 11.8 / 1109
  24282. }
  24283. },
  24284. },
  24285. [
  24286. {
  24287. name: "Normal",
  24288. height: math.unit(15.66, "feet"),
  24289. default: true
  24290. },
  24291. ]
  24292. ))
  24293. characterMakers.push(() => makeCharacter(
  24294. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24295. {
  24296. armoredFront: {
  24297. height: math.unit(8, "feet"),
  24298. weight: math.unit(325, "lb"),
  24299. name: "Front",
  24300. image: {
  24301. source: "./media/characters/windera/armored-front.svg",
  24302. extra: 1830/1598,
  24303. bottom: 151/1981
  24304. },
  24305. form: "armored",
  24306. default: true
  24307. },
  24308. macroFront: {
  24309. height: math.unit(70, "feet"),
  24310. weight: math.unit(315453, "lb"),
  24311. name: "Front",
  24312. image: {
  24313. source: "./media/characters/windera/macro-front.svg",
  24314. extra: 963/883,
  24315. bottom: 23/986
  24316. },
  24317. form: "macro",
  24318. default: true
  24319. },
  24320. },
  24321. [
  24322. {
  24323. name: "Normal",
  24324. height: math.unit(8, "feet"),
  24325. default: true,
  24326. form: "armored"
  24327. },
  24328. {
  24329. name: "Normal",
  24330. height: math.unit(70, "feet"),
  24331. default: true,
  24332. form: "macro"
  24333. },
  24334. ],
  24335. {
  24336. "armored": {
  24337. name: "Armored",
  24338. default: true
  24339. },
  24340. "macro": {
  24341. name: "Macro",
  24342. },
  24343. }
  24344. ))
  24345. characterMakers.push(() => makeCharacter(
  24346. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24347. {
  24348. front: {
  24349. height: math.unit(28.75, "feet"),
  24350. weight: math.unit(2000, "kg"),
  24351. name: "Front",
  24352. image: {
  24353. source: "./media/characters/sonear/front.svg",
  24354. extra: 1041.1 / 964.9,
  24355. bottom: 53.7 / 1096.6
  24356. }
  24357. },
  24358. },
  24359. [
  24360. {
  24361. name: "Normal",
  24362. height: math.unit(28.75, "feet"),
  24363. default: true
  24364. },
  24365. ]
  24366. ))
  24367. characterMakers.push(() => makeCharacter(
  24368. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24369. {
  24370. side: {
  24371. height: math.unit(25.5, "feet"),
  24372. weight: math.unit(23000, "kg"),
  24373. name: "Side",
  24374. image: {
  24375. source: "./media/characters/kanara/side.svg"
  24376. }
  24377. },
  24378. },
  24379. [
  24380. {
  24381. name: "Normal",
  24382. height: math.unit(25.5, "feet"),
  24383. default: true
  24384. },
  24385. ]
  24386. ))
  24387. characterMakers.push(() => makeCharacter(
  24388. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24389. {
  24390. side: {
  24391. height: math.unit(10, "feet"),
  24392. weight: math.unit(1000, "kg"),
  24393. name: "Side",
  24394. image: {
  24395. source: "./media/characters/ereus/side.svg",
  24396. extra: 1157 / 959,
  24397. bottom: 153 / 1312.5
  24398. }
  24399. },
  24400. },
  24401. [
  24402. {
  24403. name: "Normal",
  24404. height: math.unit(10, "feet"),
  24405. default: true
  24406. },
  24407. ]
  24408. ))
  24409. characterMakers.push(() => makeCharacter(
  24410. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24411. {
  24412. side: {
  24413. height: math.unit(4.5, "feet"),
  24414. weight: math.unit(500, "lb"),
  24415. name: "Side",
  24416. image: {
  24417. source: "./media/characters/e-ter/side.svg",
  24418. extra: 1550 / 1248,
  24419. bottom: 146 / 1694
  24420. }
  24421. },
  24422. },
  24423. [
  24424. {
  24425. name: "Normal",
  24426. height: math.unit(4.5, "feet"),
  24427. default: true
  24428. },
  24429. ]
  24430. ))
  24431. characterMakers.push(() => makeCharacter(
  24432. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24433. {
  24434. side: {
  24435. height: math.unit(9.7, "feet"),
  24436. weight: math.unit(4000, "kg"),
  24437. name: "Side",
  24438. image: {
  24439. source: "./media/characters/yamie/side.svg"
  24440. }
  24441. },
  24442. },
  24443. [
  24444. {
  24445. name: "Normal",
  24446. height: math.unit(9.7, "feet"),
  24447. default: true
  24448. },
  24449. ]
  24450. ))
  24451. characterMakers.push(() => makeCharacter(
  24452. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24453. {
  24454. front: {
  24455. height: math.unit(50, "feet"),
  24456. weight: math.unit(50000, "kg"),
  24457. name: "Front",
  24458. image: {
  24459. source: "./media/characters/anders/front.svg",
  24460. extra: 570 / 539,
  24461. bottom: 14.7 / 586.7
  24462. }
  24463. },
  24464. },
  24465. [
  24466. {
  24467. name: "Large",
  24468. height: math.unit(50, "feet")
  24469. },
  24470. {
  24471. name: "Macro",
  24472. height: math.unit(2000, "feet"),
  24473. default: true
  24474. },
  24475. {
  24476. name: "Megamacro",
  24477. height: math.unit(12, "miles")
  24478. },
  24479. ]
  24480. ))
  24481. characterMakers.push(() => makeCharacter(
  24482. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24483. {
  24484. front: {
  24485. height: math.unit(7 + 2 / 12, "feet"),
  24486. weight: math.unit(300, "lb"),
  24487. name: "Front",
  24488. image: {
  24489. source: "./media/characters/reban/front.svg",
  24490. extra: 1287/1212,
  24491. bottom: 148/1435
  24492. }
  24493. },
  24494. head: {
  24495. height: math.unit(1.95, "feet"),
  24496. name: "Head",
  24497. image: {
  24498. source: "./media/characters/reban/head.svg"
  24499. }
  24500. },
  24501. maw: {
  24502. height: math.unit(0.95, "feet"),
  24503. name: "Maw",
  24504. image: {
  24505. source: "./media/characters/reban/maw.svg"
  24506. }
  24507. },
  24508. foot: {
  24509. height: math.unit(1.65, "feet"),
  24510. name: "Foot",
  24511. image: {
  24512. source: "./media/characters/reban/foot.svg"
  24513. }
  24514. },
  24515. dick: {
  24516. height: math.unit(7 / 5, "feet"),
  24517. name: "Dick",
  24518. image: {
  24519. source: "./media/characters/reban/dick.svg"
  24520. }
  24521. },
  24522. },
  24523. [
  24524. {
  24525. name: "Natural Height",
  24526. height: math.unit(7 + 2 / 12, "feet")
  24527. },
  24528. {
  24529. name: "Macro",
  24530. height: math.unit(500, "feet"),
  24531. default: true
  24532. },
  24533. {
  24534. name: "Canon Height",
  24535. height: math.unit(50, "AU")
  24536. },
  24537. ]
  24538. ))
  24539. characterMakers.push(() => makeCharacter(
  24540. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24541. {
  24542. front: {
  24543. height: math.unit(6, "feet"),
  24544. weight: math.unit(150, "lb"),
  24545. name: "Front",
  24546. image: {
  24547. source: "./media/characters/terrance-keayes/front.svg",
  24548. extra: 1.005,
  24549. bottom: 151 / 1615
  24550. }
  24551. },
  24552. side: {
  24553. height: math.unit(6, "feet"),
  24554. weight: math.unit(150, "lb"),
  24555. name: "Side",
  24556. image: {
  24557. source: "./media/characters/terrance-keayes/side.svg",
  24558. extra: 1.005,
  24559. bottom: 129.4 / 1544
  24560. }
  24561. },
  24562. back: {
  24563. height: math.unit(6, "feet"),
  24564. weight: math.unit(150, "lb"),
  24565. name: "Back",
  24566. image: {
  24567. source: "./media/characters/terrance-keayes/back.svg",
  24568. extra: 1.005,
  24569. bottom: 58.4 / 1557.3
  24570. }
  24571. },
  24572. dick: {
  24573. height: math.unit(6 * 0.208, "feet"),
  24574. name: "Dick",
  24575. image: {
  24576. source: "./media/characters/terrance-keayes/dick.svg"
  24577. }
  24578. },
  24579. },
  24580. [
  24581. {
  24582. name: "Canon Height",
  24583. height: math.unit(35, "miles"),
  24584. default: true
  24585. },
  24586. ]
  24587. ))
  24588. characterMakers.push(() => makeCharacter(
  24589. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24590. {
  24591. front: {
  24592. height: math.unit(6, "feet"),
  24593. weight: math.unit(150, "lb"),
  24594. name: "Front",
  24595. image: {
  24596. source: "./media/characters/ofelia/front.svg",
  24597. extra: 1130/1117,
  24598. bottom: 91/1221
  24599. }
  24600. },
  24601. back: {
  24602. height: math.unit(6, "feet"),
  24603. weight: math.unit(150, "lb"),
  24604. name: "Back",
  24605. image: {
  24606. source: "./media/characters/ofelia/back.svg",
  24607. extra: 1172/1159,
  24608. bottom: 28/1200
  24609. }
  24610. },
  24611. maw: {
  24612. height: math.unit(1, "feet"),
  24613. name: "Maw",
  24614. image: {
  24615. source: "./media/characters/ofelia/maw.svg"
  24616. }
  24617. },
  24618. foot: {
  24619. height: math.unit(1.949, "feet"),
  24620. name: "Foot",
  24621. image: {
  24622. source: "./media/characters/ofelia/foot.svg"
  24623. }
  24624. },
  24625. },
  24626. [
  24627. {
  24628. name: "Canon Height",
  24629. height: math.unit(2000, "miles"),
  24630. default: true
  24631. },
  24632. ]
  24633. ))
  24634. characterMakers.push(() => makeCharacter(
  24635. { name: "Samuel", species: ["snow-leopard"], 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/samuel/front.svg",
  24643. extra: 265 / 258,
  24644. bottom: 2 / 266.1566
  24645. }
  24646. },
  24647. },
  24648. [
  24649. {
  24650. name: "Macro",
  24651. height: math.unit(100, "feet"),
  24652. default: true
  24653. },
  24654. {
  24655. name: "Full Size",
  24656. height: math.unit(1000, "miles")
  24657. },
  24658. ]
  24659. ))
  24660. characterMakers.push(() => makeCharacter(
  24661. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24662. {
  24663. front: {
  24664. height: math.unit(6, "feet"),
  24665. weight: math.unit(300, "lb"),
  24666. name: "Front",
  24667. image: {
  24668. source: "./media/characters/beishir-kiel/front.svg",
  24669. extra: 569 / 547,
  24670. bottom: 41.9 / 609
  24671. }
  24672. },
  24673. maw: {
  24674. height: math.unit(6 * 0.202, "feet"),
  24675. name: "Maw",
  24676. image: {
  24677. source: "./media/characters/beishir-kiel/maw.svg"
  24678. }
  24679. },
  24680. },
  24681. [
  24682. {
  24683. name: "Macro",
  24684. height: math.unit(300, "feet"),
  24685. default: true
  24686. },
  24687. ]
  24688. ))
  24689. characterMakers.push(() => makeCharacter(
  24690. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24691. {
  24692. front: {
  24693. height: math.unit(5 + 7/12, "feet"),
  24694. weight: math.unit(120, "lb"),
  24695. name: "Front",
  24696. image: {
  24697. source: "./media/characters/logan-grey/front.svg",
  24698. extra: 1836/1738,
  24699. bottom: 108/1944
  24700. }
  24701. },
  24702. back: {
  24703. height: math.unit(5 + 7/12, "feet"),
  24704. weight: math.unit(120, "lb"),
  24705. name: "Back",
  24706. image: {
  24707. source: "./media/characters/logan-grey/back.svg",
  24708. extra: 1880/1794,
  24709. bottom: 24/1904
  24710. }
  24711. },
  24712. frontSfw: {
  24713. height: math.unit(5 + 7/12, "feet"),
  24714. weight: math.unit(120, "lb"),
  24715. name: "Front (SFW)",
  24716. image: {
  24717. source: "./media/characters/logan-grey/front-sfw.svg",
  24718. extra: 1836/1738,
  24719. bottom: 108/1944
  24720. }
  24721. },
  24722. backSfw: {
  24723. height: math.unit(5 + 7/12, "feet"),
  24724. weight: math.unit(120, "lb"),
  24725. name: "Back (SFW)",
  24726. image: {
  24727. source: "./media/characters/logan-grey/back-sfw.svg",
  24728. extra: 1880/1794,
  24729. bottom: 24/1904
  24730. }
  24731. },
  24732. hands: {
  24733. height: math.unit(0.84, "feet"),
  24734. name: "Hands",
  24735. image: {
  24736. source: "./media/characters/logan-grey/hands.svg"
  24737. }
  24738. },
  24739. paws: {
  24740. height: math.unit(0.72, "feet"),
  24741. name: "Paws",
  24742. image: {
  24743. source: "./media/characters/logan-grey/paws.svg"
  24744. }
  24745. },
  24746. cock: {
  24747. height: math.unit(1.45, "feet"),
  24748. name: "Cock",
  24749. image: {
  24750. source: "./media/characters/logan-grey/cock.svg"
  24751. }
  24752. },
  24753. cockAlt: {
  24754. height: math.unit(1.437, "feet"),
  24755. name: "Cock (alt)",
  24756. image: {
  24757. source: "./media/characters/logan-grey/cock-alt.svg"
  24758. }
  24759. },
  24760. },
  24761. [
  24762. {
  24763. name: "Normal",
  24764. height: math.unit(5 + 8 / 12, "feet")
  24765. },
  24766. {
  24767. name: "The 500 Foot Femboy",
  24768. height: math.unit(500, "feet"),
  24769. default: true
  24770. },
  24771. {
  24772. name: "Megmacro",
  24773. height: math.unit(20, "miles")
  24774. },
  24775. ]
  24776. ))
  24777. characterMakers.push(() => makeCharacter(
  24778. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24779. {
  24780. front: {
  24781. height: math.unit(8 + 2 / 12, "feet"),
  24782. weight: math.unit(275, "lb"),
  24783. name: "Front",
  24784. image: {
  24785. source: "./media/characters/draganta/front.svg",
  24786. extra: 1177 / 1135,
  24787. bottom: 33.46 / 1212.1
  24788. }
  24789. },
  24790. },
  24791. [
  24792. {
  24793. name: "Normal",
  24794. height: math.unit(8 + 6 / 12, "feet"),
  24795. default: true
  24796. },
  24797. {
  24798. name: "Macro",
  24799. height: math.unit(150, "feet")
  24800. },
  24801. {
  24802. name: "Megamacro",
  24803. height: math.unit(1000, "miles")
  24804. },
  24805. ]
  24806. ))
  24807. characterMakers.push(() => makeCharacter(
  24808. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24809. {
  24810. front: {
  24811. height: math.unit(1.72, "m"),
  24812. weight: math.unit(80, "lb"),
  24813. name: "Front",
  24814. image: {
  24815. source: "./media/characters/voski/front.svg",
  24816. extra: 2076.22 / 2022.4,
  24817. bottom: 102.7 / 2177.3866
  24818. }
  24819. },
  24820. frontFlaccid: {
  24821. height: math.unit(1.72, "m"),
  24822. weight: math.unit(80, "lb"),
  24823. name: "Front (Flaccid)",
  24824. image: {
  24825. source: "./media/characters/voski/front-flaccid.svg",
  24826. extra: 2076.22 / 2022.4,
  24827. bottom: 102.7 / 2177.3866
  24828. }
  24829. },
  24830. frontErect: {
  24831. height: math.unit(1.72, "m"),
  24832. weight: math.unit(80, "lb"),
  24833. name: "Front (Erect)",
  24834. image: {
  24835. source: "./media/characters/voski/front-erect.svg",
  24836. extra: 2076.22 / 2022.4,
  24837. bottom: 102.7 / 2177.3866
  24838. }
  24839. },
  24840. back: {
  24841. height: math.unit(1.72, "m"),
  24842. weight: math.unit(80, "lb"),
  24843. name: "Back",
  24844. image: {
  24845. source: "./media/characters/voski/back.svg",
  24846. extra: 2104 / 2051,
  24847. bottom: 10.45 / 2113.63
  24848. }
  24849. },
  24850. },
  24851. [
  24852. {
  24853. name: "Normal",
  24854. height: math.unit(1.72, "m")
  24855. },
  24856. {
  24857. name: "Macro",
  24858. height: math.unit(55, "m"),
  24859. default: true
  24860. },
  24861. {
  24862. name: "Macro+",
  24863. height: math.unit(300, "m")
  24864. },
  24865. {
  24866. name: "Macro++",
  24867. height: math.unit(700, "m")
  24868. },
  24869. {
  24870. name: "Macro+++",
  24871. height: math.unit(4500, "m")
  24872. },
  24873. {
  24874. name: "Macro++++",
  24875. height: math.unit(45, "km")
  24876. },
  24877. {
  24878. name: "Macro+++++",
  24879. height: math.unit(1220, "km")
  24880. },
  24881. ]
  24882. ))
  24883. characterMakers.push(() => makeCharacter(
  24884. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24885. {
  24886. front: {
  24887. height: math.unit(2.3, "m"),
  24888. weight: math.unit(304, "kg"),
  24889. name: "Front",
  24890. image: {
  24891. source: "./media/characters/icowom-lee/front.svg",
  24892. extra: 985 / 955,
  24893. bottom: 25.4 / 1012
  24894. }
  24895. },
  24896. fronttentacles: {
  24897. height: math.unit(2.3, "m"),
  24898. weight: math.unit(304, "kg"),
  24899. name: "Front-tentacles",
  24900. image: {
  24901. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24902. extra: 985 / 955,
  24903. bottom: 25.4 / 1012
  24904. }
  24905. },
  24906. back: {
  24907. height: math.unit(2.3, "m"),
  24908. weight: math.unit(304, "kg"),
  24909. name: "Back",
  24910. image: {
  24911. source: "./media/characters/icowom-lee/back.svg",
  24912. extra: 975 / 954,
  24913. bottom: 9.5 / 985
  24914. }
  24915. },
  24916. backtentacles: {
  24917. height: math.unit(2.3, "m"),
  24918. weight: math.unit(304, "kg"),
  24919. name: "Back-tentacles",
  24920. image: {
  24921. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24922. extra: 975 / 954,
  24923. bottom: 9.5 / 985
  24924. }
  24925. },
  24926. frontDressed: {
  24927. height: math.unit(2.3, "m"),
  24928. weight: math.unit(304, "kg"),
  24929. name: "Front (Dressed)",
  24930. image: {
  24931. source: "./media/characters/icowom-lee/front-dressed.svg",
  24932. extra: 3076 / 2933,
  24933. bottom: 51.4 / 3125.1889
  24934. }
  24935. },
  24936. rump: {
  24937. height: math.unit(0.776, "meters"),
  24938. name: "Rump",
  24939. image: {
  24940. source: "./media/characters/icowom-lee/rump.svg"
  24941. }
  24942. },
  24943. genitals: {
  24944. height: math.unit(0.78, "meters"),
  24945. name: "Genitals",
  24946. image: {
  24947. source: "./media/characters/icowom-lee/genitals.svg"
  24948. }
  24949. },
  24950. },
  24951. [
  24952. {
  24953. name: "Normal",
  24954. height: math.unit(2.3, "meters"),
  24955. default: true
  24956. },
  24957. {
  24958. name: "Macro",
  24959. height: math.unit(94, "meters"),
  24960. default: true
  24961. },
  24962. ]
  24963. ))
  24964. characterMakers.push(() => makeCharacter(
  24965. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24966. {
  24967. front: {
  24968. height: math.unit(22, "meters"),
  24969. weight: math.unit(21000, "kg"),
  24970. name: "Front",
  24971. image: {
  24972. source: "./media/characters/shock-diamond/front.svg",
  24973. extra: 2204 / 2053,
  24974. bottom: 65 / 2239.47
  24975. }
  24976. },
  24977. frontNude: {
  24978. height: math.unit(22, "meters"),
  24979. weight: math.unit(21000, "kg"),
  24980. name: "Front (Nude)",
  24981. image: {
  24982. source: "./media/characters/shock-diamond/front-nude.svg",
  24983. extra: 2514 / 2285,
  24984. bottom: 13 / 2527.56
  24985. }
  24986. },
  24987. },
  24988. [
  24989. {
  24990. name: "Normal",
  24991. height: math.unit(3, "meters")
  24992. },
  24993. {
  24994. name: "Macro",
  24995. height: math.unit(22, "meters"),
  24996. default: true
  24997. },
  24998. ]
  24999. ))
  25000. characterMakers.push(() => makeCharacter(
  25001. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25002. {
  25003. front: {
  25004. height: math.unit(5 + 4/12, "feet"),
  25005. weight: math.unit(125, "lb"),
  25006. name: "Front",
  25007. image: {
  25008. source: "./media/characters/rory/front.svg",
  25009. extra: 1790/1681,
  25010. bottom: 66/1856
  25011. },
  25012. form: "normal",
  25013. default: true
  25014. },
  25015. back: {
  25016. height: math.unit(5 + 4/12, "feet"),
  25017. weight: math.unit(125, "lb"),
  25018. name: "Back",
  25019. image: {
  25020. source: "./media/characters/rory/back.svg",
  25021. extra: 1805/1690,
  25022. bottom: 56/1861
  25023. },
  25024. form: "normal"
  25025. },
  25026. frontDressed: {
  25027. height: math.unit(5 + 4/12, "feet"),
  25028. weight: math.unit(125, "lb"),
  25029. name: "Front (Dressed)",
  25030. image: {
  25031. source: "./media/characters/rory/front-dressed.svg",
  25032. extra: 1790/1681,
  25033. bottom: 66/1856
  25034. },
  25035. form: "normal"
  25036. },
  25037. backDressed: {
  25038. height: math.unit(5 + 4/12, "feet"),
  25039. weight: math.unit(125, "lb"),
  25040. name: "Back (Dressed)",
  25041. image: {
  25042. source: "./media/characters/rory/back-dressed.svg",
  25043. extra: 1805/1690,
  25044. bottom: 56/1861
  25045. },
  25046. form: "normal"
  25047. },
  25048. frontNsfw: {
  25049. height: math.unit(5 + 4/12, "feet"),
  25050. weight: math.unit(125, "lb"),
  25051. name: "Front (NSFW)",
  25052. image: {
  25053. source: "./media/characters/rory/front-nsfw.svg",
  25054. extra: 1790/1681,
  25055. bottom: 66/1856
  25056. },
  25057. form: "normal"
  25058. },
  25059. backNsfw: {
  25060. height: math.unit(5 + 4/12, "feet"),
  25061. weight: math.unit(125, "lb"),
  25062. name: "Back (NSFW)",
  25063. image: {
  25064. source: "./media/characters/rory/back-nsfw.svg",
  25065. extra: 1805/1690,
  25066. bottom: 56/1861
  25067. },
  25068. form: "normal"
  25069. },
  25070. dick: {
  25071. height: math.unit(0.8, "feet"),
  25072. name: "Dick",
  25073. image: {
  25074. source: "./media/characters/rory/dick.svg"
  25075. },
  25076. form: "normal"
  25077. },
  25078. thicc_front: {
  25079. height: math.unit(5 + 4/12, "feet"),
  25080. weight: math.unit(195, "lb"),
  25081. name: "Front",
  25082. image: {
  25083. source: "./media/characters/rory/thicc-front.svg",
  25084. extra: 1220/1100,
  25085. bottom: 103/1323
  25086. },
  25087. form: "thicc",
  25088. default: true
  25089. },
  25090. thicc_back: {
  25091. height: math.unit(5 + 4/12, "feet"),
  25092. weight: math.unit(195, "lb"),
  25093. name: "Back",
  25094. image: {
  25095. source: "./media/characters/rory/thicc-back.svg",
  25096. extra: 1166/1086,
  25097. bottom: 35/1201
  25098. },
  25099. form: "thicc"
  25100. },
  25101. },
  25102. [
  25103. {
  25104. name: "Micro",
  25105. height: math.unit(3, "inches"),
  25106. allForms: true
  25107. },
  25108. {
  25109. name: "Normal",
  25110. height: math.unit(5 + 4/12, "feet"),
  25111. allForms: true,
  25112. default: true
  25113. },
  25114. {
  25115. name: "Macro",
  25116. height: math.unit(90, "feet"),
  25117. allForms: true
  25118. },
  25119. {
  25120. name: "Supercharged",
  25121. height: math.unit(270, "feet"),
  25122. allForms: true
  25123. },
  25124. ],
  25125. {
  25126. "normal": {
  25127. name: "Normal",
  25128. default: true
  25129. },
  25130. "thicc": {
  25131. name: "Thicc",
  25132. },
  25133. }
  25134. ))
  25135. characterMakers.push(() => makeCharacter(
  25136. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25137. {
  25138. front: {
  25139. height: math.unit(5 + 9 / 12, "feet"),
  25140. weight: math.unit(190, "lb"),
  25141. name: "Front",
  25142. image: {
  25143. source: "./media/characters/sprisk/front.svg",
  25144. extra: 1225 / 1180,
  25145. bottom: 42.7 / 1266.4
  25146. }
  25147. },
  25148. frontNsfw: {
  25149. height: math.unit(5 + 9 / 12, "feet"),
  25150. weight: math.unit(190, "lb"),
  25151. name: "Front (NSFW)",
  25152. image: {
  25153. source: "./media/characters/sprisk/front-nsfw.svg",
  25154. extra: 1225 / 1180,
  25155. bottom: 42.7 / 1266.4
  25156. }
  25157. },
  25158. back: {
  25159. height: math.unit(5 + 9 / 12, "feet"),
  25160. weight: math.unit(190, "lb"),
  25161. name: "Back",
  25162. image: {
  25163. source: "./media/characters/sprisk/back.svg",
  25164. extra: 1247 / 1200,
  25165. bottom: 5.6 / 1253.04
  25166. }
  25167. },
  25168. },
  25169. [
  25170. {
  25171. name: "Tiny",
  25172. height: math.unit(2, "inches")
  25173. },
  25174. {
  25175. name: "Normal",
  25176. height: math.unit(5 + 9 / 12, "feet"),
  25177. default: true
  25178. },
  25179. {
  25180. name: "Mini Macro",
  25181. height: math.unit(18, "feet")
  25182. },
  25183. {
  25184. name: "Macro",
  25185. height: math.unit(100, "feet")
  25186. },
  25187. {
  25188. name: "MACRO",
  25189. height: math.unit(50, "miles")
  25190. },
  25191. {
  25192. name: "M A C R O",
  25193. height: math.unit(300, "miles")
  25194. },
  25195. ]
  25196. ))
  25197. characterMakers.push(() => makeCharacter(
  25198. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25199. {
  25200. side: {
  25201. height: math.unit(15.6, "meters"),
  25202. weight: math.unit(700000, "kg"),
  25203. name: "Side",
  25204. image: {
  25205. source: "./media/characters/bunsen/side.svg",
  25206. extra: 1644 / 358
  25207. }
  25208. },
  25209. foot: {
  25210. height: math.unit(1.611 * 1644 / 358, "meter"),
  25211. name: "Foot",
  25212. image: {
  25213. source: "./media/characters/bunsen/foot.svg"
  25214. }
  25215. },
  25216. },
  25217. [
  25218. {
  25219. name: "Small",
  25220. height: math.unit(10, "feet")
  25221. },
  25222. {
  25223. name: "Normal",
  25224. height: math.unit(15.6, "meters"),
  25225. default: true
  25226. },
  25227. ]
  25228. ))
  25229. characterMakers.push(() => makeCharacter(
  25230. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25231. {
  25232. front: {
  25233. height: math.unit(4 + 11 / 12, "feet"),
  25234. weight: math.unit(140, "lb"),
  25235. name: "Front",
  25236. image: {
  25237. source: "./media/characters/sesh/front.svg",
  25238. extra: 3420 / 3231,
  25239. bottom: 72 / 3949.5
  25240. }
  25241. },
  25242. },
  25243. [
  25244. {
  25245. name: "Normal",
  25246. height: math.unit(4 + 11 / 12, "feet")
  25247. },
  25248. {
  25249. name: "Grown",
  25250. height: math.unit(15, "feet"),
  25251. default: true
  25252. },
  25253. {
  25254. name: "Macro",
  25255. height: math.unit(1500, "feet")
  25256. },
  25257. {
  25258. name: "Megamacro",
  25259. height: math.unit(30, "miles")
  25260. },
  25261. {
  25262. name: "Continental",
  25263. height: math.unit(3000, "miles")
  25264. },
  25265. {
  25266. name: "Gravity Mass",
  25267. height: math.unit(300000, "miles")
  25268. },
  25269. {
  25270. name: "Planet Buster",
  25271. height: math.unit(30000000, "miles")
  25272. },
  25273. {
  25274. name: "Big",
  25275. height: math.unit(3000000000, "miles")
  25276. },
  25277. ]
  25278. ))
  25279. characterMakers.push(() => makeCharacter(
  25280. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25281. {
  25282. front: {
  25283. height: math.unit(9, "feet"),
  25284. weight: math.unit(350, "lb"),
  25285. name: "Front",
  25286. image: {
  25287. source: "./media/characters/pepper/front.svg",
  25288. extra: 1448 / 1312,
  25289. bottom: 9.4 / 1457.88
  25290. }
  25291. },
  25292. back: {
  25293. height: math.unit(9, "feet"),
  25294. weight: math.unit(350, "lb"),
  25295. name: "Back",
  25296. image: {
  25297. source: "./media/characters/pepper/back.svg",
  25298. extra: 1423 / 1300,
  25299. bottom: 4.6 / 1429
  25300. }
  25301. },
  25302. maw: {
  25303. height: math.unit(0.932, "feet"),
  25304. name: "Maw",
  25305. image: {
  25306. source: "./media/characters/pepper/maw.svg"
  25307. }
  25308. },
  25309. },
  25310. [
  25311. {
  25312. name: "Normal",
  25313. height: math.unit(9, "feet"),
  25314. default: true
  25315. },
  25316. ]
  25317. ))
  25318. characterMakers.push(() => makeCharacter(
  25319. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25320. {
  25321. front: {
  25322. height: math.unit(6, "feet"),
  25323. weight: math.unit(150, "lb"),
  25324. name: "Front",
  25325. image: {
  25326. source: "./media/characters/maelstrom/front.svg",
  25327. extra: 2100 / 1883,
  25328. bottom: 94 / 2196.7
  25329. }
  25330. },
  25331. },
  25332. [
  25333. {
  25334. name: "Less Kaiju",
  25335. height: math.unit(200, "feet")
  25336. },
  25337. {
  25338. name: "Kaiju",
  25339. height: math.unit(400, "feet"),
  25340. default: true
  25341. },
  25342. {
  25343. name: "Kaiju-er",
  25344. height: math.unit(600, "feet")
  25345. },
  25346. ]
  25347. ))
  25348. characterMakers.push(() => makeCharacter(
  25349. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25350. {
  25351. front: {
  25352. height: math.unit(6 + 5 / 12, "feet"),
  25353. weight: math.unit(180, "lb"),
  25354. name: "Front",
  25355. image: {
  25356. source: "./media/characters/lexir/front.svg",
  25357. extra: 180 / 172,
  25358. bottom: 12 / 192
  25359. }
  25360. },
  25361. back: {
  25362. height: math.unit(6 + 5 / 12, "feet"),
  25363. weight: math.unit(180, "lb"),
  25364. name: "Back",
  25365. image: {
  25366. source: "./media/characters/lexir/back.svg",
  25367. extra: 1273/1201,
  25368. bottom: 39/1312
  25369. }
  25370. },
  25371. },
  25372. [
  25373. {
  25374. name: "Very Smal",
  25375. height: math.unit(1, "nm")
  25376. },
  25377. {
  25378. name: "Normal",
  25379. height: math.unit(6 + 5 / 12, "feet"),
  25380. default: true
  25381. },
  25382. {
  25383. name: "Macro",
  25384. height: math.unit(1, "mile")
  25385. },
  25386. {
  25387. name: "Megamacro",
  25388. height: math.unit(50, "miles")
  25389. },
  25390. ]
  25391. ))
  25392. characterMakers.push(() => makeCharacter(
  25393. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25394. {
  25395. front: {
  25396. height: math.unit(1.5, "meters"),
  25397. weight: math.unit(100, "lb"),
  25398. name: "Front",
  25399. image: {
  25400. source: "./media/characters/maksio/front.svg",
  25401. extra: 1549 / 1531,
  25402. bottom: 123.7 / 1674.5429
  25403. }
  25404. },
  25405. back: {
  25406. height: math.unit(1.5, "meters"),
  25407. weight: math.unit(100, "lb"),
  25408. name: "Back",
  25409. image: {
  25410. source: "./media/characters/maksio/back.svg",
  25411. extra: 1541 / 1509,
  25412. bottom: 97 / 1639
  25413. }
  25414. },
  25415. hand: {
  25416. height: math.unit(0.621, "feet"),
  25417. name: "Hand",
  25418. image: {
  25419. source: "./media/characters/maksio/hand.svg"
  25420. }
  25421. },
  25422. foot: {
  25423. height: math.unit(1.611, "feet"),
  25424. name: "Foot",
  25425. image: {
  25426. source: "./media/characters/maksio/foot.svg"
  25427. }
  25428. },
  25429. },
  25430. [
  25431. {
  25432. name: "Shrunken",
  25433. height: math.unit(10, "cm")
  25434. },
  25435. {
  25436. name: "Normal",
  25437. height: math.unit(150, "cm"),
  25438. default: true
  25439. },
  25440. ]
  25441. ))
  25442. characterMakers.push(() => makeCharacter(
  25443. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25444. {
  25445. front: {
  25446. height: math.unit(100, "feet"),
  25447. name: "Front",
  25448. image: {
  25449. source: "./media/characters/erza-bear/front.svg",
  25450. extra: 2449 / 2390,
  25451. bottom: 46 / 2494
  25452. }
  25453. },
  25454. back: {
  25455. height: math.unit(100, "feet"),
  25456. name: "Back",
  25457. image: {
  25458. source: "./media/characters/erza-bear/back.svg",
  25459. extra: 2489 / 2430,
  25460. bottom: 85.4 / 2480
  25461. }
  25462. },
  25463. tail: {
  25464. height: math.unit(42, "feet"),
  25465. name: "Tail",
  25466. image: {
  25467. source: "./media/characters/erza-bear/tail.svg"
  25468. }
  25469. },
  25470. tongue: {
  25471. height: math.unit(8, "feet"),
  25472. name: "Tongue",
  25473. image: {
  25474. source: "./media/characters/erza-bear/tongue.svg"
  25475. }
  25476. },
  25477. dick: {
  25478. height: math.unit(10.5, "feet"),
  25479. name: "Dick",
  25480. image: {
  25481. source: "./media/characters/erza-bear/dick.svg"
  25482. }
  25483. },
  25484. dickVertical: {
  25485. height: math.unit(16.9, "feet"),
  25486. name: "Dick (Vertical)",
  25487. image: {
  25488. source: "./media/characters/erza-bear/dick-vertical.svg"
  25489. }
  25490. },
  25491. },
  25492. [
  25493. {
  25494. name: "Macro",
  25495. height: math.unit(100, "feet"),
  25496. default: true
  25497. },
  25498. ]
  25499. ))
  25500. characterMakers.push(() => makeCharacter(
  25501. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25502. {
  25503. front: {
  25504. height: math.unit(172, "cm"),
  25505. weight: math.unit(73, "kg"),
  25506. name: "Front",
  25507. image: {
  25508. source: "./media/characters/violet-flor/front.svg",
  25509. extra: 1530 / 1442,
  25510. bottom: 61.9 / 1588.8
  25511. }
  25512. },
  25513. back: {
  25514. height: math.unit(180, "cm"),
  25515. weight: math.unit(73, "kg"),
  25516. name: "Back",
  25517. image: {
  25518. source: "./media/characters/violet-flor/back.svg",
  25519. extra: 1692 / 1630,
  25520. bottom: 20 / 1712
  25521. }
  25522. },
  25523. },
  25524. [
  25525. {
  25526. name: "Normal",
  25527. height: math.unit(172, "cm"),
  25528. default: true
  25529. },
  25530. ]
  25531. ))
  25532. characterMakers.push(() => makeCharacter(
  25533. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25534. {
  25535. front: {
  25536. height: math.unit(6, "feet"),
  25537. weight: math.unit(220, "lb"),
  25538. name: "Front",
  25539. image: {
  25540. source: "./media/characters/lynn-rhea/front.svg",
  25541. extra: 310 / 273
  25542. }
  25543. },
  25544. back: {
  25545. height: math.unit(6, "feet"),
  25546. weight: math.unit(220, "lb"),
  25547. name: "Back",
  25548. image: {
  25549. source: "./media/characters/lynn-rhea/back.svg",
  25550. extra: 310 / 273
  25551. }
  25552. },
  25553. dicks: {
  25554. height: math.unit(0.9, "feet"),
  25555. name: "Dicks",
  25556. image: {
  25557. source: "./media/characters/lynn-rhea/dicks.svg"
  25558. }
  25559. },
  25560. slit: {
  25561. height: math.unit(0.4, "feet"),
  25562. name: "Slit",
  25563. image: {
  25564. source: "./media/characters/lynn-rhea/slit.svg"
  25565. }
  25566. },
  25567. },
  25568. [
  25569. {
  25570. name: "Micro",
  25571. height: math.unit(1, "inch")
  25572. },
  25573. {
  25574. name: "Macro",
  25575. height: math.unit(60, "feet"),
  25576. default: true
  25577. },
  25578. {
  25579. name: "Megamacro",
  25580. height: math.unit(2, "miles")
  25581. },
  25582. {
  25583. name: "Gigamacro",
  25584. height: math.unit(3, "earths")
  25585. },
  25586. {
  25587. name: "Galactic",
  25588. height: math.unit(0.8, "galaxies")
  25589. },
  25590. ]
  25591. ))
  25592. characterMakers.push(() => makeCharacter(
  25593. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25594. {
  25595. front: {
  25596. height: math.unit(1600, "feet"),
  25597. weight: math.unit(85758785169, "kg"),
  25598. name: "Front",
  25599. image: {
  25600. source: "./media/characters/valathos/front.svg",
  25601. extra: 1451 / 1339
  25602. }
  25603. },
  25604. },
  25605. [
  25606. {
  25607. name: "Macro",
  25608. height: math.unit(1600, "feet"),
  25609. default: true
  25610. },
  25611. ]
  25612. ))
  25613. characterMakers.push(() => makeCharacter(
  25614. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25615. {
  25616. front: {
  25617. height: math.unit(7 + 5 / 12, "feet"),
  25618. weight: math.unit(300, "lb"),
  25619. name: "Front",
  25620. image: {
  25621. source: "./media/characters/azula/front.svg",
  25622. extra: 3208 / 2880,
  25623. bottom: 80.2 / 3277
  25624. }
  25625. },
  25626. back: {
  25627. height: math.unit(7 + 5 / 12, "feet"),
  25628. weight: math.unit(300, "lb"),
  25629. name: "Back",
  25630. image: {
  25631. source: "./media/characters/azula/back.svg",
  25632. extra: 3169 / 2822,
  25633. bottom: 150.6 / 3321
  25634. }
  25635. },
  25636. },
  25637. [
  25638. {
  25639. name: "Normal",
  25640. height: math.unit(7 + 5 / 12, "feet"),
  25641. default: true
  25642. },
  25643. {
  25644. name: "Big",
  25645. height: math.unit(20, "feet")
  25646. },
  25647. ]
  25648. ))
  25649. characterMakers.push(() => makeCharacter(
  25650. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25651. {
  25652. front: {
  25653. height: math.unit(5 + 1 / 12, "feet"),
  25654. weight: math.unit(110, "lb"),
  25655. name: "Front",
  25656. image: {
  25657. source: "./media/characters/rupert/front.svg",
  25658. extra: 1549 / 1495,
  25659. bottom: 54.2 / 1604.4
  25660. }
  25661. },
  25662. },
  25663. [
  25664. {
  25665. name: "Normal",
  25666. height: math.unit(5 + 1 / 12, "feet"),
  25667. default: true
  25668. },
  25669. ]
  25670. ))
  25671. characterMakers.push(() => makeCharacter(
  25672. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25673. {
  25674. front: {
  25675. height: math.unit(8 + 4 / 12, "feet"),
  25676. weight: math.unit(350, "lb"),
  25677. name: "Front",
  25678. image: {
  25679. source: "./media/characters/sheera-castellar/front.svg",
  25680. extra: 1957 / 1894,
  25681. bottom: 26.97 / 1975.017
  25682. }
  25683. },
  25684. side: {
  25685. height: math.unit(8 + 4 / 12, "feet"),
  25686. weight: math.unit(350, "lb"),
  25687. name: "Side",
  25688. image: {
  25689. source: "./media/characters/sheera-castellar/side.svg",
  25690. extra: 1957 / 1894
  25691. }
  25692. },
  25693. back: {
  25694. height: math.unit(8 + 4 / 12, "feet"),
  25695. weight: math.unit(350, "lb"),
  25696. name: "Back",
  25697. image: {
  25698. source: "./media/characters/sheera-castellar/back.svg",
  25699. extra: 1957 / 1894
  25700. }
  25701. },
  25702. angled: {
  25703. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25704. weight: math.unit(350, "lb"),
  25705. name: "Angled",
  25706. image: {
  25707. source: "./media/characters/sheera-castellar/angled.svg",
  25708. extra: 1807 / 1707,
  25709. bottom: 68 / 1875
  25710. }
  25711. },
  25712. genitals: {
  25713. height: math.unit(2.2, "feet"),
  25714. name: "Genitals",
  25715. image: {
  25716. source: "./media/characters/sheera-castellar/genitals.svg"
  25717. }
  25718. },
  25719. taur: {
  25720. height: math.unit(10 + 6/12, "feet"),
  25721. name: "Taur",
  25722. image: {
  25723. source: "./media/characters/sheera-castellar/taur.svg",
  25724. extra: 2017/1909,
  25725. bottom: 185/2202
  25726. }
  25727. },
  25728. },
  25729. [
  25730. {
  25731. name: "Normal",
  25732. height: math.unit(8 + 4 / 12, "feet")
  25733. },
  25734. {
  25735. name: "Macro",
  25736. height: math.unit(150, "feet"),
  25737. default: true
  25738. },
  25739. {
  25740. name: "Macro+",
  25741. height: math.unit(800, "feet")
  25742. },
  25743. ]
  25744. ))
  25745. characterMakers.push(() => makeCharacter(
  25746. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25747. {
  25748. front: {
  25749. height: math.unit(6, "feet"),
  25750. weight: math.unit(150, "lb"),
  25751. name: "Front",
  25752. image: {
  25753. source: "./media/characters/jaipur/front.svg",
  25754. extra: 3860 / 3731,
  25755. bottom: 287 / 4140
  25756. }
  25757. },
  25758. back: {
  25759. height: math.unit(6, "feet"),
  25760. weight: math.unit(150, "lb"),
  25761. name: "Back",
  25762. image: {
  25763. source: "./media/characters/jaipur/back.svg",
  25764. extra: 1637/1561,
  25765. bottom: 154/1791
  25766. }
  25767. },
  25768. },
  25769. [
  25770. {
  25771. name: "Normal",
  25772. height: math.unit(1.85, "meters"),
  25773. default: true
  25774. },
  25775. {
  25776. name: "Macro",
  25777. height: math.unit(150, "meters")
  25778. },
  25779. {
  25780. name: "Macro+",
  25781. height: math.unit(0.5, "miles")
  25782. },
  25783. {
  25784. name: "Macro++",
  25785. height: math.unit(2.5, "miles")
  25786. },
  25787. {
  25788. name: "Macro+++",
  25789. height: math.unit(12, "miles")
  25790. },
  25791. {
  25792. name: "Macro++++",
  25793. height: math.unit(120, "miles")
  25794. },
  25795. {
  25796. name: "Macro+++++",
  25797. height: math.unit(1200, "miles")
  25798. },
  25799. ]
  25800. ))
  25801. characterMakers.push(() => makeCharacter(
  25802. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25803. {
  25804. front: {
  25805. height: math.unit(6, "feet"),
  25806. weight: math.unit(150, "lb"),
  25807. name: "Front",
  25808. image: {
  25809. source: "./media/characters/sheila-wolf/front.svg",
  25810. extra: 1931 / 1808,
  25811. bottom: 29.5 / 1960
  25812. }
  25813. },
  25814. dick: {
  25815. height: math.unit(1.464, "feet"),
  25816. name: "Dick",
  25817. image: {
  25818. source: "./media/characters/sheila-wolf/dick.svg"
  25819. }
  25820. },
  25821. muzzle: {
  25822. height: math.unit(0.513, "feet"),
  25823. name: "Muzzle",
  25824. image: {
  25825. source: "./media/characters/sheila-wolf/muzzle.svg"
  25826. }
  25827. },
  25828. },
  25829. [
  25830. {
  25831. name: "Macro",
  25832. height: math.unit(70, "feet"),
  25833. default: true
  25834. },
  25835. ]
  25836. ))
  25837. characterMakers.push(() => makeCharacter(
  25838. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25839. {
  25840. front: {
  25841. height: math.unit(32, "meters"),
  25842. weight: math.unit(300000, "kg"),
  25843. name: "Front",
  25844. image: {
  25845. source: "./media/characters/almor/front.svg",
  25846. extra: 1408 / 1322,
  25847. bottom: 94.6 / 1506.5
  25848. }
  25849. },
  25850. },
  25851. [
  25852. {
  25853. name: "Macro",
  25854. height: math.unit(32, "meters"),
  25855. default: true
  25856. },
  25857. ]
  25858. ))
  25859. characterMakers.push(() => makeCharacter(
  25860. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25861. {
  25862. front: {
  25863. height: math.unit(7, "feet"),
  25864. weight: math.unit(200, "lb"),
  25865. name: "Front",
  25866. image: {
  25867. source: "./media/characters/silver/front.svg",
  25868. extra: 472.1 / 450.5,
  25869. bottom: 26.5 / 499.424
  25870. }
  25871. },
  25872. },
  25873. [
  25874. {
  25875. name: "Normal",
  25876. height: math.unit(7, "feet"),
  25877. default: true
  25878. },
  25879. {
  25880. name: "Macro",
  25881. height: math.unit(800, "feet")
  25882. },
  25883. {
  25884. name: "Megamacro",
  25885. height: math.unit(250, "miles")
  25886. },
  25887. ]
  25888. ))
  25889. characterMakers.push(() => makeCharacter(
  25890. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25891. {
  25892. front: {
  25893. height: math.unit(6, "feet"),
  25894. weight: math.unit(150, "lb"),
  25895. name: "Front",
  25896. image: {
  25897. source: "./media/characters/pliskin/front.svg",
  25898. extra: 1469 / 1359,
  25899. bottom: 70 / 1540
  25900. }
  25901. },
  25902. },
  25903. [
  25904. {
  25905. name: "Micro",
  25906. height: math.unit(3, "inches")
  25907. },
  25908. {
  25909. name: "Normal",
  25910. height: math.unit(5 + 11 / 12, "feet"),
  25911. default: true
  25912. },
  25913. {
  25914. name: "Macro",
  25915. height: math.unit(120, "feet")
  25916. },
  25917. ]
  25918. ))
  25919. characterMakers.push(() => makeCharacter(
  25920. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25921. {
  25922. front: {
  25923. height: math.unit(6, "feet"),
  25924. weight: math.unit(150, "lb"),
  25925. name: "Front",
  25926. image: {
  25927. source: "./media/characters/sammy/front.svg",
  25928. extra: 1193 / 1089,
  25929. bottom: 30.5 / 1226
  25930. }
  25931. },
  25932. },
  25933. [
  25934. {
  25935. name: "Macro",
  25936. height: math.unit(1700, "feet"),
  25937. default: true
  25938. },
  25939. {
  25940. name: "Examacro",
  25941. height: math.unit(2.5e9, "lightyears")
  25942. },
  25943. ]
  25944. ))
  25945. characterMakers.push(() => makeCharacter(
  25946. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25947. {
  25948. front: {
  25949. height: math.unit(21, "meters"),
  25950. weight: math.unit(12, "tonnes"),
  25951. name: "Front",
  25952. image: {
  25953. source: "./media/characters/kuru/front.svg",
  25954. extra: 4301 / 3785,
  25955. bottom: 371.3 / 4691
  25956. }
  25957. },
  25958. },
  25959. [
  25960. {
  25961. name: "Macro",
  25962. height: math.unit(21, "meters"),
  25963. default: true
  25964. },
  25965. ]
  25966. ))
  25967. characterMakers.push(() => makeCharacter(
  25968. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25969. {
  25970. front: {
  25971. height: math.unit(23, "meters"),
  25972. weight: math.unit(12.2, "tonnes"),
  25973. name: "Front",
  25974. image: {
  25975. source: "./media/characters/rakka/front.svg",
  25976. extra: 4670 / 4169,
  25977. bottom: 301 / 4968.7
  25978. }
  25979. },
  25980. },
  25981. [
  25982. {
  25983. name: "Macro",
  25984. height: math.unit(23, "meters"),
  25985. default: true
  25986. },
  25987. ]
  25988. ))
  25989. characterMakers.push(() => makeCharacter(
  25990. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25991. {
  25992. front: {
  25993. height: math.unit(6, "feet"),
  25994. weight: math.unit(150, "lb"),
  25995. name: "Front",
  25996. image: {
  25997. source: "./media/characters/rhys-feline/front.svg",
  25998. extra: 2488 / 2308,
  25999. bottom: 35.67 / 2519.19
  26000. }
  26001. },
  26002. },
  26003. [
  26004. {
  26005. name: "Really Small",
  26006. height: math.unit(1, "nm")
  26007. },
  26008. {
  26009. name: "Micro",
  26010. height: math.unit(4, "inches")
  26011. },
  26012. {
  26013. name: "Normal",
  26014. height: math.unit(4 + 10 / 12, "feet"),
  26015. default: true
  26016. },
  26017. {
  26018. name: "Macro",
  26019. height: math.unit(100, "feet")
  26020. },
  26021. {
  26022. name: "Megamacto",
  26023. height: math.unit(50, "miles")
  26024. },
  26025. ]
  26026. ))
  26027. characterMakers.push(() => makeCharacter(
  26028. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26029. {
  26030. side: {
  26031. height: math.unit(30, "feet"),
  26032. weight: math.unit(35000, "kg"),
  26033. name: "Side",
  26034. image: {
  26035. source: "./media/characters/alydar/side.svg",
  26036. extra: 234 / 222,
  26037. bottom: 6.5 / 241
  26038. }
  26039. },
  26040. front: {
  26041. height: math.unit(30, "feet"),
  26042. weight: math.unit(35000, "kg"),
  26043. name: "Front",
  26044. image: {
  26045. source: "./media/characters/alydar/front.svg",
  26046. extra: 223.37 / 210.2,
  26047. bottom: 22.3 / 246.76
  26048. }
  26049. },
  26050. top: {
  26051. height: math.unit(64.54, "feet"),
  26052. weight: math.unit(35000, "kg"),
  26053. name: "Top",
  26054. image: {
  26055. source: "./media/characters/alydar/top.svg"
  26056. }
  26057. },
  26058. anthro: {
  26059. height: math.unit(30, "feet"),
  26060. weight: math.unit(9000, "kg"),
  26061. name: "Anthro",
  26062. image: {
  26063. source: "./media/characters/alydar/anthro.svg",
  26064. extra: 432 / 421,
  26065. bottom: 7.18 / 440
  26066. }
  26067. },
  26068. maw: {
  26069. height: math.unit(11.693, "feet"),
  26070. name: "Maw",
  26071. image: {
  26072. source: "./media/characters/alydar/maw.svg"
  26073. }
  26074. },
  26075. head: {
  26076. height: math.unit(11.693, "feet"),
  26077. name: "Head",
  26078. image: {
  26079. source: "./media/characters/alydar/head.svg"
  26080. }
  26081. },
  26082. headAlt: {
  26083. height: math.unit(12.861, "feet"),
  26084. name: "Head (Alt)",
  26085. image: {
  26086. source: "./media/characters/alydar/head-alt.svg"
  26087. }
  26088. },
  26089. wing: {
  26090. height: math.unit(20.712, "feet"),
  26091. name: "Wing",
  26092. image: {
  26093. source: "./media/characters/alydar/wing.svg"
  26094. }
  26095. },
  26096. wingFeather: {
  26097. height: math.unit(9.662, "feet"),
  26098. name: "Wing Feather",
  26099. image: {
  26100. source: "./media/characters/alydar/wing-feather.svg"
  26101. }
  26102. },
  26103. countourFeather: {
  26104. height: math.unit(4.154, "feet"),
  26105. name: "Contour Feather",
  26106. image: {
  26107. source: "./media/characters/alydar/contour-feather.svg"
  26108. }
  26109. },
  26110. },
  26111. [
  26112. {
  26113. name: "Diplomatic",
  26114. height: math.unit(13, "feet"),
  26115. default: true
  26116. },
  26117. {
  26118. name: "Small",
  26119. height: math.unit(30, "feet")
  26120. },
  26121. {
  26122. name: "Normal",
  26123. height: math.unit(95, "feet"),
  26124. default: true
  26125. },
  26126. {
  26127. name: "Large",
  26128. height: math.unit(285, "feet")
  26129. },
  26130. {
  26131. name: "Incomprehensible",
  26132. height: math.unit(450, "megameters")
  26133. },
  26134. ]
  26135. ))
  26136. characterMakers.push(() => makeCharacter(
  26137. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26138. {
  26139. side: {
  26140. height: math.unit(11, "feet"),
  26141. weight: math.unit(1750, "kg"),
  26142. name: "Side",
  26143. image: {
  26144. source: "./media/characters/selicia/side.svg",
  26145. extra: 440 / 396,
  26146. bottom: 24.8 / 465.979
  26147. }
  26148. },
  26149. maw: {
  26150. height: math.unit(4.665, "feet"),
  26151. name: "Maw",
  26152. image: {
  26153. source: "./media/characters/selicia/maw.svg"
  26154. }
  26155. },
  26156. },
  26157. [
  26158. {
  26159. name: "Normal",
  26160. height: math.unit(11, "feet"),
  26161. default: true
  26162. },
  26163. ]
  26164. ))
  26165. characterMakers.push(() => makeCharacter(
  26166. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26167. {
  26168. side: {
  26169. height: math.unit(2 + 6 / 12, "feet"),
  26170. weight: math.unit(30, "lb"),
  26171. name: "Side",
  26172. image: {
  26173. source: "./media/characters/layla/side.svg",
  26174. extra: 244 / 188,
  26175. bottom: 18.2 / 262.1
  26176. }
  26177. },
  26178. back: {
  26179. height: math.unit(2 + 6 / 12, "feet"),
  26180. weight: math.unit(30, "lb"),
  26181. name: "Back",
  26182. image: {
  26183. source: "./media/characters/layla/back.svg",
  26184. extra: 308 / 241.5,
  26185. bottom: 8.9 / 316.8
  26186. }
  26187. },
  26188. cumming: {
  26189. height: math.unit(2 + 6 / 12, "feet"),
  26190. weight: math.unit(30, "lb"),
  26191. name: "Cumming",
  26192. image: {
  26193. source: "./media/characters/layla/cumming.svg",
  26194. extra: 342 / 279,
  26195. bottom: 595 / 938
  26196. }
  26197. },
  26198. dickFlaccid: {
  26199. height: math.unit(2.595, "feet"),
  26200. name: "Flaccid Genitals",
  26201. image: {
  26202. source: "./media/characters/layla/dick-flaccid.svg"
  26203. }
  26204. },
  26205. dickErect: {
  26206. height: math.unit(2.359, "feet"),
  26207. name: "Erect Genitals",
  26208. image: {
  26209. source: "./media/characters/layla/dick-erect.svg"
  26210. }
  26211. },
  26212. dragon: {
  26213. height: math.unit(40, "feet"),
  26214. name: "Dragon",
  26215. image: {
  26216. source: "./media/characters/layla/dragon.svg",
  26217. extra: 610/535,
  26218. bottom: 367/977
  26219. }
  26220. },
  26221. taur: {
  26222. height: math.unit(30, "feet"),
  26223. name: "Taur",
  26224. image: {
  26225. source: "./media/characters/layla/taur.svg",
  26226. extra: 1268/1199,
  26227. bottom: 112/1380
  26228. }
  26229. },
  26230. },
  26231. [
  26232. {
  26233. name: "Micro",
  26234. height: math.unit(1, "inch")
  26235. },
  26236. {
  26237. name: "Small",
  26238. height: math.unit(1, "foot")
  26239. },
  26240. {
  26241. name: "Normal",
  26242. height: math.unit(2 + 6 / 12, "feet"),
  26243. default: true
  26244. },
  26245. {
  26246. name: "Macro",
  26247. height: math.unit(200, "feet")
  26248. },
  26249. {
  26250. name: "Megamacro",
  26251. height: math.unit(1000, "miles")
  26252. },
  26253. {
  26254. name: "Planetary",
  26255. height: math.unit(8000, "miles")
  26256. },
  26257. {
  26258. name: "True Layla",
  26259. height: math.unit(200000 * 7, "multiverses")
  26260. },
  26261. ]
  26262. ))
  26263. characterMakers.push(() => makeCharacter(
  26264. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26265. {
  26266. back: {
  26267. height: math.unit(10.5, "feet"),
  26268. weight: math.unit(800, "lb"),
  26269. name: "Back",
  26270. image: {
  26271. source: "./media/characters/knox/back.svg",
  26272. extra: 1486 / 1089,
  26273. bottom: 107 / 1601.4
  26274. }
  26275. },
  26276. side: {
  26277. height: math.unit(10.5, "feet"),
  26278. weight: math.unit(800, "lb"),
  26279. name: "Side",
  26280. image: {
  26281. source: "./media/characters/knox/side.svg",
  26282. extra: 244 / 218,
  26283. bottom: 14 / 260
  26284. }
  26285. },
  26286. },
  26287. [
  26288. {
  26289. name: "Compact",
  26290. height: math.unit(10.5, "feet"),
  26291. default: true
  26292. },
  26293. {
  26294. name: "Dynamax",
  26295. height: math.unit(210, "feet")
  26296. },
  26297. {
  26298. name: "Full Macro",
  26299. height: math.unit(850, "feet")
  26300. },
  26301. ]
  26302. ))
  26303. characterMakers.push(() => makeCharacter(
  26304. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26305. {
  26306. front: {
  26307. height: math.unit(28, "feet"),
  26308. weight: math.unit(10500, "lb"),
  26309. name: "Front",
  26310. image: {
  26311. source: "./media/characters/kayda/front.svg",
  26312. extra: 1536 / 1428,
  26313. bottom: 68.7 / 1603
  26314. }
  26315. },
  26316. back: {
  26317. height: math.unit(28, "feet"),
  26318. weight: math.unit(10500, "lb"),
  26319. name: "Back",
  26320. image: {
  26321. source: "./media/characters/kayda/back.svg",
  26322. extra: 1557 / 1464,
  26323. bottom: 39.5 / 1597.49
  26324. }
  26325. },
  26326. dick: {
  26327. height: math.unit(3.858, "feet"),
  26328. name: "Dick",
  26329. image: {
  26330. source: "./media/characters/kayda/dick.svg"
  26331. }
  26332. },
  26333. },
  26334. [
  26335. {
  26336. name: "Macro",
  26337. height: math.unit(28, "feet"),
  26338. default: true
  26339. },
  26340. ]
  26341. ))
  26342. characterMakers.push(() => makeCharacter(
  26343. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26344. {
  26345. front: {
  26346. height: math.unit(10 + 11 / 12, "feet"),
  26347. weight: math.unit(1400, "lb"),
  26348. name: "Front",
  26349. image: {
  26350. source: "./media/characters/brian/front.svg",
  26351. extra: 737 / 692,
  26352. bottom: 55.4 / 785
  26353. }
  26354. },
  26355. },
  26356. [
  26357. {
  26358. name: "Normal",
  26359. height: math.unit(10 + 11 / 12, "feet"),
  26360. default: true
  26361. },
  26362. ]
  26363. ))
  26364. characterMakers.push(() => makeCharacter(
  26365. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26366. {
  26367. front: {
  26368. height: math.unit(5 + 8 / 12, "feet"),
  26369. weight: math.unit(140, "lb"),
  26370. name: "Front",
  26371. image: {
  26372. source: "./media/characters/khemri/front.svg",
  26373. extra: 4780 / 4059,
  26374. bottom: 80.1 / 4859.25
  26375. }
  26376. },
  26377. },
  26378. [
  26379. {
  26380. name: "Micro",
  26381. height: math.unit(6, "inches")
  26382. },
  26383. {
  26384. name: "Normal",
  26385. height: math.unit(5 + 8 / 12, "feet"),
  26386. default: true
  26387. },
  26388. ]
  26389. ))
  26390. characterMakers.push(() => makeCharacter(
  26391. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26392. {
  26393. front: {
  26394. height: math.unit(13, "feet"),
  26395. weight: math.unit(1700, "lb"),
  26396. name: "Front",
  26397. image: {
  26398. source: "./media/characters/felix-braveheart/front.svg",
  26399. extra: 1222 / 1157,
  26400. bottom: 53.2 / 1280
  26401. }
  26402. },
  26403. back: {
  26404. height: math.unit(13, "feet"),
  26405. weight: math.unit(1700, "lb"),
  26406. name: "Back",
  26407. image: {
  26408. source: "./media/characters/felix-braveheart/back.svg",
  26409. extra: 1277 / 1203,
  26410. bottom: 50.2 / 1327
  26411. }
  26412. },
  26413. feral: {
  26414. height: math.unit(6, "feet"),
  26415. weight: math.unit(400, "lb"),
  26416. name: "Feral",
  26417. image: {
  26418. source: "./media/characters/felix-braveheart/feral.svg",
  26419. extra: 682 / 625,
  26420. bottom: 6.9 / 688
  26421. }
  26422. },
  26423. },
  26424. [
  26425. {
  26426. name: "Normal",
  26427. height: math.unit(13, "feet"),
  26428. default: true
  26429. },
  26430. ]
  26431. ))
  26432. characterMakers.push(() => makeCharacter(
  26433. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26434. {
  26435. side: {
  26436. height: math.unit(5 + 11 / 12, "feet"),
  26437. weight: math.unit(1400, "lb"),
  26438. name: "Side",
  26439. image: {
  26440. source: "./media/characters/shadow-blade/side.svg",
  26441. extra: 1726 / 1267,
  26442. bottom: 58.4 / 1785
  26443. }
  26444. },
  26445. },
  26446. [
  26447. {
  26448. name: "Normal",
  26449. height: math.unit(5 + 11 / 12, "feet"),
  26450. default: true
  26451. },
  26452. ]
  26453. ))
  26454. characterMakers.push(() => makeCharacter(
  26455. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26456. {
  26457. front: {
  26458. height: math.unit(1 + 6 / 12, "feet"),
  26459. weight: math.unit(25, "lb"),
  26460. name: "Front",
  26461. image: {
  26462. source: "./media/characters/karla-halldor/front.svg",
  26463. extra: 1459 / 1383,
  26464. bottom: 12 / 1472
  26465. }
  26466. },
  26467. },
  26468. [
  26469. {
  26470. name: "Normal",
  26471. height: math.unit(1 + 6 / 12, "feet"),
  26472. default: true
  26473. },
  26474. ]
  26475. ))
  26476. characterMakers.push(() => makeCharacter(
  26477. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26478. {
  26479. front: {
  26480. height: math.unit(6 + 2 / 12, "feet"),
  26481. weight: math.unit(160, "lb"),
  26482. name: "Front",
  26483. image: {
  26484. source: "./media/characters/ariam/front.svg",
  26485. extra: 1073/976,
  26486. bottom: 52/1125
  26487. }
  26488. },
  26489. back: {
  26490. height: math.unit(6 + 2/12, "feet"),
  26491. weight: math.unit(160, "lb"),
  26492. name: "Back",
  26493. image: {
  26494. source: "./media/characters/ariam/back.svg",
  26495. extra: 1103/1023,
  26496. bottom: 9/1112
  26497. }
  26498. },
  26499. dressed: {
  26500. height: math.unit(6 + 2/12, "feet"),
  26501. weight: math.unit(160, "lb"),
  26502. name: "Dressed",
  26503. image: {
  26504. source: "./media/characters/ariam/dressed.svg",
  26505. extra: 1099/1009,
  26506. bottom: 25/1124
  26507. }
  26508. },
  26509. squatting: {
  26510. height: math.unit(4.1, "feet"),
  26511. weight: math.unit(160, "lb"),
  26512. name: "Squatting",
  26513. image: {
  26514. source: "./media/characters/ariam/squatting.svg",
  26515. extra: 2617 / 2112,
  26516. bottom: 61.2 / 2681,
  26517. }
  26518. },
  26519. },
  26520. [
  26521. {
  26522. name: "Normal",
  26523. height: math.unit(6 + 2 / 12, "feet"),
  26524. default: true
  26525. },
  26526. {
  26527. name: "Normal+",
  26528. height: math.unit(4, "meters")
  26529. },
  26530. {
  26531. name: "Macro",
  26532. height: math.unit(50, "meters")
  26533. },
  26534. {
  26535. name: "Macro+",
  26536. height: math.unit(100, "meters")
  26537. },
  26538. {
  26539. name: "Megamacro",
  26540. height: math.unit(20, "km")
  26541. },
  26542. {
  26543. name: "Caretaker",
  26544. height: math.unit(444, "megameters")
  26545. },
  26546. ]
  26547. ))
  26548. characterMakers.push(() => makeCharacter(
  26549. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26550. {
  26551. front: {
  26552. height: math.unit(1.67, "meters"),
  26553. weight: math.unit(140, "lb"),
  26554. name: "Front",
  26555. image: {
  26556. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26557. extra: 438 / 410,
  26558. bottom: 0.75 / 439
  26559. }
  26560. },
  26561. },
  26562. [
  26563. {
  26564. name: "Shrunken",
  26565. height: math.unit(7.6, "cm")
  26566. },
  26567. {
  26568. name: "Human Scale",
  26569. height: math.unit(1.67, "meters")
  26570. },
  26571. {
  26572. name: "Wolxi Scale",
  26573. height: math.unit(36.7, "meters"),
  26574. default: true
  26575. },
  26576. ]
  26577. ))
  26578. characterMakers.push(() => makeCharacter(
  26579. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26580. {
  26581. front: {
  26582. height: math.unit(1.73, "meters"),
  26583. weight: math.unit(240, "lb"),
  26584. name: "Front",
  26585. image: {
  26586. source: "./media/characters/izue-two-mothers/front.svg",
  26587. extra: 469 / 437,
  26588. bottom: 1.24 / 470.6
  26589. }
  26590. },
  26591. },
  26592. [
  26593. {
  26594. name: "Shrunken",
  26595. height: math.unit(7.86, "cm")
  26596. },
  26597. {
  26598. name: "Human Scale",
  26599. height: math.unit(1.73, "meters")
  26600. },
  26601. {
  26602. name: "Wolxi Scale",
  26603. height: math.unit(38, "meters"),
  26604. default: true
  26605. },
  26606. ]
  26607. ))
  26608. characterMakers.push(() => makeCharacter(
  26609. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26610. {
  26611. front: {
  26612. height: math.unit(1.55, "meters"),
  26613. weight: math.unit(120, "lb"),
  26614. name: "Front",
  26615. image: {
  26616. source: "./media/characters/teeku-love-shack/front.svg",
  26617. extra: 387 / 362,
  26618. bottom: 1.51 / 388
  26619. }
  26620. },
  26621. },
  26622. [
  26623. {
  26624. name: "Shrunken",
  26625. height: math.unit(7, "cm")
  26626. },
  26627. {
  26628. name: "Human Scale",
  26629. height: math.unit(1.55, "meters")
  26630. },
  26631. {
  26632. name: "Wolxi Scale",
  26633. height: math.unit(34.1, "meters"),
  26634. default: true
  26635. },
  26636. ]
  26637. ))
  26638. characterMakers.push(() => makeCharacter(
  26639. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26640. {
  26641. front: {
  26642. height: math.unit(1.83, "meters"),
  26643. weight: math.unit(135, "lb"),
  26644. name: "Front",
  26645. image: {
  26646. source: "./media/characters/dejma-the-red/front.svg",
  26647. extra: 480 / 458,
  26648. bottom: 1.8 / 482
  26649. }
  26650. },
  26651. },
  26652. [
  26653. {
  26654. name: "Shrunken",
  26655. height: math.unit(8.3, "cm")
  26656. },
  26657. {
  26658. name: "Human Scale",
  26659. height: math.unit(1.83, "meters")
  26660. },
  26661. {
  26662. name: "Wolxi Scale",
  26663. height: math.unit(40, "meters"),
  26664. default: true
  26665. },
  26666. ]
  26667. ))
  26668. characterMakers.push(() => makeCharacter(
  26669. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26670. {
  26671. front: {
  26672. height: math.unit(1.78, "meters"),
  26673. weight: math.unit(65, "kg"),
  26674. name: "Front",
  26675. image: {
  26676. source: "./media/characters/aki/front.svg",
  26677. extra: 452 / 415
  26678. }
  26679. },
  26680. frontNsfw: {
  26681. height: math.unit(1.78, "meters"),
  26682. weight: math.unit(65, "kg"),
  26683. name: "Front (NSFW)",
  26684. image: {
  26685. source: "./media/characters/aki/front-nsfw.svg",
  26686. extra: 452 / 415
  26687. }
  26688. },
  26689. back: {
  26690. height: math.unit(1.78, "meters"),
  26691. weight: math.unit(65, "kg"),
  26692. name: "Back",
  26693. image: {
  26694. source: "./media/characters/aki/back.svg",
  26695. extra: 452 / 415
  26696. }
  26697. },
  26698. rump: {
  26699. height: math.unit(2.05, "feet"),
  26700. name: "Rump",
  26701. image: {
  26702. source: "./media/characters/aki/rump.svg"
  26703. }
  26704. },
  26705. dick: {
  26706. height: math.unit(0.95, "feet"),
  26707. name: "Dick",
  26708. image: {
  26709. source: "./media/characters/aki/dick.svg"
  26710. }
  26711. },
  26712. },
  26713. [
  26714. {
  26715. name: "Micro",
  26716. height: math.unit(15, "cm")
  26717. },
  26718. {
  26719. name: "Normal",
  26720. height: math.unit(178, "cm"),
  26721. default: true
  26722. },
  26723. {
  26724. name: "Macro",
  26725. height: math.unit(214, "m")
  26726. },
  26727. {
  26728. name: "Macro+",
  26729. height: math.unit(534, "m")
  26730. },
  26731. ]
  26732. ))
  26733. characterMakers.push(() => makeCharacter(
  26734. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26735. {
  26736. front: {
  26737. height: math.unit(5 + 5 / 12, "feet"),
  26738. weight: math.unit(120, "lb"),
  26739. name: "Front",
  26740. image: {
  26741. source: "./media/characters/ari/front.svg",
  26742. extra: 1550/1471,
  26743. bottom: 39/1589
  26744. }
  26745. },
  26746. },
  26747. [
  26748. {
  26749. name: "Normal",
  26750. height: math.unit(5 + 5 / 12, "feet")
  26751. },
  26752. {
  26753. name: "Macro",
  26754. height: math.unit(100, "feet"),
  26755. default: true
  26756. },
  26757. {
  26758. name: "Megamacro",
  26759. height: math.unit(100, "miles")
  26760. },
  26761. {
  26762. name: "Gigamacro",
  26763. height: math.unit(80000, "miles")
  26764. },
  26765. ]
  26766. ))
  26767. characterMakers.push(() => makeCharacter(
  26768. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26769. {
  26770. side: {
  26771. height: math.unit(9, "feet"),
  26772. weight: math.unit(400, "kg"),
  26773. name: "Side",
  26774. image: {
  26775. source: "./media/characters/bolt/side.svg",
  26776. extra: 1126 / 896,
  26777. bottom: 60 / 1187.3,
  26778. }
  26779. },
  26780. },
  26781. [
  26782. {
  26783. name: "Micro",
  26784. height: math.unit(5, "inches")
  26785. },
  26786. {
  26787. name: "Normal",
  26788. height: math.unit(9, "feet"),
  26789. default: true
  26790. },
  26791. {
  26792. name: "Macro",
  26793. height: math.unit(700, "feet")
  26794. },
  26795. {
  26796. name: "Max Size",
  26797. height: math.unit(1.52e22, "yottameters")
  26798. },
  26799. ]
  26800. ))
  26801. characterMakers.push(() => makeCharacter(
  26802. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26803. {
  26804. front: {
  26805. height: math.unit(4.3, "meters"),
  26806. weight: math.unit(3, "tons"),
  26807. name: "Front",
  26808. image: {
  26809. source: "./media/characters/draekon-sylviar/front.svg",
  26810. extra: 2072/1512,
  26811. bottom: 74/2146
  26812. }
  26813. },
  26814. back: {
  26815. height: math.unit(4.3, "meters"),
  26816. weight: math.unit(3, "tons"),
  26817. name: "Back",
  26818. image: {
  26819. source: "./media/characters/draekon-sylviar/back.svg",
  26820. extra: 1639/1483,
  26821. bottom: 41/1680
  26822. }
  26823. },
  26824. feral: {
  26825. height: math.unit(1.15, "meters"),
  26826. weight: math.unit(3, "tons"),
  26827. name: "Feral",
  26828. image: {
  26829. source: "./media/characters/draekon-sylviar/feral.svg",
  26830. extra: 1033/395,
  26831. bottom: 130/1163
  26832. }
  26833. },
  26834. maw: {
  26835. height: math.unit(1.3, "meters"),
  26836. name: "Maw",
  26837. image: {
  26838. source: "./media/characters/draekon-sylviar/maw.svg"
  26839. }
  26840. },
  26841. mawSeparated: {
  26842. height: math.unit(1.53, "meters"),
  26843. name: "Separated Maw",
  26844. image: {
  26845. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26846. }
  26847. },
  26848. tail: {
  26849. height: math.unit(1.15, "meters"),
  26850. name: "Tail",
  26851. image: {
  26852. source: "./media/characters/draekon-sylviar/tail.svg"
  26853. }
  26854. },
  26855. tailDick: {
  26856. height: math.unit(1.15, "meters"),
  26857. name: "Tail (Dick)",
  26858. image: {
  26859. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26860. }
  26861. },
  26862. tailDickSeparated: {
  26863. height: math.unit(1.19, "meters"),
  26864. name: "Tail (Separated Dick)",
  26865. image: {
  26866. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26867. }
  26868. },
  26869. slit: {
  26870. height: math.unit(1, "meters"),
  26871. name: "Slit",
  26872. image: {
  26873. source: "./media/characters/draekon-sylviar/slit.svg"
  26874. }
  26875. },
  26876. dick: {
  26877. height: math.unit(1.15, "meters"),
  26878. name: "Dick",
  26879. image: {
  26880. source: "./media/characters/draekon-sylviar/dick.svg"
  26881. }
  26882. },
  26883. dickSeparated: {
  26884. height: math.unit(1.1, "meters"),
  26885. name: "Separated Dick",
  26886. image: {
  26887. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26888. }
  26889. },
  26890. sheath: {
  26891. height: math.unit(1.15, "meters"),
  26892. name: "Sheath",
  26893. image: {
  26894. source: "./media/characters/draekon-sylviar/sheath.svg"
  26895. }
  26896. },
  26897. },
  26898. [
  26899. {
  26900. name: "Small",
  26901. height: math.unit(4.53 / 2, "meters"),
  26902. default: true
  26903. },
  26904. {
  26905. name: "Normal",
  26906. height: math.unit(4.53, "meters"),
  26907. default: true
  26908. },
  26909. {
  26910. name: "Large",
  26911. height: math.unit(4.53 * 2, "meters"),
  26912. },
  26913. ]
  26914. ))
  26915. characterMakers.push(() => makeCharacter(
  26916. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26917. {
  26918. front: {
  26919. height: math.unit(6 + 2 / 12, "feet"),
  26920. weight: math.unit(180, "lb"),
  26921. name: "Front",
  26922. image: {
  26923. source: "./media/characters/brawler/front.svg",
  26924. extra: 3301 / 3027,
  26925. bottom: 138 / 3439
  26926. }
  26927. },
  26928. },
  26929. [
  26930. {
  26931. name: "Normal",
  26932. height: math.unit(6 + 2 / 12, "feet"),
  26933. default: true
  26934. },
  26935. ]
  26936. ))
  26937. characterMakers.push(() => makeCharacter(
  26938. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26939. {
  26940. front: {
  26941. height: math.unit(11, "feet"),
  26942. weight: math.unit(1000, "lb"),
  26943. name: "Front",
  26944. image: {
  26945. source: "./media/characters/alex/front.svg",
  26946. bottom: 44.5 / 620
  26947. }
  26948. },
  26949. },
  26950. [
  26951. {
  26952. name: "Micro",
  26953. height: math.unit(5, "inches")
  26954. },
  26955. {
  26956. name: "Normal",
  26957. height: math.unit(11, "feet"),
  26958. default: true
  26959. },
  26960. {
  26961. name: "Macro",
  26962. height: math.unit(9.5e9, "feet")
  26963. },
  26964. {
  26965. name: "Max Size",
  26966. height: math.unit(1.4e283, "yottameters")
  26967. },
  26968. ]
  26969. ))
  26970. characterMakers.push(() => makeCharacter(
  26971. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26972. {
  26973. female: {
  26974. height: math.unit(29.9, "m"),
  26975. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26976. name: "Female",
  26977. image: {
  26978. source: "./media/characters/zenari/female.svg",
  26979. extra: 3281.6 / 3217,
  26980. bottom: 72.2 / 3353
  26981. }
  26982. },
  26983. male: {
  26984. height: math.unit(27.7, "m"),
  26985. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26986. name: "Male",
  26987. image: {
  26988. source: "./media/characters/zenari/male.svg",
  26989. extra: 3008 / 2991,
  26990. bottom: 54.6 / 3069
  26991. }
  26992. },
  26993. },
  26994. [
  26995. {
  26996. name: "Macro",
  26997. height: math.unit(29.7, "meters"),
  26998. default: true
  26999. },
  27000. ]
  27001. ))
  27002. characterMakers.push(() => makeCharacter(
  27003. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27004. {
  27005. female: {
  27006. height: math.unit(23.8, "m"),
  27007. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27008. name: "Female",
  27009. image: {
  27010. source: "./media/characters/mactarian/female.svg",
  27011. extra: 2662 / 2569,
  27012. bottom: 73 / 2736
  27013. }
  27014. },
  27015. male: {
  27016. height: math.unit(23.8, "m"),
  27017. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27018. name: "Male",
  27019. image: {
  27020. source: "./media/characters/mactarian/male.svg",
  27021. extra: 2673 / 2600,
  27022. bottom: 76 / 2750
  27023. }
  27024. },
  27025. },
  27026. [
  27027. {
  27028. name: "Macro",
  27029. height: math.unit(23.8, "meters"),
  27030. default: true
  27031. },
  27032. ]
  27033. ))
  27034. characterMakers.push(() => makeCharacter(
  27035. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27036. {
  27037. female: {
  27038. height: math.unit(19.3, "m"),
  27039. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27040. name: "Female",
  27041. image: {
  27042. source: "./media/characters/umok/female.svg",
  27043. extra: 2186 / 2078,
  27044. bottom: 87 / 2277
  27045. }
  27046. },
  27047. male: {
  27048. height: math.unit(19.5, "m"),
  27049. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27050. name: "Male",
  27051. image: {
  27052. source: "./media/characters/umok/male.svg",
  27053. extra: 2233 / 2140,
  27054. bottom: 24.4 / 2258
  27055. }
  27056. },
  27057. },
  27058. [
  27059. {
  27060. name: "Macro",
  27061. height: math.unit(19.3, "meters"),
  27062. default: true
  27063. },
  27064. ]
  27065. ))
  27066. characterMakers.push(() => makeCharacter(
  27067. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27068. {
  27069. female: {
  27070. height: math.unit(26.15, "m"),
  27071. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27072. name: "Female",
  27073. image: {
  27074. source: "./media/characters/joraxian/female.svg",
  27075. extra: 2912 / 2824,
  27076. bottom: 36 / 2956
  27077. }
  27078. },
  27079. male: {
  27080. height: math.unit(25.4, "m"),
  27081. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27082. name: "Male",
  27083. image: {
  27084. source: "./media/characters/joraxian/male.svg",
  27085. extra: 2877 / 2721,
  27086. bottom: 82 / 2967
  27087. }
  27088. },
  27089. },
  27090. [
  27091. {
  27092. name: "Macro",
  27093. height: math.unit(26.15, "meters"),
  27094. default: true
  27095. },
  27096. ]
  27097. ))
  27098. characterMakers.push(() => makeCharacter(
  27099. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27100. {
  27101. female: {
  27102. height: math.unit(21.6, "m"),
  27103. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27104. name: "Female",
  27105. image: {
  27106. source: "./media/characters/sthara/female.svg",
  27107. extra: 2516 / 2347,
  27108. bottom: 21.5 / 2537
  27109. }
  27110. },
  27111. male: {
  27112. height: math.unit(24, "m"),
  27113. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27114. name: "Male",
  27115. image: {
  27116. source: "./media/characters/sthara/male.svg",
  27117. extra: 2732 / 2607,
  27118. bottom: 23 / 2732
  27119. }
  27120. },
  27121. },
  27122. [
  27123. {
  27124. name: "Macro",
  27125. height: math.unit(21.6, "meters"),
  27126. default: true
  27127. },
  27128. ]
  27129. ))
  27130. characterMakers.push(() => makeCharacter(
  27131. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27132. {
  27133. front: {
  27134. height: math.unit(6 + 4 / 12, "feet"),
  27135. weight: math.unit(175, "lb"),
  27136. name: "Front",
  27137. image: {
  27138. source: "./media/characters/luka-bryzant/front.svg",
  27139. extra: 311 / 289,
  27140. bottom: 4 / 315
  27141. }
  27142. },
  27143. back: {
  27144. height: math.unit(6 + 4 / 12, "feet"),
  27145. weight: math.unit(175, "lb"),
  27146. name: "Back",
  27147. image: {
  27148. source: "./media/characters/luka-bryzant/back.svg",
  27149. extra: 311 / 289,
  27150. bottom: 3.8 / 313.7
  27151. }
  27152. },
  27153. },
  27154. [
  27155. {
  27156. name: "Micro",
  27157. height: math.unit(10, "inches")
  27158. },
  27159. {
  27160. name: "Normal",
  27161. height: math.unit(6 + 4 / 12, "feet"),
  27162. default: true
  27163. },
  27164. {
  27165. name: "Large",
  27166. height: math.unit(12, "feet")
  27167. },
  27168. ]
  27169. ))
  27170. characterMakers.push(() => makeCharacter(
  27171. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27172. {
  27173. front: {
  27174. height: math.unit(5 + 7 / 12, "feet"),
  27175. weight: math.unit(185, "lb"),
  27176. name: "Front",
  27177. image: {
  27178. source: "./media/characters/aman-aquila/front.svg",
  27179. extra: 1013 / 976,
  27180. bottom: 45.6 / 1057
  27181. }
  27182. },
  27183. side: {
  27184. height: math.unit(5 + 7 / 12, "feet"),
  27185. weight: math.unit(185, "lb"),
  27186. name: "Side",
  27187. image: {
  27188. source: "./media/characters/aman-aquila/side.svg",
  27189. extra: 1054 / 1011,
  27190. bottom: 15 / 1070
  27191. }
  27192. },
  27193. back: {
  27194. height: math.unit(5 + 7 / 12, "feet"),
  27195. weight: math.unit(185, "lb"),
  27196. name: "Back",
  27197. image: {
  27198. source: "./media/characters/aman-aquila/back.svg",
  27199. extra: 1026 / 970,
  27200. bottom: 12 / 1039
  27201. }
  27202. },
  27203. head: {
  27204. height: math.unit(1.211, "feet"),
  27205. name: "Head",
  27206. image: {
  27207. source: "./media/characters/aman-aquila/head.svg",
  27208. }
  27209. },
  27210. },
  27211. [
  27212. {
  27213. name: "Minimicro",
  27214. height: math.unit(0.057, "inches")
  27215. },
  27216. {
  27217. name: "Micro",
  27218. height: math.unit(7, "inches")
  27219. },
  27220. {
  27221. name: "Mini",
  27222. height: math.unit(3 + 7 / 12, "feet")
  27223. },
  27224. {
  27225. name: "Normal",
  27226. height: math.unit(5 + 7 / 12, "feet"),
  27227. default: true
  27228. },
  27229. {
  27230. name: "Macro",
  27231. height: math.unit(157 + 7 / 12, "feet")
  27232. },
  27233. {
  27234. name: "Megamacro",
  27235. height: math.unit(1557 + 7 / 12, "feet")
  27236. },
  27237. {
  27238. name: "Gigamacro",
  27239. height: math.unit(15557 + 7 / 12, "feet")
  27240. },
  27241. ]
  27242. ))
  27243. characterMakers.push(() => makeCharacter(
  27244. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27245. {
  27246. front: {
  27247. height: math.unit(3 + 2 / 12, "inches"),
  27248. weight: math.unit(0.3, "ounces"),
  27249. name: "Front",
  27250. image: {
  27251. source: "./media/characters/hiphae/front.svg",
  27252. extra: 1931 / 1683,
  27253. bottom: 24 / 1955
  27254. }
  27255. },
  27256. },
  27257. [
  27258. {
  27259. name: "Normal",
  27260. height: math.unit(3 + 1 / 2, "inches"),
  27261. default: true
  27262. },
  27263. ]
  27264. ))
  27265. characterMakers.push(() => makeCharacter(
  27266. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27267. {
  27268. front: {
  27269. height: math.unit(5 + 10 / 12, "feet"),
  27270. weight: math.unit(165, "lb"),
  27271. name: "Front",
  27272. image: {
  27273. source: "./media/characters/nicky/front.svg",
  27274. extra: 3144 / 2886,
  27275. bottom: 45.6 / 3192
  27276. }
  27277. },
  27278. back: {
  27279. height: math.unit(5 + 10 / 12, "feet"),
  27280. weight: math.unit(165, "lb"),
  27281. name: "Back",
  27282. image: {
  27283. source: "./media/characters/nicky/back.svg",
  27284. extra: 3055 / 2804,
  27285. bottom: 28.4 / 3087
  27286. }
  27287. },
  27288. frontclothed: {
  27289. height: math.unit(5 + 10 / 12, "feet"),
  27290. weight: math.unit(165, "lb"),
  27291. name: "Front-clothed",
  27292. image: {
  27293. source: "./media/characters/nicky/front-clothed.svg",
  27294. extra: 3184.9 / 2926.9,
  27295. bottom: 86.5 / 3239.9
  27296. }
  27297. },
  27298. foot: {
  27299. height: math.unit(1.16, "feet"),
  27300. name: "Foot",
  27301. image: {
  27302. source: "./media/characters/nicky/foot.svg"
  27303. }
  27304. },
  27305. feet: {
  27306. height: math.unit(1.34, "feet"),
  27307. name: "Feet",
  27308. image: {
  27309. source: "./media/characters/nicky/feet.svg"
  27310. }
  27311. },
  27312. maw: {
  27313. height: math.unit(0.9, "feet"),
  27314. name: "Maw",
  27315. image: {
  27316. source: "./media/characters/nicky/maw.svg"
  27317. }
  27318. },
  27319. },
  27320. [
  27321. {
  27322. name: "Normal",
  27323. height: math.unit(5 + 10 / 12, "feet"),
  27324. default: true
  27325. },
  27326. {
  27327. name: "Macro",
  27328. height: math.unit(60, "feet")
  27329. },
  27330. {
  27331. name: "Megamacro",
  27332. height: math.unit(1, "mile")
  27333. },
  27334. ]
  27335. ))
  27336. characterMakers.push(() => makeCharacter(
  27337. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27338. {
  27339. side: {
  27340. height: math.unit(10, "feet"),
  27341. weight: math.unit(600, "lb"),
  27342. name: "Side",
  27343. image: {
  27344. source: "./media/characters/blair/side.svg",
  27345. bottom: 16.6 / 475,
  27346. extra: 458 / 431
  27347. }
  27348. },
  27349. },
  27350. [
  27351. {
  27352. name: "Micro",
  27353. height: math.unit(8, "inches")
  27354. },
  27355. {
  27356. name: "Normal",
  27357. height: math.unit(10, "feet"),
  27358. default: true
  27359. },
  27360. {
  27361. name: "Macro",
  27362. height: math.unit(180, "feet")
  27363. },
  27364. ]
  27365. ))
  27366. characterMakers.push(() => makeCharacter(
  27367. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27368. {
  27369. front: {
  27370. height: math.unit(5 + 4 / 12, "feet"),
  27371. weight: math.unit(125, "lb"),
  27372. name: "Front",
  27373. image: {
  27374. source: "./media/characters/fisher/front.svg",
  27375. extra: 444 / 390,
  27376. bottom: 2 / 444.8
  27377. }
  27378. },
  27379. },
  27380. [
  27381. {
  27382. name: "Micro",
  27383. height: math.unit(4, "inches")
  27384. },
  27385. {
  27386. name: "Normal",
  27387. height: math.unit(5 + 4 / 12, "feet"),
  27388. default: true
  27389. },
  27390. {
  27391. name: "Macro",
  27392. height: math.unit(100, "feet")
  27393. },
  27394. ]
  27395. ))
  27396. characterMakers.push(() => makeCharacter(
  27397. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27398. {
  27399. front: {
  27400. height: math.unit(6.71, "feet"),
  27401. weight: math.unit(200, "lb"),
  27402. preyCapacity: math.unit(1000000, "people"),
  27403. name: "Front",
  27404. image: {
  27405. source: "./media/characters/gliss/front.svg",
  27406. extra: 2347 / 2231,
  27407. bottom: 113 / 2462
  27408. }
  27409. },
  27410. hammerspaceSize: {
  27411. height: math.unit(6.71 * 717, "feet"),
  27412. weight: math.unit(200, "lb"),
  27413. preyCapacity: math.unit(1000000, "people"),
  27414. name: "Hammerspace Size",
  27415. image: {
  27416. source: "./media/characters/gliss/front.svg",
  27417. extra: 2347 / 2231,
  27418. bottom: 113 / 2462
  27419. }
  27420. },
  27421. },
  27422. [
  27423. {
  27424. name: "Normal",
  27425. height: math.unit(6.71, "feet"),
  27426. default: true
  27427. },
  27428. ]
  27429. ))
  27430. characterMakers.push(() => makeCharacter(
  27431. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27432. {
  27433. side: {
  27434. height: math.unit(1.44, "m"),
  27435. weight: math.unit(80, "kg"),
  27436. name: "Side",
  27437. image: {
  27438. source: "./media/characters/dune-anderson/side.svg",
  27439. bottom: 49 / 1426
  27440. }
  27441. },
  27442. },
  27443. [
  27444. {
  27445. name: "Wolf-sized",
  27446. height: math.unit(1.44, "meters")
  27447. },
  27448. {
  27449. name: "Normal",
  27450. height: math.unit(5.05, "meters"),
  27451. default: true
  27452. },
  27453. {
  27454. name: "Big",
  27455. height: math.unit(14.4, "meters")
  27456. },
  27457. {
  27458. name: "Huge",
  27459. height: math.unit(144, "meters")
  27460. },
  27461. ]
  27462. ))
  27463. characterMakers.push(() => makeCharacter(
  27464. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27465. {
  27466. front: {
  27467. height: math.unit(7, "feet"),
  27468. weight: math.unit(425, "lb"),
  27469. name: "Front",
  27470. image: {
  27471. source: "./media/characters/hind/front.svg",
  27472. extra: 2091 / 1860,
  27473. bottom: 129 / 2220
  27474. }
  27475. },
  27476. back: {
  27477. height: math.unit(7, "feet"),
  27478. weight: math.unit(425, "lb"),
  27479. name: "Back",
  27480. image: {
  27481. source: "./media/characters/hind/back.svg",
  27482. extra: 2091 / 1860,
  27483. bottom: 24.6 / 2309
  27484. }
  27485. },
  27486. tail: {
  27487. height: math.unit(2.8, "feet"),
  27488. name: "Tail",
  27489. image: {
  27490. source: "./media/characters/hind/tail.svg"
  27491. }
  27492. },
  27493. head: {
  27494. height: math.unit(2.55, "feet"),
  27495. name: "Head",
  27496. image: {
  27497. source: "./media/characters/hind/head.svg"
  27498. }
  27499. },
  27500. },
  27501. [
  27502. {
  27503. name: "XS",
  27504. height: math.unit(0.7, "feet")
  27505. },
  27506. {
  27507. name: "Normal",
  27508. height: math.unit(7, "feet"),
  27509. default: true
  27510. },
  27511. {
  27512. name: "XL",
  27513. height: math.unit(70, "feet")
  27514. },
  27515. ]
  27516. ))
  27517. characterMakers.push(() => makeCharacter(
  27518. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27519. {
  27520. front: {
  27521. height: math.unit(2.1, "meters"),
  27522. weight: math.unit(150, "lb"),
  27523. name: "Front",
  27524. image: {
  27525. source: "./media/characters/tharquench-sizestealer/front.svg",
  27526. extra: 1605/1470,
  27527. bottom: 36/1641
  27528. }
  27529. },
  27530. frontAlt: {
  27531. height: math.unit(2.1, "meters"),
  27532. weight: math.unit(150, "lb"),
  27533. name: "Front (Alt)",
  27534. image: {
  27535. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27536. extra: 2318 / 2063,
  27537. bottom: 93.4 / 2410
  27538. }
  27539. },
  27540. },
  27541. [
  27542. {
  27543. name: "Nano",
  27544. height: math.unit(1, "mm")
  27545. },
  27546. {
  27547. name: "Micro",
  27548. height: math.unit(1, "cm")
  27549. },
  27550. {
  27551. name: "Normal",
  27552. height: math.unit(2.1, "meters"),
  27553. default: true
  27554. },
  27555. ]
  27556. ))
  27557. characterMakers.push(() => makeCharacter(
  27558. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27559. {
  27560. front: {
  27561. height: math.unit(7 + 5 / 12, "feet"),
  27562. weight: math.unit(357, "lb"),
  27563. name: "Front",
  27564. image: {
  27565. source: "./media/characters/solex-draconov/front.svg",
  27566. extra: 1993 / 1865,
  27567. bottom: 117 / 2111
  27568. }
  27569. },
  27570. },
  27571. [
  27572. {
  27573. name: "Natural Height",
  27574. height: math.unit(7 + 5 / 12, "feet"),
  27575. default: true
  27576. },
  27577. {
  27578. name: "Macro",
  27579. height: math.unit(350, "feet")
  27580. },
  27581. {
  27582. name: "Macro+",
  27583. height: math.unit(1000, "feet")
  27584. },
  27585. {
  27586. name: "Megamacro",
  27587. height: math.unit(20, "km")
  27588. },
  27589. {
  27590. name: "Megamacro+",
  27591. height: math.unit(1000, "km")
  27592. },
  27593. {
  27594. name: "Gigamacro",
  27595. height: math.unit(2.5, "Gm")
  27596. },
  27597. {
  27598. name: "Teramacro",
  27599. height: math.unit(15, "Tm")
  27600. },
  27601. {
  27602. name: "Galactic",
  27603. height: math.unit(30, "Zm")
  27604. },
  27605. {
  27606. name: "Universal",
  27607. height: math.unit(21000, "Ym")
  27608. },
  27609. {
  27610. name: "Omniversal",
  27611. height: math.unit(9.861e50, "Ym")
  27612. },
  27613. {
  27614. name: "Existential",
  27615. height: math.unit(1e300, "meters")
  27616. },
  27617. ]
  27618. ))
  27619. characterMakers.push(() => makeCharacter(
  27620. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27621. {
  27622. side: {
  27623. height: math.unit(25, "feet"),
  27624. weight: math.unit(90000, "lb"),
  27625. name: "Side",
  27626. image: {
  27627. source: "./media/characters/mandarax/side.svg",
  27628. extra: 614 / 332,
  27629. bottom: 55 / 630
  27630. }
  27631. },
  27632. lounging: {
  27633. height: math.unit(15.4, "feet"),
  27634. weight: math.unit(90000, "lb"),
  27635. name: "Lounging",
  27636. image: {
  27637. source: "./media/characters/mandarax/lounging.svg",
  27638. extra: 817/609,
  27639. bottom: 685/1502
  27640. }
  27641. },
  27642. head: {
  27643. height: math.unit(11.4, "feet"),
  27644. name: "Head",
  27645. image: {
  27646. source: "./media/characters/mandarax/head.svg"
  27647. }
  27648. },
  27649. belly: {
  27650. height: math.unit(33, "feet"),
  27651. name: "Belly",
  27652. preyCapacity: math.unit(500, "people"),
  27653. image: {
  27654. source: "./media/characters/mandarax/belly.svg"
  27655. }
  27656. },
  27657. dick: {
  27658. height: math.unit(8.46, "feet"),
  27659. name: "Dick",
  27660. image: {
  27661. source: "./media/characters/mandarax/dick.svg"
  27662. }
  27663. },
  27664. top: {
  27665. height: math.unit(28, "meters"),
  27666. name: "Top",
  27667. image: {
  27668. source: "./media/characters/mandarax/top.svg"
  27669. }
  27670. },
  27671. },
  27672. [
  27673. {
  27674. name: "Normal",
  27675. height: math.unit(25, "feet"),
  27676. default: true
  27677. },
  27678. ]
  27679. ))
  27680. characterMakers.push(() => makeCharacter(
  27681. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27682. {
  27683. front: {
  27684. height: math.unit(5, "feet"),
  27685. weight: math.unit(90, "lb"),
  27686. name: "Front",
  27687. image: {
  27688. source: "./media/characters/pixil/front.svg",
  27689. extra: 2000 / 1618,
  27690. bottom: 12.3 / 2011
  27691. }
  27692. },
  27693. },
  27694. [
  27695. {
  27696. name: "Normal",
  27697. height: math.unit(5, "feet"),
  27698. default: true
  27699. },
  27700. {
  27701. name: "Megamacro",
  27702. height: math.unit(10, "miles"),
  27703. },
  27704. ]
  27705. ))
  27706. characterMakers.push(() => makeCharacter(
  27707. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27708. {
  27709. front: {
  27710. height: math.unit(7 + 2 / 12, "feet"),
  27711. weight: math.unit(200, "lb"),
  27712. name: "Front",
  27713. image: {
  27714. source: "./media/characters/angel/front.svg",
  27715. extra: 1946/1840,
  27716. bottom: 30/1976
  27717. }
  27718. },
  27719. },
  27720. [
  27721. {
  27722. name: "Normal",
  27723. height: math.unit(7 + 2 / 12, "feet"),
  27724. default: true
  27725. },
  27726. {
  27727. name: "Macro",
  27728. height: math.unit(1000, "feet")
  27729. },
  27730. {
  27731. name: "Megamacro",
  27732. height: math.unit(2, "miles")
  27733. },
  27734. {
  27735. name: "Gigamacro",
  27736. height: math.unit(20, "earths")
  27737. },
  27738. ]
  27739. ))
  27740. characterMakers.push(() => makeCharacter(
  27741. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27742. {
  27743. front: {
  27744. height: math.unit(5, "feet"),
  27745. weight: math.unit(180, "lb"),
  27746. name: "Front",
  27747. image: {
  27748. source: "./media/characters/mekana/front.svg",
  27749. extra: 1671 / 1605,
  27750. bottom: 3.5 / 1691
  27751. }
  27752. },
  27753. side: {
  27754. height: math.unit(5, "feet"),
  27755. weight: math.unit(180, "lb"),
  27756. name: "Side",
  27757. image: {
  27758. source: "./media/characters/mekana/side.svg",
  27759. extra: 1671 / 1605,
  27760. bottom: 3.5 / 1691
  27761. }
  27762. },
  27763. back: {
  27764. height: math.unit(5, "feet"),
  27765. weight: math.unit(180, "lb"),
  27766. name: "Back",
  27767. image: {
  27768. source: "./media/characters/mekana/back.svg",
  27769. extra: 1671 / 1605,
  27770. bottom: 3.5 / 1691
  27771. }
  27772. },
  27773. },
  27774. [
  27775. {
  27776. name: "Normal",
  27777. height: math.unit(5, "feet"),
  27778. default: true
  27779. },
  27780. ]
  27781. ))
  27782. characterMakers.push(() => makeCharacter(
  27783. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27784. {
  27785. front: {
  27786. height: math.unit(4 + 6 / 12, "feet"),
  27787. weight: math.unit(80, "lb"),
  27788. name: "Front",
  27789. image: {
  27790. source: "./media/characters/pixie/front.svg",
  27791. extra: 1924 / 1825,
  27792. bottom: 22.4 / 1946
  27793. }
  27794. },
  27795. },
  27796. [
  27797. {
  27798. name: "Normal",
  27799. height: math.unit(4 + 6 / 12, "feet"),
  27800. default: true
  27801. },
  27802. {
  27803. name: "Macro",
  27804. height: math.unit(40, "feet")
  27805. },
  27806. ]
  27807. ))
  27808. characterMakers.push(() => makeCharacter(
  27809. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27810. {
  27811. front: {
  27812. height: math.unit(2.1, "meters"),
  27813. weight: math.unit(200, "lb"),
  27814. name: "Front",
  27815. image: {
  27816. source: "./media/characters/the-lascivious/front.svg",
  27817. extra: 1 / 0.893,
  27818. bottom: 3.5 / 573.7
  27819. }
  27820. },
  27821. },
  27822. [
  27823. {
  27824. name: "Human Scale",
  27825. height: math.unit(2.1, "meters")
  27826. },
  27827. {
  27828. name: "Wolxi Scale",
  27829. height: math.unit(46.2, "m"),
  27830. default: true
  27831. },
  27832. {
  27833. name: "Boinker of Buildings",
  27834. height: math.unit(10, "km")
  27835. },
  27836. {
  27837. name: "Shagger of Skyscrapers",
  27838. height: math.unit(40, "km")
  27839. },
  27840. {
  27841. name: "Banger of Boroughs",
  27842. height: math.unit(4000, "km")
  27843. },
  27844. {
  27845. name: "Screwer of States",
  27846. height: math.unit(100000, "km")
  27847. },
  27848. {
  27849. name: "Pounder of Planets",
  27850. height: math.unit(2000000, "km")
  27851. },
  27852. ]
  27853. ))
  27854. characterMakers.push(() => makeCharacter(
  27855. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27856. {
  27857. front: {
  27858. height: math.unit(6, "feet"),
  27859. weight: math.unit(150, "lb"),
  27860. name: "Front",
  27861. image: {
  27862. source: "./media/characters/aj/front.svg",
  27863. extra: 2039 / 1562,
  27864. bottom: 40 / 2079
  27865. }
  27866. },
  27867. },
  27868. [
  27869. {
  27870. name: "Normal",
  27871. height: math.unit(11 + 6 / 12, "feet"),
  27872. default: true
  27873. },
  27874. {
  27875. name: "Megamacro",
  27876. height: math.unit(60, "megameters")
  27877. },
  27878. ]
  27879. ))
  27880. characterMakers.push(() => makeCharacter(
  27881. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27882. {
  27883. side: {
  27884. height: math.unit(31 + 8 / 12, "feet"),
  27885. weight: math.unit(75000, "kg"),
  27886. name: "Side",
  27887. image: {
  27888. source: "./media/characters/koros/side.svg",
  27889. extra: 1442 / 1297,
  27890. bottom: 122.7 / 1562
  27891. }
  27892. },
  27893. dicksKingsCrown: {
  27894. height: math.unit(6, "feet"),
  27895. name: "Dicks (King's Crown)",
  27896. image: {
  27897. source: "./media/characters/koros/dicks-kings-crown.svg"
  27898. }
  27899. },
  27900. dicksTailSet: {
  27901. height: math.unit(3, "feet"),
  27902. name: "Dicks (Tail Set)",
  27903. image: {
  27904. source: "./media/characters/koros/dicks-tail-set.svg"
  27905. }
  27906. },
  27907. dickCumming: {
  27908. height: math.unit(7.98, "feet"),
  27909. name: "Dick (Cumming)",
  27910. image: {
  27911. source: "./media/characters/koros/dick-cumming.svg"
  27912. }
  27913. },
  27914. dicksBack: {
  27915. height: math.unit(5.9, "feet"),
  27916. name: "Dicks (Back)",
  27917. image: {
  27918. source: "./media/characters/koros/dicks-back.svg"
  27919. }
  27920. },
  27921. dicksFront: {
  27922. height: math.unit(3.72, "feet"),
  27923. name: "Dicks (Front)",
  27924. image: {
  27925. source: "./media/characters/koros/dicks-front.svg"
  27926. }
  27927. },
  27928. dicksPeeking: {
  27929. height: math.unit(3.0, "feet"),
  27930. name: "Dicks (Peeking)",
  27931. image: {
  27932. source: "./media/characters/koros/dicks-peeking.svg"
  27933. }
  27934. },
  27935. eye: {
  27936. height: math.unit(1.7, "feet"),
  27937. name: "Eye",
  27938. image: {
  27939. source: "./media/characters/koros/eye.svg"
  27940. }
  27941. },
  27942. headFront: {
  27943. height: math.unit(11.69, "feet"),
  27944. name: "Head (Front)",
  27945. image: {
  27946. source: "./media/characters/koros/head-front.svg"
  27947. }
  27948. },
  27949. headSide: {
  27950. height: math.unit(14, "feet"),
  27951. name: "Head (Side)",
  27952. image: {
  27953. source: "./media/characters/koros/head-side.svg"
  27954. }
  27955. },
  27956. leg: {
  27957. height: math.unit(17, "feet"),
  27958. name: "Leg",
  27959. image: {
  27960. source: "./media/characters/koros/leg.svg"
  27961. }
  27962. },
  27963. mawSide: {
  27964. height: math.unit(12.8, "feet"),
  27965. name: "Maw (Side)",
  27966. image: {
  27967. source: "./media/characters/koros/maw-side.svg"
  27968. }
  27969. },
  27970. mawSpitting: {
  27971. height: math.unit(17, "feet"),
  27972. name: "Maw (Spitting)",
  27973. image: {
  27974. source: "./media/characters/koros/maw-spitting.svg"
  27975. }
  27976. },
  27977. slit: {
  27978. height: math.unit(2.8, "feet"),
  27979. name: "Slit",
  27980. image: {
  27981. source: "./media/characters/koros/slit.svg"
  27982. }
  27983. },
  27984. stomach: {
  27985. height: math.unit(6.8, "feet"),
  27986. preyCapacity: math.unit(20, "people"),
  27987. name: "Stomach",
  27988. image: {
  27989. source: "./media/characters/koros/stomach.svg"
  27990. }
  27991. },
  27992. wingspanBottom: {
  27993. height: math.unit(114, "feet"),
  27994. name: "Wingspan (Bottom)",
  27995. image: {
  27996. source: "./media/characters/koros/wingspan-bottom.svg"
  27997. }
  27998. },
  27999. wingspanTop: {
  28000. height: math.unit(104, "feet"),
  28001. name: "Wingspan (Top)",
  28002. image: {
  28003. source: "./media/characters/koros/wingspan-top.svg"
  28004. }
  28005. },
  28006. },
  28007. [
  28008. {
  28009. name: "Normal",
  28010. height: math.unit(31 + 8 / 12, "feet"),
  28011. default: true
  28012. },
  28013. ]
  28014. ))
  28015. characterMakers.push(() => makeCharacter(
  28016. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28017. {
  28018. front: {
  28019. height: math.unit(18 + 5 / 12, "feet"),
  28020. weight: math.unit(3750, "kg"),
  28021. name: "Front",
  28022. image: {
  28023. source: "./media/characters/vexx/front.svg",
  28024. extra: 426 / 396,
  28025. bottom: 31.5 / 458
  28026. }
  28027. },
  28028. maw: {
  28029. height: math.unit(6, "feet"),
  28030. name: "Maw",
  28031. image: {
  28032. source: "./media/characters/vexx/maw.svg"
  28033. }
  28034. },
  28035. },
  28036. [
  28037. {
  28038. name: "Normal",
  28039. height: math.unit(18 + 5 / 12, "feet"),
  28040. default: true
  28041. },
  28042. ]
  28043. ))
  28044. characterMakers.push(() => makeCharacter(
  28045. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28046. {
  28047. front: {
  28048. height: math.unit(17 + 6 / 12, "feet"),
  28049. weight: math.unit(150, "lb"),
  28050. name: "Front",
  28051. image: {
  28052. source: "./media/characters/baadra/front.svg",
  28053. extra: 1694/1553,
  28054. bottom: 179/1873
  28055. }
  28056. },
  28057. frontAlt: {
  28058. height: math.unit(17 + 6 / 12, "feet"),
  28059. weight: math.unit(150, "lb"),
  28060. name: "Front (Alt)",
  28061. image: {
  28062. source: "./media/characters/baadra/front-alt.svg",
  28063. extra: 3137 / 2890,
  28064. bottom: 168.4 / 3305
  28065. }
  28066. },
  28067. back: {
  28068. height: math.unit(17 + 6 / 12, "feet"),
  28069. weight: math.unit(150, "lb"),
  28070. name: "Back",
  28071. image: {
  28072. source: "./media/characters/baadra/back.svg",
  28073. extra: 3142 / 2890,
  28074. bottom: 220 / 3371
  28075. }
  28076. },
  28077. head: {
  28078. height: math.unit(5.45, "feet"),
  28079. name: "Head",
  28080. image: {
  28081. source: "./media/characters/baadra/head.svg"
  28082. }
  28083. },
  28084. headAngry: {
  28085. height: math.unit(4.95, "feet"),
  28086. name: "Head (Angry)",
  28087. image: {
  28088. source: "./media/characters/baadra/head-angry.svg"
  28089. }
  28090. },
  28091. headOpen: {
  28092. height: math.unit(6, "feet"),
  28093. name: "Head (Open)",
  28094. image: {
  28095. source: "./media/characters/baadra/head-open.svg"
  28096. }
  28097. },
  28098. },
  28099. [
  28100. {
  28101. name: "Normal",
  28102. height: math.unit(17 + 6 / 12, "feet"),
  28103. default: true
  28104. },
  28105. ]
  28106. ))
  28107. characterMakers.push(() => makeCharacter(
  28108. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28109. {
  28110. front: {
  28111. height: math.unit(7 + 3 / 12, "feet"),
  28112. weight: math.unit(180, "lb"),
  28113. name: "Front",
  28114. image: {
  28115. source: "./media/characters/juri/front.svg",
  28116. extra: 1401 / 1237,
  28117. bottom: 18.5 / 1418
  28118. }
  28119. },
  28120. side: {
  28121. height: math.unit(7 + 3 / 12, "feet"),
  28122. weight: math.unit(180, "lb"),
  28123. name: "Side",
  28124. image: {
  28125. source: "./media/characters/juri/side.svg",
  28126. extra: 1424 / 1242,
  28127. bottom: 18.5 / 1447
  28128. }
  28129. },
  28130. sitting: {
  28131. height: math.unit(6, "feet"),
  28132. weight: math.unit(180, "lb"),
  28133. name: "Sitting",
  28134. image: {
  28135. source: "./media/characters/juri/sitting.svg",
  28136. extra: 1270 / 1143,
  28137. bottom: 100 / 1343
  28138. }
  28139. },
  28140. back: {
  28141. height: math.unit(7 + 3 / 12, "feet"),
  28142. weight: math.unit(180, "lb"),
  28143. name: "Back",
  28144. image: {
  28145. source: "./media/characters/juri/back.svg",
  28146. extra: 1377 / 1240,
  28147. bottom: 23.7 / 1405
  28148. }
  28149. },
  28150. maw: {
  28151. height: math.unit(2.8, "feet"),
  28152. name: "Maw",
  28153. image: {
  28154. source: "./media/characters/juri/maw.svg"
  28155. }
  28156. },
  28157. stomach: {
  28158. height: math.unit(0.89, "feet"),
  28159. preyCapacity: math.unit(4, "liters"),
  28160. name: "Stomach",
  28161. image: {
  28162. source: "./media/characters/juri/stomach.svg"
  28163. }
  28164. },
  28165. },
  28166. [
  28167. {
  28168. name: "Normal",
  28169. height: math.unit(7 + 3 / 12, "feet"),
  28170. default: true
  28171. },
  28172. ]
  28173. ))
  28174. characterMakers.push(() => makeCharacter(
  28175. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28176. {
  28177. fox: {
  28178. height: math.unit(5 + 6 / 12, "feet"),
  28179. weight: math.unit(140, "lb"),
  28180. name: "Fox",
  28181. image: {
  28182. source: "./media/characters/maxene-sita/fox.svg",
  28183. extra: 146 / 138,
  28184. bottom: 2.1 / 148.19
  28185. }
  28186. },
  28187. foxLaying: {
  28188. height: math.unit(1.70, "feet"),
  28189. weight: math.unit(140, "lb"),
  28190. name: "Fox (Laying)",
  28191. image: {
  28192. source: "./media/characters/maxene-sita/fox-laying.svg",
  28193. extra: 910 / 572,
  28194. bottom: 71 / 981
  28195. }
  28196. },
  28197. kitsune: {
  28198. height: math.unit(10, "feet"),
  28199. weight: math.unit(800, "lb"),
  28200. name: "Kitsune",
  28201. image: {
  28202. source: "./media/characters/maxene-sita/kitsune.svg",
  28203. extra: 185 / 176,
  28204. bottom: 4.7 / 189.9
  28205. }
  28206. },
  28207. hellhound: {
  28208. height: math.unit(10, "feet"),
  28209. weight: math.unit(700, "lb"),
  28210. name: "Hellhound",
  28211. image: {
  28212. source: "./media/characters/maxene-sita/hellhound.svg",
  28213. extra: 1600 / 1545,
  28214. bottom: 81 / 1681
  28215. }
  28216. },
  28217. },
  28218. [
  28219. {
  28220. name: "Normal",
  28221. height: math.unit(5 + 6 / 12, "feet"),
  28222. default: true
  28223. },
  28224. ]
  28225. ))
  28226. characterMakers.push(() => makeCharacter(
  28227. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28228. {
  28229. front: {
  28230. height: math.unit(3 + 4 / 12, "feet"),
  28231. weight: math.unit(70, "lb"),
  28232. name: "Front",
  28233. image: {
  28234. source: "./media/characters/maia/front.svg",
  28235. extra: 227 / 219.5,
  28236. bottom: 40 / 267
  28237. }
  28238. },
  28239. back: {
  28240. height: math.unit(3 + 4 / 12, "feet"),
  28241. weight: math.unit(70, "lb"),
  28242. name: "Back",
  28243. image: {
  28244. source: "./media/characters/maia/back.svg",
  28245. extra: 237 / 225
  28246. }
  28247. },
  28248. },
  28249. [
  28250. {
  28251. name: "Normal",
  28252. height: math.unit(3 + 4 / 12, "feet"),
  28253. default: true
  28254. },
  28255. ]
  28256. ))
  28257. characterMakers.push(() => makeCharacter(
  28258. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28259. {
  28260. front: {
  28261. height: math.unit(5 + 10 / 12, "feet"),
  28262. weight: math.unit(197, "lb"),
  28263. name: "Front",
  28264. image: {
  28265. source: "./media/characters/jabaro/front.svg",
  28266. extra: 225 / 216,
  28267. bottom: 5.06 / 230
  28268. }
  28269. },
  28270. back: {
  28271. height: math.unit(5 + 10 / 12, "feet"),
  28272. weight: math.unit(197, "lb"),
  28273. name: "Back",
  28274. image: {
  28275. source: "./media/characters/jabaro/back.svg",
  28276. extra: 225 / 219,
  28277. bottom: 1.9 / 227
  28278. }
  28279. },
  28280. },
  28281. [
  28282. {
  28283. name: "Normal",
  28284. height: math.unit(5 + 10 / 12, "feet"),
  28285. default: true
  28286. },
  28287. ]
  28288. ))
  28289. characterMakers.push(() => makeCharacter(
  28290. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28291. {
  28292. front: {
  28293. height: math.unit(5 + 8 / 12, "feet"),
  28294. weight: math.unit(139, "lb"),
  28295. name: "Front",
  28296. image: {
  28297. source: "./media/characters/risa/front.svg",
  28298. extra: 270 / 260,
  28299. bottom: 11.2 / 282
  28300. }
  28301. },
  28302. back: {
  28303. height: math.unit(5 + 8 / 12, "feet"),
  28304. weight: math.unit(139, "lb"),
  28305. name: "Back",
  28306. image: {
  28307. source: "./media/characters/risa/back.svg",
  28308. extra: 264 / 255,
  28309. bottom: 4 / 268
  28310. }
  28311. },
  28312. },
  28313. [
  28314. {
  28315. name: "Normal",
  28316. height: math.unit(5 + 8 / 12, "feet"),
  28317. default: true
  28318. },
  28319. ]
  28320. ))
  28321. characterMakers.push(() => makeCharacter(
  28322. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28323. {
  28324. front: {
  28325. height: math.unit(2 + 11 / 12, "feet"),
  28326. weight: math.unit(30, "lb"),
  28327. name: "Front",
  28328. image: {
  28329. source: "./media/characters/weatley/front.svg",
  28330. bottom: 10.7 / 414,
  28331. extra: 403.5 / 362
  28332. }
  28333. },
  28334. back: {
  28335. height: math.unit(2 + 11 / 12, "feet"),
  28336. weight: math.unit(30, "lb"),
  28337. name: "Back",
  28338. image: {
  28339. source: "./media/characters/weatley/back.svg",
  28340. bottom: 10.7 / 414,
  28341. extra: 403.5 / 362
  28342. }
  28343. },
  28344. },
  28345. [
  28346. {
  28347. name: "Normal",
  28348. height: math.unit(2 + 11 / 12, "feet"),
  28349. default: true
  28350. },
  28351. ]
  28352. ))
  28353. characterMakers.push(() => makeCharacter(
  28354. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28355. {
  28356. front: {
  28357. height: math.unit(5 + 2 / 12, "feet"),
  28358. weight: math.unit(50, "kg"),
  28359. name: "Front",
  28360. image: {
  28361. source: "./media/characters/mercury-crescent/front.svg",
  28362. extra: 1088 / 1033,
  28363. bottom: 18.9 / 1109
  28364. }
  28365. },
  28366. },
  28367. [
  28368. {
  28369. name: "Normal",
  28370. height: math.unit(5 + 2 / 12, "feet"),
  28371. default: true
  28372. },
  28373. ]
  28374. ))
  28375. characterMakers.push(() => makeCharacter(
  28376. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28377. {
  28378. front: {
  28379. height: math.unit(2, "feet"),
  28380. weight: math.unit(15, "kg"),
  28381. name: "Front",
  28382. image: {
  28383. source: "./media/characters/diamond-jones/front.svg",
  28384. extra: 727/723,
  28385. bottom: 46/773
  28386. }
  28387. },
  28388. },
  28389. [
  28390. {
  28391. name: "Normal",
  28392. height: math.unit(2, "feet"),
  28393. default: true
  28394. },
  28395. ]
  28396. ))
  28397. characterMakers.push(() => makeCharacter(
  28398. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28399. {
  28400. front: {
  28401. height: math.unit(3, "feet"),
  28402. weight: math.unit(30, "kg"),
  28403. name: "Front",
  28404. image: {
  28405. source: "./media/characters/sweet-bit/front.svg",
  28406. extra: 675 / 567,
  28407. bottom: 27.7 / 703
  28408. }
  28409. },
  28410. },
  28411. [
  28412. {
  28413. name: "Normal",
  28414. height: math.unit(3, "feet"),
  28415. default: true
  28416. },
  28417. ]
  28418. ))
  28419. characterMakers.push(() => makeCharacter(
  28420. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28421. {
  28422. side: {
  28423. height: math.unit(9.178, "feet"),
  28424. weight: math.unit(500, "lb"),
  28425. name: "Side",
  28426. image: {
  28427. source: "./media/characters/umbrazen/side.svg",
  28428. extra: 1730 / 1473,
  28429. bottom: 34.6 / 1765
  28430. }
  28431. },
  28432. },
  28433. [
  28434. {
  28435. name: "Normal",
  28436. height: math.unit(9.178, "feet"),
  28437. default: true
  28438. },
  28439. ]
  28440. ))
  28441. characterMakers.push(() => makeCharacter(
  28442. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28443. {
  28444. front: {
  28445. height: math.unit(10, "feet"),
  28446. weight: math.unit(750, "lb"),
  28447. name: "Front",
  28448. image: {
  28449. source: "./media/characters/arlist/front.svg",
  28450. extra: 961 / 778,
  28451. bottom: 6.2 / 986
  28452. }
  28453. },
  28454. },
  28455. [
  28456. {
  28457. name: "Normal",
  28458. height: math.unit(10, "feet"),
  28459. default: true
  28460. },
  28461. ]
  28462. ))
  28463. characterMakers.push(() => makeCharacter(
  28464. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28465. {
  28466. front: {
  28467. height: math.unit(5 + 1 / 12, "feet"),
  28468. weight: math.unit(110, "lb"),
  28469. name: "Front",
  28470. image: {
  28471. source: "./media/characters/aradel/front.svg",
  28472. extra: 324 / 303,
  28473. bottom: 3.6 / 329.4
  28474. }
  28475. },
  28476. },
  28477. [
  28478. {
  28479. name: "Normal",
  28480. height: math.unit(5 + 1 / 12, "feet"),
  28481. default: true
  28482. },
  28483. ]
  28484. ))
  28485. characterMakers.push(() => makeCharacter(
  28486. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28487. {
  28488. dressed: {
  28489. height: math.unit(3 + 8 / 12, "feet"),
  28490. weight: math.unit(50, "lb"),
  28491. name: "Dressed",
  28492. image: {
  28493. source: "./media/characters/serryn/dressed.svg",
  28494. extra: 1792 / 1656,
  28495. bottom: 43.5 / 1840
  28496. }
  28497. },
  28498. nude: {
  28499. height: math.unit(3 + 8 / 12, "feet"),
  28500. weight: math.unit(50, "lb"),
  28501. name: "Nude",
  28502. image: {
  28503. source: "./media/characters/serryn/nude.svg",
  28504. extra: 1792 / 1656,
  28505. bottom: 43.5 / 1840
  28506. }
  28507. },
  28508. },
  28509. [
  28510. {
  28511. name: "Normal",
  28512. height: math.unit(3 + 8 / 12, "feet"),
  28513. default: true
  28514. },
  28515. ]
  28516. ))
  28517. characterMakers.push(() => makeCharacter(
  28518. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28519. {
  28520. front: {
  28521. height: math.unit(7 + 10 / 12, "feet"),
  28522. weight: math.unit(255, "lb"),
  28523. name: "Front",
  28524. image: {
  28525. source: "./media/characters/xavier-thyme/front.svg",
  28526. extra: 3733 / 3642,
  28527. bottom: 131 / 3869
  28528. }
  28529. },
  28530. frontRaven: {
  28531. height: math.unit(7 + 10 / 12, "feet"),
  28532. weight: math.unit(255, "lb"),
  28533. name: "Front (Raven)",
  28534. image: {
  28535. source: "./media/characters/xavier-thyme/front-raven.svg",
  28536. extra: 4385 / 3642,
  28537. bottom: 131 / 4517
  28538. }
  28539. },
  28540. },
  28541. [
  28542. {
  28543. name: "Normal",
  28544. height: math.unit(7 + 10 / 12, "feet"),
  28545. default: true
  28546. },
  28547. ]
  28548. ))
  28549. characterMakers.push(() => makeCharacter(
  28550. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28551. {
  28552. front: {
  28553. height: math.unit(1.6, "m"),
  28554. weight: math.unit(50, "kg"),
  28555. name: "Front",
  28556. image: {
  28557. source: "./media/characters/kiki/front.svg",
  28558. extra: 4682 / 3610,
  28559. bottom: 115 / 4777
  28560. }
  28561. },
  28562. },
  28563. [
  28564. {
  28565. name: "Normal",
  28566. height: math.unit(1.6, "meters"),
  28567. default: true
  28568. },
  28569. ]
  28570. ))
  28571. characterMakers.push(() => makeCharacter(
  28572. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28573. {
  28574. front: {
  28575. height: math.unit(50, "m"),
  28576. weight: math.unit(500, "tonnes"),
  28577. name: "Front",
  28578. image: {
  28579. source: "./media/characters/ryoko/front.svg",
  28580. extra: 4632 / 3926,
  28581. bottom: 193 / 4823
  28582. }
  28583. },
  28584. },
  28585. [
  28586. {
  28587. name: "Normal",
  28588. height: math.unit(50, "meters"),
  28589. default: true
  28590. },
  28591. ]
  28592. ))
  28593. characterMakers.push(() => makeCharacter(
  28594. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28595. {
  28596. front: {
  28597. height: math.unit(30, "m"),
  28598. weight: math.unit(22, "tonnes"),
  28599. name: "Front",
  28600. image: {
  28601. source: "./media/characters/elio/front.svg",
  28602. extra: 4582 / 3720,
  28603. bottom: 236 / 4828
  28604. }
  28605. },
  28606. },
  28607. [
  28608. {
  28609. name: "Normal",
  28610. height: math.unit(30, "meters"),
  28611. default: true
  28612. },
  28613. ]
  28614. ))
  28615. characterMakers.push(() => makeCharacter(
  28616. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28617. {
  28618. front: {
  28619. height: math.unit(6 + 3 / 12, "feet"),
  28620. weight: math.unit(120, "lb"),
  28621. name: "Front",
  28622. image: {
  28623. source: "./media/characters/azura/front.svg",
  28624. extra: 1149 / 1135,
  28625. bottom: 45 / 1194
  28626. }
  28627. },
  28628. frontClothed: {
  28629. height: math.unit(6 + 3 / 12, "feet"),
  28630. weight: math.unit(120, "lb"),
  28631. name: "Front (Clothed)",
  28632. image: {
  28633. source: "./media/characters/azura/front-clothed.svg",
  28634. extra: 1149 / 1135,
  28635. bottom: 45 / 1194
  28636. }
  28637. },
  28638. },
  28639. [
  28640. {
  28641. name: "Normal",
  28642. height: math.unit(6 + 3 / 12, "feet"),
  28643. default: true
  28644. },
  28645. {
  28646. name: "Macro",
  28647. height: math.unit(20 + 6 / 12, "feet")
  28648. },
  28649. {
  28650. name: "Megamacro",
  28651. height: math.unit(12, "miles")
  28652. },
  28653. {
  28654. name: "Gigamacro",
  28655. height: math.unit(10000, "miles")
  28656. },
  28657. {
  28658. name: "Teramacro",
  28659. height: math.unit(900000, "miles")
  28660. },
  28661. ]
  28662. ))
  28663. characterMakers.push(() => makeCharacter(
  28664. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28665. {
  28666. front: {
  28667. height: math.unit(12, "feet"),
  28668. weight: math.unit(1, "ton"),
  28669. capacity: math.unit(660000, "gallons"),
  28670. name: "Front",
  28671. image: {
  28672. source: "./media/characters/zeus/front.svg",
  28673. extra: 5005 / 4717,
  28674. bottom: 363 / 5388
  28675. }
  28676. },
  28677. },
  28678. [
  28679. {
  28680. name: "Normal",
  28681. height: math.unit(12, "feet")
  28682. },
  28683. {
  28684. name: "Preferred Size",
  28685. height: math.unit(0.5, "miles"),
  28686. default: true
  28687. },
  28688. {
  28689. name: "Giga Horse",
  28690. height: math.unit(300, "miles")
  28691. },
  28692. {
  28693. name: "Riding Planets",
  28694. height: math.unit(30, "megameters")
  28695. },
  28696. {
  28697. name: "Cosmic Giant",
  28698. height: math.unit(3, "zettameters")
  28699. },
  28700. {
  28701. name: "Breeding God",
  28702. height: math.unit(9.92e22, "yottameters")
  28703. },
  28704. ]
  28705. ))
  28706. characterMakers.push(() => makeCharacter(
  28707. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28708. {
  28709. side: {
  28710. height: math.unit(9, "feet"),
  28711. weight: math.unit(1500, "kg"),
  28712. name: "Side",
  28713. image: {
  28714. source: "./media/characters/fang/side.svg",
  28715. extra: 924 / 866,
  28716. bottom: 47.5 / 972.3
  28717. }
  28718. },
  28719. },
  28720. [
  28721. {
  28722. name: "Normal",
  28723. height: math.unit(9, "feet"),
  28724. default: true
  28725. },
  28726. {
  28727. name: "Macro",
  28728. height: math.unit(75 + 6 / 12, "feet")
  28729. },
  28730. {
  28731. name: "Teramacro",
  28732. height: math.unit(50000, "miles")
  28733. },
  28734. ]
  28735. ))
  28736. characterMakers.push(() => makeCharacter(
  28737. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28738. {
  28739. front: {
  28740. height: math.unit(10, "feet"),
  28741. weight: math.unit(2, "tons"),
  28742. name: "Front",
  28743. image: {
  28744. source: "./media/characters/rekhit/front.svg",
  28745. extra: 2796 / 2590,
  28746. bottom: 225 / 3022
  28747. }
  28748. },
  28749. },
  28750. [
  28751. {
  28752. name: "Normal",
  28753. height: math.unit(10, "feet"),
  28754. default: true
  28755. },
  28756. {
  28757. name: "Macro",
  28758. height: math.unit(500, "feet")
  28759. },
  28760. ]
  28761. ))
  28762. characterMakers.push(() => makeCharacter(
  28763. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28764. {
  28765. front: {
  28766. height: math.unit(7 + 6.451 / 12, "feet"),
  28767. weight: math.unit(310, "lb"),
  28768. name: "Front",
  28769. image: {
  28770. source: "./media/characters/dahlia-verrick/front.svg",
  28771. extra: 1488 / 1365,
  28772. bottom: 6.2 / 1495
  28773. }
  28774. },
  28775. back: {
  28776. height: math.unit(7 + 6.451 / 12, "feet"),
  28777. weight: math.unit(310, "lb"),
  28778. name: "Back",
  28779. image: {
  28780. source: "./media/characters/dahlia-verrick/back.svg",
  28781. extra: 1472 / 1351,
  28782. bottom: 5.28 / 1477
  28783. }
  28784. },
  28785. frontBusiness: {
  28786. height: math.unit(7 + 6.451 / 12, "feet"),
  28787. weight: math.unit(200, "lb"),
  28788. name: "Front (Business)",
  28789. image: {
  28790. source: "./media/characters/dahlia-verrick/front-business.svg",
  28791. extra: 1478 / 1381,
  28792. bottom: 5.5 / 1484
  28793. }
  28794. },
  28795. frontCasual: {
  28796. height: math.unit(7 + 6.451 / 12, "feet"),
  28797. weight: math.unit(200, "lb"),
  28798. name: "Front (Casual)",
  28799. image: {
  28800. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28801. extra: 1478 / 1381,
  28802. bottom: 5.5 / 1484
  28803. }
  28804. },
  28805. },
  28806. [
  28807. {
  28808. name: "Travel-Sized",
  28809. height: math.unit(7.45, "inches")
  28810. },
  28811. {
  28812. name: "Normal",
  28813. height: math.unit(7 + 6.451 / 12, "feet"),
  28814. default: true
  28815. },
  28816. {
  28817. name: "Hitting the Town",
  28818. height: math.unit(37 + 8 / 12, "feet")
  28819. },
  28820. {
  28821. name: "Stomp in the Suburbs",
  28822. height: math.unit(964 + 9.728 / 12, "feet")
  28823. },
  28824. {
  28825. name: "Sit on the City",
  28826. height: math.unit(61747 + 10.592 / 12, "feet")
  28827. },
  28828. {
  28829. name: "Glomp the Globe",
  28830. height: math.unit(252919327 + 4.832 / 12, "feet")
  28831. },
  28832. ]
  28833. ))
  28834. characterMakers.push(() => makeCharacter(
  28835. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28836. {
  28837. front: {
  28838. height: math.unit(6 + 4 / 12, "feet"),
  28839. weight: math.unit(320, "lb"),
  28840. name: "Front",
  28841. image: {
  28842. source: "./media/characters/balina-mahigan/front.svg",
  28843. extra: 447 / 428,
  28844. bottom: 18 / 466
  28845. }
  28846. },
  28847. back: {
  28848. height: math.unit(6 + 4 / 12, "feet"),
  28849. weight: math.unit(320, "lb"),
  28850. name: "Back",
  28851. image: {
  28852. source: "./media/characters/balina-mahigan/back.svg",
  28853. extra: 445 / 428,
  28854. bottom: 4.07 / 448
  28855. }
  28856. },
  28857. arm: {
  28858. height: math.unit(1.88, "feet"),
  28859. name: "Arm",
  28860. image: {
  28861. source: "./media/characters/balina-mahigan/arm.svg"
  28862. }
  28863. },
  28864. backPort: {
  28865. height: math.unit(0.685, "feet"),
  28866. name: "Back Port",
  28867. image: {
  28868. source: "./media/characters/balina-mahigan/back-port.svg"
  28869. }
  28870. },
  28871. hoofpaw: {
  28872. height: math.unit(1.41, "feet"),
  28873. name: "Hoofpaw",
  28874. image: {
  28875. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28876. }
  28877. },
  28878. leftHandBack: {
  28879. height: math.unit(0.938, "feet"),
  28880. name: "Left Hand (Back)",
  28881. image: {
  28882. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28883. }
  28884. },
  28885. leftHandFront: {
  28886. height: math.unit(0.938, "feet"),
  28887. name: "Left Hand (Front)",
  28888. image: {
  28889. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28890. }
  28891. },
  28892. rightHandBack: {
  28893. height: math.unit(0.95, "feet"),
  28894. name: "Right Hand (Back)",
  28895. image: {
  28896. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28897. }
  28898. },
  28899. rightHandFront: {
  28900. height: math.unit(0.95, "feet"),
  28901. name: "Right Hand (Front)",
  28902. image: {
  28903. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28904. }
  28905. },
  28906. },
  28907. [
  28908. {
  28909. name: "Normal",
  28910. height: math.unit(6 + 4 / 12, "feet"),
  28911. default: true
  28912. },
  28913. ]
  28914. ))
  28915. characterMakers.push(() => makeCharacter(
  28916. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28917. {
  28918. front: {
  28919. height: math.unit(6, "feet"),
  28920. weight: math.unit(320, "lb"),
  28921. name: "Front",
  28922. image: {
  28923. source: "./media/characters/balina-mejeri/front.svg",
  28924. extra: 517 / 488,
  28925. bottom: 44.2 / 561
  28926. }
  28927. },
  28928. },
  28929. [
  28930. {
  28931. name: "Normal",
  28932. height: math.unit(6 + 4 / 12, "feet")
  28933. },
  28934. {
  28935. name: "Business",
  28936. height: math.unit(155, "feet"),
  28937. default: true
  28938. },
  28939. ]
  28940. ))
  28941. characterMakers.push(() => makeCharacter(
  28942. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28943. {
  28944. kneeling: {
  28945. height: math.unit(6 + 4 / 12, "feet"),
  28946. weight: math.unit(300 * 20, "lb"),
  28947. name: "Kneeling",
  28948. image: {
  28949. source: "./media/characters/balbarian/kneeling.svg",
  28950. extra: 922 / 862,
  28951. bottom: 42.4 / 965
  28952. }
  28953. },
  28954. },
  28955. [
  28956. {
  28957. name: "Normal",
  28958. height: math.unit(6 + 4 / 12, "feet")
  28959. },
  28960. {
  28961. name: "Treasured",
  28962. height: math.unit(18 + 9 / 12, "feet"),
  28963. default: true
  28964. },
  28965. {
  28966. name: "Macro",
  28967. height: math.unit(900, "feet")
  28968. },
  28969. ]
  28970. ))
  28971. characterMakers.push(() => makeCharacter(
  28972. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28973. {
  28974. front: {
  28975. height: math.unit(6 + 4 / 12, "feet"),
  28976. weight: math.unit(325, "lb"),
  28977. name: "Front",
  28978. image: {
  28979. source: "./media/characters/balina-amarini/front.svg",
  28980. extra: 415 / 403,
  28981. bottom: 19 / 433.4
  28982. }
  28983. },
  28984. back: {
  28985. height: math.unit(6 + 4 / 12, "feet"),
  28986. weight: math.unit(325, "lb"),
  28987. name: "Back",
  28988. image: {
  28989. source: "./media/characters/balina-amarini/back.svg",
  28990. extra: 415 / 403,
  28991. bottom: 13.5 / 432
  28992. }
  28993. },
  28994. overdrive: {
  28995. height: math.unit(6 + 4 / 12, "feet"),
  28996. weight: math.unit(400, "lb"),
  28997. name: "Overdrive",
  28998. image: {
  28999. source: "./media/characters/balina-amarini/overdrive.svg",
  29000. extra: 269 / 259,
  29001. bottom: 12 / 282
  29002. }
  29003. },
  29004. },
  29005. [
  29006. {
  29007. name: "Boom",
  29008. height: math.unit(9 + 10 / 12, "feet"),
  29009. default: true
  29010. },
  29011. {
  29012. name: "Macro",
  29013. height: math.unit(280, "feet")
  29014. },
  29015. ]
  29016. ))
  29017. characterMakers.push(() => makeCharacter(
  29018. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29019. {
  29020. goddess: {
  29021. height: math.unit(600, "feet"),
  29022. weight: math.unit(2000000, "tons"),
  29023. name: "Goddess",
  29024. image: {
  29025. source: "./media/characters/lady-kubwa/goddess.svg",
  29026. extra: 1240.5 / 1223,
  29027. bottom: 22 / 1263
  29028. }
  29029. },
  29030. goddesser: {
  29031. height: math.unit(900, "feet"),
  29032. weight: math.unit(20000000, "lb"),
  29033. name: "Goddess-er",
  29034. image: {
  29035. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29036. extra: 899 / 888,
  29037. bottom: 12.6 / 912
  29038. }
  29039. },
  29040. },
  29041. [
  29042. {
  29043. name: "Macro",
  29044. height: math.unit(600, "feet"),
  29045. default: true
  29046. },
  29047. {
  29048. name: "Megamacro",
  29049. height: math.unit(250, "miles")
  29050. },
  29051. ]
  29052. ))
  29053. characterMakers.push(() => makeCharacter(
  29054. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29055. {
  29056. front: {
  29057. height: math.unit(7 + 7 / 12, "feet"),
  29058. weight: math.unit(250, "lb"),
  29059. name: "Front",
  29060. image: {
  29061. source: "./media/characters/tala-grovehorn/front.svg",
  29062. extra: 2636 / 2525,
  29063. bottom: 147 / 2781
  29064. }
  29065. },
  29066. back: {
  29067. height: math.unit(7 + 7 / 12, "feet"),
  29068. weight: math.unit(250, "lb"),
  29069. name: "Back",
  29070. image: {
  29071. source: "./media/characters/tala-grovehorn/back.svg",
  29072. extra: 2635 / 2539,
  29073. bottom: 100 / 2732.8
  29074. }
  29075. },
  29076. mouth: {
  29077. height: math.unit(1.15, "feet"),
  29078. name: "Mouth",
  29079. image: {
  29080. source: "./media/characters/tala-grovehorn/mouth.svg"
  29081. }
  29082. },
  29083. dick: {
  29084. height: math.unit(2.36, "feet"),
  29085. name: "Dick",
  29086. image: {
  29087. source: "./media/characters/tala-grovehorn/dick.svg"
  29088. }
  29089. },
  29090. slit: {
  29091. height: math.unit(0.61, "feet"),
  29092. name: "Slit",
  29093. image: {
  29094. source: "./media/characters/tala-grovehorn/slit.svg"
  29095. }
  29096. },
  29097. },
  29098. [
  29099. ]
  29100. ))
  29101. characterMakers.push(() => makeCharacter(
  29102. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29103. {
  29104. front: {
  29105. height: math.unit(7 + 7 / 12, "feet"),
  29106. weight: math.unit(225, "lb"),
  29107. name: "Front",
  29108. image: {
  29109. source: "./media/characters/epona/front.svg",
  29110. extra: 2445 / 2290,
  29111. bottom: 251 / 2696
  29112. }
  29113. },
  29114. back: {
  29115. height: math.unit(7 + 7 / 12, "feet"),
  29116. weight: math.unit(225, "lb"),
  29117. name: "Back",
  29118. image: {
  29119. source: "./media/characters/epona/back.svg",
  29120. extra: 2546 / 2408,
  29121. bottom: 44 / 2589
  29122. }
  29123. },
  29124. genitals: {
  29125. height: math.unit(1.5, "feet"),
  29126. name: "Genitals",
  29127. image: {
  29128. source: "./media/characters/epona/genitals.svg"
  29129. }
  29130. },
  29131. },
  29132. [
  29133. {
  29134. name: "Normal",
  29135. height: math.unit(7 + 7 / 12, "feet"),
  29136. default: true
  29137. },
  29138. ]
  29139. ))
  29140. characterMakers.push(() => makeCharacter(
  29141. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29142. {
  29143. front: {
  29144. height: math.unit(7, "feet"),
  29145. weight: math.unit(518, "lb"),
  29146. name: "Front",
  29147. image: {
  29148. source: "./media/characters/avia-bloodbourn/front.svg",
  29149. extra: 1466 / 1350,
  29150. bottom: 65 / 1527
  29151. }
  29152. },
  29153. },
  29154. [
  29155. ]
  29156. ))
  29157. characterMakers.push(() => makeCharacter(
  29158. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29159. {
  29160. front: {
  29161. height: math.unit(9.35, "feet"),
  29162. weight: math.unit(600, "lb"),
  29163. name: "Front",
  29164. image: {
  29165. source: "./media/characters/amera/front.svg",
  29166. extra: 891 / 818,
  29167. bottom: 30 / 922.7
  29168. }
  29169. },
  29170. back: {
  29171. height: math.unit(9.35, "feet"),
  29172. weight: math.unit(600, "lb"),
  29173. name: "Back",
  29174. image: {
  29175. source: "./media/characters/amera/back.svg",
  29176. extra: 876 / 824,
  29177. bottom: 6.8 / 884
  29178. }
  29179. },
  29180. dick: {
  29181. height: math.unit(2.14, "feet"),
  29182. name: "Dick",
  29183. image: {
  29184. source: "./media/characters/amera/dick.svg"
  29185. }
  29186. },
  29187. },
  29188. [
  29189. {
  29190. name: "Normal",
  29191. height: math.unit(9.35, "feet"),
  29192. default: true
  29193. },
  29194. ]
  29195. ))
  29196. characterMakers.push(() => makeCharacter(
  29197. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29198. {
  29199. kneeling: {
  29200. height: math.unit(3 + 4 / 12, "feet"),
  29201. weight: math.unit(90, "lb"),
  29202. name: "Kneeling",
  29203. image: {
  29204. source: "./media/characters/rosewen/kneeling.svg",
  29205. extra: 1835 / 1571,
  29206. bottom: 27.7 / 1862
  29207. }
  29208. },
  29209. },
  29210. [
  29211. {
  29212. name: "Normal",
  29213. height: math.unit(3 + 4 / 12, "feet"),
  29214. default: true
  29215. },
  29216. ]
  29217. ))
  29218. characterMakers.push(() => makeCharacter(
  29219. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29220. {
  29221. front: {
  29222. height: math.unit(5 + 10 / 12, "feet"),
  29223. weight: math.unit(200, "lb"),
  29224. name: "Front",
  29225. image: {
  29226. source: "./media/characters/sabah/front.svg",
  29227. extra: 849 / 763,
  29228. bottom: 33.9 / 881
  29229. }
  29230. },
  29231. },
  29232. [
  29233. {
  29234. name: "Normal",
  29235. height: math.unit(5 + 10 / 12, "feet"),
  29236. default: true
  29237. },
  29238. ]
  29239. ))
  29240. characterMakers.push(() => makeCharacter(
  29241. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29242. {
  29243. front: {
  29244. height: math.unit(3 + 5 / 12, "feet"),
  29245. weight: math.unit(40, "kg"),
  29246. name: "Front",
  29247. image: {
  29248. source: "./media/characters/purple-flame/front.svg",
  29249. extra: 1577 / 1412,
  29250. bottom: 97 / 1694
  29251. }
  29252. },
  29253. frontDressed: {
  29254. height: math.unit(3 + 5 / 12, "feet"),
  29255. weight: math.unit(40, "kg"),
  29256. name: "Front (Dressed)",
  29257. image: {
  29258. source: "./media/characters/purple-flame/front-dressed.svg",
  29259. extra: 1577 / 1412,
  29260. bottom: 97 / 1694
  29261. }
  29262. },
  29263. headphones: {
  29264. height: math.unit(0.85, "feet"),
  29265. name: "Headphones",
  29266. image: {
  29267. source: "./media/characters/purple-flame/headphones.svg"
  29268. }
  29269. },
  29270. },
  29271. [
  29272. {
  29273. name: "Really Small",
  29274. height: math.unit(5, "cm")
  29275. },
  29276. {
  29277. name: "Micro",
  29278. height: math.unit(1 + 5 / 12, "feet")
  29279. },
  29280. {
  29281. name: "Normal",
  29282. height: math.unit(3 + 5 / 12, "feet"),
  29283. default: true
  29284. },
  29285. {
  29286. name: "Minimacro",
  29287. height: math.unit(125, "feet")
  29288. },
  29289. {
  29290. name: "Macro",
  29291. height: math.unit(0.5, "miles")
  29292. },
  29293. {
  29294. name: "Megamacro",
  29295. height: math.unit(50, "miles")
  29296. },
  29297. {
  29298. name: "Gigantic",
  29299. height: math.unit(750, "miles")
  29300. },
  29301. {
  29302. name: "Planetary",
  29303. height: math.unit(15000, "miles")
  29304. },
  29305. ]
  29306. ))
  29307. characterMakers.push(() => makeCharacter(
  29308. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29309. {
  29310. front: {
  29311. height: math.unit(14, "feet"),
  29312. weight: math.unit(959, "lb"),
  29313. name: "Front",
  29314. image: {
  29315. source: "./media/characters/arsenal/front.svg",
  29316. extra: 2357 / 2157,
  29317. bottom: 93 / 2458
  29318. }
  29319. },
  29320. },
  29321. [
  29322. {
  29323. name: "Normal",
  29324. height: math.unit(14, "feet"),
  29325. default: true
  29326. },
  29327. ]
  29328. ))
  29329. characterMakers.push(() => makeCharacter(
  29330. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29331. {
  29332. front: {
  29333. height: math.unit(6, "feet"),
  29334. weight: math.unit(150, "lb"),
  29335. name: "Front",
  29336. image: {
  29337. source: "./media/characters/adira/front.svg",
  29338. extra: 1078 / 1029,
  29339. bottom: 87 / 1166
  29340. }
  29341. },
  29342. },
  29343. [
  29344. {
  29345. name: "Micro",
  29346. height: math.unit(4, "inches"),
  29347. default: true
  29348. },
  29349. {
  29350. name: "Macro",
  29351. height: math.unit(50, "feet")
  29352. },
  29353. ]
  29354. ))
  29355. characterMakers.push(() => makeCharacter(
  29356. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29357. {
  29358. front: {
  29359. height: math.unit(16, "feet"),
  29360. weight: math.unit(1000, "lb"),
  29361. name: "Front",
  29362. image: {
  29363. source: "./media/characters/grim/front.svg",
  29364. extra: 622 / 614,
  29365. bottom: 18.1 / 642
  29366. }
  29367. },
  29368. back: {
  29369. height: math.unit(16, "feet"),
  29370. weight: math.unit(1000, "lb"),
  29371. name: "Back",
  29372. image: {
  29373. source: "./media/characters/grim/back.svg",
  29374. extra: 610.6 / 602,
  29375. bottom: 40.8 / 652
  29376. }
  29377. },
  29378. hunched: {
  29379. height: math.unit(9.75, "feet"),
  29380. weight: math.unit(1000, "lb"),
  29381. name: "Hunched",
  29382. image: {
  29383. source: "./media/characters/grim/hunched.svg",
  29384. extra: 304 / 297,
  29385. bottom: 35.4 / 394
  29386. }
  29387. },
  29388. },
  29389. [
  29390. {
  29391. name: "Normal",
  29392. height: math.unit(16, "feet"),
  29393. default: true
  29394. },
  29395. ]
  29396. ))
  29397. characterMakers.push(() => makeCharacter(
  29398. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29399. {
  29400. front: {
  29401. height: math.unit(2.3, "meters"),
  29402. weight: math.unit(300, "lb"),
  29403. name: "Front",
  29404. image: {
  29405. source: "./media/characters/sinja/front-sfw.svg",
  29406. extra: 1393 / 1294,
  29407. bottom: 70 / 1463
  29408. }
  29409. },
  29410. frontNsfw: {
  29411. height: math.unit(2.3, "meters"),
  29412. weight: math.unit(300, "lb"),
  29413. name: "Front (NSFW)",
  29414. image: {
  29415. source: "./media/characters/sinja/front-nsfw.svg",
  29416. extra: 1393 / 1294,
  29417. bottom: 70 / 1463
  29418. }
  29419. },
  29420. back: {
  29421. height: math.unit(2.3, "meters"),
  29422. weight: math.unit(300, "lb"),
  29423. name: "Back",
  29424. image: {
  29425. source: "./media/characters/sinja/back.svg",
  29426. extra: 1393 / 1294,
  29427. bottom: 70 / 1463
  29428. }
  29429. },
  29430. head: {
  29431. height: math.unit(1.771, "feet"),
  29432. name: "Head",
  29433. image: {
  29434. source: "./media/characters/sinja/head.svg"
  29435. }
  29436. },
  29437. slit: {
  29438. height: math.unit(0.8, "feet"),
  29439. name: "Slit",
  29440. image: {
  29441. source: "./media/characters/sinja/slit.svg"
  29442. }
  29443. },
  29444. },
  29445. [
  29446. {
  29447. name: "Normal",
  29448. height: math.unit(2.3, "meters")
  29449. },
  29450. {
  29451. name: "Macro",
  29452. height: math.unit(91, "meters"),
  29453. default: true
  29454. },
  29455. {
  29456. name: "Megamacro",
  29457. height: math.unit(91440, "meters")
  29458. },
  29459. {
  29460. name: "Gigamacro",
  29461. height: math.unit(60960000, "meters")
  29462. },
  29463. {
  29464. name: "Teramacro",
  29465. height: math.unit(9144000000, "meters")
  29466. },
  29467. ]
  29468. ))
  29469. characterMakers.push(() => makeCharacter(
  29470. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29471. {
  29472. front: {
  29473. height: math.unit(1.7, "meters"),
  29474. weight: math.unit(130, "lb"),
  29475. name: "Front",
  29476. image: {
  29477. source: "./media/characters/kyu/front.svg",
  29478. extra: 415 / 395,
  29479. bottom: 5 / 420
  29480. }
  29481. },
  29482. head: {
  29483. height: math.unit(1.75, "feet"),
  29484. name: "Head",
  29485. image: {
  29486. source: "./media/characters/kyu/head.svg"
  29487. }
  29488. },
  29489. foot: {
  29490. height: math.unit(0.81, "feet"),
  29491. name: "Foot",
  29492. image: {
  29493. source: "./media/characters/kyu/foot.svg"
  29494. }
  29495. },
  29496. },
  29497. [
  29498. {
  29499. name: "Normal",
  29500. height: math.unit(1.7, "meters")
  29501. },
  29502. {
  29503. name: "Macro",
  29504. height: math.unit(131, "feet"),
  29505. default: true
  29506. },
  29507. {
  29508. name: "Megamacro",
  29509. height: math.unit(91440, "meters")
  29510. },
  29511. {
  29512. name: "Gigamacro",
  29513. height: math.unit(60960000, "meters")
  29514. },
  29515. {
  29516. name: "Teramacro",
  29517. height: math.unit(9144000000, "meters")
  29518. },
  29519. ]
  29520. ))
  29521. characterMakers.push(() => makeCharacter(
  29522. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29523. {
  29524. front: {
  29525. height: math.unit(7 + 1 / 12, "feet"),
  29526. weight: math.unit(250, "lb"),
  29527. name: "Front",
  29528. image: {
  29529. source: "./media/characters/joey/front.svg",
  29530. extra: 1791 / 1537,
  29531. bottom: 28 / 1816
  29532. }
  29533. },
  29534. },
  29535. [
  29536. {
  29537. name: "Micro",
  29538. height: math.unit(3, "inches")
  29539. },
  29540. {
  29541. name: "Normal",
  29542. height: math.unit(7 + 1 / 12, "feet"),
  29543. default: true
  29544. },
  29545. ]
  29546. ))
  29547. characterMakers.push(() => makeCharacter(
  29548. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29549. {
  29550. front: {
  29551. height: math.unit(165, "cm"),
  29552. weight: math.unit(140, "lb"),
  29553. name: "Front",
  29554. image: {
  29555. source: "./media/characters/sam-evans/front.svg",
  29556. extra: 3417 / 3230,
  29557. bottom: 41.3 / 3417
  29558. }
  29559. },
  29560. frontSixTails: {
  29561. height: math.unit(165, "cm"),
  29562. weight: math.unit(140, "lb"),
  29563. name: "Front-six-tails",
  29564. image: {
  29565. source: "./media/characters/sam-evans/front-six-tails.svg",
  29566. extra: 3417 / 3230,
  29567. bottom: 41.3 / 3417
  29568. }
  29569. },
  29570. back: {
  29571. height: math.unit(165, "cm"),
  29572. weight: math.unit(140, "lb"),
  29573. name: "Back",
  29574. image: {
  29575. source: "./media/characters/sam-evans/back.svg",
  29576. extra: 3227 / 3032,
  29577. bottom: 6.8 / 3234
  29578. }
  29579. },
  29580. face: {
  29581. height: math.unit(0.68, "feet"),
  29582. name: "Face",
  29583. image: {
  29584. source: "./media/characters/sam-evans/face.svg"
  29585. }
  29586. },
  29587. },
  29588. [
  29589. {
  29590. name: "Normal",
  29591. height: math.unit(165, "cm"),
  29592. default: true
  29593. },
  29594. {
  29595. name: "Macro",
  29596. height: math.unit(100, "meters")
  29597. },
  29598. {
  29599. name: "Macro+",
  29600. height: math.unit(800, "meters")
  29601. },
  29602. {
  29603. name: "Macro++",
  29604. height: math.unit(3, "km")
  29605. },
  29606. {
  29607. name: "Macro+++",
  29608. height: math.unit(30, "km")
  29609. },
  29610. ]
  29611. ))
  29612. characterMakers.push(() => makeCharacter(
  29613. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29614. {
  29615. front: {
  29616. height: math.unit(10, "feet"),
  29617. weight: math.unit(750, "lb"),
  29618. name: "Front",
  29619. image: {
  29620. source: "./media/characters/juliet-a/front.svg",
  29621. extra: 1766 / 1720,
  29622. bottom: 43 / 1809
  29623. }
  29624. },
  29625. back: {
  29626. height: math.unit(10, "feet"),
  29627. weight: math.unit(750, "lb"),
  29628. name: "Back",
  29629. image: {
  29630. source: "./media/characters/juliet-a/back.svg",
  29631. extra: 1781 / 1734,
  29632. bottom: 35 / 1810,
  29633. }
  29634. },
  29635. },
  29636. [
  29637. {
  29638. name: "Normal",
  29639. height: math.unit(10, "feet"),
  29640. default: true
  29641. },
  29642. {
  29643. name: "Dragon Form",
  29644. height: math.unit(250, "feet")
  29645. },
  29646. {
  29647. name: "Macro",
  29648. height: math.unit(1000, "feet")
  29649. },
  29650. {
  29651. name: "Megamacro",
  29652. height: math.unit(10000, "feet")
  29653. }
  29654. ]
  29655. ))
  29656. characterMakers.push(() => makeCharacter(
  29657. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29658. {
  29659. regular: {
  29660. height: math.unit(7 + 3 / 12, "feet"),
  29661. weight: math.unit(260, "lb"),
  29662. name: "Regular",
  29663. image: {
  29664. source: "./media/characters/wild/regular.svg",
  29665. extra: 97.45 / 92,
  29666. bottom: 6.8 / 104.3
  29667. }
  29668. },
  29669. biggums: {
  29670. height: math.unit(8 + 6 / 12, "feet"),
  29671. weight: math.unit(425, "lb"),
  29672. name: "Biggums",
  29673. image: {
  29674. source: "./media/characters/wild/biggums.svg",
  29675. extra: 97.45 / 92,
  29676. bottom: 7.5 / 132.34
  29677. }
  29678. },
  29679. mawRegular: {
  29680. height: math.unit(1.24, "feet"),
  29681. name: "Maw (Regular)",
  29682. image: {
  29683. source: "./media/characters/wild/maw.svg"
  29684. }
  29685. },
  29686. mawBiggums: {
  29687. height: math.unit(1.47, "feet"),
  29688. name: "Maw (Biggums)",
  29689. image: {
  29690. source: "./media/characters/wild/maw.svg"
  29691. }
  29692. },
  29693. },
  29694. [
  29695. {
  29696. name: "Normal",
  29697. height: math.unit(7 + 3 / 12, "feet"),
  29698. default: true
  29699. },
  29700. ]
  29701. ))
  29702. characterMakers.push(() => makeCharacter(
  29703. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29704. {
  29705. front: {
  29706. height: math.unit(2.5, "meters"),
  29707. weight: math.unit(200, "kg"),
  29708. name: "Front",
  29709. image: {
  29710. source: "./media/characters/vidar/front.svg",
  29711. extra: 2994 / 2795,
  29712. bottom: 56 / 3061
  29713. }
  29714. },
  29715. back: {
  29716. height: math.unit(2.5, "meters"),
  29717. weight: math.unit(200, "kg"),
  29718. name: "Back",
  29719. image: {
  29720. source: "./media/characters/vidar/back.svg",
  29721. extra: 3131 / 2928,
  29722. bottom: 13.5 / 3141.5
  29723. }
  29724. },
  29725. feral: {
  29726. height: math.unit(2.5, "meters"),
  29727. weight: math.unit(2000, "kg"),
  29728. name: "Feral",
  29729. image: {
  29730. source: "./media/characters/vidar/feral.svg",
  29731. extra: 2790 / 1765,
  29732. bottom: 6 / 2796
  29733. }
  29734. },
  29735. },
  29736. [
  29737. {
  29738. name: "Normal",
  29739. height: math.unit(2.5, "meters"),
  29740. default: true
  29741. },
  29742. {
  29743. name: "Macro",
  29744. height: math.unit(100, "meters")
  29745. },
  29746. ]
  29747. ))
  29748. characterMakers.push(() => makeCharacter(
  29749. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29750. {
  29751. front: {
  29752. height: math.unit(5 + 9 / 12, "feet"),
  29753. weight: math.unit(120, "lb"),
  29754. name: "Front",
  29755. image: {
  29756. source: "./media/characters/ash/front.svg",
  29757. extra: 2189 / 1961,
  29758. bottom: 5.2 / 2194
  29759. }
  29760. },
  29761. },
  29762. [
  29763. {
  29764. name: "Normal",
  29765. height: math.unit(5 + 9 / 12, "feet"),
  29766. default: true
  29767. },
  29768. ]
  29769. ))
  29770. characterMakers.push(() => makeCharacter(
  29771. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29772. {
  29773. front: {
  29774. height: math.unit(9, "feet"),
  29775. weight: math.unit(10000, "lb"),
  29776. name: "Front",
  29777. image: {
  29778. source: "./media/characters/gygabite/front.svg",
  29779. bottom: 31.7 / 537.8,
  29780. extra: 505 / 370
  29781. }
  29782. },
  29783. },
  29784. [
  29785. {
  29786. name: "Normal",
  29787. height: math.unit(9, "feet"),
  29788. default: true
  29789. },
  29790. ]
  29791. ))
  29792. characterMakers.push(() => makeCharacter(
  29793. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29794. {
  29795. front: {
  29796. height: math.unit(12, "feet"),
  29797. weight: math.unit(4000, "lb"),
  29798. name: "Front",
  29799. image: {
  29800. source: "./media/characters/p0tat0/front.svg",
  29801. extra: 1065 / 921,
  29802. bottom: 55.7 / 1121.25
  29803. }
  29804. },
  29805. },
  29806. [
  29807. {
  29808. name: "Normal",
  29809. height: math.unit(12, "feet"),
  29810. default: true
  29811. },
  29812. ]
  29813. ))
  29814. characterMakers.push(() => makeCharacter(
  29815. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29816. {
  29817. side: {
  29818. height: math.unit(6.5, "feet"),
  29819. weight: math.unit(800, "lb"),
  29820. name: "Side",
  29821. image: {
  29822. source: "./media/characters/dusk/side.svg",
  29823. extra: 615 / 373,
  29824. bottom: 53 / 664
  29825. }
  29826. },
  29827. sitting: {
  29828. height: math.unit(7, "feet"),
  29829. weight: math.unit(800, "lb"),
  29830. name: "Sitting",
  29831. image: {
  29832. source: "./media/characters/dusk/sitting.svg",
  29833. extra: 753 / 425,
  29834. bottom: 33 / 774
  29835. }
  29836. },
  29837. head: {
  29838. height: math.unit(6.1, "feet"),
  29839. name: "Head",
  29840. image: {
  29841. source: "./media/characters/dusk/head.svg"
  29842. }
  29843. },
  29844. },
  29845. [
  29846. {
  29847. name: "Normal",
  29848. height: math.unit(7, "feet"),
  29849. default: true
  29850. },
  29851. ]
  29852. ))
  29853. characterMakers.push(() => makeCharacter(
  29854. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29855. {
  29856. front: {
  29857. height: math.unit(15, "feet"),
  29858. weight: math.unit(7000, "lb"),
  29859. name: "Front",
  29860. image: {
  29861. source: "./media/characters/jay-direwolf/front.svg",
  29862. extra: 1810 / 1732,
  29863. bottom: 66 / 1892
  29864. }
  29865. },
  29866. },
  29867. [
  29868. {
  29869. name: "Normal",
  29870. height: math.unit(15, "feet"),
  29871. default: true
  29872. },
  29873. ]
  29874. ))
  29875. characterMakers.push(() => makeCharacter(
  29876. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29877. {
  29878. front: {
  29879. height: math.unit(4 + 9 / 12, "feet"),
  29880. weight: math.unit(130, "lb"),
  29881. name: "Front",
  29882. image: {
  29883. source: "./media/characters/anchovie/front.svg",
  29884. extra: 382 / 350,
  29885. bottom: 25 / 409
  29886. }
  29887. },
  29888. back: {
  29889. height: math.unit(4 + 9 / 12, "feet"),
  29890. weight: math.unit(130, "lb"),
  29891. name: "Back",
  29892. image: {
  29893. source: "./media/characters/anchovie/back.svg",
  29894. extra: 385 / 352,
  29895. bottom: 16.6 / 402
  29896. }
  29897. },
  29898. frontDressed: {
  29899. height: math.unit(4 + 9 / 12, "feet"),
  29900. weight: math.unit(130, "lb"),
  29901. name: "Front (Dressed)",
  29902. image: {
  29903. source: "./media/characters/anchovie/front-dressed.svg",
  29904. extra: 382 / 350,
  29905. bottom: 25 / 409
  29906. }
  29907. },
  29908. backDressed: {
  29909. height: math.unit(4 + 9 / 12, "feet"),
  29910. weight: math.unit(130, "lb"),
  29911. name: "Back (Dressed)",
  29912. image: {
  29913. source: "./media/characters/anchovie/back-dressed.svg",
  29914. extra: 385 / 352,
  29915. bottom: 16.6 / 402
  29916. }
  29917. },
  29918. },
  29919. [
  29920. {
  29921. name: "Micro",
  29922. height: math.unit(6.4, "inches")
  29923. },
  29924. {
  29925. name: "Normal",
  29926. height: math.unit(4 + 9 / 12, "feet"),
  29927. default: true
  29928. },
  29929. ]
  29930. ))
  29931. characterMakers.push(() => makeCharacter(
  29932. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29933. {
  29934. front: {
  29935. height: math.unit(2, "meters"),
  29936. weight: math.unit(180, "lb"),
  29937. name: "Front",
  29938. image: {
  29939. source: "./media/characters/acidrenamon/front.svg",
  29940. extra: 987 / 890,
  29941. bottom: 22.8 / 1009
  29942. }
  29943. },
  29944. back: {
  29945. height: math.unit(2, "meters"),
  29946. weight: math.unit(180, "lb"),
  29947. name: "Back",
  29948. image: {
  29949. source: "./media/characters/acidrenamon/back.svg",
  29950. extra: 983 / 891,
  29951. bottom: 8.4 / 992
  29952. }
  29953. },
  29954. head: {
  29955. height: math.unit(1.92, "feet"),
  29956. name: "Head",
  29957. image: {
  29958. source: "./media/characters/acidrenamon/head.svg"
  29959. }
  29960. },
  29961. rump: {
  29962. height: math.unit(1.72, "feet"),
  29963. name: "Rump",
  29964. image: {
  29965. source: "./media/characters/acidrenamon/rump.svg"
  29966. }
  29967. },
  29968. tail: {
  29969. height: math.unit(4.2, "feet"),
  29970. name: "Tail",
  29971. image: {
  29972. source: "./media/characters/acidrenamon/tail.svg"
  29973. }
  29974. },
  29975. },
  29976. [
  29977. {
  29978. name: "Normal",
  29979. height: math.unit(2, "meters"),
  29980. default: true
  29981. },
  29982. {
  29983. name: "Minimacro",
  29984. height: math.unit(7, "meters")
  29985. },
  29986. {
  29987. name: "Macro",
  29988. height: math.unit(200, "meters")
  29989. },
  29990. {
  29991. name: "Gigamacro",
  29992. height: math.unit(0.2, "earths")
  29993. },
  29994. ]
  29995. ))
  29996. characterMakers.push(() => makeCharacter(
  29997. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29998. {
  29999. front: {
  30000. height: math.unit(152, "feet"),
  30001. name: "Front",
  30002. image: {
  30003. source: "./media/characters/kenzie-lee/front.svg",
  30004. extra: 1869/1774,
  30005. bottom: 128/1997
  30006. }
  30007. },
  30008. side: {
  30009. height: math.unit(86, "feet"),
  30010. name: "Side",
  30011. image: {
  30012. source: "./media/characters/kenzie-lee/side.svg",
  30013. extra: 930/815,
  30014. bottom: 177/1107
  30015. }
  30016. },
  30017. paw: {
  30018. height: math.unit(15, "feet"),
  30019. name: "Paw",
  30020. image: {
  30021. source: "./media/characters/kenzie-lee/paw.svg"
  30022. }
  30023. },
  30024. },
  30025. [
  30026. {
  30027. name: "Kenzie Flea",
  30028. height: math.unit(2, "mm"),
  30029. default: true
  30030. },
  30031. {
  30032. name: "Micro",
  30033. height: math.unit(2, "inches")
  30034. },
  30035. {
  30036. name: "Normal",
  30037. height: math.unit(152, "feet")
  30038. },
  30039. {
  30040. name: "Megamacro",
  30041. height: math.unit(7, "miles")
  30042. },
  30043. {
  30044. name: "Gigamacro",
  30045. height: math.unit(8000, "miles")
  30046. },
  30047. ]
  30048. ))
  30049. characterMakers.push(() => makeCharacter(
  30050. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30051. {
  30052. front: {
  30053. height: math.unit(6, "feet"),
  30054. name: "Front",
  30055. image: {
  30056. source: "./media/characters/withers/front.svg",
  30057. extra: 1935/1760,
  30058. bottom: 72/2007
  30059. }
  30060. },
  30061. back: {
  30062. height: math.unit(6, "feet"),
  30063. name: "Back",
  30064. image: {
  30065. source: "./media/characters/withers/back.svg",
  30066. extra: 1944/1792,
  30067. bottom: 12/1956
  30068. }
  30069. },
  30070. dressed: {
  30071. height: math.unit(6, "feet"),
  30072. name: "Dressed",
  30073. image: {
  30074. source: "./media/characters/withers/dressed.svg",
  30075. extra: 1937/1765,
  30076. bottom: 73/2010
  30077. }
  30078. },
  30079. phase1: {
  30080. height: math.unit(1.1, "feet"),
  30081. name: "Phase 1",
  30082. image: {
  30083. source: "./media/characters/withers/phase-1.svg",
  30084. extra: 1885/1232,
  30085. bottom: 0/1885
  30086. }
  30087. },
  30088. phase2: {
  30089. height: math.unit(1.05, "feet"),
  30090. name: "Phase 2",
  30091. image: {
  30092. source: "./media/characters/withers/phase-2.svg",
  30093. extra: 1792/1090,
  30094. bottom: 0/1792
  30095. }
  30096. },
  30097. partyWipe: {
  30098. height: math.unit(1.1, "feet"),
  30099. name: "Party Wipe",
  30100. image: {
  30101. source: "./media/characters/withers/party-wipe.svg",
  30102. extra: 1864/1207,
  30103. bottom: 0/1864
  30104. }
  30105. },
  30106. },
  30107. [
  30108. {
  30109. name: "Macro",
  30110. height: math.unit(167, "feet"),
  30111. default: true
  30112. },
  30113. {
  30114. name: "Megamacro",
  30115. height: math.unit(15, "miles")
  30116. }
  30117. ]
  30118. ))
  30119. characterMakers.push(() => makeCharacter(
  30120. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30121. {
  30122. front: {
  30123. height: math.unit(6 + 7 / 12, "feet"),
  30124. weight: math.unit(250, "lb"),
  30125. name: "Front",
  30126. image: {
  30127. source: "./media/characters/nemoskii/front.svg",
  30128. extra: 2270 / 1734,
  30129. bottom: 86 / 2354
  30130. }
  30131. },
  30132. back: {
  30133. height: math.unit(6 + 7 / 12, "feet"),
  30134. weight: math.unit(250, "lb"),
  30135. name: "Back",
  30136. image: {
  30137. source: "./media/characters/nemoskii/back.svg",
  30138. extra: 1845 / 1788,
  30139. bottom: 10.5 / 1852
  30140. }
  30141. },
  30142. head: {
  30143. height: math.unit(1.31, "feet"),
  30144. name: "Head",
  30145. image: {
  30146. source: "./media/characters/nemoskii/head.svg"
  30147. }
  30148. },
  30149. },
  30150. [
  30151. {
  30152. name: "Micro",
  30153. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30154. },
  30155. {
  30156. name: "Normal",
  30157. height: math.unit(6 + 7 / 12, "feet"),
  30158. default: true
  30159. },
  30160. {
  30161. name: "Macro",
  30162. height: math.unit((6 + 7 / 12) * 150, "feet")
  30163. },
  30164. {
  30165. name: "Macro+",
  30166. height: math.unit((6 + 7 / 12) * 500, "feet")
  30167. },
  30168. {
  30169. name: "Megamacro",
  30170. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30171. },
  30172. ]
  30173. ))
  30174. characterMakers.push(() => makeCharacter(
  30175. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30176. {
  30177. front: {
  30178. height: math.unit(1, "mile"),
  30179. weight: math.unit(265261.9, "lb"),
  30180. name: "Front",
  30181. image: {
  30182. source: "./media/characters/shui/front.svg",
  30183. extra: 1633 / 1564,
  30184. bottom: 91.5 / 1726
  30185. }
  30186. },
  30187. },
  30188. [
  30189. {
  30190. name: "Macro",
  30191. height: math.unit(1, "mile"),
  30192. default: true
  30193. },
  30194. ]
  30195. ))
  30196. characterMakers.push(() => makeCharacter(
  30197. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30198. {
  30199. front: {
  30200. height: math.unit(12 + 6 / 12, "feet"),
  30201. weight: math.unit(1342, "lb"),
  30202. name: "Front",
  30203. image: {
  30204. source: "./media/characters/arokh-takakura/front.svg",
  30205. extra: 1089 / 1043,
  30206. bottom: 77.4 / 1176.7
  30207. }
  30208. },
  30209. back: {
  30210. height: math.unit(12 + 6 / 12, "feet"),
  30211. weight: math.unit(1342, "lb"),
  30212. name: "Back",
  30213. image: {
  30214. source: "./media/characters/arokh-takakura/back.svg",
  30215. extra: 1046 / 1019,
  30216. bottom: 102 / 1150
  30217. }
  30218. },
  30219. },
  30220. [
  30221. {
  30222. name: "Big",
  30223. height: math.unit(12 + 6 / 12, "feet"),
  30224. default: true
  30225. },
  30226. ]
  30227. ))
  30228. characterMakers.push(() => makeCharacter(
  30229. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30230. {
  30231. front: {
  30232. height: math.unit(5 + 6 / 12, "feet"),
  30233. weight: math.unit(150, "lb"),
  30234. name: "Front",
  30235. image: {
  30236. source: "./media/characters/theo/front.svg",
  30237. extra: 1184 / 1131,
  30238. bottom: 7.4 / 1191
  30239. }
  30240. },
  30241. },
  30242. [
  30243. {
  30244. name: "Micro",
  30245. height: math.unit(5, "inches")
  30246. },
  30247. {
  30248. name: "Normal",
  30249. height: math.unit(5 + 6 / 12, "feet"),
  30250. default: true
  30251. },
  30252. ]
  30253. ))
  30254. characterMakers.push(() => makeCharacter(
  30255. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30256. {
  30257. front: {
  30258. height: math.unit(5 + 9 / 12, "feet"),
  30259. weight: math.unit(130, "lb"),
  30260. name: "Front",
  30261. image: {
  30262. source: "./media/characters/cecelia-swift/front.svg",
  30263. extra: 502 / 484,
  30264. bottom: 23 / 523
  30265. }
  30266. },
  30267. back: {
  30268. height: math.unit(5 + 9 / 12, "feet"),
  30269. weight: math.unit(130, "lb"),
  30270. name: "Back",
  30271. image: {
  30272. source: "./media/characters/cecelia-swift/back.svg",
  30273. extra: 499 / 485,
  30274. bottom: 12 / 511
  30275. }
  30276. },
  30277. head: {
  30278. height: math.unit(0.90, "feet"),
  30279. name: "Head",
  30280. image: {
  30281. source: "./media/characters/cecelia-swift/head.svg"
  30282. }
  30283. },
  30284. rump: {
  30285. height: math.unit(1.75, "feet"),
  30286. name: "Rump",
  30287. image: {
  30288. source: "./media/characters/cecelia-swift/rump.svg"
  30289. }
  30290. },
  30291. },
  30292. [
  30293. {
  30294. name: "Normal",
  30295. height: math.unit(5 + 9 / 12, "feet"),
  30296. default: true
  30297. },
  30298. {
  30299. name: "Big",
  30300. height: math.unit(50, "feet")
  30301. },
  30302. {
  30303. name: "Macro",
  30304. height: math.unit(100, "feet")
  30305. },
  30306. {
  30307. name: "Macro+",
  30308. height: math.unit(500, "feet")
  30309. },
  30310. {
  30311. name: "Macro++",
  30312. height: math.unit(1000, "feet")
  30313. },
  30314. ]
  30315. ))
  30316. characterMakers.push(() => makeCharacter(
  30317. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30318. {
  30319. front: {
  30320. height: math.unit(6, "feet"),
  30321. weight: math.unit(150, "lb"),
  30322. name: "Front",
  30323. image: {
  30324. source: "./media/characters/kaunan/front.svg",
  30325. extra: 2890 / 2523,
  30326. bottom: 49 / 2939
  30327. }
  30328. },
  30329. },
  30330. [
  30331. {
  30332. name: "Macro",
  30333. height: math.unit(150, "feet"),
  30334. default: true
  30335. },
  30336. ]
  30337. ))
  30338. characterMakers.push(() => makeCharacter(
  30339. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30340. {
  30341. dressed: {
  30342. height: math.unit(175, "cm"),
  30343. weight: math.unit(60, "kg"),
  30344. name: "Dressed",
  30345. image: {
  30346. source: "./media/characters/fei/dressed.svg",
  30347. extra: 1402/1278,
  30348. bottom: 27/1429
  30349. }
  30350. },
  30351. nude: {
  30352. height: math.unit(175, "cm"),
  30353. weight: math.unit(60, "kg"),
  30354. name: "Nude",
  30355. image: {
  30356. source: "./media/characters/fei/nude.svg",
  30357. extra: 1402/1278,
  30358. bottom: 27/1429
  30359. }
  30360. },
  30361. heels: {
  30362. height: math.unit(0.466, "feet"),
  30363. name: "Heels",
  30364. image: {
  30365. source: "./media/characters/fei/heels.svg",
  30366. extra: 156/152,
  30367. bottom: 28/184
  30368. }
  30369. },
  30370. },
  30371. [
  30372. {
  30373. name: "Mortal",
  30374. height: math.unit(175, "cm")
  30375. },
  30376. {
  30377. name: "Normal",
  30378. height: math.unit(3500, "m")
  30379. },
  30380. {
  30381. name: "Stroll",
  30382. height: math.unit(18.4, "km"),
  30383. default: true
  30384. },
  30385. {
  30386. name: "Showoff",
  30387. height: math.unit(175, "km")
  30388. },
  30389. ]
  30390. ))
  30391. characterMakers.push(() => makeCharacter(
  30392. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30393. {
  30394. front: {
  30395. height: math.unit(7, "feet"),
  30396. weight: math.unit(1000, "kg"),
  30397. name: "Front",
  30398. image: {
  30399. source: "./media/characters/edrax/front.svg",
  30400. extra: 2838 / 2550,
  30401. bottom: 130 / 2968
  30402. }
  30403. },
  30404. },
  30405. [
  30406. {
  30407. name: "Small",
  30408. height: math.unit(7, "feet")
  30409. },
  30410. {
  30411. name: "Normal",
  30412. height: math.unit(1500, "meters")
  30413. },
  30414. {
  30415. name: "Mega",
  30416. height: math.unit(12000000, "km"),
  30417. default: true
  30418. },
  30419. {
  30420. name: "Megamacro",
  30421. height: math.unit(10600000, "lightyears")
  30422. },
  30423. {
  30424. name: "Hypermacro",
  30425. height: math.unit(256, "yottameters")
  30426. },
  30427. ]
  30428. ))
  30429. characterMakers.push(() => makeCharacter(
  30430. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30431. {
  30432. front: {
  30433. height: math.unit(10, "feet"),
  30434. weight: math.unit(750, "lb"),
  30435. name: "Front",
  30436. image: {
  30437. source: "./media/characters/clove/front.svg",
  30438. extra: 1918/1751,
  30439. bottom: 52/1970
  30440. }
  30441. },
  30442. back: {
  30443. height: math.unit(10, "feet"),
  30444. weight: math.unit(750, "lb"),
  30445. name: "Back",
  30446. image: {
  30447. source: "./media/characters/clove/back.svg",
  30448. extra: 1912/1747,
  30449. bottom: 50/1962
  30450. }
  30451. },
  30452. },
  30453. [
  30454. {
  30455. name: "Normal",
  30456. height: math.unit(10, "feet"),
  30457. default: true
  30458. },
  30459. ]
  30460. ))
  30461. characterMakers.push(() => makeCharacter(
  30462. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30463. {
  30464. front: {
  30465. height: math.unit(4, "feet"),
  30466. weight: math.unit(50, "lb"),
  30467. name: "Front",
  30468. image: {
  30469. source: "./media/characters/alex-rabbit/front.svg",
  30470. extra: 507 / 458,
  30471. bottom: 18.5 / 527
  30472. }
  30473. },
  30474. back: {
  30475. height: math.unit(4, "feet"),
  30476. weight: math.unit(50, "lb"),
  30477. name: "Back",
  30478. image: {
  30479. source: "./media/characters/alex-rabbit/back.svg",
  30480. extra: 502 / 460,
  30481. bottom: 18.9 / 521
  30482. }
  30483. },
  30484. },
  30485. [
  30486. {
  30487. name: "Normal",
  30488. height: math.unit(4, "feet"),
  30489. default: true
  30490. },
  30491. ]
  30492. ))
  30493. characterMakers.push(() => makeCharacter(
  30494. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30495. {
  30496. front: {
  30497. height: math.unit(1 + 3 / 12, "feet"),
  30498. weight: math.unit(80, "lb"),
  30499. name: "Front",
  30500. image: {
  30501. source: "./media/characters/zander-rose/front.svg",
  30502. extra: 916 / 797,
  30503. bottom: 17 / 933
  30504. }
  30505. },
  30506. back: {
  30507. height: math.unit(1 + 3 / 12, "feet"),
  30508. weight: math.unit(80, "lb"),
  30509. name: "Back",
  30510. image: {
  30511. source: "./media/characters/zander-rose/back.svg",
  30512. extra: 903 / 779,
  30513. bottom: 31 / 934
  30514. }
  30515. },
  30516. },
  30517. [
  30518. {
  30519. name: "Normal",
  30520. height: math.unit(1 + 3 / 12, "feet"),
  30521. default: true
  30522. },
  30523. ]
  30524. ))
  30525. characterMakers.push(() => makeCharacter(
  30526. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30527. {
  30528. anthro: {
  30529. height: math.unit(6, "feet"),
  30530. weight: math.unit(150, "lb"),
  30531. name: "Anthro",
  30532. image: {
  30533. source: "./media/characters/razz/anthro.svg",
  30534. extra: 1437 / 1343,
  30535. bottom: 48 / 1485
  30536. }
  30537. },
  30538. feral: {
  30539. height: math.unit(6, "feet"),
  30540. weight: math.unit(150, "lb"),
  30541. name: "Feral",
  30542. image: {
  30543. source: "./media/characters/razz/feral.svg",
  30544. extra: 2569 / 1385,
  30545. bottom: 95 / 2664
  30546. }
  30547. },
  30548. },
  30549. [
  30550. {
  30551. name: "Normal",
  30552. height: math.unit(6, "feet"),
  30553. default: true
  30554. },
  30555. ]
  30556. ))
  30557. characterMakers.push(() => makeCharacter(
  30558. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30559. {
  30560. front: {
  30561. height: math.unit(9 + 4 / 12, "feet"),
  30562. weight: math.unit(500, "lb"),
  30563. name: "Front",
  30564. image: {
  30565. source: "./media/characters/morrigan/front.svg",
  30566. extra: 2707 / 2579,
  30567. bottom: 156 / 2863
  30568. }
  30569. },
  30570. },
  30571. [
  30572. {
  30573. name: "Normal",
  30574. height: math.unit(9 + 4 / 12, "feet"),
  30575. default: true
  30576. },
  30577. ]
  30578. ))
  30579. characterMakers.push(() => makeCharacter(
  30580. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30581. {
  30582. front: {
  30583. height: math.unit(5, "stories"),
  30584. weight: math.unit(4000, "lb"),
  30585. name: "Front",
  30586. image: {
  30587. source: "./media/characters/jenene/front.svg",
  30588. extra: 1780 / 1710,
  30589. bottom: 57 / 1837
  30590. }
  30591. },
  30592. },
  30593. [
  30594. {
  30595. name: "Normal",
  30596. height: math.unit(5, "stories"),
  30597. default: true
  30598. },
  30599. ]
  30600. ))
  30601. characterMakers.push(() => makeCharacter(
  30602. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30603. {
  30604. taurSfw: {
  30605. height: math.unit(10, "meters"),
  30606. weight: math.unit(17500, "kg"),
  30607. name: "Taur",
  30608. image: {
  30609. source: "./media/characters/faey/taur-sfw.svg",
  30610. extra: 1200 / 968,
  30611. bottom: 41 / 1241
  30612. }
  30613. },
  30614. chestmaw: {
  30615. height: math.unit(2.01, "meters"),
  30616. name: "Chestmaw",
  30617. image: {
  30618. source: "./media/characters/faey/chestmaw.svg"
  30619. }
  30620. },
  30621. foot: {
  30622. height: math.unit(2.43, "meters"),
  30623. name: "Foot",
  30624. image: {
  30625. source: "./media/characters/faey/foot.svg"
  30626. }
  30627. },
  30628. jaws: {
  30629. height: math.unit(1.66, "meters"),
  30630. name: "Jaws",
  30631. image: {
  30632. source: "./media/characters/faey/jaws.svg"
  30633. }
  30634. },
  30635. tongues: {
  30636. height: math.unit(2.01, "meters"),
  30637. name: "Tongues",
  30638. image: {
  30639. source: "./media/characters/faey/tongues.svg"
  30640. }
  30641. },
  30642. },
  30643. [
  30644. {
  30645. name: "Small",
  30646. height: math.unit(10, "meters"),
  30647. default: true
  30648. },
  30649. {
  30650. name: "Big",
  30651. height: math.unit(500000, "km")
  30652. },
  30653. ]
  30654. ))
  30655. characterMakers.push(() => makeCharacter(
  30656. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30657. {
  30658. front: {
  30659. height: math.unit(7, "feet"),
  30660. weight: math.unit(275, "lb"),
  30661. name: "Front",
  30662. image: {
  30663. source: "./media/characters/roku/front.svg",
  30664. extra: 903 / 878,
  30665. bottom: 37 / 940
  30666. }
  30667. },
  30668. },
  30669. [
  30670. {
  30671. name: "Normal",
  30672. height: math.unit(7, "feet"),
  30673. default: true
  30674. },
  30675. {
  30676. name: "Macro",
  30677. height: math.unit(500, "feet")
  30678. },
  30679. {
  30680. name: "Megamacro",
  30681. height: math.unit(200, "miles")
  30682. },
  30683. ]
  30684. ))
  30685. characterMakers.push(() => makeCharacter(
  30686. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30687. {
  30688. front: {
  30689. height: math.unit(6 + 2 / 12, "feet"),
  30690. weight: math.unit(150, "lb"),
  30691. name: "Front",
  30692. image: {
  30693. source: "./media/characters/lira/front.svg",
  30694. extra: 1727 / 1605,
  30695. bottom: 26 / 1753
  30696. }
  30697. },
  30698. back: {
  30699. height: math.unit(6 + 2 / 12, "feet"),
  30700. weight: math.unit(150, "lb"),
  30701. name: "Back",
  30702. image: {
  30703. source: "./media/characters/lira/back.svg",
  30704. extra: 1713/1621,
  30705. bottom: 20/1733
  30706. }
  30707. },
  30708. hand: {
  30709. height: math.unit(0.75, "feet"),
  30710. name: "Hand",
  30711. image: {
  30712. source: "./media/characters/lira/hand.svg"
  30713. }
  30714. },
  30715. maw: {
  30716. height: math.unit(0.65, "feet"),
  30717. name: "Maw",
  30718. image: {
  30719. source: "./media/characters/lira/maw.svg"
  30720. }
  30721. },
  30722. pawDigi: {
  30723. height: math.unit(1.6, "feet"),
  30724. name: "Paw Digi",
  30725. image: {
  30726. source: "./media/characters/lira/paw-digi.svg"
  30727. }
  30728. },
  30729. pawPlanti: {
  30730. height: math.unit(1.4, "feet"),
  30731. name: "Paw Planti",
  30732. image: {
  30733. source: "./media/characters/lira/paw-planti.svg"
  30734. }
  30735. },
  30736. },
  30737. [
  30738. {
  30739. name: "Normal",
  30740. height: math.unit(6 + 2 / 12, "feet"),
  30741. default: true
  30742. },
  30743. {
  30744. name: "Macro",
  30745. height: math.unit(100, "feet")
  30746. },
  30747. {
  30748. name: "Macro²",
  30749. height: math.unit(1600, "feet")
  30750. },
  30751. {
  30752. name: "Planetary",
  30753. height: math.unit(20, "earths")
  30754. },
  30755. ]
  30756. ))
  30757. characterMakers.push(() => makeCharacter(
  30758. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30759. {
  30760. front: {
  30761. height: math.unit(6, "feet"),
  30762. weight: math.unit(150, "lb"),
  30763. name: "Front",
  30764. image: {
  30765. source: "./media/characters/hadjet/front.svg",
  30766. extra: 1480 / 1346,
  30767. bottom: 26 / 1506
  30768. }
  30769. },
  30770. frontNsfw: {
  30771. height: math.unit(6, "feet"),
  30772. weight: math.unit(150, "lb"),
  30773. name: "Front (NSFW)",
  30774. image: {
  30775. source: "./media/characters/hadjet/front-nsfw.svg",
  30776. extra: 1440 / 1358,
  30777. bottom: 52 / 1492
  30778. }
  30779. },
  30780. },
  30781. [
  30782. {
  30783. name: "Macro",
  30784. height: math.unit(10, "stories"),
  30785. default: true
  30786. },
  30787. {
  30788. name: "Megamacro",
  30789. height: math.unit(1.5, "miles")
  30790. },
  30791. {
  30792. name: "Megamacro+",
  30793. height: math.unit(5, "miles")
  30794. },
  30795. ]
  30796. ))
  30797. characterMakers.push(() => makeCharacter(
  30798. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30799. {
  30800. side: {
  30801. height: math.unit(106, "feet"),
  30802. weight: math.unit(500, "tonnes"),
  30803. name: "Side",
  30804. image: {
  30805. source: "./media/characters/kodran/side.svg",
  30806. extra: 553 / 480,
  30807. bottom: 33 / 586
  30808. }
  30809. },
  30810. front: {
  30811. height: math.unit(132, "feet"),
  30812. weight: math.unit(500, "tonnes"),
  30813. name: "Front",
  30814. image: {
  30815. source: "./media/characters/kodran/front.svg",
  30816. extra: 667 / 643,
  30817. bottom: 42 / 709
  30818. }
  30819. },
  30820. flying: {
  30821. height: math.unit(350, "feet"),
  30822. weight: math.unit(500, "tonnes"),
  30823. name: "Flying",
  30824. image: {
  30825. source: "./media/characters/kodran/flying.svg"
  30826. }
  30827. },
  30828. foot: {
  30829. height: math.unit(33, "feet"),
  30830. name: "Foot",
  30831. image: {
  30832. source: "./media/characters/kodran/foot.svg"
  30833. }
  30834. },
  30835. footFront: {
  30836. height: math.unit(19, "feet"),
  30837. name: "Foot (Front)",
  30838. image: {
  30839. source: "./media/characters/kodran/foot-front.svg",
  30840. extra: 261 / 261,
  30841. bottom: 91 / 352
  30842. }
  30843. },
  30844. headFront: {
  30845. height: math.unit(53, "feet"),
  30846. name: "Head (Front)",
  30847. image: {
  30848. source: "./media/characters/kodran/head-front.svg"
  30849. }
  30850. },
  30851. headSide: {
  30852. height: math.unit(65, "feet"),
  30853. name: "Head (Side)",
  30854. image: {
  30855. source: "./media/characters/kodran/head-side.svg"
  30856. }
  30857. },
  30858. throat: {
  30859. height: math.unit(79, "feet"),
  30860. name: "Throat",
  30861. image: {
  30862. source: "./media/characters/kodran/throat.svg"
  30863. }
  30864. },
  30865. },
  30866. [
  30867. {
  30868. name: "Large",
  30869. height: math.unit(106, "feet"),
  30870. default: true
  30871. },
  30872. ]
  30873. ))
  30874. characterMakers.push(() => makeCharacter(
  30875. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30876. {
  30877. side: {
  30878. height: math.unit(11, "feet"),
  30879. weight: math.unit(150, "lb"),
  30880. name: "Side",
  30881. image: {
  30882. source: "./media/characters/pyxaron/side.svg",
  30883. extra: 305 / 195,
  30884. bottom: 17 / 322
  30885. }
  30886. },
  30887. },
  30888. [
  30889. {
  30890. name: "Normal",
  30891. height: math.unit(11, "feet"),
  30892. default: true
  30893. },
  30894. ]
  30895. ))
  30896. characterMakers.push(() => makeCharacter(
  30897. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30898. {
  30899. front: {
  30900. height: math.unit(6, "feet"),
  30901. weight: math.unit(150, "lb"),
  30902. name: "Front",
  30903. image: {
  30904. source: "./media/characters/meep/front.svg",
  30905. extra: 88 / 80,
  30906. bottom: 6 / 94
  30907. }
  30908. },
  30909. },
  30910. [
  30911. {
  30912. name: "Fun Sized",
  30913. height: math.unit(2, "inches"),
  30914. default: true
  30915. },
  30916. {
  30917. name: "Friend Sized",
  30918. height: math.unit(8, "inches")
  30919. },
  30920. ]
  30921. ))
  30922. characterMakers.push(() => makeCharacter(
  30923. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30924. {
  30925. front: {
  30926. height: math.unit(15, "feet"),
  30927. weight: math.unit(2500, "lb"),
  30928. name: "Front",
  30929. image: {
  30930. source: "./media/characters/holly-rabbit/front.svg",
  30931. extra: 1433 / 1233,
  30932. bottom: 125 / 1558
  30933. }
  30934. },
  30935. dick: {
  30936. height: math.unit(4.6, "feet"),
  30937. name: "Dick",
  30938. image: {
  30939. source: "./media/characters/holly-rabbit/dick.svg"
  30940. }
  30941. },
  30942. },
  30943. [
  30944. {
  30945. name: "Normal",
  30946. height: math.unit(15, "feet"),
  30947. default: true
  30948. },
  30949. {
  30950. name: "Macro",
  30951. height: math.unit(250, "feet")
  30952. },
  30953. {
  30954. name: "Macro+",
  30955. height: math.unit(2500, "feet")
  30956. },
  30957. ]
  30958. ))
  30959. characterMakers.push(() => makeCharacter(
  30960. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30961. {
  30962. front: {
  30963. height: math.unit(3.02, "meters"),
  30964. weight: math.unit(500, "kg"),
  30965. name: "Front",
  30966. image: {
  30967. source: "./media/characters/drena/front.svg",
  30968. extra: 282 / 243,
  30969. bottom: 8 / 290
  30970. }
  30971. },
  30972. side: {
  30973. height: math.unit(3.02, "meters"),
  30974. weight: math.unit(500, "kg"),
  30975. name: "Side",
  30976. image: {
  30977. source: "./media/characters/drena/side.svg",
  30978. extra: 280 / 245,
  30979. bottom: 10 / 290
  30980. }
  30981. },
  30982. back: {
  30983. height: math.unit(3.02, "meters"),
  30984. weight: math.unit(500, "kg"),
  30985. name: "Back",
  30986. image: {
  30987. source: "./media/characters/drena/back.svg",
  30988. extra: 278 / 243,
  30989. bottom: 2 / 280
  30990. }
  30991. },
  30992. foot: {
  30993. height: math.unit(0.75, "meters"),
  30994. name: "Foot",
  30995. image: {
  30996. source: "./media/characters/drena/foot.svg"
  30997. }
  30998. },
  30999. maw: {
  31000. height: math.unit(0.82, "meters"),
  31001. name: "Maw",
  31002. image: {
  31003. source: "./media/characters/drena/maw.svg"
  31004. }
  31005. },
  31006. eating: {
  31007. height: math.unit(0.75, "meters"),
  31008. name: "Eating",
  31009. image: {
  31010. source: "./media/characters/drena/eating.svg"
  31011. }
  31012. },
  31013. rump: {
  31014. height: math.unit(0.93, "meters"),
  31015. name: "Rump",
  31016. image: {
  31017. source: "./media/characters/drena/rump.svg"
  31018. }
  31019. },
  31020. },
  31021. [
  31022. {
  31023. name: "Normal",
  31024. height: math.unit(3.02, "meters"),
  31025. default: true
  31026. },
  31027. ]
  31028. ))
  31029. characterMakers.push(() => makeCharacter(
  31030. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31031. {
  31032. front: {
  31033. height: math.unit(6 + 4 / 12, "feet"),
  31034. weight: math.unit(250, "lb"),
  31035. name: "Front",
  31036. image: {
  31037. source: "./media/characters/remmyzilla/front.svg",
  31038. extra: 4033 / 3588,
  31039. bottom: 123 / 4156
  31040. }
  31041. },
  31042. back: {
  31043. height: math.unit(6 + 4 / 12, "feet"),
  31044. weight: math.unit(250, "lb"),
  31045. name: "Back",
  31046. image: {
  31047. source: "./media/characters/remmyzilla/back.svg",
  31048. extra: 1696/1602,
  31049. bottom: 63/1759
  31050. }
  31051. },
  31052. paw: {
  31053. height: math.unit(1.73, "feet"),
  31054. name: "Paw",
  31055. image: {
  31056. source: "./media/characters/remmyzilla/paw.svg"
  31057. },
  31058. extraAttributes: {
  31059. "toeSize": {
  31060. name: "Toe Size",
  31061. power: 2,
  31062. type: "area",
  31063. base: math.unit(0.0035, "m^2")
  31064. },
  31065. "padSize": {
  31066. name: "Pad Size",
  31067. power: 2,
  31068. type: "area",
  31069. base: math.unit(0.015, "m^2")
  31070. },
  31071. "pawsize": {
  31072. name: "Paw Size",
  31073. power: 2,
  31074. type: "area",
  31075. base: math.unit(0.072, "m^2")
  31076. },
  31077. }
  31078. },
  31079. maw: {
  31080. height: math.unit(1.73, "feet"),
  31081. name: "Maw",
  31082. image: {
  31083. source: "./media/characters/remmyzilla/maw.svg"
  31084. }
  31085. },
  31086. },
  31087. [
  31088. {
  31089. name: "Normal",
  31090. height: math.unit(6 + 4 / 12, "feet")
  31091. },
  31092. {
  31093. name: "Minimacro",
  31094. height: math.unit(12 + 8 / 12, "feet")
  31095. },
  31096. {
  31097. name: "Normal",
  31098. height: math.unit(640, "feet"),
  31099. default: true
  31100. },
  31101. {
  31102. name: "Megamacro",
  31103. height: math.unit(6400, "feet")
  31104. },
  31105. {
  31106. name: "Gigamacro",
  31107. height: math.unit(64000, "miles")
  31108. },
  31109. ]
  31110. ))
  31111. characterMakers.push(() => makeCharacter(
  31112. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31113. {
  31114. front: {
  31115. height: math.unit(2.5, "meters"),
  31116. weight: math.unit(300, "lb"),
  31117. name: "Front",
  31118. image: {
  31119. source: "./media/characters/lawrence/front.svg",
  31120. extra: 357 / 335,
  31121. bottom: 30 / 387
  31122. }
  31123. },
  31124. back: {
  31125. height: math.unit(2.5, "meters"),
  31126. weight: math.unit(300, "lb"),
  31127. name: "Back",
  31128. image: {
  31129. source: "./media/characters/lawrence/back.svg",
  31130. extra: 357 / 338,
  31131. bottom: 16 / 373
  31132. }
  31133. },
  31134. head: {
  31135. height: math.unit(0.9, "meter"),
  31136. name: "Head",
  31137. image: {
  31138. source: "./media/characters/lawrence/head.svg"
  31139. }
  31140. },
  31141. maw: {
  31142. height: math.unit(0.7, "meter"),
  31143. name: "Maw",
  31144. image: {
  31145. source: "./media/characters/lawrence/maw.svg"
  31146. }
  31147. },
  31148. footBottom: {
  31149. height: math.unit(0.5, "meter"),
  31150. name: "Foot (Bottom)",
  31151. image: {
  31152. source: "./media/characters/lawrence/foot-bottom.svg"
  31153. }
  31154. },
  31155. footTop: {
  31156. height: math.unit(0.5, "meter"),
  31157. name: "Foot (Top)",
  31158. image: {
  31159. source: "./media/characters/lawrence/foot-top.svg"
  31160. }
  31161. },
  31162. },
  31163. [
  31164. {
  31165. name: "Normal",
  31166. height: math.unit(2.5, "meters"),
  31167. default: true
  31168. },
  31169. {
  31170. name: "Macro",
  31171. height: math.unit(95, "meters")
  31172. },
  31173. {
  31174. name: "Megamacro",
  31175. height: math.unit(150, "km")
  31176. },
  31177. ]
  31178. ))
  31179. characterMakers.push(() => makeCharacter(
  31180. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31181. {
  31182. front: {
  31183. height: math.unit(4.2, "meters"),
  31184. preyCapacity: math.unit(50, "m^3"),
  31185. weight: math.unit(30, "tonnes"),
  31186. name: "Front",
  31187. image: {
  31188. source: "./media/characters/sydney/front.svg",
  31189. extra: 1177/1129,
  31190. bottom: 197/1374
  31191. },
  31192. extraAttributes: {
  31193. "length": {
  31194. name: "Length",
  31195. power: 1,
  31196. type: "length",
  31197. base: math.unit(21, "meters")
  31198. },
  31199. }
  31200. },
  31201. },
  31202. [
  31203. {
  31204. name: "Normal",
  31205. height: math.unit(4.2, "meters"),
  31206. default: true
  31207. },
  31208. ]
  31209. ))
  31210. characterMakers.push(() => makeCharacter(
  31211. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31212. {
  31213. back: {
  31214. height: math.unit(201, "feet"),
  31215. name: "Back",
  31216. image: {
  31217. source: "./media/characters/jessica/back.svg",
  31218. extra: 273 / 259,
  31219. bottom: 7 / 280
  31220. }
  31221. },
  31222. },
  31223. [
  31224. {
  31225. name: "Normal",
  31226. height: math.unit(201, "feet"),
  31227. default: true
  31228. },
  31229. {
  31230. name: "Megamacro",
  31231. height: math.unit(8, "miles")
  31232. },
  31233. ]
  31234. ))
  31235. characterMakers.push(() => makeCharacter(
  31236. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31237. {
  31238. side: {
  31239. height: math.unit(5.6, "m"),
  31240. weight: math.unit(8000, "kg"),
  31241. name: "Side",
  31242. image: {
  31243. source: "./media/characters/victoria/side.svg",
  31244. extra: 1542/1229,
  31245. bottom: 124/1666
  31246. }
  31247. },
  31248. maw: {
  31249. height: math.unit(7.14, "feet"),
  31250. name: "Maw",
  31251. image: {
  31252. source: "./media/characters/victoria/maw.svg"
  31253. }
  31254. },
  31255. },
  31256. [
  31257. {
  31258. name: "Normal",
  31259. height: math.unit(5.6, "m"),
  31260. default: true
  31261. },
  31262. ]
  31263. ))
  31264. characterMakers.push(() => makeCharacter(
  31265. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  31266. {
  31267. front: {
  31268. height: math.unit(5 + 6 / 12, "feet"),
  31269. name: "Front",
  31270. image: {
  31271. source: "./media/characters/cat/front.svg",
  31272. extra: 1449/1295,
  31273. bottom: 34/1483
  31274. },
  31275. form: "cat",
  31276. default: true
  31277. },
  31278. back: {
  31279. height: math.unit(5 + 6 / 12, "feet"),
  31280. name: "Back",
  31281. image: {
  31282. source: "./media/characters/cat/back.svg",
  31283. extra: 1466/1301,
  31284. bottom: 19/1485
  31285. },
  31286. form: "cat"
  31287. },
  31288. taur: {
  31289. height: math.unit(7, "feet"),
  31290. name: "Taur",
  31291. image: {
  31292. source: "./media/characters/cat/taur.svg",
  31293. extra: 1389/1233,
  31294. bottom: 83/1472
  31295. },
  31296. form: "taur",
  31297. default: true
  31298. },
  31299. lucarioFront: {
  31300. height: math.unit(4, "feet"),
  31301. name: "Lucario (Front)",
  31302. image: {
  31303. source: "./media/characters/cat/lucario-front.svg",
  31304. extra: 1149/1019,
  31305. bottom: 84/1233
  31306. },
  31307. form: "lucario",
  31308. default: true
  31309. },
  31310. lucarioBack: {
  31311. height: math.unit(4, "feet"),
  31312. name: "Lucario (Back)",
  31313. image: {
  31314. source: "./media/characters/cat/lucario-back.svg",
  31315. extra: 1190/1059,
  31316. bottom: 33/1223
  31317. },
  31318. form: "lucario"
  31319. },
  31320. megaLucario: {
  31321. height: math.unit(4, "feet"),
  31322. name: "Mega Lucario",
  31323. image: {
  31324. source: "./media/characters/cat/mega-lucario.svg",
  31325. extra: 1515 / 1319,
  31326. bottom: 63 / 1578
  31327. },
  31328. form: "lucario"
  31329. },
  31330. nickit: {
  31331. height: math.unit(2, "feet"),
  31332. name: "Nickit",
  31333. image: {
  31334. source: "./media/characters/cat/nickit.svg",
  31335. extra: 1980 / 1585,
  31336. bottom: 102 / 2082
  31337. },
  31338. form: "nickit",
  31339. default: true
  31340. },
  31341. lopunnyFront: {
  31342. height: math.unit(5, "feet"),
  31343. name: "Lopunny (Front)",
  31344. image: {
  31345. source: "./media/characters/cat/lopunny-front.svg",
  31346. extra: 1782 / 1469,
  31347. bottom: 38 / 1820
  31348. },
  31349. form: "lopunny",
  31350. default: true
  31351. },
  31352. lopunnyBack: {
  31353. height: math.unit(5, "feet"),
  31354. name: "Lopunny (Back)",
  31355. image: {
  31356. source: "./media/characters/cat/lopunny-back.svg",
  31357. extra: 1660 / 1490,
  31358. bottom: 25 / 1685
  31359. },
  31360. form: "lopunny"
  31361. },
  31362. },
  31363. [
  31364. {
  31365. name: "Really small",
  31366. height: math.unit(1, "nm")
  31367. },
  31368. {
  31369. name: "Micro",
  31370. height: math.unit(5, "inches")
  31371. },
  31372. {
  31373. name: "Normal",
  31374. height: math.unit(5 + 6 / 12, "feet"),
  31375. default: true
  31376. },
  31377. {
  31378. name: "Macro",
  31379. height: math.unit(50, "feet")
  31380. },
  31381. {
  31382. name: "Macro+",
  31383. height: math.unit(150, "feet")
  31384. },
  31385. {
  31386. name: "Megamacro",
  31387. height: math.unit(100, "miles")
  31388. },
  31389. ]
  31390. ))
  31391. characterMakers.push(() => makeCharacter(
  31392. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31393. {
  31394. front: {
  31395. height: math.unit(63.4, "meters"),
  31396. weight: math.unit(3.28349e+6, "kilograms"),
  31397. name: "Front",
  31398. image: {
  31399. source: "./media/characters/kirina-violet/front.svg",
  31400. extra: 2812 / 2725,
  31401. bottom: 0 / 2812
  31402. }
  31403. },
  31404. back: {
  31405. height: math.unit(63.4, "meters"),
  31406. weight: math.unit(3.28349e+6, "kilograms"),
  31407. name: "Back",
  31408. image: {
  31409. source: "./media/characters/kirina-violet/back.svg",
  31410. extra: 2812 / 2725,
  31411. bottom: 0 / 2812
  31412. }
  31413. },
  31414. mouth: {
  31415. height: math.unit(4.35, "meters"),
  31416. name: "Mouth",
  31417. image: {
  31418. source: "./media/characters/kirina-violet/mouth.svg"
  31419. }
  31420. },
  31421. paw: {
  31422. height: math.unit(5.6, "meters"),
  31423. name: "Paw",
  31424. image: {
  31425. source: "./media/characters/kirina-violet/paw.svg"
  31426. }
  31427. },
  31428. tail: {
  31429. height: math.unit(18, "meters"),
  31430. name: "Tail",
  31431. image: {
  31432. source: "./media/characters/kirina-violet/tail.svg"
  31433. }
  31434. },
  31435. },
  31436. [
  31437. {
  31438. name: "Macro",
  31439. height: math.unit(63.4, "meters"),
  31440. default: true
  31441. },
  31442. ]
  31443. ))
  31444. characterMakers.push(() => makeCharacter(
  31445. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31446. {
  31447. front: {
  31448. height: math.unit(75, "feet"),
  31449. name: "Front",
  31450. image: {
  31451. source: "./media/characters/cat-gigachu/front.svg",
  31452. extra: 1239/1027,
  31453. bottom: 32/1271
  31454. }
  31455. },
  31456. back: {
  31457. height: math.unit(75, "feet"),
  31458. name: "Back",
  31459. image: {
  31460. source: "./media/characters/cat-gigachu/back.svg",
  31461. extra: 1229/1030,
  31462. bottom: 9/1238
  31463. }
  31464. },
  31465. },
  31466. [
  31467. {
  31468. name: "Dynamax",
  31469. height: math.unit(75, "feet"),
  31470. default: true
  31471. },
  31472. ]
  31473. ))
  31474. characterMakers.push(() => makeCharacter(
  31475. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31476. {
  31477. front: {
  31478. height: math.unit(6, "feet"),
  31479. weight: math.unit(150, "lb"),
  31480. name: "Front",
  31481. image: {
  31482. source: "./media/characters/sfaiyan/front.svg",
  31483. extra: 999 / 978,
  31484. bottom: 5 / 1004
  31485. }
  31486. },
  31487. },
  31488. [
  31489. {
  31490. name: "Normal",
  31491. height: math.unit(1.82, "meters")
  31492. },
  31493. {
  31494. name: "Giant",
  31495. height: math.unit(2.27, "km"),
  31496. default: true
  31497. },
  31498. ]
  31499. ))
  31500. characterMakers.push(() => makeCharacter(
  31501. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31502. {
  31503. front: {
  31504. height: math.unit(179, "cm"),
  31505. weight: math.unit(100, "kg"),
  31506. name: "Front",
  31507. image: {
  31508. source: "./media/characters/raunehkeli/front.svg",
  31509. extra: 1934 / 1926,
  31510. bottom: 0 / 1934
  31511. }
  31512. },
  31513. },
  31514. [
  31515. {
  31516. name: "Normal",
  31517. height: math.unit(179, "cm")
  31518. },
  31519. {
  31520. name: "Maximum",
  31521. height: math.unit(575, "meters"),
  31522. default: true
  31523. },
  31524. ]
  31525. ))
  31526. characterMakers.push(() => makeCharacter(
  31527. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31528. {
  31529. front: {
  31530. height: math.unit(6, "feet"),
  31531. weight: math.unit(150, "lb"),
  31532. name: "Front",
  31533. image: {
  31534. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31535. extra: 2625 / 2518,
  31536. bottom: 60 / 2685
  31537. }
  31538. },
  31539. },
  31540. [
  31541. {
  31542. name: "Normal",
  31543. height: math.unit(6 + 2 / 12, "feet")
  31544. },
  31545. {
  31546. name: "Macro",
  31547. height: math.unit(1180, "feet"),
  31548. default: true
  31549. },
  31550. ]
  31551. ))
  31552. characterMakers.push(() => makeCharacter(
  31553. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31554. {
  31555. front: {
  31556. height: math.unit(5 + 6 / 12, "feet"),
  31557. weight: math.unit(108, "lb"),
  31558. name: "Front",
  31559. image: {
  31560. source: "./media/characters/lilith-zott/front.svg",
  31561. extra: 2510 / 2238,
  31562. bottom: 100 / 2610
  31563. }
  31564. },
  31565. frontDressed: {
  31566. height: math.unit(5 + 6 / 12, "feet"),
  31567. weight: math.unit(108, "lb"),
  31568. name: "Front (Dressed)",
  31569. image: {
  31570. source: "./media/characters/lilith-zott/front-dressed.svg",
  31571. extra: 2510 / 2238,
  31572. bottom: 100 / 2610
  31573. }
  31574. },
  31575. },
  31576. [
  31577. {
  31578. name: "Normal",
  31579. height: math.unit(5 + 6 / 12, "feet")
  31580. },
  31581. {
  31582. name: "Macro",
  31583. height: math.unit(1030, "feet"),
  31584. default: true
  31585. },
  31586. ]
  31587. ))
  31588. characterMakers.push(() => makeCharacter(
  31589. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31590. {
  31591. front: {
  31592. height: math.unit(6, "feet"),
  31593. weight: math.unit(150, "lb"),
  31594. name: "Front",
  31595. image: {
  31596. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31597. extra: 2567 / 2435,
  31598. bottom: 39 / 2606
  31599. }
  31600. },
  31601. frontSuper: {
  31602. height: math.unit(6, "feet"),
  31603. name: "Front (Super)",
  31604. image: {
  31605. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31606. extra: 2567 / 2435,
  31607. bottom: 39 / 2606
  31608. }
  31609. },
  31610. },
  31611. [
  31612. {
  31613. name: "Normal",
  31614. height: math.unit(5 + 10 / 12, "feet")
  31615. },
  31616. {
  31617. name: "Macro",
  31618. height: math.unit(1100, "feet"),
  31619. default: true
  31620. },
  31621. ]
  31622. ))
  31623. characterMakers.push(() => makeCharacter(
  31624. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31625. {
  31626. front: {
  31627. height: math.unit(100, "miles"),
  31628. name: "Front",
  31629. image: {
  31630. source: "./media/characters/sona/front.svg",
  31631. extra: 2433 / 2201,
  31632. bottom: 53 / 2486
  31633. }
  31634. },
  31635. foot: {
  31636. height: math.unit(16.1, "miles"),
  31637. name: "Foot",
  31638. image: {
  31639. source: "./media/characters/sona/foot.svg"
  31640. }
  31641. },
  31642. },
  31643. [
  31644. {
  31645. name: "Macro",
  31646. height: math.unit(100, "miles"),
  31647. default: true
  31648. },
  31649. ]
  31650. ))
  31651. characterMakers.push(() => makeCharacter(
  31652. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31653. {
  31654. front: {
  31655. height: math.unit(6, "feet"),
  31656. weight: math.unit(150, "lb"),
  31657. name: "Front",
  31658. image: {
  31659. source: "./media/characters/bailey/front.svg",
  31660. extra: 1778 / 1724,
  31661. bottom: 30 / 1808
  31662. }
  31663. },
  31664. },
  31665. [
  31666. {
  31667. name: "Micro",
  31668. height: math.unit(4, "inches")
  31669. },
  31670. {
  31671. name: "Normal",
  31672. height: math.unit(5 + 5 / 12, "feet"),
  31673. default: true
  31674. },
  31675. {
  31676. name: "Macro",
  31677. height: math.unit(250, "feet")
  31678. },
  31679. {
  31680. name: "Megamacro",
  31681. height: math.unit(100, "miles")
  31682. },
  31683. ]
  31684. ))
  31685. characterMakers.push(() => makeCharacter(
  31686. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31687. {
  31688. front: {
  31689. height: math.unit(5 + 2 / 12, "feet"),
  31690. weight: math.unit(120, "lb"),
  31691. name: "Front",
  31692. image: {
  31693. source: "./media/characters/snaps/front.svg",
  31694. extra: 2370 / 2177,
  31695. bottom: 48 / 2418
  31696. }
  31697. },
  31698. back: {
  31699. height: math.unit(5 + 2 / 12, "feet"),
  31700. weight: math.unit(120, "lb"),
  31701. name: "Back",
  31702. image: {
  31703. source: "./media/characters/snaps/back.svg",
  31704. extra: 2408 / 2258,
  31705. bottom: 15 / 2423
  31706. }
  31707. },
  31708. },
  31709. [
  31710. {
  31711. name: "Micro",
  31712. height: math.unit(9, "inches")
  31713. },
  31714. {
  31715. name: "Normal",
  31716. height: math.unit(5 + 2 / 12, "feet"),
  31717. default: true
  31718. },
  31719. {
  31720. name: "Mini Macro",
  31721. height: math.unit(10, "feet")
  31722. },
  31723. ]
  31724. ))
  31725. characterMakers.push(() => makeCharacter(
  31726. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31727. {
  31728. front: {
  31729. height: math.unit(1.8, "meters"),
  31730. weight: math.unit(85, "kg"),
  31731. name: "Front",
  31732. image: {
  31733. source: "./media/characters/azteck/front.svg",
  31734. extra: 2815 / 2625,
  31735. bottom: 89 / 2904
  31736. }
  31737. },
  31738. back: {
  31739. height: math.unit(1.8, "meters"),
  31740. weight: math.unit(85, "kg"),
  31741. name: "Back",
  31742. image: {
  31743. source: "./media/characters/azteck/back.svg",
  31744. extra: 2856 / 2648,
  31745. bottom: 85 / 2941
  31746. }
  31747. },
  31748. frontDressed: {
  31749. height: math.unit(1.8, "meters"),
  31750. weight: math.unit(85, "kg"),
  31751. name: "Front (Dressed)",
  31752. image: {
  31753. source: "./media/characters/azteck/front-dressed.svg",
  31754. extra: 2147 / 2003,
  31755. bottom: 68 / 2215
  31756. }
  31757. },
  31758. head: {
  31759. height: math.unit(0.47, "meters"),
  31760. weight: math.unit(85, "kg"),
  31761. name: "Head",
  31762. image: {
  31763. source: "./media/characters/azteck/head.svg"
  31764. }
  31765. },
  31766. },
  31767. [
  31768. {
  31769. name: "Bite sized",
  31770. height: math.unit(16, "cm")
  31771. },
  31772. {
  31773. name: "Normal",
  31774. height: math.unit(1.8, "meters"),
  31775. default: true
  31776. },
  31777. ]
  31778. ))
  31779. characterMakers.push(() => makeCharacter(
  31780. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31781. {
  31782. front: {
  31783. height: math.unit(6, "feet"),
  31784. weight: math.unit(150, "lb"),
  31785. name: "Front",
  31786. image: {
  31787. source: "./media/characters/pidge/front.svg",
  31788. extra: 1936/1820,
  31789. bottom: 0/1936
  31790. }
  31791. },
  31792. back: {
  31793. height: math.unit(6, "feet"),
  31794. weight: math.unit(150, "lb"),
  31795. name: "Back",
  31796. image: {
  31797. source: "./media/characters/pidge/back.svg",
  31798. extra: 1938/1843,
  31799. bottom: 0/1938
  31800. }
  31801. },
  31802. casual: {
  31803. height: math.unit(6, "feet"),
  31804. weight: math.unit(150, "lb"),
  31805. name: "Casual",
  31806. image: {
  31807. source: "./media/characters/pidge/casual.svg",
  31808. extra: 1936/1820,
  31809. bottom: 0/1936
  31810. }
  31811. },
  31812. tech: {
  31813. height: math.unit(6, "feet"),
  31814. weight: math.unit(150, "lb"),
  31815. name: "Tech",
  31816. image: {
  31817. source: "./media/characters/pidge/tech.svg",
  31818. extra: 1802/1682,
  31819. bottom: 0/1802
  31820. }
  31821. },
  31822. head: {
  31823. height: math.unit(1.61, "feet"),
  31824. name: "Head",
  31825. image: {
  31826. source: "./media/characters/pidge/head.svg"
  31827. }
  31828. },
  31829. collar: {
  31830. height: math.unit(0.82, "feet"),
  31831. name: "Collar",
  31832. image: {
  31833. source: "./media/characters/pidge/collar.svg"
  31834. }
  31835. },
  31836. },
  31837. [
  31838. {
  31839. name: "Macro",
  31840. height: math.unit(2, "mile"),
  31841. default: true
  31842. },
  31843. {
  31844. name: "PUPPY",
  31845. height: math.unit(20, "miles")
  31846. },
  31847. ]
  31848. ))
  31849. characterMakers.push(() => makeCharacter(
  31850. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31851. {
  31852. front: {
  31853. height: math.unit(6, "feet"),
  31854. weight: math.unit(150, "lb"),
  31855. name: "Front",
  31856. image: {
  31857. source: "./media/characters/en/front.svg",
  31858. extra: 1697 / 1563,
  31859. bottom: 103 / 1800
  31860. }
  31861. },
  31862. back: {
  31863. height: math.unit(6, "feet"),
  31864. weight: math.unit(150, "lb"),
  31865. name: "Back",
  31866. image: {
  31867. source: "./media/characters/en/back.svg",
  31868. extra: 1700 / 1570,
  31869. bottom: 51 / 1751
  31870. }
  31871. },
  31872. frontDressed: {
  31873. height: math.unit(6, "feet"),
  31874. weight: math.unit(150, "lb"),
  31875. name: "Front (Dressed)",
  31876. image: {
  31877. source: "./media/characters/en/front-dressed.svg",
  31878. extra: 1697 / 1563,
  31879. bottom: 103 / 1800
  31880. }
  31881. },
  31882. backDressed: {
  31883. height: math.unit(6, "feet"),
  31884. weight: math.unit(150, "lb"),
  31885. name: "Back (Dressed)",
  31886. image: {
  31887. source: "./media/characters/en/back-dressed.svg",
  31888. extra: 1700 / 1570,
  31889. bottom: 51 / 1751
  31890. }
  31891. },
  31892. },
  31893. [
  31894. {
  31895. name: "Macro",
  31896. height: math.unit(210, "feet"),
  31897. default: true
  31898. },
  31899. ]
  31900. ))
  31901. characterMakers.push(() => makeCharacter(
  31902. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31903. {
  31904. front: {
  31905. height: math.unit(6, "feet"),
  31906. weight: math.unit(150, "lb"),
  31907. name: "Front",
  31908. image: {
  31909. source: "./media/characters/haze-orris/front.svg",
  31910. extra: 3975 / 3525,
  31911. bottom: 137 / 4112
  31912. }
  31913. },
  31914. },
  31915. [
  31916. {
  31917. name: "Micro",
  31918. height: math.unit(150, "mm"),
  31919. default: true
  31920. },
  31921. ]
  31922. ))
  31923. characterMakers.push(() => makeCharacter(
  31924. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31925. {
  31926. front: {
  31927. height: math.unit(6, "feet"),
  31928. weight: math.unit(150, "lb"),
  31929. name: "Front",
  31930. image: {
  31931. source: "./media/characters/casselene-yaro/front.svg",
  31932. extra: 4721 / 4541,
  31933. bottom: 82 / 4803
  31934. }
  31935. },
  31936. back: {
  31937. height: math.unit(6, "feet"),
  31938. weight: math.unit(150, "lb"),
  31939. name: "Back",
  31940. image: {
  31941. source: "./media/characters/casselene-yaro/back.svg",
  31942. extra: 4569 / 4377,
  31943. bottom: 69 / 4638
  31944. }
  31945. },
  31946. dressed: {
  31947. height: math.unit(6, "feet"),
  31948. weight: math.unit(150, "lb"),
  31949. name: "Dressed",
  31950. image: {
  31951. source: "./media/characters/casselene-yaro/dressed.svg",
  31952. extra: 4721 / 4541,
  31953. bottom: 82 / 4803
  31954. }
  31955. },
  31956. maw: {
  31957. height: math.unit(1, "feet"),
  31958. name: "Maw",
  31959. image: {
  31960. source: "./media/characters/casselene-yaro/maw.svg"
  31961. }
  31962. },
  31963. },
  31964. [
  31965. {
  31966. name: "Macro",
  31967. height: math.unit(190, "feet"),
  31968. default: true
  31969. },
  31970. ]
  31971. ))
  31972. characterMakers.push(() => makeCharacter(
  31973. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31974. {
  31975. front: {
  31976. height: math.unit(10, "feet"),
  31977. weight: math.unit(15015, "lb"),
  31978. name: "Front",
  31979. image: {
  31980. source: "./media/characters/platine/front.svg",
  31981. extra: 1741/1650,
  31982. bottom: 84/1825
  31983. }
  31984. },
  31985. side: {
  31986. height: math.unit(10, "feet"),
  31987. weight: math.unit(15015, "lb"),
  31988. name: "Side",
  31989. image: {
  31990. source: "./media/characters/platine/side.svg",
  31991. extra: 1790/1705,
  31992. bottom: 29/1819
  31993. }
  31994. },
  31995. },
  31996. [
  31997. {
  31998. name: "Normal",
  31999. height: math.unit(10, "feet"),
  32000. default: true
  32001. },
  32002. {
  32003. name: "Macro",
  32004. height: math.unit(100, "feet")
  32005. },
  32006. {
  32007. name: "Megamacro",
  32008. height: math.unit(1000, "feet")
  32009. },
  32010. ]
  32011. ))
  32012. characterMakers.push(() => makeCharacter(
  32013. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32014. {
  32015. front: {
  32016. height: math.unit(15 + 5 / 12, "feet"),
  32017. weight: math.unit(4600, "lb"),
  32018. name: "Front",
  32019. image: {
  32020. source: "./media/characters/neapolitan-ananassa/front.svg",
  32021. extra: 2903 / 2736,
  32022. bottom: 0 / 2903
  32023. }
  32024. },
  32025. side: {
  32026. height: math.unit(15 + 5 / 12, "feet"),
  32027. weight: math.unit(4600, "lb"),
  32028. name: "Side",
  32029. image: {
  32030. source: "./media/characters/neapolitan-ananassa/side.svg",
  32031. extra: 2925 / 2719,
  32032. bottom: 0 / 2925
  32033. }
  32034. },
  32035. back: {
  32036. height: math.unit(15 + 5 / 12, "feet"),
  32037. weight: math.unit(4600, "lb"),
  32038. name: "Back",
  32039. image: {
  32040. source: "./media/characters/neapolitan-ananassa/back.svg",
  32041. extra: 2903 / 2736,
  32042. bottom: 0 / 2903
  32043. }
  32044. },
  32045. },
  32046. [
  32047. {
  32048. name: "Normal",
  32049. height: math.unit(15 + 5 / 12, "feet"),
  32050. default: true
  32051. },
  32052. {
  32053. name: "Post-Millenium",
  32054. height: math.unit(35 + 5 / 12, "feet")
  32055. },
  32056. {
  32057. name: "Post-Era",
  32058. height: math.unit(450 + 5 / 12, "feet")
  32059. },
  32060. ]
  32061. ))
  32062. characterMakers.push(() => makeCharacter(
  32063. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32064. {
  32065. front: {
  32066. height: math.unit(300, "meters"),
  32067. weight: math.unit(125000, "tonnes"),
  32068. name: "Front",
  32069. image: {
  32070. source: "./media/characters/pazuzu/front.svg",
  32071. extra: 877 / 794,
  32072. bottom: 47 / 924
  32073. }
  32074. },
  32075. },
  32076. [
  32077. {
  32078. name: "Macro",
  32079. height: math.unit(300, "meters"),
  32080. default: true
  32081. },
  32082. ]
  32083. ))
  32084. characterMakers.push(() => makeCharacter(
  32085. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32086. {
  32087. side: {
  32088. height: math.unit(10 + 7 / 12, "feet"),
  32089. weight: math.unit(2.5, "tons"),
  32090. name: "Side",
  32091. image: {
  32092. source: "./media/characters/aasha/side.svg",
  32093. extra: 1345 / 1245,
  32094. bottom: 111 / 1456
  32095. }
  32096. },
  32097. back: {
  32098. height: math.unit(10 + 7 / 12, "feet"),
  32099. weight: math.unit(2.5, "tons"),
  32100. name: "Back",
  32101. image: {
  32102. source: "./media/characters/aasha/back.svg",
  32103. extra: 1133 / 1057,
  32104. bottom: 257 / 1390
  32105. }
  32106. },
  32107. },
  32108. [
  32109. {
  32110. name: "Normal",
  32111. height: math.unit(10 + 7 / 12, "feet"),
  32112. default: true
  32113. },
  32114. ]
  32115. ))
  32116. characterMakers.push(() => makeCharacter(
  32117. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32118. {
  32119. front: {
  32120. height: math.unit(6 + 3 / 12, "feet"),
  32121. name: "Front",
  32122. image: {
  32123. source: "./media/characters/nevan/front.svg",
  32124. extra: 704 / 704,
  32125. bottom: 28 / 732
  32126. }
  32127. },
  32128. back: {
  32129. height: math.unit(6 + 3 / 12, "feet"),
  32130. name: "Back",
  32131. image: {
  32132. source: "./media/characters/nevan/back.svg",
  32133. extra: 714 / 714,
  32134. bottom: 21 / 735
  32135. }
  32136. },
  32137. frontFlaccid: {
  32138. height: math.unit(6 + 3 / 12, "feet"),
  32139. name: "Front (Flaccid)",
  32140. image: {
  32141. source: "./media/characters/nevan/front-flaccid.svg",
  32142. extra: 704 / 704,
  32143. bottom: 28 / 732
  32144. }
  32145. },
  32146. frontErect: {
  32147. height: math.unit(6 + 3 / 12, "feet"),
  32148. name: "Front (Erect)",
  32149. image: {
  32150. source: "./media/characters/nevan/front-erect.svg",
  32151. extra: 704 / 704,
  32152. bottom: 28 / 732
  32153. }
  32154. },
  32155. backFlaccid: {
  32156. height: math.unit(6 + 3 / 12, "feet"),
  32157. name: "Back (Flaccid)",
  32158. image: {
  32159. source: "./media/characters/nevan/back-flaccid.svg",
  32160. extra: 714 / 714,
  32161. bottom: 21 / 735
  32162. }
  32163. },
  32164. },
  32165. [
  32166. {
  32167. name: "Normal",
  32168. height: math.unit(6 + 3 / 12, "feet"),
  32169. default: true
  32170. },
  32171. ]
  32172. ))
  32173. characterMakers.push(() => makeCharacter(
  32174. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32175. {
  32176. front: {
  32177. height: math.unit(4, "feet"),
  32178. name: "Front",
  32179. image: {
  32180. source: "./media/characters/arhan/front.svg",
  32181. extra: 3368 / 3133,
  32182. bottom: 0 / 3368
  32183. }
  32184. },
  32185. side: {
  32186. height: math.unit(4, "feet"),
  32187. name: "Side",
  32188. image: {
  32189. source: "./media/characters/arhan/side.svg",
  32190. extra: 3347 / 3105,
  32191. bottom: 0 / 3347
  32192. }
  32193. },
  32194. tongue: {
  32195. height: math.unit(1.42, "feet"),
  32196. name: "Tongue",
  32197. image: {
  32198. source: "./media/characters/arhan/tongue.svg"
  32199. }
  32200. },
  32201. head: {
  32202. height: math.unit(0.85, "feet"),
  32203. name: "Head",
  32204. image: {
  32205. source: "./media/characters/arhan/head.svg"
  32206. }
  32207. },
  32208. },
  32209. [
  32210. {
  32211. name: "Normal",
  32212. height: math.unit(4, "feet"),
  32213. default: true
  32214. },
  32215. ]
  32216. ))
  32217. characterMakers.push(() => makeCharacter(
  32218. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32219. {
  32220. front: {
  32221. height: math.unit(5 + 7.5 / 12, "feet"),
  32222. weight: math.unit(120, "lb"),
  32223. name: "Front",
  32224. image: {
  32225. source: "./media/characters/digi-duncan/front.svg",
  32226. extra: 330 / 326,
  32227. bottom: 16 / 346
  32228. }
  32229. },
  32230. side: {
  32231. height: math.unit(5 + 7.5 / 12, "feet"),
  32232. weight: math.unit(120, "lb"),
  32233. name: "Side",
  32234. image: {
  32235. source: "./media/characters/digi-duncan/side.svg",
  32236. extra: 341 / 337,
  32237. bottom: 1 / 342
  32238. }
  32239. },
  32240. back: {
  32241. height: math.unit(5 + 7.5 / 12, "feet"),
  32242. weight: math.unit(120, "lb"),
  32243. name: "Back",
  32244. image: {
  32245. source: "./media/characters/digi-duncan/back.svg",
  32246. extra: 330 / 326,
  32247. bottom: 12 / 342
  32248. }
  32249. },
  32250. },
  32251. [
  32252. {
  32253. name: "Speck",
  32254. height: math.unit(0.25, "mm")
  32255. },
  32256. {
  32257. name: "Micro",
  32258. height: math.unit(5, "mm")
  32259. },
  32260. {
  32261. name: "Tiny",
  32262. height: math.unit(0.5, "inches"),
  32263. default: true
  32264. },
  32265. {
  32266. name: "Human",
  32267. height: math.unit(5 + 7.5 / 12, "feet")
  32268. },
  32269. {
  32270. name: "Minigiant",
  32271. height: math.unit(8 + 5.25, "feet")
  32272. },
  32273. {
  32274. name: "Giant",
  32275. height: math.unit(2000, "feet")
  32276. },
  32277. {
  32278. name: "Mega",
  32279. height: math.unit(371.1, "miles")
  32280. },
  32281. ]
  32282. ))
  32283. characterMakers.push(() => makeCharacter(
  32284. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32285. {
  32286. front: {
  32287. height: math.unit(2, "meters"),
  32288. weight: math.unit(350, "kg"),
  32289. name: "Front",
  32290. image: {
  32291. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32292. extra: 898 / 838,
  32293. bottom: 9 / 907
  32294. }
  32295. },
  32296. },
  32297. [
  32298. {
  32299. name: "Micro",
  32300. height: math.unit(8, "meters")
  32301. },
  32302. {
  32303. name: "Normal",
  32304. height: math.unit(50, "meters"),
  32305. default: true
  32306. },
  32307. {
  32308. name: "Macro",
  32309. height: math.unit(500, "meters")
  32310. },
  32311. ]
  32312. ))
  32313. characterMakers.push(() => makeCharacter(
  32314. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32315. {
  32316. front: {
  32317. height: math.unit(6 + 6 / 12, "feet"),
  32318. name: "Front",
  32319. image: {
  32320. source: "./media/characters/khardesh/front.svg",
  32321. extra: 1788/1596,
  32322. bottom: 66/1854
  32323. }
  32324. },
  32325. back: {
  32326. height: math.unit(6 + 6 / 12, "feet"),
  32327. name: "Back",
  32328. image: {
  32329. source: "./media/characters/khardesh/back.svg",
  32330. extra: 1781/1584,
  32331. bottom: 68/1849
  32332. }
  32333. },
  32334. },
  32335. [
  32336. {
  32337. name: "Normal",
  32338. height: math.unit(6 + 6 / 12, "feet"),
  32339. default: true
  32340. },
  32341. {
  32342. name: "Normal+",
  32343. height: math.unit(4, "meters")
  32344. },
  32345. {
  32346. name: "Macro",
  32347. height: math.unit(50, "meters")
  32348. },
  32349. {
  32350. name: "Macro+",
  32351. height: math.unit(100, "meters")
  32352. },
  32353. {
  32354. name: "Megamacro",
  32355. height: math.unit(20, "km")
  32356. },
  32357. ]
  32358. ))
  32359. characterMakers.push(() => makeCharacter(
  32360. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32361. {
  32362. front: {
  32363. height: math.unit(6, "feet"),
  32364. weight: math.unit(150, "lb"),
  32365. name: "Front",
  32366. image: {
  32367. source: "./media/characters/kosho/front.svg",
  32368. extra: 1847 / 1847,
  32369. bottom: 86 / 1933
  32370. }
  32371. },
  32372. },
  32373. [
  32374. {
  32375. name: "Second-stage micro",
  32376. height: math.unit(0.5, "inches")
  32377. },
  32378. {
  32379. name: "First-stage micro",
  32380. height: math.unit(6, "inches")
  32381. },
  32382. {
  32383. name: "Normal",
  32384. height: math.unit(6, "feet"),
  32385. default: true
  32386. },
  32387. {
  32388. name: "First-stage macro",
  32389. height: math.unit(72, "feet")
  32390. },
  32391. {
  32392. name: "Second-stage macro",
  32393. height: math.unit(864, "feet")
  32394. },
  32395. ]
  32396. ))
  32397. characterMakers.push(() => makeCharacter(
  32398. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32399. {
  32400. normal: {
  32401. height: math.unit(4 + 6 / 12, "feet"),
  32402. name: "Normal",
  32403. image: {
  32404. source: "./media/characters/hydra/normal.svg",
  32405. extra: 2833 / 2634,
  32406. bottom: 68 / 2901
  32407. }
  32408. },
  32409. smol: {
  32410. height: math.unit(0.705, "inches"),
  32411. name: "Smol",
  32412. image: {
  32413. source: "./media/characters/hydra/smol.svg",
  32414. extra: 2715 / 2540,
  32415. bottom: 0 / 2715
  32416. }
  32417. },
  32418. },
  32419. [
  32420. {
  32421. name: "Normal",
  32422. height: math.unit(4 + 6 / 12, "feet"),
  32423. default: true
  32424. }
  32425. ]
  32426. ))
  32427. characterMakers.push(() => makeCharacter(
  32428. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32429. {
  32430. front: {
  32431. height: math.unit(0.6, "cm"),
  32432. name: "Front",
  32433. image: {
  32434. source: "./media/characters/daz/front.svg",
  32435. extra: 1682 / 1164,
  32436. bottom: 42 / 1724
  32437. }
  32438. },
  32439. },
  32440. [
  32441. {
  32442. name: "Normal",
  32443. height: math.unit(0.6, "cm"),
  32444. default: true
  32445. },
  32446. ]
  32447. ))
  32448. characterMakers.push(() => makeCharacter(
  32449. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32450. {
  32451. front: {
  32452. height: math.unit(6, "feet"),
  32453. weight: math.unit(235, "lb"),
  32454. name: "Front",
  32455. image: {
  32456. source: "./media/characters/theo-pangolin/front.svg",
  32457. extra: 1996 / 1969,
  32458. bottom: 115 / 2111
  32459. }
  32460. },
  32461. back: {
  32462. height: math.unit(6, "feet"),
  32463. weight: math.unit(235, "lb"),
  32464. name: "Back",
  32465. image: {
  32466. source: "./media/characters/theo-pangolin/back.svg",
  32467. extra: 1979 / 1979,
  32468. bottom: 40 / 2019
  32469. }
  32470. },
  32471. feral: {
  32472. height: math.unit(2, "feet"),
  32473. weight: math.unit(30, "lb"),
  32474. name: "Feral",
  32475. image: {
  32476. source: "./media/characters/theo-pangolin/feral.svg",
  32477. extra: 803 / 791,
  32478. bottom: 181 / 984
  32479. }
  32480. },
  32481. footFive: {
  32482. height: math.unit(1.43, "feet"),
  32483. name: "Foot (Five Toes)",
  32484. image: {
  32485. source: "./media/characters/theo-pangolin/foot-five.svg"
  32486. }
  32487. },
  32488. footFour: {
  32489. height: math.unit(1.43, "feet"),
  32490. name: "Foot (Four Toes)",
  32491. image: {
  32492. source: "./media/characters/theo-pangolin/foot-four.svg"
  32493. }
  32494. },
  32495. handFour: {
  32496. height: math.unit(0.81, "feet"),
  32497. name: "Hand (Four Fingers)",
  32498. image: {
  32499. source: "./media/characters/theo-pangolin/hand-four.svg"
  32500. }
  32501. },
  32502. handThree: {
  32503. height: math.unit(0.81, "feet"),
  32504. name: "Hand (Three Fingers)",
  32505. image: {
  32506. source: "./media/characters/theo-pangolin/hand-three.svg"
  32507. }
  32508. },
  32509. headFront: {
  32510. height: math.unit(1.37, "feet"),
  32511. name: "Head (Front)",
  32512. image: {
  32513. source: "./media/characters/theo-pangolin/head-front.svg"
  32514. }
  32515. },
  32516. headSide: {
  32517. height: math.unit(1.43, "feet"),
  32518. name: "Head (Side)",
  32519. image: {
  32520. source: "./media/characters/theo-pangolin/head-side.svg"
  32521. }
  32522. },
  32523. tongue: {
  32524. height: math.unit(2.29, "feet"),
  32525. name: "Tongue",
  32526. image: {
  32527. source: "./media/characters/theo-pangolin/tongue.svg"
  32528. }
  32529. },
  32530. },
  32531. [
  32532. {
  32533. name: "Normal",
  32534. height: math.unit(6, "feet")
  32535. },
  32536. {
  32537. name: "Macro",
  32538. height: math.unit(400, "feet"),
  32539. default: true
  32540. },
  32541. ]
  32542. ))
  32543. characterMakers.push(() => makeCharacter(
  32544. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32545. {
  32546. front: {
  32547. height: math.unit(6, "inches"),
  32548. weight: math.unit(0.036, "kg"),
  32549. name: "Front",
  32550. image: {
  32551. source: "./media/characters/renée/front.svg",
  32552. extra: 900 / 886,
  32553. bottom: 8 / 908
  32554. }
  32555. },
  32556. },
  32557. [
  32558. {
  32559. name: "Nano",
  32560. height: math.unit(1, "nm")
  32561. },
  32562. {
  32563. name: "Micro",
  32564. height: math.unit(1, "mm")
  32565. },
  32566. {
  32567. name: "Normal",
  32568. height: math.unit(6, "inches")
  32569. },
  32570. {
  32571. name: "Macro",
  32572. height: math.unit(2000, "feet"),
  32573. default: true
  32574. },
  32575. {
  32576. name: "Megamacro",
  32577. height: math.unit(2, "km")
  32578. },
  32579. {
  32580. name: "Gigamacro",
  32581. height: math.unit(2000, "km")
  32582. },
  32583. {
  32584. name: "Teramacro",
  32585. height: math.unit(250000, "km")
  32586. },
  32587. ]
  32588. ))
  32589. characterMakers.push(() => makeCharacter(
  32590. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32591. {
  32592. front: {
  32593. height: math.unit(4, "meters"),
  32594. weight: math.unit(150, "kg"),
  32595. name: "Front",
  32596. image: {
  32597. source: "./media/characters/caledvwlch/front.svg",
  32598. extra: 1757/1537,
  32599. bottom: 31/1788
  32600. }
  32601. },
  32602. side: {
  32603. height: math.unit(4, "meters"),
  32604. weight: math.unit(150, "kg"),
  32605. name: "Side",
  32606. image: {
  32607. source: "./media/characters/caledvwlch/side.svg",
  32608. extra: 1605 / 1536,
  32609. bottom: 31 / 1636
  32610. }
  32611. },
  32612. back: {
  32613. height: math.unit(4, "meters"),
  32614. weight: math.unit(150, "kg"),
  32615. name: "Back",
  32616. image: {
  32617. source: "./media/characters/caledvwlch/back.svg",
  32618. extra: 1635 / 1565,
  32619. bottom: 27 / 1662
  32620. }
  32621. },
  32622. },
  32623. [
  32624. {
  32625. name: "\"Incognito\"",
  32626. height: math.unit(4, "meters")
  32627. },
  32628. {
  32629. name: "Small rampage",
  32630. height: math.unit(600, "meters")
  32631. },
  32632. {
  32633. name: "Mega",
  32634. height: math.unit(30, "km")
  32635. },
  32636. {
  32637. name: "Home-size",
  32638. height: math.unit(50, "km"),
  32639. default: true
  32640. },
  32641. {
  32642. name: "Giga",
  32643. height: math.unit(300, "km")
  32644. },
  32645. {
  32646. name: "Lounging",
  32647. height: math.unit(11000, "km")
  32648. },
  32649. {
  32650. name: "Planet snacking",
  32651. height: math.unit(2000000, "km")
  32652. },
  32653. ]
  32654. ))
  32655. characterMakers.push(() => makeCharacter(
  32656. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32657. {
  32658. front: {
  32659. height: math.unit(6, "feet"),
  32660. weight: math.unit(215, "lb"),
  32661. name: "Front",
  32662. image: {
  32663. source: "./media/characters/sapphire-svell/front.svg",
  32664. extra: 495 / 455,
  32665. bottom: 20 / 515
  32666. }
  32667. },
  32668. back: {
  32669. height: math.unit(6, "feet"),
  32670. weight: math.unit(216, "lb"),
  32671. name: "Back",
  32672. image: {
  32673. source: "./media/characters/sapphire-svell/back.svg",
  32674. extra: 497 / 477,
  32675. bottom: 7 / 504
  32676. }
  32677. },
  32678. maw: {
  32679. height: math.unit(1.57, "feet"),
  32680. name: "Maw",
  32681. image: {
  32682. source: "./media/characters/sapphire-svell/maw.svg"
  32683. }
  32684. },
  32685. foot: {
  32686. height: math.unit(1.07, "feet"),
  32687. name: "Foot",
  32688. image: {
  32689. source: "./media/characters/sapphire-svell/foot.svg"
  32690. }
  32691. },
  32692. toering: {
  32693. height: math.unit(1.7, "inch"),
  32694. name: "Toering",
  32695. image: {
  32696. source: "./media/characters/sapphire-svell/toering.svg"
  32697. }
  32698. },
  32699. },
  32700. [
  32701. {
  32702. name: "Normal",
  32703. height: math.unit(300, "feet"),
  32704. default: true
  32705. },
  32706. {
  32707. name: "Augmented",
  32708. height: math.unit(1250, "feet")
  32709. },
  32710. {
  32711. name: "Unleashed",
  32712. height: math.unit(3000, "feet")
  32713. },
  32714. ]
  32715. ))
  32716. characterMakers.push(() => makeCharacter(
  32717. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32718. {
  32719. side: {
  32720. height: math.unit(2 + 3 / 12, "feet"),
  32721. weight: math.unit(110, "lb"),
  32722. name: "Side",
  32723. image: {
  32724. source: "./media/characters/glitch-flux/side.svg",
  32725. extra: 997 / 805,
  32726. bottom: 20 / 1017
  32727. }
  32728. },
  32729. },
  32730. [
  32731. {
  32732. name: "Normal",
  32733. height: math.unit(2 + 3 / 12, "feet"),
  32734. default: true
  32735. },
  32736. ]
  32737. ))
  32738. characterMakers.push(() => makeCharacter(
  32739. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32740. {
  32741. front: {
  32742. height: math.unit(4, "meters"),
  32743. name: "Front",
  32744. image: {
  32745. source: "./media/characters/mid/front.svg",
  32746. extra: 507 / 476,
  32747. bottom: 17 / 524
  32748. }
  32749. },
  32750. back: {
  32751. height: math.unit(4, "meters"),
  32752. name: "Back",
  32753. image: {
  32754. source: "./media/characters/mid/back.svg",
  32755. extra: 519 / 487,
  32756. bottom: 7 / 526
  32757. }
  32758. },
  32759. stuck: {
  32760. height: math.unit(2.2, "meters"),
  32761. name: "Stuck",
  32762. image: {
  32763. source: "./media/characters/mid/stuck.svg",
  32764. extra: 1951 / 1869,
  32765. bottom: 88 / 2039
  32766. }
  32767. }
  32768. },
  32769. [
  32770. {
  32771. name: "Normal",
  32772. height: math.unit(4, "meters"),
  32773. default: true
  32774. },
  32775. {
  32776. name: "Big",
  32777. height: math.unit(10, "meters")
  32778. },
  32779. {
  32780. name: "Macro",
  32781. height: math.unit(800, "meters")
  32782. },
  32783. {
  32784. name: "Megamacro",
  32785. height: math.unit(100, "km")
  32786. },
  32787. {
  32788. name: "Overgrown",
  32789. height: math.unit(1, "parsec")
  32790. },
  32791. ]
  32792. ))
  32793. characterMakers.push(() => makeCharacter(
  32794. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32795. {
  32796. front: {
  32797. height: math.unit(2.5, "meters"),
  32798. weight: math.unit(225, "kg"),
  32799. name: "Front",
  32800. image: {
  32801. source: "./media/characters/iris/front.svg",
  32802. extra: 3348 / 3251,
  32803. bottom: 205 / 3553
  32804. }
  32805. },
  32806. maw: {
  32807. height: math.unit(0.56, "meter"),
  32808. name: "Maw",
  32809. image: {
  32810. source: "./media/characters/iris/maw.svg"
  32811. }
  32812. },
  32813. },
  32814. [
  32815. {
  32816. name: "Mewter cat",
  32817. height: math.unit(1.2, "meters")
  32818. },
  32819. {
  32820. name: "Normal",
  32821. height: math.unit(2.5, "meters"),
  32822. default: true
  32823. },
  32824. {
  32825. name: "Minimacro",
  32826. height: math.unit(18, "feet")
  32827. },
  32828. {
  32829. name: "Macro",
  32830. height: math.unit(140, "feet")
  32831. },
  32832. {
  32833. name: "Macro+",
  32834. height: math.unit(180, "meters")
  32835. },
  32836. {
  32837. name: "Megamacro",
  32838. height: math.unit(2746, "meters")
  32839. },
  32840. ]
  32841. ))
  32842. characterMakers.push(() => makeCharacter(
  32843. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32844. {
  32845. front: {
  32846. height: math.unit(6, "feet"),
  32847. weight: math.unit(135, "lb"),
  32848. name: "Front",
  32849. image: {
  32850. source: "./media/characters/axel/front.svg",
  32851. extra: 908 / 908,
  32852. bottom: 58 / 966
  32853. }
  32854. },
  32855. side: {
  32856. height: math.unit(6, "feet"),
  32857. weight: math.unit(135, "lb"),
  32858. name: "Side",
  32859. image: {
  32860. source: "./media/characters/axel/side.svg",
  32861. extra: 958 / 958,
  32862. bottom: 11 / 969
  32863. }
  32864. },
  32865. back: {
  32866. height: math.unit(6, "feet"),
  32867. weight: math.unit(135, "lb"),
  32868. name: "Back",
  32869. image: {
  32870. source: "./media/characters/axel/back.svg",
  32871. extra: 887 / 887,
  32872. bottom: 34 / 921
  32873. }
  32874. },
  32875. head: {
  32876. height: math.unit(1.07, "feet"),
  32877. name: "Head",
  32878. image: {
  32879. source: "./media/characters/axel/head.svg"
  32880. }
  32881. },
  32882. beak: {
  32883. height: math.unit(1.4, "feet"),
  32884. name: "Beak",
  32885. image: {
  32886. source: "./media/characters/axel/beak.svg"
  32887. }
  32888. },
  32889. beakSide: {
  32890. height: math.unit(1.4, "feet"),
  32891. name: "Beak Side",
  32892. image: {
  32893. source: "./media/characters/axel/beak-side.svg"
  32894. }
  32895. },
  32896. sheath: {
  32897. height: math.unit(0.5, "feet"),
  32898. name: "Sheath",
  32899. image: {
  32900. source: "./media/characters/axel/sheath.svg"
  32901. }
  32902. },
  32903. dick: {
  32904. height: math.unit(0.98, "feet"),
  32905. name: "Dick",
  32906. image: {
  32907. source: "./media/characters/axel/dick.svg"
  32908. }
  32909. },
  32910. },
  32911. [
  32912. {
  32913. name: "Macro",
  32914. height: math.unit(68, "meters"),
  32915. default: true
  32916. },
  32917. ]
  32918. ))
  32919. characterMakers.push(() => makeCharacter(
  32920. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32921. {
  32922. front: {
  32923. height: math.unit(3.5, "meters"),
  32924. weight: math.unit(1200, "kg"),
  32925. name: "Front",
  32926. image: {
  32927. source: "./media/characters/joanna/front.svg",
  32928. extra: 1596 / 1488,
  32929. bottom: 29 / 1625
  32930. }
  32931. },
  32932. back: {
  32933. height: math.unit(3.5, "meters"),
  32934. weight: math.unit(1200, "kg"),
  32935. name: "Back",
  32936. image: {
  32937. source: "./media/characters/joanna/back.svg",
  32938. extra: 1594 / 1495,
  32939. bottom: 26 / 1620
  32940. }
  32941. },
  32942. frontShorts: {
  32943. height: math.unit(3.5, "meters"),
  32944. weight: math.unit(1200, "kg"),
  32945. name: "Front (Shorts)",
  32946. image: {
  32947. source: "./media/characters/joanna/front-shorts.svg",
  32948. extra: 1596 / 1488,
  32949. bottom: 29 / 1625
  32950. }
  32951. },
  32952. frontBiker: {
  32953. height: math.unit(3.5, "meters"),
  32954. weight: math.unit(1200, "kg"),
  32955. name: "Front (Biker)",
  32956. image: {
  32957. source: "./media/characters/joanna/front-biker.svg",
  32958. extra: 1596 / 1488,
  32959. bottom: 29 / 1625
  32960. }
  32961. },
  32962. backBiker: {
  32963. height: math.unit(3.5, "meters"),
  32964. weight: math.unit(1200, "kg"),
  32965. name: "Back (Biker)",
  32966. image: {
  32967. source: "./media/characters/joanna/back-biker.svg",
  32968. extra: 1594 / 1495,
  32969. bottom: 88 / 1682
  32970. }
  32971. },
  32972. bikeLeft: {
  32973. height: math.unit(2.4, "meters"),
  32974. weight: math.unit(1600, "kg"),
  32975. name: "Bike (Left)",
  32976. image: {
  32977. source: "./media/characters/joanna/bike-left.svg",
  32978. extra: 720 / 720,
  32979. bottom: 8 / 728
  32980. }
  32981. },
  32982. bikeRight: {
  32983. height: math.unit(2.4, "meters"),
  32984. weight: math.unit(1600, "kg"),
  32985. name: "Bike (Right)",
  32986. image: {
  32987. source: "./media/characters/joanna/bike-right.svg",
  32988. extra: 720 / 720,
  32989. bottom: 8 / 728
  32990. }
  32991. },
  32992. },
  32993. [
  32994. {
  32995. name: "Incognito",
  32996. height: math.unit(3.5, "meters")
  32997. },
  32998. {
  32999. name: "Casual Big",
  33000. height: math.unit(200, "meters")
  33001. },
  33002. {
  33003. name: "Macro",
  33004. height: math.unit(600, "meters")
  33005. },
  33006. {
  33007. name: "Original",
  33008. height: math.unit(20, "km"),
  33009. default: true
  33010. },
  33011. {
  33012. name: "Giga",
  33013. height: math.unit(400, "km")
  33014. },
  33015. {
  33016. name: "Lounging",
  33017. height: math.unit(1500, "km")
  33018. },
  33019. {
  33020. name: "Planetary",
  33021. height: math.unit(200000, "km")
  33022. },
  33023. ]
  33024. ))
  33025. characterMakers.push(() => makeCharacter(
  33026. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33027. {
  33028. front: {
  33029. height: math.unit(6, "feet"),
  33030. weight: math.unit(150, "lb"),
  33031. name: "Front",
  33032. image: {
  33033. source: "./media/characters/hugo-sigil/front.svg",
  33034. extra: 522 / 500,
  33035. bottom: 2 / 524
  33036. }
  33037. },
  33038. back: {
  33039. height: math.unit(6, "feet"),
  33040. weight: math.unit(150, "lb"),
  33041. name: "Back",
  33042. image: {
  33043. source: "./media/characters/hugo-sigil/back.svg",
  33044. extra: 519 / 495,
  33045. bottom: 5 / 524
  33046. }
  33047. },
  33048. maw: {
  33049. height: math.unit(1.4, "feet"),
  33050. weight: math.unit(150, "lb"),
  33051. name: "Maw",
  33052. image: {
  33053. source: "./media/characters/hugo-sigil/maw.svg"
  33054. }
  33055. },
  33056. feet: {
  33057. height: math.unit(1.56, "feet"),
  33058. weight: math.unit(150, "lb"),
  33059. name: "Feet",
  33060. image: {
  33061. source: "./media/characters/hugo-sigil/feet.svg",
  33062. extra: 177 / 177,
  33063. bottom: 12 / 189
  33064. }
  33065. },
  33066. },
  33067. [
  33068. {
  33069. name: "Normal",
  33070. height: math.unit(6, "feet")
  33071. },
  33072. {
  33073. name: "Macro",
  33074. height: math.unit(200, "feet"),
  33075. default: true
  33076. },
  33077. ]
  33078. ))
  33079. characterMakers.push(() => makeCharacter(
  33080. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33081. {
  33082. front: {
  33083. height: math.unit(6, "feet"),
  33084. weight: math.unit(150, "lb"),
  33085. name: "Front",
  33086. image: {
  33087. source: "./media/characters/peri/front.svg",
  33088. extra: 2354 / 2233,
  33089. bottom: 49 / 2403
  33090. }
  33091. },
  33092. },
  33093. [
  33094. {
  33095. name: "Really Small",
  33096. height: math.unit(1, "nm")
  33097. },
  33098. {
  33099. name: "Micro",
  33100. height: math.unit(4, "inches")
  33101. },
  33102. {
  33103. name: "Normal",
  33104. height: math.unit(7, "inches"),
  33105. default: true
  33106. },
  33107. {
  33108. name: "Macro",
  33109. height: math.unit(400, "feet")
  33110. },
  33111. {
  33112. name: "Megamacro",
  33113. height: math.unit(100, "miles")
  33114. },
  33115. ]
  33116. ))
  33117. characterMakers.push(() => makeCharacter(
  33118. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33119. {
  33120. frontSlim: {
  33121. height: math.unit(7, "feet"),
  33122. name: "Front (Slim)",
  33123. image: {
  33124. source: "./media/characters/issilora/front-slim.svg",
  33125. extra: 529 / 449,
  33126. bottom: 53 / 582
  33127. }
  33128. },
  33129. sideSlim: {
  33130. height: math.unit(7, "feet"),
  33131. name: "Side (Slim)",
  33132. image: {
  33133. source: "./media/characters/issilora/side-slim.svg",
  33134. extra: 570 / 480,
  33135. bottom: 30 / 600
  33136. }
  33137. },
  33138. backSlim: {
  33139. height: math.unit(7, "feet"),
  33140. name: "Back (Slim)",
  33141. image: {
  33142. source: "./media/characters/issilora/back-slim.svg",
  33143. extra: 537 / 455,
  33144. bottom: 46 / 583
  33145. }
  33146. },
  33147. frontBuff: {
  33148. height: math.unit(7, "feet"),
  33149. name: "Front (Buff)",
  33150. image: {
  33151. source: "./media/characters/issilora/front-buff.svg",
  33152. extra: 2310 / 2035,
  33153. bottom: 335 / 2645
  33154. }
  33155. },
  33156. head: {
  33157. height: math.unit(1.94, "feet"),
  33158. name: "Head",
  33159. image: {
  33160. source: "./media/characters/issilora/head.svg"
  33161. }
  33162. },
  33163. },
  33164. [
  33165. {
  33166. name: "Minimum",
  33167. height: math.unit(7, "feet")
  33168. },
  33169. {
  33170. name: "Comfortable",
  33171. height: math.unit(17, "feet")
  33172. },
  33173. {
  33174. name: "Fun Size",
  33175. height: math.unit(47, "feet")
  33176. },
  33177. {
  33178. name: "Natural Macro",
  33179. height: math.unit(137, "feet"),
  33180. default: true
  33181. },
  33182. {
  33183. name: "Maximum Kaiju",
  33184. height: math.unit(397, "feet")
  33185. },
  33186. ]
  33187. ))
  33188. characterMakers.push(() => makeCharacter(
  33189. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33190. {
  33191. front: {
  33192. height: math.unit(50 + 9/12, "feet"),
  33193. weight: math.unit(32.8, "tons"),
  33194. name: "Front",
  33195. image: {
  33196. source: "./media/characters/irb'iiritaahn/front.svg",
  33197. extra: 1878/1826,
  33198. bottom: 326/2204
  33199. }
  33200. },
  33201. back: {
  33202. height: math.unit(50 + 9/12, "feet"),
  33203. weight: math.unit(32.8, "tons"),
  33204. name: "Back",
  33205. image: {
  33206. source: "./media/characters/irb'iiritaahn/back.svg",
  33207. extra: 2052/2018,
  33208. bottom: 152/2204
  33209. }
  33210. },
  33211. head: {
  33212. height: math.unit(12.86, "feet"),
  33213. name: "Head",
  33214. image: {
  33215. source: "./media/characters/irb'iiritaahn/head.svg"
  33216. }
  33217. },
  33218. maw: {
  33219. height: math.unit(9.66, "feet"),
  33220. name: "Maw",
  33221. image: {
  33222. source: "./media/characters/irb'iiritaahn/maw.svg"
  33223. }
  33224. },
  33225. frontDick: {
  33226. height: math.unit(8.78461, "feet"),
  33227. name: "Front Dick",
  33228. image: {
  33229. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33230. }
  33231. },
  33232. rearDick: {
  33233. height: math.unit(8.78461, "feet"),
  33234. name: "Rear Dick",
  33235. image: {
  33236. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33237. }
  33238. },
  33239. rearDickUnfolded: {
  33240. height: math.unit(8.78, "feet"),
  33241. name: "Rear Dick (Unfolded)",
  33242. image: {
  33243. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33244. }
  33245. },
  33246. wings: {
  33247. height: math.unit(43, "feet"),
  33248. name: "Wings",
  33249. image: {
  33250. source: "./media/characters/irb'iiritaahn/wings.svg"
  33251. }
  33252. },
  33253. },
  33254. [
  33255. {
  33256. name: "Macro",
  33257. height: math.unit(50 + 9/12, "feet"),
  33258. default: true
  33259. },
  33260. ]
  33261. ))
  33262. characterMakers.push(() => makeCharacter(
  33263. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33264. {
  33265. front: {
  33266. height: math.unit(205, "cm"),
  33267. weight: math.unit(102, "kg"),
  33268. name: "Front",
  33269. image: {
  33270. source: "./media/characters/irbisgreif/front.svg",
  33271. extra: 785/706,
  33272. bottom: 13/798
  33273. }
  33274. },
  33275. back: {
  33276. height: math.unit(205, "cm"),
  33277. weight: math.unit(102, "kg"),
  33278. name: "Back",
  33279. image: {
  33280. source: "./media/characters/irbisgreif/back.svg",
  33281. extra: 713/701,
  33282. bottom: 26/739
  33283. }
  33284. },
  33285. frontDressed: {
  33286. height: math.unit(216, "cm"),
  33287. weight: math.unit(102, "kg"),
  33288. name: "Front-dressed",
  33289. image: {
  33290. source: "./media/characters/irbisgreif/front-dressed.svg",
  33291. extra: 902/776,
  33292. bottom: 14/916
  33293. }
  33294. },
  33295. sideDressed: {
  33296. height: math.unit(195, "cm"),
  33297. weight: math.unit(102, "kg"),
  33298. name: "Side-dressed",
  33299. image: {
  33300. source: "./media/characters/irbisgreif/side-dressed.svg",
  33301. extra: 788/688,
  33302. bottom: 21/809
  33303. }
  33304. },
  33305. backDressed: {
  33306. height: math.unit(216, "cm"),
  33307. weight: math.unit(102, "kg"),
  33308. name: "Back-dressed",
  33309. image: {
  33310. source: "./media/characters/irbisgreif/back-dressed.svg",
  33311. extra: 901/783,
  33312. bottom: 10/911
  33313. }
  33314. },
  33315. dick: {
  33316. height: math.unit(0.49, "feet"),
  33317. name: "Dick",
  33318. image: {
  33319. source: "./media/characters/irbisgreif/dick.svg"
  33320. }
  33321. },
  33322. wingTop: {
  33323. height: math.unit(1.93 , "feet"),
  33324. name: "Wing-top",
  33325. image: {
  33326. source: "./media/characters/irbisgreif/wing-top.svg"
  33327. }
  33328. },
  33329. wingBottom: {
  33330. height: math.unit(1.93 , "feet"),
  33331. name: "Wing-bottom",
  33332. image: {
  33333. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33334. }
  33335. },
  33336. },
  33337. [
  33338. {
  33339. name: "Normal",
  33340. height: math.unit(216, "cm"),
  33341. default: true
  33342. },
  33343. ]
  33344. ))
  33345. characterMakers.push(() => makeCharacter(
  33346. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33347. {
  33348. front: {
  33349. height: math.unit(6, "feet"),
  33350. weight: math.unit(150, "lb"),
  33351. name: "Front",
  33352. image: {
  33353. source: "./media/characters/pride/front.svg",
  33354. extra: 1299/1230,
  33355. bottom: 18/1317
  33356. }
  33357. },
  33358. },
  33359. [
  33360. {
  33361. name: "Normal",
  33362. height: math.unit(7, "feet")
  33363. },
  33364. {
  33365. name: "Mini-macro",
  33366. height: math.unit(11, "feet")
  33367. },
  33368. {
  33369. name: "Macro",
  33370. height: math.unit(15, "meters"),
  33371. default: true
  33372. },
  33373. {
  33374. name: "Macro+",
  33375. height: math.unit(40, "meters")
  33376. },
  33377. ]
  33378. ))
  33379. characterMakers.push(() => makeCharacter(
  33380. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33381. {
  33382. front: {
  33383. height: math.unit(4 + 2 / 12, "feet"),
  33384. weight: math.unit(95, "lb"),
  33385. name: "Front",
  33386. image: {
  33387. source: "./media/characters/vaelophis-nyx/front.svg",
  33388. extra: 2532/2330,
  33389. bottom: 0/2532
  33390. }
  33391. },
  33392. back: {
  33393. height: math.unit(4 + 2 / 12, "feet"),
  33394. weight: math.unit(95, "lb"),
  33395. name: "Back",
  33396. image: {
  33397. source: "./media/characters/vaelophis-nyx/back.svg",
  33398. extra: 2484/2361,
  33399. bottom: 0/2484
  33400. }
  33401. },
  33402. feralSide: {
  33403. height: math.unit(2 + 1/12, "feet"),
  33404. weight: math.unit(20, "lb"),
  33405. name: "Feral (Side)",
  33406. image: {
  33407. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33408. extra: 1721/1581,
  33409. bottom: 70/1791
  33410. }
  33411. },
  33412. feralLazing: {
  33413. height: math.unit(1.08, "feet"),
  33414. weight: math.unit(20, "lb"),
  33415. name: "Feral (Lazing)",
  33416. image: {
  33417. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33418. extra: 822/822,
  33419. bottom: 248/1070
  33420. }
  33421. },
  33422. ear: {
  33423. height: math.unit(0.416, "feet"),
  33424. name: "Ear",
  33425. image: {
  33426. source: "./media/characters/vaelophis-nyx/ear.svg"
  33427. }
  33428. },
  33429. eye: {
  33430. height: math.unit(0.0748, "feet"),
  33431. name: "Eye",
  33432. image: {
  33433. source: "./media/characters/vaelophis-nyx/eye.svg"
  33434. }
  33435. },
  33436. mouth: {
  33437. height: math.unit(0.378, "feet"),
  33438. name: "Mouth",
  33439. image: {
  33440. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33441. }
  33442. },
  33443. spade: {
  33444. height: math.unit(0.55, "feet"),
  33445. name: "Spade",
  33446. image: {
  33447. source: "./media/characters/vaelophis-nyx/spade.svg"
  33448. }
  33449. },
  33450. },
  33451. [
  33452. {
  33453. name: "Normal",
  33454. height: math.unit(4 + 2/12, "feet"),
  33455. default: true
  33456. },
  33457. ]
  33458. ))
  33459. characterMakers.push(() => makeCharacter(
  33460. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33461. {
  33462. front: {
  33463. height: math.unit(7, "feet"),
  33464. weight: math.unit(231, "lb"),
  33465. name: "Front",
  33466. image: {
  33467. source: "./media/characters/flux/front.svg",
  33468. extra: 919/871,
  33469. bottom: 0/919
  33470. }
  33471. },
  33472. back: {
  33473. height: math.unit(7, "feet"),
  33474. weight: math.unit(231, "lb"),
  33475. name: "Back",
  33476. image: {
  33477. source: "./media/characters/flux/back.svg",
  33478. extra: 1040/992,
  33479. bottom: 0/1040
  33480. }
  33481. },
  33482. frontDressed: {
  33483. height: math.unit(7, "feet"),
  33484. weight: math.unit(231, "lb"),
  33485. name: "Front (Dressed)",
  33486. image: {
  33487. source: "./media/characters/flux/front-dressed.svg",
  33488. extra: 919/871,
  33489. bottom: 0/919
  33490. }
  33491. },
  33492. feralSide: {
  33493. height: math.unit(5, "feet"),
  33494. weight: math.unit(150, "lb"),
  33495. name: "Feral (Side)",
  33496. image: {
  33497. source: "./media/characters/flux/feral-side.svg",
  33498. extra: 598/528,
  33499. bottom: 28/626
  33500. }
  33501. },
  33502. head: {
  33503. height: math.unit(1.585, "feet"),
  33504. name: "Head",
  33505. image: {
  33506. source: "./media/characters/flux/head.svg"
  33507. }
  33508. },
  33509. headSide: {
  33510. height: math.unit(1.74, "feet"),
  33511. name: "Head (Side)",
  33512. image: {
  33513. source: "./media/characters/flux/head-side.svg"
  33514. }
  33515. },
  33516. headSideFire: {
  33517. height: math.unit(1.76, "feet"),
  33518. name: "Head (Side, Fire)",
  33519. image: {
  33520. source: "./media/characters/flux/head-side-fire.svg"
  33521. }
  33522. },
  33523. },
  33524. [
  33525. {
  33526. name: "Normal",
  33527. height: math.unit(7, "feet"),
  33528. default: true
  33529. },
  33530. ]
  33531. ))
  33532. characterMakers.push(() => makeCharacter(
  33533. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33534. {
  33535. front: {
  33536. height: math.unit(9, "feet"),
  33537. weight: math.unit(1012, "lb"),
  33538. name: "Front",
  33539. image: {
  33540. source: "./media/characters/ulfra-lupae/front.svg",
  33541. extra: 1083/1011,
  33542. bottom: 67/1150
  33543. }
  33544. },
  33545. },
  33546. [
  33547. {
  33548. name: "Micro",
  33549. height: math.unit(6, "inches")
  33550. },
  33551. {
  33552. name: "Socializing",
  33553. height: math.unit(6 + 5/12, "feet")
  33554. },
  33555. {
  33556. name: "Normal",
  33557. height: math.unit(9, "feet"),
  33558. default: true
  33559. },
  33560. {
  33561. name: "Macro",
  33562. height: math.unit(150, "feet")
  33563. },
  33564. ]
  33565. ))
  33566. characterMakers.push(() => makeCharacter(
  33567. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33568. {
  33569. front: {
  33570. height: math.unit(5 + 2/12, "feet"),
  33571. weight: math.unit(120, "lb"),
  33572. name: "Front",
  33573. image: {
  33574. source: "./media/characters/timber/front.svg",
  33575. extra: 2814/2705,
  33576. bottom: 181/2995
  33577. }
  33578. },
  33579. },
  33580. [
  33581. {
  33582. name: "Normal",
  33583. height: math.unit(5 + 2/12, "feet"),
  33584. default: true
  33585. },
  33586. ]
  33587. ))
  33588. characterMakers.push(() => makeCharacter(
  33589. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33590. {
  33591. front: {
  33592. height: math.unit(9, "feet"),
  33593. name: "Front",
  33594. image: {
  33595. source: "./media/characters/nicki/front.svg",
  33596. extra: 1240/990,
  33597. bottom: 45/1285
  33598. },
  33599. form: "anthro",
  33600. default: true
  33601. },
  33602. side: {
  33603. height: math.unit(9, "feet"),
  33604. name: "Side",
  33605. image: {
  33606. source: "./media/characters/nicki/side.svg",
  33607. extra: 1047/973,
  33608. bottom: 61/1108
  33609. },
  33610. form: "anthro"
  33611. },
  33612. back: {
  33613. height: math.unit(9, "feet"),
  33614. name: "Back",
  33615. image: {
  33616. source: "./media/characters/nicki/back.svg",
  33617. extra: 1006/965,
  33618. bottom: 39/1045
  33619. },
  33620. form: "anthro"
  33621. },
  33622. taur: {
  33623. height: math.unit(15, "feet"),
  33624. name: "Taur",
  33625. image: {
  33626. source: "./media/characters/nicki/taur.svg",
  33627. extra: 1592/1347,
  33628. bottom: 0/1592
  33629. },
  33630. form: "taur",
  33631. default: true
  33632. },
  33633. },
  33634. [
  33635. {
  33636. name: "Normal",
  33637. height: math.unit(9, "feet"),
  33638. form: "anthro",
  33639. default: true
  33640. },
  33641. {
  33642. name: "Normal",
  33643. height: math.unit(15, "feet"),
  33644. form: "taur",
  33645. default: true
  33646. }
  33647. ],
  33648. {
  33649. "anthro": {
  33650. name: "Anthro",
  33651. default: true
  33652. },
  33653. "taur": {
  33654. name: "Taur"
  33655. }
  33656. }
  33657. ))
  33658. characterMakers.push(() => makeCharacter(
  33659. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33660. {
  33661. front: {
  33662. height: math.unit(7 + 10/12, "feet"),
  33663. weight: math.unit(3.5, "tons"),
  33664. name: "Front",
  33665. image: {
  33666. source: "./media/characters/lee/front.svg",
  33667. extra: 1773/1615,
  33668. bottom: 86/1859
  33669. }
  33670. },
  33671. hand: {
  33672. height: math.unit(1.78, "feet"),
  33673. name: "Hand",
  33674. image: {
  33675. source: "./media/characters/lee/hand.svg"
  33676. }
  33677. },
  33678. maw: {
  33679. height: math.unit(1.18, "feet"),
  33680. name: "Maw",
  33681. image: {
  33682. source: "./media/characters/lee/maw.svg"
  33683. }
  33684. },
  33685. },
  33686. [
  33687. {
  33688. name: "Normal",
  33689. height: math.unit(7 + 10/12, "feet"),
  33690. default: true
  33691. },
  33692. ]
  33693. ))
  33694. characterMakers.push(() => makeCharacter(
  33695. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33696. {
  33697. front: {
  33698. height: math.unit(9, "feet"),
  33699. name: "Front",
  33700. image: {
  33701. source: "./media/characters/guti/front.svg",
  33702. extra: 4551/4355,
  33703. bottom: 123/4674
  33704. }
  33705. },
  33706. tongue: {
  33707. height: math.unit(1, "feet"),
  33708. name: "Tongue",
  33709. image: {
  33710. source: "./media/characters/guti/tongue.svg"
  33711. }
  33712. },
  33713. paw: {
  33714. height: math.unit(1.18, "feet"),
  33715. name: "Paw",
  33716. image: {
  33717. source: "./media/characters/guti/paw.svg"
  33718. }
  33719. },
  33720. },
  33721. [
  33722. {
  33723. name: "Normal",
  33724. height: math.unit(9, "feet"),
  33725. default: true
  33726. },
  33727. ]
  33728. ))
  33729. characterMakers.push(() => makeCharacter(
  33730. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33731. {
  33732. side: {
  33733. height: math.unit(5, "meters"),
  33734. name: "Side",
  33735. image: {
  33736. source: "./media/characters/vesper/side.svg",
  33737. extra: 1605/1518,
  33738. bottom: 0/1605
  33739. }
  33740. },
  33741. },
  33742. [
  33743. {
  33744. name: "Small",
  33745. height: math.unit(5, "meters")
  33746. },
  33747. {
  33748. name: "Sage",
  33749. height: math.unit(100, "meters"),
  33750. default: true
  33751. },
  33752. {
  33753. name: "Fun Size",
  33754. height: math.unit(600, "meters")
  33755. },
  33756. {
  33757. name: "Goddess",
  33758. height: math.unit(20000, "km")
  33759. },
  33760. {
  33761. name: "Maximum",
  33762. height: math.unit(5, "galaxies")
  33763. },
  33764. ]
  33765. ))
  33766. characterMakers.push(() => makeCharacter(
  33767. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33768. {
  33769. front: {
  33770. height: math.unit(6 + 3/12, "feet"),
  33771. weight: math.unit(190, "lb"),
  33772. name: "Front",
  33773. image: {
  33774. source: "./media/characters/gawain/front.svg",
  33775. extra: 2222/2139,
  33776. bottom: 90/2312
  33777. }
  33778. },
  33779. back: {
  33780. height: math.unit(6 + 3/12, "feet"),
  33781. weight: math.unit(190, "lb"),
  33782. name: "Back",
  33783. image: {
  33784. source: "./media/characters/gawain/back.svg",
  33785. extra: 2199/2111,
  33786. bottom: 73/2272
  33787. }
  33788. },
  33789. },
  33790. [
  33791. {
  33792. name: "Normal",
  33793. height: math.unit(6 + 3/12, "feet"),
  33794. default: true
  33795. },
  33796. ]
  33797. ))
  33798. characterMakers.push(() => makeCharacter(
  33799. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33800. {
  33801. side: {
  33802. height: math.unit(3.5, "meters"),
  33803. weight: math.unit(16000, "lb"),
  33804. name: "Side",
  33805. image: {
  33806. source: "./media/characters/dascalti/side.svg",
  33807. extra: 392/273,
  33808. bottom: 47/439
  33809. }
  33810. },
  33811. breath: {
  33812. height: math.unit(7.4, "feet"),
  33813. name: "Breath",
  33814. image: {
  33815. source: "./media/characters/dascalti/breath.svg"
  33816. }
  33817. },
  33818. fed: {
  33819. height: math.unit(3.6, "meters"),
  33820. weight: math.unit(16000, "lb"),
  33821. name: "Fed",
  33822. image: {
  33823. source: "./media/characters/dascalti/fed.svg",
  33824. extra: 1419/820,
  33825. bottom: 95/1514
  33826. }
  33827. },
  33828. },
  33829. [
  33830. {
  33831. name: "Normal",
  33832. height: math.unit(3.5, "meters"),
  33833. default: true
  33834. },
  33835. ]
  33836. ))
  33837. characterMakers.push(() => makeCharacter(
  33838. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33839. {
  33840. front: {
  33841. height: math.unit(3 + 5/12, "feet"),
  33842. name: "Front",
  33843. image: {
  33844. source: "./media/characters/mauve/front.svg",
  33845. extra: 1126/1033,
  33846. bottom: 65/1191
  33847. }
  33848. },
  33849. side: {
  33850. height: math.unit(3 + 5/12, "feet"),
  33851. name: "Side",
  33852. image: {
  33853. source: "./media/characters/mauve/side.svg",
  33854. extra: 1089/1001,
  33855. bottom: 29/1118
  33856. }
  33857. },
  33858. back: {
  33859. height: math.unit(3 + 5/12, "feet"),
  33860. name: "Back",
  33861. image: {
  33862. source: "./media/characters/mauve/back.svg",
  33863. extra: 1173/1053,
  33864. bottom: 109/1282
  33865. }
  33866. },
  33867. },
  33868. [
  33869. {
  33870. name: "Normal",
  33871. height: math.unit(3 + 5/12, "feet"),
  33872. default: true
  33873. },
  33874. ]
  33875. ))
  33876. characterMakers.push(() => makeCharacter(
  33877. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33878. {
  33879. front: {
  33880. height: math.unit(6 + 3/12, "feet"),
  33881. weight: math.unit(430, "lb"),
  33882. name: "Front",
  33883. image: {
  33884. source: "./media/characters/carlos/front.svg",
  33885. extra: 1964/1913,
  33886. bottom: 70/2034
  33887. }
  33888. },
  33889. },
  33890. [
  33891. {
  33892. name: "Normal",
  33893. height: math.unit(6 + 3/12, "feet"),
  33894. default: true
  33895. },
  33896. ]
  33897. ))
  33898. characterMakers.push(() => makeCharacter(
  33899. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33900. {
  33901. back: {
  33902. height: math.unit(5 + 10/12, "feet"),
  33903. weight: math.unit(200, "lb"),
  33904. name: "Back",
  33905. image: {
  33906. source: "./media/characters/jax/back.svg",
  33907. extra: 764/739,
  33908. bottom: 25/789
  33909. }
  33910. },
  33911. },
  33912. [
  33913. {
  33914. name: "Normal",
  33915. height: math.unit(5 + 10/12, "feet"),
  33916. default: true
  33917. },
  33918. ]
  33919. ))
  33920. characterMakers.push(() => makeCharacter(
  33921. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33922. {
  33923. front: {
  33924. height: math.unit(8, "feet"),
  33925. weight: math.unit(250, "lb"),
  33926. name: "Front",
  33927. image: {
  33928. source: "./media/characters/eikthynir/front.svg",
  33929. extra: 1332/1166,
  33930. bottom: 82/1414
  33931. }
  33932. },
  33933. back: {
  33934. height: math.unit(8, "feet"),
  33935. weight: math.unit(250, "lb"),
  33936. name: "Back",
  33937. image: {
  33938. source: "./media/characters/eikthynir/back.svg",
  33939. extra: 1342/1190,
  33940. bottom: 19/1361
  33941. }
  33942. },
  33943. dick: {
  33944. height: math.unit(2.35, "feet"),
  33945. name: "Dick",
  33946. image: {
  33947. source: "./media/characters/eikthynir/dick.svg"
  33948. }
  33949. },
  33950. },
  33951. [
  33952. {
  33953. name: "Normal",
  33954. height: math.unit(8, "feet"),
  33955. default: true
  33956. },
  33957. ]
  33958. ))
  33959. characterMakers.push(() => makeCharacter(
  33960. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33961. {
  33962. front: {
  33963. height: math.unit(99, "meters"),
  33964. weight: math.unit(13000, "tons"),
  33965. name: "Front",
  33966. image: {
  33967. source: "./media/characters/zlmos/front.svg",
  33968. extra: 2202/1992,
  33969. bottom: 315/2517
  33970. }
  33971. },
  33972. },
  33973. [
  33974. {
  33975. name: "Macro",
  33976. height: math.unit(99, "meters"),
  33977. default: true
  33978. },
  33979. ]
  33980. ))
  33981. characterMakers.push(() => makeCharacter(
  33982. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33983. {
  33984. front: {
  33985. height: math.unit(6 + 5/12, "feet"),
  33986. name: "Front",
  33987. image: {
  33988. source: "./media/characters/purri/front.svg",
  33989. extra: 1698/1610,
  33990. bottom: 32/1730
  33991. }
  33992. },
  33993. frontAlt: {
  33994. height: math.unit(6 + 5/12, "feet"),
  33995. name: "Front (Alt)",
  33996. image: {
  33997. source: "./media/characters/purri/front-alt.svg",
  33998. extra: 450/420,
  33999. bottom: 26/476
  34000. }
  34001. },
  34002. boots: {
  34003. height: math.unit(5.5, "feet"),
  34004. name: "Boots",
  34005. image: {
  34006. source: "./media/characters/purri/boots.svg",
  34007. extra: 905/853,
  34008. bottom: 18/923
  34009. },
  34010. extraAttributes: {
  34011. "shoeSize": {
  34012. name: "Shoe Size",
  34013. power: 1,
  34014. type: "length",
  34015. base: math.unit(12, "ShoeSizeMensUS")
  34016. },
  34017. "platformHeight": {
  34018. name: "Platform Height",
  34019. power: 1,
  34020. type: "length",
  34021. base: math.unit(2, "inches")
  34022. },
  34023. }
  34024. },
  34025. lying: {
  34026. height: math.unit(2, "feet"),
  34027. name: "Lying",
  34028. image: {
  34029. source: "./media/characters/purri/lying.svg",
  34030. extra: 940/843,
  34031. bottom: 146/1086
  34032. }
  34033. },
  34034. devious: {
  34035. height: math.unit(1.77, "feet"),
  34036. name: "Devious",
  34037. image: {
  34038. source: "./media/characters/purri/devious.svg",
  34039. extra: 1440/1155,
  34040. bottom: 147/1587
  34041. }
  34042. },
  34043. bean: {
  34044. height: math.unit(1.94, "feet"),
  34045. name: "Bean",
  34046. image: {
  34047. source: "./media/characters/purri/bean.svg"
  34048. }
  34049. },
  34050. },
  34051. [
  34052. {
  34053. name: "Micro",
  34054. height: math.unit(1, "mm")
  34055. },
  34056. {
  34057. name: "Normal",
  34058. height: math.unit(6 + 5/12, "feet"),
  34059. default: true
  34060. },
  34061. {
  34062. name: "Macro :3c",
  34063. height: math.unit(2, "miles")
  34064. },
  34065. ]
  34066. ))
  34067. characterMakers.push(() => makeCharacter(
  34068. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34069. {
  34070. front: {
  34071. height: math.unit(6 + 2/12, "feet"),
  34072. weight: math.unit(250, "lb"),
  34073. name: "Front",
  34074. image: {
  34075. source: "./media/characters/moonlight/front.svg",
  34076. extra: 1044/908,
  34077. bottom: 56/1100
  34078. }
  34079. },
  34080. feral: {
  34081. height: math.unit(3 + 1/12, "feet"),
  34082. weight: math.unit(50, "kg"),
  34083. name: "Feral",
  34084. image: {
  34085. source: "./media/characters/moonlight/feral.svg",
  34086. extra: 3705/2791,
  34087. bottom: 145/3850
  34088. }
  34089. },
  34090. paw: {
  34091. height: math.unit(1, "feet"),
  34092. name: "Paw",
  34093. image: {
  34094. source: "./media/characters/moonlight/paw.svg"
  34095. }
  34096. },
  34097. paws: {
  34098. height: math.unit(0.98, "feet"),
  34099. name: "Paws",
  34100. image: {
  34101. source: "./media/characters/moonlight/paws.svg",
  34102. extra: 939/939,
  34103. bottom: 50/989
  34104. }
  34105. },
  34106. mouth: {
  34107. height: math.unit(0.48, "feet"),
  34108. name: "Mouth",
  34109. image: {
  34110. source: "./media/characters/moonlight/mouth.svg"
  34111. }
  34112. },
  34113. dick: {
  34114. height: math.unit(1.46, "feet"),
  34115. name: "Dick",
  34116. image: {
  34117. source: "./media/characters/moonlight/dick.svg"
  34118. }
  34119. },
  34120. },
  34121. [
  34122. {
  34123. name: "Normal",
  34124. height: math.unit(6 + 2/12, "feet"),
  34125. default: true
  34126. },
  34127. {
  34128. name: "Macro",
  34129. height: math.unit(300, "feet")
  34130. },
  34131. {
  34132. name: "Macro+",
  34133. height: math.unit(1, "mile")
  34134. },
  34135. {
  34136. name: "Mt. Moon",
  34137. height: math.unit(5, "miles")
  34138. },
  34139. {
  34140. name: "Megamacro",
  34141. height: math.unit(15, "miles")
  34142. },
  34143. ]
  34144. ))
  34145. characterMakers.push(() => makeCharacter(
  34146. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34147. {
  34148. back: {
  34149. height: math.unit(6, "feet"),
  34150. weight: math.unit(150, "lb"),
  34151. name: "Back",
  34152. image: {
  34153. source: "./media/characters/sylen/back.svg",
  34154. extra: 1335/1273,
  34155. bottom: 107/1442
  34156. }
  34157. },
  34158. },
  34159. [
  34160. {
  34161. name: "Normal",
  34162. height: math.unit(5 + 5/12, "feet")
  34163. },
  34164. {
  34165. name: "Megamacro",
  34166. height: math.unit(3, "miles"),
  34167. default: true
  34168. },
  34169. ]
  34170. ))
  34171. characterMakers.push(() => makeCharacter(
  34172. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34173. {
  34174. front: {
  34175. height: math.unit(6, "feet"),
  34176. weight: math.unit(190, "lb"),
  34177. name: "Front",
  34178. image: {
  34179. source: "./media/characters/huttser/front.svg",
  34180. extra: 1152/1058,
  34181. bottom: 23/1175
  34182. }
  34183. },
  34184. side: {
  34185. height: math.unit(6, "feet"),
  34186. weight: math.unit(190, "lb"),
  34187. name: "Side",
  34188. image: {
  34189. source: "./media/characters/huttser/side.svg",
  34190. extra: 1174/1065,
  34191. bottom: 18/1192
  34192. }
  34193. },
  34194. back: {
  34195. height: math.unit(6, "feet"),
  34196. weight: math.unit(190, "lb"),
  34197. name: "Back",
  34198. image: {
  34199. source: "./media/characters/huttser/back.svg",
  34200. extra: 1158/1056,
  34201. bottom: 12/1170
  34202. }
  34203. },
  34204. },
  34205. [
  34206. ]
  34207. ))
  34208. characterMakers.push(() => makeCharacter(
  34209. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34210. {
  34211. side: {
  34212. height: math.unit(12 + 9/12, "feet"),
  34213. weight: math.unit(15000, "lb"),
  34214. name: "Side",
  34215. image: {
  34216. source: "./media/characters/faan/side.svg",
  34217. extra: 2747/2697,
  34218. bottom: 0/2747
  34219. }
  34220. },
  34221. front: {
  34222. height: math.unit(12 + 9/12, "feet"),
  34223. weight: math.unit(15000, "lb"),
  34224. name: "Front",
  34225. image: {
  34226. source: "./media/characters/faan/front.svg",
  34227. extra: 607/571,
  34228. bottom: 24/631
  34229. }
  34230. },
  34231. head: {
  34232. height: math.unit(2.85, "feet"),
  34233. name: "Head",
  34234. image: {
  34235. source: "./media/characters/faan/head.svg"
  34236. }
  34237. },
  34238. headAlt: {
  34239. height: math.unit(3.13, "feet"),
  34240. name: "Head-alt",
  34241. image: {
  34242. source: "./media/characters/faan/head-alt.svg"
  34243. }
  34244. },
  34245. },
  34246. [
  34247. {
  34248. name: "Normal",
  34249. height: math.unit(12 + 9/12, "feet"),
  34250. default: true
  34251. },
  34252. ]
  34253. ))
  34254. characterMakers.push(() => makeCharacter(
  34255. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34256. {
  34257. front: {
  34258. height: math.unit(6, "feet"),
  34259. weight: math.unit(300, "lb"),
  34260. name: "Front",
  34261. image: {
  34262. source: "./media/characters/tanio/front.svg",
  34263. extra: 711/673,
  34264. bottom: 25/736
  34265. }
  34266. },
  34267. },
  34268. [
  34269. {
  34270. name: "Normal",
  34271. height: math.unit(6, "feet"),
  34272. default: true
  34273. },
  34274. ]
  34275. ))
  34276. characterMakers.push(() => makeCharacter(
  34277. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34278. {
  34279. front: {
  34280. height: math.unit(3, "inches"),
  34281. name: "Front",
  34282. image: {
  34283. source: "./media/characters/noboru/front.svg",
  34284. extra: 1039/932,
  34285. bottom: 18/1057
  34286. }
  34287. },
  34288. },
  34289. [
  34290. {
  34291. name: "Micro",
  34292. height: math.unit(3, "inches"),
  34293. default: true
  34294. },
  34295. ]
  34296. ))
  34297. characterMakers.push(() => makeCharacter(
  34298. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34299. {
  34300. front: {
  34301. height: math.unit(1.85, "meters"),
  34302. weight: math.unit(80, "kg"),
  34303. name: "Front",
  34304. image: {
  34305. source: "./media/characters/daniel-barrett/front.svg",
  34306. extra: 355/337,
  34307. bottom: 9/364
  34308. }
  34309. },
  34310. },
  34311. [
  34312. {
  34313. name: "Pico",
  34314. height: math.unit(0.0433, "mm")
  34315. },
  34316. {
  34317. name: "Nano",
  34318. height: math.unit(1.5, "mm")
  34319. },
  34320. {
  34321. name: "Micro",
  34322. height: math.unit(5.3, "cm"),
  34323. default: true
  34324. },
  34325. {
  34326. name: "Normal",
  34327. height: math.unit(1.85, "meters")
  34328. },
  34329. {
  34330. name: "Macro",
  34331. height: math.unit(64.7, "meters")
  34332. },
  34333. {
  34334. name: "Megamacro",
  34335. height: math.unit(2.26, "km")
  34336. },
  34337. {
  34338. name: "Gigamacro",
  34339. height: math.unit(79, "km")
  34340. },
  34341. {
  34342. name: "Teramacro",
  34343. height: math.unit(2765, "km")
  34344. },
  34345. {
  34346. name: "Petamacro",
  34347. height: math.unit(96678, "km")
  34348. },
  34349. ]
  34350. ))
  34351. characterMakers.push(() => makeCharacter(
  34352. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34353. {
  34354. front: {
  34355. height: math.unit(30, "meters"),
  34356. weight: math.unit(400, "tons"),
  34357. name: "Front",
  34358. image: {
  34359. source: "./media/characters/zeel/front.svg",
  34360. extra: 2599/2599,
  34361. bottom: 226/2825
  34362. }
  34363. },
  34364. },
  34365. [
  34366. {
  34367. name: "Macro",
  34368. height: math.unit(30, "meters"),
  34369. default: true
  34370. },
  34371. ]
  34372. ))
  34373. characterMakers.push(() => makeCharacter(
  34374. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34375. {
  34376. front: {
  34377. height: math.unit(6 + 7/12, "feet"),
  34378. weight: math.unit(210, "lb"),
  34379. name: "Front",
  34380. image: {
  34381. source: "./media/characters/tarn/front.svg",
  34382. extra: 3517/3220,
  34383. bottom: 91/3608
  34384. }
  34385. },
  34386. back: {
  34387. height: math.unit(6 + 7/12, "feet"),
  34388. weight: math.unit(210, "lb"),
  34389. name: "Back",
  34390. image: {
  34391. source: "./media/characters/tarn/back.svg",
  34392. extra: 3566/3241,
  34393. bottom: 34/3600
  34394. }
  34395. },
  34396. dick: {
  34397. height: math.unit(1.65, "feet"),
  34398. name: "Dick",
  34399. image: {
  34400. source: "./media/characters/tarn/dick.svg"
  34401. }
  34402. },
  34403. paw: {
  34404. height: math.unit(1.80, "feet"),
  34405. name: "Paw",
  34406. image: {
  34407. source: "./media/characters/tarn/paw.svg"
  34408. }
  34409. },
  34410. tongue: {
  34411. height: math.unit(0.97, "feet"),
  34412. name: "Tongue",
  34413. image: {
  34414. source: "./media/characters/tarn/tongue.svg"
  34415. }
  34416. },
  34417. },
  34418. [
  34419. {
  34420. name: "Micro",
  34421. height: math.unit(4, "inches")
  34422. },
  34423. {
  34424. name: "Normal",
  34425. height: math.unit(6 + 7/12, "feet"),
  34426. default: true
  34427. },
  34428. {
  34429. name: "Macro",
  34430. height: math.unit(300, "feet")
  34431. },
  34432. ]
  34433. ))
  34434. characterMakers.push(() => makeCharacter(
  34435. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34436. {
  34437. front: {
  34438. height: math.unit(5 + 7/12, "feet"),
  34439. weight: math.unit(80, "kg"),
  34440. name: "Front",
  34441. image: {
  34442. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34443. extra: 3023/2865,
  34444. bottom: 33/3056
  34445. }
  34446. },
  34447. back: {
  34448. height: math.unit(5 + 7/12, "feet"),
  34449. weight: math.unit(80, "kg"),
  34450. name: "Back",
  34451. image: {
  34452. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34453. extra: 3020/2886,
  34454. bottom: 30/3050
  34455. }
  34456. },
  34457. dick: {
  34458. height: math.unit(0.98, "feet"),
  34459. name: "Dick",
  34460. image: {
  34461. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34462. }
  34463. },
  34464. anatomy: {
  34465. height: math.unit(2.86, "feet"),
  34466. name: "Anatomy",
  34467. image: {
  34468. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34469. }
  34470. },
  34471. },
  34472. [
  34473. {
  34474. name: "Really Small",
  34475. height: math.unit(2, "inches")
  34476. },
  34477. {
  34478. name: "Micro",
  34479. height: math.unit(5.583, "inches")
  34480. },
  34481. {
  34482. name: "Normal",
  34483. height: math.unit(5 + 7/12, "feet"),
  34484. default: true
  34485. },
  34486. {
  34487. name: "Macro",
  34488. height: math.unit(67, "feet")
  34489. },
  34490. {
  34491. name: "Megamacro",
  34492. height: math.unit(134, "feet")
  34493. },
  34494. ]
  34495. ))
  34496. characterMakers.push(() => makeCharacter(
  34497. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34498. {
  34499. front: {
  34500. height: math.unit(9, "feet"),
  34501. weight: math.unit(120, "lb"),
  34502. name: "Front",
  34503. image: {
  34504. source: "./media/characters/sally/front.svg",
  34505. extra: 1506/1349,
  34506. bottom: 66/1572
  34507. }
  34508. },
  34509. },
  34510. [
  34511. {
  34512. name: "Normal",
  34513. height: math.unit(9, "feet"),
  34514. default: true
  34515. },
  34516. ]
  34517. ))
  34518. characterMakers.push(() => makeCharacter(
  34519. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34520. {
  34521. front: {
  34522. height: math.unit(8, "feet"),
  34523. weight: math.unit(900, "lb"),
  34524. name: "Front",
  34525. image: {
  34526. source: "./media/characters/owen/front.svg",
  34527. extra: 1761/1657,
  34528. bottom: 74/1835
  34529. }
  34530. },
  34531. side: {
  34532. height: math.unit(8, "feet"),
  34533. weight: math.unit(900, "lb"),
  34534. name: "Side",
  34535. image: {
  34536. source: "./media/characters/owen/side.svg",
  34537. extra: 1797/1734,
  34538. bottom: 30/1827
  34539. }
  34540. },
  34541. back: {
  34542. height: math.unit(8, "feet"),
  34543. weight: math.unit(900, "lb"),
  34544. name: "Back",
  34545. image: {
  34546. source: "./media/characters/owen/back.svg",
  34547. extra: 1796/1706,
  34548. bottom: 59/1855
  34549. }
  34550. },
  34551. maw: {
  34552. height: math.unit(1.76, "feet"),
  34553. name: "Maw",
  34554. image: {
  34555. source: "./media/characters/owen/maw.svg"
  34556. }
  34557. },
  34558. },
  34559. [
  34560. {
  34561. name: "Normal",
  34562. height: math.unit(8, "feet"),
  34563. default: true
  34564. },
  34565. ]
  34566. ))
  34567. characterMakers.push(() => makeCharacter(
  34568. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34569. {
  34570. front: {
  34571. height: math.unit(4, "feet"),
  34572. weight: math.unit(400, "lb"),
  34573. name: "Front",
  34574. image: {
  34575. source: "./media/characters/ryth/front.svg",
  34576. extra: 1920/1748,
  34577. bottom: 42/1962
  34578. }
  34579. },
  34580. back: {
  34581. height: math.unit(4, "feet"),
  34582. weight: math.unit(400, "lb"),
  34583. name: "Back",
  34584. image: {
  34585. source: "./media/characters/ryth/back.svg",
  34586. extra: 1897/1690,
  34587. bottom: 89/1986
  34588. }
  34589. },
  34590. mouth: {
  34591. height: math.unit(1.39, "feet"),
  34592. name: "Mouth",
  34593. image: {
  34594. source: "./media/characters/ryth/mouth.svg"
  34595. }
  34596. },
  34597. tailmaw: {
  34598. height: math.unit(1.23, "feet"),
  34599. name: "Tailmaw",
  34600. image: {
  34601. source: "./media/characters/ryth/tailmaw.svg"
  34602. }
  34603. },
  34604. goia: {
  34605. height: math.unit(4, "meters"),
  34606. weight: math.unit(10800, "lb"),
  34607. name: "Goia",
  34608. image: {
  34609. source: "./media/characters/ryth/goia.svg",
  34610. extra: 745/640,
  34611. bottom: 107/852
  34612. }
  34613. },
  34614. goiaFront: {
  34615. height: math.unit(4, "meters"),
  34616. weight: math.unit(10800, "lb"),
  34617. name: "Goia (Front)",
  34618. image: {
  34619. source: "./media/characters/ryth/goia-front.svg",
  34620. extra: 750/586,
  34621. bottom: 114/864
  34622. }
  34623. },
  34624. goiaMaw: {
  34625. height: math.unit(5.55, "feet"),
  34626. name: "Goia Maw",
  34627. image: {
  34628. source: "./media/characters/ryth/goia-maw.svg"
  34629. }
  34630. },
  34631. goiaForepaw: {
  34632. height: math.unit(3.5, "feet"),
  34633. name: "Goia Forepaw",
  34634. image: {
  34635. source: "./media/characters/ryth/goia-forepaw.svg"
  34636. }
  34637. },
  34638. goiaHindpaw: {
  34639. height: math.unit(5.55, "feet"),
  34640. name: "Goia Hindpaw",
  34641. image: {
  34642. source: "./media/characters/ryth/goia-hindpaw.svg"
  34643. }
  34644. },
  34645. },
  34646. [
  34647. {
  34648. name: "Normal",
  34649. height: math.unit(4, "feet"),
  34650. default: true
  34651. },
  34652. ]
  34653. ))
  34654. characterMakers.push(() => makeCharacter(
  34655. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34656. {
  34657. front: {
  34658. height: math.unit(7, "feet"),
  34659. weight: math.unit(180, "lb"),
  34660. name: "Front",
  34661. image: {
  34662. source: "./media/characters/necrolance/front.svg",
  34663. extra: 1062/947,
  34664. bottom: 41/1103
  34665. }
  34666. },
  34667. back: {
  34668. height: math.unit(7, "feet"),
  34669. weight: math.unit(180, "lb"),
  34670. name: "Back",
  34671. image: {
  34672. source: "./media/characters/necrolance/back.svg",
  34673. extra: 1045/984,
  34674. bottom: 14/1059
  34675. }
  34676. },
  34677. wing: {
  34678. height: math.unit(2.67, "feet"),
  34679. name: "Wing",
  34680. image: {
  34681. source: "./media/characters/necrolance/wing.svg"
  34682. }
  34683. },
  34684. },
  34685. [
  34686. {
  34687. name: "Normal",
  34688. height: math.unit(7, "feet"),
  34689. default: true
  34690. },
  34691. ]
  34692. ))
  34693. characterMakers.push(() => makeCharacter(
  34694. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34695. {
  34696. front: {
  34697. height: math.unit(76, "meters"),
  34698. weight: math.unit(30000, "tons"),
  34699. name: "Front",
  34700. image: {
  34701. source: "./media/characters/tyler/front.svg",
  34702. extra: 1640/1640,
  34703. bottom: 114/1754
  34704. }
  34705. },
  34706. },
  34707. [
  34708. {
  34709. name: "Macro",
  34710. height: math.unit(76, "meters"),
  34711. default: true
  34712. },
  34713. ]
  34714. ))
  34715. characterMakers.push(() => makeCharacter(
  34716. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34717. {
  34718. front: {
  34719. height: math.unit(4 + 11/12, "feet"),
  34720. weight: math.unit(132, "lb"),
  34721. name: "Front",
  34722. image: {
  34723. source: "./media/characters/icey/front.svg",
  34724. extra: 2750/2550,
  34725. bottom: 33/2783
  34726. }
  34727. },
  34728. back: {
  34729. height: math.unit(4 + 11/12, "feet"),
  34730. weight: math.unit(132, "lb"),
  34731. name: "Back",
  34732. image: {
  34733. source: "./media/characters/icey/back.svg",
  34734. extra: 2624/2481,
  34735. bottom: 35/2659
  34736. }
  34737. },
  34738. },
  34739. [
  34740. {
  34741. name: "Normal",
  34742. height: math.unit(4 + 11/12, "feet"),
  34743. default: true
  34744. },
  34745. ]
  34746. ))
  34747. characterMakers.push(() => makeCharacter(
  34748. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34749. {
  34750. front: {
  34751. height: math.unit(100, "feet"),
  34752. weight: math.unit(0, "lb"),
  34753. name: "Front",
  34754. image: {
  34755. source: "./media/characters/smile/front.svg",
  34756. extra: 2983/2912,
  34757. bottom: 162/3145
  34758. }
  34759. },
  34760. back: {
  34761. height: math.unit(100, "feet"),
  34762. weight: math.unit(0, "lb"),
  34763. name: "Back",
  34764. image: {
  34765. source: "./media/characters/smile/back.svg",
  34766. extra: 3143/3031,
  34767. bottom: 91/3234
  34768. }
  34769. },
  34770. head: {
  34771. height: math.unit(26.3, "feet"),
  34772. weight: math.unit(0, "lb"),
  34773. name: "Head",
  34774. image: {
  34775. source: "./media/characters/smile/head.svg"
  34776. }
  34777. },
  34778. collar: {
  34779. height: math.unit(5.3, "feet"),
  34780. weight: math.unit(0, "lb"),
  34781. name: "Collar",
  34782. image: {
  34783. source: "./media/characters/smile/collar.svg"
  34784. }
  34785. },
  34786. },
  34787. [
  34788. {
  34789. name: "Macro",
  34790. height: math.unit(100, "feet"),
  34791. default: true
  34792. },
  34793. ]
  34794. ))
  34795. characterMakers.push(() => makeCharacter(
  34796. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34797. {
  34798. dragon: {
  34799. height: math.unit(26, "feet"),
  34800. weight: math.unit(36, "tons"),
  34801. name: "Dragon",
  34802. image: {
  34803. source: "./media/characters/arimphae/dragon.svg",
  34804. extra: 1574/983,
  34805. bottom: 357/1931
  34806. }
  34807. },
  34808. drake: {
  34809. height: math.unit(9, "feet"),
  34810. weight: math.unit(1.5, "tons"),
  34811. name: "Drake",
  34812. image: {
  34813. source: "./media/characters/arimphae/drake.svg",
  34814. extra: 1120/925,
  34815. bottom: 435/1555
  34816. }
  34817. },
  34818. },
  34819. [
  34820. {
  34821. name: "Small",
  34822. height: math.unit(26*5/9, "feet")
  34823. },
  34824. {
  34825. name: "Normal",
  34826. height: math.unit(26, "feet"),
  34827. default: true
  34828. },
  34829. ]
  34830. ))
  34831. characterMakers.push(() => makeCharacter(
  34832. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34833. {
  34834. front: {
  34835. height: math.unit(8 + 9/12, "feet"),
  34836. name: "Front",
  34837. image: {
  34838. source: "./media/characters/xander/front.svg",
  34839. extra: 1237/974,
  34840. bottom: 94/1331
  34841. }
  34842. },
  34843. },
  34844. [
  34845. {
  34846. name: "Normal",
  34847. height: math.unit(8 + 9/12, "feet"),
  34848. default: true
  34849. },
  34850. {
  34851. name: "Gaze Grabber",
  34852. height: math.unit(13 + 8/12, "feet")
  34853. },
  34854. {
  34855. name: "Jaw Dropper",
  34856. height: math.unit(27, "feet")
  34857. },
  34858. {
  34859. name: "Show Stopper",
  34860. height: math.unit(136, "feet")
  34861. },
  34862. {
  34863. name: "Superstar",
  34864. height: math.unit(1.9e6, "miles")
  34865. },
  34866. ]
  34867. ))
  34868. characterMakers.push(() => makeCharacter(
  34869. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34870. {
  34871. side: {
  34872. height: math.unit(2100, "feet"),
  34873. name: "Side",
  34874. image: {
  34875. source: "./media/characters/osiris/side.svg",
  34876. extra: 1105/939,
  34877. bottom: 167/1272
  34878. }
  34879. },
  34880. },
  34881. [
  34882. {
  34883. name: "Macro",
  34884. height: math.unit(2100, "feet"),
  34885. default: true
  34886. },
  34887. ]
  34888. ))
  34889. characterMakers.push(() => makeCharacter(
  34890. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34891. {
  34892. front: {
  34893. height: math.unit(6 + 8/12, "feet"),
  34894. weight: math.unit(225, "lb"),
  34895. name: "Front",
  34896. image: {
  34897. source: "./media/characters/rhys-londe/front.svg",
  34898. extra: 2258/2141,
  34899. bottom: 188/2446
  34900. }
  34901. },
  34902. back: {
  34903. height: math.unit(6 + 8/12, "feet"),
  34904. weight: math.unit(225, "lb"),
  34905. name: "Back",
  34906. image: {
  34907. source: "./media/characters/rhys-londe/back.svg",
  34908. extra: 2237/2137,
  34909. bottom: 63/2300
  34910. }
  34911. },
  34912. frontNsfw: {
  34913. height: math.unit(6 + 8/12, "feet"),
  34914. weight: math.unit(225, "lb"),
  34915. name: "Front (NSFW)",
  34916. image: {
  34917. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34918. extra: 2258/2141,
  34919. bottom: 188/2446
  34920. }
  34921. },
  34922. backNsfw: {
  34923. height: math.unit(6 + 8/12, "feet"),
  34924. weight: math.unit(225, "lb"),
  34925. name: "Back (NSFW)",
  34926. image: {
  34927. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34928. extra: 2237/2137,
  34929. bottom: 63/2300
  34930. }
  34931. },
  34932. dick: {
  34933. height: math.unit(30, "inches"),
  34934. name: "Dick",
  34935. image: {
  34936. source: "./media/characters/rhys-londe/dick.svg"
  34937. }
  34938. },
  34939. maw: {
  34940. height: math.unit(1.6, "feet"),
  34941. name: "Maw",
  34942. image: {
  34943. source: "./media/characters/rhys-londe/maw.svg"
  34944. }
  34945. },
  34946. },
  34947. [
  34948. {
  34949. name: "Normal",
  34950. height: math.unit(6 + 8/12, "feet"),
  34951. default: true
  34952. },
  34953. ]
  34954. ))
  34955. characterMakers.push(() => makeCharacter(
  34956. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34957. {
  34958. front: {
  34959. height: math.unit(3 + 10/12, "feet"),
  34960. weight: math.unit(90, "lb"),
  34961. name: "Front",
  34962. image: {
  34963. source: "./media/characters/taivas-ensim/front.svg",
  34964. extra: 1327/1216,
  34965. bottom: 96/1423
  34966. }
  34967. },
  34968. back: {
  34969. height: math.unit(3 + 10/12, "feet"),
  34970. weight: math.unit(90, "lb"),
  34971. name: "Back",
  34972. image: {
  34973. source: "./media/characters/taivas-ensim/back.svg",
  34974. extra: 1355/1247,
  34975. bottom: 11/1366
  34976. }
  34977. },
  34978. frontNsfw: {
  34979. height: math.unit(3 + 10/12, "feet"),
  34980. weight: math.unit(90, "lb"),
  34981. name: "Front (NSFW)",
  34982. image: {
  34983. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34984. extra: 1327/1216,
  34985. bottom: 96/1423
  34986. }
  34987. },
  34988. backNsfw: {
  34989. height: math.unit(3 + 10/12, "feet"),
  34990. weight: math.unit(90, "lb"),
  34991. name: "Back (NSFW)",
  34992. image: {
  34993. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34994. extra: 1355/1247,
  34995. bottom: 11/1366
  34996. }
  34997. },
  34998. },
  34999. [
  35000. {
  35001. name: "Normal",
  35002. height: math.unit(3 + 10/12, "feet"),
  35003. default: true
  35004. },
  35005. ]
  35006. ))
  35007. characterMakers.push(() => makeCharacter(
  35008. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35009. {
  35010. front: {
  35011. height: math.unit(9 + 6/12, "feet"),
  35012. weight: math.unit(940, "lb"),
  35013. name: "Front",
  35014. image: {
  35015. source: "./media/characters/byliss/front.svg",
  35016. extra: 1327/1290,
  35017. bottom: 82/1409
  35018. }
  35019. },
  35020. back: {
  35021. height: math.unit(9 + 6/12, "feet"),
  35022. weight: math.unit(940, "lb"),
  35023. name: "Back",
  35024. image: {
  35025. source: "./media/characters/byliss/back.svg",
  35026. extra: 1376/1349,
  35027. bottom: 9/1385
  35028. }
  35029. },
  35030. frontNsfw: {
  35031. height: math.unit(9 + 6/12, "feet"),
  35032. weight: math.unit(940, "lb"),
  35033. name: "Front (NSFW)",
  35034. image: {
  35035. source: "./media/characters/byliss/front-nsfw.svg",
  35036. extra: 1327/1290,
  35037. bottom: 82/1409
  35038. }
  35039. },
  35040. backNsfw: {
  35041. height: math.unit(9 + 6/12, "feet"),
  35042. weight: math.unit(940, "lb"),
  35043. name: "Back (NSFW)",
  35044. image: {
  35045. source: "./media/characters/byliss/back-nsfw.svg",
  35046. extra: 1376/1349,
  35047. bottom: 9/1385
  35048. }
  35049. },
  35050. },
  35051. [
  35052. {
  35053. name: "Normal",
  35054. height: math.unit(9 + 6/12, "feet"),
  35055. default: true
  35056. },
  35057. ]
  35058. ))
  35059. characterMakers.push(() => makeCharacter(
  35060. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35061. {
  35062. front: {
  35063. height: math.unit(5 + 2/12, "feet"),
  35064. weight: math.unit(200, "lb"),
  35065. name: "Front",
  35066. image: {
  35067. source: "./media/characters/noraly/front.svg",
  35068. extra: 4985/4773,
  35069. bottom: 150/5135
  35070. }
  35071. },
  35072. full: {
  35073. height: math.unit(5 + 2/12, "feet"),
  35074. weight: math.unit(164, "lb"),
  35075. name: "Full",
  35076. image: {
  35077. source: "./media/characters/noraly/full.svg",
  35078. extra: 1114/1059,
  35079. bottom: 35/1149
  35080. }
  35081. },
  35082. fuller: {
  35083. height: math.unit(5 + 2/12, "feet"),
  35084. weight: math.unit(230, "lb"),
  35085. name: "Fuller",
  35086. image: {
  35087. source: "./media/characters/noraly/fuller.svg",
  35088. extra: 1114/1059,
  35089. bottom: 35/1149
  35090. }
  35091. },
  35092. fullest: {
  35093. height: math.unit(5 + 2/12, "feet"),
  35094. weight: math.unit(300, "lb"),
  35095. name: "Fullest",
  35096. image: {
  35097. source: "./media/characters/noraly/fullest.svg",
  35098. extra: 1114/1059,
  35099. bottom: 35/1149
  35100. }
  35101. },
  35102. },
  35103. [
  35104. {
  35105. name: "Normal",
  35106. height: math.unit(5 + 2/12, "feet"),
  35107. default: true
  35108. },
  35109. ]
  35110. ))
  35111. characterMakers.push(() => makeCharacter(
  35112. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35113. {
  35114. front: {
  35115. height: math.unit(5 + 2/12, "feet"),
  35116. weight: math.unit(210, "lb"),
  35117. name: "Front",
  35118. image: {
  35119. source: "./media/characters/pera/front.svg",
  35120. extra: 1560/1531,
  35121. bottom: 165/1725
  35122. }
  35123. },
  35124. back: {
  35125. height: math.unit(5 + 2/12, "feet"),
  35126. weight: math.unit(210, "lb"),
  35127. name: "Back",
  35128. image: {
  35129. source: "./media/characters/pera/back.svg",
  35130. extra: 1523/1493,
  35131. bottom: 152/1675
  35132. }
  35133. },
  35134. dick: {
  35135. height: math.unit(2.4, "feet"),
  35136. name: "Dick",
  35137. image: {
  35138. source: "./media/characters/pera/dick.svg"
  35139. }
  35140. },
  35141. },
  35142. [
  35143. {
  35144. name: "Normal",
  35145. height: math.unit(5 + 2/12, "feet"),
  35146. default: true
  35147. },
  35148. ]
  35149. ))
  35150. characterMakers.push(() => makeCharacter(
  35151. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35152. {
  35153. front: {
  35154. height: math.unit(12, "feet"),
  35155. weight: math.unit(3200, "lb"),
  35156. name: "Front",
  35157. image: {
  35158. source: "./media/characters/julian/front.svg",
  35159. extra: 2962/2701,
  35160. bottom: 184/3146
  35161. }
  35162. },
  35163. maw: {
  35164. height: math.unit(5.35, "feet"),
  35165. name: "Maw",
  35166. image: {
  35167. source: "./media/characters/julian/maw.svg"
  35168. }
  35169. },
  35170. paw: {
  35171. height: math.unit(3.07, "feet"),
  35172. name: "Paw",
  35173. image: {
  35174. source: "./media/characters/julian/paw.svg"
  35175. }
  35176. },
  35177. },
  35178. [
  35179. {
  35180. name: "Default",
  35181. height: math.unit(12, "feet"),
  35182. default: true
  35183. },
  35184. {
  35185. name: "Big",
  35186. height: math.unit(50, "feet")
  35187. },
  35188. {
  35189. name: "Really Big",
  35190. height: math.unit(1, "mile")
  35191. },
  35192. {
  35193. name: "Extremely Big",
  35194. height: math.unit(100, "miles")
  35195. },
  35196. {
  35197. name: "Planet Hugger",
  35198. height: math.unit(200, "megameters")
  35199. },
  35200. {
  35201. name: "Unreasonably Big",
  35202. height: math.unit(1e300, "meters")
  35203. },
  35204. ]
  35205. ))
  35206. characterMakers.push(() => makeCharacter(
  35207. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35208. {
  35209. solgooleo: {
  35210. height: math.unit(4, "meters"),
  35211. weight: math.unit(6000*1.5, "kg"),
  35212. volume: math.unit(6000, "liters"),
  35213. name: "Solgooleo",
  35214. image: {
  35215. source: "./media/characters/pi/solgooleo.svg",
  35216. extra: 388/331,
  35217. bottom: 29/417
  35218. }
  35219. },
  35220. },
  35221. [
  35222. {
  35223. name: "Normal",
  35224. height: math.unit(4, "meters"),
  35225. default: true
  35226. },
  35227. ]
  35228. ))
  35229. characterMakers.push(() => makeCharacter(
  35230. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35231. {
  35232. front: {
  35233. height: math.unit(8, "feet"),
  35234. weight: math.unit(4, "tons"),
  35235. name: "Front",
  35236. image: {
  35237. source: "./media/characters/shaun/front.svg",
  35238. extra: 503/495,
  35239. bottom: 20/523
  35240. }
  35241. },
  35242. back: {
  35243. height: math.unit(8, "feet"),
  35244. weight: math.unit(4, "tons"),
  35245. name: "Back",
  35246. image: {
  35247. source: "./media/characters/shaun/back.svg",
  35248. extra: 487/480,
  35249. bottom: 20/507
  35250. }
  35251. },
  35252. },
  35253. [
  35254. {
  35255. name: "Lorg",
  35256. height: math.unit(8, "feet"),
  35257. default: true
  35258. },
  35259. ]
  35260. ))
  35261. characterMakers.push(() => makeCharacter(
  35262. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35263. {
  35264. frontAnthro: {
  35265. height: math.unit(7, "feet"),
  35266. name: "Front",
  35267. image: {
  35268. source: "./media/characters/sini/front-anthro.svg",
  35269. extra: 726/678,
  35270. bottom: 35/761
  35271. },
  35272. form: "anthro",
  35273. default: true
  35274. },
  35275. backAnthro: {
  35276. height: math.unit(7, "feet"),
  35277. name: "Back",
  35278. image: {
  35279. source: "./media/characters/sini/back-anthro.svg",
  35280. extra: 743/701,
  35281. bottom: 12/755
  35282. },
  35283. form: "anthro",
  35284. },
  35285. frontAnthroNsfw: {
  35286. height: math.unit(7, "feet"),
  35287. name: "Front (NSFW)",
  35288. image: {
  35289. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35290. extra: 726/678,
  35291. bottom: 35/761
  35292. },
  35293. form: "anthro"
  35294. },
  35295. backAnthroNsfw: {
  35296. height: math.unit(7, "feet"),
  35297. name: "Back (NSFW)",
  35298. image: {
  35299. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35300. extra: 743/701,
  35301. bottom: 12/755
  35302. },
  35303. form: "anthro",
  35304. },
  35305. mawAnthro: {
  35306. height: math.unit(2.14, "feet"),
  35307. name: "Maw",
  35308. image: {
  35309. source: "./media/characters/sini/maw-anthro.svg"
  35310. },
  35311. form: "anthro"
  35312. },
  35313. dick: {
  35314. height: math.unit(1.45, "feet"),
  35315. name: "Dick",
  35316. image: {
  35317. source: "./media/characters/sini/dick-anthro.svg"
  35318. },
  35319. form: "anthro"
  35320. },
  35321. feral: {
  35322. height: math.unit(16, "feet"),
  35323. name: "Feral",
  35324. image: {
  35325. source: "./media/characters/sini/feral.svg",
  35326. extra: 814/605,
  35327. bottom: 11/825
  35328. },
  35329. form: "feral",
  35330. default: true
  35331. },
  35332. feralNsfw: {
  35333. height: math.unit(16, "feet"),
  35334. name: "Feral (NSFW)",
  35335. image: {
  35336. source: "./media/characters/sini/feral-nsfw.svg",
  35337. extra: 814/605,
  35338. bottom: 11/825
  35339. },
  35340. form: "feral"
  35341. },
  35342. mawFeral: {
  35343. height: math.unit(5.66, "feet"),
  35344. name: "Maw",
  35345. image: {
  35346. source: "./media/characters/sini/maw-feral.svg"
  35347. },
  35348. form: "feral",
  35349. },
  35350. pawFeral: {
  35351. height: math.unit(5.17, "feet"),
  35352. name: "Paw",
  35353. image: {
  35354. source: "./media/characters/sini/paw-feral.svg"
  35355. },
  35356. form: "feral",
  35357. },
  35358. rumpFeral: {
  35359. height: math.unit(13.11, "feet"),
  35360. name: "Rump",
  35361. image: {
  35362. source: "./media/characters/sini/rump-feral.svg"
  35363. },
  35364. form: "feral",
  35365. },
  35366. dickFeral: {
  35367. height: math.unit(1, "feet"),
  35368. name: "Dick",
  35369. image: {
  35370. source: "./media/characters/sini/dick-feral.svg"
  35371. },
  35372. form: "feral",
  35373. },
  35374. eyeFeral: {
  35375. height: math.unit(1.23, "feet"),
  35376. name: "Eye",
  35377. image: {
  35378. source: "./media/characters/sini/eye-feral.svg"
  35379. },
  35380. form: "feral",
  35381. },
  35382. },
  35383. [
  35384. {
  35385. name: "Normal",
  35386. height: math.unit(7, "feet"),
  35387. default: true,
  35388. form: "anthro"
  35389. },
  35390. {
  35391. name: "Normal",
  35392. height: math.unit(16, "feet"),
  35393. default: true,
  35394. form: "feral"
  35395. },
  35396. ],
  35397. {
  35398. "anthro": {
  35399. name: "Anthro",
  35400. default: true
  35401. },
  35402. "feral": {
  35403. name: "Feral",
  35404. }
  35405. }
  35406. ))
  35407. characterMakers.push(() => makeCharacter(
  35408. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35409. {
  35410. side: {
  35411. height: math.unit(47.2, "meters"),
  35412. weight: math.unit(10000, "tons"),
  35413. name: "Side",
  35414. image: {
  35415. source: "./media/characters/raylldo/side.svg",
  35416. extra: 2363/642,
  35417. bottom: 221/2584
  35418. }
  35419. },
  35420. top: {
  35421. height: math.unit(240, "meters"),
  35422. weight: math.unit(10000, "tons"),
  35423. name: "Top",
  35424. image: {
  35425. source: "./media/characters/raylldo/top.svg"
  35426. }
  35427. },
  35428. bottom: {
  35429. height: math.unit(240, "meters"),
  35430. weight: math.unit(10000, "tons"),
  35431. name: "Bottom",
  35432. image: {
  35433. source: "./media/characters/raylldo/bottom.svg"
  35434. }
  35435. },
  35436. head: {
  35437. height: math.unit(38.6, "meters"),
  35438. name: "Head",
  35439. image: {
  35440. source: "./media/characters/raylldo/head.svg",
  35441. extra: 1335/1112,
  35442. bottom: 0/1335
  35443. }
  35444. },
  35445. maw: {
  35446. height: math.unit(16.37, "meters"),
  35447. name: "Maw",
  35448. image: {
  35449. source: "./media/characters/raylldo/maw.svg",
  35450. extra: 883/660,
  35451. bottom: 0/883
  35452. },
  35453. extraAttributes: {
  35454. preyCapacity: {
  35455. name: "Capacity",
  35456. power: 3,
  35457. type: "volume",
  35458. base: math.unit(1000, "people")
  35459. },
  35460. tongueSize: {
  35461. name: "Tongue Size",
  35462. power: 2,
  35463. type: "area",
  35464. base: math.unit(21, "m^2")
  35465. }
  35466. }
  35467. },
  35468. forepaw: {
  35469. height: math.unit(18, "meters"),
  35470. name: "Forepaw",
  35471. image: {
  35472. source: "./media/characters/raylldo/forepaw.svg"
  35473. }
  35474. },
  35475. hindpaw: {
  35476. height: math.unit(23, "meters"),
  35477. name: "Hindpaw",
  35478. image: {
  35479. source: "./media/characters/raylldo/hindpaw.svg"
  35480. }
  35481. },
  35482. genitals: {
  35483. height: math.unit(42, "meters"),
  35484. name: "Genitals",
  35485. image: {
  35486. source: "./media/characters/raylldo/genitals.svg"
  35487. }
  35488. },
  35489. },
  35490. [
  35491. {
  35492. name: "Normal",
  35493. height: math.unit(47.2, "meters"),
  35494. default: true
  35495. },
  35496. ]
  35497. ))
  35498. characterMakers.push(() => makeCharacter(
  35499. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35500. {
  35501. anthroFront: {
  35502. height: math.unit(9, "feet"),
  35503. weight: math.unit(600, "lb"),
  35504. name: "Anthro (Front)",
  35505. image: {
  35506. source: "./media/characters/glint/anthro-front.svg",
  35507. extra: 1097/1018,
  35508. bottom: 28/1125
  35509. }
  35510. },
  35511. anthroBack: {
  35512. height: math.unit(9, "feet"),
  35513. weight: math.unit(600, "lb"),
  35514. name: "Anthro (Back)",
  35515. image: {
  35516. source: "./media/characters/glint/anthro-back.svg",
  35517. extra: 1154/997,
  35518. bottom: 36/1190
  35519. }
  35520. },
  35521. feral: {
  35522. height: math.unit(11, "feet"),
  35523. weight: math.unit(50000, "lb"),
  35524. name: "Feral",
  35525. image: {
  35526. source: "./media/characters/glint/feral.svg",
  35527. extra: 3035/1585,
  35528. bottom: 1169/4204
  35529. }
  35530. },
  35531. dickAnthro: {
  35532. height: math.unit(0.7, "meters"),
  35533. name: "Dick (Anthro)",
  35534. image: {
  35535. source: "./media/characters/glint/dick-anthro.svg"
  35536. }
  35537. },
  35538. dickFeral: {
  35539. height: math.unit(2.65, "meters"),
  35540. name: "Dick (Feral)",
  35541. image: {
  35542. source: "./media/characters/glint/dick-feral.svg"
  35543. }
  35544. },
  35545. slitHidden: {
  35546. height: math.unit(5.85, "meters"),
  35547. name: "Slit (Hidden)",
  35548. image: {
  35549. source: "./media/characters/glint/slit-hidden.svg"
  35550. }
  35551. },
  35552. slitErect: {
  35553. height: math.unit(5.85, "meters"),
  35554. name: "Slit (Erect)",
  35555. image: {
  35556. source: "./media/characters/glint/slit-erect.svg"
  35557. }
  35558. },
  35559. mawAnthro: {
  35560. height: math.unit(0.63, "meters"),
  35561. name: "Maw (Anthro)",
  35562. image: {
  35563. source: "./media/characters/glint/maw.svg"
  35564. }
  35565. },
  35566. mawFeral: {
  35567. height: math.unit(2.89, "meters"),
  35568. name: "Maw (Feral)",
  35569. image: {
  35570. source: "./media/characters/glint/maw.svg"
  35571. }
  35572. },
  35573. },
  35574. [
  35575. {
  35576. name: "Normal",
  35577. height: math.unit(9, "feet"),
  35578. default: true
  35579. },
  35580. ]
  35581. ))
  35582. characterMakers.push(() => makeCharacter(
  35583. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35584. {
  35585. side: {
  35586. height: math.unit(15, "feet"),
  35587. weight: math.unit(5000, "kg"),
  35588. name: "Side",
  35589. image: {
  35590. source: "./media/characters/kairne/side.svg",
  35591. extra: 979/811,
  35592. bottom: 13/992
  35593. }
  35594. },
  35595. front: {
  35596. height: math.unit(15, "feet"),
  35597. weight: math.unit(5000, "kg"),
  35598. name: "Front",
  35599. image: {
  35600. source: "./media/characters/kairne/front.svg",
  35601. extra: 908/814,
  35602. bottom: 26/934
  35603. }
  35604. },
  35605. sideNsfw: {
  35606. height: math.unit(15, "feet"),
  35607. weight: math.unit(5000, "kg"),
  35608. name: "Side (NSFW)",
  35609. image: {
  35610. source: "./media/characters/kairne/side-nsfw.svg",
  35611. extra: 979/811,
  35612. bottom: 13/992
  35613. }
  35614. },
  35615. frontNsfw: {
  35616. height: math.unit(15, "feet"),
  35617. weight: math.unit(5000, "kg"),
  35618. name: "Front (NSFW)",
  35619. image: {
  35620. source: "./media/characters/kairne/front-nsfw.svg",
  35621. extra: 908/814,
  35622. bottom: 26/934
  35623. }
  35624. },
  35625. dickCaged: {
  35626. height: math.unit(0.65, "meters"),
  35627. name: "Dick-caged",
  35628. image: {
  35629. source: "./media/characters/kairne/dick-caged.svg"
  35630. }
  35631. },
  35632. dick: {
  35633. height: math.unit(0.79, "meters"),
  35634. name: "Dick",
  35635. image: {
  35636. source: "./media/characters/kairne/dick.svg"
  35637. }
  35638. },
  35639. genitals: {
  35640. height: math.unit(1.29, "meters"),
  35641. name: "Genitals",
  35642. image: {
  35643. source: "./media/characters/kairne/genitals.svg"
  35644. }
  35645. },
  35646. maw: {
  35647. height: math.unit(1.73, "meters"),
  35648. name: "Maw",
  35649. image: {
  35650. source: "./media/characters/kairne/maw.svg"
  35651. }
  35652. },
  35653. },
  35654. [
  35655. {
  35656. name: "Normal",
  35657. height: math.unit(15, "feet"),
  35658. default: true
  35659. },
  35660. ]
  35661. ))
  35662. characterMakers.push(() => makeCharacter(
  35663. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35664. {
  35665. front: {
  35666. height: math.unit(5 + 8/12, "feet"),
  35667. weight: math.unit(139, "lb"),
  35668. name: "Front",
  35669. image: {
  35670. source: "./media/characters/biscuit-jackal/front.svg",
  35671. extra: 2106/1961,
  35672. bottom: 58/2164
  35673. }
  35674. },
  35675. back: {
  35676. height: math.unit(5 + 8/12, "feet"),
  35677. weight: math.unit(139, "lb"),
  35678. name: "Back",
  35679. image: {
  35680. source: "./media/characters/biscuit-jackal/back.svg",
  35681. extra: 2132/1976,
  35682. bottom: 57/2189
  35683. }
  35684. },
  35685. werejackal: {
  35686. height: math.unit(6 + 3/12, "feet"),
  35687. weight: math.unit(188, "lb"),
  35688. name: "Werejackal",
  35689. image: {
  35690. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35691. extra: 2373/2178,
  35692. bottom: 53/2426
  35693. }
  35694. },
  35695. },
  35696. [
  35697. {
  35698. name: "Normal",
  35699. height: math.unit(5 + 8/12, "feet"),
  35700. default: true
  35701. },
  35702. ]
  35703. ))
  35704. characterMakers.push(() => makeCharacter(
  35705. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35706. {
  35707. front: {
  35708. height: math.unit(140, "cm"),
  35709. weight: math.unit(45, "kg"),
  35710. name: "Front",
  35711. image: {
  35712. source: "./media/characters/tayra-white/front.svg",
  35713. extra: 2229/2192,
  35714. bottom: 75/2304
  35715. }
  35716. },
  35717. },
  35718. [
  35719. {
  35720. name: "Normal",
  35721. height: math.unit(140, "cm"),
  35722. default: true
  35723. },
  35724. ]
  35725. ))
  35726. characterMakers.push(() => makeCharacter(
  35727. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35728. {
  35729. front: {
  35730. height: math.unit(4 + 5/12, "feet"),
  35731. name: "Front",
  35732. image: {
  35733. source: "./media/characters/scoop/front.svg",
  35734. extra: 1257/1136,
  35735. bottom: 69/1326
  35736. }
  35737. },
  35738. back: {
  35739. height: math.unit(4 + 5/12, "feet"),
  35740. name: "Back",
  35741. image: {
  35742. source: "./media/characters/scoop/back.svg",
  35743. extra: 1321/1152,
  35744. bottom: 32/1353
  35745. }
  35746. },
  35747. maw: {
  35748. height: math.unit(0.68, "feet"),
  35749. name: "Maw",
  35750. image: {
  35751. source: "./media/characters/scoop/maw.svg"
  35752. }
  35753. },
  35754. },
  35755. [
  35756. {
  35757. name: "Really Small",
  35758. height: math.unit(1, "mm")
  35759. },
  35760. {
  35761. name: "Micro",
  35762. height: math.unit(1, "inch")
  35763. },
  35764. {
  35765. name: "Normal",
  35766. height: math.unit(4 + 5/12, "feet"),
  35767. default: true
  35768. },
  35769. {
  35770. name: "Macro",
  35771. height: math.unit(200, "feet")
  35772. },
  35773. {
  35774. name: "Megamacro",
  35775. height: math.unit(3240, "feet")
  35776. },
  35777. {
  35778. name: "Teramacro",
  35779. height: math.unit(2500, "miles")
  35780. },
  35781. ]
  35782. ))
  35783. characterMakers.push(() => makeCharacter(
  35784. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35785. {
  35786. front: {
  35787. height: math.unit(15 + 7/12, "feet"),
  35788. weight: math.unit(1150, "tons"),
  35789. name: "Front",
  35790. image: {
  35791. source: "./media/characters/saphinara/front.svg",
  35792. extra: 1837/1643,
  35793. bottom: 84/1921
  35794. },
  35795. form: "normal",
  35796. default: true
  35797. },
  35798. side: {
  35799. height: math.unit(15 + 7/12, "feet"),
  35800. weight: math.unit(1150, "tons"),
  35801. name: "Side",
  35802. image: {
  35803. source: "./media/characters/saphinara/side.svg",
  35804. extra: 605/547,
  35805. bottom: 6/611
  35806. },
  35807. form: "normal"
  35808. },
  35809. back: {
  35810. height: math.unit(15 + 7/12, "feet"),
  35811. weight: math.unit(1150, "tons"),
  35812. name: "Back",
  35813. image: {
  35814. source: "./media/characters/saphinara/back.svg",
  35815. extra: 591/531,
  35816. bottom: 13/604
  35817. },
  35818. form: "normal"
  35819. },
  35820. frontTail: {
  35821. height: math.unit(15 + 7/12, "feet"),
  35822. weight: math.unit(1150, "tons"),
  35823. name: "Front (Full Tail)",
  35824. image: {
  35825. source: "./media/characters/saphinara/front-tail.svg",
  35826. extra: 2256/1630,
  35827. bottom: 261/2517
  35828. },
  35829. form: "normal"
  35830. },
  35831. insides: {
  35832. height: math.unit(11.92, "feet"),
  35833. name: "Insides",
  35834. image: {
  35835. source: "./media/characters/saphinara/insides.svg"
  35836. },
  35837. form: "normal"
  35838. },
  35839. head: {
  35840. height: math.unit(4.17, "feet"),
  35841. name: "Head",
  35842. image: {
  35843. source: "./media/characters/saphinara/head.svg"
  35844. },
  35845. form: "normal"
  35846. },
  35847. tongue: {
  35848. height: math.unit(4.60, "feet"),
  35849. name: "Tongue",
  35850. image: {
  35851. source: "./media/characters/saphinara/tongue.svg"
  35852. },
  35853. form: "normal"
  35854. },
  35855. headEnraged: {
  35856. height: math.unit(5.55, "feet"),
  35857. name: "Head (Enraged)",
  35858. image: {
  35859. source: "./media/characters/saphinara/head-enraged.svg"
  35860. },
  35861. form: "normal"
  35862. },
  35863. wings: {
  35864. height: math.unit(11.95, "feet"),
  35865. name: "Wings",
  35866. image: {
  35867. source: "./media/characters/saphinara/wings.svg"
  35868. },
  35869. form: "normal"
  35870. },
  35871. feathers: {
  35872. height: math.unit(8.92, "feet"),
  35873. name: "Feathers",
  35874. image: {
  35875. source: "./media/characters/saphinara/feathers.svg"
  35876. },
  35877. form: "normal"
  35878. },
  35879. shackles: {
  35880. height: math.unit(2, "feet"),
  35881. name: "Shackles",
  35882. image: {
  35883. source: "./media/characters/saphinara/shackles.svg"
  35884. },
  35885. form: "normal"
  35886. },
  35887. eyes: {
  35888. height: math.unit(1.331, "feet"),
  35889. name: "Eyes",
  35890. image: {
  35891. source: "./media/characters/saphinara/eyes.svg"
  35892. },
  35893. form: "normal"
  35894. },
  35895. eyesEnraged: {
  35896. height: math.unit(1.331, "feet"),
  35897. name: "Eyes (Enraged)",
  35898. image: {
  35899. source: "./media/characters/saphinara/eyes-enraged.svg"
  35900. },
  35901. form: "normal"
  35902. },
  35903. trueFormSide: {
  35904. height: math.unit(200, "feet"),
  35905. weight: math.unit(1e7, "tons"),
  35906. name: "Side",
  35907. image: {
  35908. source: "./media/characters/saphinara/true-form-side.svg",
  35909. extra: 1399/770,
  35910. bottom: 97/1496
  35911. },
  35912. form: "true-form",
  35913. default: true
  35914. },
  35915. trueFormMaw: {
  35916. height: math.unit(71.5, "feet"),
  35917. name: "Maw",
  35918. image: {
  35919. source: "./media/characters/saphinara/true-form-maw.svg",
  35920. extra: 2302/1453,
  35921. bottom: 0/2302
  35922. },
  35923. form: "true-form"
  35924. },
  35925. meowberusSide: {
  35926. height: math.unit(75, "feet"),
  35927. weight: math.unit(180000, "kg"),
  35928. preyCapacity: math.unit(50000, "people"),
  35929. name: "Side",
  35930. image: {
  35931. source: "./media/characters/saphinara/meowberus-side.svg",
  35932. extra: 1400/711,
  35933. bottom: 126/1526
  35934. },
  35935. form: "meowberus",
  35936. extraAttributes: {
  35937. "pawArea": {
  35938. name: "Paw Size",
  35939. power: 2,
  35940. type: "area",
  35941. base: math.unit(35, "m^2")
  35942. }
  35943. }
  35944. },
  35945. },
  35946. [
  35947. {
  35948. name: "Normal",
  35949. height: math.unit(15 + 7/12, "feet"),
  35950. default: true,
  35951. form: "normal"
  35952. },
  35953. {
  35954. name: "Angry",
  35955. height: math.unit(30 + 6/12, "feet"),
  35956. form: "normal"
  35957. },
  35958. {
  35959. name: "Enraged",
  35960. height: math.unit(102 + 1/12, "feet"),
  35961. form: "normal"
  35962. },
  35963. {
  35964. name: "True",
  35965. height: math.unit(200, "feet"),
  35966. default: true,
  35967. form: "true-form"
  35968. },
  35969. {
  35970. name: "Normal",
  35971. height: math.unit(75, "feet"),
  35972. default: true,
  35973. form: "meowberus"
  35974. },
  35975. ],
  35976. {
  35977. "normal": {
  35978. name: "Normal",
  35979. default: true
  35980. },
  35981. "true-form": {
  35982. name: "True Form"
  35983. },
  35984. "meowberus": {
  35985. name: "Meowberus",
  35986. },
  35987. }
  35988. ))
  35989. characterMakers.push(() => makeCharacter(
  35990. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35991. {
  35992. front: {
  35993. height: math.unit(6 + 8/12, "feet"),
  35994. weight: math.unit(300, "lb"),
  35995. name: "Front",
  35996. image: {
  35997. source: "./media/characters/jrain/front.svg",
  35998. extra: 3039/2865,
  35999. bottom: 399/3438
  36000. }
  36001. },
  36002. back: {
  36003. height: math.unit(6 + 8/12, "feet"),
  36004. weight: math.unit(300, "lb"),
  36005. name: "Back",
  36006. image: {
  36007. source: "./media/characters/jrain/back.svg",
  36008. extra: 3089/2938,
  36009. bottom: 172/3261
  36010. }
  36011. },
  36012. head: {
  36013. height: math.unit(2.14, "feet"),
  36014. name: "Head",
  36015. image: {
  36016. source: "./media/characters/jrain/head.svg"
  36017. }
  36018. },
  36019. maw: {
  36020. height: math.unit(1.77, "feet"),
  36021. name: "Maw",
  36022. image: {
  36023. source: "./media/characters/jrain/maw.svg"
  36024. }
  36025. },
  36026. leftHand: {
  36027. height: math.unit(1.1, "feet"),
  36028. name: "Left Hand",
  36029. image: {
  36030. source: "./media/characters/jrain/left-hand.svg"
  36031. }
  36032. },
  36033. rightHand: {
  36034. height: math.unit(1.1, "feet"),
  36035. name: "Right Hand",
  36036. image: {
  36037. source: "./media/characters/jrain/right-hand.svg"
  36038. }
  36039. },
  36040. eye: {
  36041. height: math.unit(0.35, "feet"),
  36042. name: "Eye",
  36043. image: {
  36044. source: "./media/characters/jrain/eye.svg"
  36045. }
  36046. },
  36047. },
  36048. [
  36049. {
  36050. name: "Normal",
  36051. height: math.unit(6 + 8/12, "feet"),
  36052. default: true
  36053. },
  36054. {
  36055. name: "Casually Large",
  36056. height: math.unit(25, "feet")
  36057. },
  36058. {
  36059. name: "Giant",
  36060. height: math.unit(100, "feet")
  36061. },
  36062. {
  36063. name: "Kaiju",
  36064. height: math.unit(300, "feet")
  36065. },
  36066. ]
  36067. ))
  36068. characterMakers.push(() => makeCharacter(
  36069. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36070. {
  36071. dragon: {
  36072. height: math.unit(5, "meters"),
  36073. name: "Dragon",
  36074. image: {
  36075. source: "./media/characters/sabrina/dragon.svg",
  36076. extra: 3670 / 2365,
  36077. bottom: 333 / 4003
  36078. }
  36079. },
  36080. gryphon: {
  36081. height: math.unit(3, "meters"),
  36082. name: "Gryphon",
  36083. image: {
  36084. source: "./media/characters/sabrina/gryphon.svg",
  36085. extra: 1576 / 945,
  36086. bottom: 71 / 1647
  36087. }
  36088. },
  36089. snake: {
  36090. height: math.unit(12, "meters"),
  36091. name: "Snake",
  36092. image: {
  36093. source: "./media/characters/sabrina/snake.svg",
  36094. extra: 1758 / 1320,
  36095. bottom: 186 / 1944
  36096. }
  36097. },
  36098. collar: {
  36099. height: math.unit(1.86, "meters"),
  36100. name: "Collar",
  36101. image: {
  36102. source: "./media/characters/sabrina/collar.svg"
  36103. }
  36104. },
  36105. eye: {
  36106. height: math.unit(0.53, "meters"),
  36107. name: "Eye",
  36108. image: {
  36109. source: "./media/characters/sabrina/eye.svg"
  36110. }
  36111. },
  36112. foot: {
  36113. height: math.unit(1.86, "meters"),
  36114. name: "Foot",
  36115. image: {
  36116. source: "./media/characters/sabrina/foot.svg"
  36117. }
  36118. },
  36119. hand: {
  36120. height: math.unit(1.32, "meters"),
  36121. name: "Hand",
  36122. image: {
  36123. source: "./media/characters/sabrina/hand.svg"
  36124. }
  36125. },
  36126. head: {
  36127. height: math.unit(2.44, "meters"),
  36128. name: "Head",
  36129. image: {
  36130. source: "./media/characters/sabrina/head.svg"
  36131. }
  36132. },
  36133. headAngry: {
  36134. height: math.unit(2.44, "meters"),
  36135. name: "Head (Angry))",
  36136. image: {
  36137. source: "./media/characters/sabrina/head-angry.svg"
  36138. }
  36139. },
  36140. maw: {
  36141. height: math.unit(1.65, "meters"),
  36142. name: "Maw",
  36143. image: {
  36144. source: "./media/characters/sabrina/maw.svg"
  36145. }
  36146. },
  36147. spikes: {
  36148. height: math.unit(1.69, "meters"),
  36149. name: "Spikes",
  36150. image: {
  36151. source: "./media/characters/sabrina/spikes.svg"
  36152. }
  36153. },
  36154. stomach: {
  36155. height: math.unit(1.15, "meters"),
  36156. name: "Stomach",
  36157. image: {
  36158. source: "./media/characters/sabrina/stomach.svg"
  36159. }
  36160. },
  36161. tongue: {
  36162. height: math.unit(1.27, "meters"),
  36163. name: "Tongue",
  36164. image: {
  36165. source: "./media/characters/sabrina/tongue.svg"
  36166. }
  36167. },
  36168. wingDorsal: {
  36169. height: math.unit(4.85, "meters"),
  36170. name: "Wing (Dorsal)",
  36171. image: {
  36172. source: "./media/characters/sabrina/wing-dorsal.svg"
  36173. }
  36174. },
  36175. wingVentral: {
  36176. height: math.unit(4.85, "meters"),
  36177. name: "Wing (Ventral)",
  36178. image: {
  36179. source: "./media/characters/sabrina/wing-ventral.svg"
  36180. }
  36181. },
  36182. },
  36183. [
  36184. {
  36185. name: "Normal",
  36186. height: math.unit(5, "meters"),
  36187. default: true
  36188. },
  36189. ]
  36190. ))
  36191. characterMakers.push(() => makeCharacter(
  36192. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36193. {
  36194. frontMaid: {
  36195. height: math.unit(5 + 5/12, "feet"),
  36196. weight: math.unit(130, "lb"),
  36197. name: "Front (Maid)",
  36198. image: {
  36199. source: "./media/characters/midnight-tales/front-maid.svg",
  36200. extra: 489/454,
  36201. bottom: 61/550
  36202. }
  36203. },
  36204. frontFormal: {
  36205. height: math.unit(5 + 5/12, "feet"),
  36206. weight: math.unit(130, "lb"),
  36207. name: "Front (Formal)",
  36208. image: {
  36209. source: "./media/characters/midnight-tales/front-formal.svg",
  36210. extra: 489/454,
  36211. bottom: 61/550
  36212. }
  36213. },
  36214. back: {
  36215. height: math.unit(5 + 5/12, "feet"),
  36216. weight: math.unit(130, "lb"),
  36217. name: "Back",
  36218. image: {
  36219. source: "./media/characters/midnight-tales/back.svg",
  36220. extra: 498/456,
  36221. bottom: 33/531
  36222. }
  36223. },
  36224. frontBeast: {
  36225. height: math.unit(40, "feet"),
  36226. weight: math.unit(64000, "lb"),
  36227. name: "Front (Beast)",
  36228. image: {
  36229. source: "./media/characters/midnight-tales/front-beast.svg",
  36230. extra: 927/860,
  36231. bottom: 53/980
  36232. }
  36233. },
  36234. backBeast: {
  36235. height: math.unit(40, "feet"),
  36236. weight: math.unit(64000, "lb"),
  36237. name: "Back (Beast)",
  36238. image: {
  36239. source: "./media/characters/midnight-tales/back-beast.svg",
  36240. extra: 929/855,
  36241. bottom: 16/945
  36242. }
  36243. },
  36244. footBeast: {
  36245. height: math.unit(6.7, "feet"),
  36246. name: "Foot (Beast)",
  36247. image: {
  36248. source: "./media/characters/midnight-tales/foot-beast.svg"
  36249. }
  36250. },
  36251. headBeast: {
  36252. height: math.unit(8, "feet"),
  36253. name: "Head (Beast)",
  36254. image: {
  36255. source: "./media/characters/midnight-tales/head-beast.svg"
  36256. }
  36257. },
  36258. },
  36259. [
  36260. {
  36261. name: "Normal",
  36262. height: math.unit(5 + 5 / 12, "feet"),
  36263. default: true
  36264. },
  36265. {
  36266. name: "Macro",
  36267. height: math.unit(25, "feet")
  36268. },
  36269. ]
  36270. ))
  36271. characterMakers.push(() => makeCharacter(
  36272. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36273. {
  36274. front: {
  36275. height: math.unit(5 + 10/12, "feet"),
  36276. name: "Front",
  36277. image: {
  36278. source: "./media/characters/argon/front.svg",
  36279. extra: 2009/1935,
  36280. bottom: 118/2127
  36281. }
  36282. },
  36283. back: {
  36284. height: math.unit(5 + 10/12, "feet"),
  36285. name: "Back",
  36286. image: {
  36287. source: "./media/characters/argon/back.svg",
  36288. extra: 2047/1992,
  36289. bottom: 20/2067
  36290. }
  36291. },
  36292. frontDressed: {
  36293. height: math.unit(5 + 10/12, "feet"),
  36294. name: "Front (Dressed)",
  36295. image: {
  36296. source: "./media/characters/argon/front-dressed.svg",
  36297. extra: 2009/1935,
  36298. bottom: 118/2127
  36299. }
  36300. },
  36301. },
  36302. [
  36303. {
  36304. name: "Normal",
  36305. height: math.unit(5 + 10/12, "feet"),
  36306. default: true
  36307. },
  36308. ]
  36309. ))
  36310. characterMakers.push(() => makeCharacter(
  36311. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36312. {
  36313. front: {
  36314. height: math.unit(8 + 6/12, "feet"),
  36315. weight: math.unit(1150, "lb"),
  36316. name: "Front",
  36317. image: {
  36318. source: "./media/characters/kichi/front.svg",
  36319. extra: 1267/1164,
  36320. bottom: 61/1328
  36321. }
  36322. },
  36323. back: {
  36324. height: math.unit(8 + 6/12, "feet"),
  36325. weight: math.unit(1150, "lb"),
  36326. name: "Back",
  36327. image: {
  36328. source: "./media/characters/kichi/back.svg",
  36329. extra: 1273/1166,
  36330. bottom: 33/1306
  36331. }
  36332. },
  36333. },
  36334. [
  36335. {
  36336. name: "Normal",
  36337. height: math.unit(8 + 6/12, "feet"),
  36338. default: true
  36339. },
  36340. ]
  36341. ))
  36342. characterMakers.push(() => makeCharacter(
  36343. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36344. {
  36345. front: {
  36346. height: math.unit(6, "feet"),
  36347. weight: math.unit(210, "lb"),
  36348. name: "Front",
  36349. image: {
  36350. source: "./media/characters/manetel-greyscale/front.svg",
  36351. extra: 350/312,
  36352. bottom: 8/358
  36353. }
  36354. },
  36355. },
  36356. [
  36357. {
  36358. name: "Micro",
  36359. height: math.unit(2, "inches")
  36360. },
  36361. {
  36362. name: "Normal",
  36363. height: math.unit(6, "feet"),
  36364. default: true
  36365. },
  36366. {
  36367. name: "Minimacro",
  36368. height: math.unit(17, "feet")
  36369. },
  36370. {
  36371. name: "Macro",
  36372. height: math.unit(117, "feet")
  36373. },
  36374. ]
  36375. ))
  36376. characterMakers.push(() => makeCharacter(
  36377. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36378. {
  36379. side: {
  36380. height: math.unit(5 + 1/12, "feet"),
  36381. weight: math.unit(418, "lb"),
  36382. name: "Side",
  36383. image: {
  36384. source: "./media/characters/softpurr/side.svg",
  36385. extra: 1993/1945,
  36386. bottom: 134/2127
  36387. }
  36388. },
  36389. front: {
  36390. height: math.unit(5 + 1/12, "feet"),
  36391. weight: math.unit(418, "lb"),
  36392. name: "Front",
  36393. image: {
  36394. source: "./media/characters/softpurr/front.svg",
  36395. extra: 1950/1856,
  36396. bottom: 174/2124
  36397. }
  36398. },
  36399. paw: {
  36400. height: math.unit(1, "feet"),
  36401. name: "Paw",
  36402. image: {
  36403. source: "./media/characters/softpurr/paw.svg"
  36404. }
  36405. },
  36406. },
  36407. [
  36408. {
  36409. name: "Normal",
  36410. height: math.unit(5 + 1/12, "feet"),
  36411. default: true
  36412. },
  36413. ]
  36414. ))
  36415. characterMakers.push(() => makeCharacter(
  36416. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36417. {
  36418. front: {
  36419. height: math.unit(260, "meters"),
  36420. name: "Front",
  36421. image: {
  36422. source: "./media/characters/anahita/front.svg",
  36423. extra: 665/635,
  36424. bottom: 89/754
  36425. }
  36426. },
  36427. },
  36428. [
  36429. {
  36430. name: "Macro",
  36431. height: math.unit(260, "meters"),
  36432. default: true
  36433. },
  36434. ]
  36435. ))
  36436. characterMakers.push(() => makeCharacter(
  36437. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36438. {
  36439. front: {
  36440. height: math.unit(4 + 10/12, "feet"),
  36441. weight: math.unit(160, "lb"),
  36442. name: "Front",
  36443. image: {
  36444. source: "./media/characters/chip-mouse/front.svg",
  36445. extra: 3528/3408,
  36446. bottom: 0/3528
  36447. }
  36448. },
  36449. frontNsfw: {
  36450. height: math.unit(4 + 10/12, "feet"),
  36451. weight: math.unit(160, "lb"),
  36452. name: "Front (NSFW)",
  36453. image: {
  36454. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36455. extra: 3528/3408,
  36456. bottom: 0/3528
  36457. }
  36458. },
  36459. },
  36460. [
  36461. {
  36462. name: "Normal",
  36463. height: math.unit(4 + 10/12, "feet"),
  36464. default: true
  36465. },
  36466. ]
  36467. ))
  36468. characterMakers.push(() => makeCharacter(
  36469. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36470. {
  36471. side: {
  36472. height: math.unit(10, "feet"),
  36473. weight: math.unit(14000, "lb"),
  36474. name: "Side",
  36475. image: {
  36476. source: "./media/characters/kremm/side.svg",
  36477. extra: 1390/1053,
  36478. bottom: 90/1480
  36479. }
  36480. },
  36481. gut: {
  36482. height: math.unit(5.8, "feet"),
  36483. name: "Gut",
  36484. image: {
  36485. source: "./media/characters/kremm/gut.svg"
  36486. }
  36487. },
  36488. ass: {
  36489. height: math.unit(6.1, "feet"),
  36490. name: "Ass",
  36491. image: {
  36492. source: "./media/characters/kremm/ass.svg"
  36493. }
  36494. },
  36495. jaws: {
  36496. height: math.unit(2.2, "feet"),
  36497. name: "Jaws",
  36498. image: {
  36499. source: "./media/characters/kremm/jaws.svg"
  36500. }
  36501. },
  36502. dick: {
  36503. height: math.unit(4.26, "feet"),
  36504. name: "Dick",
  36505. image: {
  36506. source: "./media/characters/kremm/dick.svg"
  36507. }
  36508. },
  36509. },
  36510. [
  36511. {
  36512. name: "Normal",
  36513. height: math.unit(10, "feet"),
  36514. default: true
  36515. },
  36516. ]
  36517. ))
  36518. characterMakers.push(() => makeCharacter(
  36519. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36520. {
  36521. front: {
  36522. height: math.unit(30, "stories"),
  36523. name: "Front",
  36524. image: {
  36525. source: "./media/characters/kai/front.svg",
  36526. extra: 1892/1718,
  36527. bottom: 162/2054
  36528. }
  36529. },
  36530. },
  36531. [
  36532. {
  36533. name: "Macro",
  36534. height: math.unit(30, "stories"),
  36535. default: true
  36536. },
  36537. ]
  36538. ))
  36539. characterMakers.push(() => makeCharacter(
  36540. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36541. {
  36542. front: {
  36543. height: math.unit(6 + 4/12, "feet"),
  36544. weight: math.unit(145, "lb"),
  36545. name: "Front",
  36546. image: {
  36547. source: "./media/characters/sykes/front.svg",
  36548. extra: 1321 / 1187,
  36549. bottom: 66 / 1387
  36550. }
  36551. },
  36552. back: {
  36553. height: math.unit(6 + 4/12, "feet"),
  36554. weight: math.unit(145, "lb"),
  36555. name: "Back",
  36556. image: {
  36557. source: "./media/characters/sykes/back.svg",
  36558. extra: 1326/1181,
  36559. bottom: 31/1357
  36560. }
  36561. },
  36562. traditionalOutfit: {
  36563. height: math.unit(6 + 4/12, "feet"),
  36564. weight: math.unit(145, "lb"),
  36565. name: "Traditional Outfit",
  36566. image: {
  36567. source: "./media/characters/sykes/traditional-outfit.svg",
  36568. extra: 1321 / 1187,
  36569. bottom: 66 / 1387
  36570. }
  36571. },
  36572. adventureOutfit: {
  36573. height: math.unit(6 + 4/12, "feet"),
  36574. weight: math.unit(145, "lb"),
  36575. name: "Adventure Outfit",
  36576. image: {
  36577. source: "./media/characters/sykes/adventure-outfit.svg",
  36578. extra: 1321 / 1187,
  36579. bottom: 66 / 1387
  36580. }
  36581. },
  36582. handLeft: {
  36583. height: math.unit(0.9, "feet"),
  36584. name: "Hand (Left)",
  36585. image: {
  36586. source: "./media/characters/sykes/hand-left.svg"
  36587. }
  36588. },
  36589. handRight: {
  36590. height: math.unit(0.839, "feet"),
  36591. name: "Hand (Right)",
  36592. image: {
  36593. source: "./media/characters/sykes/hand-right.svg"
  36594. }
  36595. },
  36596. leftFoot: {
  36597. height: math.unit(1.2, "feet"),
  36598. name: "Foot (Left)",
  36599. image: {
  36600. source: "./media/characters/sykes/foot-left.svg"
  36601. }
  36602. },
  36603. rightFoot: {
  36604. height: math.unit(1.2, "feet"),
  36605. name: "Foot (Right)",
  36606. image: {
  36607. source: "./media/characters/sykes/foot-right.svg"
  36608. }
  36609. },
  36610. maw: {
  36611. height: math.unit(1.93, "feet"),
  36612. name: "Maw",
  36613. image: {
  36614. source: "./media/characters/sykes/maw.svg"
  36615. }
  36616. },
  36617. teeth: {
  36618. height: math.unit(0.51, "feet"),
  36619. name: "Teeth",
  36620. image: {
  36621. source: "./media/characters/sykes/teeth.svg"
  36622. }
  36623. },
  36624. tongue: {
  36625. height: math.unit(2.13, "feet"),
  36626. name: "Tongue",
  36627. image: {
  36628. source: "./media/characters/sykes/tongue.svg"
  36629. }
  36630. },
  36631. uvula: {
  36632. height: math.unit(0.16, "feet"),
  36633. name: "Uvula",
  36634. image: {
  36635. source: "./media/characters/sykes/uvula.svg"
  36636. }
  36637. },
  36638. collar: {
  36639. height: math.unit(0.287, "feet"),
  36640. name: "Collar",
  36641. image: {
  36642. source: "./media/characters/sykes/collar.svg"
  36643. }
  36644. },
  36645. tail: {
  36646. height: math.unit(3.8, "feet"),
  36647. name: "Tail",
  36648. image: {
  36649. source: "./media/characters/sykes/tail.svg"
  36650. }
  36651. },
  36652. },
  36653. [
  36654. {
  36655. name: "Shrunken",
  36656. height: math.unit(5, "inches")
  36657. },
  36658. {
  36659. name: "Normal",
  36660. height: math.unit(6 + 4 / 12, "feet"),
  36661. default: true
  36662. },
  36663. {
  36664. name: "Big",
  36665. height: math.unit(15, "feet")
  36666. },
  36667. ]
  36668. ))
  36669. characterMakers.push(() => makeCharacter(
  36670. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36671. {
  36672. front: {
  36673. height: math.unit(5 + 8/12, "feet"),
  36674. weight: math.unit(190, "lb"),
  36675. name: "Front",
  36676. image: {
  36677. source: "./media/characters/oven-otter/front.svg",
  36678. extra: 1809/1740,
  36679. bottom: 181/1990
  36680. }
  36681. },
  36682. back: {
  36683. height: math.unit(5 + 8/12, "feet"),
  36684. weight: math.unit(190, "lb"),
  36685. name: "Back",
  36686. image: {
  36687. source: "./media/characters/oven-otter/back.svg",
  36688. extra: 1709/1635,
  36689. bottom: 118/1827
  36690. }
  36691. },
  36692. hand: {
  36693. height: math.unit(1.07, "feet"),
  36694. name: "Hand",
  36695. image: {
  36696. source: "./media/characters/oven-otter/hand.svg"
  36697. }
  36698. },
  36699. beans: {
  36700. height: math.unit(1.74, "feet"),
  36701. name: "Beans",
  36702. image: {
  36703. source: "./media/characters/oven-otter/beans.svg"
  36704. }
  36705. },
  36706. },
  36707. [
  36708. {
  36709. name: "Micro",
  36710. height: math.unit(0.5, "inches")
  36711. },
  36712. {
  36713. name: "Normal",
  36714. height: math.unit(5 + 8/12, "feet"),
  36715. default: true
  36716. },
  36717. {
  36718. name: "Macro",
  36719. height: math.unit(250, "feet")
  36720. },
  36721. {
  36722. name: "Really High",
  36723. height: math.unit(420, "feet")
  36724. },
  36725. ]
  36726. ))
  36727. characterMakers.push(() => makeCharacter(
  36728. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36729. {
  36730. front: {
  36731. height: math.unit(5, "meters"),
  36732. weight: math.unit(292000000000000, "kg"),
  36733. name: "Front",
  36734. image: {
  36735. source: "./media/characters/devourer/front.svg",
  36736. extra: 1800/1733,
  36737. bottom: 211/2011
  36738. }
  36739. },
  36740. maw: {
  36741. height: math.unit(1.1, "meter"),
  36742. name: "Maw",
  36743. image: {
  36744. source: "./media/characters/devourer/maw.svg"
  36745. }
  36746. },
  36747. },
  36748. [
  36749. {
  36750. name: "Small",
  36751. height: math.unit(3, "meters")
  36752. },
  36753. {
  36754. name: "Large",
  36755. height: math.unit(5, "meters"),
  36756. default: true
  36757. },
  36758. ]
  36759. ))
  36760. characterMakers.push(() => makeCharacter(
  36761. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36762. {
  36763. front: {
  36764. height: math.unit(6, "feet"),
  36765. weight: math.unit(400, "lb"),
  36766. name: "Front",
  36767. image: {
  36768. source: "./media/characters/ellarby/front.svg",
  36769. extra: 1909/1763,
  36770. bottom: 80/1989
  36771. }
  36772. },
  36773. back: {
  36774. height: math.unit(6, "feet"),
  36775. weight: math.unit(400, "lb"),
  36776. name: "Back",
  36777. image: {
  36778. source: "./media/characters/ellarby/back.svg",
  36779. extra: 1914/1784,
  36780. bottom: 172/2086
  36781. }
  36782. },
  36783. },
  36784. [
  36785. {
  36786. name: "Mischief",
  36787. height: math.unit(18, "inches")
  36788. },
  36789. {
  36790. name: "Trouble",
  36791. height: math.unit(12, "feet")
  36792. },
  36793. {
  36794. name: "Havoc",
  36795. height: math.unit(200, "feet"),
  36796. default: true
  36797. },
  36798. {
  36799. name: "Pandemonium",
  36800. height: math.unit(1, "mile")
  36801. },
  36802. {
  36803. name: "Catastrophe",
  36804. height: math.unit(100, "miles")
  36805. },
  36806. ]
  36807. ))
  36808. characterMakers.push(() => makeCharacter(
  36809. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36810. {
  36811. front: {
  36812. height: math.unit(4.7, "meters"),
  36813. weight: math.unit(6500, "kg"),
  36814. name: "Front",
  36815. image: {
  36816. source: "./media/characters/vex/front.svg",
  36817. extra: 1288/1140,
  36818. bottom: 100/1388
  36819. }
  36820. },
  36821. },
  36822. [
  36823. {
  36824. name: "Normal",
  36825. height: math.unit(4.7, "meters"),
  36826. default: true
  36827. },
  36828. ]
  36829. ))
  36830. characterMakers.push(() => makeCharacter(
  36831. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36832. {
  36833. normal: {
  36834. height: math.unit(6, "feet"),
  36835. weight: math.unit(350, "lb"),
  36836. name: "Normal",
  36837. image: {
  36838. source: "./media/characters/teshy/normal.svg",
  36839. extra: 1795/1735,
  36840. bottom: 16/1811
  36841. }
  36842. },
  36843. monsterFront: {
  36844. height: math.unit(12, "feet"),
  36845. weight: math.unit(4700, "lb"),
  36846. name: "Monster (Front)",
  36847. image: {
  36848. source: "./media/characters/teshy/monster-front.svg",
  36849. extra: 2042/2034,
  36850. bottom: 128/2170
  36851. }
  36852. },
  36853. monsterSide: {
  36854. height: math.unit(12, "feet"),
  36855. weight: math.unit(4700, "lb"),
  36856. name: "Monster (Side)",
  36857. image: {
  36858. source: "./media/characters/teshy/monster-side.svg",
  36859. extra: 2067/2056,
  36860. bottom: 70/2137
  36861. }
  36862. },
  36863. monsterBack: {
  36864. height: math.unit(12, "feet"),
  36865. weight: math.unit(4700, "lb"),
  36866. name: "Monster (Back)",
  36867. image: {
  36868. source: "./media/characters/teshy/monster-back.svg",
  36869. extra: 1921/1914,
  36870. bottom: 171/2092
  36871. }
  36872. },
  36873. },
  36874. [
  36875. {
  36876. name: "Normal",
  36877. height: math.unit(6, "feet"),
  36878. default: true
  36879. },
  36880. ]
  36881. ))
  36882. characterMakers.push(() => makeCharacter(
  36883. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36884. {
  36885. front: {
  36886. height: math.unit(6, "feet"),
  36887. name: "Front",
  36888. image: {
  36889. source: "./media/characters/ramey/front.svg",
  36890. extra: 790/787,
  36891. bottom: 27/817
  36892. }
  36893. },
  36894. },
  36895. [
  36896. {
  36897. name: "Normal",
  36898. height: math.unit(6, "feet"),
  36899. default: true
  36900. },
  36901. ]
  36902. ))
  36903. characterMakers.push(() => makeCharacter(
  36904. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36905. {
  36906. front: {
  36907. height: math.unit(5 + 5/12, "feet"),
  36908. weight: math.unit(120, "lb"),
  36909. name: "Front",
  36910. image: {
  36911. source: "./media/characters/phirae/front.svg",
  36912. extra: 2491/2436,
  36913. bottom: 38/2529
  36914. }
  36915. },
  36916. },
  36917. [
  36918. {
  36919. name: "Normal",
  36920. height: math.unit(5 + 5/12, "feet"),
  36921. default: true
  36922. },
  36923. ]
  36924. ))
  36925. characterMakers.push(() => makeCharacter(
  36926. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36927. {
  36928. front: {
  36929. height: math.unit(5 + 3/12, "feet"),
  36930. name: "Front",
  36931. image: {
  36932. source: "./media/characters/stagglas/front.svg",
  36933. extra: 962/882,
  36934. bottom: 53/1015
  36935. }
  36936. },
  36937. feral: {
  36938. height: math.unit(335, "cm"),
  36939. name: "Feral",
  36940. image: {
  36941. source: "./media/characters/stagglas/feral.svg",
  36942. extra: 1732/1090,
  36943. bottom: 48/1780
  36944. }
  36945. },
  36946. },
  36947. [
  36948. {
  36949. name: "Normal",
  36950. height: math.unit(5 + 3/12, "feet"),
  36951. default: true
  36952. },
  36953. ]
  36954. ))
  36955. characterMakers.push(() => makeCharacter(
  36956. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36957. {
  36958. front: {
  36959. height: math.unit(5 + 4/12, "feet"),
  36960. weight: math.unit(145, "lb"),
  36961. name: "Front",
  36962. image: {
  36963. source: "./media/characters/starra/front.svg",
  36964. extra: 1790/1691,
  36965. bottom: 91/1881
  36966. }
  36967. },
  36968. },
  36969. [
  36970. {
  36971. name: "Normal",
  36972. height: math.unit(5 + 4/12, "feet"),
  36973. default: true
  36974. },
  36975. ]
  36976. ))
  36977. characterMakers.push(() => makeCharacter(
  36978. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36979. {
  36980. front: {
  36981. height: math.unit(3.5, "meters"),
  36982. name: "Front",
  36983. image: {
  36984. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36985. extra: 1248/972,
  36986. bottom: 38/1286
  36987. }
  36988. },
  36989. },
  36990. [
  36991. {
  36992. name: "Normal",
  36993. height: math.unit(3.5, "meters"),
  36994. default: true
  36995. },
  36996. ]
  36997. ))
  36998. characterMakers.push(() => makeCharacter(
  36999. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37000. {
  37001. side: {
  37002. height: math.unit(8 + 2/12, "feet"),
  37003. weight: math.unit(1240, "lb"),
  37004. name: "Side",
  37005. image: {
  37006. source: "./media/characters/mika-valentine/side.svg",
  37007. extra: 2670/2501,
  37008. bottom: 250/2920
  37009. }
  37010. },
  37011. },
  37012. [
  37013. {
  37014. name: "Normal",
  37015. height: math.unit(8 + 2/12, "feet"),
  37016. default: true
  37017. },
  37018. ]
  37019. ))
  37020. characterMakers.push(() => makeCharacter(
  37021. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37022. {
  37023. front: {
  37024. height: math.unit(7 + 2/12, "feet"),
  37025. name: "Front",
  37026. image: {
  37027. source: "./media/characters/xoltol/front.svg",
  37028. extra: 2212/2124,
  37029. bottom: 84/2296
  37030. }
  37031. },
  37032. side: {
  37033. height: math.unit(7 + 2/12, "feet"),
  37034. name: "Side",
  37035. image: {
  37036. source: "./media/characters/xoltol/side.svg",
  37037. extra: 2273/2197,
  37038. bottom: 26/2299
  37039. }
  37040. },
  37041. hand: {
  37042. height: math.unit(2.5, "feet"),
  37043. name: "Hand",
  37044. image: {
  37045. source: "./media/characters/xoltol/hand.svg"
  37046. }
  37047. },
  37048. },
  37049. [
  37050. {
  37051. name: "Small-ish",
  37052. height: math.unit(5 + 11/12, "feet")
  37053. },
  37054. {
  37055. name: "Normal",
  37056. height: math.unit(7 + 2/12, "feet")
  37057. },
  37058. {
  37059. name: "\"Macro\"",
  37060. height: math.unit(14 + 9/12, "feet"),
  37061. default: true
  37062. },
  37063. {
  37064. name: "Alternate Height",
  37065. height: math.unit(20, "feet")
  37066. },
  37067. {
  37068. name: "Actually Macro",
  37069. height: math.unit(100, "feet")
  37070. },
  37071. ]
  37072. ))
  37073. characterMakers.push(() => makeCharacter(
  37074. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37075. {
  37076. front: {
  37077. height: math.unit(5 + 2/12, "feet"),
  37078. weight: math.unit(75, "kg"),
  37079. name: "Front",
  37080. image: {
  37081. source: "./media/characters/kotetsu-redwood/front.svg",
  37082. extra: 1053/942,
  37083. bottom: 60/1113
  37084. }
  37085. },
  37086. },
  37087. [
  37088. {
  37089. name: "Normal",
  37090. height: math.unit(5 + 2/12, "feet"),
  37091. default: true
  37092. },
  37093. ]
  37094. ))
  37095. characterMakers.push(() => makeCharacter(
  37096. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37097. {
  37098. front: {
  37099. height: math.unit(2.4, "meters"),
  37100. weight: math.unit(125, "kg"),
  37101. name: "Front",
  37102. image: {
  37103. source: "./media/characters/lilith/front.svg",
  37104. extra: 1590/1513,
  37105. bottom: 203/1793
  37106. }
  37107. },
  37108. },
  37109. [
  37110. {
  37111. name: "Humanoid",
  37112. height: math.unit(2.4, "meters")
  37113. },
  37114. {
  37115. name: "Normal",
  37116. height: math.unit(6, "meters"),
  37117. default: true
  37118. },
  37119. {
  37120. name: "Largest",
  37121. height: math.unit(55, "meters")
  37122. },
  37123. ]
  37124. ))
  37125. characterMakers.push(() => makeCharacter(
  37126. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37127. {
  37128. front: {
  37129. height: math.unit(8 + 4/12, "feet"),
  37130. weight: math.unit(535, "lb"),
  37131. name: "Front",
  37132. image: {
  37133. source: "./media/characters/beh'kah-bolger/front.svg",
  37134. extra: 1660/1603,
  37135. bottom: 37/1697
  37136. }
  37137. },
  37138. },
  37139. [
  37140. {
  37141. name: "Normal",
  37142. height: math.unit(8 + 4/12, "feet"),
  37143. default: true
  37144. },
  37145. {
  37146. name: "Kaiju",
  37147. height: math.unit(250, "feet")
  37148. },
  37149. {
  37150. name: "Still Growing",
  37151. height: math.unit(10, "miles")
  37152. },
  37153. {
  37154. name: "Continental",
  37155. height: math.unit(5000, "miles")
  37156. },
  37157. {
  37158. name: "Final Form",
  37159. height: math.unit(2500000, "miles")
  37160. },
  37161. ]
  37162. ))
  37163. characterMakers.push(() => makeCharacter(
  37164. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37165. {
  37166. front: {
  37167. height: math.unit(7 + 2/12, "feet"),
  37168. weight: math.unit(230, "kg"),
  37169. name: "Front",
  37170. image: {
  37171. source: "./media/characters/tatyana-milewska/front.svg",
  37172. extra: 1199/1150,
  37173. bottom: 86/1285
  37174. }
  37175. },
  37176. },
  37177. [
  37178. {
  37179. name: "Normal",
  37180. height: math.unit(7 + 2/12, "feet"),
  37181. default: true
  37182. },
  37183. {
  37184. name: "Big",
  37185. height: math.unit(12, "feet")
  37186. },
  37187. {
  37188. name: "Minimacro",
  37189. height: math.unit(20, "feet")
  37190. },
  37191. {
  37192. name: "Macro",
  37193. height: math.unit(120, "feet")
  37194. },
  37195. ]
  37196. ))
  37197. characterMakers.push(() => makeCharacter(
  37198. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37199. {
  37200. front: {
  37201. height: math.unit(7 + 8/12, "feet"),
  37202. weight: math.unit(152, "kg"),
  37203. name: "Front",
  37204. image: {
  37205. source: "./media/characters/helen-arri/front.svg",
  37206. extra: 440/423,
  37207. bottom: 14/454
  37208. }
  37209. },
  37210. back: {
  37211. height: math.unit(7 + 8/12, "feet"),
  37212. weight: math.unit(152, "kg"),
  37213. name: "Back",
  37214. image: {
  37215. source: "./media/characters/helen-arri/back.svg",
  37216. extra: 443/426,
  37217. bottom: 8/451
  37218. }
  37219. },
  37220. },
  37221. [
  37222. {
  37223. name: "Normal",
  37224. height: math.unit(7 + 8/12, "feet"),
  37225. default: true
  37226. },
  37227. {
  37228. name: "Big",
  37229. height: math.unit(14, "feet")
  37230. },
  37231. {
  37232. name: "Minimacro",
  37233. height: math.unit(24, "feet")
  37234. },
  37235. {
  37236. name: "Macro",
  37237. height: math.unit(140, "feet")
  37238. },
  37239. ]
  37240. ))
  37241. characterMakers.push(() => makeCharacter(
  37242. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37243. {
  37244. front: {
  37245. height: math.unit(6, "meters"),
  37246. name: "Front",
  37247. image: {
  37248. source: "./media/characters/ehanu-rehu/front.svg",
  37249. extra: 1800/1800,
  37250. bottom: 59/1859
  37251. }
  37252. },
  37253. },
  37254. [
  37255. {
  37256. name: "Normal",
  37257. height: math.unit(6, "meters"),
  37258. default: true
  37259. },
  37260. ]
  37261. ))
  37262. characterMakers.push(() => makeCharacter(
  37263. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37264. {
  37265. front: {
  37266. height: math.unit(7 + 3/12, "feet"),
  37267. name: "Front",
  37268. image: {
  37269. source: "./media/characters/renholder/front.svg",
  37270. extra: 3096/2960,
  37271. bottom: 250/3346
  37272. }
  37273. },
  37274. },
  37275. [
  37276. {
  37277. name: "Normal Bat",
  37278. height: math.unit(7 + 3/12, "feet"),
  37279. default: true
  37280. },
  37281. {
  37282. name: "Slightly Tall Bat",
  37283. height: math.unit(100, "feet")
  37284. },
  37285. {
  37286. name: "Big Bat",
  37287. height: math.unit(1000, "feet")
  37288. },
  37289. {
  37290. name: "City-Sized Bat",
  37291. height: math.unit(200000, "feet")
  37292. },
  37293. {
  37294. name: "Bigger Bat",
  37295. height: math.unit(10000, "miles")
  37296. },
  37297. {
  37298. name: "Solar Sized Bat",
  37299. height: math.unit(100, "AU")
  37300. },
  37301. {
  37302. name: "Galactic Bat",
  37303. height: math.unit(200000, "lightyears")
  37304. },
  37305. {
  37306. name: "Universally Known Bat",
  37307. height: math.unit(1, "universe")
  37308. },
  37309. ]
  37310. ))
  37311. characterMakers.push(() => makeCharacter(
  37312. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37313. {
  37314. front: {
  37315. height: math.unit(6 + 11/12, "feet"),
  37316. weight: math.unit(250, "lb"),
  37317. name: "Front",
  37318. image: {
  37319. source: "./media/characters/cookiecat/front.svg",
  37320. extra: 893/827,
  37321. bottom: 14/907
  37322. }
  37323. },
  37324. },
  37325. [
  37326. {
  37327. name: "Micro",
  37328. height: math.unit(3, "inches")
  37329. },
  37330. {
  37331. name: "Normal",
  37332. height: math.unit(6 + 11/12, "feet"),
  37333. default: true
  37334. },
  37335. {
  37336. name: "Macro",
  37337. height: math.unit(100, "feet")
  37338. },
  37339. {
  37340. name: "Macro+",
  37341. height: math.unit(404, "feet")
  37342. },
  37343. {
  37344. name: "Megamacro",
  37345. height: math.unit(165, "miles")
  37346. },
  37347. {
  37348. name: "Planetary",
  37349. height: math.unit(4600, "miles")
  37350. },
  37351. ]
  37352. ))
  37353. characterMakers.push(() => makeCharacter(
  37354. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37355. {
  37356. front: {
  37357. height: math.unit(10 + 3/12, "feet"),
  37358. weight: math.unit(1500, "lb"),
  37359. name: "Front",
  37360. image: {
  37361. source: "./media/characters/tux-kusanagi/front.svg",
  37362. extra: 944/840,
  37363. bottom: 39/983
  37364. }
  37365. },
  37366. back: {
  37367. height: math.unit(10 + 3/12, "feet"),
  37368. weight: math.unit(1500, "lb"),
  37369. name: "Back",
  37370. image: {
  37371. source: "./media/characters/tux-kusanagi/back.svg",
  37372. extra: 941/842,
  37373. bottom: 28/969
  37374. }
  37375. },
  37376. rump: {
  37377. height: math.unit(5.25, "feet"),
  37378. name: "Rump",
  37379. image: {
  37380. source: "./media/characters/tux-kusanagi/rump.svg"
  37381. }
  37382. },
  37383. beak: {
  37384. height: math.unit(1.54, "feet"),
  37385. name: "Beak",
  37386. image: {
  37387. source: "./media/characters/tux-kusanagi/beak.svg"
  37388. }
  37389. },
  37390. },
  37391. [
  37392. {
  37393. name: "Normal",
  37394. height: math.unit(10 + 3/12, "feet"),
  37395. default: true
  37396. },
  37397. ]
  37398. ))
  37399. characterMakers.push(() => makeCharacter(
  37400. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37401. {
  37402. front: {
  37403. height: math.unit(58, "feet"),
  37404. weight: math.unit(200, "tons"),
  37405. name: "Front",
  37406. image: {
  37407. source: "./media/characters/uzarmazari/front.svg",
  37408. extra: 1575/1455,
  37409. bottom: 152/1727
  37410. }
  37411. },
  37412. back: {
  37413. height: math.unit(58, "feet"),
  37414. weight: math.unit(200, "tons"),
  37415. name: "Back",
  37416. image: {
  37417. source: "./media/characters/uzarmazari/back.svg",
  37418. extra: 1585/1510,
  37419. bottom: 157/1742
  37420. }
  37421. },
  37422. head: {
  37423. height: math.unit(26, "feet"),
  37424. name: "Head",
  37425. image: {
  37426. source: "./media/characters/uzarmazari/head.svg"
  37427. }
  37428. },
  37429. },
  37430. [
  37431. {
  37432. name: "Normal",
  37433. height: math.unit(58, "feet"),
  37434. default: true
  37435. },
  37436. ]
  37437. ))
  37438. characterMakers.push(() => makeCharacter(
  37439. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37440. {
  37441. side: {
  37442. height: math.unit(15, "feet"),
  37443. name: "Side",
  37444. image: {
  37445. source: "./media/characters/akitu/side.svg",
  37446. extra: 1421/1321,
  37447. bottom: 157/1578
  37448. }
  37449. },
  37450. front: {
  37451. height: math.unit(15, "feet"),
  37452. name: "Front",
  37453. image: {
  37454. source: "./media/characters/akitu/front.svg",
  37455. extra: 1435/1326,
  37456. bottom: 232/1667
  37457. }
  37458. },
  37459. },
  37460. [
  37461. {
  37462. name: "Normal",
  37463. height: math.unit(15, "feet"),
  37464. default: true
  37465. },
  37466. ]
  37467. ))
  37468. characterMakers.push(() => makeCharacter(
  37469. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37470. {
  37471. front: {
  37472. height: math.unit(10 + 8/12, "feet"),
  37473. name: "Front",
  37474. image: {
  37475. source: "./media/characters/azalie-croixland/front.svg",
  37476. extra: 1972/1856,
  37477. bottom: 31/2003
  37478. }
  37479. },
  37480. },
  37481. [
  37482. {
  37483. name: "Original Height",
  37484. height: math.unit(5 + 4/12, "feet")
  37485. },
  37486. {
  37487. name: "Normal Height",
  37488. height: math.unit(10 + 8/12, "feet"),
  37489. default: true
  37490. },
  37491. ]
  37492. ))
  37493. characterMakers.push(() => makeCharacter(
  37494. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37495. {
  37496. side: {
  37497. height: math.unit(7 + 1/12, "feet"),
  37498. weight: math.unit(245, "lb"),
  37499. name: "Side",
  37500. image: {
  37501. source: "./media/characters/kavus-kazian/side.svg",
  37502. extra: 349/342,
  37503. bottom: 15/364
  37504. }
  37505. },
  37506. },
  37507. [
  37508. {
  37509. name: "Normal",
  37510. height: math.unit(7 + 1/12, "feet"),
  37511. default: true
  37512. },
  37513. ]
  37514. ))
  37515. characterMakers.push(() => makeCharacter(
  37516. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37517. {
  37518. normalFront: {
  37519. height: math.unit(5 + 11/12, "feet"),
  37520. name: "Front",
  37521. image: {
  37522. source: "./media/characters/moonlight-rose/normal-front.svg",
  37523. extra: 1980/1825,
  37524. bottom: 18/1998
  37525. },
  37526. form: "normal",
  37527. default: true
  37528. },
  37529. normalBack: {
  37530. height: math.unit(5 + 11/12, "feet"),
  37531. name: "Back",
  37532. image: {
  37533. source: "./media/characters/moonlight-rose/normal-back.svg",
  37534. extra: 2010/1839,
  37535. bottom: 10/2020
  37536. },
  37537. form: "normal"
  37538. },
  37539. demonFront: {
  37540. height: math.unit(1.5, "earths"),
  37541. name: "Front",
  37542. image: {
  37543. source: "./media/characters/moonlight-rose/demon.svg",
  37544. extra: 1400/1294,
  37545. bottom: 45/1445
  37546. },
  37547. form: "demon",
  37548. default: true
  37549. },
  37550. terraFront: {
  37551. height: math.unit(1.5, "earths"),
  37552. name: "Front",
  37553. image: {
  37554. source: "./media/characters/moonlight-rose/terra.svg"
  37555. },
  37556. form: "terra",
  37557. default: true
  37558. },
  37559. jupiterFront: {
  37560. height: math.unit(69911*2, "km"),
  37561. name: "Front",
  37562. image: {
  37563. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37564. extra: 1367/1286,
  37565. bottom: 55/1422
  37566. },
  37567. form: "jupiter",
  37568. default: true
  37569. },
  37570. neptuneFront: {
  37571. height: math.unit(24622*2, "feet"),
  37572. name: "Front",
  37573. image: {
  37574. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37575. extra: 1851/1712,
  37576. bottom: 0/1851
  37577. },
  37578. form: "neptune",
  37579. default: true
  37580. },
  37581. },
  37582. [
  37583. {
  37584. name: "\"Natural\" Height",
  37585. height: math.unit(5 + 11/12, "feet"),
  37586. form: "normal"
  37587. },
  37588. {
  37589. name: "Smallest comfortable size",
  37590. height: math.unit(40, "meters"),
  37591. form: "normal"
  37592. },
  37593. {
  37594. name: "Common size",
  37595. height: math.unit(50, "km"),
  37596. form: "normal",
  37597. default: true
  37598. },
  37599. {
  37600. name: "Normal",
  37601. height: math.unit(1.5, "earths"),
  37602. form: "demon",
  37603. default: true
  37604. },
  37605. {
  37606. name: "Universal",
  37607. height: math.unit(15, "universes"),
  37608. form: "demon"
  37609. },
  37610. {
  37611. name: "Earth",
  37612. height: math.unit(1.5, "earths"),
  37613. form: "terra",
  37614. default: true
  37615. },
  37616. {
  37617. name: "Super Earth",
  37618. height: math.unit(67.5, "earths"),
  37619. form: "terra"
  37620. },
  37621. {
  37622. name: "Doesn't fit in a solar system...",
  37623. height: math.unit(1, "galaxy"),
  37624. form: "terra"
  37625. },
  37626. {
  37627. name: "Saturn",
  37628. height: math.unit(58232*2, "km"),
  37629. form: "jupiter"
  37630. },
  37631. {
  37632. name: "Jupiter",
  37633. height: math.unit(69911*2, "km"),
  37634. form: "jupiter",
  37635. default: true
  37636. },
  37637. {
  37638. name: "HD 100546 b",
  37639. height: math.unit(482938, "km"),
  37640. form: "jupiter"
  37641. },
  37642. {
  37643. name: "Enceladus",
  37644. height: math.unit(513*2, "km"),
  37645. form: "neptune"
  37646. },
  37647. {
  37648. name: "Europe",
  37649. height: math.unit(1560*2, "km"),
  37650. form: "neptune"
  37651. },
  37652. {
  37653. name: "Neptune",
  37654. height: math.unit(24622*2, "km"),
  37655. form: "neptune",
  37656. default: true
  37657. },
  37658. {
  37659. name: "CoRoT-9b",
  37660. height: math.unit(75067*2, "km"),
  37661. form: "neptune"
  37662. },
  37663. ],
  37664. {
  37665. "normal": {
  37666. name: "Normal",
  37667. default: true
  37668. },
  37669. "demon": {
  37670. name: "Demon"
  37671. },
  37672. "terra": {
  37673. name: "Terra"
  37674. },
  37675. "jupiter": {
  37676. name: "Jupiter"
  37677. },
  37678. "neptune": {
  37679. name: "Neptune"
  37680. }
  37681. }
  37682. ))
  37683. characterMakers.push(() => makeCharacter(
  37684. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37685. {
  37686. front: {
  37687. height: math.unit(16, "feet"),
  37688. weight: math.unit(610, "kg"),
  37689. name: "Front",
  37690. image: {
  37691. source: "./media/characters/huckle/front.svg",
  37692. extra: 1731/1625,
  37693. bottom: 33/1764
  37694. }
  37695. },
  37696. back: {
  37697. height: math.unit(16, "feet"),
  37698. weight: math.unit(610, "kg"),
  37699. name: "Back",
  37700. image: {
  37701. source: "./media/characters/huckle/back.svg",
  37702. extra: 1738/1651,
  37703. bottom: 37/1775
  37704. }
  37705. },
  37706. laughing: {
  37707. height: math.unit(3.75, "feet"),
  37708. name: "Laughing",
  37709. image: {
  37710. source: "./media/characters/huckle/laughing.svg"
  37711. }
  37712. },
  37713. angry: {
  37714. height: math.unit(4.15, "feet"),
  37715. name: "Angry",
  37716. image: {
  37717. source: "./media/characters/huckle/angry.svg"
  37718. }
  37719. },
  37720. },
  37721. [
  37722. {
  37723. name: "Normal",
  37724. height: math.unit(16, "feet"),
  37725. default: true
  37726. },
  37727. {
  37728. name: "Mini Macro",
  37729. height: math.unit(463, "feet")
  37730. },
  37731. {
  37732. name: "Macro",
  37733. height: math.unit(1680, "meters")
  37734. },
  37735. {
  37736. name: "Mega Macro",
  37737. height: math.unit(175, "km")
  37738. },
  37739. {
  37740. name: "Terra Macro",
  37741. height: math.unit(32, "gigameters")
  37742. },
  37743. {
  37744. name: "Multiverse+",
  37745. height: math.unit(2.56e23, "yottameters")
  37746. },
  37747. ]
  37748. ))
  37749. characterMakers.push(() => makeCharacter(
  37750. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37751. {
  37752. front: {
  37753. height: math.unit(6 + 9/12, "feet"),
  37754. weight: math.unit(280, "lb"),
  37755. name: "Front",
  37756. image: {
  37757. source: "./media/characters/candy/front.svg",
  37758. extra: 234/217,
  37759. bottom: 11/245
  37760. }
  37761. },
  37762. },
  37763. [
  37764. {
  37765. name: "Really Small",
  37766. height: math.unit(0.1, "nm")
  37767. },
  37768. {
  37769. name: "Micro",
  37770. height: math.unit(2, "inches")
  37771. },
  37772. {
  37773. name: "Normal",
  37774. height: math.unit(6 + 9/12, "feet"),
  37775. default: true
  37776. },
  37777. {
  37778. name: "Small Macro",
  37779. height: math.unit(69, "feet")
  37780. },
  37781. {
  37782. name: "Macro",
  37783. height: math.unit(160, "feet")
  37784. },
  37785. {
  37786. name: "Megamacro",
  37787. height: math.unit(22000, "miles")
  37788. },
  37789. {
  37790. name: "Gigamacro",
  37791. height: math.unit(50000, "miles")
  37792. },
  37793. ]
  37794. ))
  37795. characterMakers.push(() => makeCharacter(
  37796. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37797. {
  37798. front: {
  37799. height: math.unit(4, "feet"),
  37800. weight: math.unit(90, "lb"),
  37801. name: "Front",
  37802. image: {
  37803. source: "./media/characters/joey-mcdonald/front.svg",
  37804. extra: 1059/852,
  37805. bottom: 33/1092
  37806. }
  37807. },
  37808. back: {
  37809. height: math.unit(4, "feet"),
  37810. weight: math.unit(90, "lb"),
  37811. name: "Back",
  37812. image: {
  37813. source: "./media/characters/joey-mcdonald/back.svg",
  37814. extra: 1077/879,
  37815. bottom: 5/1082
  37816. }
  37817. },
  37818. frontKobold: {
  37819. height: math.unit(4, "feet"),
  37820. weight: math.unit(100, "lb"),
  37821. name: "Front-kobold",
  37822. image: {
  37823. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37824. extra: 1480/1367,
  37825. bottom: 0/1480
  37826. }
  37827. },
  37828. backKobold: {
  37829. height: math.unit(4, "feet"),
  37830. weight: math.unit(100, "lb"),
  37831. name: "Back-kobold",
  37832. image: {
  37833. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37834. extra: 1449/1361,
  37835. bottom: 0/1449
  37836. }
  37837. },
  37838. },
  37839. [
  37840. {
  37841. name: "Normal",
  37842. height: math.unit(4, "feet"),
  37843. default: true
  37844. },
  37845. ]
  37846. ))
  37847. characterMakers.push(() => makeCharacter(
  37848. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37849. {
  37850. front: {
  37851. height: math.unit(12 + 6/12, "feet"),
  37852. name: "Front",
  37853. image: {
  37854. source: "./media/characters/kass-lockheed/front.svg",
  37855. extra: 354/343,
  37856. bottom: 9/363
  37857. }
  37858. },
  37859. back: {
  37860. height: math.unit(12 + 6/12, "feet"),
  37861. name: "Back",
  37862. image: {
  37863. source: "./media/characters/kass-lockheed/back.svg",
  37864. extra: 364/352,
  37865. bottom: 3/367
  37866. }
  37867. },
  37868. dick: {
  37869. height: math.unit(3.12, "feet"),
  37870. name: "Dick",
  37871. image: {
  37872. source: "./media/characters/kass-lockheed/dick.svg"
  37873. }
  37874. },
  37875. head: {
  37876. height: math.unit(2.6, "feet"),
  37877. name: "Head",
  37878. image: {
  37879. source: "./media/characters/kass-lockheed/head.svg"
  37880. }
  37881. },
  37882. bleh: {
  37883. height: math.unit(2.85, "feet"),
  37884. name: "Bleh",
  37885. image: {
  37886. source: "./media/characters/kass-lockheed/bleh.svg"
  37887. }
  37888. },
  37889. smug: {
  37890. height: math.unit(2.85, "feet"),
  37891. name: "Smug",
  37892. image: {
  37893. source: "./media/characters/kass-lockheed/smug.svg"
  37894. }
  37895. },
  37896. },
  37897. [
  37898. {
  37899. name: "Normal",
  37900. height: math.unit(12 + 6/12, "feet"),
  37901. default: true
  37902. },
  37903. ]
  37904. ))
  37905. characterMakers.push(() => makeCharacter(
  37906. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37907. {
  37908. front: {
  37909. height: math.unit(6 + 2/12, "feet"),
  37910. name: "Front",
  37911. image: {
  37912. source: "./media/characters/taylor/front.svg",
  37913. extra: 639/495,
  37914. bottom: 12/651
  37915. }
  37916. },
  37917. },
  37918. [
  37919. {
  37920. name: "Normal",
  37921. height: math.unit(6 + 2/12, "feet"),
  37922. default: true
  37923. },
  37924. {
  37925. name: "Big",
  37926. height: math.unit(15, "feet")
  37927. },
  37928. {
  37929. name: "Lorg",
  37930. height: math.unit(80, "feet")
  37931. },
  37932. {
  37933. name: "Too Lorg",
  37934. height: math.unit(120, "feet")
  37935. },
  37936. ]
  37937. ))
  37938. characterMakers.push(() => makeCharacter(
  37939. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37940. {
  37941. front: {
  37942. height: math.unit(15, "feet"),
  37943. name: "Front",
  37944. image: {
  37945. source: "./media/characters/kaizer/front.svg",
  37946. extra: 1612/1436,
  37947. bottom: 43/1655
  37948. }
  37949. },
  37950. },
  37951. [
  37952. {
  37953. name: "Normal",
  37954. height: math.unit(15, "feet"),
  37955. default: true
  37956. },
  37957. ]
  37958. ))
  37959. characterMakers.push(() => makeCharacter(
  37960. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37961. {
  37962. front: {
  37963. height: math.unit(2, "feet"),
  37964. weight: math.unit(30, "lb"),
  37965. name: "Front",
  37966. image: {
  37967. source: "./media/characters/sandy/front.svg",
  37968. extra: 1439/1307,
  37969. bottom: 194/1633
  37970. }
  37971. },
  37972. },
  37973. [
  37974. {
  37975. name: "Normal",
  37976. height: math.unit(2, "feet"),
  37977. default: true
  37978. },
  37979. ]
  37980. ))
  37981. characterMakers.push(() => makeCharacter(
  37982. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37983. {
  37984. front: {
  37985. height: math.unit(3, "feet"),
  37986. name: "Front",
  37987. image: {
  37988. source: "./media/characters/mellvi/front.svg",
  37989. extra: 1831/1630,
  37990. bottom: 58/1889
  37991. }
  37992. },
  37993. },
  37994. [
  37995. {
  37996. name: "Normal",
  37997. height: math.unit(3, "feet"),
  37998. default: true
  37999. },
  38000. ]
  38001. ))
  38002. characterMakers.push(() => makeCharacter(
  38003. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38004. {
  38005. front: {
  38006. height: math.unit(5 + 11/12, "feet"),
  38007. weight: math.unit(200, "lb"),
  38008. name: "Front",
  38009. image: {
  38010. source: "./media/characters/shirou/front.svg",
  38011. extra: 2491/2383,
  38012. bottom: 189/2680
  38013. }
  38014. },
  38015. back: {
  38016. height: math.unit(5 + 11/12, "feet"),
  38017. weight: math.unit(200, "lb"),
  38018. name: "Back",
  38019. image: {
  38020. source: "./media/characters/shirou/back.svg",
  38021. extra: 2554/2450,
  38022. bottom: 76/2630
  38023. }
  38024. },
  38025. },
  38026. [
  38027. {
  38028. name: "Normal",
  38029. height: math.unit(5 + 11/12, "feet"),
  38030. default: true
  38031. },
  38032. ]
  38033. ))
  38034. characterMakers.push(() => makeCharacter(
  38035. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38036. {
  38037. front: {
  38038. height: math.unit(6 + 3/12, "feet"),
  38039. weight: math.unit(177, "lb"),
  38040. name: "Front",
  38041. image: {
  38042. source: "./media/characters/noryu/front.svg",
  38043. extra: 973/885,
  38044. bottom: 10/983
  38045. }
  38046. },
  38047. },
  38048. [
  38049. {
  38050. name: "Normal",
  38051. height: math.unit(6 + 3/12, "feet"),
  38052. default: true
  38053. },
  38054. ]
  38055. ))
  38056. characterMakers.push(() => makeCharacter(
  38057. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38058. {
  38059. front: {
  38060. height: math.unit(5 + 6/12, "feet"),
  38061. weight: math.unit(170, "lb"),
  38062. name: "Front",
  38063. image: {
  38064. source: "./media/characters/mevolas-rubenido/front.svg",
  38065. extra: 2109/1901,
  38066. bottom: 96/2205
  38067. }
  38068. },
  38069. },
  38070. [
  38071. {
  38072. name: "Normal",
  38073. height: math.unit(5 + 6/12, "feet"),
  38074. default: true
  38075. },
  38076. ]
  38077. ))
  38078. characterMakers.push(() => makeCharacter(
  38079. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38080. {
  38081. front: {
  38082. height: math.unit(100, "feet"),
  38083. name: "Front",
  38084. image: {
  38085. source: "./media/characters/dee/front.svg",
  38086. extra: 2153/2036,
  38087. bottom: 59/2212
  38088. }
  38089. },
  38090. back: {
  38091. height: math.unit(100, "feet"),
  38092. name: "Back",
  38093. image: {
  38094. source: "./media/characters/dee/back.svg",
  38095. extra: 2183/2058,
  38096. bottom: 75/2258
  38097. }
  38098. },
  38099. foot: {
  38100. height: math.unit(19.43, "feet"),
  38101. name: "Foot",
  38102. image: {
  38103. source: "./media/characters/dee/foot.svg"
  38104. }
  38105. },
  38106. hoof: {
  38107. height: math.unit(20.6, "feet"),
  38108. name: "Hoof",
  38109. image: {
  38110. source: "./media/characters/dee/hoof.svg"
  38111. }
  38112. },
  38113. },
  38114. [
  38115. {
  38116. name: "Macro",
  38117. height: math.unit(100, "feet"),
  38118. default: true
  38119. },
  38120. ]
  38121. ))
  38122. characterMakers.push(() => makeCharacter(
  38123. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38124. {
  38125. front: {
  38126. height: math.unit(5 + 6/12, "feet"),
  38127. name: "Front",
  38128. image: {
  38129. source: "./media/characters/teh/front.svg",
  38130. extra: 1002/847,
  38131. bottom: 62/1064
  38132. }
  38133. },
  38134. },
  38135. [
  38136. {
  38137. name: "Normal",
  38138. height: math.unit(5 + 6/12, "feet"),
  38139. default: true
  38140. },
  38141. ]
  38142. ))
  38143. characterMakers.push(() => makeCharacter(
  38144. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38145. {
  38146. side: {
  38147. height: math.unit(6 + 1/12, "feet"),
  38148. weight: math.unit(204, "lb"),
  38149. name: "Side",
  38150. image: {
  38151. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38152. extra: 974/775,
  38153. bottom: 169/1143
  38154. }
  38155. },
  38156. sitting: {
  38157. height: math.unit(6 + 2/12, "feet"),
  38158. weight: math.unit(204, "lb"),
  38159. name: "Sitting",
  38160. image: {
  38161. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38162. extra: 1175/964,
  38163. bottom: 378/1553
  38164. }
  38165. },
  38166. },
  38167. [
  38168. {
  38169. name: "Normal",
  38170. height: math.unit(6 + 1/12, "feet"),
  38171. default: true
  38172. },
  38173. ]
  38174. ))
  38175. characterMakers.push(() => makeCharacter(
  38176. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38177. {
  38178. front: {
  38179. height: math.unit(6, "inches"),
  38180. name: "Front",
  38181. image: {
  38182. source: "./media/characters/tululi/front.svg",
  38183. extra: 1997/1876,
  38184. bottom: 20/2017
  38185. }
  38186. },
  38187. },
  38188. [
  38189. {
  38190. name: "Normal",
  38191. height: math.unit(6, "inches"),
  38192. default: true
  38193. },
  38194. ]
  38195. ))
  38196. characterMakers.push(() => makeCharacter(
  38197. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38198. {
  38199. front: {
  38200. height: math.unit(4 + 1/12, "feet"),
  38201. name: "Front",
  38202. image: {
  38203. source: "./media/characters/star/front.svg",
  38204. extra: 1493/1189,
  38205. bottom: 48/1541
  38206. }
  38207. },
  38208. },
  38209. [
  38210. {
  38211. name: "Normal",
  38212. height: math.unit(4 + 1/12, "feet"),
  38213. default: true
  38214. },
  38215. ]
  38216. ))
  38217. characterMakers.push(() => makeCharacter(
  38218. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38219. {
  38220. front: {
  38221. height: math.unit(6 + 3/12, "feet"),
  38222. name: "Front",
  38223. image: {
  38224. source: "./media/characters/comet/front.svg",
  38225. extra: 1681/1462,
  38226. bottom: 26/1707
  38227. }
  38228. },
  38229. },
  38230. [
  38231. {
  38232. name: "Normal",
  38233. height: math.unit(6 + 3/12, "feet"),
  38234. default: true
  38235. },
  38236. ]
  38237. ))
  38238. characterMakers.push(() => makeCharacter(
  38239. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38240. {
  38241. front: {
  38242. height: math.unit(950, "feet"),
  38243. name: "Front",
  38244. image: {
  38245. source: "./media/characters/vortex/front.svg",
  38246. extra: 1497/1434,
  38247. bottom: 56/1553
  38248. }
  38249. },
  38250. maw: {
  38251. height: math.unit(285, "feet"),
  38252. name: "Maw",
  38253. image: {
  38254. source: "./media/characters/vortex/maw.svg"
  38255. }
  38256. },
  38257. },
  38258. [
  38259. {
  38260. name: "Macro",
  38261. height: math.unit(950, "feet"),
  38262. default: true
  38263. },
  38264. ]
  38265. ))
  38266. characterMakers.push(() => makeCharacter(
  38267. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38268. {
  38269. front: {
  38270. height: math.unit(600, "feet"),
  38271. weight: math.unit(0.02, "grams"),
  38272. name: "Front",
  38273. image: {
  38274. source: "./media/characters/doodle/front.svg",
  38275. extra: 1578/1413,
  38276. bottom: 37/1615
  38277. }
  38278. },
  38279. },
  38280. [
  38281. {
  38282. name: "Macro",
  38283. height: math.unit(600, "feet"),
  38284. default: true
  38285. },
  38286. ]
  38287. ))
  38288. characterMakers.push(() => makeCharacter(
  38289. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38290. {
  38291. front: {
  38292. height: math.unit(6 + 6/12, "feet"),
  38293. name: "Front",
  38294. image: {
  38295. source: "./media/characters/jai/front.svg",
  38296. extra: 1645/1534,
  38297. bottom: 115/1760
  38298. }
  38299. },
  38300. },
  38301. [
  38302. {
  38303. name: "Normal",
  38304. height: math.unit(6 + 6/12, "feet"),
  38305. default: true
  38306. },
  38307. ]
  38308. ))
  38309. characterMakers.push(() => makeCharacter(
  38310. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38311. {
  38312. front: {
  38313. height: math.unit(6 + 8/12, "feet"),
  38314. name: "Front",
  38315. image: {
  38316. source: "./media/characters/pixel/front.svg",
  38317. extra: 1900/1735,
  38318. bottom: 63/1963
  38319. }
  38320. },
  38321. },
  38322. [
  38323. {
  38324. name: "Normal",
  38325. height: math.unit(6 + 8/12, "feet"),
  38326. default: true
  38327. },
  38328. ]
  38329. ))
  38330. characterMakers.push(() => makeCharacter(
  38331. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38332. {
  38333. back: {
  38334. height: math.unit(4 + 1/12, "feet"),
  38335. weight: math.unit(75, "lb"),
  38336. name: "Back",
  38337. image: {
  38338. source: "./media/characters/rhett/back.svg",
  38339. extra: 930/878,
  38340. bottom: 25/955
  38341. }
  38342. },
  38343. front: {
  38344. height: math.unit(4 + 1/12, "feet"),
  38345. weight: math.unit(75, "lb"),
  38346. name: "Front",
  38347. image: {
  38348. source: "./media/characters/rhett/front.svg",
  38349. extra: 1682/1586,
  38350. bottom: 92/1774
  38351. }
  38352. },
  38353. },
  38354. [
  38355. {
  38356. name: "Micro",
  38357. height: math.unit(8, "inches")
  38358. },
  38359. {
  38360. name: "Tiny",
  38361. height: math.unit(2, "feet")
  38362. },
  38363. {
  38364. name: "Normal",
  38365. height: math.unit(4 + 1/12, "feet"),
  38366. default: true
  38367. },
  38368. ]
  38369. ))
  38370. characterMakers.push(() => makeCharacter(
  38371. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38372. {
  38373. front: {
  38374. height: math.unit(3 + 3/12, "feet"),
  38375. name: "Front",
  38376. image: {
  38377. source: "./media/characters/penny/front.svg",
  38378. extra: 1406/1311,
  38379. bottom: 26/1432
  38380. }
  38381. },
  38382. },
  38383. [
  38384. {
  38385. name: "Normal",
  38386. height: math.unit(3 + 3/12, "feet"),
  38387. default: true
  38388. },
  38389. ]
  38390. ))
  38391. characterMakers.push(() => makeCharacter(
  38392. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38393. {
  38394. front: {
  38395. height: math.unit(4 + 11/12, "feet"),
  38396. name: "Front",
  38397. image: {
  38398. source: "./media/characters/monty/front.svg",
  38399. extra: 1479/1209,
  38400. bottom: 0/1479
  38401. }
  38402. },
  38403. },
  38404. [
  38405. {
  38406. name: "Normal",
  38407. height: math.unit(4 + 11/12, "feet"),
  38408. default: true
  38409. },
  38410. ]
  38411. ))
  38412. characterMakers.push(() => makeCharacter(
  38413. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38414. {
  38415. front: {
  38416. height: math.unit(8 + 4/12, "feet"),
  38417. name: "Front",
  38418. image: {
  38419. source: "./media/characters/sterling/front.svg",
  38420. extra: 1420/1236,
  38421. bottom: 27/1447
  38422. }
  38423. },
  38424. },
  38425. [
  38426. {
  38427. name: "Normal",
  38428. height: math.unit(8 + 4/12, "feet"),
  38429. default: true
  38430. },
  38431. ]
  38432. ))
  38433. characterMakers.push(() => makeCharacter(
  38434. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38435. {
  38436. front: {
  38437. height: math.unit(15, "feet"),
  38438. name: "Front",
  38439. image: {
  38440. source: "./media/characters/marble/front.svg",
  38441. extra: 973/937,
  38442. bottom: 32/1005
  38443. }
  38444. },
  38445. },
  38446. [
  38447. {
  38448. name: "Normal",
  38449. height: math.unit(15, "feet"),
  38450. default: true
  38451. },
  38452. ]
  38453. ))
  38454. characterMakers.push(() => makeCharacter(
  38455. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38456. {
  38457. front: {
  38458. height: math.unit(3, "inches"),
  38459. name: "Front",
  38460. image: {
  38461. source: "./media/characters/powder/front.svg",
  38462. extra: 1504/1334,
  38463. bottom: 518/2022
  38464. }
  38465. },
  38466. },
  38467. [
  38468. {
  38469. name: "Normal",
  38470. height: math.unit(3, "inches"),
  38471. default: true
  38472. },
  38473. ]
  38474. ))
  38475. characterMakers.push(() => makeCharacter(
  38476. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38477. {
  38478. front: {
  38479. height: math.unit(4 + 5/12, "feet"),
  38480. name: "Front",
  38481. image: {
  38482. source: "./media/characters/joey-raccoon/front.svg",
  38483. extra: 1273/1197,
  38484. bottom: 0/1273
  38485. }
  38486. },
  38487. },
  38488. [
  38489. {
  38490. name: "Normal",
  38491. height: math.unit(4 + 5/12, "feet"),
  38492. default: true
  38493. },
  38494. ]
  38495. ))
  38496. characterMakers.push(() => makeCharacter(
  38497. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38498. {
  38499. front: {
  38500. height: math.unit(8 + 4/12, "feet"),
  38501. name: "Front",
  38502. image: {
  38503. source: "./media/characters/vick/front.svg",
  38504. extra: 2187/2118,
  38505. bottom: 47/2234
  38506. }
  38507. },
  38508. },
  38509. [
  38510. {
  38511. name: "Normal",
  38512. height: math.unit(8 + 4/12, "feet"),
  38513. default: true
  38514. },
  38515. ]
  38516. ))
  38517. characterMakers.push(() => makeCharacter(
  38518. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38519. {
  38520. front: {
  38521. height: math.unit(5 + 5/12, "feet"),
  38522. name: "Front",
  38523. image: {
  38524. source: "./media/characters/mitsy/front.svg",
  38525. extra: 1842/1695,
  38526. bottom: 0/1842
  38527. }
  38528. },
  38529. },
  38530. [
  38531. {
  38532. name: "Normal",
  38533. height: math.unit(5 + 5/12, "feet"),
  38534. default: true
  38535. },
  38536. ]
  38537. ))
  38538. characterMakers.push(() => makeCharacter(
  38539. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38540. {
  38541. front: {
  38542. height: math.unit(6 + 3/12, "feet"),
  38543. name: "Front",
  38544. image: {
  38545. source: "./media/characters/silvy/front.svg",
  38546. extra: 1995/1836,
  38547. bottom: 225/2220
  38548. }
  38549. },
  38550. },
  38551. [
  38552. {
  38553. name: "Normal",
  38554. height: math.unit(6 + 3/12, "feet"),
  38555. default: true
  38556. },
  38557. ]
  38558. ))
  38559. characterMakers.push(() => makeCharacter(
  38560. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38561. {
  38562. front: {
  38563. height: math.unit(3 + 8/12, "feet"),
  38564. name: "Front",
  38565. image: {
  38566. source: "./media/characters/rodney/front.svg",
  38567. extra: 1956/1747,
  38568. bottom: 31/1987
  38569. }
  38570. },
  38571. frontDressed: {
  38572. height: math.unit(2.9, "feet"),
  38573. name: "Front (Dressed)",
  38574. image: {
  38575. source: "./media/characters/rodney/front-dressed.svg",
  38576. extra: 1382/1241,
  38577. bottom: 385/1767
  38578. }
  38579. },
  38580. },
  38581. [
  38582. {
  38583. name: "Normal",
  38584. height: math.unit(3 + 8/12, "feet"),
  38585. default: true
  38586. },
  38587. ]
  38588. ))
  38589. characterMakers.push(() => makeCharacter(
  38590. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38591. {
  38592. front: {
  38593. height: math.unit(5 + 9/12, "feet"),
  38594. weight: math.unit(194, "lbs"),
  38595. name: "Front",
  38596. image: {
  38597. source: "./media/characters/zakail-sudekai/front.svg",
  38598. extra: 2696/2533,
  38599. bottom: 248/2944
  38600. }
  38601. },
  38602. maw: {
  38603. height: math.unit(1.35, "feet"),
  38604. name: "Maw",
  38605. image: {
  38606. source: "./media/characters/zakail-sudekai/maw.svg"
  38607. }
  38608. },
  38609. },
  38610. [
  38611. {
  38612. name: "Normal",
  38613. height: math.unit(5 + 9/12, "feet"),
  38614. default: true
  38615. },
  38616. ]
  38617. ))
  38618. characterMakers.push(() => makeCharacter(
  38619. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38620. {
  38621. front: {
  38622. height: math.unit(8 + 4/12, "feet"),
  38623. weight: math.unit(1200, "lb"),
  38624. name: "Front",
  38625. image: {
  38626. source: "./media/characters/eleanor/front.svg",
  38627. extra: 1226/1192,
  38628. bottom: 52/1278
  38629. }
  38630. },
  38631. back: {
  38632. height: math.unit(8 + 4/12, "feet"),
  38633. weight: math.unit(1200, "lb"),
  38634. name: "Back",
  38635. image: {
  38636. source: "./media/characters/eleanor/back.svg",
  38637. extra: 1242/1184,
  38638. bottom: 60/1302
  38639. }
  38640. },
  38641. head: {
  38642. height: math.unit(2.62, "feet"),
  38643. name: "Head",
  38644. image: {
  38645. source: "./media/characters/eleanor/head.svg"
  38646. }
  38647. },
  38648. },
  38649. [
  38650. {
  38651. name: "Normal",
  38652. height: math.unit(8 + 4/12, "feet"),
  38653. default: true
  38654. },
  38655. ]
  38656. ))
  38657. characterMakers.push(() => makeCharacter(
  38658. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38659. {
  38660. front: {
  38661. height: math.unit(8 + 4/12, "feet"),
  38662. weight: math.unit(750, "lb"),
  38663. name: "Front",
  38664. image: {
  38665. source: "./media/characters/tanya/front.svg",
  38666. extra: 1749/1615,
  38667. bottom: 33/1782
  38668. }
  38669. },
  38670. },
  38671. [
  38672. {
  38673. name: "Normal",
  38674. height: math.unit(8 + 4/12, "feet"),
  38675. default: true
  38676. },
  38677. ]
  38678. ))
  38679. characterMakers.push(() => makeCharacter(
  38680. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38681. {
  38682. front: {
  38683. height: math.unit(5, "feet"),
  38684. weight: math.unit(225, "lb"),
  38685. name: "Front",
  38686. image: {
  38687. source: "./media/characters/cindy/front.svg",
  38688. extra: 1320/1250,
  38689. bottom: 42/1362
  38690. }
  38691. },
  38692. frontDressed: {
  38693. height: math.unit(5, "feet"),
  38694. weight: math.unit(225, "lb"),
  38695. name: "Front (Dressed)",
  38696. image: {
  38697. source: "./media/characters/cindy/front-dressed.svg",
  38698. extra: 1320/1250,
  38699. bottom: 42/1362
  38700. }
  38701. },
  38702. back: {
  38703. height: math.unit(5, "feet"),
  38704. weight: math.unit(225, "lb"),
  38705. name: "Back",
  38706. image: {
  38707. source: "./media/characters/cindy/back.svg",
  38708. extra: 1384/1346,
  38709. bottom: 14/1398
  38710. }
  38711. },
  38712. },
  38713. [
  38714. {
  38715. name: "Normal",
  38716. height: math.unit(5, "feet"),
  38717. default: true
  38718. },
  38719. ]
  38720. ))
  38721. characterMakers.push(() => makeCharacter(
  38722. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38723. {
  38724. front: {
  38725. height: math.unit(6 + 9/12, "feet"),
  38726. weight: math.unit(440, "lb"),
  38727. name: "Front",
  38728. image: {
  38729. source: "./media/characters/wilbur-owen/front.svg",
  38730. extra: 1575/1448,
  38731. bottom: 72/1647
  38732. }
  38733. },
  38734. back: {
  38735. height: math.unit(6 + 9/12, "feet"),
  38736. weight: math.unit(440, "lb"),
  38737. name: "Back",
  38738. image: {
  38739. source: "./media/characters/wilbur-owen/back.svg",
  38740. extra: 1578/1445,
  38741. bottom: 36/1614
  38742. }
  38743. },
  38744. },
  38745. [
  38746. {
  38747. name: "Normal",
  38748. height: math.unit(6 + 9/12, "feet"),
  38749. default: true
  38750. },
  38751. ]
  38752. ))
  38753. characterMakers.push(() => makeCharacter(
  38754. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38755. {
  38756. front: {
  38757. height: math.unit(6 + 5/12, "feet"),
  38758. weight: math.unit(650, "lb"),
  38759. name: "Front",
  38760. image: {
  38761. source: "./media/characters/keegan/front.svg",
  38762. extra: 2387/2198,
  38763. bottom: 33/2420
  38764. }
  38765. },
  38766. side: {
  38767. height: math.unit(6 + 5/12, "feet"),
  38768. weight: math.unit(650, "lb"),
  38769. name: "Side",
  38770. image: {
  38771. source: "./media/characters/keegan/side.svg",
  38772. extra: 2390/2202,
  38773. bottom: 47/2437
  38774. }
  38775. },
  38776. back: {
  38777. height: math.unit(6 + 5/12, "feet"),
  38778. weight: math.unit(650, "lb"),
  38779. name: "Back",
  38780. image: {
  38781. source: "./media/characters/keegan/back.svg",
  38782. extra: 2418/2268,
  38783. bottom: 15/2433
  38784. }
  38785. },
  38786. frontSfw: {
  38787. height: math.unit(6 + 5/12, "feet"),
  38788. weight: math.unit(650, "lb"),
  38789. name: "Front (SFW)",
  38790. image: {
  38791. source: "./media/characters/keegan/front-sfw.svg",
  38792. extra: 2387/2198,
  38793. bottom: 33/2420
  38794. }
  38795. },
  38796. beans: {
  38797. height: math.unit(1.85, "feet"),
  38798. name: "Beans",
  38799. image: {
  38800. source: "./media/characters/keegan/beans.svg"
  38801. }
  38802. },
  38803. },
  38804. [
  38805. {
  38806. name: "Normal",
  38807. height: math.unit(6 + 5/12, "feet"),
  38808. default: true
  38809. },
  38810. ]
  38811. ))
  38812. characterMakers.push(() => makeCharacter(
  38813. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38814. {
  38815. front: {
  38816. height: math.unit(9, "feet"),
  38817. name: "Front",
  38818. image: {
  38819. source: "./media/characters/colton/front.svg",
  38820. extra: 1589/1326,
  38821. bottom: 139/1728
  38822. }
  38823. },
  38824. },
  38825. [
  38826. {
  38827. name: "Normal",
  38828. height: math.unit(9, "feet"),
  38829. default: true
  38830. },
  38831. ]
  38832. ))
  38833. characterMakers.push(() => makeCharacter(
  38834. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38835. {
  38836. front: {
  38837. height: math.unit(2 + 9/12, "feet"),
  38838. name: "Front",
  38839. image: {
  38840. source: "./media/characters/bora/front.svg",
  38841. extra: 1265/1250,
  38842. bottom: 24/1289
  38843. }
  38844. },
  38845. },
  38846. [
  38847. {
  38848. name: "Normal",
  38849. height: math.unit(2 + 9/12, "feet"),
  38850. default: true
  38851. },
  38852. ]
  38853. ))
  38854. characterMakers.push(() => makeCharacter(
  38855. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38856. {
  38857. front: {
  38858. height: math.unit(8, "feet"),
  38859. name: "Front",
  38860. image: {
  38861. source: "./media/characters/myu-myu/front.svg",
  38862. extra: 1949/1857,
  38863. bottom: 90/2039
  38864. }
  38865. },
  38866. },
  38867. [
  38868. {
  38869. name: "Normal",
  38870. height: math.unit(8, "feet"),
  38871. default: true
  38872. },
  38873. {
  38874. name: "Big",
  38875. height: math.unit(15, "feet")
  38876. },
  38877. {
  38878. name: "BIG",
  38879. height: math.unit(25, "feet")
  38880. },
  38881. ]
  38882. ))
  38883. characterMakers.push(() => makeCharacter(
  38884. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38885. {
  38886. side: {
  38887. height: math.unit(7 + 5/12, "feet"),
  38888. weight: math.unit(2800, "lb"),
  38889. name: "Side",
  38890. image: {
  38891. source: "./media/characters/haloren/side.svg",
  38892. extra: 1793/409,
  38893. bottom: 59/1852
  38894. }
  38895. },
  38896. frontPaw: {
  38897. height: math.unit(2.36, "feet"),
  38898. name: "Front paw",
  38899. image: {
  38900. source: "./media/characters/haloren/front-paw.svg"
  38901. }
  38902. },
  38903. hindPaw: {
  38904. height: math.unit(3.18, "feet"),
  38905. name: "Hind paw",
  38906. image: {
  38907. source: "./media/characters/haloren/hind-paw.svg"
  38908. }
  38909. },
  38910. maw: {
  38911. height: math.unit(5.05, "feet"),
  38912. name: "Maw",
  38913. image: {
  38914. source: "./media/characters/haloren/maw.svg"
  38915. }
  38916. },
  38917. dick: {
  38918. height: math.unit(2.90, "feet"),
  38919. name: "Dick",
  38920. image: {
  38921. source: "./media/characters/haloren/dick.svg"
  38922. }
  38923. },
  38924. },
  38925. [
  38926. {
  38927. name: "Normal",
  38928. height: math.unit(7 + 5/12, "feet"),
  38929. default: true
  38930. },
  38931. {
  38932. name: "Enhanced",
  38933. height: math.unit(14 + 3/12, "feet")
  38934. },
  38935. ]
  38936. ))
  38937. characterMakers.push(() => makeCharacter(
  38938. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38939. {
  38940. front: {
  38941. height: math.unit(171, "cm"),
  38942. name: "Front",
  38943. image: {
  38944. source: "./media/characters/kimmy/front.svg",
  38945. extra: 1491/1435,
  38946. bottom: 53/1544
  38947. }
  38948. },
  38949. },
  38950. [
  38951. {
  38952. name: "Small",
  38953. height: math.unit(9, "cm")
  38954. },
  38955. {
  38956. name: "Normal",
  38957. height: math.unit(171, "cm"),
  38958. default: true
  38959. },
  38960. ]
  38961. ))
  38962. characterMakers.push(() => makeCharacter(
  38963. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38964. {
  38965. front: {
  38966. height: math.unit(8, "feet"),
  38967. weight: math.unit(300, "lb"),
  38968. name: "Front",
  38969. image: {
  38970. source: "./media/characters/galeboomer/front.svg",
  38971. extra: 4651/4415,
  38972. bottom: 162/4813
  38973. }
  38974. },
  38975. back: {
  38976. height: math.unit(8, "feet"),
  38977. weight: math.unit(300, "lb"),
  38978. name: "Back",
  38979. image: {
  38980. source: "./media/characters/galeboomer/back.svg",
  38981. extra: 4544/4314,
  38982. bottom: 16/4560
  38983. }
  38984. },
  38985. frontAlt: {
  38986. height: math.unit(8, "feet"),
  38987. weight: math.unit(300, "lb"),
  38988. name: "Front (Alt)",
  38989. image: {
  38990. source: "./media/characters/galeboomer/front-alt.svg",
  38991. extra: 4458/4228,
  38992. bottom: 68/4526
  38993. }
  38994. },
  38995. maw: {
  38996. height: math.unit(1.2, "feet"),
  38997. name: "Maw",
  38998. image: {
  38999. source: "./media/characters/galeboomer/maw.svg"
  39000. }
  39001. },
  39002. },
  39003. [
  39004. {
  39005. name: "Normal",
  39006. height: math.unit(8, "feet"),
  39007. default: true
  39008. },
  39009. ]
  39010. ))
  39011. characterMakers.push(() => makeCharacter(
  39012. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39013. {
  39014. front: {
  39015. height: math.unit(5 + 9/12, "feet"),
  39016. weight: math.unit(120, "lb"),
  39017. name: "Front",
  39018. image: {
  39019. source: "./media/characters/chyr/front.svg",
  39020. extra: 1323/1254,
  39021. bottom: 63/1386
  39022. }
  39023. },
  39024. back: {
  39025. height: math.unit(5 + 9/12, "feet"),
  39026. weight: math.unit(120, "lb"),
  39027. name: "Back",
  39028. image: {
  39029. source: "./media/characters/chyr/back.svg",
  39030. extra: 1323/1252,
  39031. bottom: 48/1371
  39032. }
  39033. },
  39034. },
  39035. [
  39036. {
  39037. name: "Normal",
  39038. height: math.unit(5 + 9/12, "feet"),
  39039. default: true
  39040. },
  39041. ]
  39042. ))
  39043. characterMakers.push(() => makeCharacter(
  39044. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39045. {
  39046. front: {
  39047. height: math.unit(7, "feet"),
  39048. weight: math.unit(310, "lb"),
  39049. name: "Front",
  39050. image: {
  39051. source: "./media/characters/solarus/front.svg",
  39052. extra: 2415/2021,
  39053. bottom: 103/2518
  39054. }
  39055. },
  39056. back: {
  39057. height: math.unit(7, "feet"),
  39058. weight: math.unit(310, "lb"),
  39059. name: "Back",
  39060. image: {
  39061. source: "./media/characters/solarus/back.svg",
  39062. extra: 2463/2089,
  39063. bottom: 79/2542
  39064. }
  39065. },
  39066. },
  39067. [
  39068. {
  39069. name: "Normal",
  39070. height: math.unit(7, "feet"),
  39071. default: true
  39072. },
  39073. ]
  39074. ))
  39075. characterMakers.push(() => makeCharacter(
  39076. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39077. {
  39078. front: {
  39079. height: math.unit(16, "feet"),
  39080. name: "Front",
  39081. image: {
  39082. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39083. extra: 1844/1780,
  39084. bottom: 58/1902
  39085. }
  39086. },
  39087. winterCoat: {
  39088. height: math.unit(16, "feet"),
  39089. name: "Winter Coat",
  39090. image: {
  39091. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39092. extra: 1807/1775,
  39093. bottom: 69/1876
  39094. }
  39095. },
  39096. },
  39097. [
  39098. {
  39099. name: "Normal",
  39100. height: math.unit(16, "feet"),
  39101. default: true
  39102. },
  39103. {
  39104. name: "Chicago Size",
  39105. height: math.unit(560, "feet")
  39106. },
  39107. ]
  39108. ))
  39109. characterMakers.push(() => makeCharacter(
  39110. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39111. {
  39112. front: {
  39113. height: math.unit(11 + 6/12, "feet"),
  39114. weight: math.unit(1366, "lb"),
  39115. name: "Front",
  39116. image: {
  39117. source: "./media/characters/lexor/front.svg",
  39118. extra: 1560/1481,
  39119. bottom: 211/1771
  39120. }
  39121. },
  39122. back: {
  39123. height: math.unit(11 + 6/12, "feet"),
  39124. weight: math.unit(1366, "lb"),
  39125. name: "Back",
  39126. image: {
  39127. source: "./media/characters/lexor/back.svg",
  39128. extra: 1614/1533,
  39129. bottom: 76/1690
  39130. }
  39131. },
  39132. maw: {
  39133. height: math.unit(3, "feet"),
  39134. name: "Maw",
  39135. image: {
  39136. source: "./media/characters/lexor/maw.svg"
  39137. }
  39138. },
  39139. dick: {
  39140. height: math.unit(2.59, "feet"),
  39141. name: "Dick",
  39142. image: {
  39143. source: "./media/characters/lexor/dick.svg"
  39144. }
  39145. },
  39146. },
  39147. [
  39148. {
  39149. name: "Normal",
  39150. height: math.unit(11 + 6/12, "feet"),
  39151. default: true
  39152. },
  39153. ]
  39154. ))
  39155. characterMakers.push(() => makeCharacter(
  39156. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39157. {
  39158. front: {
  39159. height: math.unit(5 + 8/12, "feet"),
  39160. name: "Front",
  39161. image: {
  39162. source: "./media/characters/magnum/front.svg",
  39163. extra: 942/855,
  39164. bottom: 26/968
  39165. }
  39166. },
  39167. },
  39168. [
  39169. {
  39170. name: "Normal",
  39171. height: math.unit(5 + 8/12, "feet"),
  39172. default: true
  39173. },
  39174. ]
  39175. ))
  39176. characterMakers.push(() => makeCharacter(
  39177. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39178. {
  39179. front: {
  39180. height: math.unit(18 + 4/12, "feet"),
  39181. weight: math.unit(1500, "kg"),
  39182. name: "Front",
  39183. image: {
  39184. source: "./media/characters/solas-sharpsman/front.svg",
  39185. extra: 1698/1589,
  39186. bottom: 0/1698
  39187. }
  39188. },
  39189. },
  39190. [
  39191. {
  39192. name: "Normal",
  39193. height: math.unit(18 + 4/12, "feet"),
  39194. default: true
  39195. },
  39196. ]
  39197. ))
  39198. characterMakers.push(() => makeCharacter(
  39199. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39200. {
  39201. front: {
  39202. height: math.unit(5 + 5/12, "feet"),
  39203. weight: math.unit(180, "lb"),
  39204. name: "Front",
  39205. image: {
  39206. source: "./media/characters/october/front.svg",
  39207. extra: 1800/1650,
  39208. bottom: 0/1800
  39209. }
  39210. },
  39211. frontNsfw: {
  39212. height: math.unit(5 + 5/12, "feet"),
  39213. weight: math.unit(180, "lb"),
  39214. name: "Front (NSFW)",
  39215. image: {
  39216. source: "./media/characters/october/front-nsfw.svg",
  39217. extra: 1392/1307,
  39218. bottom: 42/1434
  39219. }
  39220. },
  39221. },
  39222. [
  39223. {
  39224. name: "Normal",
  39225. height: math.unit(5 + 5/12, "feet"),
  39226. default: true
  39227. },
  39228. ]
  39229. ))
  39230. characterMakers.push(() => makeCharacter(
  39231. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39232. {
  39233. front: {
  39234. height: math.unit(8 + 6/12, "feet"),
  39235. name: "Front",
  39236. image: {
  39237. source: "./media/characters/essynkardi/front.svg",
  39238. extra: 1541/1457,
  39239. bottom: 47/1588
  39240. }
  39241. },
  39242. },
  39243. [
  39244. {
  39245. name: "Normal",
  39246. height: math.unit(8 + 6/12, "feet"),
  39247. default: true
  39248. },
  39249. ]
  39250. ))
  39251. characterMakers.push(() => makeCharacter(
  39252. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39253. {
  39254. front: {
  39255. height: math.unit(6 + 6/12, "feet"),
  39256. weight: math.unit(7, "lb"),
  39257. name: "Front",
  39258. image: {
  39259. source: "./media/characters/icky/front.svg",
  39260. extra: 813/782,
  39261. bottom: 66/879
  39262. }
  39263. },
  39264. back: {
  39265. height: math.unit(6 + 6/12, "feet"),
  39266. weight: math.unit(7, "lb"),
  39267. name: "Back",
  39268. image: {
  39269. source: "./media/characters/icky/back.svg",
  39270. extra: 754/735,
  39271. bottom: 56/810
  39272. }
  39273. },
  39274. },
  39275. [
  39276. {
  39277. name: "Normal",
  39278. height: math.unit(6 + 6/12, "feet"),
  39279. default: true
  39280. },
  39281. ]
  39282. ))
  39283. characterMakers.push(() => makeCharacter(
  39284. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39285. {
  39286. front: {
  39287. height: math.unit(15, "feet"),
  39288. name: "Front",
  39289. image: {
  39290. source: "./media/characters/rojas/front.svg",
  39291. extra: 1462/1408,
  39292. bottom: 95/1557
  39293. }
  39294. },
  39295. back: {
  39296. height: math.unit(15, "feet"),
  39297. name: "Back",
  39298. image: {
  39299. source: "./media/characters/rojas/back.svg",
  39300. extra: 1023/954,
  39301. bottom: 28/1051
  39302. }
  39303. },
  39304. },
  39305. [
  39306. {
  39307. name: "Normal",
  39308. height: math.unit(15, "feet"),
  39309. default: true
  39310. },
  39311. ]
  39312. ))
  39313. characterMakers.push(() => makeCharacter(
  39314. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39315. {
  39316. frontHuman: {
  39317. height: math.unit(5 + 7/12, "feet"),
  39318. name: "Front (Human)",
  39319. image: {
  39320. source: "./media/characters/alek-dryagan/front-human.svg",
  39321. extra: 1687/1667,
  39322. bottom: 69/1756
  39323. }
  39324. },
  39325. backHuman: {
  39326. height: math.unit(5 + 7/12, "feet"),
  39327. name: "Back (Human)",
  39328. image: {
  39329. source: "./media/characters/alek-dryagan/back-human.svg",
  39330. extra: 1670/1649,
  39331. bottom: 65/1735
  39332. }
  39333. },
  39334. frontDemi: {
  39335. height: math.unit(65, "feet"),
  39336. name: "Front (Demi)",
  39337. image: {
  39338. source: "./media/characters/alek-dryagan/front-demi.svg",
  39339. extra: 1669/1642,
  39340. bottom: 49/1718
  39341. }
  39342. },
  39343. backDemi: {
  39344. height: math.unit(65, "feet"),
  39345. name: "Back (Demi)",
  39346. image: {
  39347. source: "./media/characters/alek-dryagan/back-demi.svg",
  39348. extra: 1658/1637,
  39349. bottom: 40/1698
  39350. }
  39351. },
  39352. mawHuman: {
  39353. height: math.unit(0.3, "feet"),
  39354. name: "Maw (Human)",
  39355. image: {
  39356. source: "./media/characters/alek-dryagan/maw-human.svg"
  39357. }
  39358. },
  39359. mawDemi: {
  39360. height: math.unit(3.8, "feet"),
  39361. name: "Maw (Demi)",
  39362. image: {
  39363. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39364. }
  39365. },
  39366. },
  39367. [
  39368. {
  39369. name: "Normal",
  39370. height: math.unit(5 + 7/12, "feet"),
  39371. default: true
  39372. },
  39373. ]
  39374. ))
  39375. characterMakers.push(() => makeCharacter(
  39376. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39377. {
  39378. frontHuman: {
  39379. height: math.unit(5 + 2/12, "feet"),
  39380. name: "Front (Human)",
  39381. image: {
  39382. source: "./media/characters/gen/front-human.svg",
  39383. extra: 1627/1538,
  39384. bottom: 71/1698
  39385. }
  39386. },
  39387. backHuman: {
  39388. height: math.unit(5 + 2/12, "feet"),
  39389. name: "Back (Human)",
  39390. image: {
  39391. source: "./media/characters/gen/back-human.svg",
  39392. extra: 1638/1548,
  39393. bottom: 69/1707
  39394. }
  39395. },
  39396. frontDemi: {
  39397. height: math.unit(5 + 2/12, "feet"),
  39398. name: "Front (Demi)",
  39399. image: {
  39400. source: "./media/characters/gen/front-demi.svg",
  39401. extra: 1627/1538,
  39402. bottom: 71/1698
  39403. }
  39404. },
  39405. backDemi: {
  39406. height: math.unit(5 + 2/12, "feet"),
  39407. name: "Back (Demi)",
  39408. image: {
  39409. source: "./media/characters/gen/back-demi.svg",
  39410. extra: 1638/1548,
  39411. bottom: 69/1707
  39412. }
  39413. },
  39414. },
  39415. [
  39416. {
  39417. name: "Normal",
  39418. height: math.unit(5 + 2/12, "feet"),
  39419. default: true
  39420. },
  39421. ]
  39422. ))
  39423. characterMakers.push(() => makeCharacter(
  39424. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39425. {
  39426. frontImp: {
  39427. height: math.unit(1 + 11/12, "feet"),
  39428. name: "Front (Imp)",
  39429. image: {
  39430. source: "./media/characters/max-kobold/front-imp.svg",
  39431. extra: 1238/1134,
  39432. bottom: 81/1319
  39433. }
  39434. },
  39435. backImp: {
  39436. height: math.unit(1 + 11/12, "feet"),
  39437. name: "Back (Imp)",
  39438. image: {
  39439. source: "./media/characters/max-kobold/back-imp.svg",
  39440. extra: 1334/1175,
  39441. bottom: 34/1368
  39442. }
  39443. },
  39444. frontDemi: {
  39445. height: math.unit(5 + 9/12, "feet"),
  39446. name: "Front (Demi)",
  39447. image: {
  39448. source: "./media/characters/max-kobold/front-demi.svg",
  39449. extra: 1715/1685,
  39450. bottom: 54/1769
  39451. }
  39452. },
  39453. backDemi: {
  39454. height: math.unit(5 + 9/12, "feet"),
  39455. name: "Back (Demi)",
  39456. image: {
  39457. source: "./media/characters/max-kobold/back-demi.svg",
  39458. extra: 1752/1729,
  39459. bottom: 41/1793
  39460. }
  39461. },
  39462. handImp: {
  39463. height: math.unit(0.45, "feet"),
  39464. name: "Hand (Imp)",
  39465. image: {
  39466. source: "./media/characters/max-kobold/hand.svg"
  39467. }
  39468. },
  39469. pawImp: {
  39470. height: math.unit(0.46, "feet"),
  39471. name: "Paw (Imp)",
  39472. image: {
  39473. source: "./media/characters/max-kobold/paw.svg"
  39474. }
  39475. },
  39476. handDemi: {
  39477. height: math.unit(0.80, "feet"),
  39478. name: "Hand (Demi)",
  39479. image: {
  39480. source: "./media/characters/max-kobold/hand.svg"
  39481. }
  39482. },
  39483. pawDemi: {
  39484. height: math.unit(1.1, "feet"),
  39485. name: "Paw (Demi)",
  39486. image: {
  39487. source: "./media/characters/max-kobold/paw.svg"
  39488. }
  39489. },
  39490. headImp: {
  39491. height: math.unit(1.33, "feet"),
  39492. name: "Head (Imp)",
  39493. image: {
  39494. source: "./media/characters/max-kobold/head-imp.svg"
  39495. }
  39496. },
  39497. mawImp: {
  39498. height: math.unit(0.75, "feet"),
  39499. name: "Maw (Imp)",
  39500. image: {
  39501. source: "./media/characters/max-kobold/maw-imp.svg"
  39502. }
  39503. },
  39504. mawDemi: {
  39505. height: math.unit(0.42, "feet"),
  39506. name: "Maw (Demi)",
  39507. image: {
  39508. source: "./media/characters/max-kobold/maw-demi.svg"
  39509. }
  39510. },
  39511. },
  39512. [
  39513. {
  39514. name: "Normal",
  39515. height: math.unit(1 + 11/12, "feet"),
  39516. default: true
  39517. },
  39518. ]
  39519. ))
  39520. characterMakers.push(() => makeCharacter(
  39521. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39522. {
  39523. front: {
  39524. height: math.unit(7 + 5/12, "feet"),
  39525. name: "Front",
  39526. image: {
  39527. source: "./media/characters/carbon/front.svg",
  39528. extra: 1754/1689,
  39529. bottom: 65/1819
  39530. }
  39531. },
  39532. back: {
  39533. height: math.unit(7 + 5/12, "feet"),
  39534. name: "Back",
  39535. image: {
  39536. source: "./media/characters/carbon/back.svg",
  39537. extra: 1762/1695,
  39538. bottom: 24/1786
  39539. }
  39540. },
  39541. frontGigantamax: {
  39542. height: math.unit(150, "feet"),
  39543. name: "Front (Gigantamax)",
  39544. image: {
  39545. source: "./media/characters/carbon/front-gigantamax.svg",
  39546. extra: 1826/1669,
  39547. bottom: 59/1885
  39548. }
  39549. },
  39550. backGigantamax: {
  39551. height: math.unit(150, "feet"),
  39552. name: "Back (Gigantamax)",
  39553. image: {
  39554. source: "./media/characters/carbon/back-gigantamax.svg",
  39555. extra: 1796/1653,
  39556. bottom: 53/1849
  39557. }
  39558. },
  39559. maw: {
  39560. height: math.unit(0.48, "feet"),
  39561. name: "Maw",
  39562. image: {
  39563. source: "./media/characters/carbon/maw.svg"
  39564. }
  39565. },
  39566. mawGigantamax: {
  39567. height: math.unit(7.5, "feet"),
  39568. name: "Maw (Gigantamax)",
  39569. image: {
  39570. source: "./media/characters/carbon/maw-gigantamax.svg"
  39571. }
  39572. },
  39573. },
  39574. [
  39575. {
  39576. name: "Normal",
  39577. height: math.unit(7 + 5/12, "feet"),
  39578. default: true
  39579. },
  39580. ]
  39581. ))
  39582. characterMakers.push(() => makeCharacter(
  39583. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39584. {
  39585. front: {
  39586. height: math.unit(6, "feet"),
  39587. name: "Front",
  39588. image: {
  39589. source: "./media/characters/maverick/front.svg",
  39590. extra: 1672/1661,
  39591. bottom: 85/1757
  39592. }
  39593. },
  39594. back: {
  39595. height: math.unit(6, "feet"),
  39596. name: "Back",
  39597. image: {
  39598. source: "./media/characters/maverick/back.svg",
  39599. extra: 1642/1631,
  39600. bottom: 38/1680
  39601. }
  39602. },
  39603. },
  39604. [
  39605. {
  39606. name: "Normal",
  39607. height: math.unit(6, "feet"),
  39608. default: true
  39609. },
  39610. ]
  39611. ))
  39612. characterMakers.push(() => makeCharacter(
  39613. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39614. {
  39615. front: {
  39616. height: math.unit(15, "feet"),
  39617. weight: math.unit(615, "lb"),
  39618. name: "Front",
  39619. image: {
  39620. source: "./media/characters/grockle/front.svg",
  39621. extra: 1535/1427,
  39622. bottom: 56/1591
  39623. }
  39624. },
  39625. },
  39626. [
  39627. {
  39628. name: "Normal",
  39629. height: math.unit(15, "feet"),
  39630. default: true
  39631. },
  39632. {
  39633. name: "Large",
  39634. height: math.unit(150, "feet")
  39635. },
  39636. {
  39637. name: "Macro",
  39638. height: math.unit(1876, "feet")
  39639. },
  39640. {
  39641. name: "Mega Macro",
  39642. height: math.unit(121940, "feet")
  39643. },
  39644. {
  39645. name: "Giga Macro",
  39646. height: math.unit(750, "km")
  39647. },
  39648. {
  39649. name: "Tera Macro",
  39650. height: math.unit(750000, "km")
  39651. },
  39652. {
  39653. name: "Galactic",
  39654. height: math.unit(1.4e5, "km")
  39655. },
  39656. {
  39657. name: "Godlike",
  39658. height: math.unit(9.8e280, "galaxies")
  39659. },
  39660. ]
  39661. ))
  39662. characterMakers.push(() => makeCharacter(
  39663. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39664. {
  39665. front: {
  39666. height: math.unit(11, "meters"),
  39667. weight: math.unit(20, "tonnes"),
  39668. name: "Front",
  39669. image: {
  39670. source: "./media/characters/alistair/front.svg",
  39671. extra: 1265/1009,
  39672. bottom: 93/1358
  39673. }
  39674. },
  39675. },
  39676. [
  39677. {
  39678. name: "Normal",
  39679. height: math.unit(11, "meters"),
  39680. default: true
  39681. },
  39682. ]
  39683. ))
  39684. characterMakers.push(() => makeCharacter(
  39685. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39686. {
  39687. front: {
  39688. height: math.unit(5 + 8/12, "feet"),
  39689. name: "Front",
  39690. image: {
  39691. source: "./media/characters/haruka/front.svg",
  39692. extra: 2012/1952,
  39693. bottom: 0/2012
  39694. }
  39695. },
  39696. },
  39697. [
  39698. {
  39699. name: "Normal",
  39700. height: math.unit(5 + 8/12, "feet"),
  39701. default: true
  39702. },
  39703. ]
  39704. ))
  39705. characterMakers.push(() => makeCharacter(
  39706. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39707. {
  39708. back: {
  39709. height: math.unit(9, "feet"),
  39710. name: "Back",
  39711. image: {
  39712. source: "./media/characters/vivian-sylveon/back.svg",
  39713. extra: 1853/1714,
  39714. bottom: 0/1853
  39715. }
  39716. },
  39717. hyper: {
  39718. height: math.unit(5.58, "feet"),
  39719. name: "Hyper",
  39720. preyCapacity: math.unit(2.80616218797, "m^3"),
  39721. image: {
  39722. source: "./media/characters/vivian-sylveon/hyper.svg",
  39723. extra: 999/676,
  39724. bottom: 697/1696
  39725. },
  39726. },
  39727. paw: {
  39728. height: math.unit(1.8, "feet"),
  39729. name: "Paw",
  39730. image: {
  39731. source: "./media/characters/vivian-sylveon/paw.svg"
  39732. }
  39733. },
  39734. danger: {
  39735. height: math.unit(7.5, "feet"),
  39736. name: "DANGER",
  39737. image: {
  39738. source: "./media/characters/vivian-sylveon/danger.svg"
  39739. }
  39740. },
  39741. },
  39742. [
  39743. {
  39744. name: "Normal",
  39745. height: math.unit(9, "feet"),
  39746. default: true
  39747. },
  39748. {
  39749. name: "Macro",
  39750. height: math.unit(500, "feet")
  39751. },
  39752. {
  39753. name: "Megamacro",
  39754. height: math.unit(600, "miles")
  39755. },
  39756. {
  39757. name: "Gigamacro",
  39758. height: math.unit(30000, "miles")
  39759. },
  39760. ]
  39761. ))
  39762. characterMakers.push(() => makeCharacter(
  39763. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39764. {
  39765. anthro: {
  39766. height: math.unit(5 + 10/12, "feet"),
  39767. weight: math.unit(100, "lb"),
  39768. name: "Anthro",
  39769. image: {
  39770. source: "./media/characters/daiki/anthro.svg",
  39771. extra: 1115/1027,
  39772. bottom: 69/1184
  39773. }
  39774. },
  39775. feral: {
  39776. height: math.unit(200, "feet"),
  39777. name: "Feral",
  39778. image: {
  39779. source: "./media/characters/daiki/feral.svg",
  39780. extra: 1256/313,
  39781. bottom: 39/1295
  39782. }
  39783. },
  39784. feralHead: {
  39785. height: math.unit(171, "feet"),
  39786. name: "Feral Head",
  39787. image: {
  39788. source: "./media/characters/daiki/feral-head.svg"
  39789. }
  39790. },
  39791. manaDragon: {
  39792. height: math.unit(170, "meters"),
  39793. name: "Mana-dragon",
  39794. image: {
  39795. source: "./media/characters/daiki/mana-dragon.svg",
  39796. extra: 763/420,
  39797. bottom: 97/860
  39798. }
  39799. },
  39800. },
  39801. [
  39802. {
  39803. name: "Normal",
  39804. height: math.unit(5 + 10/12, "feet"),
  39805. default: true
  39806. },
  39807. ]
  39808. ))
  39809. characterMakers.push(() => makeCharacter(
  39810. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39811. {
  39812. fullyEquippedFront: {
  39813. height: math.unit(3 + 1/12, "feet"),
  39814. weight: math.unit(24, "lb"),
  39815. name: "Fully Equipped (Front)",
  39816. image: {
  39817. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39818. extra: 687/605,
  39819. bottom: 18/705
  39820. }
  39821. },
  39822. fullyEquippedBack: {
  39823. height: math.unit(3 + 1/12, "feet"),
  39824. weight: math.unit(24, "lb"),
  39825. name: "Fully Equipped (Back)",
  39826. image: {
  39827. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39828. extra: 689/590,
  39829. bottom: 18/707
  39830. }
  39831. },
  39832. dailyWear: {
  39833. height: math.unit(3 + 1/12, "feet"),
  39834. weight: math.unit(24, "lb"),
  39835. name: "Daily Wear",
  39836. image: {
  39837. source: "./media/characters/tea-spot/daily-wear.svg",
  39838. extra: 701/620,
  39839. bottom: 21/722
  39840. }
  39841. },
  39842. maidWork: {
  39843. height: math.unit(3 + 1/12, "feet"),
  39844. weight: math.unit(24, "lb"),
  39845. name: "Maid Work",
  39846. image: {
  39847. source: "./media/characters/tea-spot/maid-work.svg",
  39848. extra: 693/609,
  39849. bottom: 15/708
  39850. }
  39851. },
  39852. },
  39853. [
  39854. {
  39855. name: "Normal",
  39856. height: math.unit(3 + 1/12, "feet"),
  39857. default: true
  39858. },
  39859. ]
  39860. ))
  39861. characterMakers.push(() => makeCharacter(
  39862. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39863. {
  39864. front: {
  39865. height: math.unit(175, "cm"),
  39866. weight: math.unit(75, "kg"),
  39867. name: "Front",
  39868. image: {
  39869. source: "./media/characters/chee/front.svg",
  39870. extra: 1796/1740,
  39871. bottom: 40/1836
  39872. }
  39873. },
  39874. },
  39875. [
  39876. {
  39877. name: "Micro-Micro",
  39878. height: math.unit(1, "nm")
  39879. },
  39880. {
  39881. name: "Micro-erst",
  39882. height: math.unit(1, "micrometer")
  39883. },
  39884. {
  39885. name: "Micro-er",
  39886. height: math.unit(1, "cm")
  39887. },
  39888. {
  39889. name: "Normal",
  39890. height: math.unit(175, "cm"),
  39891. default: true
  39892. },
  39893. {
  39894. name: "Macro",
  39895. height: math.unit(100, "m")
  39896. },
  39897. {
  39898. name: "Macro-er",
  39899. height: math.unit(1, "km")
  39900. },
  39901. {
  39902. name: "Macro-erst",
  39903. height: math.unit(10, "km")
  39904. },
  39905. {
  39906. name: "Macro-Macro",
  39907. height: math.unit(100, "km")
  39908. },
  39909. ]
  39910. ))
  39911. characterMakers.push(() => makeCharacter(
  39912. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39913. {
  39914. front: {
  39915. height: math.unit(11 + 9/12, "feet"),
  39916. weight: math.unit(935, "lb"),
  39917. name: "Front",
  39918. image: {
  39919. source: "./media/characters/kingsley/front.svg",
  39920. extra: 1803/1674,
  39921. bottom: 127/1930
  39922. }
  39923. },
  39924. frontNude: {
  39925. height: math.unit(11 + 9/12, "feet"),
  39926. weight: math.unit(935, "lb"),
  39927. name: "Front (Nude)",
  39928. image: {
  39929. source: "./media/characters/kingsley/front-nude.svg",
  39930. extra: 1803/1674,
  39931. bottom: 127/1930
  39932. }
  39933. },
  39934. },
  39935. [
  39936. {
  39937. name: "Normal",
  39938. height: math.unit(11 + 9/12, "feet"),
  39939. default: true
  39940. },
  39941. ]
  39942. ))
  39943. characterMakers.push(() => makeCharacter(
  39944. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39945. {
  39946. side: {
  39947. height: math.unit(9, "feet"),
  39948. name: "Side",
  39949. image: {
  39950. source: "./media/characters/rymel/side.svg",
  39951. extra: 792/469,
  39952. bottom: 121/913
  39953. }
  39954. },
  39955. maw: {
  39956. height: math.unit(2.4, "meters"),
  39957. name: "Maw",
  39958. image: {
  39959. source: "./media/characters/rymel/maw.svg"
  39960. }
  39961. },
  39962. },
  39963. [
  39964. {
  39965. name: "House Drake",
  39966. height: math.unit(2, "feet")
  39967. },
  39968. {
  39969. name: "Reduced",
  39970. height: math.unit(4.5, "feet")
  39971. },
  39972. {
  39973. name: "Normal",
  39974. height: math.unit(9, "feet"),
  39975. default: true
  39976. },
  39977. ]
  39978. ))
  39979. characterMakers.push(() => makeCharacter(
  39980. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39981. {
  39982. front: {
  39983. height: math.unit(1.74, "meters"),
  39984. weight: math.unit(55, "kg"),
  39985. name: "Front",
  39986. image: {
  39987. source: "./media/characters/rubus/front.svg",
  39988. extra: 1894/1742,
  39989. bottom: 44/1938
  39990. }
  39991. },
  39992. },
  39993. [
  39994. {
  39995. name: "Normal",
  39996. height: math.unit(1.74, "meters"),
  39997. default: true
  39998. },
  39999. ]
  40000. ))
  40001. characterMakers.push(() => makeCharacter(
  40002. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40003. {
  40004. front: {
  40005. height: math.unit(5 + 2/12, "feet"),
  40006. weight: math.unit(112, "lb"),
  40007. name: "Front",
  40008. image: {
  40009. source: "./media/characters/cassie-kingston/front.svg",
  40010. extra: 1438/1390,
  40011. bottom: 47/1485
  40012. }
  40013. },
  40014. },
  40015. [
  40016. {
  40017. name: "Normal",
  40018. height: math.unit(5 + 2/12, "feet"),
  40019. default: true
  40020. },
  40021. {
  40022. name: "Macro",
  40023. height: math.unit(128, "feet")
  40024. },
  40025. {
  40026. name: "Megamacro",
  40027. height: math.unit(2.56, "miles")
  40028. },
  40029. ]
  40030. ))
  40031. characterMakers.push(() => makeCharacter(
  40032. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40033. {
  40034. front: {
  40035. height: math.unit(7, "feet"),
  40036. name: "Front",
  40037. image: {
  40038. source: "./media/characters/fox/front.svg",
  40039. extra: 1798/1703,
  40040. bottom: 55/1853
  40041. }
  40042. },
  40043. back: {
  40044. height: math.unit(7, "feet"),
  40045. name: "Back",
  40046. image: {
  40047. source: "./media/characters/fox/back.svg",
  40048. extra: 1748/1649,
  40049. bottom: 32/1780
  40050. }
  40051. },
  40052. head: {
  40053. height: math.unit(1.95, "feet"),
  40054. name: "Head",
  40055. image: {
  40056. source: "./media/characters/fox/head.svg"
  40057. }
  40058. },
  40059. dick: {
  40060. height: math.unit(1.33, "feet"),
  40061. name: "Dick",
  40062. image: {
  40063. source: "./media/characters/fox/dick.svg"
  40064. }
  40065. },
  40066. foot: {
  40067. height: math.unit(1, "feet"),
  40068. name: "Foot",
  40069. image: {
  40070. source: "./media/characters/fox/foot.svg"
  40071. }
  40072. },
  40073. paw: {
  40074. height: math.unit(0.92, "feet"),
  40075. name: "Paw",
  40076. image: {
  40077. source: "./media/characters/fox/paw.svg"
  40078. }
  40079. },
  40080. },
  40081. [
  40082. {
  40083. name: "Small",
  40084. height: math.unit(3, "inches")
  40085. },
  40086. {
  40087. name: "\"Realistic\"",
  40088. height: math.unit(7, "feet")
  40089. },
  40090. {
  40091. name: "Normal",
  40092. height: math.unit(150, "feet"),
  40093. default: true
  40094. },
  40095. {
  40096. name: "BIG",
  40097. height: math.unit(1200, "feet")
  40098. },
  40099. {
  40100. name: "👀",
  40101. height: math.unit(5, "miles")
  40102. },
  40103. {
  40104. name: "👀👀👀",
  40105. height: math.unit(64, "miles")
  40106. },
  40107. ]
  40108. ))
  40109. characterMakers.push(() => makeCharacter(
  40110. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40111. {
  40112. front: {
  40113. height: math.unit(625, "feet"),
  40114. name: "Front",
  40115. image: {
  40116. source: "./media/characters/asonja-rossa/front.svg",
  40117. extra: 1833/1686,
  40118. bottom: 24/1857
  40119. }
  40120. },
  40121. back: {
  40122. height: math.unit(625, "feet"),
  40123. name: "Back",
  40124. image: {
  40125. source: "./media/characters/asonja-rossa/back.svg",
  40126. extra: 1852/1753,
  40127. bottom: 26/1878
  40128. }
  40129. },
  40130. },
  40131. [
  40132. {
  40133. name: "Macro",
  40134. height: math.unit(625, "feet"),
  40135. default: true
  40136. },
  40137. ]
  40138. ))
  40139. characterMakers.push(() => makeCharacter(
  40140. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40141. {
  40142. side: {
  40143. height: math.unit(8, "feet"),
  40144. name: "Side",
  40145. image: {
  40146. source: "./media/characters/rezukii/side.svg",
  40147. extra: 979/542,
  40148. bottom: 87/1066
  40149. }
  40150. },
  40151. sitting: {
  40152. height: math.unit(14.6, "feet"),
  40153. name: "Sitting",
  40154. image: {
  40155. source: "./media/characters/rezukii/sitting.svg",
  40156. extra: 1023/813,
  40157. bottom: 45/1068
  40158. }
  40159. },
  40160. },
  40161. [
  40162. {
  40163. name: "Tiny",
  40164. height: math.unit(2, "feet")
  40165. },
  40166. {
  40167. name: "Smol",
  40168. height: math.unit(4, "feet")
  40169. },
  40170. {
  40171. name: "Normal",
  40172. height: math.unit(8, "feet"),
  40173. default: true
  40174. },
  40175. {
  40176. name: "Big",
  40177. height: math.unit(12, "feet")
  40178. },
  40179. {
  40180. name: "Macro",
  40181. height: math.unit(30, "feet")
  40182. },
  40183. ]
  40184. ))
  40185. characterMakers.push(() => makeCharacter(
  40186. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40187. {
  40188. front: {
  40189. height: math.unit(14, "feet"),
  40190. weight: math.unit(9.5, "tonnes"),
  40191. name: "Front",
  40192. image: {
  40193. source: "./media/characters/dawnheart/front.svg",
  40194. extra: 2792/2675,
  40195. bottom: 64/2856
  40196. }
  40197. },
  40198. },
  40199. [
  40200. {
  40201. name: "Normal",
  40202. height: math.unit(14, "feet"),
  40203. default: true
  40204. },
  40205. ]
  40206. ))
  40207. characterMakers.push(() => makeCharacter(
  40208. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40209. {
  40210. front: {
  40211. height: math.unit(1.7, "m"),
  40212. name: "Front",
  40213. image: {
  40214. source: "./media/characters/gladi/front.svg",
  40215. extra: 1460/1362,
  40216. bottom: 19/1479
  40217. }
  40218. },
  40219. back: {
  40220. height: math.unit(1.7, "m"),
  40221. name: "Back",
  40222. image: {
  40223. source: "./media/characters/gladi/back.svg",
  40224. extra: 1459/1357,
  40225. bottom: 12/1471
  40226. }
  40227. },
  40228. feral: {
  40229. height: math.unit(2.05, "m"),
  40230. name: "Feral",
  40231. image: {
  40232. source: "./media/characters/gladi/feral.svg",
  40233. extra: 821/557,
  40234. bottom: 91/912
  40235. }
  40236. },
  40237. },
  40238. [
  40239. {
  40240. name: "Shortest",
  40241. height: math.unit(70, "cm")
  40242. },
  40243. {
  40244. name: "Normal",
  40245. height: math.unit(1.7, "m")
  40246. },
  40247. {
  40248. name: "Macro",
  40249. height: math.unit(10, "m"),
  40250. default: true
  40251. },
  40252. {
  40253. name: "Tallest",
  40254. height: math.unit(200, "m")
  40255. },
  40256. ]
  40257. ))
  40258. characterMakers.push(() => makeCharacter(
  40259. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40260. {
  40261. front: {
  40262. height: math.unit(5 + 7/12, "feet"),
  40263. weight: math.unit(2, "tons"),
  40264. name: "Front",
  40265. image: {
  40266. source: "./media/characters/erdno/front.svg",
  40267. extra: 1234/1129,
  40268. bottom: 35/1269
  40269. }
  40270. },
  40271. angled: {
  40272. height: math.unit(5 + 7/12, "feet"),
  40273. weight: math.unit(2, "tons"),
  40274. name: "Angled",
  40275. image: {
  40276. source: "./media/characters/erdno/angled.svg",
  40277. extra: 1185/1139,
  40278. bottom: 36/1221
  40279. }
  40280. },
  40281. side: {
  40282. height: math.unit(5 + 7/12, "feet"),
  40283. weight: math.unit(2, "tons"),
  40284. name: "Side",
  40285. image: {
  40286. source: "./media/characters/erdno/side.svg",
  40287. extra: 1191/1144,
  40288. bottom: 40/1231
  40289. }
  40290. },
  40291. back: {
  40292. height: math.unit(5 + 7/12, "feet"),
  40293. weight: math.unit(2, "tons"),
  40294. name: "Back",
  40295. image: {
  40296. source: "./media/characters/erdno/back.svg",
  40297. extra: 1202/1146,
  40298. bottom: 17/1219
  40299. }
  40300. },
  40301. frontNsfw: {
  40302. height: math.unit(5 + 7/12, "feet"),
  40303. weight: math.unit(2, "tons"),
  40304. name: "Front (NSFW)",
  40305. image: {
  40306. source: "./media/characters/erdno/front-nsfw.svg",
  40307. extra: 1234/1129,
  40308. bottom: 35/1269
  40309. }
  40310. },
  40311. angledNsfw: {
  40312. height: math.unit(5 + 7/12, "feet"),
  40313. weight: math.unit(2, "tons"),
  40314. name: "Angled (NSFW)",
  40315. image: {
  40316. source: "./media/characters/erdno/angled-nsfw.svg",
  40317. extra: 1185/1139,
  40318. bottom: 36/1221
  40319. }
  40320. },
  40321. sideNsfw: {
  40322. height: math.unit(5 + 7/12, "feet"),
  40323. weight: math.unit(2, "tons"),
  40324. name: "Side (NSFW)",
  40325. image: {
  40326. source: "./media/characters/erdno/side-nsfw.svg",
  40327. extra: 1191/1144,
  40328. bottom: 40/1231
  40329. }
  40330. },
  40331. backNsfw: {
  40332. height: math.unit(5 + 7/12, "feet"),
  40333. weight: math.unit(2, "tons"),
  40334. name: "Back (NSFW)",
  40335. image: {
  40336. source: "./media/characters/erdno/back-nsfw.svg",
  40337. extra: 1202/1146,
  40338. bottom: 17/1219
  40339. }
  40340. },
  40341. frontHyper: {
  40342. height: math.unit(5 + 7/12, "feet"),
  40343. weight: math.unit(2, "tons"),
  40344. name: "Front (Hyper)",
  40345. image: {
  40346. source: "./media/characters/erdno/front-hyper.svg",
  40347. extra: 1298/1136,
  40348. bottom: 35/1333
  40349. }
  40350. },
  40351. },
  40352. [
  40353. {
  40354. name: "Normal",
  40355. height: math.unit(5 + 7/12, "feet"),
  40356. default: true
  40357. },
  40358. {
  40359. name: "Big",
  40360. height: math.unit(5.7, "meters")
  40361. },
  40362. {
  40363. name: "Macro",
  40364. height: math.unit(5.7, "kilometers")
  40365. },
  40366. {
  40367. name: "Megamacro",
  40368. height: math.unit(5.7, "earths")
  40369. },
  40370. ]
  40371. ))
  40372. characterMakers.push(() => makeCharacter(
  40373. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40374. {
  40375. front: {
  40376. height: math.unit(5 + 10/12, "feet"),
  40377. weight: math.unit(150, "lb"),
  40378. name: "Front",
  40379. image: {
  40380. source: "./media/characters/jamie/front.svg",
  40381. extra: 1908/1768,
  40382. bottom: 19/1927
  40383. }
  40384. },
  40385. },
  40386. [
  40387. {
  40388. name: "Minimum",
  40389. height: math.unit(2, "cm")
  40390. },
  40391. {
  40392. name: "Micro",
  40393. height: math.unit(3, "inches")
  40394. },
  40395. {
  40396. name: "Normal",
  40397. height: math.unit(5 + 10/12, "feet"),
  40398. default: true
  40399. },
  40400. {
  40401. name: "Macro",
  40402. height: math.unit(150, "feet")
  40403. },
  40404. {
  40405. name: "Megamacro",
  40406. height: math.unit(10000, "m")
  40407. },
  40408. ]
  40409. ))
  40410. characterMakers.push(() => makeCharacter(
  40411. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40412. {
  40413. front: {
  40414. height: math.unit(2, "meters"),
  40415. weight: math.unit(100, "kg"),
  40416. name: "Front",
  40417. image: {
  40418. source: "./media/characters/shiron/front.svg",
  40419. extra: 2103/1985,
  40420. bottom: 98/2201
  40421. }
  40422. },
  40423. back: {
  40424. height: math.unit(2, "meters"),
  40425. weight: math.unit(100, "kg"),
  40426. name: "Back",
  40427. image: {
  40428. source: "./media/characters/shiron/back.svg",
  40429. extra: 2110/2015,
  40430. bottom: 89/2199
  40431. }
  40432. },
  40433. hand: {
  40434. height: math.unit(0.96, "feet"),
  40435. name: "Hand",
  40436. image: {
  40437. source: "./media/characters/shiron/hand.svg"
  40438. }
  40439. },
  40440. foot: {
  40441. height: math.unit(1.464, "feet"),
  40442. name: "Foot",
  40443. image: {
  40444. source: "./media/characters/shiron/foot.svg"
  40445. }
  40446. },
  40447. },
  40448. [
  40449. {
  40450. name: "Normal",
  40451. height: math.unit(2, "meters")
  40452. },
  40453. {
  40454. name: "Macro",
  40455. height: math.unit(500, "meters"),
  40456. default: true
  40457. },
  40458. {
  40459. name: "Megamacro",
  40460. height: math.unit(20, "km")
  40461. },
  40462. ]
  40463. ))
  40464. characterMakers.push(() => makeCharacter(
  40465. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40466. {
  40467. front: {
  40468. height: math.unit(6, "feet"),
  40469. name: "Front",
  40470. image: {
  40471. source: "./media/characters/sam/front.svg",
  40472. extra: 849/826,
  40473. bottom: 19/868
  40474. }
  40475. },
  40476. },
  40477. [
  40478. {
  40479. name: "Normal",
  40480. height: math.unit(6, "feet"),
  40481. default: true
  40482. },
  40483. ]
  40484. ))
  40485. characterMakers.push(() => makeCharacter(
  40486. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40487. {
  40488. front: {
  40489. height: math.unit(8 + 4/12, "feet"),
  40490. weight: math.unit(122, "kg"),
  40491. name: "Front",
  40492. image: {
  40493. source: "./media/characters/namori-kurogawa/front.svg",
  40494. extra: 1894/1576,
  40495. bottom: 34/1928
  40496. }
  40497. },
  40498. },
  40499. [
  40500. {
  40501. name: "Normal",
  40502. height: math.unit(8 + 4/12, "feet"),
  40503. default: true
  40504. },
  40505. ]
  40506. ))
  40507. characterMakers.push(() => makeCharacter(
  40508. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40509. {
  40510. front: {
  40511. height: math.unit(9, "feet"),
  40512. weight: math.unit(621, "lb"),
  40513. name: "Front",
  40514. image: {
  40515. source: "./media/characters/unmru/front.svg",
  40516. extra: 1853/1747,
  40517. bottom: 73/1926
  40518. }
  40519. },
  40520. side: {
  40521. height: math.unit(9, "feet"),
  40522. weight: math.unit(621, "lb"),
  40523. name: "Side",
  40524. image: {
  40525. source: "./media/characters/unmru/side.svg",
  40526. extra: 1781/1671,
  40527. bottom: 127/1908
  40528. }
  40529. },
  40530. back: {
  40531. height: math.unit(9, "feet"),
  40532. weight: math.unit(621, "lb"),
  40533. name: "Back",
  40534. image: {
  40535. source: "./media/characters/unmru/back.svg",
  40536. extra: 1894/1765,
  40537. bottom: 75/1969
  40538. }
  40539. },
  40540. dick: {
  40541. height: math.unit(3, "feet"),
  40542. weight: math.unit(35, "lb"),
  40543. name: "Dick",
  40544. image: {
  40545. source: "./media/characters/unmru/dick.svg"
  40546. }
  40547. },
  40548. },
  40549. [
  40550. {
  40551. name: "Normal",
  40552. height: math.unit(9, "feet")
  40553. },
  40554. {
  40555. name: "Natural",
  40556. height: math.unit(27, "feet"),
  40557. default: true
  40558. },
  40559. {
  40560. name: "Giant",
  40561. height: math.unit(90, "feet")
  40562. },
  40563. {
  40564. name: "Kaiju",
  40565. height: math.unit(270, "feet")
  40566. },
  40567. {
  40568. name: "Macro",
  40569. height: math.unit(900, "feet")
  40570. },
  40571. {
  40572. name: "Macro+",
  40573. height: math.unit(2700, "feet")
  40574. },
  40575. {
  40576. name: "Megamacro",
  40577. height: math.unit(9000, "feet")
  40578. },
  40579. {
  40580. name: "City-Crushing",
  40581. height: math.unit(27000, "feet")
  40582. },
  40583. {
  40584. name: "Mountain-Mashing",
  40585. height: math.unit(90000, "feet")
  40586. },
  40587. {
  40588. name: "Earth-Eclipsing",
  40589. height: math.unit(2.7e8, "feet")
  40590. },
  40591. {
  40592. name: "Sol-Swallowing",
  40593. height: math.unit(9e10, "feet")
  40594. },
  40595. {
  40596. name: "Majoris-Munching",
  40597. height: math.unit(2.7e13, "feet")
  40598. },
  40599. ]
  40600. ))
  40601. characterMakers.push(() => makeCharacter(
  40602. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40603. {
  40604. front: {
  40605. height: math.unit(1, "inch"),
  40606. name: "Front",
  40607. image: {
  40608. source: "./media/characters/squeaks-mouse/front.svg",
  40609. extra: 352/308,
  40610. bottom: 25/377
  40611. }
  40612. },
  40613. },
  40614. [
  40615. {
  40616. name: "Micro",
  40617. height: math.unit(1, "inch"),
  40618. default: true
  40619. },
  40620. ]
  40621. ))
  40622. characterMakers.push(() => makeCharacter(
  40623. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40624. {
  40625. side: {
  40626. height: math.unit(35, "feet"),
  40627. name: "Side",
  40628. image: {
  40629. source: "./media/characters/sayko/side.svg",
  40630. extra: 1697/1021,
  40631. bottom: 82/1779
  40632. }
  40633. },
  40634. head: {
  40635. height: math.unit(16, "feet"),
  40636. name: "Head",
  40637. image: {
  40638. source: "./media/characters/sayko/head.svg"
  40639. }
  40640. },
  40641. forepaw: {
  40642. height: math.unit(7.85, "feet"),
  40643. name: "Forepaw",
  40644. image: {
  40645. source: "./media/characters/sayko/forepaw.svg"
  40646. }
  40647. },
  40648. hindpaw: {
  40649. height: math.unit(8.8, "feet"),
  40650. name: "Hindpaw",
  40651. image: {
  40652. source: "./media/characters/sayko/hindpaw.svg"
  40653. }
  40654. },
  40655. },
  40656. [
  40657. {
  40658. name: "Normal",
  40659. height: math.unit(35, "feet"),
  40660. default: true
  40661. },
  40662. {
  40663. name: "Colossus",
  40664. height: math.unit(100, "meters")
  40665. },
  40666. {
  40667. name: "\"Small\" Deity",
  40668. height: math.unit(1, "km")
  40669. },
  40670. {
  40671. name: "\"Large\" Deity",
  40672. height: math.unit(15, "km")
  40673. },
  40674. ]
  40675. ))
  40676. characterMakers.push(() => makeCharacter(
  40677. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40678. {
  40679. front: {
  40680. height: math.unit(6, "feet"),
  40681. weight: math.unit(250, "lb"),
  40682. name: "Front",
  40683. image: {
  40684. source: "./media/characters/mukiro/front.svg",
  40685. extra: 1368/1310,
  40686. bottom: 34/1402
  40687. }
  40688. },
  40689. },
  40690. [
  40691. {
  40692. name: "Normal",
  40693. height: math.unit(6, "feet"),
  40694. default: true
  40695. },
  40696. ]
  40697. ))
  40698. characterMakers.push(() => makeCharacter(
  40699. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40700. {
  40701. front: {
  40702. height: math.unit(12 + 4/12, "feet"),
  40703. name: "Front",
  40704. image: {
  40705. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40706. extra: 1346/1311,
  40707. bottom: 65/1411
  40708. }
  40709. },
  40710. },
  40711. [
  40712. {
  40713. name: "Base",
  40714. height: math.unit(12 + 4/12, "feet"),
  40715. default: true
  40716. },
  40717. {
  40718. name: "Macro",
  40719. height: math.unit(150, "feet")
  40720. },
  40721. {
  40722. name: "Mega",
  40723. height: math.unit(2, "miles")
  40724. },
  40725. {
  40726. name: "Demi God",
  40727. height: math.unit(4, "AU")
  40728. },
  40729. {
  40730. name: "God Size",
  40731. height: math.unit(1, "universe")
  40732. },
  40733. ]
  40734. ))
  40735. characterMakers.push(() => makeCharacter(
  40736. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40737. {
  40738. front: {
  40739. height: math.unit(3 + 3/12, "feet"),
  40740. weight: math.unit(88, "lb"),
  40741. name: "Front",
  40742. image: {
  40743. source: "./media/characters/trey/front.svg",
  40744. extra: 1815/1509,
  40745. bottom: 60/1875
  40746. }
  40747. },
  40748. },
  40749. [
  40750. {
  40751. name: "Normal",
  40752. height: math.unit(3 + 3/12, "feet"),
  40753. default: true
  40754. },
  40755. ]
  40756. ))
  40757. characterMakers.push(() => makeCharacter(
  40758. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40759. {
  40760. front: {
  40761. height: math.unit(4, "meters"),
  40762. name: "Front",
  40763. image: {
  40764. source: "./media/characters/adelonda/front.svg",
  40765. extra: 1077/982,
  40766. bottom: 39/1116
  40767. }
  40768. },
  40769. back: {
  40770. height: math.unit(4, "meters"),
  40771. name: "Back",
  40772. image: {
  40773. source: "./media/characters/adelonda/back.svg",
  40774. extra: 1105/1003,
  40775. bottom: 25/1130
  40776. }
  40777. },
  40778. feral: {
  40779. height: math.unit(40/1.5, "meters"),
  40780. name: "Feral",
  40781. image: {
  40782. source: "./media/characters/adelonda/feral.svg",
  40783. extra: 597/271,
  40784. bottom: 387/984
  40785. }
  40786. },
  40787. },
  40788. [
  40789. {
  40790. name: "Normal",
  40791. height: math.unit(4, "meters"),
  40792. default: true
  40793. },
  40794. ]
  40795. ))
  40796. characterMakers.push(() => makeCharacter(
  40797. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40798. {
  40799. front: {
  40800. height: math.unit(8 + 4/12, "feet"),
  40801. weight: math.unit(670, "lb"),
  40802. name: "Front",
  40803. image: {
  40804. source: "./media/characters/acadiel/front.svg",
  40805. extra: 1901/1595,
  40806. bottom: 142/2043
  40807. }
  40808. },
  40809. },
  40810. [
  40811. {
  40812. name: "Normal",
  40813. height: math.unit(8 + 4/12, "feet"),
  40814. default: true
  40815. },
  40816. {
  40817. name: "Macro",
  40818. height: math.unit(200, "feet")
  40819. },
  40820. ]
  40821. ))
  40822. characterMakers.push(() => makeCharacter(
  40823. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40824. {
  40825. front: {
  40826. height: math.unit(6 + 2/12, "feet"),
  40827. weight: math.unit(185, "lb"),
  40828. name: "Front",
  40829. image: {
  40830. source: "./media/characters/kayne-ein/front.svg",
  40831. extra: 1780/1560,
  40832. bottom: 81/1861
  40833. }
  40834. },
  40835. },
  40836. [
  40837. {
  40838. name: "Normal",
  40839. height: math.unit(6 + 2/12, "feet"),
  40840. default: true
  40841. },
  40842. {
  40843. name: "Transformation Stage",
  40844. height: math.unit(15, "feet")
  40845. },
  40846. {
  40847. name: "Macro",
  40848. height: math.unit(150, "feet")
  40849. },
  40850. {
  40851. name: "Earth's Shadow",
  40852. height: math.unit(6200, "miles")
  40853. },
  40854. {
  40855. name: "Universal Demon",
  40856. height: math.unit(28e9, "parsecs")
  40857. },
  40858. {
  40859. name: "Multiverse God",
  40860. height: math.unit(3, "multiverses")
  40861. },
  40862. ]
  40863. ))
  40864. characterMakers.push(() => makeCharacter(
  40865. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40866. {
  40867. front: {
  40868. height: math.unit(5 + 5/12, "feet"),
  40869. name: "Front",
  40870. image: {
  40871. source: "./media/characters/fawn/front.svg",
  40872. extra: 1873/1731,
  40873. bottom: 95/1968
  40874. }
  40875. },
  40876. back: {
  40877. height: math.unit(5 + 5/12, "feet"),
  40878. name: "Back",
  40879. image: {
  40880. source: "./media/characters/fawn/back.svg",
  40881. extra: 1813/1700,
  40882. bottom: 14/1827
  40883. }
  40884. },
  40885. hoof: {
  40886. height: math.unit(1.45, "feet"),
  40887. name: "Hoof",
  40888. image: {
  40889. source: "./media/characters/fawn/hoof.svg"
  40890. }
  40891. },
  40892. },
  40893. [
  40894. {
  40895. name: "Normal",
  40896. height: math.unit(5 + 5/12, "feet"),
  40897. default: true
  40898. },
  40899. ]
  40900. ))
  40901. characterMakers.push(() => makeCharacter(
  40902. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40903. {
  40904. front: {
  40905. height: math.unit(2 + 5/12, "feet"),
  40906. name: "Front",
  40907. image: {
  40908. source: "./media/characters/orion/front.svg",
  40909. extra: 1366/1304,
  40910. bottom: 43/1409
  40911. }
  40912. },
  40913. paw: {
  40914. height: math.unit(0.52, "feet"),
  40915. name: "Paw",
  40916. image: {
  40917. source: "./media/characters/orion/paw.svg"
  40918. }
  40919. },
  40920. },
  40921. [
  40922. {
  40923. name: "Normal",
  40924. height: math.unit(2 + 5/12, "feet"),
  40925. default: true
  40926. },
  40927. ]
  40928. ))
  40929. characterMakers.push(() => makeCharacter(
  40930. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40931. {
  40932. front: {
  40933. height: math.unit(5 + 10/12, "feet"),
  40934. name: "Front",
  40935. image: {
  40936. source: "./media/characters/vera/front.svg",
  40937. extra: 1680/1575,
  40938. bottom: 49/1729
  40939. }
  40940. },
  40941. back: {
  40942. height: math.unit(5 + 10/12, "feet"),
  40943. name: "Back",
  40944. image: {
  40945. source: "./media/characters/vera/back.svg",
  40946. extra: 1700/1588,
  40947. bottom: 18/1718
  40948. }
  40949. },
  40950. arcanine: {
  40951. height: math.unit(6 + 8/12, "feet"),
  40952. name: "Arcanine",
  40953. image: {
  40954. source: "./media/characters/vera/arcanine.svg",
  40955. extra: 1590/1511,
  40956. bottom: 71/1661
  40957. }
  40958. },
  40959. maw: {
  40960. height: math.unit(0.82, "feet"),
  40961. name: "Maw",
  40962. image: {
  40963. source: "./media/characters/vera/maw.svg"
  40964. }
  40965. },
  40966. mawArcanine: {
  40967. height: math.unit(0.97, "feet"),
  40968. name: "Maw (Arcanine)",
  40969. image: {
  40970. source: "./media/characters/vera/maw-arcanine.svg"
  40971. }
  40972. },
  40973. paw: {
  40974. height: math.unit(0.75, "feet"),
  40975. name: "Paw",
  40976. image: {
  40977. source: "./media/characters/vera/paw.svg"
  40978. }
  40979. },
  40980. pawprint: {
  40981. height: math.unit(0.52, "feet"),
  40982. name: "Pawprint",
  40983. image: {
  40984. source: "./media/characters/vera/pawprint.svg"
  40985. }
  40986. },
  40987. },
  40988. [
  40989. {
  40990. name: "Normal",
  40991. height: math.unit(5 + 10/12, "feet"),
  40992. default: true
  40993. },
  40994. {
  40995. name: "Macro",
  40996. height: math.unit(75, "feet")
  40997. },
  40998. ]
  40999. ))
  41000. characterMakers.push(() => makeCharacter(
  41001. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41002. {
  41003. front: {
  41004. height: math.unit(4, "feet"),
  41005. weight: math.unit(40, "lb"),
  41006. name: "Front",
  41007. image: {
  41008. source: "./media/characters/orvan-rabbit/front.svg",
  41009. extra: 1896/1642,
  41010. bottom: 29/1925
  41011. }
  41012. },
  41013. },
  41014. [
  41015. {
  41016. name: "Normal",
  41017. height: math.unit(4, "feet"),
  41018. default: true
  41019. },
  41020. ]
  41021. ))
  41022. characterMakers.push(() => makeCharacter(
  41023. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41024. {
  41025. front: {
  41026. height: math.unit(6, "feet"),
  41027. weight: math.unit(168, "lb"),
  41028. name: "Front",
  41029. image: {
  41030. source: "./media/characters/lisa/front.svg",
  41031. extra: 2065/1867,
  41032. bottom: 46/2111
  41033. }
  41034. },
  41035. back: {
  41036. height: math.unit(6, "feet"),
  41037. weight: math.unit(168, "lb"),
  41038. name: "Back",
  41039. image: {
  41040. source: "./media/characters/lisa/back.svg",
  41041. extra: 1982/1838,
  41042. bottom: 29/2011
  41043. }
  41044. },
  41045. maw: {
  41046. height: math.unit(0.81, "feet"),
  41047. name: "Maw",
  41048. image: {
  41049. source: "./media/characters/lisa/maw.svg"
  41050. }
  41051. },
  41052. paw: {
  41053. height: math.unit(0.9, "feet"),
  41054. name: "Paw",
  41055. image: {
  41056. source: "./media/characters/lisa/paw.svg"
  41057. }
  41058. },
  41059. caribousune: {
  41060. height: math.unit(7 + 2/12, "feet"),
  41061. weight: math.unit(268, "lb"),
  41062. name: "Caribousune",
  41063. image: {
  41064. source: "./media/characters/lisa/caribousune.svg",
  41065. extra: 1843/1633,
  41066. bottom: 29/1872
  41067. }
  41068. },
  41069. frontCaribousune: {
  41070. height: math.unit(7 + 2/12, "feet"),
  41071. weight: math.unit(268, "lb"),
  41072. name: "Front (Caribousune)",
  41073. image: {
  41074. source: "./media/characters/lisa/front-caribousune.svg",
  41075. extra: 1818/1638,
  41076. bottom: 52/1870
  41077. }
  41078. },
  41079. sideCaribousune: {
  41080. height: math.unit(7 + 2/12, "feet"),
  41081. weight: math.unit(268, "lb"),
  41082. name: "Side (Caribousune)",
  41083. image: {
  41084. source: "./media/characters/lisa/side-caribousune.svg",
  41085. extra: 1851/1635,
  41086. bottom: 16/1867
  41087. }
  41088. },
  41089. backCaribousune: {
  41090. height: math.unit(7 + 2/12, "feet"),
  41091. weight: math.unit(268, "lb"),
  41092. name: "Back (Caribousune)",
  41093. image: {
  41094. source: "./media/characters/lisa/back-caribousune.svg",
  41095. extra: 1801/1604,
  41096. bottom: 44/1845
  41097. }
  41098. },
  41099. caribou: {
  41100. height: math.unit(7 + 2/12, "feet"),
  41101. weight: math.unit(268, "lb"),
  41102. name: "Caribou",
  41103. image: {
  41104. source: "./media/characters/lisa/caribou.svg",
  41105. extra: 1843/1633,
  41106. bottom: 29/1872
  41107. }
  41108. },
  41109. frontCaribou: {
  41110. height: math.unit(7 + 2/12, "feet"),
  41111. weight: math.unit(268, "lb"),
  41112. name: "Front (Caribou)",
  41113. image: {
  41114. source: "./media/characters/lisa/front-caribou.svg",
  41115. extra: 1818/1638,
  41116. bottom: 52/1870
  41117. }
  41118. },
  41119. sideCaribou: {
  41120. height: math.unit(7 + 2/12, "feet"),
  41121. weight: math.unit(268, "lb"),
  41122. name: "Side (Caribou)",
  41123. image: {
  41124. source: "./media/characters/lisa/side-caribou.svg",
  41125. extra: 1851/1635,
  41126. bottom: 16/1867
  41127. }
  41128. },
  41129. backCaribou: {
  41130. height: math.unit(7 + 2/12, "feet"),
  41131. weight: math.unit(268, "lb"),
  41132. name: "Back (Caribou)",
  41133. image: {
  41134. source: "./media/characters/lisa/back-caribou.svg",
  41135. extra: 1801/1604,
  41136. bottom: 44/1845
  41137. }
  41138. },
  41139. mawCaribou: {
  41140. height: math.unit(1.45, "feet"),
  41141. name: "Maw (Caribou)",
  41142. image: {
  41143. source: "./media/characters/lisa/maw-caribou.svg"
  41144. }
  41145. },
  41146. mawCaribousune: {
  41147. height: math.unit(1.45, "feet"),
  41148. name: "Maw (Caribousune)",
  41149. image: {
  41150. source: "./media/characters/lisa/maw-caribousune.svg"
  41151. }
  41152. },
  41153. pawCaribousune: {
  41154. height: math.unit(1.61, "feet"),
  41155. name: "Paw (Caribou)",
  41156. image: {
  41157. source: "./media/characters/lisa/paw-caribousune.svg"
  41158. }
  41159. },
  41160. },
  41161. [
  41162. {
  41163. name: "Normal",
  41164. height: math.unit(6, "feet")
  41165. },
  41166. {
  41167. name: "God Size",
  41168. height: math.unit(72, "feet"),
  41169. default: true
  41170. },
  41171. {
  41172. name: "Towering",
  41173. height: math.unit(288, "feet")
  41174. },
  41175. {
  41176. name: "City Size",
  41177. height: math.unit(48384, "feet")
  41178. },
  41179. {
  41180. name: "Continental",
  41181. height: math.unit(4200, "miles")
  41182. },
  41183. {
  41184. name: "Planet Eater",
  41185. height: math.unit(42, "earths")
  41186. },
  41187. {
  41188. name: "Star Swallower",
  41189. height: math.unit(42, "solarradii")
  41190. },
  41191. {
  41192. name: "System Swallower",
  41193. height: math.unit(84000, "AU")
  41194. },
  41195. {
  41196. name: "Galaxy Gobbler",
  41197. height: math.unit(42, "galaxies")
  41198. },
  41199. {
  41200. name: "Universe Devourer",
  41201. height: math.unit(42, "universes")
  41202. },
  41203. {
  41204. name: "Multiverse Muncher",
  41205. height: math.unit(42, "multiverses")
  41206. },
  41207. ]
  41208. ))
  41209. characterMakers.push(() => makeCharacter(
  41210. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41211. {
  41212. front: {
  41213. height: math.unit(36, "feet"),
  41214. name: "Front",
  41215. image: {
  41216. source: "./media/characters/shadow-rat/front.svg",
  41217. extra: 1845/1758,
  41218. bottom: 83/1928
  41219. }
  41220. },
  41221. },
  41222. [
  41223. {
  41224. name: "Macro",
  41225. height: math.unit(36, "feet"),
  41226. default: true
  41227. },
  41228. ]
  41229. ))
  41230. characterMakers.push(() => makeCharacter(
  41231. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41232. {
  41233. side: {
  41234. height: math.unit(8, "feet"),
  41235. weight: math.unit(2630, "lb"),
  41236. name: "Side",
  41237. image: {
  41238. source: "./media/characters/torallia/side.svg",
  41239. extra: 2164/2021,
  41240. bottom: 371/2535
  41241. }
  41242. },
  41243. },
  41244. [
  41245. {
  41246. name: "Mortal Interaction",
  41247. height: math.unit(8, "feet")
  41248. },
  41249. {
  41250. name: "Natural",
  41251. height: math.unit(24, "feet"),
  41252. default: true
  41253. },
  41254. {
  41255. name: "Giant",
  41256. height: math.unit(80, "feet")
  41257. },
  41258. {
  41259. name: "Kaiju",
  41260. height: math.unit(240, "feet")
  41261. },
  41262. {
  41263. name: "Macro",
  41264. height: math.unit(800, "feet")
  41265. },
  41266. {
  41267. name: "Macro+",
  41268. height: math.unit(2400, "feet")
  41269. },
  41270. {
  41271. name: "Macro++",
  41272. height: math.unit(8000, "feet")
  41273. },
  41274. {
  41275. name: "City-Crushing",
  41276. height: math.unit(24000, "feet")
  41277. },
  41278. {
  41279. name: "Mountain-Mashing",
  41280. height: math.unit(80000, "feet")
  41281. },
  41282. {
  41283. name: "District Demolisher",
  41284. height: math.unit(240000, "feet")
  41285. },
  41286. {
  41287. name: "Tri-County Terror",
  41288. height: math.unit(800000, "feet")
  41289. },
  41290. {
  41291. name: "State Smasher",
  41292. height: math.unit(2.4e6, "feet")
  41293. },
  41294. {
  41295. name: "Nation Nemesis",
  41296. height: math.unit(8e6, "feet")
  41297. },
  41298. {
  41299. name: "Continent Cracker",
  41300. height: math.unit(2.4e7, "feet")
  41301. },
  41302. {
  41303. name: "Planet-Pillaging",
  41304. height: math.unit(8e7, "feet")
  41305. },
  41306. {
  41307. name: "Earth-Eclipsing",
  41308. height: math.unit(2.4e8, "feet")
  41309. },
  41310. {
  41311. name: "Jovian-Jostling",
  41312. height: math.unit(8e8, "feet")
  41313. },
  41314. {
  41315. name: "Gas Giant Gulper",
  41316. height: math.unit(2.4e9, "feet")
  41317. },
  41318. {
  41319. name: "Astral Annihilator",
  41320. height: math.unit(8e9, "feet")
  41321. },
  41322. {
  41323. name: "Celestial Conqueror",
  41324. height: math.unit(2.4e10, "feet")
  41325. },
  41326. {
  41327. name: "Sol-Swallowing",
  41328. height: math.unit(8e10, "feet")
  41329. },
  41330. {
  41331. name: "Hunter of the Heavens",
  41332. height: math.unit(2.4e13, "feet")
  41333. },
  41334. ]
  41335. ))
  41336. characterMakers.push(() => makeCharacter(
  41337. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41338. {
  41339. front: {
  41340. height: math.unit(6 + 8/12, "feet"),
  41341. weight: math.unit(250, "kilograms"),
  41342. volume: math.unit(28, "liters"),
  41343. name: "Front",
  41344. image: {
  41345. source: "./media/characters/rebecca-pawlson/front.svg",
  41346. extra: 1737/1596,
  41347. bottom: 107/1844
  41348. }
  41349. },
  41350. back: {
  41351. height: math.unit(6 + 8/12, "feet"),
  41352. weight: math.unit(250, "kilograms"),
  41353. volume: math.unit(28, "liters"),
  41354. name: "Back",
  41355. image: {
  41356. source: "./media/characters/rebecca-pawlson/back.svg",
  41357. extra: 1702/1523,
  41358. bottom: 86/1788
  41359. }
  41360. },
  41361. },
  41362. [
  41363. {
  41364. name: "Normal",
  41365. height: math.unit(6 + 8/12, "feet")
  41366. },
  41367. {
  41368. name: "Mini Macro",
  41369. height: math.unit(10, "feet"),
  41370. default: true
  41371. },
  41372. {
  41373. name: "Macro",
  41374. height: math.unit(100, "feet")
  41375. },
  41376. {
  41377. name: "Mega Macro",
  41378. height: math.unit(2500, "feet")
  41379. },
  41380. {
  41381. name: "Giga Macro",
  41382. height: math.unit(50, "miles")
  41383. },
  41384. ]
  41385. ))
  41386. characterMakers.push(() => makeCharacter(
  41387. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41388. {
  41389. front: {
  41390. height: math.unit(7 + 6/12, "feet"),
  41391. weight: math.unit(600, "lb"),
  41392. name: "Front",
  41393. image: {
  41394. source: "./media/characters/moxie-nova/front.svg",
  41395. extra: 1734/1652,
  41396. bottom: 41/1775
  41397. }
  41398. },
  41399. },
  41400. [
  41401. {
  41402. name: "Normal",
  41403. height: math.unit(7 + 6/12, "feet"),
  41404. default: true
  41405. },
  41406. ]
  41407. ))
  41408. characterMakers.push(() => makeCharacter(
  41409. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41410. {
  41411. goat: {
  41412. height: math.unit(4, "feet"),
  41413. weight: math.unit(180, "lb"),
  41414. name: "Goat",
  41415. image: {
  41416. source: "./media/characters/tiffany/goat.svg",
  41417. extra: 1845/1595,
  41418. bottom: 106/1951
  41419. }
  41420. },
  41421. front: {
  41422. height: math.unit(5, "feet"),
  41423. weight: math.unit(150, "lb"),
  41424. name: "Foxcoon",
  41425. image: {
  41426. source: "./media/characters/tiffany/foxcoon.svg",
  41427. extra: 1941/1845,
  41428. bottom: 58/1999
  41429. }
  41430. },
  41431. },
  41432. [
  41433. {
  41434. name: "Normal",
  41435. height: math.unit(5, "feet"),
  41436. default: true
  41437. },
  41438. ]
  41439. ))
  41440. characterMakers.push(() => makeCharacter(
  41441. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41442. {
  41443. front: {
  41444. height: math.unit(8, "feet"),
  41445. weight: math.unit(300, "lb"),
  41446. name: "Front",
  41447. image: {
  41448. source: "./media/characters/raxinath/front.svg",
  41449. extra: 1407/1309,
  41450. bottom: 39/1446
  41451. }
  41452. },
  41453. back: {
  41454. height: math.unit(8, "feet"),
  41455. weight: math.unit(300, "lb"),
  41456. name: "Back",
  41457. image: {
  41458. source: "./media/characters/raxinath/back.svg",
  41459. extra: 1405/1315,
  41460. bottom: 9/1414
  41461. }
  41462. },
  41463. },
  41464. [
  41465. {
  41466. name: "Speck",
  41467. height: math.unit(0.5, "nm")
  41468. },
  41469. {
  41470. name: "Micro",
  41471. height: math.unit(3, "inches")
  41472. },
  41473. {
  41474. name: "Kobold",
  41475. height: math.unit(3, "feet")
  41476. },
  41477. {
  41478. name: "Normal",
  41479. height: math.unit(8, "feet"),
  41480. default: true
  41481. },
  41482. {
  41483. name: "Giant",
  41484. height: math.unit(50, "feet")
  41485. },
  41486. {
  41487. name: "Macro",
  41488. height: math.unit(1000, "feet")
  41489. },
  41490. {
  41491. name: "Megamacro",
  41492. height: math.unit(1, "mile")
  41493. },
  41494. ]
  41495. ))
  41496. characterMakers.push(() => makeCharacter(
  41497. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41498. {
  41499. front: {
  41500. height: math.unit(10, "feet"),
  41501. weight: math.unit(1442, "lb"),
  41502. name: "Front",
  41503. image: {
  41504. source: "./media/characters/mal-dragon/front.svg",
  41505. extra: 1515/1444,
  41506. bottom: 113/1628
  41507. }
  41508. },
  41509. back: {
  41510. height: math.unit(10, "feet"),
  41511. weight: math.unit(1442, "lb"),
  41512. name: "Back",
  41513. image: {
  41514. source: "./media/characters/mal-dragon/back.svg",
  41515. extra: 1527/1434,
  41516. bottom: 25/1552
  41517. }
  41518. },
  41519. },
  41520. [
  41521. {
  41522. name: "Mortal Interaction",
  41523. height: math.unit(10, "feet"),
  41524. default: true
  41525. },
  41526. {
  41527. name: "Large",
  41528. height: math.unit(30, "feet")
  41529. },
  41530. {
  41531. name: "Kaiju",
  41532. height: math.unit(300, "feet")
  41533. },
  41534. {
  41535. name: "Megamacro",
  41536. height: math.unit(10000, "feet")
  41537. },
  41538. {
  41539. name: "Continent Cracker",
  41540. height: math.unit(30000000, "feet")
  41541. },
  41542. {
  41543. name: "Sol-Swallowing",
  41544. height: math.unit(1e11, "feet")
  41545. },
  41546. {
  41547. name: "Light Universal",
  41548. height: math.unit(5, "universes")
  41549. },
  41550. {
  41551. name: "Universe Atoms",
  41552. height: math.unit(1.829e9, "universes")
  41553. },
  41554. {
  41555. name: "Light Multiversal",
  41556. height: math.unit(5, "multiverses")
  41557. },
  41558. {
  41559. name: "Multiverse Atoms",
  41560. height: math.unit(1.829e9, "multiverses")
  41561. },
  41562. {
  41563. name: "Fabric of Time",
  41564. height: math.unit(1e262, "multiverses")
  41565. },
  41566. ]
  41567. ))
  41568. characterMakers.push(() => makeCharacter(
  41569. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41570. {
  41571. front: {
  41572. height: math.unit(9, "feet"),
  41573. weight: math.unit(1050, "lb"),
  41574. name: "Front",
  41575. image: {
  41576. source: "./media/characters/tabitha/front.svg",
  41577. extra: 2083/1994,
  41578. bottom: 68/2151
  41579. }
  41580. },
  41581. },
  41582. [
  41583. {
  41584. name: "Baseline",
  41585. height: math.unit(9, "feet"),
  41586. default: true
  41587. },
  41588. {
  41589. name: "Giant",
  41590. height: math.unit(90, "feet")
  41591. },
  41592. {
  41593. name: "Macro",
  41594. height: math.unit(900, "feet")
  41595. },
  41596. {
  41597. name: "Megamacro",
  41598. height: math.unit(9000, "feet")
  41599. },
  41600. {
  41601. name: "City-Crushing",
  41602. height: math.unit(27000, "feet")
  41603. },
  41604. {
  41605. name: "Mountain-Mashing",
  41606. height: math.unit(90000, "feet")
  41607. },
  41608. {
  41609. name: "Nation Nemesis",
  41610. height: math.unit(9e6, "feet")
  41611. },
  41612. {
  41613. name: "Continent Cracker",
  41614. height: math.unit(27e6, "feet")
  41615. },
  41616. {
  41617. name: "Earth-Eclipsing",
  41618. height: math.unit(2.7e8, "feet")
  41619. },
  41620. {
  41621. name: "Gas Giant Gulper",
  41622. height: math.unit(2.7e9, "feet")
  41623. },
  41624. {
  41625. name: "Sol-Swallowing",
  41626. height: math.unit(9e10, "feet")
  41627. },
  41628. {
  41629. name: "Galaxy Gulper",
  41630. height: math.unit(9, "galaxies")
  41631. },
  41632. {
  41633. name: "Cosmos Churner",
  41634. height: math.unit(9, "universes")
  41635. },
  41636. ]
  41637. ))
  41638. characterMakers.push(() => makeCharacter(
  41639. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41640. {
  41641. front: {
  41642. height: math.unit(160, "cm"),
  41643. weight: math.unit(55, "kg"),
  41644. name: "Front",
  41645. image: {
  41646. source: "./media/characters/tow/front.svg",
  41647. extra: 1751/1722,
  41648. bottom: 74/1825
  41649. }
  41650. },
  41651. },
  41652. [
  41653. {
  41654. name: "Norm",
  41655. height: math.unit(160, "cm")
  41656. },
  41657. {
  41658. name: "Casual",
  41659. height: math.unit(3200, "m"),
  41660. default: true
  41661. },
  41662. {
  41663. name: "Show-Off",
  41664. height: math.unit(160, "km")
  41665. },
  41666. ]
  41667. ))
  41668. characterMakers.push(() => makeCharacter(
  41669. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41670. {
  41671. front: {
  41672. height: math.unit(7 + 11/12, "feet"),
  41673. weight: math.unit(342.8, "lb"),
  41674. name: "Front",
  41675. image: {
  41676. source: "./media/characters/vivian-orca-dragon/front.svg",
  41677. extra: 1890/1865,
  41678. bottom: 28/1918
  41679. }
  41680. },
  41681. },
  41682. [
  41683. {
  41684. name: "Micro",
  41685. height: math.unit(5, "inches")
  41686. },
  41687. {
  41688. name: "Normal",
  41689. height: math.unit(7 + 11/12, "feet"),
  41690. default: true
  41691. },
  41692. {
  41693. name: "Macro",
  41694. height: math.unit(395 + 7/12, "feet")
  41695. },
  41696. ]
  41697. ))
  41698. characterMakers.push(() => makeCharacter(
  41699. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41700. {
  41701. side: {
  41702. height: math.unit(10, "feet"),
  41703. weight: math.unit(1442, "lb"),
  41704. name: "Side",
  41705. image: {
  41706. source: "./media/characters/lotherakon/side.svg",
  41707. extra: 1604/1497,
  41708. bottom: 89/1693
  41709. }
  41710. },
  41711. },
  41712. [
  41713. {
  41714. name: "Mortal Interaction",
  41715. height: math.unit(10, "feet")
  41716. },
  41717. {
  41718. name: "Large",
  41719. height: math.unit(30, "feet"),
  41720. default: true
  41721. },
  41722. {
  41723. name: "Giant",
  41724. height: math.unit(100, "feet")
  41725. },
  41726. {
  41727. name: "Kaiju",
  41728. height: math.unit(300, "feet")
  41729. },
  41730. {
  41731. name: "Macro",
  41732. height: math.unit(1000, "feet")
  41733. },
  41734. {
  41735. name: "Macro+",
  41736. height: math.unit(3000, "feet")
  41737. },
  41738. {
  41739. name: "Megamacro",
  41740. height: math.unit(10000, "feet")
  41741. },
  41742. {
  41743. name: "City-Crushing",
  41744. height: math.unit(30000, "feet")
  41745. },
  41746. {
  41747. name: "Continent Cracker",
  41748. height: math.unit(30e6, "feet")
  41749. },
  41750. {
  41751. name: "Earth Eclipsing",
  41752. height: math.unit(3e8, "feet")
  41753. },
  41754. {
  41755. name: "Gas Giant Gulper",
  41756. height: math.unit(3e9, "feet")
  41757. },
  41758. {
  41759. name: "Sol-Swallowing",
  41760. height: math.unit(1e11, "feet")
  41761. },
  41762. {
  41763. name: "System Swallower",
  41764. height: math.unit(3e14, "feet")
  41765. },
  41766. {
  41767. name: "Galaxy Gulper",
  41768. height: math.unit(10, "galaxies")
  41769. },
  41770. {
  41771. name: "Light Universal",
  41772. height: math.unit(5, "universes")
  41773. },
  41774. {
  41775. name: "Universe Palm",
  41776. height: math.unit(20, "universes")
  41777. },
  41778. {
  41779. name: "Light Multiversal",
  41780. height: math.unit(5, "multiverses")
  41781. },
  41782. {
  41783. name: "Multiverse Palm",
  41784. height: math.unit(20, "multiverses")
  41785. },
  41786. {
  41787. name: "Inferno Incarnate",
  41788. height: math.unit(1e7, "multiverses")
  41789. },
  41790. ]
  41791. ))
  41792. characterMakers.push(() => makeCharacter(
  41793. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41794. {
  41795. front: {
  41796. height: math.unit(8, "feet"),
  41797. weight: math.unit(1200, "lb"),
  41798. name: "Front",
  41799. image: {
  41800. source: "./media/characters/malithee/front.svg",
  41801. extra: 1675/1640,
  41802. bottom: 162/1837
  41803. }
  41804. },
  41805. },
  41806. [
  41807. {
  41808. name: "Mortal Interaction",
  41809. height: math.unit(8, "feet"),
  41810. default: true
  41811. },
  41812. {
  41813. name: "Large",
  41814. height: math.unit(24, "feet")
  41815. },
  41816. {
  41817. name: "Kaiju",
  41818. height: math.unit(240, "feet")
  41819. },
  41820. {
  41821. name: "Megamacro",
  41822. height: math.unit(8000, "feet")
  41823. },
  41824. {
  41825. name: "Continent Cracker",
  41826. height: math.unit(24e6, "feet")
  41827. },
  41828. {
  41829. name: "Earth-Eclipsing",
  41830. height: math.unit(2.4e8, "feet")
  41831. },
  41832. {
  41833. name: "Sol-Swallowing",
  41834. height: math.unit(8e10, "feet")
  41835. },
  41836. {
  41837. name: "Galaxy Gulper",
  41838. height: math.unit(8, "galaxies")
  41839. },
  41840. {
  41841. name: "Light Universal",
  41842. height: math.unit(4, "universes")
  41843. },
  41844. {
  41845. name: "Universe Atoms",
  41846. height: math.unit(1.829e9, "universes")
  41847. },
  41848. {
  41849. name: "Light Multiversal",
  41850. height: math.unit(4, "multiverses")
  41851. },
  41852. {
  41853. name: "Multiverse Atoms",
  41854. height: math.unit(1.829e9, "multiverses")
  41855. },
  41856. {
  41857. name: "Nigh-Omnipresence",
  41858. height: math.unit(8e261, "multiverses")
  41859. },
  41860. ]
  41861. ))
  41862. characterMakers.push(() => makeCharacter(
  41863. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41864. {
  41865. front: {
  41866. height: math.unit(10, "feet"),
  41867. weight: math.unit(1500, "lb"),
  41868. name: "Front",
  41869. image: {
  41870. source: "./media/characters/miles-thestia/front.svg",
  41871. extra: 1812/1727,
  41872. bottom: 86/1898
  41873. }
  41874. },
  41875. back: {
  41876. height: math.unit(10, "feet"),
  41877. weight: math.unit(1500, "lb"),
  41878. name: "Back",
  41879. image: {
  41880. source: "./media/characters/miles-thestia/back.svg",
  41881. extra: 1799/1690,
  41882. bottom: 47/1846
  41883. }
  41884. },
  41885. frontNsfw: {
  41886. height: math.unit(10, "feet"),
  41887. weight: math.unit(1500, "lb"),
  41888. name: "Front (NSFW)",
  41889. image: {
  41890. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41891. extra: 1812/1727,
  41892. bottom: 86/1898
  41893. }
  41894. },
  41895. },
  41896. [
  41897. {
  41898. name: "Mini-Macro",
  41899. height: math.unit(10, "feet"),
  41900. default: true
  41901. },
  41902. ]
  41903. ))
  41904. characterMakers.push(() => makeCharacter(
  41905. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41906. {
  41907. front: {
  41908. height: math.unit(25, "feet"),
  41909. name: "Front",
  41910. image: {
  41911. source: "./media/characters/titan-s-wulf/front.svg",
  41912. extra: 1560/1484,
  41913. bottom: 76/1636
  41914. }
  41915. },
  41916. },
  41917. [
  41918. {
  41919. name: "Smallest",
  41920. height: math.unit(25, "feet"),
  41921. default: true
  41922. },
  41923. {
  41924. name: "Normal",
  41925. height: math.unit(200, "feet")
  41926. },
  41927. {
  41928. name: "Macro",
  41929. height: math.unit(200000, "feet")
  41930. },
  41931. {
  41932. name: "Multiversal Original",
  41933. height: math.unit(10000, "multiverses")
  41934. },
  41935. ]
  41936. ))
  41937. characterMakers.push(() => makeCharacter(
  41938. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41939. {
  41940. front: {
  41941. height: math.unit(8, "feet"),
  41942. weight: math.unit(553, "lb"),
  41943. name: "Front",
  41944. image: {
  41945. source: "./media/characters/tawendeh/front.svg",
  41946. extra: 2365/2268,
  41947. bottom: 83/2448
  41948. }
  41949. },
  41950. frontClothed: {
  41951. height: math.unit(8, "feet"),
  41952. weight: math.unit(553, "lb"),
  41953. name: "Front (Clothed)",
  41954. image: {
  41955. source: "./media/characters/tawendeh/front-clothed.svg",
  41956. extra: 2365/2268,
  41957. bottom: 83/2448
  41958. }
  41959. },
  41960. back: {
  41961. height: math.unit(8, "feet"),
  41962. weight: math.unit(553, "lb"),
  41963. name: "Back",
  41964. image: {
  41965. source: "./media/characters/tawendeh/back.svg",
  41966. extra: 2397/2294,
  41967. bottom: 42/2439
  41968. }
  41969. },
  41970. },
  41971. [
  41972. {
  41973. name: "Mortal Interaction",
  41974. height: math.unit(8, "feet"),
  41975. default: true
  41976. },
  41977. {
  41978. name: "Giant",
  41979. height: math.unit(80, "feet")
  41980. },
  41981. {
  41982. name: "Macro",
  41983. height: math.unit(800, "feet")
  41984. },
  41985. {
  41986. name: "Megamacro",
  41987. height: math.unit(8000, "feet")
  41988. },
  41989. {
  41990. name: "City-Crushing",
  41991. height: math.unit(24000, "feet")
  41992. },
  41993. {
  41994. name: "Mountain-Mashing",
  41995. height: math.unit(80000, "feet")
  41996. },
  41997. {
  41998. name: "Nation Nemesis",
  41999. height: math.unit(8e6, "feet")
  42000. },
  42001. {
  42002. name: "Continent Cracker",
  42003. height: math.unit(24e6, "feet")
  42004. },
  42005. {
  42006. name: "Earth-Eclipsing",
  42007. height: math.unit(2.4e8, "feet")
  42008. },
  42009. {
  42010. name: "Gas Giant Gulper",
  42011. height: math.unit(2.4e9, "feet")
  42012. },
  42013. {
  42014. name: "Sol-Swallowing",
  42015. height: math.unit(8e10, "feet")
  42016. },
  42017. {
  42018. name: "Galaxy Gulper",
  42019. height: math.unit(8, "galaxies")
  42020. },
  42021. {
  42022. name: "Cosmos Churner",
  42023. height: math.unit(8, "universes")
  42024. },
  42025. {
  42026. name: "Omnipotent Otter",
  42027. height: math.unit(80, "universes")
  42028. },
  42029. ]
  42030. ))
  42031. characterMakers.push(() => makeCharacter(
  42032. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42033. {
  42034. front: {
  42035. height: math.unit(2.6, "meters"),
  42036. weight: math.unit(900, "kg"),
  42037. name: "Front",
  42038. image: {
  42039. source: "./media/characters/neesha/front.svg",
  42040. extra: 1803/1653,
  42041. bottom: 128/1931
  42042. }
  42043. },
  42044. },
  42045. [
  42046. {
  42047. name: "Normal",
  42048. height: math.unit(2.6, "meters"),
  42049. default: true
  42050. },
  42051. {
  42052. name: "Macro",
  42053. height: math.unit(50, "meters")
  42054. },
  42055. ]
  42056. ))
  42057. characterMakers.push(() => makeCharacter(
  42058. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42059. {
  42060. front: {
  42061. height: math.unit(5, "feet"),
  42062. weight: math.unit(185, "lb"),
  42063. name: "Front",
  42064. image: {
  42065. source: "./media/characters/kyera/front.svg",
  42066. extra: 1875/1790,
  42067. bottom: 96/1971
  42068. }
  42069. },
  42070. },
  42071. [
  42072. {
  42073. name: "Normal",
  42074. height: math.unit(5, "feet"),
  42075. default: true
  42076. },
  42077. ]
  42078. ))
  42079. characterMakers.push(() => makeCharacter(
  42080. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42081. {
  42082. front: {
  42083. height: math.unit(7 + 6/12, "feet"),
  42084. weight: math.unit(540, "lb"),
  42085. name: "Front",
  42086. image: {
  42087. source: "./media/characters/yuko/front.svg",
  42088. extra: 1282/1222,
  42089. bottom: 101/1383
  42090. }
  42091. },
  42092. frontClothed: {
  42093. height: math.unit(7 + 6/12, "feet"),
  42094. weight: math.unit(540, "lb"),
  42095. name: "Front (Clothed)",
  42096. image: {
  42097. source: "./media/characters/yuko/front-clothed.svg",
  42098. extra: 1282/1222,
  42099. bottom: 101/1383
  42100. }
  42101. },
  42102. },
  42103. [
  42104. {
  42105. name: "Normal",
  42106. height: math.unit(7 + 6/12, "feet"),
  42107. default: true
  42108. },
  42109. {
  42110. name: "Macro",
  42111. height: math.unit(26 + 9/12, "feet")
  42112. },
  42113. {
  42114. name: "Megamacro",
  42115. height: math.unit(300, "feet")
  42116. },
  42117. {
  42118. name: "Gigamacro",
  42119. height: math.unit(5000, "feet")
  42120. },
  42121. {
  42122. name: "Planetary",
  42123. height: math.unit(10000, "miles")
  42124. },
  42125. ]
  42126. ))
  42127. characterMakers.push(() => makeCharacter(
  42128. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42129. {
  42130. front: {
  42131. height: math.unit(8 + 2/12, "feet"),
  42132. weight: math.unit(600, "lb"),
  42133. name: "Front",
  42134. image: {
  42135. source: "./media/characters/deam-nitrel/front.svg",
  42136. extra: 1308/1234,
  42137. bottom: 125/1433
  42138. }
  42139. },
  42140. },
  42141. [
  42142. {
  42143. name: "Normal",
  42144. height: math.unit(8 + 2/12, "feet"),
  42145. default: true
  42146. },
  42147. ]
  42148. ))
  42149. characterMakers.push(() => makeCharacter(
  42150. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42151. {
  42152. front: {
  42153. height: math.unit(6.1, "feet"),
  42154. weight: math.unit(180, "lb"),
  42155. name: "Front",
  42156. image: {
  42157. source: "./media/characters/skyress/front.svg",
  42158. extra: 1045/915,
  42159. bottom: 28/1073
  42160. }
  42161. },
  42162. maw: {
  42163. height: math.unit(1, "feet"),
  42164. name: "Maw",
  42165. image: {
  42166. source: "./media/characters/skyress/maw.svg"
  42167. }
  42168. },
  42169. },
  42170. [
  42171. {
  42172. name: "Normal",
  42173. height: math.unit(6.1, "feet"),
  42174. default: true
  42175. },
  42176. {
  42177. name: "Macro",
  42178. height: math.unit(200, "feet")
  42179. },
  42180. ]
  42181. ))
  42182. characterMakers.push(() => makeCharacter(
  42183. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42184. {
  42185. front: {
  42186. height: math.unit(4 + 2/12, "feet"),
  42187. weight: math.unit(40, "kg"),
  42188. name: "Front",
  42189. image: {
  42190. source: "./media/characters/amethyst-jones/front.svg",
  42191. extra: 1220/1150,
  42192. bottom: 101/1321
  42193. }
  42194. },
  42195. },
  42196. [
  42197. {
  42198. name: "Normal",
  42199. height: math.unit(4 + 2/12, "feet"),
  42200. default: true
  42201. },
  42202. ]
  42203. ))
  42204. characterMakers.push(() => makeCharacter(
  42205. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42206. {
  42207. front: {
  42208. height: math.unit(1.7, "m"),
  42209. weight: math.unit(135, "lb"),
  42210. name: "Front",
  42211. image: {
  42212. source: "./media/characters/jade/front.svg",
  42213. extra: 1818/1767,
  42214. bottom: 32/1850
  42215. }
  42216. },
  42217. back: {
  42218. height: math.unit(1.7, "m"),
  42219. weight: math.unit(135, "lb"),
  42220. name: "Back",
  42221. image: {
  42222. source: "./media/characters/jade/back.svg",
  42223. extra: 1869/1809,
  42224. bottom: 35/1904
  42225. }
  42226. },
  42227. hand: {
  42228. height: math.unit(0.24, "m"),
  42229. name: "Hand",
  42230. image: {
  42231. source: "./media/characters/jade/hand.svg"
  42232. }
  42233. },
  42234. foot: {
  42235. height: math.unit(0.263, "m"),
  42236. name: "Foot",
  42237. image: {
  42238. source: "./media/characters/jade/foot.svg"
  42239. }
  42240. },
  42241. dick: {
  42242. height: math.unit(0.47, "m"),
  42243. name: "Dick",
  42244. image: {
  42245. source: "./media/characters/jade/dick.svg"
  42246. }
  42247. },
  42248. },
  42249. [
  42250. {
  42251. name: "Micro",
  42252. height: math.unit(22, "cm")
  42253. },
  42254. {
  42255. name: "Normal",
  42256. height: math.unit(1.7, "m"),
  42257. default: true
  42258. },
  42259. {
  42260. name: "Macro",
  42261. height: math.unit(152, "m")
  42262. },
  42263. ]
  42264. ))
  42265. characterMakers.push(() => makeCharacter(
  42266. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42267. {
  42268. front: {
  42269. height: math.unit(100, "miles"),
  42270. weight: math.unit(20000, "tons"),
  42271. name: "Front",
  42272. image: {
  42273. source: "./media/characters/cookie/front.svg",
  42274. extra: 1125/1070,
  42275. bottom: 30/1155
  42276. }
  42277. },
  42278. },
  42279. [
  42280. {
  42281. name: "Big",
  42282. height: math.unit(50, "feet")
  42283. },
  42284. {
  42285. name: "Macro",
  42286. height: math.unit(100, "miles"),
  42287. default: true
  42288. },
  42289. {
  42290. name: "Megamacro",
  42291. height: math.unit(90000, "miles")
  42292. },
  42293. ]
  42294. ))
  42295. characterMakers.push(() => makeCharacter(
  42296. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42297. {
  42298. front: {
  42299. height: math.unit(6, "feet"),
  42300. weight: math.unit(145, "lb"),
  42301. name: "Front",
  42302. image: {
  42303. source: "./media/characters/farzian/front.svg",
  42304. extra: 1902/1693,
  42305. bottom: 108/2010
  42306. }
  42307. },
  42308. },
  42309. [
  42310. {
  42311. name: "Macro",
  42312. height: math.unit(500, "feet"),
  42313. default: true
  42314. },
  42315. ]
  42316. ))
  42317. characterMakers.push(() => makeCharacter(
  42318. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42319. {
  42320. front: {
  42321. height: math.unit(3 + 6/12, "feet"),
  42322. weight: math.unit(50, "lb"),
  42323. name: "Front",
  42324. image: {
  42325. source: "./media/characters/kimberly-tilson/front.svg",
  42326. extra: 1400/1322,
  42327. bottom: 36/1436
  42328. }
  42329. },
  42330. back: {
  42331. height: math.unit(3 + 6/12, "feet"),
  42332. weight: math.unit(50, "lb"),
  42333. name: "Back",
  42334. image: {
  42335. source: "./media/characters/kimberly-tilson/back.svg",
  42336. extra: 1370/1307,
  42337. bottom: 20/1390
  42338. }
  42339. },
  42340. },
  42341. [
  42342. {
  42343. name: "Normal",
  42344. height: math.unit(3 + 6/12, "feet"),
  42345. default: true
  42346. },
  42347. ]
  42348. ))
  42349. characterMakers.push(() => makeCharacter(
  42350. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  42351. {
  42352. front: {
  42353. height: math.unit(1148, "feet"),
  42354. weight: math.unit(34057, "lb"),
  42355. name: "Front",
  42356. image: {
  42357. source: "./media/characters/harthos/front.svg",
  42358. extra: 1391/1339,
  42359. bottom: 13/1404
  42360. }
  42361. },
  42362. },
  42363. [
  42364. {
  42365. name: "Macro",
  42366. height: math.unit(1148, "feet"),
  42367. default: true
  42368. },
  42369. ]
  42370. ))
  42371. characterMakers.push(() => makeCharacter(
  42372. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42373. {
  42374. front: {
  42375. height: math.unit(15, "feet"),
  42376. name: "Front",
  42377. image: {
  42378. source: "./media/characters/hypatia/front.svg",
  42379. extra: 1653/1591,
  42380. bottom: 79/1732
  42381. }
  42382. },
  42383. },
  42384. [
  42385. {
  42386. name: "Normal",
  42387. height: math.unit(15, "feet")
  42388. },
  42389. {
  42390. name: "Small",
  42391. height: math.unit(300, "feet")
  42392. },
  42393. {
  42394. name: "Macro",
  42395. height: math.unit(2500, "feet"),
  42396. default: true
  42397. },
  42398. {
  42399. name: "Mega Macro",
  42400. height: math.unit(1500, "miles")
  42401. },
  42402. {
  42403. name: "Giga Macro",
  42404. height: math.unit(1.5e6, "miles")
  42405. },
  42406. ]
  42407. ))
  42408. characterMakers.push(() => makeCharacter(
  42409. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42410. {
  42411. front: {
  42412. height: math.unit(6, "feet"),
  42413. weight: math.unit(200, "lb"),
  42414. name: "Front",
  42415. image: {
  42416. source: "./media/characters/wulver/front.svg",
  42417. extra: 1724/1632,
  42418. bottom: 130/1854
  42419. }
  42420. },
  42421. frontNsfw: {
  42422. height: math.unit(6, "feet"),
  42423. weight: math.unit(200, "lb"),
  42424. name: "Front (NSFW)",
  42425. image: {
  42426. source: "./media/characters/wulver/front-nsfw.svg",
  42427. extra: 1724/1632,
  42428. bottom: 130/1854
  42429. }
  42430. },
  42431. },
  42432. [
  42433. {
  42434. name: "Human-Sized",
  42435. height: math.unit(6, "feet")
  42436. },
  42437. {
  42438. name: "Normal",
  42439. height: math.unit(4, "meters"),
  42440. default: true
  42441. },
  42442. {
  42443. name: "Large",
  42444. height: math.unit(6, "m")
  42445. },
  42446. ]
  42447. ))
  42448. characterMakers.push(() => makeCharacter(
  42449. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42450. {
  42451. front: {
  42452. height: math.unit(7, "feet"),
  42453. name: "Front",
  42454. image: {
  42455. source: "./media/characters/maru/front.svg",
  42456. extra: 1595/1570,
  42457. bottom: 0/1595
  42458. }
  42459. },
  42460. },
  42461. [
  42462. {
  42463. name: "Normal",
  42464. height: math.unit(7, "feet"),
  42465. default: true
  42466. },
  42467. {
  42468. name: "Macro",
  42469. height: math.unit(700, "feet")
  42470. },
  42471. {
  42472. name: "Mega Macro",
  42473. height: math.unit(25, "miles")
  42474. },
  42475. ]
  42476. ))
  42477. characterMakers.push(() => makeCharacter(
  42478. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42479. {
  42480. front: {
  42481. height: math.unit(6, "feet"),
  42482. weight: math.unit(170, "lb"),
  42483. name: "Front",
  42484. image: {
  42485. source: "./media/characters/xenon/front.svg",
  42486. extra: 1376/1305,
  42487. bottom: 56/1432
  42488. }
  42489. },
  42490. back: {
  42491. height: math.unit(6, "feet"),
  42492. weight: math.unit(170, "lb"),
  42493. name: "Back",
  42494. image: {
  42495. source: "./media/characters/xenon/back.svg",
  42496. extra: 1328/1259,
  42497. bottom: 95/1423
  42498. }
  42499. },
  42500. maw: {
  42501. height: math.unit(0.52, "feet"),
  42502. name: "Maw",
  42503. image: {
  42504. source: "./media/characters/xenon/maw.svg"
  42505. }
  42506. },
  42507. handLeft: {
  42508. height: math.unit(0.82 * 169 / 153, "feet"),
  42509. name: "Hand (Left)",
  42510. image: {
  42511. source: "./media/characters/xenon/hand-left.svg"
  42512. }
  42513. },
  42514. handRight: {
  42515. height: math.unit(0.82, "feet"),
  42516. name: "Hand (Right)",
  42517. image: {
  42518. source: "./media/characters/xenon/hand-right.svg"
  42519. }
  42520. },
  42521. footLeft: {
  42522. height: math.unit(1.13, "feet"),
  42523. name: "Foot (Left)",
  42524. image: {
  42525. source: "./media/characters/xenon/foot-left.svg"
  42526. }
  42527. },
  42528. footRight: {
  42529. height: math.unit(1.13 * 194 / 196, "feet"),
  42530. name: "Foot (Right)",
  42531. image: {
  42532. source: "./media/characters/xenon/foot-right.svg"
  42533. }
  42534. },
  42535. },
  42536. [
  42537. {
  42538. name: "Micro",
  42539. height: math.unit(0.8, "inches")
  42540. },
  42541. {
  42542. name: "Normal",
  42543. height: math.unit(6, "feet")
  42544. },
  42545. {
  42546. name: "Macro",
  42547. height: math.unit(50, "feet"),
  42548. default: true
  42549. },
  42550. {
  42551. name: "Macro+",
  42552. height: math.unit(250, "feet")
  42553. },
  42554. {
  42555. name: "Megamacro",
  42556. height: math.unit(1500, "feet")
  42557. },
  42558. ]
  42559. ))
  42560. characterMakers.push(() => makeCharacter(
  42561. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42562. {
  42563. front: {
  42564. height: math.unit(7 + 5/12, "feet"),
  42565. name: "Front",
  42566. image: {
  42567. source: "./media/characters/zane/front.svg",
  42568. extra: 1260/1203,
  42569. bottom: 94/1354
  42570. }
  42571. },
  42572. back: {
  42573. height: math.unit(5.05, "feet"),
  42574. name: "Back",
  42575. image: {
  42576. source: "./media/characters/zane/back.svg",
  42577. extra: 893/829,
  42578. bottom: 30/923
  42579. }
  42580. },
  42581. werewolf: {
  42582. height: math.unit(11, "feet"),
  42583. name: "Werewolf",
  42584. image: {
  42585. source: "./media/characters/zane/werewolf.svg",
  42586. extra: 1383/1323,
  42587. bottom: 89/1472
  42588. }
  42589. },
  42590. foot: {
  42591. height: math.unit(1.46, "feet"),
  42592. name: "Foot",
  42593. image: {
  42594. source: "./media/characters/zane/foot.svg"
  42595. }
  42596. },
  42597. footFront: {
  42598. height: math.unit(0.784, "feet"),
  42599. name: "Foot (Front)",
  42600. image: {
  42601. source: "./media/characters/zane/foot-front.svg"
  42602. }
  42603. },
  42604. dick: {
  42605. height: math.unit(1.95, "feet"),
  42606. name: "Dick",
  42607. image: {
  42608. source: "./media/characters/zane/dick.svg"
  42609. }
  42610. },
  42611. dickWerewolf: {
  42612. height: math.unit(3.77, "feet"),
  42613. name: "Dick (Werewolf)",
  42614. image: {
  42615. source: "./media/characters/zane/dick.svg"
  42616. }
  42617. },
  42618. },
  42619. [
  42620. {
  42621. name: "Normal",
  42622. height: math.unit(7 + 5/12, "feet"),
  42623. default: true
  42624. },
  42625. ]
  42626. ))
  42627. characterMakers.push(() => makeCharacter(
  42628. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42629. {
  42630. front: {
  42631. height: math.unit(6 + 2/12, "feet"),
  42632. weight: math.unit(284, "lb"),
  42633. name: "Front",
  42634. image: {
  42635. source: "./media/characters/benni-desparque/front.svg",
  42636. extra: 1353/1126,
  42637. bottom: 69/1422
  42638. }
  42639. },
  42640. },
  42641. [
  42642. {
  42643. name: "Civilian",
  42644. height: math.unit(6 + 2/12, "feet")
  42645. },
  42646. {
  42647. name: "Normal",
  42648. height: math.unit(98, "feet"),
  42649. default: true
  42650. },
  42651. {
  42652. name: "Kaiju Fighter",
  42653. height: math.unit(268, "feet")
  42654. },
  42655. ]
  42656. ))
  42657. characterMakers.push(() => makeCharacter(
  42658. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42659. {
  42660. front: {
  42661. height: math.unit(5, "feet"),
  42662. weight: math.unit(105, "lb"),
  42663. name: "Front",
  42664. image: {
  42665. source: "./media/characters/maxine/front.svg",
  42666. extra: 1386/1250,
  42667. bottom: 71/1457
  42668. }
  42669. },
  42670. },
  42671. [
  42672. {
  42673. name: "Normal",
  42674. height: math.unit(5, "feet"),
  42675. default: true
  42676. },
  42677. ]
  42678. ))
  42679. characterMakers.push(() => makeCharacter(
  42680. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42681. {
  42682. front: {
  42683. height: math.unit(11 + 7/12, "feet"),
  42684. weight: math.unit(9576, "lb"),
  42685. name: "Front",
  42686. image: {
  42687. source: "./media/characters/scaly/front.svg",
  42688. extra: 888/867,
  42689. bottom: 36/924
  42690. }
  42691. },
  42692. },
  42693. [
  42694. {
  42695. name: "Normal",
  42696. height: math.unit(11 + 7/12, "feet"),
  42697. default: true
  42698. },
  42699. ]
  42700. ))
  42701. characterMakers.push(() => makeCharacter(
  42702. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42703. {
  42704. front: {
  42705. height: math.unit(6 + 3/12, "feet"),
  42706. name: "Front",
  42707. image: {
  42708. source: "./media/characters/saelria/front.svg",
  42709. extra: 1243/1138,
  42710. bottom: 46/1289
  42711. }
  42712. },
  42713. },
  42714. [
  42715. {
  42716. name: "Micro",
  42717. height: math.unit(6, "inches"),
  42718. },
  42719. {
  42720. name: "Normal",
  42721. height: math.unit(6 + 3/12, "feet"),
  42722. default: true
  42723. },
  42724. {
  42725. name: "Macro",
  42726. height: math.unit(25, "feet")
  42727. },
  42728. ]
  42729. ))
  42730. characterMakers.push(() => makeCharacter(
  42731. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42732. {
  42733. front: {
  42734. height: math.unit(80, "meters"),
  42735. weight: math.unit(7000, "tonnes"),
  42736. name: "Front",
  42737. image: {
  42738. source: "./media/characters/tef/front.svg",
  42739. extra: 2036/1991,
  42740. bottom: 54/2090
  42741. }
  42742. },
  42743. back: {
  42744. height: math.unit(80, "meters"),
  42745. weight: math.unit(7000, "tonnes"),
  42746. name: "Back",
  42747. image: {
  42748. source: "./media/characters/tef/back.svg",
  42749. extra: 2036/1991,
  42750. bottom: 54/2090
  42751. }
  42752. },
  42753. },
  42754. [
  42755. {
  42756. name: "Macro",
  42757. height: math.unit(80, "meters"),
  42758. default: true
  42759. },
  42760. ]
  42761. ))
  42762. characterMakers.push(() => makeCharacter(
  42763. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42764. {
  42765. front: {
  42766. height: math.unit(13, "feet"),
  42767. weight: math.unit(6, "tons"),
  42768. name: "Front",
  42769. image: {
  42770. source: "./media/characters/rover/front.svg",
  42771. extra: 1233/1156,
  42772. bottom: 50/1283
  42773. }
  42774. },
  42775. back: {
  42776. height: math.unit(13, "feet"),
  42777. weight: math.unit(6, "tons"),
  42778. name: "Back",
  42779. image: {
  42780. source: "./media/characters/rover/back.svg",
  42781. extra: 1327/1258,
  42782. bottom: 39/1366
  42783. }
  42784. },
  42785. },
  42786. [
  42787. {
  42788. name: "Normal",
  42789. height: math.unit(13, "feet"),
  42790. default: true
  42791. },
  42792. {
  42793. name: "Macro",
  42794. height: math.unit(1300, "feet")
  42795. },
  42796. {
  42797. name: "Megamacro",
  42798. height: math.unit(1300, "miles")
  42799. },
  42800. {
  42801. name: "Gigamacro",
  42802. height: math.unit(1300000, "miles")
  42803. },
  42804. ]
  42805. ))
  42806. characterMakers.push(() => makeCharacter(
  42807. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42808. {
  42809. front: {
  42810. height: math.unit(6, "feet"),
  42811. weight: math.unit(150, "lb"),
  42812. name: "Front",
  42813. image: {
  42814. source: "./media/characters/ariz/front.svg",
  42815. extra: 1401/1346,
  42816. bottom: 5/1406
  42817. }
  42818. },
  42819. },
  42820. [
  42821. {
  42822. name: "Normal",
  42823. height: math.unit(10, "feet"),
  42824. default: true
  42825. },
  42826. ]
  42827. ))
  42828. characterMakers.push(() => makeCharacter(
  42829. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42830. {
  42831. front: {
  42832. height: math.unit(6, "feet"),
  42833. weight: math.unit(140, "lb"),
  42834. name: "Front",
  42835. image: {
  42836. source: "./media/characters/sigrun/front.svg",
  42837. extra: 1418/1359,
  42838. bottom: 27/1445
  42839. }
  42840. },
  42841. },
  42842. [
  42843. {
  42844. name: "Macro",
  42845. height: math.unit(35, "feet"),
  42846. default: true
  42847. },
  42848. ]
  42849. ))
  42850. characterMakers.push(() => makeCharacter(
  42851. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42852. {
  42853. front: {
  42854. height: math.unit(6, "feet"),
  42855. weight: math.unit(150, "lb"),
  42856. name: "Front",
  42857. image: {
  42858. source: "./media/characters/numin/front.svg",
  42859. extra: 1433/1388,
  42860. bottom: 12/1445
  42861. }
  42862. },
  42863. },
  42864. [
  42865. {
  42866. name: "Macro",
  42867. height: math.unit(21.5, "km"),
  42868. default: true
  42869. },
  42870. ]
  42871. ))
  42872. characterMakers.push(() => makeCharacter(
  42873. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42874. {
  42875. front: {
  42876. height: math.unit(6, "feet"),
  42877. weight: math.unit(463, "lb"),
  42878. name: "Front",
  42879. image: {
  42880. source: "./media/characters/melwa/front.svg",
  42881. extra: 1307/1248,
  42882. bottom: 93/1400
  42883. }
  42884. },
  42885. },
  42886. [
  42887. {
  42888. name: "Macro",
  42889. height: math.unit(50, "meters"),
  42890. default: true
  42891. },
  42892. ]
  42893. ))
  42894. characterMakers.push(() => makeCharacter(
  42895. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42896. {
  42897. front: {
  42898. height: math.unit(325, "feet"),
  42899. name: "Front",
  42900. image: {
  42901. source: "./media/characters/zorkaiju/front.svg",
  42902. extra: 1955/1814,
  42903. bottom: 40/1995
  42904. }
  42905. },
  42906. frontExtended: {
  42907. height: math.unit(325, "feet"),
  42908. name: "Front (Extended)",
  42909. image: {
  42910. source: "./media/characters/zorkaiju/front-extended.svg",
  42911. extra: 1955/1814,
  42912. bottom: 40/1995
  42913. }
  42914. },
  42915. side: {
  42916. height: math.unit(325, "feet"),
  42917. name: "Side",
  42918. image: {
  42919. source: "./media/characters/zorkaiju/side.svg",
  42920. extra: 1495/1396,
  42921. bottom: 17/1512
  42922. }
  42923. },
  42924. sideExtended: {
  42925. height: math.unit(325, "feet"),
  42926. name: "Side (Extended)",
  42927. image: {
  42928. source: "./media/characters/zorkaiju/side-extended.svg",
  42929. extra: 1495/1396,
  42930. bottom: 17/1512
  42931. }
  42932. },
  42933. back: {
  42934. height: math.unit(325, "feet"),
  42935. name: "Back",
  42936. image: {
  42937. source: "./media/characters/zorkaiju/back.svg",
  42938. extra: 1959/1821,
  42939. bottom: 31/1990
  42940. }
  42941. },
  42942. backExtended: {
  42943. height: math.unit(325, "feet"),
  42944. name: "Back (Extended)",
  42945. image: {
  42946. source: "./media/characters/zorkaiju/back-extended.svg",
  42947. extra: 1959/1821,
  42948. bottom: 31/1990
  42949. }
  42950. },
  42951. hand: {
  42952. height: math.unit(58.4, "feet"),
  42953. name: "Hand",
  42954. image: {
  42955. source: "./media/characters/zorkaiju/hand.svg"
  42956. }
  42957. },
  42958. handExtended: {
  42959. height: math.unit(61.4, "feet"),
  42960. name: "Hand (Extended)",
  42961. image: {
  42962. source: "./media/characters/zorkaiju/hand-extended.svg"
  42963. }
  42964. },
  42965. foot: {
  42966. height: math.unit(95, "feet"),
  42967. name: "Foot",
  42968. image: {
  42969. source: "./media/characters/zorkaiju/foot.svg"
  42970. }
  42971. },
  42972. leftArm: {
  42973. height: math.unit(59, "feet"),
  42974. name: "Left Arm",
  42975. image: {
  42976. source: "./media/characters/zorkaiju/left-arm.svg"
  42977. }
  42978. },
  42979. rightArm: {
  42980. height: math.unit(59, "feet"),
  42981. name: "Right Arm",
  42982. image: {
  42983. source: "./media/characters/zorkaiju/right-arm.svg"
  42984. }
  42985. },
  42986. leftArmExtended: {
  42987. height: math.unit(59 * 1.033546, "feet"),
  42988. name: "Left Arm (Extended)",
  42989. image: {
  42990. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42991. }
  42992. },
  42993. rightArmExtended: {
  42994. height: math.unit(59 * 1.0496, "feet"),
  42995. name: "Right Arm (Extended)",
  42996. image: {
  42997. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42998. }
  42999. },
  43000. tail: {
  43001. height: math.unit(104, "feet"),
  43002. name: "Tail",
  43003. image: {
  43004. source: "./media/characters/zorkaiju/tail.svg"
  43005. }
  43006. },
  43007. tailExtended: {
  43008. height: math.unit(104, "feet"),
  43009. name: "Tail (Extended)",
  43010. image: {
  43011. source: "./media/characters/zorkaiju/tail-extended.svg"
  43012. }
  43013. },
  43014. tailBottom: {
  43015. height: math.unit(104, "feet"),
  43016. name: "Tail Bottom",
  43017. image: {
  43018. source: "./media/characters/zorkaiju/tail-bottom.svg"
  43019. }
  43020. },
  43021. crystal: {
  43022. height: math.unit(27.54, "feet"),
  43023. name: "Crystal",
  43024. image: {
  43025. source: "./media/characters/zorkaiju/crystal.svg"
  43026. }
  43027. },
  43028. },
  43029. [
  43030. {
  43031. name: "Kaiju",
  43032. height: math.unit(325, "feet"),
  43033. default: true
  43034. },
  43035. ]
  43036. ))
  43037. characterMakers.push(() => makeCharacter(
  43038. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  43039. {
  43040. front: {
  43041. height: math.unit(6 + 1/12, "feet"),
  43042. weight: math.unit(115, "lb"),
  43043. name: "Front",
  43044. image: {
  43045. source: "./media/characters/bailey-belfry/front.svg",
  43046. extra: 1240/1121,
  43047. bottom: 101/1341
  43048. }
  43049. },
  43050. },
  43051. [
  43052. {
  43053. name: "Normal",
  43054. height: math.unit(6 + 1/12, "feet"),
  43055. default: true
  43056. },
  43057. ]
  43058. ))
  43059. characterMakers.push(() => makeCharacter(
  43060. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  43061. {
  43062. side: {
  43063. height: math.unit(4, "meters"),
  43064. weight: math.unit(250, "kg"),
  43065. name: "Side",
  43066. image: {
  43067. source: "./media/characters/blacky/side.svg",
  43068. extra: 1027/919,
  43069. bottom: 43/1070
  43070. }
  43071. },
  43072. maw: {
  43073. height: math.unit(1, "meters"),
  43074. name: "Maw",
  43075. image: {
  43076. source: "./media/characters/blacky/maw.svg"
  43077. }
  43078. },
  43079. paw: {
  43080. height: math.unit(1, "meters"),
  43081. name: "Paw",
  43082. image: {
  43083. source: "./media/characters/blacky/paw.svg"
  43084. }
  43085. },
  43086. },
  43087. [
  43088. {
  43089. name: "Normal",
  43090. height: math.unit(4, "meters"),
  43091. default: true
  43092. },
  43093. ]
  43094. ))
  43095. characterMakers.push(() => makeCharacter(
  43096. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43097. {
  43098. front: {
  43099. height: math.unit(170, "cm"),
  43100. weight: math.unit(66, "kg"),
  43101. name: "Front",
  43102. image: {
  43103. source: "./media/characters/thux-ei/front.svg",
  43104. extra: 1109/1011,
  43105. bottom: 8/1117
  43106. }
  43107. },
  43108. },
  43109. [
  43110. {
  43111. name: "Normal",
  43112. height: math.unit(170, "cm"),
  43113. default: true
  43114. },
  43115. ]
  43116. ))
  43117. characterMakers.push(() => makeCharacter(
  43118. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43119. {
  43120. front: {
  43121. height: math.unit(5, "feet"),
  43122. weight: math.unit(120, "lb"),
  43123. name: "Front",
  43124. image: {
  43125. source: "./media/characters/roxanne-voltaire/front.svg",
  43126. extra: 1901/1779,
  43127. bottom: 53/1954
  43128. }
  43129. },
  43130. },
  43131. [
  43132. {
  43133. name: "Normal",
  43134. height: math.unit(5, "feet"),
  43135. default: true
  43136. },
  43137. {
  43138. name: "Giant",
  43139. height: math.unit(50, "feet")
  43140. },
  43141. {
  43142. name: "Titan",
  43143. height: math.unit(500, "feet")
  43144. },
  43145. {
  43146. name: "Macro",
  43147. height: math.unit(5000, "feet")
  43148. },
  43149. {
  43150. name: "Megamacro",
  43151. height: math.unit(50000, "feet")
  43152. },
  43153. {
  43154. name: "Gigamacro",
  43155. height: math.unit(500000, "feet")
  43156. },
  43157. {
  43158. name: "Teramacro",
  43159. height: math.unit(5e6, "feet")
  43160. },
  43161. ]
  43162. ))
  43163. characterMakers.push(() => makeCharacter(
  43164. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43165. {
  43166. front: {
  43167. height: math.unit(6 + 2/12, "feet"),
  43168. name: "Front",
  43169. image: {
  43170. source: "./media/characters/squeaks/front.svg",
  43171. extra: 1823/1768,
  43172. bottom: 138/1961
  43173. }
  43174. },
  43175. },
  43176. [
  43177. {
  43178. name: "Micro",
  43179. height: math.unit(0.5, "inches")
  43180. },
  43181. {
  43182. name: "Normal",
  43183. height: math.unit(6 + 2/12, "feet"),
  43184. default: true
  43185. },
  43186. {
  43187. name: "Macro",
  43188. height: math.unit(600, "feet")
  43189. },
  43190. ]
  43191. ))
  43192. characterMakers.push(() => makeCharacter(
  43193. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43194. {
  43195. front: {
  43196. height: math.unit(1.72, "meters"),
  43197. name: "Front",
  43198. image: {
  43199. source: "./media/characters/archinger/front.svg",
  43200. extra: 1861/1675,
  43201. bottom: 125/1986
  43202. }
  43203. },
  43204. back: {
  43205. height: math.unit(1.72, "meters"),
  43206. name: "Back",
  43207. image: {
  43208. source: "./media/characters/archinger/back.svg",
  43209. extra: 1844/1701,
  43210. bottom: 104/1948
  43211. }
  43212. },
  43213. cock: {
  43214. height: math.unit(0.59, "feet"),
  43215. name: "Cock",
  43216. image: {
  43217. source: "./media/characters/archinger/cock.svg"
  43218. }
  43219. },
  43220. },
  43221. [
  43222. {
  43223. name: "Normal",
  43224. height: math.unit(1.72, "meters"),
  43225. default: true
  43226. },
  43227. {
  43228. name: "Macro",
  43229. height: math.unit(84, "meters")
  43230. },
  43231. {
  43232. name: "Macro+",
  43233. height: math.unit(112, "meters")
  43234. },
  43235. {
  43236. name: "Macro++",
  43237. height: math.unit(960, "meters")
  43238. },
  43239. {
  43240. name: "Macro+++",
  43241. height: math.unit(4, "km")
  43242. },
  43243. {
  43244. name: "Macro++++",
  43245. height: math.unit(48, "km")
  43246. },
  43247. {
  43248. name: "Macro+++++",
  43249. height: math.unit(4500, "km")
  43250. },
  43251. ]
  43252. ))
  43253. characterMakers.push(() => makeCharacter(
  43254. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43255. {
  43256. front: {
  43257. height: math.unit(5 + 5/12, "feet"),
  43258. name: "Front",
  43259. image: {
  43260. source: "./media/characters/alsnapz/front.svg",
  43261. extra: 1157/1065,
  43262. bottom: 42/1199
  43263. }
  43264. },
  43265. },
  43266. [
  43267. {
  43268. name: "Normal",
  43269. height: math.unit(5 + 5/12, "feet"),
  43270. default: true
  43271. },
  43272. ]
  43273. ))
  43274. characterMakers.push(() => makeCharacter(
  43275. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43276. {
  43277. side: {
  43278. height: math.unit(3.2, "earths"),
  43279. name: "Side",
  43280. image: {
  43281. source: "./media/characters/mag/side.svg",
  43282. extra: 1331/1008,
  43283. bottom: 52/1383
  43284. }
  43285. },
  43286. wing: {
  43287. height: math.unit(1.94, "earths"),
  43288. name: "Wing",
  43289. image: {
  43290. source: "./media/characters/mag/wing.svg"
  43291. }
  43292. },
  43293. dick: {
  43294. height: math.unit(1.8, "earths"),
  43295. name: "Dick",
  43296. image: {
  43297. source: "./media/characters/mag/dick.svg"
  43298. }
  43299. },
  43300. ass: {
  43301. height: math.unit(1.33, "earths"),
  43302. name: "Ass",
  43303. image: {
  43304. source: "./media/characters/mag/ass.svg"
  43305. }
  43306. },
  43307. head: {
  43308. height: math.unit(1.1, "earths"),
  43309. name: "Head",
  43310. image: {
  43311. source: "./media/characters/mag/head.svg"
  43312. }
  43313. },
  43314. maw: {
  43315. height: math.unit(1.62, "earths"),
  43316. name: "Maw",
  43317. image: {
  43318. source: "./media/characters/mag/maw.svg"
  43319. }
  43320. },
  43321. },
  43322. [
  43323. {
  43324. name: "Small",
  43325. height: math.unit(162, "feet")
  43326. },
  43327. {
  43328. name: "Normal",
  43329. height: math.unit(3.2, "earths"),
  43330. default: true
  43331. },
  43332. ]
  43333. ))
  43334. characterMakers.push(() => makeCharacter(
  43335. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43336. {
  43337. front: {
  43338. height: math.unit(512, "feet"),
  43339. weight: math.unit(63509, "tonnes"),
  43340. name: "Front",
  43341. image: {
  43342. source: "./media/characters/vorrel-harroc/front.svg",
  43343. extra: 1075/1063,
  43344. bottom: 62/1137
  43345. }
  43346. },
  43347. },
  43348. [
  43349. {
  43350. name: "Normal",
  43351. height: math.unit(10, "feet")
  43352. },
  43353. {
  43354. name: "Macro",
  43355. height: math.unit(512, "feet"),
  43356. default: true
  43357. },
  43358. {
  43359. name: "Megamacro",
  43360. height: math.unit(256, "miles")
  43361. },
  43362. {
  43363. name: "Gigamacro",
  43364. height: math.unit(4096, "miles")
  43365. },
  43366. ]
  43367. ))
  43368. characterMakers.push(() => makeCharacter(
  43369. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43370. {
  43371. side: {
  43372. height: math.unit(50, "feet"),
  43373. name: "Side",
  43374. image: {
  43375. source: "./media/characters/froimar/side.svg",
  43376. extra: 855/638,
  43377. bottom: 99/954
  43378. }
  43379. },
  43380. },
  43381. [
  43382. {
  43383. name: "Macro",
  43384. height: math.unit(50, "feet"),
  43385. default: true
  43386. },
  43387. ]
  43388. ))
  43389. characterMakers.push(() => makeCharacter(
  43390. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43391. {
  43392. front: {
  43393. height: math.unit(210, "miles"),
  43394. name: "Front",
  43395. image: {
  43396. source: "./media/characters/timothy/front.svg",
  43397. extra: 1007/943,
  43398. bottom: 62/1069
  43399. }
  43400. },
  43401. frontSkirt: {
  43402. height: math.unit(210, "miles"),
  43403. name: "Front (Skirt)",
  43404. image: {
  43405. source: "./media/characters/timothy/front-skirt.svg",
  43406. extra: 1007/943,
  43407. bottom: 62/1069
  43408. }
  43409. },
  43410. frontCoat: {
  43411. height: math.unit(210, "miles"),
  43412. name: "Front (Coat)",
  43413. image: {
  43414. source: "./media/characters/timothy/front-coat.svg",
  43415. extra: 1007/943,
  43416. bottom: 62/1069
  43417. }
  43418. },
  43419. },
  43420. [
  43421. {
  43422. name: "Macro",
  43423. height: math.unit(210, "miles"),
  43424. default: true
  43425. },
  43426. {
  43427. name: "Megamacro",
  43428. height: math.unit(210000, "miles")
  43429. },
  43430. ]
  43431. ))
  43432. characterMakers.push(() => makeCharacter(
  43433. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43434. {
  43435. front: {
  43436. height: math.unit(188, "feet"),
  43437. name: "Front",
  43438. image: {
  43439. source: "./media/characters/pyotr/front.svg",
  43440. extra: 1912/1826,
  43441. bottom: 18/1930
  43442. }
  43443. },
  43444. },
  43445. [
  43446. {
  43447. name: "Macro",
  43448. height: math.unit(188, "feet"),
  43449. default: true
  43450. },
  43451. {
  43452. name: "Megamacro",
  43453. height: math.unit(8, "miles")
  43454. },
  43455. ]
  43456. ))
  43457. characterMakers.push(() => makeCharacter(
  43458. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43459. {
  43460. side: {
  43461. height: math.unit(10, "feet"),
  43462. weight: math.unit(4500, "lb"),
  43463. name: "Side",
  43464. image: {
  43465. source: "./media/characters/ackart/side.svg",
  43466. extra: 1776/1668,
  43467. bottom: 116/1892
  43468. }
  43469. },
  43470. },
  43471. [
  43472. {
  43473. name: "Normal",
  43474. height: math.unit(10, "feet"),
  43475. default: true
  43476. },
  43477. ]
  43478. ))
  43479. characterMakers.push(() => makeCharacter(
  43480. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43481. {
  43482. side: {
  43483. height: math.unit(21, "feet"),
  43484. name: "Side",
  43485. image: {
  43486. source: "./media/characters/nolow/side.svg",
  43487. extra: 1484/1434,
  43488. bottom: 85/1569
  43489. }
  43490. },
  43491. sideErect: {
  43492. height: math.unit(21, "feet"),
  43493. name: "Side-erect",
  43494. image: {
  43495. source: "./media/characters/nolow/side-erect.svg",
  43496. extra: 1484/1434,
  43497. bottom: 85/1569
  43498. }
  43499. },
  43500. },
  43501. [
  43502. {
  43503. name: "Regular",
  43504. height: math.unit(12, "feet")
  43505. },
  43506. {
  43507. name: "Big Chee",
  43508. height: math.unit(21, "feet"),
  43509. default: true
  43510. },
  43511. ]
  43512. ))
  43513. characterMakers.push(() => makeCharacter(
  43514. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43515. {
  43516. front: {
  43517. height: math.unit(7, "feet"),
  43518. weight: math.unit(250, "lb"),
  43519. name: "Front",
  43520. image: {
  43521. source: "./media/characters/nines/front.svg",
  43522. extra: 1741/1607,
  43523. bottom: 41/1782
  43524. }
  43525. },
  43526. side: {
  43527. height: math.unit(7, "feet"),
  43528. weight: math.unit(250, "lb"),
  43529. name: "Side",
  43530. image: {
  43531. source: "./media/characters/nines/side.svg",
  43532. extra: 1854/1735,
  43533. bottom: 93/1947
  43534. }
  43535. },
  43536. back: {
  43537. height: math.unit(7, "feet"),
  43538. weight: math.unit(250, "lb"),
  43539. name: "Back",
  43540. image: {
  43541. source: "./media/characters/nines/back.svg",
  43542. extra: 1748/1615,
  43543. bottom: 20/1768
  43544. }
  43545. },
  43546. },
  43547. [
  43548. {
  43549. name: "Megamacro",
  43550. height: math.unit(99, "km"),
  43551. default: true
  43552. },
  43553. ]
  43554. ))
  43555. characterMakers.push(() => makeCharacter(
  43556. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43557. {
  43558. front: {
  43559. height: math.unit(5 + 10/12, "feet"),
  43560. weight: math.unit(210, "lb"),
  43561. name: "Front",
  43562. image: {
  43563. source: "./media/characters/zenith/front.svg",
  43564. extra: 1531/1452,
  43565. bottom: 198/1729
  43566. }
  43567. },
  43568. back: {
  43569. height: math.unit(5 + 10/12, "feet"),
  43570. weight: math.unit(210, "lb"),
  43571. name: "Back",
  43572. image: {
  43573. source: "./media/characters/zenith/back.svg",
  43574. extra: 1571/1487,
  43575. bottom: 75/1646
  43576. }
  43577. },
  43578. },
  43579. [
  43580. {
  43581. name: "Normal",
  43582. height: math.unit(5 + 10/12, "feet"),
  43583. default: true
  43584. }
  43585. ]
  43586. ))
  43587. characterMakers.push(() => makeCharacter(
  43588. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43589. {
  43590. front: {
  43591. height: math.unit(4, "feet"),
  43592. weight: math.unit(60, "lb"),
  43593. name: "Front",
  43594. image: {
  43595. source: "./media/characters/jasper/front.svg",
  43596. extra: 1450/1379,
  43597. bottom: 19/1469
  43598. }
  43599. },
  43600. },
  43601. [
  43602. {
  43603. name: "Normal",
  43604. height: math.unit(4, "feet"),
  43605. default: true
  43606. },
  43607. ]
  43608. ))
  43609. characterMakers.push(() => makeCharacter(
  43610. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43611. {
  43612. front: {
  43613. height: math.unit(6 + 5/12, "feet"),
  43614. weight: math.unit(290, "lb"),
  43615. name: "Front",
  43616. image: {
  43617. source: "./media/characters/tiberius-thyben/front.svg",
  43618. extra: 757/739,
  43619. bottom: 39/796
  43620. }
  43621. },
  43622. },
  43623. [
  43624. {
  43625. name: "Micro",
  43626. height: math.unit(1.5, "inches")
  43627. },
  43628. {
  43629. name: "Normal",
  43630. height: math.unit(6 + 5/12, "feet"),
  43631. default: true
  43632. },
  43633. {
  43634. name: "Macro",
  43635. height: math.unit(300, "feet")
  43636. },
  43637. ]
  43638. ))
  43639. characterMakers.push(() => makeCharacter(
  43640. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43641. {
  43642. front: {
  43643. height: math.unit(5 + 6/12, "feet"),
  43644. weight: math.unit(60, "kg"),
  43645. name: "Front",
  43646. image: {
  43647. source: "./media/characters/sabre/front.svg",
  43648. extra: 738/671,
  43649. bottom: 27/765
  43650. }
  43651. },
  43652. },
  43653. [
  43654. {
  43655. name: "Teeny",
  43656. height: math.unit(2, "inches")
  43657. },
  43658. {
  43659. name: "Smol",
  43660. height: math.unit(8, "inches")
  43661. },
  43662. {
  43663. name: "Normal",
  43664. height: math.unit(5 + 6/12, "feet"),
  43665. default: true
  43666. },
  43667. {
  43668. name: "Mini-Macro",
  43669. height: math.unit(15, "feet")
  43670. },
  43671. {
  43672. name: "Macro",
  43673. height: math.unit(50, "feet")
  43674. },
  43675. ]
  43676. ))
  43677. characterMakers.push(() => makeCharacter(
  43678. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43679. {
  43680. front: {
  43681. height: math.unit(6 + 4/12, "feet"),
  43682. weight: math.unit(170, "lb"),
  43683. name: "Front",
  43684. image: {
  43685. source: "./media/characters/charlie/front.svg",
  43686. extra: 1348/1228,
  43687. bottom: 15/1363
  43688. }
  43689. },
  43690. },
  43691. [
  43692. {
  43693. name: "Macro",
  43694. height: math.unit(1700, "meters"),
  43695. default: true
  43696. },
  43697. {
  43698. name: "MegaMacro",
  43699. height: math.unit(20400, "meters")
  43700. },
  43701. ]
  43702. ))
  43703. characterMakers.push(() => makeCharacter(
  43704. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43705. {
  43706. front: {
  43707. height: math.unit(1.96, "meters"),
  43708. weight: math.unit(220, "lb"),
  43709. name: "Front",
  43710. image: {
  43711. source: "./media/characters/susan-grant/front.svg",
  43712. extra: 482/478,
  43713. bottom: 7/489
  43714. }
  43715. },
  43716. },
  43717. [
  43718. {
  43719. name: "Normal",
  43720. height: math.unit(1.96, "meters"),
  43721. default: true
  43722. },
  43723. {
  43724. name: "Macro",
  43725. height: math.unit(76.2, "meters")
  43726. },
  43727. {
  43728. name: "MegaMacro",
  43729. height: math.unit(305, "meters")
  43730. },
  43731. {
  43732. name: "GigaMacro",
  43733. height: math.unit(1220, "meters")
  43734. },
  43735. {
  43736. name: "SuperMacro",
  43737. height: math.unit(4878, "meters")
  43738. },
  43739. ]
  43740. ))
  43741. characterMakers.push(() => makeCharacter(
  43742. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43743. {
  43744. front: {
  43745. height: math.unit(5 + 4/12, "feet"),
  43746. weight: math.unit(110, "lb"),
  43747. name: "Front",
  43748. image: {
  43749. source: "./media/characters/axel-isanov/front.svg",
  43750. extra: 1096/1065,
  43751. bottom: 13/1109
  43752. }
  43753. },
  43754. },
  43755. [
  43756. {
  43757. name: "Normal",
  43758. height: math.unit(5 + 4/12, "feet"),
  43759. default: true
  43760. },
  43761. ]
  43762. ))
  43763. characterMakers.push(() => makeCharacter(
  43764. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43765. {
  43766. front: {
  43767. height: math.unit(9, "feet"),
  43768. weight: math.unit(467, "lb"),
  43769. name: "Front",
  43770. image: {
  43771. source: "./media/characters/necahual/front.svg",
  43772. extra: 920/873,
  43773. bottom: 26/946
  43774. }
  43775. },
  43776. back: {
  43777. height: math.unit(9, "feet"),
  43778. weight: math.unit(467, "lb"),
  43779. name: "Back",
  43780. image: {
  43781. source: "./media/characters/necahual/back.svg",
  43782. extra: 930/884,
  43783. bottom: 16/946
  43784. }
  43785. },
  43786. frontUnderwear: {
  43787. height: math.unit(9, "feet"),
  43788. weight: math.unit(467, "lb"),
  43789. name: "Front (Underwear)",
  43790. image: {
  43791. source: "./media/characters/necahual/front-underwear.svg",
  43792. extra: 920/873,
  43793. bottom: 26/946
  43794. }
  43795. },
  43796. frontDressed: {
  43797. height: math.unit(9, "feet"),
  43798. weight: math.unit(467, "lb"),
  43799. name: "Front (Dressed)",
  43800. image: {
  43801. source: "./media/characters/necahual/front-dressed.svg",
  43802. extra: 920/873,
  43803. bottom: 26/946
  43804. }
  43805. },
  43806. },
  43807. [
  43808. {
  43809. name: "Comprsesed",
  43810. height: math.unit(9, "feet")
  43811. },
  43812. {
  43813. name: "Natural",
  43814. height: math.unit(15, "feet"),
  43815. default: true
  43816. },
  43817. {
  43818. name: "Boosted",
  43819. height: math.unit(50, "feet")
  43820. },
  43821. {
  43822. name: "Boosted+",
  43823. height: math.unit(150, "feet")
  43824. },
  43825. {
  43826. name: "Max",
  43827. height: math.unit(500, "feet")
  43828. },
  43829. ]
  43830. ))
  43831. characterMakers.push(() => makeCharacter(
  43832. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43833. {
  43834. front: {
  43835. height: math.unit(22 + 1/12, "feet"),
  43836. weight: math.unit(3200, "lb"),
  43837. name: "Front",
  43838. image: {
  43839. source: "./media/characters/theo-acacia/front.svg",
  43840. extra: 1796/1741,
  43841. bottom: 83/1879
  43842. }
  43843. },
  43844. frontUnderwear: {
  43845. height: math.unit(22 + 1/12, "feet"),
  43846. weight: math.unit(3200, "lb"),
  43847. name: "Front (Underwear)",
  43848. image: {
  43849. source: "./media/characters/theo-acacia/front-underwear.svg",
  43850. extra: 1796/1741,
  43851. bottom: 83/1879
  43852. }
  43853. },
  43854. frontNude: {
  43855. height: math.unit(22 + 1/12, "feet"),
  43856. weight: math.unit(3200, "lb"),
  43857. name: "Front (Nude)",
  43858. image: {
  43859. source: "./media/characters/theo-acacia/front-nude.svg",
  43860. extra: 1796/1741,
  43861. bottom: 83/1879
  43862. }
  43863. },
  43864. },
  43865. [
  43866. {
  43867. name: "Normal",
  43868. height: math.unit(22 + 1/12, "feet"),
  43869. default: true
  43870. },
  43871. ]
  43872. ))
  43873. characterMakers.push(() => makeCharacter(
  43874. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43875. {
  43876. front: {
  43877. height: math.unit(20, "feet"),
  43878. name: "Front",
  43879. image: {
  43880. source: "./media/characters/astra/front.svg",
  43881. extra: 1850/1714,
  43882. bottom: 106/1956
  43883. }
  43884. },
  43885. frontUndressed: {
  43886. height: math.unit(20, "feet"),
  43887. name: "Front (Undressed)",
  43888. image: {
  43889. source: "./media/characters/astra/front-undressed.svg",
  43890. extra: 1926/1749,
  43891. bottom: 0/1926
  43892. }
  43893. },
  43894. hand: {
  43895. height: math.unit(1.53, "feet"),
  43896. name: "Hand",
  43897. image: {
  43898. source: "./media/characters/astra/hand.svg"
  43899. }
  43900. },
  43901. paw: {
  43902. height: math.unit(1.53, "feet"),
  43903. name: "Paw",
  43904. image: {
  43905. source: "./media/characters/astra/paw.svg"
  43906. }
  43907. },
  43908. },
  43909. [
  43910. {
  43911. name: "Smallest",
  43912. height: math.unit(20, "feet")
  43913. },
  43914. {
  43915. name: "Normal",
  43916. height: math.unit(1e9, "miles"),
  43917. default: true
  43918. },
  43919. {
  43920. name: "Larger",
  43921. height: math.unit(5, "multiverses")
  43922. },
  43923. {
  43924. name: "Largest",
  43925. height: math.unit(1e9, "multiverses")
  43926. },
  43927. ]
  43928. ))
  43929. characterMakers.push(() => makeCharacter(
  43930. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43931. {
  43932. front: {
  43933. height: math.unit(8, "feet"),
  43934. name: "Front",
  43935. image: {
  43936. source: "./media/characters/breanna/front.svg",
  43937. extra: 1912/1632,
  43938. bottom: 33/1945
  43939. }
  43940. },
  43941. },
  43942. [
  43943. {
  43944. name: "Smallest",
  43945. height: math.unit(8, "feet")
  43946. },
  43947. {
  43948. name: "Normal",
  43949. height: math.unit(1, "mile"),
  43950. default: true
  43951. },
  43952. {
  43953. name: "Maximum",
  43954. height: math.unit(1500000000000, "lightyears")
  43955. },
  43956. ]
  43957. ))
  43958. characterMakers.push(() => makeCharacter(
  43959. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43960. {
  43961. front: {
  43962. height: math.unit(5 + 11/12, "feet"),
  43963. weight: math.unit(155, "lb"),
  43964. name: "Front",
  43965. image: {
  43966. source: "./media/characters/cai/front.svg",
  43967. extra: 1823/1702,
  43968. bottom: 32/1855
  43969. }
  43970. },
  43971. back: {
  43972. height: math.unit(5 + 11/12, "feet"),
  43973. weight: math.unit(155, "lb"),
  43974. name: "Back",
  43975. image: {
  43976. source: "./media/characters/cai/back.svg",
  43977. extra: 1809/1708,
  43978. bottom: 31/1840
  43979. }
  43980. },
  43981. },
  43982. [
  43983. {
  43984. name: "Normal",
  43985. height: math.unit(5 + 11/12, "feet"),
  43986. default: true
  43987. },
  43988. {
  43989. name: "Big",
  43990. height: math.unit(15, "feet")
  43991. },
  43992. {
  43993. name: "Macro",
  43994. height: math.unit(200, "feet")
  43995. },
  43996. ]
  43997. ))
  43998. characterMakers.push(() => makeCharacter(
  43999. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  44000. {
  44001. front: {
  44002. height: math.unit(5 + 6/12, "feet"),
  44003. weight: math.unit(160, "lb"),
  44004. name: "Front",
  44005. image: {
  44006. source: "./media/characters/zanna-virtuedòttir/front.svg",
  44007. extra: 1227/1174,
  44008. bottom: 37/1264
  44009. }
  44010. },
  44011. },
  44012. [
  44013. {
  44014. name: "Macro",
  44015. height: math.unit(444, "meters"),
  44016. default: true
  44017. },
  44018. ]
  44019. ))
  44020. characterMakers.push(() => makeCharacter(
  44021. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  44022. {
  44023. front: {
  44024. height: math.unit(18 + 7/12, "feet"),
  44025. name: "Front",
  44026. image: {
  44027. source: "./media/characters/rex/front.svg",
  44028. extra: 1941/1807,
  44029. bottom: 66/2007
  44030. }
  44031. },
  44032. back: {
  44033. height: math.unit(18 + 7/12, "feet"),
  44034. name: "Back",
  44035. image: {
  44036. source: "./media/characters/rex/back.svg",
  44037. extra: 1937/1822,
  44038. bottom: 42/1979
  44039. }
  44040. },
  44041. boot: {
  44042. height: math.unit(3.45, "feet"),
  44043. name: "Boot",
  44044. image: {
  44045. source: "./media/characters/rex/boot.svg"
  44046. }
  44047. },
  44048. paw: {
  44049. height: math.unit(4.17, "feet"),
  44050. name: "Paw",
  44051. image: {
  44052. source: "./media/characters/rex/paw.svg"
  44053. }
  44054. },
  44055. head: {
  44056. height: math.unit(6.728, "feet"),
  44057. name: "Head",
  44058. image: {
  44059. source: "./media/characters/rex/head.svg"
  44060. }
  44061. },
  44062. },
  44063. [
  44064. {
  44065. name: "Nano",
  44066. height: math.unit(18 + 7/12, "feet")
  44067. },
  44068. {
  44069. name: "Micro",
  44070. height: math.unit(1.5, "megameters")
  44071. },
  44072. {
  44073. name: "Normal",
  44074. height: math.unit(440, "megameters"),
  44075. default: true
  44076. },
  44077. {
  44078. name: "Macro",
  44079. height: math.unit(2.5, "gigameters")
  44080. },
  44081. {
  44082. name: "Gigamacro",
  44083. height: math.unit(2, "galaxies")
  44084. },
  44085. ]
  44086. ))
  44087. characterMakers.push(() => makeCharacter(
  44088. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44089. {
  44090. side: {
  44091. height: math.unit(32, "feet"),
  44092. weight: math.unit(250000, "lb"),
  44093. name: "Side",
  44094. image: {
  44095. source: "./media/characters/silverwing/side.svg",
  44096. extra: 1100/1019,
  44097. bottom: 204/1304
  44098. }
  44099. },
  44100. },
  44101. [
  44102. {
  44103. name: "Normal",
  44104. height: math.unit(32, "feet"),
  44105. default: true
  44106. },
  44107. ]
  44108. ))
  44109. characterMakers.push(() => makeCharacter(
  44110. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44111. {
  44112. front: {
  44113. height: math.unit(6 + 6/12, "feet"),
  44114. weight: math.unit(350, "lb"),
  44115. name: "Front",
  44116. image: {
  44117. source: "./media/characters/tristan-hawthorne/front.svg",
  44118. extra: 1159/1124,
  44119. bottom: 37/1196
  44120. },
  44121. form: "labrador",
  44122. default: true
  44123. },
  44124. skunkFront: {
  44125. height: math.unit(4 + 6/12, "feet"),
  44126. weight: math.unit(120, "lb"),
  44127. name: "Front",
  44128. image: {
  44129. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44130. extra: 1609/1551,
  44131. bottom: 169/1778
  44132. },
  44133. form: "skunk",
  44134. default: true
  44135. },
  44136. },
  44137. [
  44138. {
  44139. name: "Normal",
  44140. height: math.unit(6 + 6/12, "feet"),
  44141. form: "labrador",
  44142. default: true
  44143. },
  44144. {
  44145. name: "Normal",
  44146. height: math.unit(4 + 6/12, "feet"),
  44147. form: "skunk",
  44148. default: true
  44149. },
  44150. ],
  44151. {
  44152. "labrador": {
  44153. name: "Labrador",
  44154. default: true
  44155. },
  44156. "skunk": {
  44157. name: "Skunk"
  44158. }
  44159. }
  44160. ))
  44161. characterMakers.push(() => makeCharacter(
  44162. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44163. {
  44164. front: {
  44165. height: math.unit(5 + 11/12, "feet"),
  44166. weight: math.unit(190, "lb"),
  44167. name: "Front",
  44168. image: {
  44169. source: "./media/characters/mizu/front.svg",
  44170. extra: 1988/1788,
  44171. bottom: 14/2002
  44172. }
  44173. },
  44174. },
  44175. [
  44176. {
  44177. name: "Normal",
  44178. height: math.unit(5 + 11/12, "feet"),
  44179. default: true
  44180. },
  44181. ]
  44182. ))
  44183. characterMakers.push(() => makeCharacter(
  44184. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44185. {
  44186. front: {
  44187. height: math.unit(1.7, "feet"),
  44188. weight: math.unit(50, "lb"),
  44189. name: "Front",
  44190. image: {
  44191. source: "./media/characters/dechroma/front.svg",
  44192. extra: 1095/859,
  44193. bottom: 64/1159
  44194. }
  44195. },
  44196. },
  44197. [
  44198. {
  44199. name: "Normal",
  44200. height: math.unit(1.7, "feet"),
  44201. default: true
  44202. },
  44203. ]
  44204. ))
  44205. characterMakers.push(() => makeCharacter(
  44206. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44207. {
  44208. side: {
  44209. height: math.unit(30, "feet"),
  44210. name: "Side",
  44211. image: {
  44212. source: "./media/characters/veluren-thanazel/side.svg",
  44213. extra: 1611/633,
  44214. bottom: 118/1729
  44215. }
  44216. },
  44217. front: {
  44218. height: math.unit(30, "feet"),
  44219. name: "Front",
  44220. image: {
  44221. source: "./media/characters/veluren-thanazel/front.svg",
  44222. extra: 1486/636,
  44223. bottom: 238/1724
  44224. }
  44225. },
  44226. head: {
  44227. height: math.unit(21.4, "feet"),
  44228. name: "Head",
  44229. image: {
  44230. source: "./media/characters/veluren-thanazel/head.svg"
  44231. }
  44232. },
  44233. genitals: {
  44234. height: math.unit(19.4, "feet"),
  44235. name: "Genitals",
  44236. image: {
  44237. source: "./media/characters/veluren-thanazel/genitals.svg"
  44238. }
  44239. },
  44240. },
  44241. [
  44242. {
  44243. name: "Social",
  44244. height: math.unit(6, "feet")
  44245. },
  44246. {
  44247. name: "Play",
  44248. height: math.unit(12, "feet")
  44249. },
  44250. {
  44251. name: "True",
  44252. height: math.unit(30, "feet"),
  44253. default: true
  44254. },
  44255. ]
  44256. ))
  44257. characterMakers.push(() => makeCharacter(
  44258. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44259. {
  44260. front: {
  44261. height: math.unit(7 + 6/12, "feet"),
  44262. weight: math.unit(500, "kg"),
  44263. name: "Front",
  44264. image: {
  44265. source: "./media/characters/arcturas/front.svg",
  44266. extra: 1700/1500,
  44267. bottom: 145/1845
  44268. }
  44269. },
  44270. },
  44271. [
  44272. {
  44273. name: "Normal",
  44274. height: math.unit(7 + 6/12, "feet"),
  44275. default: true
  44276. },
  44277. ]
  44278. ))
  44279. characterMakers.push(() => makeCharacter(
  44280. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44281. {
  44282. side: {
  44283. height: math.unit(6, "feet"),
  44284. weight: math.unit(2, "tons"),
  44285. name: "Side",
  44286. image: {
  44287. source: "./media/characters/vitaen/side.svg",
  44288. extra: 1157/617,
  44289. bottom: 122/1279
  44290. }
  44291. },
  44292. },
  44293. [
  44294. {
  44295. name: "Normal",
  44296. height: math.unit(6, "feet"),
  44297. default: true
  44298. },
  44299. ]
  44300. ))
  44301. characterMakers.push(() => makeCharacter(
  44302. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44303. {
  44304. front: {
  44305. height: math.unit(19, "feet"),
  44306. name: "Front",
  44307. image: {
  44308. source: "./media/characters/fia-dreamweaver/front.svg",
  44309. extra: 1630/1504,
  44310. bottom: 25/1655
  44311. }
  44312. },
  44313. },
  44314. [
  44315. {
  44316. name: "Normal",
  44317. height: math.unit(19, "feet"),
  44318. default: true
  44319. },
  44320. ]
  44321. ))
  44322. characterMakers.push(() => makeCharacter(
  44323. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44324. {
  44325. front: {
  44326. height: math.unit(5 + 4/12, "feet"),
  44327. name: "Front",
  44328. image: {
  44329. source: "./media/characters/artan/front.svg",
  44330. extra: 1618/1535,
  44331. bottom: 46/1664
  44332. }
  44333. },
  44334. back: {
  44335. height: math.unit(5 + 4/12, "feet"),
  44336. name: "Back",
  44337. image: {
  44338. source: "./media/characters/artan/back.svg",
  44339. extra: 1618/1543,
  44340. bottom: 31/1649
  44341. }
  44342. },
  44343. },
  44344. [
  44345. {
  44346. name: "Normal",
  44347. height: math.unit(5 + 4/12, "feet"),
  44348. default: true
  44349. },
  44350. ]
  44351. ))
  44352. characterMakers.push(() => makeCharacter(
  44353. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44354. {
  44355. side: {
  44356. height: math.unit(182, "cm"),
  44357. weight: math.unit(1000, "lb"),
  44358. name: "Side",
  44359. image: {
  44360. source: "./media/characters/silver-dragon/side.svg",
  44361. extra: 710/287,
  44362. bottom: 88/798
  44363. }
  44364. },
  44365. },
  44366. [
  44367. {
  44368. name: "Normal",
  44369. height: math.unit(182, "cm"),
  44370. default: true
  44371. },
  44372. ]
  44373. ))
  44374. characterMakers.push(() => makeCharacter(
  44375. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44376. {
  44377. side: {
  44378. height: math.unit(6 + 6/12, "feet"),
  44379. weight: math.unit(1.5, "tons"),
  44380. name: "Side",
  44381. image: {
  44382. source: "./media/characters/zephyr/side.svg",
  44383. extra: 1433/586,
  44384. bottom: 109/1542
  44385. }
  44386. },
  44387. },
  44388. [
  44389. {
  44390. name: "Normal",
  44391. height: math.unit(6 + 6/12, "feet"),
  44392. default: true
  44393. },
  44394. ]
  44395. ))
  44396. characterMakers.push(() => makeCharacter(
  44397. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44398. {
  44399. side: {
  44400. height: math.unit(1, "feet"),
  44401. name: "Side",
  44402. image: {
  44403. source: "./media/characters/vixye/side.svg",
  44404. extra: 632/541,
  44405. bottom: 0/632
  44406. }
  44407. },
  44408. },
  44409. [
  44410. {
  44411. name: "Normal",
  44412. height: math.unit(1, "feet"),
  44413. default: true
  44414. },
  44415. {
  44416. name: "True",
  44417. height: math.unit(1e15, "multiverses")
  44418. },
  44419. ]
  44420. ))
  44421. characterMakers.push(() => makeCharacter(
  44422. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44423. {
  44424. front: {
  44425. height: math.unit(8 + 2/12, "feet"),
  44426. weight: math.unit(650, "lb"),
  44427. name: "Front",
  44428. image: {
  44429. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44430. extra: 1174/1137,
  44431. bottom: 82/1256
  44432. }
  44433. },
  44434. back: {
  44435. height: math.unit(8 + 2/12, "feet"),
  44436. weight: math.unit(650, "lb"),
  44437. name: "Back",
  44438. image: {
  44439. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44440. extra: 1204/1157,
  44441. bottom: 46/1250
  44442. }
  44443. },
  44444. },
  44445. [
  44446. {
  44447. name: "Wildform",
  44448. height: math.unit(8 + 2/12, "feet"),
  44449. default: true
  44450. },
  44451. ]
  44452. ))
  44453. characterMakers.push(() => makeCharacter(
  44454. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44455. {
  44456. front: {
  44457. height: math.unit(18, "feet"),
  44458. name: "Front",
  44459. image: {
  44460. source: "./media/characters/cyphin/front.svg",
  44461. extra: 970/886,
  44462. bottom: 42/1012
  44463. }
  44464. },
  44465. back: {
  44466. height: math.unit(18, "feet"),
  44467. name: "Back",
  44468. image: {
  44469. source: "./media/characters/cyphin/back.svg",
  44470. extra: 1009/894,
  44471. bottom: 24/1033
  44472. }
  44473. },
  44474. head: {
  44475. height: math.unit(5.05, "feet"),
  44476. name: "Head",
  44477. image: {
  44478. source: "./media/characters/cyphin/head.svg"
  44479. }
  44480. },
  44481. tailbud: {
  44482. height: math.unit(5, "feet"),
  44483. name: "Tailbud",
  44484. image: {
  44485. source: "./media/characters/cyphin/tailbud.svg"
  44486. }
  44487. },
  44488. },
  44489. [
  44490. ]
  44491. ))
  44492. characterMakers.push(() => makeCharacter(
  44493. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44494. {
  44495. side: {
  44496. height: math.unit(10, "feet"),
  44497. weight: math.unit(6, "tons"),
  44498. name: "Side",
  44499. image: {
  44500. source: "./media/characters/raijin/side.svg",
  44501. extra: 1529/613,
  44502. bottom: 337/1866
  44503. }
  44504. },
  44505. },
  44506. [
  44507. {
  44508. name: "Normal",
  44509. height: math.unit(10, "feet"),
  44510. default: true
  44511. },
  44512. ]
  44513. ))
  44514. characterMakers.push(() => makeCharacter(
  44515. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44516. {
  44517. side: {
  44518. height: math.unit(9, "feet"),
  44519. name: "Side",
  44520. image: {
  44521. source: "./media/characters/nilghais/side.svg",
  44522. extra: 1047/744,
  44523. bottom: 91/1138
  44524. }
  44525. },
  44526. head: {
  44527. height: math.unit(3.14, "feet"),
  44528. name: "Head",
  44529. image: {
  44530. source: "./media/characters/nilghais/head.svg"
  44531. }
  44532. },
  44533. mouth: {
  44534. height: math.unit(4.6, "feet"),
  44535. name: "Mouth",
  44536. image: {
  44537. source: "./media/characters/nilghais/mouth.svg"
  44538. }
  44539. },
  44540. wings: {
  44541. height: math.unit(24, "feet"),
  44542. name: "Wings",
  44543. image: {
  44544. source: "./media/characters/nilghais/wings.svg"
  44545. }
  44546. },
  44547. ass: {
  44548. height: math.unit(6.12, "feet"),
  44549. name: "Ass",
  44550. image: {
  44551. source: "./media/characters/nilghais/ass.svg"
  44552. }
  44553. },
  44554. },
  44555. [
  44556. {
  44557. name: "Normal",
  44558. height: math.unit(9, "feet"),
  44559. default: true
  44560. },
  44561. ]
  44562. ))
  44563. characterMakers.push(() => makeCharacter(
  44564. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44565. {
  44566. regular: {
  44567. height: math.unit(16 + 2/12, "feet"),
  44568. weight: math.unit(2300, "lb"),
  44569. name: "Regular",
  44570. image: {
  44571. source: "./media/characters/zolgar/regular.svg",
  44572. extra: 1246/1004,
  44573. bottom: 124/1370
  44574. }
  44575. },
  44576. boxers: {
  44577. height: math.unit(16 + 2/12, "feet"),
  44578. weight: math.unit(2300, "lb"),
  44579. name: "Boxers",
  44580. image: {
  44581. source: "./media/characters/zolgar/boxers.svg",
  44582. extra: 1246/1004,
  44583. bottom: 124/1370
  44584. }
  44585. },
  44586. armored: {
  44587. height: math.unit(16 + 2/12, "feet"),
  44588. weight: math.unit(2300, "lb"),
  44589. name: "Armored",
  44590. image: {
  44591. source: "./media/characters/zolgar/armored.svg",
  44592. extra: 1246/1004,
  44593. bottom: 124/1370
  44594. }
  44595. },
  44596. goth: {
  44597. height: math.unit(16 + 2/12, "feet"),
  44598. weight: math.unit(2300, "lb"),
  44599. name: "Goth",
  44600. image: {
  44601. source: "./media/characters/zolgar/goth.svg",
  44602. extra: 1246/1004,
  44603. bottom: 124/1370
  44604. }
  44605. },
  44606. },
  44607. [
  44608. {
  44609. name: "Shrunken Down",
  44610. height: math.unit(9 + 2/12, "feet")
  44611. },
  44612. {
  44613. name: "Normal",
  44614. height: math.unit(16 + 2/12, "feet"),
  44615. default: true
  44616. },
  44617. ]
  44618. ))
  44619. characterMakers.push(() => makeCharacter(
  44620. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44621. {
  44622. front: {
  44623. height: math.unit(6, "feet"),
  44624. weight: math.unit(168, "lb"),
  44625. name: "Front",
  44626. image: {
  44627. source: "./media/characters/luca/front.svg",
  44628. extra: 841/667,
  44629. bottom: 102/943
  44630. }
  44631. },
  44632. },
  44633. [
  44634. {
  44635. name: "Normal",
  44636. height: math.unit(6, "feet"),
  44637. default: true
  44638. },
  44639. ]
  44640. ))
  44641. characterMakers.push(() => makeCharacter(
  44642. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44643. {
  44644. side: {
  44645. height: math.unit(7 + 3/12, "feet"),
  44646. weight: math.unit(312, "lb"),
  44647. name: "Side",
  44648. image: {
  44649. source: "./media/characters/zezo/side.svg",
  44650. extra: 1192/1067,
  44651. bottom: 63/1255
  44652. }
  44653. },
  44654. },
  44655. [
  44656. {
  44657. name: "Normal",
  44658. height: math.unit(7 + 3/12, "feet"),
  44659. default: true
  44660. },
  44661. ]
  44662. ))
  44663. characterMakers.push(() => makeCharacter(
  44664. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44665. {
  44666. front: {
  44667. height: math.unit(5 + 5/12, "feet"),
  44668. weight: math.unit(170, "lb"),
  44669. name: "Front",
  44670. image: {
  44671. source: "./media/characters/mayso/front.svg",
  44672. extra: 1215/1108,
  44673. bottom: 16/1231
  44674. }
  44675. },
  44676. },
  44677. [
  44678. {
  44679. name: "Normal",
  44680. height: math.unit(5 + 5/12, "feet"),
  44681. default: true
  44682. },
  44683. ]
  44684. ))
  44685. characterMakers.push(() => makeCharacter(
  44686. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44687. {
  44688. front: {
  44689. height: math.unit(4 + 3/12, "feet"),
  44690. weight: math.unit(80, "lb"),
  44691. name: "Front",
  44692. image: {
  44693. source: "./media/characters/hess/front.svg",
  44694. extra: 1200/1123,
  44695. bottom: 16/1216
  44696. }
  44697. },
  44698. },
  44699. [
  44700. {
  44701. name: "Normal",
  44702. height: math.unit(4 + 3/12, "feet"),
  44703. default: true
  44704. },
  44705. ]
  44706. ))
  44707. characterMakers.push(() => makeCharacter(
  44708. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44709. {
  44710. front: {
  44711. height: math.unit(1.9, "meters"),
  44712. name: "Front",
  44713. image: {
  44714. source: "./media/characters/ashgar/front.svg",
  44715. extra: 1177/1146,
  44716. bottom: 99/1276
  44717. }
  44718. },
  44719. back: {
  44720. height: math.unit(1.9, "meters"),
  44721. name: "Back",
  44722. image: {
  44723. source: "./media/characters/ashgar/back.svg",
  44724. extra: 1201/1183,
  44725. bottom: 53/1254
  44726. }
  44727. },
  44728. feral: {
  44729. height: math.unit(1.4, "meters"),
  44730. name: "Feral",
  44731. image: {
  44732. source: "./media/characters/ashgar/feral.svg",
  44733. extra: 370/345,
  44734. bottom: 45/415
  44735. }
  44736. },
  44737. },
  44738. [
  44739. {
  44740. name: "Normal",
  44741. height: math.unit(1.9, "meters"),
  44742. default: true
  44743. },
  44744. ]
  44745. ))
  44746. characterMakers.push(() => makeCharacter(
  44747. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44748. {
  44749. regular: {
  44750. height: math.unit(6, "feet"),
  44751. weight: math.unit(220, "lb"),
  44752. name: "Regular",
  44753. image: {
  44754. source: "./media/characters/phillip/regular.svg",
  44755. extra: 1373/1277,
  44756. bottom: 75/1448
  44757. }
  44758. },
  44759. dressed: {
  44760. height: math.unit(6, "feet"),
  44761. weight: math.unit(220, "lb"),
  44762. name: "Dressed",
  44763. image: {
  44764. source: "./media/characters/phillip/dressed.svg",
  44765. extra: 1373/1277,
  44766. bottom: 75/1448
  44767. }
  44768. },
  44769. paw: {
  44770. height: math.unit(1.44, "feet"),
  44771. name: "Paw",
  44772. image: {
  44773. source: "./media/characters/phillip/paw.svg"
  44774. }
  44775. },
  44776. },
  44777. [
  44778. {
  44779. name: "Normal",
  44780. height: math.unit(6, "feet"),
  44781. default: true
  44782. },
  44783. ]
  44784. ))
  44785. characterMakers.push(() => makeCharacter(
  44786. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44787. {
  44788. side: {
  44789. height: math.unit(42, "feet"),
  44790. name: "Side",
  44791. image: {
  44792. source: "./media/characters/uvula/side.svg",
  44793. extra: 683/586,
  44794. bottom: 60/743
  44795. }
  44796. },
  44797. front: {
  44798. height: math.unit(42, "feet"),
  44799. name: "Front",
  44800. image: {
  44801. source: "./media/characters/uvula/front.svg",
  44802. extra: 705/613,
  44803. bottom: 54/759
  44804. }
  44805. },
  44806. maw: {
  44807. height: math.unit(23.5, "feet"),
  44808. name: "Maw",
  44809. image: {
  44810. source: "./media/characters/uvula/maw.svg"
  44811. }
  44812. },
  44813. },
  44814. [
  44815. {
  44816. name: "Original Size",
  44817. height: math.unit(14, "inches")
  44818. },
  44819. {
  44820. name: "Human Size",
  44821. height: math.unit(6, "feet")
  44822. },
  44823. {
  44824. name: "Big",
  44825. height: math.unit(42, "feet"),
  44826. default: true
  44827. },
  44828. {
  44829. name: "Bigger",
  44830. height: math.unit(100, "feet")
  44831. },
  44832. ]
  44833. ))
  44834. characterMakers.push(() => makeCharacter(
  44835. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44836. {
  44837. front: {
  44838. height: math.unit(5 + 11/12, "feet"),
  44839. name: "Front",
  44840. image: {
  44841. source: "./media/characters/lannah/front.svg",
  44842. extra: 1208/1113,
  44843. bottom: 97/1305
  44844. }
  44845. },
  44846. },
  44847. [
  44848. {
  44849. name: "Normal",
  44850. height: math.unit(5 + 11/12, "feet"),
  44851. default: true
  44852. },
  44853. ]
  44854. ))
  44855. characterMakers.push(() => makeCharacter(
  44856. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44857. {
  44858. front: {
  44859. height: math.unit(6 + 3/12, "feet"),
  44860. weight: math.unit(3.5, "tons"),
  44861. name: "Front",
  44862. image: {
  44863. source: "./media/characters/emberflame/front.svg",
  44864. extra: 1198/672,
  44865. bottom: 82/1280
  44866. }
  44867. },
  44868. side: {
  44869. height: math.unit(6 + 3/12, "feet"),
  44870. weight: math.unit(3.5, "tons"),
  44871. name: "Side",
  44872. image: {
  44873. source: "./media/characters/emberflame/side.svg",
  44874. extra: 938/527,
  44875. bottom: 56/994
  44876. }
  44877. },
  44878. },
  44879. [
  44880. {
  44881. name: "Normal",
  44882. height: math.unit(6 + 3/12, "feet"),
  44883. default: true
  44884. },
  44885. ]
  44886. ))
  44887. characterMakers.push(() => makeCharacter(
  44888. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44889. {
  44890. side: {
  44891. height: math.unit(17.5, "feet"),
  44892. weight: math.unit(35, "tons"),
  44893. name: "Side",
  44894. image: {
  44895. source: "./media/characters/sophie-ambrose/side.svg",
  44896. extra: 1573/1242,
  44897. bottom: 71/1644
  44898. }
  44899. },
  44900. maw: {
  44901. height: math.unit(7.4, "feet"),
  44902. name: "Maw",
  44903. image: {
  44904. source: "./media/characters/sophie-ambrose/maw.svg"
  44905. }
  44906. },
  44907. },
  44908. [
  44909. {
  44910. name: "Normal",
  44911. height: math.unit(17.5, "feet"),
  44912. default: true
  44913. },
  44914. ]
  44915. ))
  44916. characterMakers.push(() => makeCharacter(
  44917. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44918. {
  44919. front: {
  44920. height: math.unit(280, "feet"),
  44921. weight: math.unit(550, "tons"),
  44922. name: "Front",
  44923. image: {
  44924. source: "./media/characters/king-mugi/front.svg",
  44925. extra: 1102/947,
  44926. bottom: 104/1206
  44927. }
  44928. },
  44929. },
  44930. [
  44931. {
  44932. name: "King Mugi",
  44933. height: math.unit(280, "feet"),
  44934. default: true
  44935. },
  44936. ]
  44937. ))
  44938. characterMakers.push(() => makeCharacter(
  44939. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44940. {
  44941. front: {
  44942. height: math.unit(64, "meters"),
  44943. name: "Front",
  44944. image: {
  44945. source: "./media/characters/nova-fox/front.svg",
  44946. extra: 1310/1246,
  44947. bottom: 65/1375
  44948. }
  44949. },
  44950. },
  44951. [
  44952. {
  44953. name: "Macro",
  44954. height: math.unit(64, "meters"),
  44955. default: true
  44956. },
  44957. ]
  44958. ))
  44959. characterMakers.push(() => makeCharacter(
  44960. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44961. {
  44962. front: {
  44963. height: math.unit(6 + 3/12, "feet"),
  44964. weight: math.unit(170, "lb"),
  44965. name: "Front",
  44966. image: {
  44967. source: "./media/characters/sam-bat/front.svg",
  44968. extra: 1601/1411,
  44969. bottom: 125/1726
  44970. }
  44971. },
  44972. back: {
  44973. height: math.unit(6 + 3/12, "feet"),
  44974. weight: math.unit(170, "lb"),
  44975. name: "Back",
  44976. image: {
  44977. source: "./media/characters/sam-bat/back.svg",
  44978. extra: 1577/1405,
  44979. bottom: 58/1635
  44980. }
  44981. },
  44982. },
  44983. [
  44984. {
  44985. name: "Normal",
  44986. height: math.unit(6 + 3/12, "feet"),
  44987. default: true
  44988. },
  44989. ]
  44990. ))
  44991. characterMakers.push(() => makeCharacter(
  44992. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44993. {
  44994. front: {
  44995. height: math.unit(59, "feet"),
  44996. weight: math.unit(40000, "lb"),
  44997. name: "Front",
  44998. image: {
  44999. source: "./media/characters/inari/front.svg",
  45000. extra: 1884/1350,
  45001. bottom: 95/1979
  45002. }
  45003. },
  45004. },
  45005. [
  45006. {
  45007. name: "Gigantamax",
  45008. height: math.unit(59, "feet"),
  45009. default: true
  45010. },
  45011. ]
  45012. ))
  45013. characterMakers.push(() => makeCharacter(
  45014. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  45015. {
  45016. front: {
  45017. height: math.unit(5 + 8/12, "feet"),
  45018. name: "Front",
  45019. image: {
  45020. source: "./media/characters/elizabeth/front.svg",
  45021. extra: 1395/1298,
  45022. bottom: 54/1449
  45023. }
  45024. },
  45025. mouth: {
  45026. height: math.unit(1.97, "feet"),
  45027. name: "Mouth",
  45028. image: {
  45029. source: "./media/characters/elizabeth/mouth.svg"
  45030. }
  45031. },
  45032. foot: {
  45033. height: math.unit(1.17, "feet"),
  45034. name: "Foot",
  45035. image: {
  45036. source: "./media/characters/elizabeth/foot.svg"
  45037. }
  45038. },
  45039. },
  45040. [
  45041. {
  45042. name: "Normal",
  45043. height: math.unit(5 + 8/12, "feet"),
  45044. default: true
  45045. },
  45046. {
  45047. name: "Minimacro",
  45048. height: math.unit(18, "feet")
  45049. },
  45050. {
  45051. name: "Macro",
  45052. height: math.unit(180, "feet")
  45053. },
  45054. ]
  45055. ))
  45056. characterMakers.push(() => makeCharacter(
  45057. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  45058. {
  45059. front: {
  45060. height: math.unit(5 + 2/12, "feet"),
  45061. name: "Front",
  45062. image: {
  45063. source: "./media/characters/october-gossamer/front.svg",
  45064. extra: 505/454,
  45065. bottom: 7/512
  45066. }
  45067. },
  45068. back: {
  45069. height: math.unit(5 + 2/12, "feet"),
  45070. name: "Back",
  45071. image: {
  45072. source: "./media/characters/october-gossamer/back.svg",
  45073. extra: 501/454,
  45074. bottom: 11/512
  45075. }
  45076. },
  45077. },
  45078. [
  45079. {
  45080. name: "Normal",
  45081. height: math.unit(5 + 2/12, "feet"),
  45082. default: true
  45083. },
  45084. ]
  45085. ))
  45086. characterMakers.push(() => makeCharacter(
  45087. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  45088. {
  45089. front: {
  45090. height: math.unit(5, "feet"),
  45091. name: "Front",
  45092. image: {
  45093. source: "./media/characters/epiglottis/front.svg",
  45094. extra: 923/849,
  45095. bottom: 17/940
  45096. }
  45097. },
  45098. },
  45099. [
  45100. {
  45101. name: "Original Size",
  45102. height: math.unit(10, "inches")
  45103. },
  45104. {
  45105. name: "Human Size",
  45106. height: math.unit(5, "feet"),
  45107. default: true
  45108. },
  45109. {
  45110. name: "Big",
  45111. height: math.unit(25, "feet")
  45112. },
  45113. {
  45114. name: "Bigger",
  45115. height: math.unit(50, "feet")
  45116. },
  45117. {
  45118. name: "oh lawd",
  45119. height: math.unit(75, "feet")
  45120. },
  45121. ]
  45122. ))
  45123. characterMakers.push(() => makeCharacter(
  45124. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  45125. {
  45126. front: {
  45127. height: math.unit(2 + 4/12, "feet"),
  45128. weight: math.unit(60, "lb"),
  45129. name: "Front",
  45130. image: {
  45131. source: "./media/characters/lerm/front.svg",
  45132. extra: 796/790,
  45133. bottom: 79/875
  45134. }
  45135. },
  45136. },
  45137. [
  45138. {
  45139. name: "Normal",
  45140. height: math.unit(2 + 4/12, "feet"),
  45141. default: true
  45142. },
  45143. ]
  45144. ))
  45145. characterMakers.push(() => makeCharacter(
  45146. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  45147. {
  45148. front: {
  45149. height: math.unit(5.5, "feet"),
  45150. weight: math.unit(130, "lb"),
  45151. name: "Front",
  45152. image: {
  45153. source: "./media/characters/xena-nebadon/front.svg",
  45154. extra: 1828/1730,
  45155. bottom: 79/1907
  45156. }
  45157. },
  45158. },
  45159. [
  45160. {
  45161. name: "Tiny Puppy",
  45162. height: math.unit(3, "inches")
  45163. },
  45164. {
  45165. name: "Normal",
  45166. height: math.unit(5.5, "feet"),
  45167. default: true
  45168. },
  45169. {
  45170. name: "Lotta Lady",
  45171. height: math.unit(12, "feet")
  45172. },
  45173. {
  45174. name: "Pretty Big",
  45175. height: math.unit(100, "feet")
  45176. },
  45177. {
  45178. name: "Big",
  45179. height: math.unit(500, "feet")
  45180. },
  45181. {
  45182. name: "Skyscraper Toys",
  45183. height: math.unit(2500, "feet")
  45184. },
  45185. {
  45186. name: "Plane Catcher",
  45187. height: math.unit(8, "miles")
  45188. },
  45189. {
  45190. name: "Planet Toys",
  45191. height: math.unit(15, "earths")
  45192. },
  45193. {
  45194. name: "Stardust",
  45195. height: math.unit(0.25, "galaxies")
  45196. },
  45197. {
  45198. name: "Snacks",
  45199. height: math.unit(70, "universes")
  45200. },
  45201. ]
  45202. ))
  45203. characterMakers.push(() => makeCharacter(
  45204. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45205. {
  45206. front: {
  45207. height: math.unit(1.6, "meters"),
  45208. weight: math.unit(60, "kg"),
  45209. name: "Front",
  45210. image: {
  45211. source: "./media/characters/bounty/front.svg",
  45212. extra: 1426/1308,
  45213. bottom: 15/1441
  45214. }
  45215. },
  45216. back: {
  45217. height: math.unit(1.6, "meters"),
  45218. weight: math.unit(60, "kg"),
  45219. name: "Back",
  45220. image: {
  45221. source: "./media/characters/bounty/back.svg",
  45222. extra: 1417/1307,
  45223. bottom: 8/1425
  45224. }
  45225. },
  45226. },
  45227. [
  45228. {
  45229. name: "Normal",
  45230. height: math.unit(1.6, "meters"),
  45231. default: true
  45232. },
  45233. {
  45234. name: "Macro",
  45235. height: math.unit(300, "meters")
  45236. },
  45237. ]
  45238. ))
  45239. characterMakers.push(() => makeCharacter(
  45240. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45241. {
  45242. front: {
  45243. height: math.unit(2 + 8/12, "feet"),
  45244. weight: math.unit(15, "lb"),
  45245. name: "Front",
  45246. image: {
  45247. source: "./media/characters/mochi/front.svg",
  45248. extra: 1022/852,
  45249. bottom: 435/1457
  45250. }
  45251. },
  45252. back: {
  45253. height: math.unit(2 + 8/12, "feet"),
  45254. weight: math.unit(15, "lb"),
  45255. name: "Back",
  45256. image: {
  45257. source: "./media/characters/mochi/back.svg",
  45258. extra: 1335/1119,
  45259. bottom: 39/1374
  45260. }
  45261. },
  45262. bird: {
  45263. height: math.unit(2 + 8/12, "feet"),
  45264. weight: math.unit(15, "lb"),
  45265. name: "Bird",
  45266. image: {
  45267. source: "./media/characters/mochi/bird.svg",
  45268. extra: 1251/1113,
  45269. bottom: 178/1429
  45270. }
  45271. },
  45272. kaiju: {
  45273. height: math.unit(154, "feet"),
  45274. weight: math.unit(1e7, "lb"),
  45275. name: "Kaiju",
  45276. image: {
  45277. source: "./media/characters/mochi/kaiju.svg",
  45278. extra: 460/324,
  45279. bottom: 40/500
  45280. }
  45281. },
  45282. head: {
  45283. height: math.unit(1.21, "feet"),
  45284. name: "Head",
  45285. image: {
  45286. source: "./media/characters/mochi/head.svg"
  45287. }
  45288. },
  45289. alternateTail: {
  45290. height: math.unit(2 + 8/12, "feet"),
  45291. weight: math.unit(45, "lb"),
  45292. name: "Alternate Tail",
  45293. image: {
  45294. source: "./media/characters/mochi/alternate-tail.svg",
  45295. extra: 139/76,
  45296. bottom: 45/184
  45297. }
  45298. },
  45299. },
  45300. [
  45301. {
  45302. name: "Micro",
  45303. height: math.unit(2, "inches")
  45304. },
  45305. {
  45306. name: "Normal",
  45307. height: math.unit(2 + 8/12, "feet"),
  45308. default: true
  45309. },
  45310. {
  45311. name: "Macro",
  45312. height: math.unit(106, "feet")
  45313. },
  45314. ]
  45315. ))
  45316. characterMakers.push(() => makeCharacter(
  45317. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45318. {
  45319. front: {
  45320. height: math.unit(5.67, "feet"),
  45321. weight: math.unit(135, "lb"),
  45322. name: "Front",
  45323. image: {
  45324. source: "./media/characters/sarel/front.svg",
  45325. extra: 865/788,
  45326. bottom: 97/962
  45327. }
  45328. },
  45329. back: {
  45330. height: math.unit(5.67, "feet"),
  45331. weight: math.unit(135, "lb"),
  45332. name: "Back",
  45333. image: {
  45334. source: "./media/characters/sarel/back.svg",
  45335. extra: 857/777,
  45336. bottom: 32/889
  45337. }
  45338. },
  45339. chozoan: {
  45340. height: math.unit(5.67, "feet"),
  45341. weight: math.unit(135, "lb"),
  45342. name: "Chozoan",
  45343. image: {
  45344. source: "./media/characters/sarel/chozoan.svg",
  45345. extra: 865/788,
  45346. bottom: 97/962
  45347. }
  45348. },
  45349. current: {
  45350. height: math.unit(5.67, "feet"),
  45351. weight: math.unit(135, "lb"),
  45352. name: "Current",
  45353. image: {
  45354. source: "./media/characters/sarel/current.svg",
  45355. extra: 865/788,
  45356. bottom: 97/962
  45357. }
  45358. },
  45359. head: {
  45360. height: math.unit(1.77, "feet"),
  45361. name: "Head",
  45362. image: {
  45363. source: "./media/characters/sarel/head.svg"
  45364. }
  45365. },
  45366. claws: {
  45367. height: math.unit(1.8, "feet"),
  45368. name: "Claws",
  45369. image: {
  45370. source: "./media/characters/sarel/claws.svg"
  45371. }
  45372. },
  45373. clawsAlt: {
  45374. height: math.unit(1.8, "feet"),
  45375. name: "Claws-alt",
  45376. image: {
  45377. source: "./media/characters/sarel/claws-alt.svg"
  45378. }
  45379. },
  45380. },
  45381. [
  45382. {
  45383. name: "Normal",
  45384. height: math.unit(5.67, "feet"),
  45385. default: true
  45386. },
  45387. ]
  45388. ))
  45389. characterMakers.push(() => makeCharacter(
  45390. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45391. {
  45392. front: {
  45393. height: math.unit(5500, "feet"),
  45394. name: "Front",
  45395. image: {
  45396. source: "./media/characters/alyonia/front.svg",
  45397. extra: 1200/1135,
  45398. bottom: 29/1229
  45399. }
  45400. },
  45401. back: {
  45402. height: math.unit(5500, "feet"),
  45403. name: "Back",
  45404. image: {
  45405. source: "./media/characters/alyonia/back.svg",
  45406. extra: 1205/1138,
  45407. bottom: 10/1215
  45408. }
  45409. },
  45410. },
  45411. [
  45412. {
  45413. name: "Small",
  45414. height: math.unit(10, "feet")
  45415. },
  45416. {
  45417. name: "Macro",
  45418. height: math.unit(500, "feet")
  45419. },
  45420. {
  45421. name: "Mega Macro",
  45422. height: math.unit(5500, "feet"),
  45423. default: true
  45424. },
  45425. {
  45426. name: "Mega Macro+",
  45427. height: math.unit(500000, "feet")
  45428. },
  45429. {
  45430. name: "Giga Macro",
  45431. height: math.unit(3000, "miles")
  45432. },
  45433. {
  45434. name: "Tera Macro",
  45435. height: math.unit(2.8e6, "miles")
  45436. },
  45437. {
  45438. name: "Galactic",
  45439. height: math.unit(120000, "lightyears")
  45440. },
  45441. ]
  45442. ))
  45443. characterMakers.push(() => makeCharacter(
  45444. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45445. {
  45446. werewolf: {
  45447. height: math.unit(8, "feet"),
  45448. weight: math.unit(425, "lb"),
  45449. name: "Werewolf",
  45450. image: {
  45451. source: "./media/characters/autumn/werewolf.svg",
  45452. extra: 2154/2031,
  45453. bottom: 160/2314
  45454. }
  45455. },
  45456. human: {
  45457. height: math.unit(5 + 8/12, "feet"),
  45458. weight: math.unit(150, "lb"),
  45459. name: "Human",
  45460. image: {
  45461. source: "./media/characters/autumn/human.svg",
  45462. extra: 1200/1149,
  45463. bottom: 30/1230
  45464. }
  45465. },
  45466. },
  45467. [
  45468. {
  45469. name: "Normal",
  45470. height: math.unit(8, "feet"),
  45471. default: true
  45472. },
  45473. ]
  45474. ))
  45475. characterMakers.push(() => makeCharacter(
  45476. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45477. {
  45478. front: {
  45479. height: math.unit(8 + 5/12, "feet"),
  45480. weight: math.unit(825, "lb"),
  45481. name: "Front",
  45482. image: {
  45483. source: "./media/characters/cobalt-charizard/front.svg",
  45484. extra: 1268/1155,
  45485. bottom: 122/1390
  45486. }
  45487. },
  45488. side: {
  45489. height: math.unit(8 + 5/12, "feet"),
  45490. weight: math.unit(825, "lb"),
  45491. name: "Side",
  45492. image: {
  45493. source: "./media/characters/cobalt-charizard/side.svg",
  45494. extra: 1348/1257,
  45495. bottom: 58/1406
  45496. }
  45497. },
  45498. gMax: {
  45499. height: math.unit(134 + 11/12, "feet"),
  45500. name: "G-Max",
  45501. image: {
  45502. source: "./media/characters/cobalt-charizard/g-max.svg",
  45503. extra: 1835/1541,
  45504. bottom: 151/1986
  45505. }
  45506. },
  45507. },
  45508. [
  45509. {
  45510. name: "Normal",
  45511. height: math.unit(8 + 5/12, "feet"),
  45512. default: true
  45513. },
  45514. ]
  45515. ))
  45516. characterMakers.push(() => makeCharacter(
  45517. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45518. {
  45519. front: {
  45520. height: math.unit(6 + 3/12, "feet"),
  45521. weight: math.unit(210, "lb"),
  45522. name: "Front",
  45523. image: {
  45524. source: "./media/characters/stella/front.svg",
  45525. extra: 3549/3335,
  45526. bottom: 51/3600
  45527. }
  45528. },
  45529. },
  45530. [
  45531. {
  45532. name: "Normal",
  45533. height: math.unit(6 + 3/12, "feet"),
  45534. default: true
  45535. },
  45536. ]
  45537. ))
  45538. characterMakers.push(() => makeCharacter(
  45539. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45540. {
  45541. front: {
  45542. height: math.unit(5, "feet"),
  45543. weight: math.unit(90, "lb"),
  45544. name: "Front",
  45545. image: {
  45546. source: "./media/characters/riley-bishop/front.svg",
  45547. extra: 1450/1428,
  45548. bottom: 152/1602
  45549. }
  45550. },
  45551. },
  45552. [
  45553. {
  45554. name: "Normal",
  45555. height: math.unit(5, "feet"),
  45556. default: true
  45557. },
  45558. ]
  45559. ))
  45560. characterMakers.push(() => makeCharacter(
  45561. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45562. {
  45563. side: {
  45564. height: math.unit(8 + 2/12, "feet"),
  45565. weight: math.unit(500, "kg"),
  45566. name: "Side",
  45567. image: {
  45568. source: "./media/characters/theo-arcanine/side.svg",
  45569. extra: 1342/1074,
  45570. bottom: 111/1453
  45571. }
  45572. },
  45573. },
  45574. [
  45575. {
  45576. name: "Normal",
  45577. height: math.unit(8 + 2/12, "feet"),
  45578. default: true
  45579. },
  45580. ]
  45581. ))
  45582. characterMakers.push(() => makeCharacter(
  45583. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45584. {
  45585. front: {
  45586. height: math.unit(4, "feet"),
  45587. name: "Front",
  45588. image: {
  45589. source: "./media/characters/kali/front.svg",
  45590. extra: 1074/867,
  45591. bottom: 34/1108
  45592. }
  45593. },
  45594. back: {
  45595. height: math.unit(4, "feet"),
  45596. name: "Back",
  45597. image: {
  45598. source: "./media/characters/kali/back.svg",
  45599. extra: 1068/863,
  45600. bottom: 26/1094
  45601. }
  45602. },
  45603. frontAlt: {
  45604. height: math.unit(4, "feet"),
  45605. name: "Front (Alt)",
  45606. image: {
  45607. source: "./media/characters/kali/front-alt.svg",
  45608. extra: 1921/1357,
  45609. bottom: 70/1991
  45610. }
  45611. },
  45612. },
  45613. [
  45614. {
  45615. name: "Normal",
  45616. height: math.unit(4, "feet"),
  45617. default: true
  45618. },
  45619. {
  45620. name: "Big'vali",
  45621. height: math.unit(11, "feet")
  45622. },
  45623. {
  45624. name: "Macro",
  45625. height: math.unit(32, "meters")
  45626. },
  45627. {
  45628. name: "Macro+",
  45629. height: math.unit(150, "meters")
  45630. },
  45631. {
  45632. name: "Megamacro",
  45633. height: math.unit(7500, "meters")
  45634. },
  45635. {
  45636. name: "Megamacro+",
  45637. height: math.unit(80, "kilometers")
  45638. },
  45639. ]
  45640. ))
  45641. characterMakers.push(() => makeCharacter(
  45642. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45643. {
  45644. side: {
  45645. height: math.unit(5 + 11/12, "feet"),
  45646. weight: math.unit(236, "lb"),
  45647. name: "Side",
  45648. image: {
  45649. source: "./media/characters/gapp/side.svg",
  45650. extra: 775/340,
  45651. bottom: 58/833
  45652. }
  45653. },
  45654. mouth: {
  45655. height: math.unit(2.98, "feet"),
  45656. name: "Mouth",
  45657. image: {
  45658. source: "./media/characters/gapp/mouth.svg"
  45659. }
  45660. },
  45661. },
  45662. [
  45663. {
  45664. name: "Normal",
  45665. height: math.unit(5 + 1/12, "feet"),
  45666. default: true
  45667. },
  45668. ]
  45669. ))
  45670. characterMakers.push(() => makeCharacter(
  45671. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45672. {
  45673. front: {
  45674. height: math.unit(6, "feet"),
  45675. name: "Front",
  45676. image: {
  45677. source: "./media/characters/persephone/front.svg",
  45678. extra: 1895/1717,
  45679. bottom: 96/1991
  45680. }
  45681. },
  45682. back: {
  45683. height: math.unit(6, "feet"),
  45684. name: "Back",
  45685. image: {
  45686. source: "./media/characters/persephone/back.svg",
  45687. extra: 1868/1679,
  45688. bottom: 26/1894
  45689. }
  45690. },
  45691. casual: {
  45692. height: math.unit(6, "feet"),
  45693. name: "Casual",
  45694. image: {
  45695. source: "./media/characters/persephone/casual.svg",
  45696. extra: 1713/1541,
  45697. bottom: 76/1789
  45698. }
  45699. },
  45700. gaming: {
  45701. height: math.unit(3.55, "feet"),
  45702. name: "Gaming",
  45703. image: {
  45704. source: "./media/characters/persephone/gaming.svg",
  45705. extra: 1242/1038,
  45706. bottom: 66/1308
  45707. }
  45708. },
  45709. head: {
  45710. height: math.unit(2.15, "feet"),
  45711. name: "😐",
  45712. image: {
  45713. source: "./media/characters/persephone/head.svg"
  45714. }
  45715. },
  45716. talking: {
  45717. height: math.unit(2.5, "feet"),
  45718. name: "💬",
  45719. image: {
  45720. source: "./media/characters/persephone/talking.svg"
  45721. }
  45722. },
  45723. hmm: {
  45724. height: math.unit(2.28, "feet"),
  45725. name: "🤨",
  45726. image: {
  45727. source: "./media/characters/persephone/hmm.svg"
  45728. }
  45729. },
  45730. },
  45731. [
  45732. {
  45733. name: "Human Size",
  45734. height: math.unit(6, "feet")
  45735. },
  45736. {
  45737. name: "Big Steppy",
  45738. height: math.unit(600, "meters"),
  45739. default: true
  45740. },
  45741. {
  45742. name: "Galaxy Brain",
  45743. height: math.unit(1, "zettameter")
  45744. },
  45745. ]
  45746. ))
  45747. characterMakers.push(() => makeCharacter(
  45748. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45749. {
  45750. front: {
  45751. height: math.unit(1.85, "meters"),
  45752. name: "Front",
  45753. image: {
  45754. source: "./media/characters/riley-foxthing/front.svg",
  45755. extra: 1495/1354,
  45756. bottom: 122/1617
  45757. }
  45758. },
  45759. frontAlt: {
  45760. height: math.unit(1.85, "meters"),
  45761. name: "Front (Alt)",
  45762. image: {
  45763. source: "./media/characters/riley-foxthing/front-alt.svg",
  45764. extra: 1572/1389,
  45765. bottom: 116/1688
  45766. }
  45767. },
  45768. },
  45769. [
  45770. {
  45771. name: "Normal Sized",
  45772. height: math.unit(1.85, "meters"),
  45773. default: true
  45774. },
  45775. {
  45776. name: "Quite Sizable",
  45777. height: math.unit(5, "meters")
  45778. },
  45779. {
  45780. name: "Rather Large",
  45781. height: math.unit(20, "meters")
  45782. },
  45783. {
  45784. name: "Macro",
  45785. height: math.unit(450, "meters")
  45786. },
  45787. {
  45788. name: "Giga",
  45789. height: math.unit(5, "km")
  45790. },
  45791. ]
  45792. ))
  45793. characterMakers.push(() => makeCharacter(
  45794. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45795. {
  45796. front: {
  45797. height: math.unit(6, "feet"),
  45798. weight: math.unit(200, "lb"),
  45799. name: "Front",
  45800. image: {
  45801. source: "./media/characters/blizzard/front.svg",
  45802. extra: 1136/990,
  45803. bottom: 136/1272
  45804. }
  45805. },
  45806. back: {
  45807. height: math.unit(6, "feet"),
  45808. weight: math.unit(200, "lb"),
  45809. name: "Back",
  45810. image: {
  45811. source: "./media/characters/blizzard/back.svg",
  45812. extra: 1175/1034,
  45813. bottom: 97/1272
  45814. }
  45815. },
  45816. sitting: {
  45817. height: math.unit(3.725, "feet"),
  45818. weight: math.unit(200, "lb"),
  45819. name: "Sitting",
  45820. image: {
  45821. source: "./media/characters/blizzard/sitting.svg",
  45822. extra: 581/485,
  45823. bottom: 90/671
  45824. }
  45825. },
  45826. frontWizard: {
  45827. height: math.unit(7.9, "feet"),
  45828. weight: math.unit(200, "lb"),
  45829. name: "Front (Wizard)",
  45830. image: {
  45831. source: "./media/characters/blizzard/front-wizard.svg"
  45832. }
  45833. },
  45834. backWizard: {
  45835. height: math.unit(7.9, "feet"),
  45836. weight: math.unit(200, "lb"),
  45837. name: "Back (Wizard)",
  45838. image: {
  45839. source: "./media/characters/blizzard/back-wizard.svg"
  45840. }
  45841. },
  45842. frontNsfw: {
  45843. height: math.unit(6, "feet"),
  45844. weight: math.unit(200, "lb"),
  45845. name: "Front (NSFW)",
  45846. image: {
  45847. source: "./media/characters/blizzard/front-nsfw.svg",
  45848. extra: 1136/990,
  45849. bottom: 136/1272
  45850. }
  45851. },
  45852. backNsfw: {
  45853. height: math.unit(6, "feet"),
  45854. weight: math.unit(200, "lb"),
  45855. name: "Back (NSFW)",
  45856. image: {
  45857. source: "./media/characters/blizzard/back-nsfw.svg",
  45858. extra: 1175/1034,
  45859. bottom: 97/1272
  45860. }
  45861. },
  45862. sittingNsfw: {
  45863. height: math.unit(3.725, "feet"),
  45864. weight: math.unit(200, "lb"),
  45865. name: "Sitting (NSFW)",
  45866. image: {
  45867. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45868. extra: 581/485,
  45869. bottom: 90/671
  45870. }
  45871. },
  45872. wizardFrontNsfw: {
  45873. height: math.unit(7.9, "feet"),
  45874. weight: math.unit(200, "lb"),
  45875. name: "Wizard (Front, NSFW)",
  45876. image: {
  45877. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45878. }
  45879. },
  45880. },
  45881. [
  45882. {
  45883. name: "Normal",
  45884. height: math.unit(6, "feet"),
  45885. default: true
  45886. },
  45887. ]
  45888. ))
  45889. characterMakers.push(() => makeCharacter(
  45890. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45891. {
  45892. front: {
  45893. height: math.unit(5 + 2/12, "feet"),
  45894. name: "Front",
  45895. image: {
  45896. source: "./media/characters/lumi/front.svg",
  45897. extra: 1328/1268,
  45898. bottom: 103/1431
  45899. }
  45900. },
  45901. back: {
  45902. height: math.unit(5 + 2/12, "feet"),
  45903. name: "Back",
  45904. image: {
  45905. source: "./media/characters/lumi/back.svg",
  45906. extra: 1381/1327,
  45907. bottom: 43/1424
  45908. }
  45909. },
  45910. },
  45911. [
  45912. {
  45913. name: "Normal",
  45914. height: math.unit(5 + 2/12, "feet"),
  45915. default: true
  45916. },
  45917. ]
  45918. ))
  45919. characterMakers.push(() => makeCharacter(
  45920. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45921. {
  45922. front: {
  45923. height: math.unit(5 + 9/12, "feet"),
  45924. name: "Front",
  45925. image: {
  45926. source: "./media/characters/aliya-cotton/front.svg",
  45927. extra: 577/564,
  45928. bottom: 29/606
  45929. }
  45930. },
  45931. },
  45932. [
  45933. {
  45934. name: "Normal",
  45935. height: math.unit(5 + 9/12, "feet"),
  45936. default: true
  45937. },
  45938. ]
  45939. ))
  45940. characterMakers.push(() => makeCharacter(
  45941. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45942. {
  45943. front: {
  45944. height: math.unit(2.7, "meters"),
  45945. weight: math.unit(25000, "lb"),
  45946. name: "Front",
  45947. image: {
  45948. source: "./media/characters/noah-luxray/front.svg",
  45949. extra: 1644/825,
  45950. bottom: 339/1983
  45951. }
  45952. },
  45953. side: {
  45954. height: math.unit(2.97, "meters"),
  45955. weight: math.unit(25000, "lb"),
  45956. name: "Side",
  45957. image: {
  45958. source: "./media/characters/noah-luxray/side.svg",
  45959. extra: 1319/650,
  45960. bottom: 163/1482
  45961. }
  45962. },
  45963. dick: {
  45964. height: math.unit(7.4, "feet"),
  45965. weight: math.unit(2500, "lb"),
  45966. name: "Dick",
  45967. image: {
  45968. source: "./media/characters/noah-luxray/dick.svg"
  45969. }
  45970. },
  45971. dickAlt: {
  45972. height: math.unit(10.83, "feet"),
  45973. weight: math.unit(2500, "lb"),
  45974. name: "Dick-alt",
  45975. image: {
  45976. source: "./media/characters/noah-luxray/dick-alt.svg"
  45977. }
  45978. },
  45979. },
  45980. [
  45981. {
  45982. name: "BIG",
  45983. height: math.unit(2.7, "meters"),
  45984. default: true
  45985. },
  45986. ]
  45987. ))
  45988. characterMakers.push(() => makeCharacter(
  45989. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45990. {
  45991. standing: {
  45992. height: math.unit(183, "cm"),
  45993. weight: math.unit(68, "kg"),
  45994. name: "Standing",
  45995. image: {
  45996. source: "./media/characters/arion/standing.svg",
  45997. extra: 1869/1807,
  45998. bottom: 93/1962
  45999. }
  46000. },
  46001. reclining: {
  46002. height: math.unit(70.5, "cm"),
  46003. weight: math.unit(68, "lb"),
  46004. name: "Reclining",
  46005. image: {
  46006. source: "./media/characters/arion/reclining.svg",
  46007. extra: 937/870,
  46008. bottom: 63/1000
  46009. }
  46010. },
  46011. },
  46012. [
  46013. {
  46014. name: "Colossus Size, Low",
  46015. height: math.unit(33, "meters"),
  46016. default: true
  46017. },
  46018. {
  46019. name: "Colossus Size, Mid",
  46020. height: math.unit(52, "meters")
  46021. },
  46022. {
  46023. name: "Colossus Size, High",
  46024. height: math.unit(60, "meters")
  46025. },
  46026. {
  46027. name: "Titan Size, Low",
  46028. height: math.unit(91, "meters"),
  46029. },
  46030. {
  46031. name: "Titan Size, Mid",
  46032. height: math.unit(122, "meters")
  46033. },
  46034. {
  46035. name: "Titan Size, High",
  46036. height: math.unit(162, "meters")
  46037. },
  46038. ]
  46039. ))
  46040. characterMakers.push(() => makeCharacter(
  46041. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  46042. {
  46043. front: {
  46044. height: math.unit(53, "meters"),
  46045. name: "Front",
  46046. image: {
  46047. source: "./media/characters/stellar-marbey/front.svg",
  46048. extra: 1913/1805,
  46049. bottom: 92/2005
  46050. }
  46051. },
  46052. back: {
  46053. height: math.unit(53, "meters"),
  46054. name: "Back",
  46055. image: {
  46056. source: "./media/characters/stellar-marbey/back.svg",
  46057. extra: 1960/1851,
  46058. bottom: 28/1988
  46059. }
  46060. },
  46061. mouth: {
  46062. height: math.unit(3.5, "meters"),
  46063. name: "Mouth",
  46064. image: {
  46065. source: "./media/characters/stellar-marbey/mouth.svg"
  46066. }
  46067. },
  46068. },
  46069. [
  46070. {
  46071. name: "Macro",
  46072. height: math.unit(53, "meters"),
  46073. default: true
  46074. },
  46075. ]
  46076. ))
  46077. characterMakers.push(() => makeCharacter(
  46078. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  46079. {
  46080. front: {
  46081. height: math.unit(8 + 1/12, "feet"),
  46082. weight: math.unit(233, "lb"),
  46083. name: "Front",
  46084. image: {
  46085. source: "./media/characters/matsu/front.svg",
  46086. extra: 832/772,
  46087. bottom: 40/872
  46088. }
  46089. },
  46090. back: {
  46091. height: math.unit(8 + 1/12, "feet"),
  46092. weight: math.unit(233, "lb"),
  46093. name: "Back",
  46094. image: {
  46095. source: "./media/characters/matsu/back.svg",
  46096. extra: 839/780,
  46097. bottom: 47/886
  46098. }
  46099. },
  46100. },
  46101. [
  46102. {
  46103. name: "Normal",
  46104. height: math.unit(8 + 1/12, "feet"),
  46105. default: true
  46106. },
  46107. ]
  46108. ))
  46109. characterMakers.push(() => makeCharacter(
  46110. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46111. {
  46112. front: {
  46113. height: math.unit(4, "feet"),
  46114. weight: math.unit(148, "lb"),
  46115. name: "Front",
  46116. image: {
  46117. source: "./media/characters/thiz/front.svg",
  46118. extra: 1913/1748,
  46119. bottom: 62/1975
  46120. }
  46121. },
  46122. },
  46123. [
  46124. {
  46125. name: "Normal",
  46126. height: math.unit(4, "feet"),
  46127. default: true
  46128. },
  46129. ]
  46130. ))
  46131. characterMakers.push(() => makeCharacter(
  46132. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46133. {
  46134. front: {
  46135. height: math.unit(7 + 6/12, "feet"),
  46136. weight: math.unit(267, "lb"),
  46137. name: "Front",
  46138. image: {
  46139. source: "./media/characters/marcel/front.svg",
  46140. extra: 1221/1096,
  46141. bottom: 76/1297
  46142. }
  46143. },
  46144. },
  46145. [
  46146. {
  46147. name: "Normal",
  46148. height: math.unit(7 + 6/12, "feet"),
  46149. default: true
  46150. },
  46151. ]
  46152. ))
  46153. characterMakers.push(() => makeCharacter(
  46154. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46155. {
  46156. side: {
  46157. height: math.unit(42, "meters"),
  46158. name: "Side",
  46159. image: {
  46160. source: "./media/characters/flake/side.svg",
  46161. extra: 1525/1306,
  46162. bottom: 209/1734
  46163. }
  46164. },
  46165. },
  46166. [
  46167. {
  46168. name: "Normal",
  46169. height: math.unit(42, "meters"),
  46170. default: true
  46171. },
  46172. ]
  46173. ))
  46174. characterMakers.push(() => makeCharacter(
  46175. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46176. {
  46177. dressed: {
  46178. height: math.unit(6 + 4/12, "feet"),
  46179. weight: math.unit(520, "lb"),
  46180. name: "Dressed",
  46181. image: {
  46182. source: "./media/characters/someonne/dressed.svg",
  46183. extra: 1020/1010,
  46184. bottom: 178/1198
  46185. }
  46186. },
  46187. undressed: {
  46188. height: math.unit(6 + 4/12, "feet"),
  46189. weight: math.unit(520, "lb"),
  46190. name: "Undressed",
  46191. image: {
  46192. source: "./media/characters/someonne/undressed.svg",
  46193. extra: 1019/1014,
  46194. bottom: 169/1188
  46195. }
  46196. },
  46197. },
  46198. [
  46199. {
  46200. name: "Normal",
  46201. height: math.unit(6 + 4/12, "feet"),
  46202. default: true
  46203. },
  46204. ]
  46205. ))
  46206. characterMakers.push(() => makeCharacter(
  46207. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  46208. {
  46209. front: {
  46210. height: math.unit(3, "feet"),
  46211. weight: math.unit(30, "lb"),
  46212. name: "Front",
  46213. image: {
  46214. source: "./media/characters/till/front.svg",
  46215. extra: 892/823,
  46216. bottom: 55/947
  46217. }
  46218. },
  46219. },
  46220. [
  46221. {
  46222. name: "Normal",
  46223. height: math.unit(3, "feet"),
  46224. default: true
  46225. },
  46226. ]
  46227. ))
  46228. characterMakers.push(() => makeCharacter(
  46229. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46230. {
  46231. front: {
  46232. height: math.unit(9 + 8/12, "feet"),
  46233. weight: math.unit(800, "lb"),
  46234. name: "Front",
  46235. image: {
  46236. source: "./media/characters/sydney-heki/front.svg",
  46237. extra: 1360/1300,
  46238. bottom: 22/1382
  46239. }
  46240. },
  46241. back: {
  46242. height: math.unit(9 + 8/12, "feet"),
  46243. weight: math.unit(800, "lb"),
  46244. name: "Back",
  46245. image: {
  46246. source: "./media/characters/sydney-heki/back.svg",
  46247. extra: 1356/1293,
  46248. bottom: 12/1368
  46249. }
  46250. },
  46251. frontDressed: {
  46252. height: math.unit(9 + 8/12, "feet"),
  46253. weight: math.unit(800, "lb"),
  46254. name: "Front-dressed",
  46255. image: {
  46256. source: "./media/characters/sydney-heki/front-dressed.svg",
  46257. extra: 1360/1300,
  46258. bottom: 22/1382
  46259. }
  46260. },
  46261. },
  46262. [
  46263. {
  46264. name: "Normal",
  46265. height: math.unit(9 + 8/12, "feet"),
  46266. default: true
  46267. },
  46268. {
  46269. name: "Macro",
  46270. height: math.unit(500, "feet")
  46271. },
  46272. {
  46273. name: "Megamacro",
  46274. height: math.unit(3.6, "miles")
  46275. },
  46276. ]
  46277. ))
  46278. characterMakers.push(() => makeCharacter(
  46279. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46280. {
  46281. front: {
  46282. height: math.unit(200, "cm"),
  46283. weight: math.unit(250, "lb"),
  46284. name: "Front",
  46285. image: {
  46286. source: "./media/characters/fowler-karlsson/front.svg",
  46287. extra: 897/845,
  46288. bottom: 123/1020
  46289. }
  46290. },
  46291. back: {
  46292. height: math.unit(200, "cm"),
  46293. weight: math.unit(250, "lb"),
  46294. name: "Back",
  46295. image: {
  46296. source: "./media/characters/fowler-karlsson/back.svg",
  46297. extra: 999/944,
  46298. bottom: 26/1025
  46299. }
  46300. },
  46301. dick: {
  46302. height: math.unit(1.92, "feet"),
  46303. weight: math.unit(150, "lb"),
  46304. name: "Dick",
  46305. image: {
  46306. source: "./media/characters/fowler-karlsson/dick.svg"
  46307. }
  46308. },
  46309. },
  46310. [
  46311. {
  46312. name: "Normal",
  46313. height: math.unit(200, "cm"),
  46314. default: true
  46315. },
  46316. {
  46317. name: "Smaller Macro",
  46318. height: math.unit(90, "m")
  46319. },
  46320. {
  46321. name: "Macro",
  46322. height: math.unit(150, "m")
  46323. },
  46324. {
  46325. name: "Bigger Macro",
  46326. height: math.unit(300, "m")
  46327. },
  46328. ]
  46329. ))
  46330. characterMakers.push(() => makeCharacter(
  46331. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46332. {
  46333. side: {
  46334. height: math.unit(8 + 2/12, "feet"),
  46335. weight: math.unit(1, "tonne"),
  46336. name: "Side",
  46337. image: {
  46338. source: "./media/characters/rylide/side.svg",
  46339. extra: 1318/1034,
  46340. bottom: 106/1424
  46341. }
  46342. },
  46343. sitting: {
  46344. height: math.unit(303, "cm"),
  46345. weight: math.unit(1, "tonne"),
  46346. name: "Sitting",
  46347. image: {
  46348. source: "./media/characters/rylide/sitting.svg",
  46349. extra: 1303/1103,
  46350. bottom: 36/1339
  46351. }
  46352. },
  46353. },
  46354. [
  46355. {
  46356. name: "Normal",
  46357. height: math.unit(8 + 2/12, "feet"),
  46358. default: true
  46359. },
  46360. ]
  46361. ))
  46362. characterMakers.push(() => makeCharacter(
  46363. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46364. {
  46365. front: {
  46366. height: math.unit(5 + 10/12, "feet"),
  46367. weight: math.unit(160, "lb"),
  46368. name: "Front",
  46369. image: {
  46370. source: "./media/characters/pudask/front.svg",
  46371. extra: 1616/1590,
  46372. bottom: 161/1777
  46373. }
  46374. },
  46375. },
  46376. [
  46377. {
  46378. name: "Ferret Height",
  46379. height: math.unit(2 + 5/12, "feet")
  46380. },
  46381. {
  46382. name: "Canon Height",
  46383. height: math.unit(5 + 10/12, "feet"),
  46384. default: true
  46385. },
  46386. ]
  46387. ))
  46388. characterMakers.push(() => makeCharacter(
  46389. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46390. {
  46391. front: {
  46392. height: math.unit(3 + 6/12, "feet"),
  46393. weight: math.unit(60, "lb"),
  46394. name: "Front",
  46395. image: {
  46396. source: "./media/characters/ramita/front.svg",
  46397. extra: 1402/1232,
  46398. bottom: 62/1464
  46399. }
  46400. },
  46401. dressed: {
  46402. height: math.unit(3 + 6/12, "feet"),
  46403. weight: math.unit(60, "lb"),
  46404. name: "Dressed",
  46405. image: {
  46406. source: "./media/characters/ramita/dressed.svg",
  46407. extra: 1534/1249,
  46408. bottom: 50/1584
  46409. }
  46410. },
  46411. },
  46412. [
  46413. {
  46414. name: "Normal",
  46415. height: math.unit(3 + 6/12, "feet"),
  46416. default: true
  46417. },
  46418. ]
  46419. ))
  46420. characterMakers.push(() => makeCharacter(
  46421. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46422. {
  46423. front: {
  46424. height: math.unit(8, "feet"),
  46425. name: "Front",
  46426. image: {
  46427. source: "./media/characters/ark/front.svg",
  46428. extra: 772/693,
  46429. bottom: 45/817
  46430. }
  46431. },
  46432. },
  46433. [
  46434. {
  46435. name: "Normal",
  46436. height: math.unit(8, "feet"),
  46437. default: true
  46438. },
  46439. ]
  46440. ))
  46441. characterMakers.push(() => makeCharacter(
  46442. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46443. {
  46444. front: {
  46445. height: math.unit(6, "feet"),
  46446. weight: math.unit(250, "lb"),
  46447. volume: math.unit(5/8, "gallons"),
  46448. name: "Front",
  46449. image: {
  46450. source: "./media/characters/ludwig-horn/front.svg",
  46451. extra: 1782/1635,
  46452. bottom: 96/1878
  46453. }
  46454. },
  46455. back: {
  46456. height: math.unit(6, "feet"),
  46457. weight: math.unit(250, "lb"),
  46458. volume: math.unit(5/8, "gallons"),
  46459. name: "Back",
  46460. image: {
  46461. source: "./media/characters/ludwig-horn/back.svg",
  46462. extra: 1874/1729,
  46463. bottom: 27/1901
  46464. }
  46465. },
  46466. dick: {
  46467. height: math.unit(1.05, "feet"),
  46468. weight: math.unit(15, "lb"),
  46469. volume: math.unit(5/8, "gallons"),
  46470. name: "Dick",
  46471. image: {
  46472. source: "./media/characters/ludwig-horn/dick.svg"
  46473. }
  46474. },
  46475. },
  46476. [
  46477. {
  46478. name: "Small",
  46479. height: math.unit(6, "feet")
  46480. },
  46481. {
  46482. name: "Typical",
  46483. height: math.unit(12, "feet"),
  46484. default: true
  46485. },
  46486. {
  46487. name: "Building",
  46488. height: math.unit(80, "feet")
  46489. },
  46490. {
  46491. name: "Town",
  46492. height: math.unit(800, "feet")
  46493. },
  46494. {
  46495. name: "Kingdom",
  46496. height: math.unit(80000, "feet")
  46497. },
  46498. {
  46499. name: "Planet",
  46500. height: math.unit(8000000, "feet")
  46501. },
  46502. {
  46503. name: "Universe",
  46504. height: math.unit(8000000000, "feet")
  46505. },
  46506. {
  46507. name: "Transcended",
  46508. height: math.unit(8e27, "feet")
  46509. },
  46510. ]
  46511. ))
  46512. characterMakers.push(() => makeCharacter(
  46513. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46514. {
  46515. front: {
  46516. height: math.unit(5, "feet"),
  46517. weight: math.unit(50, "kg"),
  46518. name: "Front",
  46519. image: {
  46520. source: "./media/characters/biot-avery/front.svg",
  46521. extra: 1295/1232,
  46522. bottom: 86/1381
  46523. }
  46524. },
  46525. },
  46526. [
  46527. {
  46528. name: "Normal",
  46529. height: math.unit(5, "feet"),
  46530. default: true
  46531. },
  46532. ]
  46533. ))
  46534. characterMakers.push(() => makeCharacter(
  46535. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46536. {
  46537. front: {
  46538. height: math.unit(6, "feet"),
  46539. name: "Front",
  46540. image: {
  46541. source: "./media/characters/kitsune-kiro/front.svg",
  46542. extra: 1270/1158,
  46543. bottom: 42/1312
  46544. }
  46545. },
  46546. frontAlt: {
  46547. height: math.unit(6, "feet"),
  46548. name: "Front-alt",
  46549. image: {
  46550. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46551. extra: 1130/1081,
  46552. bottom: 36/1166
  46553. }
  46554. },
  46555. },
  46556. [
  46557. {
  46558. name: "Smol",
  46559. height: math.unit(3, "feet")
  46560. },
  46561. {
  46562. name: "Normal",
  46563. height: math.unit(6, "feet"),
  46564. default: true
  46565. },
  46566. ]
  46567. ))
  46568. characterMakers.push(() => makeCharacter(
  46569. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46570. {
  46571. front: {
  46572. height: math.unit(6, "feet"),
  46573. weight: math.unit(125, "lb"),
  46574. name: "Front",
  46575. image: {
  46576. source: "./media/characters/jack-thatcher/front.svg",
  46577. extra: 1474/1370,
  46578. bottom: 26/1500
  46579. }
  46580. },
  46581. back: {
  46582. height: math.unit(6, "feet"),
  46583. weight: math.unit(125, "lb"),
  46584. name: "Back",
  46585. image: {
  46586. source: "./media/characters/jack-thatcher/back.svg",
  46587. extra: 1489/1384,
  46588. bottom: 18/1507
  46589. }
  46590. },
  46591. },
  46592. [
  46593. {
  46594. name: "Normal",
  46595. height: math.unit(6, "feet"),
  46596. default: true
  46597. },
  46598. {
  46599. name: "Macro",
  46600. height: math.unit(75, "feet")
  46601. },
  46602. {
  46603. name: "Macro-er",
  46604. height: math.unit(250, "feet")
  46605. },
  46606. ]
  46607. ))
  46608. characterMakers.push(() => makeCharacter(
  46609. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46610. {
  46611. front: {
  46612. height: math.unit(7, "feet"),
  46613. weight: math.unit(110, "kg"),
  46614. name: "Front",
  46615. image: {
  46616. source: "./media/characters/max-hyper/front.svg",
  46617. extra: 1969/1881,
  46618. bottom: 49/2018
  46619. }
  46620. },
  46621. },
  46622. [
  46623. {
  46624. name: "Normal",
  46625. height: math.unit(7, "feet"),
  46626. default: true
  46627. },
  46628. ]
  46629. ))
  46630. characterMakers.push(() => makeCharacter(
  46631. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46632. {
  46633. front: {
  46634. height: math.unit(5 + 5/12, "feet"),
  46635. weight: math.unit(160, "lb"),
  46636. name: "Front",
  46637. image: {
  46638. source: "./media/characters/spook/front.svg",
  46639. extra: 794/791,
  46640. bottom: 54/848
  46641. }
  46642. },
  46643. back: {
  46644. height: math.unit(5 + 5/12, "feet"),
  46645. weight: math.unit(160, "lb"),
  46646. name: "Back",
  46647. image: {
  46648. source: "./media/characters/spook/back.svg",
  46649. extra: 812/798,
  46650. bottom: 32/844
  46651. }
  46652. },
  46653. },
  46654. [
  46655. {
  46656. name: "Normal",
  46657. height: math.unit(5 + 5/12, "feet"),
  46658. default: true
  46659. },
  46660. ]
  46661. ))
  46662. characterMakers.push(() => makeCharacter(
  46663. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46664. {
  46665. front: {
  46666. height: math.unit(18, "feet"),
  46667. name: "Front",
  46668. image: {
  46669. source: "./media/characters/xeaduulix/front.svg",
  46670. extra: 1380/1166,
  46671. bottom: 110/1490
  46672. }
  46673. },
  46674. back: {
  46675. height: math.unit(18, "feet"),
  46676. name: "Back",
  46677. image: {
  46678. source: "./media/characters/xeaduulix/back.svg",
  46679. extra: 1592/1170,
  46680. bottom: 128/1720
  46681. }
  46682. },
  46683. frontNsfw: {
  46684. height: math.unit(18, "feet"),
  46685. name: "Front (NSFW)",
  46686. image: {
  46687. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46688. extra: 1380/1166,
  46689. bottom: 110/1490
  46690. }
  46691. },
  46692. backNsfw: {
  46693. height: math.unit(18, "feet"),
  46694. name: "Back (NSFW)",
  46695. image: {
  46696. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46697. extra: 1592/1170,
  46698. bottom: 128/1720
  46699. }
  46700. },
  46701. },
  46702. [
  46703. {
  46704. name: "Normal",
  46705. height: math.unit(18, "feet"),
  46706. default: true
  46707. },
  46708. ]
  46709. ))
  46710. characterMakers.push(() => makeCharacter(
  46711. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46712. {
  46713. spreadWings: {
  46714. height: math.unit(20, "feet"),
  46715. name: "Spread Wings",
  46716. image: {
  46717. source: "./media/characters/fledge/spread-wings.svg",
  46718. extra: 693/635,
  46719. bottom: 26/719
  46720. }
  46721. },
  46722. front: {
  46723. height: math.unit(20, "feet"),
  46724. name: "Front",
  46725. image: {
  46726. source: "./media/characters/fledge/front.svg",
  46727. extra: 684/637,
  46728. bottom: 18/702
  46729. }
  46730. },
  46731. frontAlt: {
  46732. height: math.unit(20, "feet"),
  46733. name: "Front (Alt)",
  46734. image: {
  46735. source: "./media/characters/fledge/front-alt.svg",
  46736. extra: 708/664,
  46737. bottom: 13/721
  46738. }
  46739. },
  46740. back: {
  46741. height: math.unit(20, "feet"),
  46742. name: "Back",
  46743. image: {
  46744. source: "./media/characters/fledge/back.svg",
  46745. extra: 718/634,
  46746. bottom: 22/740
  46747. }
  46748. },
  46749. head: {
  46750. height: math.unit(5.55, "feet"),
  46751. name: "Head",
  46752. image: {
  46753. source: "./media/characters/fledge/head.svg"
  46754. }
  46755. },
  46756. headAlt: {
  46757. height: math.unit(5.1, "feet"),
  46758. name: "Head (Alt)",
  46759. image: {
  46760. source: "./media/characters/fledge/head-alt.svg"
  46761. }
  46762. },
  46763. },
  46764. [
  46765. {
  46766. name: "Small",
  46767. height: math.unit(6 + 2/12, "feet")
  46768. },
  46769. {
  46770. name: "Big",
  46771. height: math.unit(20, "feet"),
  46772. default: true
  46773. },
  46774. {
  46775. name: "Giant",
  46776. height: math.unit(100, "feet")
  46777. },
  46778. {
  46779. name: "Macro",
  46780. height: math.unit(200, "feet")
  46781. },
  46782. ]
  46783. ))
  46784. characterMakers.push(() => makeCharacter(
  46785. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46786. {
  46787. front: {
  46788. height: math.unit(1, "meter"),
  46789. name: "Front",
  46790. image: {
  46791. source: "./media/characters/atlas-morenai/front.svg",
  46792. extra: 1275/1043,
  46793. bottom: 19/1294
  46794. }
  46795. },
  46796. back: {
  46797. height: math.unit(1, "meter"),
  46798. name: "Back",
  46799. image: {
  46800. source: "./media/characters/atlas-morenai/back.svg",
  46801. extra: 1141/1001,
  46802. bottom: 25/1166
  46803. }
  46804. },
  46805. },
  46806. [
  46807. {
  46808. name: "Normal",
  46809. height: math.unit(1, "meter"),
  46810. default: true
  46811. },
  46812. {
  46813. name: "Magic-Infused",
  46814. height: math.unit(5, "meters")
  46815. },
  46816. ]
  46817. ))
  46818. characterMakers.push(() => makeCharacter(
  46819. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46820. {
  46821. front: {
  46822. height: math.unit(5, "meters"),
  46823. name: "Front",
  46824. image: {
  46825. source: "./media/characters/cintia/front.svg",
  46826. extra: 1312/1228,
  46827. bottom: 38/1350
  46828. }
  46829. },
  46830. back: {
  46831. height: math.unit(5, "meters"),
  46832. name: "Back",
  46833. image: {
  46834. source: "./media/characters/cintia/back.svg",
  46835. extra: 1260/1166,
  46836. bottom: 98/1358
  46837. }
  46838. },
  46839. frontDick: {
  46840. height: math.unit(5, "meters"),
  46841. name: "Front (Dick)",
  46842. image: {
  46843. source: "./media/characters/cintia/front-dick.svg",
  46844. extra: 1312/1228,
  46845. bottom: 38/1350
  46846. }
  46847. },
  46848. backDick: {
  46849. height: math.unit(5, "meters"),
  46850. name: "Back (Dick)",
  46851. image: {
  46852. source: "./media/characters/cintia/back-dick.svg",
  46853. extra: 1260/1166,
  46854. bottom: 98/1358
  46855. }
  46856. },
  46857. bust: {
  46858. height: math.unit(1.97, "meters"),
  46859. name: "Bust",
  46860. image: {
  46861. source: "./media/characters/cintia/bust.svg",
  46862. extra: 617/565,
  46863. bottom: 0/617
  46864. }
  46865. },
  46866. },
  46867. [
  46868. {
  46869. name: "Normal",
  46870. height: math.unit(5, "meters"),
  46871. default: true
  46872. },
  46873. ]
  46874. ))
  46875. characterMakers.push(() => makeCharacter(
  46876. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46877. {
  46878. side: {
  46879. height: math.unit(100, "feet"),
  46880. name: "Side",
  46881. image: {
  46882. source: "./media/characters/denora/side.svg",
  46883. extra: 875/803,
  46884. bottom: 9/884
  46885. }
  46886. },
  46887. },
  46888. [
  46889. {
  46890. name: "Standard",
  46891. height: math.unit(100, "feet"),
  46892. default: true
  46893. },
  46894. {
  46895. name: "Grand",
  46896. height: math.unit(1000, "feet")
  46897. },
  46898. {
  46899. name: "Conquering",
  46900. height: math.unit(10000, "feet")
  46901. },
  46902. ]
  46903. ))
  46904. characterMakers.push(() => makeCharacter(
  46905. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46906. {
  46907. dressed: {
  46908. height: math.unit(8 + 5/12, "feet"),
  46909. weight: math.unit(700, "lb"),
  46910. name: "Dressed",
  46911. image: {
  46912. source: "./media/characters/kiva/dressed.svg",
  46913. extra: 1102/1055,
  46914. bottom: 60/1162
  46915. }
  46916. },
  46917. nude: {
  46918. height: math.unit(8 + 5/12, "feet"),
  46919. weight: math.unit(700, "lb"),
  46920. name: "Nude",
  46921. image: {
  46922. source: "./media/characters/kiva/nude.svg",
  46923. extra: 1102/1055,
  46924. bottom: 60/1162
  46925. }
  46926. },
  46927. },
  46928. [
  46929. {
  46930. name: "Base Height",
  46931. height: math.unit(8 + 5/12, "feet"),
  46932. default: true
  46933. },
  46934. {
  46935. name: "Macro",
  46936. height: math.unit(100, "feet")
  46937. },
  46938. {
  46939. name: "Max",
  46940. height: math.unit(3280, "feet")
  46941. },
  46942. ]
  46943. ))
  46944. characterMakers.push(() => makeCharacter(
  46945. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46946. {
  46947. front: {
  46948. height: math.unit(6 + 8/12, "feet"),
  46949. weight: math.unit(250, "lb"),
  46950. name: "Front",
  46951. image: {
  46952. source: "./media/characters/ztragon/front.svg",
  46953. extra: 1825/1684,
  46954. bottom: 98/1923
  46955. }
  46956. },
  46957. },
  46958. [
  46959. {
  46960. name: "Normal",
  46961. height: math.unit(6 + 8/12, "feet"),
  46962. default: true
  46963. },
  46964. {
  46965. name: "Macro",
  46966. height: math.unit(80, "feet")
  46967. },
  46968. ]
  46969. ))
  46970. characterMakers.push(() => makeCharacter(
  46971. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46972. {
  46973. front: {
  46974. height: math.unit(10.4, "feet"),
  46975. weight: math.unit(2, "tons"),
  46976. name: "Front",
  46977. image: {
  46978. source: "./media/characters/yesenia/front.svg",
  46979. extra: 1479/1474,
  46980. bottom: 233/1712
  46981. }
  46982. },
  46983. },
  46984. [
  46985. {
  46986. name: "Normal",
  46987. height: math.unit(10.4, "feet"),
  46988. default: true
  46989. },
  46990. ]
  46991. ))
  46992. characterMakers.push(() => makeCharacter(
  46993. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46994. {
  46995. normal: {
  46996. height: math.unit(6 + 1/12, "feet"),
  46997. weight: math.unit(180, "lb"),
  46998. name: "Normal",
  46999. image: {
  47000. source: "./media/characters/leanne-lycheborne/normal.svg",
  47001. extra: 1748/1660,
  47002. bottom: 98/1846
  47003. }
  47004. },
  47005. were: {
  47006. height: math.unit(12, "feet"),
  47007. weight: math.unit(1600, "lb"),
  47008. name: "Were",
  47009. image: {
  47010. source: "./media/characters/leanne-lycheborne/were.svg",
  47011. extra: 1485/1432,
  47012. bottom: 66/1551
  47013. }
  47014. },
  47015. },
  47016. [
  47017. {
  47018. name: "Normal",
  47019. height: math.unit(6 + 1/12, "feet"),
  47020. default: true
  47021. },
  47022. ]
  47023. ))
  47024. characterMakers.push(() => makeCharacter(
  47025. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  47026. {
  47027. side: {
  47028. height: math.unit(13, "feet"),
  47029. name: "Side",
  47030. image: {
  47031. source: "./media/characters/kira-tyler/side.svg",
  47032. extra: 693/393,
  47033. bottom: 58/751
  47034. }
  47035. },
  47036. },
  47037. [
  47038. {
  47039. name: "Normal",
  47040. height: math.unit(13, "feet"),
  47041. default: true
  47042. },
  47043. ]
  47044. ))
  47045. characterMakers.push(() => makeCharacter(
  47046. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  47047. {
  47048. front: {
  47049. height: math.unit(10.3, "feet"),
  47050. weight: math.unit(150, "lb"),
  47051. name: "Front",
  47052. image: {
  47053. source: "./media/characters/blaze/front.svg",
  47054. extra: 1378/1286,
  47055. bottom: 172/1550
  47056. }
  47057. },
  47058. },
  47059. [
  47060. {
  47061. name: "Normal",
  47062. height: math.unit(10.3, "feet"),
  47063. default: true
  47064. },
  47065. ]
  47066. ))
  47067. characterMakers.push(() => makeCharacter(
  47068. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  47069. {
  47070. side: {
  47071. height: math.unit(2, "meters"),
  47072. weight: math.unit(400, "kg"),
  47073. name: "Side",
  47074. image: {
  47075. source: "./media/characters/anu/side.svg",
  47076. extra: 506/394,
  47077. bottom: 18/524
  47078. }
  47079. },
  47080. },
  47081. [
  47082. {
  47083. name: "Humanoid",
  47084. height: math.unit(2, "meters")
  47085. },
  47086. {
  47087. name: "Normal",
  47088. height: math.unit(5, "meters"),
  47089. default: true
  47090. },
  47091. ]
  47092. ))
  47093. characterMakers.push(() => makeCharacter(
  47094. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  47095. {
  47096. front: {
  47097. height: math.unit(5 + 5/12, "feet"),
  47098. weight: math.unit(170, "lb"),
  47099. name: "Front",
  47100. image: {
  47101. source: "./media/characters/synx-the-lynx/front.svg",
  47102. extra: 1893/1745,
  47103. bottom: 17/1910
  47104. }
  47105. },
  47106. side: {
  47107. height: math.unit(5 + 5/12, "feet"),
  47108. weight: math.unit(170, "lb"),
  47109. name: "Side",
  47110. image: {
  47111. source: "./media/characters/synx-the-lynx/side.svg",
  47112. extra: 1884/1740,
  47113. bottom: 39/1923
  47114. }
  47115. },
  47116. back: {
  47117. height: math.unit(5 + 5/12, "feet"),
  47118. weight: math.unit(170, "lb"),
  47119. name: "Back",
  47120. image: {
  47121. source: "./media/characters/synx-the-lynx/back.svg",
  47122. extra: 1903/1755,
  47123. bottom: 14/1917
  47124. }
  47125. },
  47126. },
  47127. [
  47128. {
  47129. name: "Normal",
  47130. height: math.unit(5 + 5/12, "feet"),
  47131. default: true
  47132. },
  47133. ]
  47134. ))
  47135. characterMakers.push(() => makeCharacter(
  47136. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47137. {
  47138. back: {
  47139. height: math.unit(15, "feet"),
  47140. name: "Back",
  47141. image: {
  47142. source: "./media/characters/nadezda-fex/back.svg",
  47143. extra: 1695/1481,
  47144. bottom: 25/1720
  47145. }
  47146. },
  47147. },
  47148. [
  47149. {
  47150. name: "Normal",
  47151. height: math.unit(15, "feet"),
  47152. default: true
  47153. },
  47154. {
  47155. name: "Macro",
  47156. height: math.unit(2.5, "miles")
  47157. },
  47158. {
  47159. name: "Goddess",
  47160. height: math.unit(2, "multiverses")
  47161. },
  47162. ]
  47163. ))
  47164. characterMakers.push(() => makeCharacter(
  47165. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47166. {
  47167. front: {
  47168. height: math.unit(216, "cm"),
  47169. name: "Front",
  47170. image: {
  47171. source: "./media/characters/lev/front.svg",
  47172. extra: 1728/1670,
  47173. bottom: 82/1810
  47174. }
  47175. },
  47176. back: {
  47177. height: math.unit(216, "cm"),
  47178. name: "Back",
  47179. image: {
  47180. source: "./media/characters/lev/back.svg",
  47181. extra: 1738/1675,
  47182. bottom: 24/1762
  47183. }
  47184. },
  47185. dressed: {
  47186. height: math.unit(216, "cm"),
  47187. name: "Dressed",
  47188. image: {
  47189. source: "./media/characters/lev/dressed.svg",
  47190. extra: 1397/1351,
  47191. bottom: 73/1470
  47192. }
  47193. },
  47194. head: {
  47195. height: math.unit(0.51, "meter"),
  47196. name: "Head",
  47197. image: {
  47198. source: "./media/characters/lev/head.svg"
  47199. }
  47200. },
  47201. },
  47202. [
  47203. {
  47204. name: "Normal",
  47205. height: math.unit(216, "cm"),
  47206. default: true
  47207. },
  47208. {
  47209. name: "Relatively Macro",
  47210. height: math.unit(80, "meters")
  47211. },
  47212. {
  47213. name: "Megamacro",
  47214. height: math.unit(21600, "meters")
  47215. },
  47216. {
  47217. name: "Megamacro+",
  47218. height: math.unit(64800, "meters")
  47219. },
  47220. ]
  47221. ))
  47222. characterMakers.push(() => makeCharacter(
  47223. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47224. {
  47225. front: {
  47226. height: math.unit(2, "meters"),
  47227. weight: math.unit(80, "kg"),
  47228. name: "Front",
  47229. image: {
  47230. source: "./media/characters/moka/front.svg",
  47231. extra: 1337/1255,
  47232. bottom: 58/1395
  47233. }
  47234. },
  47235. },
  47236. [
  47237. {
  47238. name: "Micro",
  47239. height: math.unit(15, "cm")
  47240. },
  47241. {
  47242. name: "Normal",
  47243. height: math.unit(2, "meters"),
  47244. default: true
  47245. },
  47246. {
  47247. name: "Macro",
  47248. height: math.unit(20, "meters"),
  47249. },
  47250. ]
  47251. ))
  47252. characterMakers.push(() => makeCharacter(
  47253. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47254. {
  47255. front: {
  47256. height: math.unit(9, "feet"),
  47257. weight: math.unit(240, "lb"),
  47258. name: "Front",
  47259. image: {
  47260. source: "./media/characters/kuzco/front.svg",
  47261. extra: 1593/1487,
  47262. bottom: 32/1625
  47263. }
  47264. },
  47265. side: {
  47266. height: math.unit(9, "feet"),
  47267. weight: math.unit(240, "lb"),
  47268. name: "Side",
  47269. image: {
  47270. source: "./media/characters/kuzco/side.svg",
  47271. extra: 1575/1485,
  47272. bottom: 30/1605
  47273. }
  47274. },
  47275. back: {
  47276. height: math.unit(9, "feet"),
  47277. weight: math.unit(240, "lb"),
  47278. name: "Back",
  47279. image: {
  47280. source: "./media/characters/kuzco/back.svg",
  47281. extra: 1603/1514,
  47282. bottom: 14/1617
  47283. }
  47284. },
  47285. },
  47286. [
  47287. {
  47288. name: "Normal",
  47289. height: math.unit(9, "feet"),
  47290. default: true
  47291. },
  47292. ]
  47293. ))
  47294. characterMakers.push(() => makeCharacter(
  47295. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47296. {
  47297. side: {
  47298. height: math.unit(2, "meters"),
  47299. weight: math.unit(300, "kg"),
  47300. name: "Side",
  47301. image: {
  47302. source: "./media/characters/ceruleus/side.svg",
  47303. extra: 1068/974,
  47304. bottom: 126/1194
  47305. }
  47306. },
  47307. maw: {
  47308. height: math.unit(0.8125, "meter"),
  47309. name: "Maw",
  47310. image: {
  47311. source: "./media/characters/ceruleus/maw.svg"
  47312. }
  47313. },
  47314. },
  47315. [
  47316. {
  47317. name: "Normal",
  47318. height: math.unit(16, "meters"),
  47319. default: true
  47320. },
  47321. ]
  47322. ))
  47323. characterMakers.push(() => makeCharacter(
  47324. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47325. {
  47326. front: {
  47327. height: math.unit(9, "feet"),
  47328. weight: math.unit(500, "kg"),
  47329. name: "Front",
  47330. image: {
  47331. source: "./media/characters/acouya/front.svg",
  47332. extra: 1660/1473,
  47333. bottom: 28/1688
  47334. }
  47335. },
  47336. },
  47337. [
  47338. {
  47339. name: "Normal",
  47340. height: math.unit(9, "feet"),
  47341. default: true
  47342. },
  47343. ]
  47344. ))
  47345. characterMakers.push(() => makeCharacter(
  47346. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47347. {
  47348. front: {
  47349. height: math.unit(5 + 6/12, "feet"),
  47350. weight: math.unit(195, "lb"),
  47351. name: "Front",
  47352. image: {
  47353. source: "./media/characters/vant/front.svg",
  47354. extra: 1396/1320,
  47355. bottom: 20/1416
  47356. }
  47357. },
  47358. back: {
  47359. height: math.unit(5 + 6/12, "feet"),
  47360. weight: math.unit(195, "lb"),
  47361. name: "Back",
  47362. image: {
  47363. source: "./media/characters/vant/back.svg",
  47364. extra: 1396/1320,
  47365. bottom: 20/1416
  47366. }
  47367. },
  47368. maw: {
  47369. height: math.unit(0.75, "feet"),
  47370. name: "Maw",
  47371. image: {
  47372. source: "./media/characters/vant/maw.svg"
  47373. }
  47374. },
  47375. paw: {
  47376. height: math.unit(1.07, "feet"),
  47377. name: "Paw",
  47378. image: {
  47379. source: "./media/characters/vant/paw.svg"
  47380. }
  47381. },
  47382. },
  47383. [
  47384. {
  47385. name: "Micro",
  47386. height: math.unit(0.25, "inches")
  47387. },
  47388. {
  47389. name: "Normal",
  47390. height: math.unit(5 + 6/12, "feet"),
  47391. default: true
  47392. },
  47393. {
  47394. name: "Macro",
  47395. height: math.unit(75, "feet")
  47396. },
  47397. ]
  47398. ))
  47399. characterMakers.push(() => makeCharacter(
  47400. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47401. {
  47402. front: {
  47403. height: math.unit(30, "meters"),
  47404. weight: math.unit(363, "tons"),
  47405. name: "Front",
  47406. image: {
  47407. source: "./media/characters/ahra/front.svg",
  47408. extra: 1914/1814,
  47409. bottom: 46/1960
  47410. }
  47411. },
  47412. },
  47413. [
  47414. {
  47415. name: "Macro",
  47416. height: math.unit(30, "meters"),
  47417. default: true
  47418. },
  47419. ]
  47420. ))
  47421. characterMakers.push(() => makeCharacter(
  47422. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47423. {
  47424. undressed: {
  47425. height: math.unit(2, "m"),
  47426. weight: math.unit(250, "kg"),
  47427. name: "Undressed",
  47428. image: {
  47429. source: "./media/characters/coriander/undressed.svg",
  47430. extra: 1757/1606,
  47431. bottom: 107/1864
  47432. }
  47433. },
  47434. dressed: {
  47435. height: math.unit(2, "m"),
  47436. weight: math.unit(250, "kg"),
  47437. name: "Dressed",
  47438. image: {
  47439. source: "./media/characters/coriander/dressed.svg",
  47440. extra: 1757/1606,
  47441. bottom: 107/1864
  47442. }
  47443. },
  47444. },
  47445. [
  47446. {
  47447. name: "Normal",
  47448. height: math.unit(4, "meters"),
  47449. default: true
  47450. },
  47451. {
  47452. name: "XL",
  47453. height: math.unit(6, "meters")
  47454. },
  47455. {
  47456. name: "XXL",
  47457. height: math.unit(8, "meters")
  47458. },
  47459. ]
  47460. ))
  47461. characterMakers.push(() => makeCharacter(
  47462. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47463. {
  47464. front: {
  47465. height: math.unit(6, "feet"),
  47466. name: "Front",
  47467. image: {
  47468. source: "./media/characters/syrinx/front.svg",
  47469. extra: 1557/1259,
  47470. bottom: 171/1728
  47471. }
  47472. },
  47473. },
  47474. [
  47475. {
  47476. name: "Normal",
  47477. height: math.unit(6 + 3/12, "feet"),
  47478. default: true
  47479. },
  47480. ]
  47481. ))
  47482. characterMakers.push(() => makeCharacter(
  47483. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47484. {
  47485. front: {
  47486. height: math.unit(11 + 6/12, "feet"),
  47487. weight: math.unit(1.5, "tons"),
  47488. name: "Front",
  47489. image: {
  47490. source: "./media/characters/bor/front.svg",
  47491. extra: 1189/1109,
  47492. bottom: 170/1359
  47493. }
  47494. },
  47495. },
  47496. [
  47497. {
  47498. name: "Normal",
  47499. height: math.unit(11 + 6/12, "feet"),
  47500. default: true
  47501. },
  47502. {
  47503. name: "Macro",
  47504. height: math.unit(32 + 9/12, "feet")
  47505. },
  47506. ]
  47507. ))
  47508. characterMakers.push(() => makeCharacter(
  47509. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47510. {
  47511. anthro: {
  47512. height: math.unit(9, "feet"),
  47513. weight: math.unit(2076, "lb"),
  47514. name: "Anthro",
  47515. image: {
  47516. source: "./media/characters/abacus/anthro.svg",
  47517. extra: 1540/1494,
  47518. bottom: 233/1773
  47519. }
  47520. },
  47521. pigeon: {
  47522. height: math.unit(1, "feet"),
  47523. name: "Pigeon",
  47524. image: {
  47525. source: "./media/characters/abacus/pigeon.svg",
  47526. extra: 528/525,
  47527. bottom: 46/574
  47528. }
  47529. },
  47530. },
  47531. [
  47532. {
  47533. name: "Normal",
  47534. height: math.unit(9, "feet"),
  47535. default: true
  47536. },
  47537. ]
  47538. ))
  47539. characterMakers.push(() => makeCharacter(
  47540. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47541. {
  47542. side: {
  47543. height: math.unit(6, "feet"),
  47544. name: "Side",
  47545. image: {
  47546. source: "./media/characters/delkhan/side.svg",
  47547. extra: 1884/1786,
  47548. bottom: 308/2192
  47549. }
  47550. },
  47551. head: {
  47552. height: math.unit(3.38, "feet"),
  47553. name: "Head",
  47554. image: {
  47555. source: "./media/characters/delkhan/head.svg"
  47556. }
  47557. },
  47558. },
  47559. [
  47560. {
  47561. name: "Normal",
  47562. height: math.unit(72, "feet"),
  47563. default: true
  47564. },
  47565. {
  47566. name: "Giant",
  47567. height: math.unit(172, "feet")
  47568. },
  47569. ]
  47570. ))
  47571. characterMakers.push(() => makeCharacter(
  47572. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47573. {
  47574. standing: {
  47575. height: math.unit(6, "feet"),
  47576. name: "Standing",
  47577. image: {
  47578. source: "./media/characters/euchidat/standing.svg",
  47579. extra: 1612/1553,
  47580. bottom: 116/1728
  47581. }
  47582. },
  47583. leaning: {
  47584. height: math.unit(6, "feet"),
  47585. name: "Leaning",
  47586. image: {
  47587. source: "./media/characters/euchidat/leaning.svg",
  47588. extra: 1719/1674,
  47589. bottom: 27/1746
  47590. }
  47591. },
  47592. },
  47593. [
  47594. {
  47595. name: "Normal",
  47596. height: math.unit(175, "feet"),
  47597. default: true
  47598. },
  47599. {
  47600. name: "Megamacro",
  47601. height: math.unit(190, "miles")
  47602. },
  47603. {
  47604. name: "Gigamacro",
  47605. height: math.unit(190000, "miles")
  47606. },
  47607. ]
  47608. ))
  47609. characterMakers.push(() => makeCharacter(
  47610. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47611. {
  47612. front: {
  47613. height: math.unit(6, "feet"),
  47614. weight: math.unit(150, "lb"),
  47615. name: "Front",
  47616. image: {
  47617. source: "./media/characters/rebecca-stack/front.svg",
  47618. extra: 1256/1201,
  47619. bottom: 18/1274
  47620. }
  47621. },
  47622. },
  47623. [
  47624. {
  47625. name: "Normal",
  47626. height: math.unit(5 + 8/12, "feet"),
  47627. default: true
  47628. },
  47629. {
  47630. name: "Demolitionist",
  47631. height: math.unit(200, "feet")
  47632. },
  47633. {
  47634. name: "Out of Control",
  47635. height: math.unit(2, "miles")
  47636. },
  47637. {
  47638. name: "Giga",
  47639. height: math.unit(7200, "miles")
  47640. },
  47641. ]
  47642. ))
  47643. characterMakers.push(() => makeCharacter(
  47644. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47645. {
  47646. front: {
  47647. height: math.unit(6, "feet"),
  47648. weight: math.unit(150, "lb"),
  47649. name: "Front",
  47650. image: {
  47651. source: "./media/characters/jenny-cartwright/front.svg",
  47652. extra: 1384/1376,
  47653. bottom: 58/1442
  47654. }
  47655. },
  47656. },
  47657. [
  47658. {
  47659. name: "Normal",
  47660. height: math.unit(6 + 7/12, "feet"),
  47661. default: true
  47662. },
  47663. {
  47664. name: "Librarian",
  47665. height: math.unit(55, "feet")
  47666. },
  47667. {
  47668. name: "Sightseer",
  47669. height: math.unit(50, "miles")
  47670. },
  47671. {
  47672. name: "Giga",
  47673. height: math.unit(30000, "miles")
  47674. },
  47675. ]
  47676. ))
  47677. characterMakers.push(() => makeCharacter(
  47678. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47679. {
  47680. nude: {
  47681. height: math.unit(8, "feet"),
  47682. weight: math.unit(225, "lb"),
  47683. name: "Nude",
  47684. image: {
  47685. source: "./media/characters/marvy/nude.svg",
  47686. extra: 1900/1683,
  47687. bottom: 89/1989
  47688. }
  47689. },
  47690. dressed: {
  47691. height: math.unit(8, "feet"),
  47692. weight: math.unit(225, "lb"),
  47693. name: "Dressed",
  47694. image: {
  47695. source: "./media/characters/marvy/dressed.svg",
  47696. extra: 1900/1683,
  47697. bottom: 89/1989
  47698. }
  47699. },
  47700. head: {
  47701. height: math.unit(2.85, "feet"),
  47702. name: "Head",
  47703. image: {
  47704. source: "./media/characters/marvy/head.svg"
  47705. }
  47706. },
  47707. },
  47708. [
  47709. {
  47710. name: "Normal",
  47711. height: math.unit(8, "feet"),
  47712. default: true
  47713. },
  47714. ]
  47715. ))
  47716. characterMakers.push(() => makeCharacter(
  47717. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47718. {
  47719. front: {
  47720. height: math.unit(8, "feet"),
  47721. weight: math.unit(250, "lb"),
  47722. name: "Front",
  47723. image: {
  47724. source: "./media/characters/leah/front.svg",
  47725. extra: 1257/1149,
  47726. bottom: 109/1366
  47727. }
  47728. },
  47729. },
  47730. [
  47731. {
  47732. name: "Normal",
  47733. height: math.unit(8, "feet"),
  47734. default: true
  47735. },
  47736. {
  47737. name: "Minimacro",
  47738. height: math.unit(40, "feet")
  47739. },
  47740. {
  47741. name: "Macro",
  47742. height: math.unit(124, "feet")
  47743. },
  47744. {
  47745. name: "Megamacro",
  47746. height: math.unit(850, "feet")
  47747. },
  47748. ]
  47749. ))
  47750. characterMakers.push(() => makeCharacter(
  47751. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47752. {
  47753. side: {
  47754. height: math.unit(13 + 6/12, "feet"),
  47755. weight: math.unit(3200, "lb"),
  47756. name: "Side",
  47757. image: {
  47758. source: "./media/characters/alvir/side.svg",
  47759. extra: 896/589,
  47760. bottom: 26/922
  47761. }
  47762. },
  47763. },
  47764. [
  47765. {
  47766. name: "Normal",
  47767. height: math.unit(13 + 6/12, "feet"),
  47768. default: true
  47769. },
  47770. ]
  47771. ))
  47772. characterMakers.push(() => makeCharacter(
  47773. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47774. {
  47775. front: {
  47776. height: math.unit(5 + 4/12, "feet"),
  47777. weight: math.unit(236, "lb"),
  47778. name: "Front",
  47779. image: {
  47780. source: "./media/characters/zaina-khalil/front.svg",
  47781. extra: 1533/1485,
  47782. bottom: 94/1627
  47783. }
  47784. },
  47785. side: {
  47786. height: math.unit(5 + 4/12, "feet"),
  47787. weight: math.unit(236, "lb"),
  47788. name: "Side",
  47789. image: {
  47790. source: "./media/characters/zaina-khalil/side.svg",
  47791. extra: 1537/1498,
  47792. bottom: 66/1603
  47793. }
  47794. },
  47795. back: {
  47796. height: math.unit(5 + 4/12, "feet"),
  47797. weight: math.unit(236, "lb"),
  47798. name: "Back",
  47799. image: {
  47800. source: "./media/characters/zaina-khalil/back.svg",
  47801. extra: 1546/1494,
  47802. bottom: 89/1635
  47803. }
  47804. },
  47805. },
  47806. [
  47807. {
  47808. name: "Normal",
  47809. height: math.unit(5 + 4/12, "feet"),
  47810. default: true
  47811. },
  47812. ]
  47813. ))
  47814. characterMakers.push(() => makeCharacter(
  47815. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47816. {
  47817. side: {
  47818. height: math.unit(12, "feet"),
  47819. weight: math.unit(4000, "lb"),
  47820. name: "Side",
  47821. image: {
  47822. source: "./media/characters/terry/side.svg",
  47823. extra: 1518/1439,
  47824. bottom: 149/1667
  47825. }
  47826. },
  47827. },
  47828. [
  47829. {
  47830. name: "Normal",
  47831. height: math.unit(12, "feet"),
  47832. default: true
  47833. },
  47834. ]
  47835. ))
  47836. characterMakers.push(() => makeCharacter(
  47837. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47838. {
  47839. front: {
  47840. height: math.unit(12, "feet"),
  47841. weight: math.unit(1500, "lb"),
  47842. name: "Front",
  47843. image: {
  47844. source: "./media/characters/kahea/front.svg",
  47845. extra: 1722/1617,
  47846. bottom: 179/1901
  47847. }
  47848. },
  47849. },
  47850. [
  47851. {
  47852. name: "Normal",
  47853. height: math.unit(12, "feet"),
  47854. default: true
  47855. },
  47856. ]
  47857. ))
  47858. characterMakers.push(() => makeCharacter(
  47859. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47860. {
  47861. demonFront: {
  47862. height: math.unit(36, "feet"),
  47863. name: "Front",
  47864. image: {
  47865. source: "./media/characters/alex-xuria/demon-front.svg",
  47866. extra: 1705/1673,
  47867. bottom: 198/1903
  47868. },
  47869. form: "demon",
  47870. default: true
  47871. },
  47872. demonBack: {
  47873. height: math.unit(36, "feet"),
  47874. name: "Back",
  47875. image: {
  47876. source: "./media/characters/alex-xuria/demon-back.svg",
  47877. extra: 1725/1693,
  47878. bottom: 70/1795
  47879. },
  47880. form: "demon"
  47881. },
  47882. demonHead: {
  47883. height: math.unit(2.14, "meters"),
  47884. name: "Head",
  47885. image: {
  47886. source: "./media/characters/alex-xuria/demon-head.svg"
  47887. },
  47888. form: "demon"
  47889. },
  47890. demonHand: {
  47891. height: math.unit(1.61, "meters"),
  47892. name: "Hand",
  47893. image: {
  47894. source: "./media/characters/alex-xuria/demon-hand.svg"
  47895. },
  47896. form: "demon"
  47897. },
  47898. demonPaw: {
  47899. height: math.unit(1.35, "meters"),
  47900. name: "Paw",
  47901. image: {
  47902. source: "./media/characters/alex-xuria/demon-paw.svg"
  47903. },
  47904. form: "demon"
  47905. },
  47906. demonFoot: {
  47907. height: math.unit(2.2, "meters"),
  47908. name: "Foot",
  47909. image: {
  47910. source: "./media/characters/alex-xuria/demon-foot.svg"
  47911. },
  47912. form: "demon"
  47913. },
  47914. demonCock: {
  47915. height: math.unit(1.74, "meters"),
  47916. name: "Cock",
  47917. image: {
  47918. source: "./media/characters/alex-xuria/demon-cock.svg"
  47919. },
  47920. form: "demon"
  47921. },
  47922. demonTailClosed: {
  47923. height: math.unit(1.47, "meters"),
  47924. name: "Tail (Closed)",
  47925. image: {
  47926. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47927. },
  47928. form: "demon"
  47929. },
  47930. demonTailOpen: {
  47931. height: math.unit(2.85, "meters"),
  47932. name: "Tail (Open)",
  47933. image: {
  47934. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47935. },
  47936. form: "demon"
  47937. },
  47938. incubusFront: {
  47939. height: math.unit(12, "feet"),
  47940. name: "Front",
  47941. image: {
  47942. source: "./media/characters/alex-xuria/incubus-front.svg",
  47943. extra: 1754/1677,
  47944. bottom: 125/1879
  47945. },
  47946. form: "incubus",
  47947. default: true
  47948. },
  47949. incubusBack: {
  47950. height: math.unit(12, "feet"),
  47951. name: "Back",
  47952. image: {
  47953. source: "./media/characters/alex-xuria/incubus-back.svg",
  47954. extra: 1702/1647,
  47955. bottom: 30/1732
  47956. },
  47957. form: "incubus"
  47958. },
  47959. incubusHead: {
  47960. height: math.unit(3.45, "feet"),
  47961. name: "Head",
  47962. image: {
  47963. source: "./media/characters/alex-xuria/incubus-head.svg"
  47964. },
  47965. form: "incubus"
  47966. },
  47967. rabbitFront: {
  47968. height: math.unit(6, "feet"),
  47969. name: "Front",
  47970. image: {
  47971. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47972. extra: 1369/1349,
  47973. bottom: 45/1414
  47974. },
  47975. form: "rabbit",
  47976. default: true
  47977. },
  47978. rabbitSide: {
  47979. height: math.unit(6, "feet"),
  47980. name: "Side",
  47981. image: {
  47982. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47983. extra: 1370/1356,
  47984. bottom: 37/1407
  47985. },
  47986. form: "rabbit"
  47987. },
  47988. rabbitBack: {
  47989. height: math.unit(6, "feet"),
  47990. name: "Back",
  47991. image: {
  47992. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47993. extra: 1375/1358,
  47994. bottom: 43/1418
  47995. },
  47996. form: "rabbit"
  47997. },
  47998. },
  47999. [
  48000. {
  48001. name: "Normal",
  48002. height: math.unit(6, "feet"),
  48003. default: true,
  48004. form: "rabbit"
  48005. },
  48006. {
  48007. name: "Incubus",
  48008. height: math.unit(12, "feet"),
  48009. default: true,
  48010. form: "incubus"
  48011. },
  48012. {
  48013. name: "Demon",
  48014. height: math.unit(36, "feet"),
  48015. default: true,
  48016. form: "demon"
  48017. }
  48018. ],
  48019. {
  48020. "demon": {
  48021. name: "Demon",
  48022. default: true
  48023. },
  48024. "incubus": {
  48025. name: "Incubus",
  48026. },
  48027. "rabbit": {
  48028. name: "Rabbit"
  48029. }
  48030. }
  48031. ))
  48032. characterMakers.push(() => makeCharacter(
  48033. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  48034. {
  48035. front: {
  48036. height: math.unit(7 + 5/12, "feet"),
  48037. weight: math.unit(510, "lb"),
  48038. name: "Front",
  48039. image: {
  48040. source: "./media/characters/syrup/front.svg",
  48041. extra: 932/916,
  48042. bottom: 26/958
  48043. }
  48044. },
  48045. },
  48046. [
  48047. {
  48048. name: "Normal",
  48049. height: math.unit(7 + 5/12, "feet"),
  48050. default: true
  48051. },
  48052. {
  48053. name: "Big",
  48054. height: math.unit(50, "feet")
  48055. },
  48056. {
  48057. name: "Macro",
  48058. height: math.unit(300, "feet")
  48059. },
  48060. {
  48061. name: "Megamacro",
  48062. height: math.unit(1, "mile")
  48063. },
  48064. ]
  48065. ))
  48066. characterMakers.push(() => makeCharacter(
  48067. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  48068. {
  48069. front: {
  48070. height: math.unit(6 + 9/12, "feet"),
  48071. name: "Front",
  48072. image: {
  48073. source: "./media/characters/zeimne/front.svg",
  48074. extra: 1969/1806,
  48075. bottom: 53/2022
  48076. }
  48077. },
  48078. },
  48079. [
  48080. {
  48081. name: "Normal",
  48082. height: math.unit(6 + 9/12, "feet"),
  48083. default: true
  48084. },
  48085. {
  48086. name: "Giant",
  48087. height: math.unit(550, "feet")
  48088. },
  48089. {
  48090. name: "Mega",
  48091. height: math.unit(3, "miles")
  48092. },
  48093. {
  48094. name: "Giga",
  48095. height: math.unit(250, "miles")
  48096. },
  48097. {
  48098. name: "Tera",
  48099. height: math.unit(1, "AU")
  48100. },
  48101. ]
  48102. ))
  48103. characterMakers.push(() => makeCharacter(
  48104. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48105. {
  48106. front: {
  48107. height: math.unit(5 + 2/12, "feet"),
  48108. name: "Front",
  48109. image: {
  48110. source: "./media/characters/grar/front.svg",
  48111. extra: 1331/1119,
  48112. bottom: 60/1391
  48113. }
  48114. },
  48115. back: {
  48116. height: math.unit(5 + 2/12, "feet"),
  48117. name: "Back",
  48118. image: {
  48119. source: "./media/characters/grar/back.svg",
  48120. extra: 1385/1169,
  48121. bottom: 23/1408
  48122. }
  48123. },
  48124. },
  48125. [
  48126. {
  48127. name: "Normal",
  48128. height: math.unit(5 + 2/12, "feet"),
  48129. default: true
  48130. },
  48131. ]
  48132. ))
  48133. characterMakers.push(() => makeCharacter(
  48134. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48135. {
  48136. front: {
  48137. height: math.unit(13 + 7/12, "feet"),
  48138. weight: math.unit(2200, "lb"),
  48139. name: "Front",
  48140. image: {
  48141. source: "./media/characters/endraya/front.svg",
  48142. extra: 1289/1215,
  48143. bottom: 50/1339
  48144. }
  48145. },
  48146. nude: {
  48147. height: math.unit(13 + 7/12, "feet"),
  48148. weight: math.unit(2200, "lb"),
  48149. name: "Nude",
  48150. image: {
  48151. source: "./media/characters/endraya/nude.svg",
  48152. extra: 1247/1171,
  48153. bottom: 40/1287
  48154. }
  48155. },
  48156. head: {
  48157. height: math.unit(2.6, "feet"),
  48158. name: "Head",
  48159. image: {
  48160. source: "./media/characters/endraya/head.svg"
  48161. }
  48162. },
  48163. slit: {
  48164. height: math.unit(3.4, "feet"),
  48165. name: "Slit",
  48166. image: {
  48167. source: "./media/characters/endraya/slit.svg"
  48168. }
  48169. },
  48170. },
  48171. [
  48172. {
  48173. name: "Normal",
  48174. height: math.unit(13 + 7/12, "feet"),
  48175. default: true
  48176. },
  48177. {
  48178. name: "Macro",
  48179. height: math.unit(200, "feet")
  48180. },
  48181. ]
  48182. ))
  48183. characterMakers.push(() => makeCharacter(
  48184. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48185. {
  48186. front: {
  48187. height: math.unit(1.81, "meters"),
  48188. weight: math.unit(69, "kg"),
  48189. name: "Front",
  48190. image: {
  48191. source: "./media/characters/rodryana/front.svg",
  48192. extra: 2002/1921,
  48193. bottom: 53/2055
  48194. }
  48195. },
  48196. back: {
  48197. height: math.unit(1.81, "meters"),
  48198. weight: math.unit(69, "kg"),
  48199. name: "Back",
  48200. image: {
  48201. source: "./media/characters/rodryana/back.svg",
  48202. extra: 1993/1926,
  48203. bottom: 48/2041
  48204. }
  48205. },
  48206. maw: {
  48207. height: math.unit(0.19769417475, "meters"),
  48208. name: "Maw",
  48209. image: {
  48210. source: "./media/characters/rodryana/maw.svg"
  48211. }
  48212. },
  48213. slit: {
  48214. height: math.unit(0.31631067961, "meters"),
  48215. name: "Slit",
  48216. image: {
  48217. source: "./media/characters/rodryana/slit.svg"
  48218. }
  48219. },
  48220. },
  48221. [
  48222. {
  48223. name: "Normal",
  48224. height: math.unit(1.81, "meters")
  48225. },
  48226. {
  48227. name: "Mini Macro",
  48228. height: math.unit(181, "meters")
  48229. },
  48230. {
  48231. name: "Macro",
  48232. height: math.unit(452, "meters"),
  48233. default: true
  48234. },
  48235. {
  48236. name: "Mega Macro",
  48237. height: math.unit(1.375, "km")
  48238. },
  48239. {
  48240. name: "Giga Macro",
  48241. height: math.unit(13.575, "km")
  48242. },
  48243. ]
  48244. ))
  48245. characterMakers.push(() => makeCharacter(
  48246. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48247. {
  48248. front: {
  48249. height: math.unit(6, "feet"),
  48250. weight: math.unit(1000, "lb"),
  48251. name: "Front",
  48252. image: {
  48253. source: "./media/characters/asaya/front.svg",
  48254. extra: 1460/1200,
  48255. bottom: 71/1531
  48256. }
  48257. },
  48258. },
  48259. [
  48260. {
  48261. name: "Normal",
  48262. height: math.unit(8, "km"),
  48263. default: true
  48264. },
  48265. ]
  48266. ))
  48267. characterMakers.push(() => makeCharacter(
  48268. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48269. {
  48270. front: {
  48271. height: math.unit(3.5, "meters"),
  48272. name: "Front",
  48273. image: {
  48274. source: "./media/characters/sarzu-and-israz/front.svg",
  48275. extra: 1570/1558,
  48276. bottom: 150/1720
  48277. },
  48278. },
  48279. back: {
  48280. height: math.unit(3.5, "meters"),
  48281. name: "Back",
  48282. image: {
  48283. source: "./media/characters/sarzu-and-israz/back.svg",
  48284. extra: 1523/1509,
  48285. bottom: 132/1655
  48286. },
  48287. },
  48288. frontFemale: {
  48289. height: math.unit(3.5, "meters"),
  48290. name: "Front (Female)",
  48291. image: {
  48292. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48293. extra: 1570/1558,
  48294. bottom: 150/1720
  48295. },
  48296. },
  48297. frontHerm: {
  48298. height: math.unit(3.5, "meters"),
  48299. name: "Front (Herm)",
  48300. image: {
  48301. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48302. extra: 1570/1558,
  48303. bottom: 150/1720
  48304. },
  48305. },
  48306. },
  48307. [
  48308. {
  48309. name: "Normal",
  48310. height: math.unit(3.5, "meters"),
  48311. default: true,
  48312. },
  48313. {
  48314. name: "Macro",
  48315. height: math.unit(65.5, "meters"),
  48316. },
  48317. ],
  48318. ))
  48319. characterMakers.push(() => makeCharacter(
  48320. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48321. {
  48322. front: {
  48323. height: math.unit(6, "feet"),
  48324. weight: math.unit(250, "lb"),
  48325. name: "Front",
  48326. image: {
  48327. source: "./media/characters/zenimma/front.svg",
  48328. extra: 1346/1320,
  48329. bottom: 58/1404
  48330. }
  48331. },
  48332. back: {
  48333. height: math.unit(6, "feet"),
  48334. weight: math.unit(250, "lb"),
  48335. name: "Back",
  48336. image: {
  48337. source: "./media/characters/zenimma/back.svg",
  48338. extra: 1324/1308,
  48339. bottom: 44/1368
  48340. }
  48341. },
  48342. dick: {
  48343. height: math.unit(1.44, "feet"),
  48344. name: "Dick",
  48345. image: {
  48346. source: "./media/characters/zenimma/dick.svg"
  48347. }
  48348. },
  48349. },
  48350. [
  48351. {
  48352. name: "Canon Height",
  48353. height: math.unit(66, "miles"),
  48354. default: true
  48355. },
  48356. ]
  48357. ))
  48358. characterMakers.push(() => makeCharacter(
  48359. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48360. {
  48361. nude: {
  48362. height: math.unit(6, "feet"),
  48363. weight: math.unit(150, "lb"),
  48364. name: "Nude",
  48365. image: {
  48366. source: "./media/characters/shavon/nude.svg",
  48367. extra: 1242/1096,
  48368. bottom: 98/1340
  48369. }
  48370. },
  48371. dressed: {
  48372. height: math.unit(6, "feet"),
  48373. weight: math.unit(150, "lb"),
  48374. name: "Dressed",
  48375. image: {
  48376. source: "./media/characters/shavon/dressed.svg",
  48377. extra: 1242/1096,
  48378. bottom: 98/1340
  48379. }
  48380. },
  48381. },
  48382. [
  48383. {
  48384. name: "Macro",
  48385. height: math.unit(255, "feet"),
  48386. default: true
  48387. },
  48388. ]
  48389. ))
  48390. characterMakers.push(() => makeCharacter(
  48391. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48392. {
  48393. front: {
  48394. height: math.unit(6, "feet"),
  48395. name: "Front",
  48396. image: {
  48397. source: "./media/characters/steph/front.svg",
  48398. extra: 1430/1330,
  48399. bottom: 54/1484
  48400. }
  48401. },
  48402. },
  48403. [
  48404. {
  48405. name: "Normal",
  48406. height: math.unit(6, "feet"),
  48407. default: true
  48408. },
  48409. ]
  48410. ))
  48411. characterMakers.push(() => makeCharacter(
  48412. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48413. {
  48414. front: {
  48415. height: math.unit(9, "feet"),
  48416. weight: math.unit(400, "lb"),
  48417. name: "Front",
  48418. image: {
  48419. source: "./media/characters/kil'aman/front.svg",
  48420. extra: 1210/1159,
  48421. bottom: 109/1319
  48422. }
  48423. },
  48424. head: {
  48425. height: math.unit(2.14, "feet"),
  48426. name: "Head",
  48427. image: {
  48428. source: "./media/characters/kil'aman/head.svg"
  48429. }
  48430. },
  48431. maw: {
  48432. height: math.unit(1.21, "feet"),
  48433. name: "Maw",
  48434. image: {
  48435. source: "./media/characters/kil'aman/maw.svg"
  48436. }
  48437. },
  48438. foot: {
  48439. height: math.unit(1.7, "feet"),
  48440. name: "Foot",
  48441. image: {
  48442. source: "./media/characters/kil'aman/foot.svg"
  48443. }
  48444. },
  48445. dick: {
  48446. height: math.unit(2.1, "feet"),
  48447. name: "Dick",
  48448. image: {
  48449. source: "./media/characters/kil'aman/dick.svg"
  48450. }
  48451. },
  48452. },
  48453. [
  48454. {
  48455. name: "Normal",
  48456. height: math.unit(9, "feet")
  48457. },
  48458. {
  48459. name: "Canon Height",
  48460. height: math.unit(10, "miles"),
  48461. default: true
  48462. },
  48463. {
  48464. name: "Maximum",
  48465. height: math.unit(6e9, "miles")
  48466. },
  48467. ]
  48468. ))
  48469. characterMakers.push(() => makeCharacter(
  48470. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48471. {
  48472. front: {
  48473. height: math.unit(90, "feet"),
  48474. weight: math.unit(675000, "lb"),
  48475. name: "Front",
  48476. image: {
  48477. source: "./media/characters/qadan/front.svg",
  48478. extra: 1012/1004,
  48479. bottom: 78/1090
  48480. }
  48481. },
  48482. back: {
  48483. height: math.unit(90, "feet"),
  48484. weight: math.unit(675000, "lb"),
  48485. name: "Back",
  48486. image: {
  48487. source: "./media/characters/qadan/back.svg",
  48488. extra: 1042/1031,
  48489. bottom: 55/1097
  48490. }
  48491. },
  48492. armored: {
  48493. height: math.unit(90, "feet"),
  48494. weight: math.unit(675000, "lb"),
  48495. name: "Armored",
  48496. image: {
  48497. source: "./media/characters/qadan/armored.svg",
  48498. extra: 1047/1037,
  48499. bottom: 48/1095
  48500. }
  48501. },
  48502. },
  48503. [
  48504. {
  48505. name: "Normal",
  48506. height: math.unit(90, "feet"),
  48507. default: true
  48508. },
  48509. ]
  48510. ))
  48511. characterMakers.push(() => makeCharacter(
  48512. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48513. {
  48514. front: {
  48515. height: math.unit(6, "feet"),
  48516. weight: math.unit(225, "lb"),
  48517. name: "Front",
  48518. image: {
  48519. source: "./media/characters/brooke/front.svg",
  48520. extra: 1050/1010,
  48521. bottom: 66/1116
  48522. }
  48523. },
  48524. back: {
  48525. height: math.unit(6, "feet"),
  48526. weight: math.unit(225, "lb"),
  48527. name: "Back",
  48528. image: {
  48529. source: "./media/characters/brooke/back.svg",
  48530. extra: 1053/1013,
  48531. bottom: 41/1094
  48532. }
  48533. },
  48534. dressed: {
  48535. height: math.unit(6, "feet"),
  48536. weight: math.unit(225, "lb"),
  48537. name: "Dressed",
  48538. image: {
  48539. source: "./media/characters/brooke/dressed.svg",
  48540. extra: 1050/1010,
  48541. bottom: 66/1116
  48542. }
  48543. },
  48544. },
  48545. [
  48546. {
  48547. name: "Canon Height",
  48548. height: math.unit(500, "miles"),
  48549. default: true
  48550. },
  48551. ]
  48552. ))
  48553. characterMakers.push(() => makeCharacter(
  48554. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48555. {
  48556. front: {
  48557. height: math.unit(6 + 2/12, "feet"),
  48558. weight: math.unit(210, "lb"),
  48559. name: "Front",
  48560. image: {
  48561. source: "./media/characters/wubs/front.svg",
  48562. extra: 1345/1325,
  48563. bottom: 70/1415
  48564. }
  48565. },
  48566. back: {
  48567. height: math.unit(6 + 2/12, "feet"),
  48568. weight: math.unit(210, "lb"),
  48569. name: "Back",
  48570. image: {
  48571. source: "./media/characters/wubs/back.svg",
  48572. extra: 1296/1275,
  48573. bottom: 58/1354
  48574. }
  48575. },
  48576. },
  48577. [
  48578. {
  48579. name: "Normal",
  48580. height: math.unit(6 + 2/12, "feet"),
  48581. default: true
  48582. },
  48583. {
  48584. name: "Macro",
  48585. height: math.unit(1000, "feet")
  48586. },
  48587. {
  48588. name: "Megamacro",
  48589. height: math.unit(1, "mile")
  48590. },
  48591. ]
  48592. ))
  48593. characterMakers.push(() => makeCharacter(
  48594. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48595. {
  48596. front: {
  48597. height: math.unit(4, "feet"),
  48598. weight: math.unit(120, "lb"),
  48599. name: "Front",
  48600. image: {
  48601. source: "./media/characters/blue/front.svg",
  48602. extra: 1636/1525,
  48603. bottom: 43/1679
  48604. }
  48605. },
  48606. back: {
  48607. height: math.unit(4, "feet"),
  48608. weight: math.unit(120, "lb"),
  48609. name: "Back",
  48610. image: {
  48611. source: "./media/characters/blue/back.svg",
  48612. extra: 1660/1560,
  48613. bottom: 57/1717
  48614. }
  48615. },
  48616. paws: {
  48617. height: math.unit(0.826, "feet"),
  48618. name: "Paws",
  48619. image: {
  48620. source: "./media/characters/blue/paws.svg"
  48621. }
  48622. },
  48623. },
  48624. [
  48625. {
  48626. name: "Micro",
  48627. height: math.unit(3, "inches")
  48628. },
  48629. {
  48630. name: "Normal",
  48631. height: math.unit(4, "feet"),
  48632. default: true
  48633. },
  48634. {
  48635. name: "Femenine Form",
  48636. height: math.unit(14, "feet")
  48637. },
  48638. {
  48639. name: "Werebat Form",
  48640. height: math.unit(18, "feet")
  48641. },
  48642. ]
  48643. ))
  48644. characterMakers.push(() => makeCharacter(
  48645. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48646. {
  48647. female: {
  48648. height: math.unit(7 + 4/12, "feet"),
  48649. weight: math.unit(243, "lb"),
  48650. name: "Female",
  48651. image: {
  48652. source: "./media/characters/kaya/female.svg",
  48653. extra: 975/898,
  48654. bottom: 34/1009
  48655. }
  48656. },
  48657. herm: {
  48658. height: math.unit(7 + 4/12, "feet"),
  48659. weight: math.unit(243, "lb"),
  48660. name: "Herm",
  48661. image: {
  48662. source: "./media/characters/kaya/herm.svg",
  48663. extra: 975/898,
  48664. bottom: 34/1009
  48665. }
  48666. },
  48667. },
  48668. [
  48669. {
  48670. name: "Normal",
  48671. height: math.unit(7 + 4/12, "feet"),
  48672. default: true
  48673. },
  48674. ]
  48675. ))
  48676. characterMakers.push(() => makeCharacter(
  48677. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48678. {
  48679. female: {
  48680. height: math.unit(9 + 4/12, "feet"),
  48681. weight: math.unit(398, "lb"),
  48682. name: "Female",
  48683. image: {
  48684. source: "./media/characters/kassandra/female.svg",
  48685. extra: 908/839,
  48686. bottom: 61/969
  48687. }
  48688. },
  48689. intersex: {
  48690. height: math.unit(9 + 4/12, "feet"),
  48691. weight: math.unit(398, "lb"),
  48692. name: "Intersex",
  48693. image: {
  48694. source: "./media/characters/kassandra/intersex.svg",
  48695. extra: 908/839,
  48696. bottom: 61/969
  48697. }
  48698. },
  48699. },
  48700. [
  48701. {
  48702. name: "Normal",
  48703. height: math.unit(9 + 4/12, "feet"),
  48704. default: true
  48705. },
  48706. ]
  48707. ))
  48708. characterMakers.push(() => makeCharacter(
  48709. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48710. {
  48711. front: {
  48712. height: math.unit(3, "meters"),
  48713. name: "Front",
  48714. image: {
  48715. source: "./media/characters/amy/front.svg",
  48716. extra: 1380/1343,
  48717. bottom: 70/1450
  48718. }
  48719. },
  48720. back: {
  48721. height: math.unit(3, "meters"),
  48722. name: "Back",
  48723. image: {
  48724. source: "./media/characters/amy/back.svg",
  48725. extra: 1380/1347,
  48726. bottom: 66/1446
  48727. }
  48728. },
  48729. },
  48730. [
  48731. {
  48732. name: "Normal",
  48733. height: math.unit(3, "meters"),
  48734. default: true
  48735. },
  48736. ]
  48737. ))
  48738. characterMakers.push(() => makeCharacter(
  48739. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48740. {
  48741. side: {
  48742. height: math.unit(47, "cm"),
  48743. weight: math.unit(10.8, "kg"),
  48744. name: "Side",
  48745. image: {
  48746. source: "./media/characters/alphaschakal/side.svg",
  48747. extra: 1058/568,
  48748. bottom: 62/1120
  48749. }
  48750. },
  48751. back: {
  48752. height: math.unit(78, "cm"),
  48753. weight: math.unit(10.8, "kg"),
  48754. name: "Back",
  48755. image: {
  48756. source: "./media/characters/alphaschakal/back.svg",
  48757. extra: 1102/942,
  48758. bottom: 185/1287
  48759. }
  48760. },
  48761. head: {
  48762. height: math.unit(28, "cm"),
  48763. name: "Head",
  48764. image: {
  48765. source: "./media/characters/alphaschakal/head.svg",
  48766. extra: 696/508,
  48767. bottom: 0/696
  48768. }
  48769. },
  48770. paw: {
  48771. height: math.unit(16, "cm"),
  48772. name: "Paw",
  48773. image: {
  48774. source: "./media/characters/alphaschakal/paw.svg"
  48775. }
  48776. },
  48777. },
  48778. [
  48779. {
  48780. name: "Normal",
  48781. height: math.unit(47, "cm"),
  48782. default: true
  48783. },
  48784. {
  48785. name: "Macro",
  48786. height: math.unit(340, "cm")
  48787. },
  48788. ]
  48789. ))
  48790. characterMakers.push(() => makeCharacter(
  48791. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48792. {
  48793. front: {
  48794. height: math.unit(36, "earths"),
  48795. name: "Front",
  48796. image: {
  48797. source: "./media/characters/ecobyss/front.svg",
  48798. extra: 1282/1215,
  48799. bottom: 11/1293
  48800. }
  48801. },
  48802. back: {
  48803. height: math.unit(36, "earths"),
  48804. name: "Back",
  48805. image: {
  48806. source: "./media/characters/ecobyss/back.svg",
  48807. extra: 1291/1222,
  48808. bottom: 8/1299
  48809. }
  48810. },
  48811. },
  48812. [
  48813. {
  48814. name: "Normal",
  48815. height: math.unit(36, "earths"),
  48816. default: true
  48817. },
  48818. ]
  48819. ))
  48820. characterMakers.push(() => makeCharacter(
  48821. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48822. {
  48823. front: {
  48824. height: math.unit(12, "feet"),
  48825. name: "Front",
  48826. image: {
  48827. source: "./media/characters/vasuk/front.svg",
  48828. extra: 1326/1207,
  48829. bottom: 64/1390
  48830. }
  48831. },
  48832. },
  48833. [
  48834. {
  48835. name: "Normal",
  48836. height: math.unit(12, "feet"),
  48837. default: true
  48838. },
  48839. ]
  48840. ))
  48841. characterMakers.push(() => makeCharacter(
  48842. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48843. {
  48844. side: {
  48845. height: math.unit(100, "feet"),
  48846. name: "Side",
  48847. image: {
  48848. source: "./media/characters/linneaus/side.svg",
  48849. extra: 987/807,
  48850. bottom: 47/1034
  48851. }
  48852. },
  48853. },
  48854. [
  48855. {
  48856. name: "Macro",
  48857. height: math.unit(100, "feet"),
  48858. default: true
  48859. },
  48860. ]
  48861. ))
  48862. characterMakers.push(() => makeCharacter(
  48863. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48864. {
  48865. front: {
  48866. height: math.unit(8, "feet"),
  48867. weight: math.unit(1200, "lb"),
  48868. name: "Front",
  48869. image: {
  48870. source: "./media/characters/nyterious-daligdig/front.svg",
  48871. extra: 1284/1094,
  48872. bottom: 84/1368
  48873. }
  48874. },
  48875. back: {
  48876. height: math.unit(8, "feet"),
  48877. weight: math.unit(1200, "lb"),
  48878. name: "Back",
  48879. image: {
  48880. source: "./media/characters/nyterious-daligdig/back.svg",
  48881. extra: 1301/1121,
  48882. bottom: 129/1430
  48883. }
  48884. },
  48885. mouth: {
  48886. height: math.unit(1.464, "feet"),
  48887. name: "Mouth",
  48888. image: {
  48889. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48890. }
  48891. },
  48892. },
  48893. [
  48894. {
  48895. name: "Small",
  48896. height: math.unit(8, "feet"),
  48897. default: true
  48898. },
  48899. {
  48900. name: "Normal",
  48901. height: math.unit(15, "feet")
  48902. },
  48903. {
  48904. name: "Macro",
  48905. height: math.unit(90, "feet")
  48906. },
  48907. ]
  48908. ))
  48909. characterMakers.push(() => makeCharacter(
  48910. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48911. {
  48912. front: {
  48913. height: math.unit(7 + 4/12, "feet"),
  48914. weight: math.unit(252, "lb"),
  48915. name: "Front",
  48916. image: {
  48917. source: "./media/characters/bandel/front.svg",
  48918. extra: 1946/1775,
  48919. bottom: 26/1972
  48920. }
  48921. },
  48922. back: {
  48923. height: math.unit(7 + 4/12, "feet"),
  48924. weight: math.unit(252, "lb"),
  48925. name: "Back",
  48926. image: {
  48927. source: "./media/characters/bandel/back.svg",
  48928. extra: 1940/1770,
  48929. bottom: 25/1965
  48930. }
  48931. },
  48932. maw: {
  48933. height: math.unit(2.15, "feet"),
  48934. name: "Maw",
  48935. image: {
  48936. source: "./media/characters/bandel/maw.svg"
  48937. }
  48938. },
  48939. stomach: {
  48940. height: math.unit(1.95, "feet"),
  48941. name: "Stomach",
  48942. image: {
  48943. source: "./media/characters/bandel/stomach.svg"
  48944. }
  48945. },
  48946. },
  48947. [
  48948. {
  48949. name: "Normal",
  48950. height: math.unit(7 + 4/12, "feet"),
  48951. default: true
  48952. },
  48953. ]
  48954. ))
  48955. characterMakers.push(() => makeCharacter(
  48956. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48957. {
  48958. front: {
  48959. height: math.unit(10 + 5/12, "feet"),
  48960. weight: math.unit(773.5, "kg"),
  48961. name: "Front",
  48962. image: {
  48963. source: "./media/characters/zed/front.svg",
  48964. extra: 987/941,
  48965. bottom: 52/1039
  48966. }
  48967. },
  48968. },
  48969. [
  48970. {
  48971. name: "Short",
  48972. height: math.unit(5 + 4/12, "feet")
  48973. },
  48974. {
  48975. name: "Average",
  48976. height: math.unit(10 + 5/12, "feet"),
  48977. default: true
  48978. },
  48979. {
  48980. name: "Mini-Macro",
  48981. height: math.unit(24 + 9/12, "feet")
  48982. },
  48983. {
  48984. name: "Macro",
  48985. height: math.unit(249, "feet")
  48986. },
  48987. {
  48988. name: "Mega-Macro",
  48989. height: math.unit(12490, "feet")
  48990. },
  48991. {
  48992. name: "Giga-Macro",
  48993. height: math.unit(24.9, "miles")
  48994. },
  48995. {
  48996. name: "Tera-Macro",
  48997. height: math.unit(24900, "miles")
  48998. },
  48999. {
  49000. name: "Cosmic Scale",
  49001. height: math.unit(38.9, "lightyears")
  49002. },
  49003. {
  49004. name: "Universal Scale",
  49005. height: math.unit(138e12, "lightyears")
  49006. },
  49007. ]
  49008. ))
  49009. characterMakers.push(() => makeCharacter(
  49010. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  49011. {
  49012. front: {
  49013. height: math.unit(1561, "inches"),
  49014. name: "Front",
  49015. image: {
  49016. source: "./media/characters/ivan/front.svg",
  49017. extra: 1126/1071,
  49018. bottom: 26/1152
  49019. }
  49020. },
  49021. back: {
  49022. height: math.unit(1561, "inches"),
  49023. name: "Back",
  49024. image: {
  49025. source: "./media/characters/ivan/back.svg",
  49026. extra: 1134/1079,
  49027. bottom: 30/1164
  49028. }
  49029. },
  49030. },
  49031. [
  49032. {
  49033. name: "Normal",
  49034. height: math.unit(1561, "inches"),
  49035. default: true
  49036. },
  49037. ]
  49038. ))
  49039. characterMakers.push(() => makeCharacter(
  49040. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  49041. {
  49042. front: {
  49043. height: math.unit(5 + 7/12, "feet"),
  49044. weight: math.unit(150, "lb"),
  49045. name: "Front",
  49046. image: {
  49047. source: "./media/characters/robin-arctic-hare/front.svg",
  49048. extra: 1148/974,
  49049. bottom: 20/1168
  49050. }
  49051. },
  49052. },
  49053. [
  49054. {
  49055. name: "Normal",
  49056. height: math.unit(5 + 7/12, "feet"),
  49057. default: true
  49058. },
  49059. ]
  49060. ))
  49061. characterMakers.push(() => makeCharacter(
  49062. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  49063. {
  49064. side: {
  49065. height: math.unit(5, "feet"),
  49066. name: "Side",
  49067. image: {
  49068. source: "./media/characters/birch/side.svg",
  49069. extra: 985/796,
  49070. bottom: 111/1096
  49071. }
  49072. },
  49073. },
  49074. [
  49075. {
  49076. name: "Normal",
  49077. height: math.unit(5, "feet"),
  49078. default: true
  49079. },
  49080. ]
  49081. ))
  49082. characterMakers.push(() => makeCharacter(
  49083. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  49084. {
  49085. front: {
  49086. height: math.unit(4, "feet"),
  49087. name: "Front",
  49088. image: {
  49089. source: "./media/characters/rasp/front.svg",
  49090. extra: 561/478,
  49091. bottom: 74/635
  49092. }
  49093. },
  49094. },
  49095. [
  49096. {
  49097. name: "Normal",
  49098. height: math.unit(4, "feet"),
  49099. default: true
  49100. },
  49101. ]
  49102. ))
  49103. characterMakers.push(() => makeCharacter(
  49104. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49105. {
  49106. front: {
  49107. height: math.unit(4 + 6/12, "feet"),
  49108. name: "Front",
  49109. image: {
  49110. source: "./media/characters/agatha/front.svg",
  49111. extra: 947/933,
  49112. bottom: 42/989
  49113. }
  49114. },
  49115. back: {
  49116. height: math.unit(4 + 6/12, "feet"),
  49117. name: "Back",
  49118. image: {
  49119. source: "./media/characters/agatha/back.svg",
  49120. extra: 935/922,
  49121. bottom: 48/983
  49122. }
  49123. },
  49124. },
  49125. [
  49126. {
  49127. name: "Normal",
  49128. height: math.unit(4 + 6 /12, "feet"),
  49129. default: true
  49130. },
  49131. {
  49132. name: "Max Size",
  49133. height: math.unit(500, "feet")
  49134. },
  49135. ]
  49136. ))
  49137. characterMakers.push(() => makeCharacter(
  49138. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49139. {
  49140. side: {
  49141. height: math.unit(30, "feet"),
  49142. name: "Side",
  49143. image: {
  49144. source: "./media/characters/roggy/side.svg",
  49145. extra: 909/643,
  49146. bottom: 63/972
  49147. }
  49148. },
  49149. lounging: {
  49150. height: math.unit(20, "feet"),
  49151. name: "Lounging",
  49152. image: {
  49153. source: "./media/characters/roggy/lounging.svg",
  49154. extra: 643/479,
  49155. bottom: 145/788
  49156. }
  49157. },
  49158. handpaw: {
  49159. height: math.unit(13.1, "feet"),
  49160. name: "Handpaw",
  49161. image: {
  49162. source: "./media/characters/roggy/handpaw.svg"
  49163. }
  49164. },
  49165. footpaw: {
  49166. height: math.unit(15.8, "feet"),
  49167. name: "Footpaw",
  49168. image: {
  49169. source: "./media/characters/roggy/footpaw.svg"
  49170. }
  49171. },
  49172. },
  49173. [
  49174. {
  49175. name: "Menacing",
  49176. height: math.unit(30, "feet"),
  49177. default: true
  49178. },
  49179. ]
  49180. ))
  49181. characterMakers.push(() => makeCharacter(
  49182. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49183. {
  49184. front: {
  49185. height: math.unit(5 + 7/12, "feet"),
  49186. weight: math.unit(135, "lb"),
  49187. name: "Front",
  49188. image: {
  49189. source: "./media/characters/naomi/front.svg",
  49190. extra: 1209/1154,
  49191. bottom: 129/1338
  49192. }
  49193. },
  49194. back: {
  49195. height: math.unit(5 + 7/12, "feet"),
  49196. weight: math.unit(135, "lb"),
  49197. name: "Back",
  49198. image: {
  49199. source: "./media/characters/naomi/back.svg",
  49200. extra: 1252/1190,
  49201. bottom: 23/1275
  49202. }
  49203. },
  49204. },
  49205. [
  49206. {
  49207. name: "Normal",
  49208. height: math.unit(5 + 7 /12, "feet"),
  49209. default: true
  49210. },
  49211. ]
  49212. ))
  49213. characterMakers.push(() => makeCharacter(
  49214. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49215. {
  49216. side: {
  49217. height: math.unit(35, "meters"),
  49218. name: "Side",
  49219. image: {
  49220. source: "./media/characters/kimpi/side.svg",
  49221. extra: 419/382,
  49222. bottom: 63/482
  49223. }
  49224. },
  49225. hand: {
  49226. height: math.unit(8.96, "meters"),
  49227. name: "Hand",
  49228. image: {
  49229. source: "./media/characters/kimpi/hand.svg"
  49230. }
  49231. },
  49232. },
  49233. [
  49234. {
  49235. name: "Normal",
  49236. height: math.unit(35, "meters"),
  49237. default: true
  49238. },
  49239. ]
  49240. ))
  49241. characterMakers.push(() => makeCharacter(
  49242. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49243. {
  49244. front: {
  49245. height: math.unit(4 + 4/12, "feet"),
  49246. name: "Front",
  49247. image: {
  49248. source: "./media/characters/pepper-purrloin/front.svg",
  49249. extra: 1141/1024,
  49250. bottom: 21/1162
  49251. }
  49252. },
  49253. },
  49254. [
  49255. {
  49256. name: "Normal",
  49257. height: math.unit(4 + 4/12, "feet"),
  49258. default: true
  49259. },
  49260. ]
  49261. ))
  49262. characterMakers.push(() => makeCharacter(
  49263. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49264. {
  49265. front: {
  49266. height: math.unit(6 + 2/12, "feet"),
  49267. name: "Front",
  49268. image: {
  49269. source: "./media/characters/raphael/front.svg",
  49270. extra: 1101/962,
  49271. bottom: 59/1160
  49272. }
  49273. },
  49274. },
  49275. [
  49276. {
  49277. name: "Normal",
  49278. height: math.unit(6 + 2/12, "feet"),
  49279. default: true
  49280. },
  49281. ]
  49282. ))
  49283. characterMakers.push(() => makeCharacter(
  49284. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49285. {
  49286. front: {
  49287. height: math.unit(6, "feet"),
  49288. weight: math.unit(150, "lb"),
  49289. name: "Front",
  49290. image: {
  49291. source: "./media/characters/victor-williams/front.svg",
  49292. extra: 1894/1825,
  49293. bottom: 67/1961
  49294. }
  49295. },
  49296. },
  49297. [
  49298. {
  49299. name: "Normal",
  49300. height: math.unit(6, "feet"),
  49301. default: true
  49302. },
  49303. ]
  49304. ))
  49305. characterMakers.push(() => makeCharacter(
  49306. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49307. {
  49308. front: {
  49309. height: math.unit(5 + 8/12, "feet"),
  49310. weight: math.unit(150, "lb"),
  49311. name: "Front",
  49312. image: {
  49313. source: "./media/characters/rachel/front.svg",
  49314. extra: 1902/1787,
  49315. bottom: 46/1948
  49316. }
  49317. },
  49318. },
  49319. [
  49320. {
  49321. name: "Base Height",
  49322. height: math.unit(5 + 8/12, "feet"),
  49323. default: true
  49324. },
  49325. {
  49326. name: "Macro",
  49327. height: math.unit(200, "feet")
  49328. },
  49329. {
  49330. name: "Mega Macro",
  49331. height: math.unit(1, "mile")
  49332. },
  49333. {
  49334. name: "Giga Macro",
  49335. height: math.unit(1500, "miles")
  49336. },
  49337. {
  49338. name: "Tera Macro",
  49339. height: math.unit(8000, "miles")
  49340. },
  49341. {
  49342. name: "Tera Macro+",
  49343. height: math.unit(2e5, "miles")
  49344. },
  49345. ]
  49346. ))
  49347. characterMakers.push(() => makeCharacter(
  49348. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49349. {
  49350. front: {
  49351. height: math.unit(6.5, "feet"),
  49352. name: "Front",
  49353. image: {
  49354. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49355. extra: 860/819,
  49356. bottom: 307/1167
  49357. }
  49358. },
  49359. back: {
  49360. height: math.unit(6.5, "feet"),
  49361. name: "Back",
  49362. image: {
  49363. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49364. extra: 880/837,
  49365. bottom: 395/1275
  49366. }
  49367. },
  49368. sleeping: {
  49369. height: math.unit(2.79, "feet"),
  49370. name: "Sleeping",
  49371. image: {
  49372. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49373. extra: 465/383,
  49374. bottom: 263/728
  49375. }
  49376. },
  49377. maw: {
  49378. height: math.unit(2.52, "feet"),
  49379. name: "Maw",
  49380. image: {
  49381. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49382. }
  49383. },
  49384. },
  49385. [
  49386. {
  49387. name: "Normal",
  49388. height: math.unit(6.5, "feet"),
  49389. default: true
  49390. },
  49391. ]
  49392. ))
  49393. characterMakers.push(() => makeCharacter(
  49394. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49395. {
  49396. front: {
  49397. height: math.unit(5, "feet"),
  49398. name: "Front",
  49399. image: {
  49400. source: "./media/characters/nova-nerium/front.svg",
  49401. extra: 1548/1392,
  49402. bottom: 374/1922
  49403. }
  49404. },
  49405. back: {
  49406. height: math.unit(5, "feet"),
  49407. name: "Back",
  49408. image: {
  49409. source: "./media/characters/nova-nerium/back.svg",
  49410. extra: 1658/1468,
  49411. bottom: 257/1915
  49412. }
  49413. },
  49414. },
  49415. [
  49416. {
  49417. name: "Normal",
  49418. height: math.unit(5, "feet"),
  49419. default: true
  49420. },
  49421. ]
  49422. ))
  49423. characterMakers.push(() => makeCharacter(
  49424. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49425. {
  49426. front: {
  49427. height: math.unit(5 + 4/12, "feet"),
  49428. name: "Front",
  49429. image: {
  49430. source: "./media/characters/ashe-pyriph/front.svg",
  49431. extra: 1935/1747,
  49432. bottom: 60/1995
  49433. }
  49434. },
  49435. },
  49436. [
  49437. {
  49438. name: "Normal",
  49439. height: math.unit(5 + 4/12, "feet"),
  49440. default: true
  49441. },
  49442. ]
  49443. ))
  49444. characterMakers.push(() => makeCharacter(
  49445. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49446. {
  49447. front: {
  49448. height: math.unit(8.7, "feet"),
  49449. name: "Front",
  49450. image: {
  49451. source: "./media/characters/flicker-wisp/front.svg",
  49452. extra: 1835/1613,
  49453. bottom: 449/2284
  49454. }
  49455. },
  49456. side: {
  49457. height: math.unit(8.7, "feet"),
  49458. name: "Side",
  49459. image: {
  49460. source: "./media/characters/flicker-wisp/side.svg",
  49461. extra: 1841/1642,
  49462. bottom: 336/2177
  49463. },
  49464. default: true
  49465. },
  49466. maw: {
  49467. height: math.unit(3.35, "feet"),
  49468. name: "Maw",
  49469. image: {
  49470. source: "./media/characters/flicker-wisp/maw.svg",
  49471. extra: 2338/1506,
  49472. bottom: 0/2338
  49473. }
  49474. },
  49475. ovipositor: {
  49476. height: math.unit(4.95, "feet"),
  49477. name: "Ovipositor",
  49478. image: {
  49479. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49480. }
  49481. },
  49482. egg: {
  49483. height: math.unit(0.385, "feet"),
  49484. weight: math.unit(2, "lb"),
  49485. name: "Egg",
  49486. image: {
  49487. source: "./media/characters/flicker-wisp/egg.svg"
  49488. }
  49489. },
  49490. },
  49491. [
  49492. {
  49493. name: "Normal",
  49494. height: math.unit(8.7, "feet"),
  49495. default: true
  49496. },
  49497. ]
  49498. ))
  49499. characterMakers.push(() => makeCharacter(
  49500. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49501. {
  49502. side: {
  49503. height: math.unit(11, "feet"),
  49504. name: "Side",
  49505. image: {
  49506. source: "./media/characters/faefnul/side.svg",
  49507. extra: 1100/1007,
  49508. bottom: 0/1100
  49509. }
  49510. },
  49511. },
  49512. [
  49513. {
  49514. name: "Normal",
  49515. height: math.unit(11, "feet"),
  49516. default: true
  49517. },
  49518. ]
  49519. ))
  49520. characterMakers.push(() => makeCharacter(
  49521. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49522. {
  49523. front: {
  49524. height: math.unit(6 + 2/12, "feet"),
  49525. name: "Front",
  49526. image: {
  49527. source: "./media/characters/shady/front.svg",
  49528. extra: 502/461,
  49529. bottom: 9/511
  49530. }
  49531. },
  49532. kneeling: {
  49533. height: math.unit(4.6, "feet"),
  49534. name: "Kneeling",
  49535. image: {
  49536. source: "./media/characters/shady/kneeling.svg",
  49537. extra: 1328/1219,
  49538. bottom: 117/1445
  49539. }
  49540. },
  49541. maw: {
  49542. height: math.unit(2, "feet"),
  49543. name: "Maw",
  49544. image: {
  49545. source: "./media/characters/shady/maw.svg"
  49546. }
  49547. },
  49548. },
  49549. [
  49550. {
  49551. name: "Nano",
  49552. height: math.unit(1, "mm")
  49553. },
  49554. {
  49555. name: "Micro",
  49556. height: math.unit(12, "mm")
  49557. },
  49558. {
  49559. name: "Tiny",
  49560. height: math.unit(3, "inches")
  49561. },
  49562. {
  49563. name: "Normal",
  49564. height: math.unit(6 + 2/12, "feet"),
  49565. default: true
  49566. },
  49567. {
  49568. name: "Big",
  49569. height: math.unit(15, "feet")
  49570. },
  49571. {
  49572. name: "Macro",
  49573. height: math.unit(150, "feet")
  49574. },
  49575. {
  49576. name: "Titanic",
  49577. height: math.unit(500, "feet")
  49578. },
  49579. ]
  49580. ))
  49581. characterMakers.push(() => makeCharacter(
  49582. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49583. {
  49584. front: {
  49585. height: math.unit(12, "feet"),
  49586. name: "Front",
  49587. image: {
  49588. source: "./media/characters/fenrir/front.svg",
  49589. extra: 968/875,
  49590. bottom: 22/990
  49591. }
  49592. },
  49593. },
  49594. [
  49595. {
  49596. name: "Big",
  49597. height: math.unit(12, "feet"),
  49598. default: true
  49599. },
  49600. ]
  49601. ))
  49602. characterMakers.push(() => makeCharacter(
  49603. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49604. {
  49605. front: {
  49606. height: math.unit(5 + 4/12, "feet"),
  49607. name: "Front",
  49608. image: {
  49609. source: "./media/characters/makar/front.svg",
  49610. extra: 1181/1112,
  49611. bottom: 78/1259
  49612. }
  49613. },
  49614. },
  49615. [
  49616. {
  49617. name: "Normal",
  49618. height: math.unit(5 + 4/12, "feet"),
  49619. default: true
  49620. },
  49621. ]
  49622. ))
  49623. characterMakers.push(() => makeCharacter(
  49624. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49625. {
  49626. front: {
  49627. height: math.unit(5 + 7/12, "feet"),
  49628. name: "Front",
  49629. image: {
  49630. source: "./media/characters/callow/front.svg",
  49631. extra: 1482/1304,
  49632. bottom: 23/1505
  49633. }
  49634. },
  49635. back: {
  49636. height: math.unit(5 + 7/12, "feet"),
  49637. name: "Back",
  49638. image: {
  49639. source: "./media/characters/callow/back.svg",
  49640. extra: 1484/1296,
  49641. bottom: 25/1509
  49642. }
  49643. },
  49644. },
  49645. [
  49646. {
  49647. name: "Micro",
  49648. height: math.unit(3, "inches"),
  49649. default: true
  49650. },
  49651. {
  49652. name: "Normal",
  49653. height: math.unit(5 + 7/12, "feet")
  49654. },
  49655. ]
  49656. ))
  49657. characterMakers.push(() => makeCharacter(
  49658. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49659. {
  49660. front: {
  49661. height: math.unit(6 + 2/12, "feet"),
  49662. name: "Front",
  49663. image: {
  49664. source: "./media/characters/natel/front.svg",
  49665. extra: 1833/1692,
  49666. bottom: 166/1999
  49667. }
  49668. },
  49669. },
  49670. [
  49671. {
  49672. name: "Normal",
  49673. height: math.unit(6 + 2/12, "feet"),
  49674. default: true
  49675. },
  49676. ]
  49677. ))
  49678. characterMakers.push(() => makeCharacter(
  49679. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49680. {
  49681. front: {
  49682. height: math.unit(1.75, "meters"),
  49683. name: "Front",
  49684. image: {
  49685. source: "./media/characters/misu/front.svg",
  49686. extra: 1690/1558,
  49687. bottom: 234/1924
  49688. }
  49689. },
  49690. back: {
  49691. height: math.unit(1.75, "meters"),
  49692. name: "Back",
  49693. image: {
  49694. source: "./media/characters/misu/back.svg",
  49695. extra: 1762/1618,
  49696. bottom: 146/1908
  49697. }
  49698. },
  49699. frontNude: {
  49700. height: math.unit(1.75, "meters"),
  49701. name: "Front (Nude)",
  49702. image: {
  49703. source: "./media/characters/misu/front-nude.svg",
  49704. extra: 1690/1558,
  49705. bottom: 234/1924
  49706. }
  49707. },
  49708. backNude: {
  49709. height: math.unit(1.75, "meters"),
  49710. name: "Back (Nude)",
  49711. image: {
  49712. source: "./media/characters/misu/back-nude.svg",
  49713. extra: 1762/1618,
  49714. bottom: 146/1908
  49715. }
  49716. },
  49717. frontErect: {
  49718. height: math.unit(1.75, "meters"),
  49719. name: "Front (Erect)",
  49720. image: {
  49721. source: "./media/characters/misu/front-erect.svg",
  49722. extra: 1690/1558,
  49723. bottom: 234/1924
  49724. }
  49725. },
  49726. maw: {
  49727. height: math.unit(0.47, "meters"),
  49728. name: "Maw",
  49729. image: {
  49730. source: "./media/characters/misu/maw.svg"
  49731. }
  49732. },
  49733. head: {
  49734. height: math.unit(0.35, "meters"),
  49735. name: "Head",
  49736. image: {
  49737. source: "./media/characters/misu/head.svg"
  49738. }
  49739. },
  49740. rear: {
  49741. height: math.unit(0.47, "meters"),
  49742. name: "Rear",
  49743. image: {
  49744. source: "./media/characters/misu/rear.svg"
  49745. }
  49746. },
  49747. },
  49748. [
  49749. {
  49750. name: "Normal",
  49751. height: math.unit(1.75, "meters")
  49752. },
  49753. {
  49754. name: "Not good for the people",
  49755. height: math.unit(42, "meters")
  49756. },
  49757. {
  49758. name: "Not good for the neighborhood",
  49759. height: math.unit(135, "meters")
  49760. },
  49761. {
  49762. name: "Bit bigger problem",
  49763. height: math.unit(380, "meters"),
  49764. default: true
  49765. },
  49766. {
  49767. name: "Not good for the city",
  49768. height: math.unit(1.5, "km")
  49769. },
  49770. {
  49771. name: "Not good for the county",
  49772. height: math.unit(5.5, "km")
  49773. },
  49774. {
  49775. name: "Not good for the state",
  49776. height: math.unit(25, "km")
  49777. },
  49778. {
  49779. name: "Not good for the country",
  49780. height: math.unit(125, "km")
  49781. },
  49782. {
  49783. name: "Not good for the continent",
  49784. height: math.unit(2100, "km")
  49785. },
  49786. {
  49787. name: "Not good for the planet",
  49788. height: math.unit(35000, "km")
  49789. },
  49790. {
  49791. name: "Just no",
  49792. height: math.unit(8.5e18, "km")
  49793. },
  49794. ]
  49795. ))
  49796. characterMakers.push(() => makeCharacter(
  49797. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49798. {
  49799. front: {
  49800. height: math.unit(6.5, "feet"),
  49801. name: "Front",
  49802. image: {
  49803. source: "./media/characters/poppy/front.svg",
  49804. extra: 1878/1812,
  49805. bottom: 43/1921
  49806. }
  49807. },
  49808. feet: {
  49809. height: math.unit(1.06, "feet"),
  49810. name: "Feet",
  49811. image: {
  49812. source: "./media/characters/poppy/feet.svg",
  49813. extra: 1083/1083,
  49814. bottom: 87/1170
  49815. }
  49816. },
  49817. },
  49818. [
  49819. {
  49820. name: "Human",
  49821. height: math.unit(6.5, "feet")
  49822. },
  49823. {
  49824. name: "Default",
  49825. height: math.unit(300, "feet"),
  49826. default: true
  49827. },
  49828. {
  49829. name: "Huge",
  49830. height: math.unit(850, "feet")
  49831. },
  49832. {
  49833. name: "Mega",
  49834. height: math.unit(8000, "feet")
  49835. },
  49836. {
  49837. name: "Giga",
  49838. height: math.unit(300, "miles")
  49839. },
  49840. ]
  49841. ))
  49842. characterMakers.push(() => makeCharacter(
  49843. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49844. {
  49845. bipedal: {
  49846. height: math.unit(7, "feet"),
  49847. name: "Bipedal",
  49848. image: {
  49849. source: "./media/characters/zener/bipedal.svg",
  49850. extra: 874/805,
  49851. bottom: 109/983
  49852. }
  49853. },
  49854. quadrupedal: {
  49855. height: math.unit(4.64, "feet"),
  49856. name: "Quadrupedal",
  49857. image: {
  49858. source: "./media/characters/zener/quadrupedal.svg",
  49859. extra: 638/507,
  49860. bottom: 190/828
  49861. }
  49862. },
  49863. cock: {
  49864. height: math.unit(18, "inches"),
  49865. name: "Cock",
  49866. image: {
  49867. source: "./media/characters/zener/cock.svg"
  49868. }
  49869. },
  49870. },
  49871. [
  49872. {
  49873. name: "Normal",
  49874. height: math.unit(7, "feet"),
  49875. default: true
  49876. },
  49877. ]
  49878. ))
  49879. characterMakers.push(() => makeCharacter(
  49880. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49881. {
  49882. nude: {
  49883. height: math.unit(5 + 6/12, "feet"),
  49884. name: "Nude",
  49885. image: {
  49886. source: "./media/characters/charlie-dog/nude.svg",
  49887. extra: 768/734,
  49888. bottom: 26/794
  49889. }
  49890. },
  49891. dressed: {
  49892. height: math.unit(5 + 6/12, "feet"),
  49893. name: "Dressed",
  49894. image: {
  49895. source: "./media/characters/charlie-dog/dressed.svg",
  49896. extra: 768/734,
  49897. bottom: 26/794
  49898. }
  49899. },
  49900. },
  49901. [
  49902. {
  49903. name: "Normal",
  49904. height: math.unit(5 + 6/12, "feet"),
  49905. default: true
  49906. },
  49907. ]
  49908. ))
  49909. characterMakers.push(() => makeCharacter(
  49910. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49911. {
  49912. front: {
  49913. height: math.unit(6 + 4/12, "feet"),
  49914. name: "Front",
  49915. image: {
  49916. source: "./media/characters/ir'istrasz/front.svg",
  49917. extra: 1014/977,
  49918. bottom: 65/1079
  49919. }
  49920. },
  49921. back: {
  49922. height: math.unit(6 + 4/12, "feet"),
  49923. name: "Back",
  49924. image: {
  49925. source: "./media/characters/ir'istrasz/back.svg",
  49926. extra: 1024/992,
  49927. bottom: 34/1058
  49928. }
  49929. },
  49930. },
  49931. [
  49932. {
  49933. name: "Normal",
  49934. height: math.unit(6 + 4/12, "feet"),
  49935. default: true
  49936. },
  49937. ]
  49938. ))
  49939. characterMakers.push(() => makeCharacter(
  49940. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49941. {
  49942. front: {
  49943. height: math.unit(5 + 8/12, "feet"),
  49944. name: "Front",
  49945. image: {
  49946. source: "./media/characters/dee-ditto/front.svg",
  49947. extra: 1874/1785,
  49948. bottom: 68/1942
  49949. }
  49950. },
  49951. back: {
  49952. height: math.unit(5 + 8/12, "feet"),
  49953. name: "Back",
  49954. image: {
  49955. source: "./media/characters/dee-ditto/back.svg",
  49956. extra: 1870/1783,
  49957. bottom: 77/1947
  49958. }
  49959. },
  49960. },
  49961. [
  49962. {
  49963. name: "Normal",
  49964. height: math.unit(5 + 8/12, "feet"),
  49965. default: true
  49966. },
  49967. ]
  49968. ))
  49969. characterMakers.push(() => makeCharacter(
  49970. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49971. {
  49972. front: {
  49973. height: math.unit(7 + 6/12, "feet"),
  49974. name: "Front",
  49975. image: {
  49976. source: "./media/characters/fey/front.svg",
  49977. extra: 995/979,
  49978. bottom: 30/1025
  49979. }
  49980. },
  49981. back: {
  49982. height: math.unit(7 + 6/12, "feet"),
  49983. name: "Back",
  49984. image: {
  49985. source: "./media/characters/fey/back.svg",
  49986. extra: 1079/1008,
  49987. bottom: 5/1084
  49988. }
  49989. },
  49990. dressed: {
  49991. height: math.unit(7 + 6/12, "feet"),
  49992. name: "Dressed",
  49993. image: {
  49994. source: "./media/characters/fey/dressed.svg",
  49995. extra: 995/979,
  49996. bottom: 30/1025
  49997. }
  49998. },
  49999. },
  50000. [
  50001. {
  50002. name: "Normal",
  50003. height: math.unit(7 + 6/12, "feet"),
  50004. default: true
  50005. },
  50006. ]
  50007. ))
  50008. characterMakers.push(() => makeCharacter(
  50009. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  50010. {
  50011. standing: {
  50012. height: math.unit(17, "feet"),
  50013. name: "Standing",
  50014. image: {
  50015. source: "./media/characters/aster/standing.svg",
  50016. extra: 1798/1598,
  50017. bottom: 117/1915
  50018. }
  50019. },
  50020. },
  50021. [
  50022. {
  50023. name: "Normal",
  50024. height: math.unit(17, "feet"),
  50025. default: true
  50026. },
  50027. {
  50028. name: "Homewrecker",
  50029. height: math.unit(95, "feet")
  50030. },
  50031. {
  50032. name: "Planet Devourer",
  50033. height: math.unit(1008000, "miles")
  50034. },
  50035. ]
  50036. ))
  50037. characterMakers.push(() => makeCharacter(
  50038. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  50039. {
  50040. front: {
  50041. height: math.unit(6 + 5/12, "feet"),
  50042. weight: math.unit(265, "lb"),
  50043. name: "Front",
  50044. image: {
  50045. source: "./media/characters/devon-childs/front.svg",
  50046. extra: 1795/1721,
  50047. bottom: 41/1836
  50048. }
  50049. },
  50050. side: {
  50051. height: math.unit(6 + 5/12, "feet"),
  50052. weight: math.unit(265, "lb"),
  50053. name: "Side",
  50054. image: {
  50055. source: "./media/characters/devon-childs/side.svg",
  50056. extra: 1812/1738,
  50057. bottom: 30/1842
  50058. }
  50059. },
  50060. back: {
  50061. height: math.unit(6 + 5/12, "feet"),
  50062. weight: math.unit(265, "lb"),
  50063. name: "Back",
  50064. image: {
  50065. source: "./media/characters/devon-childs/back.svg",
  50066. extra: 1808/1735,
  50067. bottom: 23/1831
  50068. }
  50069. },
  50070. hand: {
  50071. height: math.unit(1.464, "feet"),
  50072. name: "Hand",
  50073. image: {
  50074. source: "./media/characters/devon-childs/hand.svg"
  50075. }
  50076. },
  50077. foot: {
  50078. height: math.unit(1.6, "feet"),
  50079. name: "Foot",
  50080. image: {
  50081. source: "./media/characters/devon-childs/foot.svg"
  50082. }
  50083. },
  50084. },
  50085. [
  50086. {
  50087. name: "Micro",
  50088. height: math.unit(7, "cm")
  50089. },
  50090. {
  50091. name: "Normal",
  50092. height: math.unit(6 + 5/12, "feet"),
  50093. default: true
  50094. },
  50095. {
  50096. name: "Macro",
  50097. height: math.unit(154, "feet")
  50098. },
  50099. ]
  50100. ))
  50101. characterMakers.push(() => makeCharacter(
  50102. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50103. {
  50104. front: {
  50105. height: math.unit(6, "feet"),
  50106. weight: math.unit(180, "lb"),
  50107. name: "Front",
  50108. image: {
  50109. source: "./media/characters/lydemox-vir/front.svg",
  50110. extra: 1632/1435,
  50111. bottom: 58/1690
  50112. }
  50113. },
  50114. frontSFW: {
  50115. height: math.unit(6, "feet"),
  50116. weight: math.unit(180, "lb"),
  50117. name: "Front (SFW)",
  50118. image: {
  50119. source: "./media/characters/lydemox-vir/front-sfw.svg",
  50120. extra: 1632/1435,
  50121. bottom: 58/1690
  50122. }
  50123. },
  50124. back: {
  50125. height: math.unit(6, "feet"),
  50126. weight: math.unit(180, "lb"),
  50127. name: "Back",
  50128. image: {
  50129. source: "./media/characters/lydemox-vir/back.svg",
  50130. extra: 1593/1408,
  50131. bottom: 31/1624
  50132. }
  50133. },
  50134. paw: {
  50135. height: math.unit(1.85, "feet"),
  50136. name: "Paw",
  50137. image: {
  50138. source: "./media/characters/lydemox-vir/paw.svg"
  50139. }
  50140. },
  50141. dick: {
  50142. height: math.unit(1.8, "feet"),
  50143. name: "Dick",
  50144. image: {
  50145. source: "./media/characters/lydemox-vir/dick.svg"
  50146. }
  50147. },
  50148. },
  50149. [
  50150. {
  50151. name: "Macro",
  50152. height: math.unit(100, "feet"),
  50153. default: true
  50154. },
  50155. {
  50156. name: "Teramacro",
  50157. height: math.unit(1, "earth")
  50158. },
  50159. {
  50160. name: "Planetary",
  50161. height: math.unit(20, "earths")
  50162. },
  50163. ]
  50164. ))
  50165. characterMakers.push(() => makeCharacter(
  50166. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50167. {
  50168. front: {
  50169. height: math.unit(15 + 8/12, "feet"),
  50170. weight: math.unit(1237, "kg"),
  50171. name: "Front",
  50172. image: {
  50173. source: "./media/characters/mia/front.svg",
  50174. extra: 1573/1446,
  50175. bottom: 58/1631
  50176. }
  50177. },
  50178. },
  50179. [
  50180. {
  50181. name: "Small",
  50182. height: math.unit(9 + 5/12, "feet")
  50183. },
  50184. {
  50185. name: "Normal",
  50186. height: math.unit(15 + 8/12, "feet"),
  50187. default: true
  50188. },
  50189. ]
  50190. ))
  50191. characterMakers.push(() => makeCharacter(
  50192. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  50193. {
  50194. front: {
  50195. height: math.unit(10 + 6/12, "feet"),
  50196. weight: math.unit(1.3, "tons"),
  50197. name: "Front",
  50198. image: {
  50199. source: "./media/characters/mr-graves/front.svg",
  50200. extra: 1779/1695,
  50201. bottom: 198/1977
  50202. }
  50203. },
  50204. },
  50205. [
  50206. {
  50207. name: "Normal",
  50208. height: math.unit(10 + 6 /12, "feet"),
  50209. default: true
  50210. },
  50211. ]
  50212. ))
  50213. characterMakers.push(() => makeCharacter(
  50214. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50215. {
  50216. dressedFront: {
  50217. height: math.unit(5 + 8/12, "feet"),
  50218. weight: math.unit(125, "lb"),
  50219. name: "Dressed (Front)",
  50220. image: {
  50221. source: "./media/characters/jess/dressed-front.svg",
  50222. extra: 1176/1152,
  50223. bottom: 42/1218
  50224. }
  50225. },
  50226. dressedSide: {
  50227. height: math.unit(5 + 8/12, "feet"),
  50228. weight: math.unit(125, "lb"),
  50229. name: "Dressed (Side)",
  50230. image: {
  50231. source: "./media/characters/jess/dressed-side.svg",
  50232. extra: 1204/1190,
  50233. bottom: 6/1210
  50234. }
  50235. },
  50236. nudeFront: {
  50237. height: math.unit(5 + 8/12, "feet"),
  50238. weight: math.unit(125, "lb"),
  50239. name: "Nude (Front)",
  50240. image: {
  50241. source: "./media/characters/jess/nude-front.svg",
  50242. extra: 1176/1152,
  50243. bottom: 42/1218
  50244. }
  50245. },
  50246. nudeSide: {
  50247. height: math.unit(5 + 8/12, "feet"),
  50248. weight: math.unit(125, "lb"),
  50249. name: "Nude (Side)",
  50250. image: {
  50251. source: "./media/characters/jess/nude-side.svg",
  50252. extra: 1204/1190,
  50253. bottom: 6/1210
  50254. }
  50255. },
  50256. organsFront: {
  50257. height: math.unit(2.83799342105, "feet"),
  50258. name: "Organs (Front)",
  50259. image: {
  50260. source: "./media/characters/jess/organs-front.svg"
  50261. }
  50262. },
  50263. organsSide: {
  50264. height: math.unit(2.64225290474, "feet"),
  50265. name: "Organs (Side)",
  50266. image: {
  50267. source: "./media/characters/jess/organs-side.svg"
  50268. }
  50269. },
  50270. digestiveTractFront: {
  50271. height: math.unit(2.8106580871, "feet"),
  50272. name: "Digestive Tract (Front)",
  50273. image: {
  50274. source: "./media/characters/jess/digestive-tract-front.svg"
  50275. }
  50276. },
  50277. digestiveTractSide: {
  50278. height: math.unit(2.54365045014, "feet"),
  50279. name: "Digestive Tract (Side)",
  50280. image: {
  50281. source: "./media/characters/jess/digestive-tract-side.svg"
  50282. }
  50283. },
  50284. respiratorySystemFront: {
  50285. height: math.unit(1.11196233456, "feet"),
  50286. name: "Respiratory System (Front)",
  50287. image: {
  50288. source: "./media/characters/jess/respiratory-system-front.svg"
  50289. }
  50290. },
  50291. respiratorySystemSide: {
  50292. height: math.unit(0.89327966297, "feet"),
  50293. name: "Respiratory System (Side)",
  50294. image: {
  50295. source: "./media/characters/jess/respiratory-system-side.svg"
  50296. }
  50297. },
  50298. urinaryTractFront: {
  50299. height: math.unit(1.16126356186, "feet"),
  50300. name: "Urinary Tract (Front)",
  50301. image: {
  50302. source: "./media/characters/jess/urinary-tract-front.svg"
  50303. }
  50304. },
  50305. urinaryTractSide: {
  50306. height: math.unit(1.20910039627, "feet"),
  50307. name: "Urinary Tract (Side)",
  50308. image: {
  50309. source: "./media/characters/jess/urinary-tract-side.svg"
  50310. }
  50311. },
  50312. reproductiveOrgansFront: {
  50313. height: math.unit(0.48422591566, "feet"),
  50314. name: "Reproductive Organs (Front)",
  50315. image: {
  50316. source: "./media/characters/jess/reproductive-organs-front.svg"
  50317. }
  50318. },
  50319. reproductiveOrgansSide: {
  50320. height: math.unit(0.61553314481, "feet"),
  50321. name: "Reproductive Organs (Side)",
  50322. image: {
  50323. source: "./media/characters/jess/reproductive-organs-side.svg"
  50324. }
  50325. },
  50326. breastsFront: {
  50327. height: math.unit(0.47690395121, "feet"),
  50328. name: "Breasts (Front)",
  50329. image: {
  50330. source: "./media/characters/jess/breasts-front.svg"
  50331. }
  50332. },
  50333. breastsSide: {
  50334. height: math.unit(0.30556998307, "feet"),
  50335. name: "Breasts (Side)",
  50336. image: {
  50337. source: "./media/characters/jess/breasts-side.svg"
  50338. }
  50339. },
  50340. heartFront: {
  50341. height: math.unit(0.53011022622, "feet"),
  50342. name: "Heart (Front)",
  50343. image: {
  50344. source: "./media/characters/jess/heart-front.svg"
  50345. }
  50346. },
  50347. heartSide: {
  50348. height: math.unit(0.51790695213, "feet"),
  50349. name: "Heart (Side)",
  50350. image: {
  50351. source: "./media/characters/jess/heart-side.svg"
  50352. }
  50353. },
  50354. earsAndNoseFront: {
  50355. height: math.unit(0.29385483995, "feet"),
  50356. name: "Ears and Nose (Front)",
  50357. image: {
  50358. source: "./media/characters/jess/ears-and-nose-front.svg"
  50359. }
  50360. },
  50361. earsAndNoseSide: {
  50362. height: math.unit(0.18109658741, "feet"),
  50363. name: "Ears and Nose (Side)",
  50364. image: {
  50365. source: "./media/characters/jess/ears-and-nose-side.svg"
  50366. }
  50367. },
  50368. },
  50369. [
  50370. {
  50371. name: "Normal",
  50372. height: math.unit(5 + 8/12, "feet"),
  50373. default: true
  50374. },
  50375. ]
  50376. ))
  50377. characterMakers.push(() => makeCharacter(
  50378. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50379. {
  50380. front: {
  50381. height: math.unit(6, "feet"),
  50382. weight: math.unit(6.64467e-7, "grams"),
  50383. name: "Front",
  50384. image: {
  50385. source: "./media/characters/wimpering/front.svg",
  50386. extra: 597/587,
  50387. bottom: 34/631
  50388. }
  50389. },
  50390. },
  50391. [
  50392. {
  50393. name: "Micro",
  50394. height: math.unit(0.4, "mm"),
  50395. default: true
  50396. },
  50397. ]
  50398. ))
  50399. characterMakers.push(() => makeCharacter(
  50400. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50401. {
  50402. front: {
  50403. height: math.unit(5 + 2/12, "feet"),
  50404. weight: math.unit(110, "lb"),
  50405. name: "Front",
  50406. image: {
  50407. source: "./media/characters/keltre/front.svg",
  50408. extra: 1099/1057,
  50409. bottom: 22/1121
  50410. }
  50411. },
  50412. back: {
  50413. height: math.unit(5 + 2/12, "feet"),
  50414. weight: math.unit(110, "lb"),
  50415. name: "Back",
  50416. image: {
  50417. source: "./media/characters/keltre/back.svg",
  50418. extra: 1095/1053,
  50419. bottom: 17/1112
  50420. }
  50421. },
  50422. dressed: {
  50423. height: math.unit(5 + 2/12, "feet"),
  50424. weight: math.unit(110, "lb"),
  50425. name: "Dressed",
  50426. image: {
  50427. source: "./media/characters/keltre/dressed.svg",
  50428. extra: 1099/1057,
  50429. bottom: 22/1121
  50430. }
  50431. },
  50432. winter: {
  50433. height: math.unit(5 + 2/12, "feet"),
  50434. weight: math.unit(110, "lb"),
  50435. name: "Winter",
  50436. image: {
  50437. source: "./media/characters/keltre/winter.svg",
  50438. extra: 1099/1057,
  50439. bottom: 22/1121
  50440. }
  50441. },
  50442. head: {
  50443. height: math.unit(1.61 * 0.86, "feet"),
  50444. name: "Head",
  50445. image: {
  50446. source: "./media/characters/keltre/head.svg",
  50447. extra: 534/421,
  50448. bottom: 0/534
  50449. }
  50450. },
  50451. hand: {
  50452. height: math.unit(1.3 * 0.86, "feet"),
  50453. name: "Hand",
  50454. image: {
  50455. source: "./media/characters/keltre/hand.svg"
  50456. }
  50457. },
  50458. foot: {
  50459. height: math.unit(1.8 * 0.86, "feet"),
  50460. name: "Foot",
  50461. image: {
  50462. source: "./media/characters/keltre/foot.svg"
  50463. }
  50464. },
  50465. },
  50466. [
  50467. {
  50468. name: "Fine",
  50469. height: math.unit(1, "inch")
  50470. },
  50471. {
  50472. name: "Dimnutive",
  50473. height: math.unit(4, "inches")
  50474. },
  50475. {
  50476. name: "Tiny",
  50477. height: math.unit(1, "foot")
  50478. },
  50479. {
  50480. name: "Small",
  50481. height: math.unit(3, "feet")
  50482. },
  50483. {
  50484. name: "Normal",
  50485. height: math.unit(5 + 2/12, "feet"),
  50486. default: true
  50487. },
  50488. ]
  50489. ))
  50490. characterMakers.push(() => makeCharacter(
  50491. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50492. {
  50493. front: {
  50494. height: math.unit(6 + 2/12, "feet"),
  50495. name: "Front",
  50496. image: {
  50497. source: "./media/characters/nox/front.svg",
  50498. extra: 1917/1830,
  50499. bottom: 74/1991
  50500. }
  50501. },
  50502. back: {
  50503. height: math.unit(6 + 2/12, "feet"),
  50504. name: "Back",
  50505. image: {
  50506. source: "./media/characters/nox/back.svg",
  50507. extra: 1896/1815,
  50508. bottom: 21/1917
  50509. }
  50510. },
  50511. head: {
  50512. height: math.unit(1.1, "feet"),
  50513. name: "Head",
  50514. image: {
  50515. source: "./media/characters/nox/head.svg",
  50516. extra: 874/704,
  50517. bottom: 0/874
  50518. }
  50519. },
  50520. tattoo: {
  50521. height: math.unit(0.729, "feet"),
  50522. name: "Tattoo",
  50523. image: {
  50524. source: "./media/characters/nox/tattoo.svg"
  50525. }
  50526. },
  50527. },
  50528. [
  50529. {
  50530. name: "Normal",
  50531. height: math.unit(6 + 2/12, "feet")
  50532. },
  50533. {
  50534. name: "Gigamacro",
  50535. height: math.unit(2, "earths"),
  50536. default: true
  50537. },
  50538. {
  50539. name: "Cosmic",
  50540. height: math.unit(867, "yottameters")
  50541. },
  50542. ]
  50543. ))
  50544. characterMakers.push(() => makeCharacter(
  50545. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50546. {
  50547. front: {
  50548. height: math.unit(6, "feet"),
  50549. weight: math.unit(150, "lb"),
  50550. name: "Front",
  50551. image: {
  50552. source: "./media/characters/caspian/front.svg",
  50553. extra: 1443/1359,
  50554. bottom: 0/1443
  50555. }
  50556. },
  50557. back: {
  50558. height: math.unit(6, "feet"),
  50559. weight: math.unit(150, "lb"),
  50560. name: "Back",
  50561. image: {
  50562. source: "./media/characters/caspian/back.svg",
  50563. extra: 1379/1309,
  50564. bottom: 0/1379
  50565. }
  50566. },
  50567. head: {
  50568. height: math.unit(0.9, "feet"),
  50569. name: "Head",
  50570. image: {
  50571. source: "./media/characters/caspian/head.svg",
  50572. extra: 692/492,
  50573. bottom: 0/692
  50574. }
  50575. },
  50576. headAlt: {
  50577. height: math.unit(0.95, "feet"),
  50578. name: "Head (Alt)",
  50579. image: {
  50580. source: "./media/characters/caspian/head-alt.svg",
  50581. extra: 668/508,
  50582. bottom: 0/668
  50583. }
  50584. },
  50585. hand: {
  50586. height: math.unit(0.8, "feet"),
  50587. name: "Hand",
  50588. image: {
  50589. source: "./media/characters/caspian/hand.svg"
  50590. }
  50591. },
  50592. paw: {
  50593. height: math.unit(0.95, "feet"),
  50594. name: "Paw",
  50595. image: {
  50596. source: "./media/characters/caspian/paw.svg"
  50597. }
  50598. },
  50599. },
  50600. [
  50601. {
  50602. name: "Normal",
  50603. height: math.unit(162, "feet"),
  50604. default: true
  50605. },
  50606. ]
  50607. ))
  50608. characterMakers.push(() => makeCharacter(
  50609. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50610. {
  50611. front: {
  50612. height: math.unit(6, "feet"),
  50613. name: "Front",
  50614. image: {
  50615. source: "./media/characters/myra-aisling/front.svg",
  50616. extra: 1268/1166,
  50617. bottom: 73/1341
  50618. }
  50619. },
  50620. back: {
  50621. height: math.unit(6, "feet"),
  50622. name: "Back",
  50623. image: {
  50624. source: "./media/characters/myra-aisling/back.svg",
  50625. extra: 1249/1149,
  50626. bottom: 79/1328
  50627. }
  50628. },
  50629. dressed: {
  50630. height: math.unit(6, "feet"),
  50631. name: "Dressed",
  50632. image: {
  50633. source: "./media/characters/myra-aisling/dressed.svg",
  50634. extra: 1290/1189,
  50635. bottom: 47/1337
  50636. }
  50637. },
  50638. hand: {
  50639. height: math.unit(1.1, "feet"),
  50640. name: "Hand",
  50641. image: {
  50642. source: "./media/characters/myra-aisling/hand.svg"
  50643. }
  50644. },
  50645. paw: {
  50646. height: math.unit(1.23, "feet"),
  50647. name: "Paw",
  50648. image: {
  50649. source: "./media/characters/myra-aisling/paw.svg"
  50650. }
  50651. },
  50652. },
  50653. [
  50654. {
  50655. name: "Normal",
  50656. height: math.unit(160, "feet"),
  50657. default: true
  50658. },
  50659. ]
  50660. ))
  50661. characterMakers.push(() => makeCharacter(
  50662. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50663. {
  50664. front: {
  50665. height: math.unit(6, "feet"),
  50666. name: "Front",
  50667. image: {
  50668. source: "./media/characters/tenley-sidero/front.svg",
  50669. extra: 1365/1276,
  50670. bottom: 47/1412
  50671. }
  50672. },
  50673. back: {
  50674. height: math.unit(6, "feet"),
  50675. name: "Back",
  50676. image: {
  50677. source: "./media/characters/tenley-sidero/back.svg",
  50678. extra: 1383/1283,
  50679. bottom: 35/1418
  50680. }
  50681. },
  50682. dressed: {
  50683. height: math.unit(6, "feet"),
  50684. name: "Dressed",
  50685. image: {
  50686. source: "./media/characters/tenley-sidero/dressed.svg",
  50687. extra: 1364/1275,
  50688. bottom: 42/1406
  50689. }
  50690. },
  50691. head: {
  50692. height: math.unit(1.47, "feet"),
  50693. name: "Head",
  50694. image: {
  50695. source: "./media/characters/tenley-sidero/head.svg",
  50696. extra: 610/490,
  50697. bottom: 0/610
  50698. }
  50699. },
  50700. },
  50701. [
  50702. {
  50703. name: "Normal",
  50704. height: math.unit(154, "feet"),
  50705. default: true
  50706. },
  50707. ]
  50708. ))
  50709. characterMakers.push(() => makeCharacter(
  50710. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50711. {
  50712. front: {
  50713. height: math.unit(5, "inches"),
  50714. name: "Front",
  50715. image: {
  50716. source: "./media/characters/mallory/front.svg",
  50717. extra: 1919/1678,
  50718. bottom: 29/1948
  50719. }
  50720. },
  50721. hand: {
  50722. height: math.unit(0.73, "inches"),
  50723. name: "Hand",
  50724. image: {
  50725. source: "./media/characters/mallory/hand.svg"
  50726. }
  50727. },
  50728. paw: {
  50729. height: math.unit(0.68, "inches"),
  50730. name: "Paw",
  50731. image: {
  50732. source: "./media/characters/mallory/paw.svg"
  50733. }
  50734. },
  50735. },
  50736. [
  50737. {
  50738. name: "Small",
  50739. height: math.unit(5, "inches"),
  50740. default: true
  50741. },
  50742. ]
  50743. ))
  50744. characterMakers.push(() => makeCharacter(
  50745. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50746. {
  50747. naked: {
  50748. height: math.unit(6, "feet"),
  50749. name: "Naked",
  50750. image: {
  50751. source: "./media/characters/mab/naked.svg",
  50752. extra: 1855/1757,
  50753. bottom: 208/2063
  50754. }
  50755. },
  50756. outside: {
  50757. height: math.unit(6, "feet"),
  50758. name: "Outside",
  50759. image: {
  50760. source: "./media/characters/mab/outside.svg",
  50761. extra: 1855/1757,
  50762. bottom: 208/2063
  50763. }
  50764. },
  50765. party: {
  50766. height: math.unit(6, "feet"),
  50767. name: "Party",
  50768. image: {
  50769. source: "./media/characters/mab/party.svg",
  50770. extra: 1855/1757,
  50771. bottom: 208/2063
  50772. }
  50773. },
  50774. },
  50775. [
  50776. {
  50777. name: "Normal",
  50778. height: math.unit(165, "feet"),
  50779. default: true
  50780. },
  50781. ]
  50782. ))
  50783. characterMakers.push(() => makeCharacter(
  50784. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50785. {
  50786. feral: {
  50787. height: math.unit(12, "feet"),
  50788. weight: math.unit(20000, "lb"),
  50789. name: "Side",
  50790. image: {
  50791. source: "./media/characters/winter/feral.svg",
  50792. extra: 1286/943,
  50793. bottom: 112/1398
  50794. },
  50795. form: "feral",
  50796. default: true
  50797. },
  50798. feralNsfw: {
  50799. height: math.unit(12, "feet"),
  50800. weight: math.unit(20000, "lb"),
  50801. name: "Side (NSFW)",
  50802. image: {
  50803. source: "./media/characters/winter/feral-nsfw.svg",
  50804. extra: 1286/943,
  50805. bottom: 112/1398
  50806. },
  50807. form: "feral"
  50808. },
  50809. dick: {
  50810. height: math.unit(3.79, "feet"),
  50811. name: "Dick",
  50812. image: {
  50813. source: "./media/characters/winter/dick.svg"
  50814. },
  50815. form: "feral"
  50816. },
  50817. anthro: {
  50818. height: math.unit(12, "feet"),
  50819. weight: math.unit(10, "tons"),
  50820. name: "Anthro",
  50821. image: {
  50822. source: "./media/characters/winter/anthro.svg",
  50823. extra: 1701/1553,
  50824. bottom: 64/1765
  50825. },
  50826. form: "anthro",
  50827. default: true
  50828. },
  50829. },
  50830. [
  50831. {
  50832. name: "Big",
  50833. height: math.unit(12, "feet"),
  50834. default: true,
  50835. form: "feral"
  50836. },
  50837. {
  50838. name: "Big",
  50839. height: math.unit(12, "feet"),
  50840. default: true,
  50841. form: "anthro"
  50842. },
  50843. ],
  50844. {
  50845. "feral": {
  50846. name: "Feral",
  50847. default: true
  50848. },
  50849. "anthro": {
  50850. name: "Anthro"
  50851. }
  50852. }
  50853. ))
  50854. characterMakers.push(() => makeCharacter(
  50855. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50856. {
  50857. front: {
  50858. height: math.unit(4.1, "inches"),
  50859. name: "Front",
  50860. image: {
  50861. source: "./media/characters/alto/front.svg",
  50862. extra: 736/627,
  50863. bottom: 90/826
  50864. }
  50865. },
  50866. },
  50867. [
  50868. {
  50869. name: "Normal",
  50870. height: math.unit(4.1, "inches"),
  50871. default: true
  50872. },
  50873. ]
  50874. ))
  50875. characterMakers.push(() => makeCharacter(
  50876. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50877. {
  50878. sitting: {
  50879. height: math.unit(3, "feet"),
  50880. name: "Sitting",
  50881. image: {
  50882. source: "./media/characters/ratstrid-v/sitting.svg",
  50883. extra: 355/310,
  50884. bottom: 136/491
  50885. }
  50886. },
  50887. },
  50888. [
  50889. {
  50890. name: "Normal",
  50891. height: math.unit(3, "feet"),
  50892. default: true
  50893. },
  50894. ]
  50895. ))
  50896. characterMakers.push(() => makeCharacter(
  50897. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50898. {
  50899. back: {
  50900. height: math.unit(6, "feet"),
  50901. weight: math.unit(450, "lb"),
  50902. name: "Back",
  50903. image: {
  50904. source: "./media/characters/siz/back.svg",
  50905. extra: 1449/1274,
  50906. bottom: 13/1462
  50907. }
  50908. },
  50909. },
  50910. [
  50911. {
  50912. name: "Smallest",
  50913. height: math.unit(18 + 3/12, "feet")
  50914. },
  50915. {
  50916. name: "Modest",
  50917. height: math.unit(56 + 8/12, "feet"),
  50918. default: true
  50919. },
  50920. {
  50921. name: "Largest",
  50922. height: math.unit(3590, "feet")
  50923. },
  50924. ]
  50925. ))
  50926. characterMakers.push(() => makeCharacter(
  50927. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50928. {
  50929. front: {
  50930. height: math.unit(5 + 9/12, "feet"),
  50931. weight: math.unit(150, "lb"),
  50932. name: "Front",
  50933. image: {
  50934. source: "./media/characters/ven/front.svg",
  50935. extra: 1372/1320,
  50936. bottom: 73/1445
  50937. }
  50938. },
  50939. side: {
  50940. height: math.unit(5 + 9/12, "feet"),
  50941. weight: math.unit(1150, "lb"),
  50942. name: "Side",
  50943. image: {
  50944. source: "./media/characters/ven/side.svg",
  50945. extra: 1119/1070,
  50946. bottom: 42/1161
  50947. },
  50948. default: true
  50949. },
  50950. },
  50951. [
  50952. {
  50953. name: "Normal",
  50954. height: math.unit(5 + 9/12, "feet"),
  50955. default: true
  50956. },
  50957. ]
  50958. ))
  50959. characterMakers.push(() => makeCharacter(
  50960. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50961. {
  50962. front: {
  50963. height: math.unit(12, "feet"),
  50964. weight: math.unit(1000, "kg"),
  50965. name: "Front",
  50966. image: {
  50967. source: "./media/characters/maple/front.svg",
  50968. extra: 1193/1081,
  50969. bottom: 22/1215
  50970. }
  50971. },
  50972. },
  50973. [
  50974. {
  50975. name: "Compressed",
  50976. height: math.unit(7, "feet")
  50977. },
  50978. {
  50979. name: "Normal",
  50980. height: math.unit(12, "feet"),
  50981. default: true
  50982. },
  50983. ]
  50984. ))
  50985. characterMakers.push(() => makeCharacter(
  50986. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50987. {
  50988. front: {
  50989. height: math.unit(9, "feet"),
  50990. weight: math.unit(1500, "lb"),
  50991. name: "Front",
  50992. image: {
  50993. source: "./media/characters/nora/front.svg",
  50994. extra: 1348/1286,
  50995. bottom: 218/1566
  50996. }
  50997. },
  50998. erect: {
  50999. height: math.unit(9, "feet"),
  51000. weight: math.unit(11500, "lb"),
  51001. name: "Erect",
  51002. image: {
  51003. source: "./media/characters/nora/erect.svg",
  51004. extra: 1488/1433,
  51005. bottom: 133/1621
  51006. }
  51007. },
  51008. },
  51009. [
  51010. {
  51011. name: "Normal",
  51012. height: math.unit(9, "feet"),
  51013. default: true
  51014. },
  51015. ]
  51016. ))
  51017. characterMakers.push(() => makeCharacter(
  51018. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  51019. {
  51020. front: {
  51021. height: math.unit(25, "feet"),
  51022. weight: math.unit(27500, "lb"),
  51023. name: "Front",
  51024. image: {
  51025. source: "./media/characters/north-caudin/front.svg",
  51026. extra: 1184/1082,
  51027. bottom: 23/1207
  51028. }
  51029. },
  51030. },
  51031. [
  51032. {
  51033. name: "Compressed",
  51034. height: math.unit(10, "feet")
  51035. },
  51036. {
  51037. name: "Normal",
  51038. height: math.unit(25, "feet"),
  51039. default: true
  51040. },
  51041. ]
  51042. ))
  51043. characterMakers.push(() => makeCharacter(
  51044. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  51045. {
  51046. front: {
  51047. height: math.unit(9, "feet"),
  51048. weight: math.unit(1250, "lb"),
  51049. name: "Front",
  51050. image: {
  51051. source: "./media/characters/merrian/front.svg",
  51052. extra: 2393/2304,
  51053. bottom: 40/2433
  51054. }
  51055. },
  51056. },
  51057. [
  51058. {
  51059. name: "Normal",
  51060. height: math.unit(9, "feet"),
  51061. default: true
  51062. },
  51063. ]
  51064. ))
  51065. characterMakers.push(() => makeCharacter(
  51066. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  51067. {
  51068. front: {
  51069. height: math.unit(9, "feet"),
  51070. weight: math.unit(1000, "lb"),
  51071. name: "Front",
  51072. image: {
  51073. source: "./media/characters/hazel/front.svg",
  51074. extra: 2351/2298,
  51075. bottom: 38/2389
  51076. }
  51077. },
  51078. },
  51079. [
  51080. {
  51081. name: "Normal",
  51082. height: math.unit(9, "feet"),
  51083. default: true
  51084. },
  51085. ]
  51086. ))
  51087. characterMakers.push(() => makeCharacter(
  51088. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  51089. {
  51090. front: {
  51091. height: math.unit(13, "feet"),
  51092. weight: math.unit(3200, "lb"),
  51093. name: "Front",
  51094. image: {
  51095. source: "./media/characters/emma/front.svg",
  51096. extra: 2263/2029,
  51097. bottom: 68/2331
  51098. }
  51099. },
  51100. },
  51101. [
  51102. {
  51103. name: "Normal",
  51104. height: math.unit(13, "feet"),
  51105. default: true
  51106. },
  51107. ]
  51108. ))
  51109. characterMakers.push(() => makeCharacter(
  51110. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51111. {
  51112. front: {
  51113. height: math.unit(11 + 9/12, "feet"),
  51114. weight: math.unit(2500, "lb"),
  51115. name: "Front",
  51116. image: {
  51117. source: "./media/characters/ilumina/front.svg",
  51118. extra: 2248/2209,
  51119. bottom: 164/2412
  51120. }
  51121. },
  51122. },
  51123. [
  51124. {
  51125. name: "Normal",
  51126. height: math.unit(11 + 9/12, "feet"),
  51127. default: true
  51128. },
  51129. ]
  51130. ))
  51131. characterMakers.push(() => makeCharacter(
  51132. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51133. {
  51134. front: {
  51135. height: math.unit(8 + 10/12, "feet"),
  51136. weight: math.unit(1350, "lb"),
  51137. name: "Front",
  51138. image: {
  51139. source: "./media/characters/moonshine/front.svg",
  51140. extra: 2395/2288,
  51141. bottom: 40/2435
  51142. }
  51143. },
  51144. },
  51145. [
  51146. {
  51147. name: "Normal",
  51148. height: math.unit(8 + 10/12, "feet"),
  51149. default: true
  51150. },
  51151. ]
  51152. ))
  51153. characterMakers.push(() => makeCharacter(
  51154. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51155. {
  51156. front: {
  51157. height: math.unit(14, "feet"),
  51158. weight: math.unit(3400, "lb"),
  51159. name: "Front",
  51160. image: {
  51161. source: "./media/characters/aletia/front.svg",
  51162. extra: 1185/1052,
  51163. bottom: 21/1206
  51164. }
  51165. },
  51166. },
  51167. [
  51168. {
  51169. name: "Compressed",
  51170. height: math.unit(8, "feet")
  51171. },
  51172. {
  51173. name: "Normal",
  51174. height: math.unit(14, "feet"),
  51175. default: true
  51176. },
  51177. ]
  51178. ))
  51179. characterMakers.push(() => makeCharacter(
  51180. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51181. {
  51182. front: {
  51183. height: math.unit(17, "feet"),
  51184. weight: math.unit(6500, "lb"),
  51185. name: "Front",
  51186. image: {
  51187. source: "./media/characters/deidra/front.svg",
  51188. extra: 1201/1081,
  51189. bottom: 16/1217
  51190. }
  51191. },
  51192. },
  51193. [
  51194. {
  51195. name: "Compressed",
  51196. height: math.unit(9 + 6/12, "feet")
  51197. },
  51198. {
  51199. name: "Normal",
  51200. height: math.unit(17, "feet"),
  51201. default: true
  51202. },
  51203. ]
  51204. ))
  51205. characterMakers.push(() => makeCharacter(
  51206. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  51207. {
  51208. front: {
  51209. height: math.unit(7 + 4/12, "feet"),
  51210. weight: math.unit(280, "lb"),
  51211. name: "Front",
  51212. image: {
  51213. source: "./media/characters/freki-yrmori/front.svg",
  51214. extra: 1286/1182,
  51215. bottom: 29/1315
  51216. }
  51217. },
  51218. maw: {
  51219. height: math.unit(0.9, "feet"),
  51220. name: "Maw",
  51221. image: {
  51222. source: "./media/characters/freki-yrmori/maw.svg"
  51223. }
  51224. },
  51225. },
  51226. [
  51227. {
  51228. name: "Normal",
  51229. height: math.unit(7 + 4/12, "feet"),
  51230. default: true
  51231. },
  51232. {
  51233. name: "Macro",
  51234. height: math.unit(38.5, "meters")
  51235. },
  51236. ]
  51237. ))
  51238. characterMakers.push(() => makeCharacter(
  51239. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51240. {
  51241. side: {
  51242. height: math.unit(47.2, "meters"),
  51243. weight: math.unit(10000, "tons"),
  51244. name: "Side",
  51245. image: {
  51246. source: "./media/characters/aetherios/side.svg",
  51247. extra: 2363/642,
  51248. bottom: 221/2584
  51249. }
  51250. },
  51251. top: {
  51252. height: math.unit(240, "meters"),
  51253. weight: math.unit(10000, "tons"),
  51254. name: "Top",
  51255. image: {
  51256. source: "./media/characters/aetherios/top.svg"
  51257. }
  51258. },
  51259. bottom: {
  51260. height: math.unit(240, "meters"),
  51261. weight: math.unit(10000, "tons"),
  51262. name: "Bottom",
  51263. image: {
  51264. source: "./media/characters/aetherios/bottom.svg"
  51265. }
  51266. },
  51267. head: {
  51268. height: math.unit(38.6, "meters"),
  51269. name: "Head",
  51270. image: {
  51271. source: "./media/characters/aetherios/head.svg",
  51272. extra: 1335/1112,
  51273. bottom: 0/1335
  51274. }
  51275. },
  51276. front: {
  51277. height: math.unit(29, "meters"),
  51278. name: "Front",
  51279. image: {
  51280. source: "./media/characters/aetherios/front.svg",
  51281. extra: 1266/953,
  51282. bottom: 158/1424
  51283. }
  51284. },
  51285. maw: {
  51286. height: math.unit(16.37, "meters"),
  51287. name: "Maw",
  51288. image: {
  51289. source: "./media/characters/aetherios/maw.svg",
  51290. extra: 748/637,
  51291. bottom: 0/748
  51292. },
  51293. extraAttributes: {
  51294. preyCapacity: {
  51295. name: "Capacity",
  51296. power: 3,
  51297. type: "volume",
  51298. base: math.unit(1000, "people")
  51299. },
  51300. tongueSize: {
  51301. name: "Tongue Size",
  51302. power: 2,
  51303. type: "area",
  51304. base: math.unit(21, "m^2")
  51305. }
  51306. }
  51307. },
  51308. forepaw: {
  51309. height: math.unit(18, "meters"),
  51310. name: "Forepaw",
  51311. image: {
  51312. source: "./media/characters/aetherios/forepaw.svg"
  51313. }
  51314. },
  51315. hindpaw: {
  51316. height: math.unit(23, "meters"),
  51317. name: "Hindpaw",
  51318. image: {
  51319. source: "./media/characters/aetherios/hindpaw.svg"
  51320. }
  51321. },
  51322. genitals: {
  51323. height: math.unit(42, "meters"),
  51324. name: "Genitals",
  51325. image: {
  51326. source: "./media/characters/aetherios/genitals.svg"
  51327. }
  51328. },
  51329. },
  51330. [
  51331. {
  51332. name: "Normal",
  51333. height: math.unit(47.2, "meters"),
  51334. default: true
  51335. },
  51336. {
  51337. name: "Macro",
  51338. height: math.unit(160, "meters")
  51339. },
  51340. {
  51341. name: "Mega",
  51342. height: math.unit(1.87, "km")
  51343. },
  51344. {
  51345. name: "Giga",
  51346. height: math.unit(40000, "km")
  51347. },
  51348. {
  51349. name: "Stellar",
  51350. height: math.unit(158000000, "km")
  51351. },
  51352. {
  51353. name: "Cosmic",
  51354. height: math.unit(9.46e12, "km")
  51355. },
  51356. ]
  51357. ))
  51358. characterMakers.push(() => makeCharacter(
  51359. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51360. {
  51361. front: {
  51362. height: math.unit(5 + 4/12, "feet"),
  51363. weight: math.unit(80, "lb"),
  51364. name: "Front",
  51365. image: {
  51366. source: "./media/characters/mizu-gieeg/front.svg",
  51367. extra: 850/709,
  51368. bottom: 52/902
  51369. }
  51370. },
  51371. back: {
  51372. height: math.unit(5 + 4/12, "feet"),
  51373. weight: math.unit(80, "lb"),
  51374. name: "Back",
  51375. image: {
  51376. source: "./media/characters/mizu-gieeg/back.svg",
  51377. extra: 882/745,
  51378. bottom: 25/907
  51379. }
  51380. },
  51381. },
  51382. [
  51383. {
  51384. name: "Normal",
  51385. height: math.unit(5 + 4/12, "feet"),
  51386. default: true
  51387. },
  51388. ]
  51389. ))
  51390. characterMakers.push(() => makeCharacter(
  51391. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51392. {
  51393. front: {
  51394. height: math.unit(6, "feet"),
  51395. name: "Front",
  51396. image: {
  51397. source: "./media/characters/roselle-st-papier/front.svg",
  51398. extra: 1430/1280,
  51399. bottom: 37/1467
  51400. }
  51401. },
  51402. back: {
  51403. height: math.unit(6, "feet"),
  51404. name: "Back",
  51405. image: {
  51406. source: "./media/characters/roselle-st-papier/back.svg",
  51407. extra: 1491/1296,
  51408. bottom: 23/1514
  51409. }
  51410. },
  51411. ear: {
  51412. height: math.unit(1.26, "feet"),
  51413. name: "Ear",
  51414. image: {
  51415. source: "./media/characters/roselle-st-papier/ear.svg"
  51416. }
  51417. },
  51418. },
  51419. [
  51420. {
  51421. name: "Normal",
  51422. height: math.unit(150, "feet"),
  51423. default: true
  51424. },
  51425. ]
  51426. ))
  51427. characterMakers.push(() => makeCharacter(
  51428. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51429. {
  51430. front: {
  51431. height: math.unit(1, "inches"),
  51432. name: "Front",
  51433. image: {
  51434. source: "./media/characters/valargent/front.svg",
  51435. extra: 1825/1694,
  51436. bottom: 62/1887
  51437. }
  51438. },
  51439. back: {
  51440. height: math.unit(1, "inches"),
  51441. name: "Back",
  51442. image: {
  51443. source: "./media/characters/valargent/back.svg",
  51444. extra: 1775/1682,
  51445. bottom: 88/1863
  51446. }
  51447. },
  51448. },
  51449. [
  51450. {
  51451. name: "Micro",
  51452. height: math.unit(1, "inch"),
  51453. default: true
  51454. },
  51455. ]
  51456. ))
  51457. characterMakers.push(() => makeCharacter(
  51458. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51459. {
  51460. front: {
  51461. height: math.unit(3.4, "meters"),
  51462. name: "Front",
  51463. image: {
  51464. source: "./media/characters/zarina/front.svg",
  51465. extra: 1733/1425,
  51466. bottom: 93/1826
  51467. }
  51468. },
  51469. squatting: {
  51470. height: math.unit(2.14, "meters"),
  51471. name: "Squatting",
  51472. image: {
  51473. source: "./media/characters/zarina/squatting.svg",
  51474. extra: 1073/788,
  51475. bottom: 63/1136
  51476. }
  51477. },
  51478. back: {
  51479. height: math.unit(2.14, "meters"),
  51480. name: "Back",
  51481. image: {
  51482. source: "./media/characters/zarina/back.svg",
  51483. extra: 1128/885,
  51484. bottom: 0/1128
  51485. }
  51486. },
  51487. },
  51488. [
  51489. {
  51490. name: "Normal",
  51491. height: math.unit(3.4, "meters"),
  51492. default: true
  51493. },
  51494. {
  51495. name: "Big",
  51496. height: math.unit(5, "meters")
  51497. },
  51498. {
  51499. name: "Macro",
  51500. height: math.unit(110, "meters")
  51501. },
  51502. ]
  51503. ))
  51504. characterMakers.push(() => makeCharacter(
  51505. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51506. {
  51507. front: {
  51508. height: math.unit(7, "feet"),
  51509. name: "Front",
  51510. image: {
  51511. source: "./media/characters/ventus-astro-fox/front.svg",
  51512. extra: 1792/1623,
  51513. bottom: 28/1820
  51514. }
  51515. },
  51516. back: {
  51517. height: math.unit(7, "feet"),
  51518. name: "Back",
  51519. image: {
  51520. source: "./media/characters/ventus-astro-fox/back.svg",
  51521. extra: 1789/1620,
  51522. bottom: 31/1820
  51523. }
  51524. },
  51525. outfit: {
  51526. height: math.unit(7, "feet"),
  51527. name: "Outfit",
  51528. image: {
  51529. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51530. extra: 1054/925,
  51531. bottom: 15/1069
  51532. }
  51533. },
  51534. head: {
  51535. height: math.unit(1.12, "feet"),
  51536. name: "Head",
  51537. image: {
  51538. source: "./media/characters/ventus-astro-fox/head.svg",
  51539. extra: 866/504,
  51540. bottom: 0/866
  51541. }
  51542. },
  51543. hand: {
  51544. height: math.unit(1, "feet"),
  51545. name: "Hand",
  51546. image: {
  51547. source: "./media/characters/ventus-astro-fox/hand.svg"
  51548. }
  51549. },
  51550. paw: {
  51551. height: math.unit(1.5, "feet"),
  51552. name: "Paw",
  51553. image: {
  51554. source: "./media/characters/ventus-astro-fox/paw.svg"
  51555. }
  51556. },
  51557. },
  51558. [
  51559. {
  51560. name: "Normal",
  51561. height: math.unit(7, "feet"),
  51562. default: true
  51563. },
  51564. {
  51565. name: "Macro",
  51566. height: math.unit(200, "feet")
  51567. },
  51568. {
  51569. name: "Cosmic",
  51570. height: math.unit(3, "universes")
  51571. },
  51572. ]
  51573. ))
  51574. characterMakers.push(() => makeCharacter(
  51575. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51576. {
  51577. front: {
  51578. height: math.unit(3, "meters"),
  51579. weight: math.unit(7000, "lb"),
  51580. name: "Front",
  51581. image: {
  51582. source: "./media/characters/core-t/front.svg",
  51583. extra: 5729/4941,
  51584. bottom: 1129/6858
  51585. }
  51586. },
  51587. },
  51588. [
  51589. {
  51590. name: "Big",
  51591. height: math.unit(3, "meters"),
  51592. default: true
  51593. },
  51594. ]
  51595. ))
  51596. characterMakers.push(() => makeCharacter(
  51597. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51598. {
  51599. normal: {
  51600. height: math.unit(6 + 6/12, "feet"),
  51601. weight: math.unit(275, "lb"),
  51602. name: "Front",
  51603. image: {
  51604. source: "./media/characters/cadbunny/normal.svg",
  51605. extra: 1129/947,
  51606. bottom: 93/1222
  51607. },
  51608. default: true,
  51609. form: "normal"
  51610. },
  51611. gigantamax: {
  51612. height: math.unit(26, "feet"),
  51613. weight: math.unit(16000, "lb"),
  51614. name: "Front",
  51615. image: {
  51616. source: "./media/characters/cadbunny/gigantamax.svg",
  51617. extra: 1133/944,
  51618. bottom: 90/1223
  51619. },
  51620. default: true,
  51621. form: "gigantamax"
  51622. },
  51623. },
  51624. [
  51625. {
  51626. name: "Normal",
  51627. height: math.unit(6 + 6/12, "feet"),
  51628. default: true,
  51629. form: "normal"
  51630. },
  51631. {
  51632. name: "Small",
  51633. height: math.unit(26, "feet"),
  51634. default: true,
  51635. form: "gigantamax"
  51636. },
  51637. {
  51638. name: "Large",
  51639. height: math.unit(78, "feet"),
  51640. form: "gigantamax"
  51641. },
  51642. ],
  51643. {
  51644. "normal": {
  51645. name: "Normal",
  51646. default: true
  51647. },
  51648. "gigantamax": {
  51649. name: "Gigantamax"
  51650. }
  51651. }
  51652. ))
  51653. characterMakers.push(() => makeCharacter(
  51654. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51655. {
  51656. anthroFront: {
  51657. height: math.unit(8, "feet"),
  51658. weight: math.unit(300, "lb"),
  51659. name: "Front",
  51660. image: {
  51661. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51662. extra: 1272/1176,
  51663. bottom: 53/1325
  51664. },
  51665. form: "anthro",
  51666. default: true
  51667. },
  51668. feralSide: {
  51669. height: math.unit(4, "feet"),
  51670. weight: math.unit(250, "lb"),
  51671. name: "Side",
  51672. image: {
  51673. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51674. extra: 731/621,
  51675. bottom: 0/731
  51676. },
  51677. form: "feral",
  51678. default: true
  51679. },
  51680. },
  51681. [
  51682. {
  51683. name: "Regular",
  51684. height: math.unit(8, "feet"),
  51685. form: "anthro"
  51686. },
  51687. {
  51688. name: "Macro",
  51689. height: math.unit(250, "feet"),
  51690. form: "anthro",
  51691. default: true
  51692. },
  51693. {
  51694. name: "Regular",
  51695. height: math.unit(4, "feet"),
  51696. form: "feral"
  51697. },
  51698. {
  51699. name: "Macro",
  51700. height: math.unit(125, "feet"),
  51701. form: "feral",
  51702. default: true
  51703. },
  51704. ],
  51705. {
  51706. "anthro": {
  51707. name: "Anthro",
  51708. default: true
  51709. },
  51710. "feral": {
  51711. name: "Feral",
  51712. },
  51713. }
  51714. ))
  51715. characterMakers.push(() => makeCharacter(
  51716. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51717. {
  51718. front: {
  51719. height: math.unit(11 + 10/12, "feet"),
  51720. weight: math.unit(1587, "kg"),
  51721. name: "Front",
  51722. image: {
  51723. source: "./media/characters/maple-javira-dragon/front.svg",
  51724. extra: 1136/744,
  51725. bottom: 73/1209
  51726. }
  51727. },
  51728. side: {
  51729. height: math.unit(11 + 10/12, "feet"),
  51730. weight: math.unit(1587, "kg"),
  51731. name: "Side",
  51732. image: {
  51733. source: "./media/characters/maple-javira-dragon/side.svg",
  51734. extra: 712/505,
  51735. bottom: 17/729
  51736. }
  51737. },
  51738. head: {
  51739. height: math.unit(8.05, "feet"),
  51740. name: "Head",
  51741. image: {
  51742. source: "./media/characters/maple-javira-dragon/head.svg",
  51743. extra: 1420/1344,
  51744. bottom: 0/1420
  51745. }
  51746. },
  51747. },
  51748. [
  51749. {
  51750. name: "Normal",
  51751. height: math.unit(11 + 10/12, "feet"),
  51752. default: true
  51753. },
  51754. ]
  51755. ))
  51756. characterMakers.push(() => makeCharacter(
  51757. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51758. {
  51759. front: {
  51760. height: math.unit(117, "cm"),
  51761. weight: math.unit(50, "kg"),
  51762. name: "Front",
  51763. image: {
  51764. source: "./media/characters/sonia-wyverntail/front.svg",
  51765. extra: 708/592,
  51766. bottom: 25/733
  51767. }
  51768. },
  51769. },
  51770. [
  51771. {
  51772. name: "Normal",
  51773. height: math.unit(117, "cm"),
  51774. default: true
  51775. },
  51776. ]
  51777. ))
  51778. characterMakers.push(() => makeCharacter(
  51779. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51780. {
  51781. front: {
  51782. height: math.unit(6 + 5/12, "feet"),
  51783. name: "Front",
  51784. image: {
  51785. source: "./media/characters/micah/front.svg",
  51786. extra: 1758/1546,
  51787. bottom: 214/1972
  51788. }
  51789. },
  51790. },
  51791. [
  51792. {
  51793. name: "Normal",
  51794. height: math.unit(6 + 5/12, "feet"),
  51795. default: true
  51796. },
  51797. ]
  51798. ))
  51799. characterMakers.push(() => makeCharacter(
  51800. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51801. {
  51802. front: {
  51803. height: math.unit(1.75, "meters"),
  51804. weight: math.unit(100, "kg"),
  51805. name: "Front",
  51806. image: {
  51807. source: "./media/characters/zarya/front.svg",
  51808. extra: 741/735,
  51809. bottom: 44/785
  51810. },
  51811. extraAttributes: {
  51812. "tailLength": {
  51813. name: "Tail Length",
  51814. power: 1,
  51815. type: "length",
  51816. base: math.unit(180, "cm")
  51817. },
  51818. "pawLength": {
  51819. name: "Paw Length",
  51820. power: 1,
  51821. type: "length",
  51822. base: math.unit(31, "cm")
  51823. },
  51824. }
  51825. },
  51826. side: {
  51827. height: math.unit(1.75, "meters"),
  51828. weight: math.unit(100, "kg"),
  51829. name: "Side",
  51830. image: {
  51831. source: "./media/characters/zarya/side.svg",
  51832. extra: 776/770,
  51833. bottom: 17/793
  51834. },
  51835. extraAttributes: {
  51836. "tailLength": {
  51837. name: "Tail Length",
  51838. power: 1,
  51839. type: "length",
  51840. base: math.unit(180, "cm")
  51841. },
  51842. "pawLength": {
  51843. name: "Paw Length",
  51844. power: 1,
  51845. type: "length",
  51846. base: math.unit(31, "cm")
  51847. },
  51848. }
  51849. },
  51850. back: {
  51851. height: math.unit(1.75, "meters"),
  51852. weight: math.unit(100, "kg"),
  51853. name: "Back",
  51854. image: {
  51855. source: "./media/characters/zarya/back.svg",
  51856. extra: 741/735,
  51857. bottom: 44/785
  51858. },
  51859. extraAttributes: {
  51860. "tailLength": {
  51861. name: "Tail Length",
  51862. power: 1,
  51863. type: "length",
  51864. base: math.unit(180, "cm")
  51865. },
  51866. "pawLength": {
  51867. name: "Paw Length",
  51868. power: 1,
  51869. type: "length",
  51870. base: math.unit(31, "cm")
  51871. },
  51872. }
  51873. },
  51874. frontNoTail: {
  51875. height: math.unit(1.75, "meters"),
  51876. weight: math.unit(100, "kg"),
  51877. name: "Front (No Tail)",
  51878. image: {
  51879. source: "./media/characters/zarya/front-no-tail.svg",
  51880. extra: 741/735,
  51881. bottom: 44/785
  51882. },
  51883. extraAttributes: {
  51884. "tailLength": {
  51885. name: "Tail Length",
  51886. power: 1,
  51887. type: "length",
  51888. base: math.unit(180, "cm")
  51889. },
  51890. "pawLength": {
  51891. name: "Paw Length",
  51892. power: 1,
  51893. type: "length",
  51894. base: math.unit(31, "cm")
  51895. },
  51896. }
  51897. },
  51898. dressed: {
  51899. height: math.unit(1.75, "meters"),
  51900. weight: math.unit(100, "kg"),
  51901. name: "Dressed",
  51902. image: {
  51903. source: "./media/characters/zarya/dressed.svg",
  51904. extra: 683/672,
  51905. bottom: 79/762
  51906. },
  51907. extraAttributes: {
  51908. "tailLength": {
  51909. name: "Tail Length",
  51910. power: 1,
  51911. type: "length",
  51912. base: math.unit(180, "cm")
  51913. },
  51914. "pawLength": {
  51915. name: "Paw Length",
  51916. power: 1,
  51917. type: "length",
  51918. base: math.unit(31, "cm")
  51919. },
  51920. }
  51921. },
  51922. },
  51923. [
  51924. {
  51925. name: "Micro",
  51926. height: math.unit(5, "cm")
  51927. },
  51928. {
  51929. name: "Normal",
  51930. height: math.unit(1.75, "meters"),
  51931. default: true
  51932. },
  51933. {
  51934. name: "Macro",
  51935. height: math.unit(122, "meters")
  51936. },
  51937. ]
  51938. ))
  51939. characterMakers.push(() => makeCharacter(
  51940. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51941. {
  51942. front: {
  51943. height: math.unit(7.5, "feet"),
  51944. name: "Front",
  51945. image: {
  51946. source: "./media/characters/sven-hatisson/front.svg",
  51947. extra: 917/857,
  51948. bottom: 42/959
  51949. }
  51950. },
  51951. back: {
  51952. height: math.unit(7.5, "feet"),
  51953. name: "Back",
  51954. image: {
  51955. source: "./media/characters/sven-hatisson/back.svg",
  51956. extra: 903/856,
  51957. bottom: 15/918
  51958. }
  51959. },
  51960. },
  51961. [
  51962. {
  51963. name: "Base Height",
  51964. height: math.unit(7.5, "feet")
  51965. },
  51966. {
  51967. name: "Usual Height",
  51968. height: math.unit(13.5, "feet"),
  51969. default: true
  51970. },
  51971. {
  51972. name: "Smaller Macro",
  51973. height: math.unit(85, "feet")
  51974. },
  51975. {
  51976. name: "Moderate Macro",
  51977. height: math.unit(320, "feet")
  51978. },
  51979. {
  51980. name: "Large Macro",
  51981. height: math.unit(1000, "feet")
  51982. },
  51983. {
  51984. name: "Largest Size",
  51985. height: math.unit(2, "miles")
  51986. },
  51987. ]
  51988. ))
  51989. characterMakers.push(() => makeCharacter(
  51990. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51991. {
  51992. side: {
  51993. height: math.unit(1.8, "meters"),
  51994. weight: math.unit(275, "kg"),
  51995. name: "Side",
  51996. image: {
  51997. source: "./media/characters/terra/side.svg",
  51998. extra: 1273/1147,
  51999. bottom: 0/1273
  52000. }
  52001. },
  52002. },
  52003. [
  52004. {
  52005. name: "Normal",
  52006. height: math.unit(16.2, "meters"),
  52007. default: true
  52008. },
  52009. ]
  52010. ))
  52011. characterMakers.push(() => makeCharacter(
  52012. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  52013. {
  52014. borzoiFront: {
  52015. height: math.unit(6 + 9/12, "feet"),
  52016. name: "Front",
  52017. image: {
  52018. source: "./media/characters/rae/borzoi-front.svg",
  52019. extra: 1161/1098,
  52020. bottom: 31/1192
  52021. },
  52022. form: "borzoi",
  52023. default: true
  52024. },
  52025. werewolfFront: {
  52026. height: math.unit(8 + 7/12, "feet"),
  52027. name: "Front",
  52028. image: {
  52029. source: "./media/characters/rae/werewolf-front.svg",
  52030. extra: 1411/1334,
  52031. bottom: 127/1538
  52032. },
  52033. form: "werewolf",
  52034. default: true
  52035. },
  52036. },
  52037. [
  52038. {
  52039. name: "Normal",
  52040. height: math.unit(6 + 9/12, "feet"),
  52041. default: true,
  52042. form: "borzoi"
  52043. },
  52044. {
  52045. name: "Normal",
  52046. height: math.unit(8 + 7/12, "feet"),
  52047. default: true,
  52048. form: "werewolf"
  52049. },
  52050. ],
  52051. {
  52052. "borzoi": {
  52053. name: "Borzoi",
  52054. default: true
  52055. },
  52056. "werewolf": {
  52057. name: "Werewolf",
  52058. },
  52059. }
  52060. ))
  52061. characterMakers.push(() => makeCharacter(
  52062. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  52063. {
  52064. front: {
  52065. height: math.unit(8 + 7/12, "feet"),
  52066. weight: math.unit(482, "lb"),
  52067. name: "Front",
  52068. image: {
  52069. source: "./media/characters/kit/front.svg",
  52070. extra: 1247/1103,
  52071. bottom: 41/1288
  52072. }
  52073. },
  52074. back: {
  52075. height: math.unit(8 + 7/12, "feet"),
  52076. weight: math.unit(482, "lb"),
  52077. name: "Back",
  52078. image: {
  52079. source: "./media/characters/kit/back.svg",
  52080. extra: 1252/1123,
  52081. bottom: 21/1273
  52082. }
  52083. },
  52084. paw: {
  52085. height: math.unit(1.46, "feet"),
  52086. name: "Paw",
  52087. image: {
  52088. source: "./media/characters/kit/paw.svg"
  52089. }
  52090. },
  52091. },
  52092. [
  52093. {
  52094. name: "Normal",
  52095. height: math.unit(2.61, "meters"),
  52096. default: true
  52097. },
  52098. {
  52099. name: "\"Tall\"",
  52100. height: math.unit(8.21, "meters")
  52101. },
  52102. {
  52103. name: "Tall",
  52104. height: math.unit(19.6, "meters")
  52105. },
  52106. {
  52107. name: "Very Tall",
  52108. height: math.unit(57.91, "meters")
  52109. },
  52110. {
  52111. name: "Semi-Macro",
  52112. height: math.unit(138.64, "meters")
  52113. },
  52114. {
  52115. name: "Macro",
  52116. height: math.unit(831.99, "meters")
  52117. },
  52118. {
  52119. name: "EX-Macro",
  52120. height: math.unit(96451121, "meters")
  52121. },
  52122. {
  52123. name: "S1-Omnipotent",
  52124. height: math.unit(4.42074e+9, "meters")
  52125. },
  52126. {
  52127. name: "S2-Omnipotent",
  52128. height: math.unit(9.42074e+17, "meters")
  52129. },
  52130. {
  52131. name: "Omnipotent",
  52132. height: math.unit(4.23112e+24, "meters")
  52133. },
  52134. {
  52135. name: "Hypergod",
  52136. height: math.unit(5.05176e+27, "meters")
  52137. },
  52138. {
  52139. name: "Hypergod-EX",
  52140. height: math.unit(9.45532e+49, "meters")
  52141. },
  52142. {
  52143. name: "Hypergod-SP",
  52144. height: math.unit(9.45532e+195, "meters")
  52145. },
  52146. ]
  52147. ))
  52148. characterMakers.push(() => makeCharacter(
  52149. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52150. {
  52151. side: {
  52152. height: math.unit(0.6, "meters"),
  52153. weight: math.unit(24, "kg"),
  52154. name: "Side",
  52155. image: {
  52156. source: "./media/characters/celeste/side.svg",
  52157. extra: 810/517,
  52158. bottom: 53/863
  52159. }
  52160. },
  52161. },
  52162. [
  52163. {
  52164. name: "Velociraptor",
  52165. height: math.unit(0.6, "meters"),
  52166. default: true
  52167. },
  52168. {
  52169. name: "Utahraptor",
  52170. height: math.unit(1.8, "meters")
  52171. },
  52172. {
  52173. name: "Gallimimus",
  52174. height: math.unit(4.0, "meters")
  52175. },
  52176. {
  52177. name: "Large",
  52178. height: math.unit(20, "meters")
  52179. },
  52180. {
  52181. name: "Planetary",
  52182. height: math.unit(50, "megameters")
  52183. },
  52184. {
  52185. name: "Stellar",
  52186. height: math.unit(1.5, "gigameters")
  52187. },
  52188. {
  52189. name: "Galactic",
  52190. height: math.unit(100, "exameters")
  52191. },
  52192. ]
  52193. ))
  52194. characterMakers.push(() => makeCharacter(
  52195. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  52196. {
  52197. front: {
  52198. height: math.unit(6, "feet"),
  52199. weight: math.unit(210, "lb"),
  52200. name: "Front",
  52201. image: {
  52202. source: "./media/characters/glacia/front.svg",
  52203. extra: 958/901,
  52204. bottom: 45/1003
  52205. }
  52206. },
  52207. },
  52208. [
  52209. {
  52210. name: "Macro",
  52211. height: math.unit(1000, "meters"),
  52212. default: true
  52213. },
  52214. ]
  52215. ))
  52216. characterMakers.push(() => makeCharacter(
  52217. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52218. {
  52219. front: {
  52220. height: math.unit(4, "meters"),
  52221. name: "Front",
  52222. image: {
  52223. source: "./media/characters/giri/front.svg",
  52224. extra: 966/894,
  52225. bottom: 21/987
  52226. }
  52227. },
  52228. },
  52229. [
  52230. {
  52231. name: "Normal",
  52232. height: math.unit(4, "meters"),
  52233. default: true
  52234. },
  52235. ]
  52236. ))
  52237. characterMakers.push(() => makeCharacter(
  52238. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52239. {
  52240. back: {
  52241. height: math.unit(4, "feet"),
  52242. weight: math.unit(37, "lb"),
  52243. name: "Back",
  52244. image: {
  52245. source: "./media/characters/tin/back.svg",
  52246. extra: 845/780,
  52247. bottom: 28/873
  52248. }
  52249. },
  52250. },
  52251. [
  52252. {
  52253. name: "Normal",
  52254. height: math.unit(4, "feet"),
  52255. default: true
  52256. },
  52257. ]
  52258. ))
  52259. characterMakers.push(() => makeCharacter(
  52260. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52261. {
  52262. front: {
  52263. height: math.unit(25, "feet"),
  52264. name: "Front",
  52265. image: {
  52266. source: "./media/characters/cadenza-vivace/front.svg",
  52267. extra: 1842/1578,
  52268. bottom: 30/1872
  52269. }
  52270. },
  52271. },
  52272. [
  52273. {
  52274. name: "Macro",
  52275. height: math.unit(25, "feet"),
  52276. default: true
  52277. },
  52278. ]
  52279. ))
  52280. characterMakers.push(() => makeCharacter(
  52281. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52282. {
  52283. front: {
  52284. height: math.unit(10, "feet"),
  52285. weight: math.unit(625, "kg"),
  52286. name: "Front",
  52287. image: {
  52288. source: "./media/characters/zain/front.svg",
  52289. extra: 1682/1498,
  52290. bottom: 223/1905
  52291. }
  52292. },
  52293. back: {
  52294. height: math.unit(10, "feet"),
  52295. weight: math.unit(625, "kg"),
  52296. name: "Back",
  52297. image: {
  52298. source: "./media/characters/zain/back.svg",
  52299. extra: 1814/1657,
  52300. bottom: 152/1966
  52301. }
  52302. },
  52303. head: {
  52304. height: math.unit(10, "feet"),
  52305. weight: math.unit(625, "kg"),
  52306. name: "Head",
  52307. image: {
  52308. source: "./media/characters/zain/head.svg",
  52309. extra: 1059/762,
  52310. bottom: 0/1059
  52311. }
  52312. },
  52313. },
  52314. [
  52315. {
  52316. name: "Normal",
  52317. height: math.unit(10, "feet"),
  52318. default: true
  52319. },
  52320. ]
  52321. ))
  52322. characterMakers.push(() => makeCharacter(
  52323. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52324. {
  52325. front: {
  52326. height: math.unit(6 + 5/12, "feet"),
  52327. weight: math.unit(750, "lb"),
  52328. name: "Front",
  52329. image: {
  52330. source: "./media/characters/ruchex/front.svg",
  52331. extra: 877/820,
  52332. bottom: 17/894
  52333. },
  52334. extraAttributes: {
  52335. "width": {
  52336. name: "Width",
  52337. power: 1,
  52338. type: "length",
  52339. base: math.unit(4.757, "feet")
  52340. },
  52341. }
  52342. },
  52343. },
  52344. [
  52345. {
  52346. name: "Normal",
  52347. height: math.unit(6 + 5/12, "feet"),
  52348. default: true
  52349. },
  52350. ]
  52351. ))
  52352. characterMakers.push(() => makeCharacter(
  52353. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52354. {
  52355. dressedFront: {
  52356. height: math.unit(191, "cm"),
  52357. weight: math.unit(80, "kg"),
  52358. name: "Front",
  52359. image: {
  52360. source: "./media/characters/buster/dressed-front.svg",
  52361. extra: 1022/973,
  52362. bottom: 69/1091
  52363. }
  52364. },
  52365. dressedBack: {
  52366. height: math.unit(191, "cm"),
  52367. weight: math.unit(80, "kg"),
  52368. name: "Back",
  52369. image: {
  52370. source: "./media/characters/buster/dressed-back.svg",
  52371. extra: 1018/970,
  52372. bottom: 55/1073
  52373. }
  52374. },
  52375. nudeFront: {
  52376. height: math.unit(191, "cm"),
  52377. weight: math.unit(80, "kg"),
  52378. name: "Front (Nude)",
  52379. image: {
  52380. source: "./media/characters/buster/nude-front.svg",
  52381. extra: 1022/973,
  52382. bottom: 69/1091
  52383. }
  52384. },
  52385. nudeBack: {
  52386. height: math.unit(191, "cm"),
  52387. weight: math.unit(80, "kg"),
  52388. name: "Back (Nude)",
  52389. image: {
  52390. source: "./media/characters/buster/nude-back.svg",
  52391. extra: 1018/970,
  52392. bottom: 55/1073
  52393. }
  52394. },
  52395. dick: {
  52396. height: math.unit(2.59, "feet"),
  52397. name: "Dick",
  52398. image: {
  52399. source: "./media/characters/buster/dick.svg"
  52400. }
  52401. },
  52402. ass: {
  52403. height: math.unit(1.2, "feet"),
  52404. name: "Ass",
  52405. image: {
  52406. source: "./media/characters/buster/ass.svg"
  52407. }
  52408. },
  52409. },
  52410. [
  52411. {
  52412. name: "Normal",
  52413. height: math.unit(191, "cm"),
  52414. default: true
  52415. },
  52416. ]
  52417. ))
  52418. characterMakers.push(() => makeCharacter(
  52419. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52420. {
  52421. side: {
  52422. height: math.unit(8.1, "feet"),
  52423. weight: math.unit(3500, "lb"),
  52424. name: "Side",
  52425. image: {
  52426. source: "./media/characters/sonya/side.svg",
  52427. extra: 1730/1317,
  52428. bottom: 86/1816
  52429. }
  52430. },
  52431. },
  52432. [
  52433. {
  52434. name: "Normal",
  52435. height: math.unit(8.1, "feet"),
  52436. default: true
  52437. },
  52438. ]
  52439. ))
  52440. characterMakers.push(() => makeCharacter(
  52441. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52442. {
  52443. front: {
  52444. height: math.unit(6, "feet"),
  52445. weight: math.unit(150, "lb"),
  52446. name: "Front",
  52447. image: {
  52448. source: "./media/characters/cadence-andrysiak/front.svg",
  52449. extra: 1164/1121,
  52450. bottom: 60/1224
  52451. }
  52452. },
  52453. back: {
  52454. height: math.unit(6, "feet"),
  52455. weight: math.unit(150, "lb"),
  52456. name: "Back",
  52457. image: {
  52458. source: "./media/characters/cadence-andrysiak/back.svg",
  52459. extra: 1200/1165,
  52460. bottom: 9/1209
  52461. }
  52462. },
  52463. dressed: {
  52464. height: math.unit(6, "feet"),
  52465. weight: math.unit(150, "lb"),
  52466. name: "Dressed",
  52467. image: {
  52468. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52469. extra: 1164/1121,
  52470. bottom: 60/1224
  52471. }
  52472. },
  52473. },
  52474. [
  52475. {
  52476. name: "Micro",
  52477. height: math.unit(1, "mm")
  52478. },
  52479. {
  52480. name: "Normal",
  52481. height: math.unit(6, "feet"),
  52482. default: true
  52483. },
  52484. ]
  52485. ))
  52486. characterMakers.push(() => makeCharacter(
  52487. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52488. {
  52489. front: {
  52490. height: math.unit(60, "inches"),
  52491. weight: math.unit(16, "lb"),
  52492. preyCapacity: math.unit(80, "liters"),
  52493. name: "Front",
  52494. image: {
  52495. source: "./media/characters/penny-lynx/front.svg",
  52496. extra: 1959/1769,
  52497. bottom: 49/2008
  52498. }
  52499. },
  52500. },
  52501. [
  52502. {
  52503. name: "Nokia",
  52504. height: math.unit(2, "inches")
  52505. },
  52506. {
  52507. name: "Desktop",
  52508. height: math.unit(24, "inches")
  52509. },
  52510. {
  52511. name: "TV",
  52512. height: math.unit(60, "inches")
  52513. },
  52514. {
  52515. name: "Jumbotron",
  52516. height: math.unit(12, "feet")
  52517. },
  52518. {
  52519. name: "Billboard",
  52520. height: math.unit(48, "feet"),
  52521. default: true
  52522. },
  52523. {
  52524. name: "IMAX",
  52525. height: math.unit(96, "feet")
  52526. },
  52527. {
  52528. name: "SINGULARITY",
  52529. height: math.unit(864938, "miles")
  52530. },
  52531. ]
  52532. ))
  52533. characterMakers.push(() => makeCharacter(
  52534. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52535. {
  52536. front: {
  52537. height: math.unit(5 + 4/12, "feet"),
  52538. weight: math.unit(230, "lb"),
  52539. name: "Front",
  52540. image: {
  52541. source: "./media/characters/sukebe/front.svg",
  52542. extra: 2130/2038,
  52543. bottom: 90/2220
  52544. }
  52545. },
  52546. back: {
  52547. height: math.unit(3.48, "feet"),
  52548. weight: math.unit(230, "lb"),
  52549. name: "Back",
  52550. image: {
  52551. source: "./media/characters/sukebe/back.svg",
  52552. extra: 1670/1604,
  52553. bottom: 0/1670
  52554. }
  52555. },
  52556. },
  52557. [
  52558. {
  52559. name: "Normal",
  52560. height: math.unit(5 + 4/12, "feet"),
  52561. default: true
  52562. },
  52563. ]
  52564. ))
  52565. characterMakers.push(() => makeCharacter(
  52566. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52567. {
  52568. front: {
  52569. height: math.unit(6, "feet"),
  52570. name: "Front",
  52571. image: {
  52572. source: "./media/characters/nylla/front.svg",
  52573. extra: 1868/1699,
  52574. bottom: 97/1965
  52575. }
  52576. },
  52577. back: {
  52578. height: math.unit(6, "feet"),
  52579. name: "Back",
  52580. image: {
  52581. source: "./media/characters/nylla/back.svg",
  52582. extra: 1889/1712,
  52583. bottom: 93/1982
  52584. }
  52585. },
  52586. frontNsfw: {
  52587. height: math.unit(6, "feet"),
  52588. name: "Front (NSFW)",
  52589. image: {
  52590. source: "./media/characters/nylla/front-nsfw.svg",
  52591. extra: 1868/1699,
  52592. bottom: 97/1965
  52593. },
  52594. extraAttributes: {
  52595. "dickLength": {
  52596. name: "Dick Length",
  52597. power: 1,
  52598. type: "length",
  52599. base: math.unit(1.4, "feet")
  52600. },
  52601. "cumVolume": {
  52602. name: "Cum Volume",
  52603. power: 3,
  52604. type: "volume",
  52605. base: math.unit(100, "mL")
  52606. },
  52607. }
  52608. },
  52609. backNsfw: {
  52610. height: math.unit(6, "feet"),
  52611. name: "Back (NSFW)",
  52612. image: {
  52613. source: "./media/characters/nylla/back-nsfw.svg",
  52614. extra: 1889/1712,
  52615. bottom: 93/1982
  52616. }
  52617. },
  52618. maw: {
  52619. height: math.unit(2.10, "feet"),
  52620. name: "Maw",
  52621. image: {
  52622. source: "./media/characters/nylla/maw.svg"
  52623. }
  52624. },
  52625. paws: {
  52626. height: math.unit(2.06, "feet"),
  52627. name: "Paws",
  52628. image: {
  52629. source: "./media/characters/nylla/paws.svg"
  52630. }
  52631. },
  52632. muzzle: {
  52633. height: math.unit(0.61, "feet"),
  52634. name: "Muzzle",
  52635. image: {
  52636. source: "./media/characters/nylla/muzzle.svg"
  52637. }
  52638. },
  52639. sheath: {
  52640. height: math.unit(1.305, "feet"),
  52641. name: "Sheath",
  52642. image: {
  52643. source: "./media/characters/nylla/sheath.svg"
  52644. }
  52645. },
  52646. },
  52647. [
  52648. {
  52649. name: "Micro",
  52650. height: math.unit(7.5, "inches")
  52651. },
  52652. {
  52653. name: "Normal",
  52654. height: math.unit(7, "feet"),
  52655. default: true
  52656. },
  52657. {
  52658. name: "Macro",
  52659. height: math.unit(60, "feet")
  52660. },
  52661. {
  52662. name: "Mega",
  52663. height: math.unit(200, "feet")
  52664. },
  52665. ]
  52666. ))
  52667. characterMakers.push(() => makeCharacter(
  52668. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52669. {
  52670. front: {
  52671. height: math.unit(10, "feet"),
  52672. weight: math.unit(2300, "lb"),
  52673. name: "Front",
  52674. image: {
  52675. source: "./media/characters/hunt3r/front.svg",
  52676. extra: 1909/1742,
  52677. bottom: 46/1955
  52678. }
  52679. },
  52680. },
  52681. [
  52682. {
  52683. name: "Normal",
  52684. height: math.unit(10, "feet"),
  52685. default: true
  52686. },
  52687. ]
  52688. ))
  52689. characterMakers.push(() => makeCharacter(
  52690. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52691. {
  52692. dressed: {
  52693. height: math.unit(11, "feet"),
  52694. weight: math.unit(18500, "lb"),
  52695. preyCapacity: math.unit(9, "people"),
  52696. name: "Dressed",
  52697. image: {
  52698. source: "./media/characters/cylphis/dressed.svg",
  52699. extra: 1028/1003,
  52700. bottom: 75/1103
  52701. },
  52702. },
  52703. undressed: {
  52704. height: math.unit(11, "feet"),
  52705. weight: math.unit(18500, "lb"),
  52706. preyCapacity: math.unit(9, "people"),
  52707. name: "Undressed",
  52708. image: {
  52709. source: "./media/characters/cylphis/undressed.svg",
  52710. extra: 1028/1003,
  52711. bottom: 75/1103
  52712. }
  52713. },
  52714. full: {
  52715. height: math.unit(11, "feet"),
  52716. weight: math.unit(18500 + 150*9, "lb"),
  52717. preyCapacity: math.unit(9, "people"),
  52718. name: "Full",
  52719. image: {
  52720. source: "./media/characters/cylphis/full.svg",
  52721. extra: 1028/1003,
  52722. bottom: 75/1103
  52723. }
  52724. },
  52725. },
  52726. [
  52727. {
  52728. name: "Small",
  52729. height: math.unit(8, "feet")
  52730. },
  52731. {
  52732. name: "Normal",
  52733. height: math.unit(11, "feet"),
  52734. default: true
  52735. },
  52736. ]
  52737. ))
  52738. characterMakers.push(() => makeCharacter(
  52739. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52740. {
  52741. front: {
  52742. height: math.unit(2 + 7/12, "feet"),
  52743. name: "Front",
  52744. image: {
  52745. source: "./media/characters/orishan/front.svg",
  52746. extra: 1058/1023,
  52747. bottom: 23/1081
  52748. }
  52749. },
  52750. back: {
  52751. height: math.unit(2 + 7/12, "feet"),
  52752. name: "Back",
  52753. image: {
  52754. source: "./media/characters/orishan/back.svg",
  52755. extra: 1058/1023,
  52756. bottom: 23/1081
  52757. }
  52758. },
  52759. },
  52760. [
  52761. {
  52762. name: "Micro",
  52763. height: math.unit(2, "cm")
  52764. },
  52765. {
  52766. name: "Normal",
  52767. height: math.unit(2 + 7/12, "feet"),
  52768. default: true
  52769. },
  52770. ]
  52771. ))
  52772. characterMakers.push(() => makeCharacter(
  52773. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52774. {
  52775. front: {
  52776. height: math.unit(3, "meters"),
  52777. weight: math.unit(508, "kg"),
  52778. name: "Front",
  52779. image: {
  52780. source: "./media/characters/seranis/front.svg",
  52781. extra: 1478/1454,
  52782. bottom: 41/1519
  52783. }
  52784. },
  52785. },
  52786. [
  52787. {
  52788. name: "Normal",
  52789. height: math.unit(3, "meters"),
  52790. default: true
  52791. },
  52792. {
  52793. name: "Macro",
  52794. height: math.unit(108, "meters")
  52795. },
  52796. {
  52797. name: "Megamacro",
  52798. height: math.unit(1250, "meters")
  52799. },
  52800. ]
  52801. ))
  52802. characterMakers.push(() => makeCharacter(
  52803. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52804. {
  52805. undressed: {
  52806. height: math.unit(5 + 3/12, "feet"),
  52807. name: "Undressed",
  52808. image: {
  52809. source: "./media/characters/ankou/undressed.svg",
  52810. extra: 1301/1213,
  52811. bottom: 87/1388
  52812. }
  52813. },
  52814. dressed: {
  52815. height: math.unit(5 + 3/12, "feet"),
  52816. name: "Dressed",
  52817. image: {
  52818. source: "./media/characters/ankou/dressed.svg",
  52819. extra: 1301/1213,
  52820. bottom: 87/1388
  52821. }
  52822. },
  52823. head: {
  52824. height: math.unit(1.61, "feet"),
  52825. name: "Head",
  52826. image: {
  52827. source: "./media/characters/ankou/head.svg"
  52828. }
  52829. },
  52830. },
  52831. [
  52832. {
  52833. name: "Normal",
  52834. height: math.unit(5 + 3/12, "feet"),
  52835. default: true
  52836. },
  52837. ]
  52838. ))
  52839. characterMakers.push(() => makeCharacter(
  52840. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52841. {
  52842. side: {
  52843. height: math.unit(6 + 3/12, "feet"),
  52844. weight: math.unit(200, "kg"),
  52845. name: "Side",
  52846. image: {
  52847. source: "./media/characters/juniper-skunktaur/side.svg",
  52848. extra: 1574/1229,
  52849. bottom: 38/1612
  52850. }
  52851. },
  52852. front: {
  52853. height: math.unit(6 + 3/12, "feet"),
  52854. weight: math.unit(200, "kg"),
  52855. name: "Front",
  52856. image: {
  52857. source: "./media/characters/juniper-skunktaur/front.svg",
  52858. extra: 1337/1278,
  52859. bottom: 22/1359
  52860. }
  52861. },
  52862. back: {
  52863. height: math.unit(6 + 3/12, "feet"),
  52864. weight: math.unit(200, "kg"),
  52865. name: "Back",
  52866. image: {
  52867. source: "./media/characters/juniper-skunktaur/back.svg",
  52868. extra: 1618/1273,
  52869. bottom: 13/1631
  52870. }
  52871. },
  52872. top: {
  52873. height: math.unit(2.62, "feet"),
  52874. weight: math.unit(200, "kg"),
  52875. name: "Top",
  52876. image: {
  52877. source: "./media/characters/juniper-skunktaur/top.svg"
  52878. }
  52879. },
  52880. },
  52881. [
  52882. {
  52883. name: "Normal",
  52884. height: math.unit(6 + 3/12, "feet"),
  52885. default: true
  52886. },
  52887. ]
  52888. ))
  52889. characterMakers.push(() => makeCharacter(
  52890. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52891. {
  52892. front: {
  52893. height: math.unit(20.5, "feet"),
  52894. name: "Front",
  52895. image: {
  52896. source: "./media/characters/rei/front.svg",
  52897. extra: 1349/1195,
  52898. bottom: 31/1380
  52899. }
  52900. },
  52901. back: {
  52902. height: math.unit(20.5, "feet"),
  52903. name: "Back",
  52904. image: {
  52905. source: "./media/characters/rei/back.svg",
  52906. extra: 1358/1204,
  52907. bottom: 22/1380
  52908. }
  52909. },
  52910. pawsDigi: {
  52911. height: math.unit(3.45, "feet"),
  52912. name: "Paws (Digi)",
  52913. image: {
  52914. source: "./media/characters/rei/paws-digi.svg"
  52915. }
  52916. },
  52917. pawsPlanti: {
  52918. height: math.unit(3.45, "feet"),
  52919. name: "Paws (Planti)",
  52920. image: {
  52921. source: "./media/characters/rei/paws-planti.svg"
  52922. }
  52923. },
  52924. },
  52925. [
  52926. {
  52927. name: "Normal",
  52928. height: math.unit(20.5, "feet"),
  52929. default: true
  52930. },
  52931. ]
  52932. ))
  52933. characterMakers.push(() => makeCharacter(
  52934. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52935. {
  52936. front: {
  52937. height: math.unit(5 + 11/12, "feet"),
  52938. name: "Front",
  52939. image: {
  52940. source: "./media/characters/carina/front.svg",
  52941. extra: 1720/1449,
  52942. bottom: 14/1734
  52943. }
  52944. },
  52945. back: {
  52946. height: math.unit(5 + 11/12, "feet"),
  52947. name: "Back",
  52948. image: {
  52949. source: "./media/characters/carina/back.svg",
  52950. extra: 1493/1445,
  52951. bottom: 17/1510
  52952. }
  52953. },
  52954. paw: {
  52955. height: math.unit(0.92, "feet"),
  52956. name: "Paw",
  52957. image: {
  52958. source: "./media/characters/carina/paw.svg"
  52959. }
  52960. },
  52961. },
  52962. [
  52963. {
  52964. name: "Normal",
  52965. height: math.unit(5 + 11/12, "feet"),
  52966. default: true
  52967. },
  52968. ]
  52969. ))
  52970. characterMakers.push(() => makeCharacter(
  52971. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  52972. {
  52973. normal_front: {
  52974. height: math.unit(4.88, "meters"),
  52975. name: "Front",
  52976. image: {
  52977. source: "./media/characters/maya/normal-front.svg",
  52978. extra: 1222/1145,
  52979. bottom: 57/1279
  52980. },
  52981. form: "normal",
  52982. default: true
  52983. },
  52984. monstrous_front: {
  52985. height: math.unit(10, "meters"),
  52986. name: "Front",
  52987. image: {
  52988. source: "./media/characters/maya/monstrous-front.svg",
  52989. extra: 1523/1109,
  52990. bottom: 113/1636
  52991. },
  52992. form: "monstrous",
  52993. extraAttributes: {
  52994. "swallowSize": {
  52995. name: "Tailmaw Bite Size",
  52996. power: 3,
  52997. type: "volume",
  52998. base: math.unit(43000, "liters")
  52999. },
  53000. }
  53001. },
  53002. taur_front: {
  53003. height: math.unit(10, "meters"),
  53004. name: "Front",
  53005. image: {
  53006. source: "./media/characters/maya/taur-front.svg",
  53007. extra: 743/506,
  53008. bottom: 101/844
  53009. },
  53010. form: "taur",
  53011. },
  53012. },
  53013. [
  53014. {
  53015. name: "Normal",
  53016. height: math.unit(4.88, "meters"),
  53017. default: true,
  53018. form: "normal"
  53019. },
  53020. {
  53021. name: "Macro",
  53022. height: math.unit(38.1, "meters"),
  53023. form: "normal"
  53024. },
  53025. {
  53026. name: "Macro+",
  53027. height: math.unit(152.4, "meters"),
  53028. form: "normal"
  53029. },
  53030. {
  53031. name: "Macro++",
  53032. height: math.unit(16.09, "km"),
  53033. form: "normal"
  53034. },
  53035. {
  53036. name: "Mega-macro",
  53037. height: math.unit(700, "megameters"),
  53038. form: "normal"
  53039. },
  53040. {
  53041. name: "Satiated",
  53042. height: math.unit(10, "meters"),
  53043. default: true,
  53044. form: "monstrous"
  53045. },
  53046. {
  53047. name: "Hungry",
  53048. height: math.unit(75, "meters"),
  53049. form: "monstrous"
  53050. },
  53051. {
  53052. name: "Ravenous",
  53053. height: math.unit(500, "meters"),
  53054. form: "monstrous"
  53055. },
  53056. {
  53057. name: "\"Normal\"",
  53058. height: math.unit(10, "meters"),
  53059. form: "taur"
  53060. },
  53061. {
  53062. name: "Macro",
  53063. height: math.unit(50, "meters"),
  53064. form: "taur"
  53065. },
  53066. ],
  53067. {
  53068. "normal": {
  53069. name: "Normal",
  53070. default: true
  53071. },
  53072. "monstrous": {
  53073. name: "Monstrous",
  53074. },
  53075. "taur": {
  53076. name: "Taur",
  53077. },
  53078. }
  53079. ))
  53080. characterMakers.push(() => makeCharacter(
  53081. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  53082. {
  53083. front: {
  53084. height: math.unit(6 + 2/12, "feet"),
  53085. weight: math.unit(500, "lb"),
  53086. preyCapacity: math.unit(4, "people"),
  53087. name: "Front",
  53088. image: {
  53089. source: "./media/characters/yepir/front.svg"
  53090. }
  53091. },
  53092. side: {
  53093. height: math.unit(6 + 2/12, "feet"),
  53094. weight: math.unit(500, "lb"),
  53095. preyCapacity: math.unit(4, "people"),
  53096. name: "Side",
  53097. image: {
  53098. source: "./media/characters/yepir/side.svg"
  53099. }
  53100. },
  53101. paw: {
  53102. height: math.unit(1.05, "feet"),
  53103. name: "Paw",
  53104. image: {
  53105. source: "./media/characters/yepir/paw.svg"
  53106. }
  53107. },
  53108. },
  53109. [
  53110. {
  53111. name: "Normal",
  53112. height: math.unit(6 + 2/12, "feet"),
  53113. default: true
  53114. },
  53115. ]
  53116. ))
  53117. characterMakers.push(() => makeCharacter(
  53118. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  53119. {
  53120. front: {
  53121. height: math.unit(5 + 4/12, "feet"),
  53122. name: "Front",
  53123. image: {
  53124. source: "./media/characters/russec/front.svg",
  53125. extra: 1926/1626,
  53126. bottom: 72/1998
  53127. }
  53128. },
  53129. back: {
  53130. height: math.unit(5 + 4/12, "feet"),
  53131. name: "Back",
  53132. image: {
  53133. source: "./media/characters/russec/back.svg",
  53134. extra: 1910/1591,
  53135. bottom: 48/1958
  53136. }
  53137. },
  53138. },
  53139. [
  53140. {
  53141. name: "Small",
  53142. height: math.unit(5 + 4/12, "feet")
  53143. },
  53144. {
  53145. name: "Normal",
  53146. height: math.unit(72, "feet"),
  53147. default: true
  53148. },
  53149. ]
  53150. ))
  53151. characterMakers.push(() => makeCharacter(
  53152. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53153. {
  53154. side: {
  53155. height: math.unit(12, "feet"),
  53156. name: "Side",
  53157. image: {
  53158. source: "./media/characters/cianus/side.svg",
  53159. extra: 808/526,
  53160. bottom: 61/869
  53161. }
  53162. },
  53163. },
  53164. [
  53165. {
  53166. name: "Normal",
  53167. height: math.unit(12, "feet"),
  53168. default: true
  53169. },
  53170. ]
  53171. ))
  53172. characterMakers.push(() => makeCharacter(
  53173. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53174. {
  53175. front: {
  53176. height: math.unit(9 + 6/12, "feet"),
  53177. weight: math.unit(300, "lb"),
  53178. name: "Front",
  53179. image: {
  53180. source: "./media/characters/ahab/front.svg",
  53181. extra: 1897/1868,
  53182. bottom: 121/2018
  53183. }
  53184. },
  53185. frontNsfw: {
  53186. height: math.unit(9 + 6/12, "feet"),
  53187. weight: math.unit(300, "lb"),
  53188. name: "Front-nsfw",
  53189. image: {
  53190. source: "./media/characters/ahab/front-nsfw.svg",
  53191. extra: 1897/1868,
  53192. bottom: 121/2018
  53193. }
  53194. },
  53195. },
  53196. [
  53197. {
  53198. name: "Normal",
  53199. height: math.unit(9 + 6/12, "feet")
  53200. },
  53201. {
  53202. name: "Macro",
  53203. height: math.unit(657, "feet"),
  53204. default: true
  53205. },
  53206. ]
  53207. ))
  53208. characterMakers.push(() => makeCharacter(
  53209. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53210. {
  53211. front: {
  53212. height: math.unit(2.69, "meters"),
  53213. weight: math.unit(132, "kg"),
  53214. name: "Front",
  53215. image: {
  53216. source: "./media/characters/aarkus/front.svg",
  53217. extra: 1400/1231,
  53218. bottom: 34/1434
  53219. }
  53220. },
  53221. back: {
  53222. height: math.unit(2.69, "meters"),
  53223. weight: math.unit(132, "kg"),
  53224. name: "Back",
  53225. image: {
  53226. source: "./media/characters/aarkus/back.svg",
  53227. extra: 1381/1218,
  53228. bottom: 30/1411
  53229. }
  53230. },
  53231. frontNsfw: {
  53232. height: math.unit(2.69, "meters"),
  53233. weight: math.unit(132, "kg"),
  53234. name: "Front (NSFW)",
  53235. image: {
  53236. source: "./media/characters/aarkus/front-nsfw.svg",
  53237. extra: 1400/1231,
  53238. bottom: 34/1434
  53239. }
  53240. },
  53241. foot: {
  53242. height: math.unit(1.45, "feet"),
  53243. name: "Foot",
  53244. image: {
  53245. source: "./media/characters/aarkus/foot.svg"
  53246. }
  53247. },
  53248. head: {
  53249. height: math.unit(2.85, "feet"),
  53250. name: "Head",
  53251. image: {
  53252. source: "./media/characters/aarkus/head.svg"
  53253. }
  53254. },
  53255. headAlt: {
  53256. height: math.unit(3.07, "feet"),
  53257. name: "Head (Alt)",
  53258. image: {
  53259. source: "./media/characters/aarkus/head-alt.svg"
  53260. }
  53261. },
  53262. mouth: {
  53263. height: math.unit(1.25, "feet"),
  53264. name: "Mouth",
  53265. image: {
  53266. source: "./media/characters/aarkus/mouth.svg"
  53267. }
  53268. },
  53269. dick: {
  53270. height: math.unit(1.77, "feet"),
  53271. name: "Dick",
  53272. image: {
  53273. source: "./media/characters/aarkus/dick.svg"
  53274. }
  53275. },
  53276. },
  53277. [
  53278. {
  53279. name: "Normal",
  53280. height: math.unit(2.69, "meters"),
  53281. default: true
  53282. },
  53283. {
  53284. name: "Macro",
  53285. height: math.unit(269, "meters")
  53286. },
  53287. {
  53288. name: "Macro+",
  53289. height: math.unit(672.5, "meters")
  53290. },
  53291. {
  53292. name: "Megamacro",
  53293. height: math.unit(2.017, "km")
  53294. },
  53295. ]
  53296. ))
  53297. characterMakers.push(() => makeCharacter(
  53298. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53299. {
  53300. front: {
  53301. height: math.unit(23.47, "cm"),
  53302. weight: math.unit(600, "grams"),
  53303. name: "Front",
  53304. image: {
  53305. source: "./media/characters/diode/front.svg",
  53306. extra: 1778/1396,
  53307. bottom: 95/1873
  53308. }
  53309. },
  53310. side: {
  53311. height: math.unit(23.47, "cm"),
  53312. weight: math.unit(600, "grams"),
  53313. name: "Side",
  53314. image: {
  53315. source: "./media/characters/diode/side.svg",
  53316. extra: 1831/1404,
  53317. bottom: 86/1917
  53318. }
  53319. },
  53320. wings: {
  53321. height: math.unit(0.683, "feet"),
  53322. name: "Wings",
  53323. image: {
  53324. source: "./media/characters/diode/wings.svg"
  53325. }
  53326. },
  53327. },
  53328. [
  53329. {
  53330. name: "Normal",
  53331. height: math.unit(23.47, "cm"),
  53332. default: true
  53333. },
  53334. ]
  53335. ))
  53336. characterMakers.push(() => makeCharacter(
  53337. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53338. {
  53339. front: {
  53340. height: math.unit(6 + 3/12, "feet"),
  53341. weight: math.unit(250, "lb"),
  53342. name: "Front",
  53343. image: {
  53344. source: "./media/characters/reika/front.svg",
  53345. extra: 1120/1078,
  53346. bottom: 86/1206
  53347. }
  53348. },
  53349. },
  53350. [
  53351. {
  53352. name: "Normal",
  53353. height: math.unit(6 + 3/12, "feet"),
  53354. default: true
  53355. },
  53356. ]
  53357. ))
  53358. characterMakers.push(() => makeCharacter(
  53359. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53360. {
  53361. front: {
  53362. height: math.unit(16 + 8/12, "feet"),
  53363. weight: math.unit(9000, "lb"),
  53364. name: "Front",
  53365. image: {
  53366. source: "./media/characters/lokuto-takama/front.svg",
  53367. extra: 1774/1632,
  53368. bottom: 147/1921
  53369. },
  53370. extraAttributes: {
  53371. "bustWidth": {
  53372. name: "Bust Width",
  53373. power: 1,
  53374. type: "length",
  53375. base: math.unit(2.4, "meters")
  53376. },
  53377. "breastWeight": {
  53378. name: "Breast Weight",
  53379. power: 3,
  53380. type: "mass",
  53381. base: math.unit(1000, "kg")
  53382. },
  53383. }
  53384. },
  53385. },
  53386. [
  53387. {
  53388. name: "Normal",
  53389. height: math.unit(16 + 8/12, "feet"),
  53390. default: true
  53391. },
  53392. ]
  53393. ))
  53394. characterMakers.push(() => makeCharacter(
  53395. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53396. {
  53397. front: {
  53398. height: math.unit(10, "cm"),
  53399. weight: math.unit(850, "grams"),
  53400. name: "Front",
  53401. image: {
  53402. source: "./media/characters/owak-bone/front.svg",
  53403. extra: 1965/1801,
  53404. bottom: 31/1996
  53405. }
  53406. },
  53407. },
  53408. [
  53409. {
  53410. name: "Normal",
  53411. height: math.unit(10, "cm"),
  53412. default: true
  53413. },
  53414. ]
  53415. ))
  53416. characterMakers.push(() => makeCharacter(
  53417. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53418. {
  53419. front: {
  53420. height: math.unit(2 + 6/12, "feet"),
  53421. weight: math.unit(9, "lb"),
  53422. name: "Front",
  53423. image: {
  53424. source: "./media/characters/muffin/front.svg",
  53425. extra: 1220/1195,
  53426. bottom: 84/1304
  53427. }
  53428. },
  53429. },
  53430. [
  53431. {
  53432. name: "Normal",
  53433. height: math.unit(2 + 6/12, "feet"),
  53434. default: true
  53435. },
  53436. ]
  53437. ))
  53438. characterMakers.push(() => makeCharacter(
  53439. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53440. {
  53441. front: {
  53442. height: math.unit(7, "feet"),
  53443. name: "Front",
  53444. image: {
  53445. source: "./media/characters/chimera/front.svg",
  53446. extra: 1752/1614,
  53447. bottom: 68/1820
  53448. }
  53449. },
  53450. },
  53451. [
  53452. {
  53453. name: "Normal",
  53454. height: math.unit(7, "feet")
  53455. },
  53456. {
  53457. name: "Gigamacro",
  53458. height: math.unit(2.9, "gigameters"),
  53459. default: true
  53460. },
  53461. {
  53462. name: "Universal",
  53463. height: math.unit(1.56e26, "yottameters")
  53464. },
  53465. ]
  53466. ))
  53467. characterMakers.push(() => makeCharacter(
  53468. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53469. {
  53470. front: {
  53471. height: math.unit(3, "feet"),
  53472. weight: math.unit(20, "lb"),
  53473. name: "Front",
  53474. image: {
  53475. source: "./media/characters/kit-fennec-fox/front.svg",
  53476. extra: 1027/932,
  53477. bottom: 16/1043
  53478. }
  53479. },
  53480. back: {
  53481. height: math.unit(3, "feet"),
  53482. weight: math.unit(20, "lb"),
  53483. name: "Back",
  53484. image: {
  53485. source: "./media/characters/kit-fennec-fox/back.svg",
  53486. extra: 1027/932,
  53487. bottom: 16/1043
  53488. }
  53489. },
  53490. },
  53491. [
  53492. {
  53493. name: "Normal",
  53494. height: math.unit(3, "feet"),
  53495. default: true
  53496. },
  53497. ]
  53498. ))
  53499. characterMakers.push(() => makeCharacter(
  53500. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53501. {
  53502. front: {
  53503. height: math.unit(167, "cm"),
  53504. name: "Front",
  53505. image: {
  53506. source: "./media/characters/blue-otter/front.svg",
  53507. extra: 1951/1920,
  53508. bottom: 31/1982
  53509. }
  53510. },
  53511. },
  53512. [
  53513. {
  53514. name: "Otter-Sized",
  53515. height: math.unit(100, "cm")
  53516. },
  53517. {
  53518. name: "Normal",
  53519. height: math.unit(167, "cm"),
  53520. default: true
  53521. },
  53522. ]
  53523. ))
  53524. characterMakers.push(() => makeCharacter(
  53525. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53526. {
  53527. front: {
  53528. height: math.unit(4 + 4/12, "feet"),
  53529. name: "Front",
  53530. image: {
  53531. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53532. extra: 1072/1067,
  53533. bottom: 117/1189
  53534. }
  53535. },
  53536. back: {
  53537. height: math.unit(4 + 4/12, "feet"),
  53538. name: "Back",
  53539. image: {
  53540. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53541. extra: 1135/1129,
  53542. bottom: 57/1192
  53543. }
  53544. },
  53545. head: {
  53546. height: math.unit(1.77, "feet"),
  53547. name: "Head",
  53548. image: {
  53549. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53550. }
  53551. },
  53552. },
  53553. [
  53554. {
  53555. name: "Normal",
  53556. height: math.unit(4 + 4/12, "feet"),
  53557. default: true
  53558. },
  53559. ]
  53560. ))
  53561. characterMakers.push(() => makeCharacter(
  53562. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53563. {
  53564. front: {
  53565. height: math.unit(2, "inches"),
  53566. name: "Front",
  53567. image: {
  53568. source: "./media/characters/carley-hartford/front.svg",
  53569. extra: 1035/988,
  53570. bottom: 23/1058
  53571. }
  53572. },
  53573. back: {
  53574. height: math.unit(2, "inches"),
  53575. name: "Back",
  53576. image: {
  53577. source: "./media/characters/carley-hartford/back.svg",
  53578. extra: 1035/988,
  53579. bottom: 23/1058
  53580. }
  53581. },
  53582. dressed: {
  53583. height: math.unit(2, "inches"),
  53584. name: "Dressed",
  53585. image: {
  53586. source: "./media/characters/carley-hartford/dressed.svg",
  53587. extra: 651/620,
  53588. bottom: 0/651
  53589. }
  53590. },
  53591. },
  53592. [
  53593. {
  53594. name: "Micro",
  53595. height: math.unit(2, "inches"),
  53596. default: true
  53597. },
  53598. {
  53599. name: "Macro",
  53600. height: math.unit(6 + 3/12, "feet")
  53601. },
  53602. ]
  53603. ))
  53604. characterMakers.push(() => makeCharacter(
  53605. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53606. {
  53607. front: {
  53608. height: math.unit(2 + 3/12, "feet"),
  53609. weight: math.unit(15 + 7/16, "lb"),
  53610. name: "Front",
  53611. image: {
  53612. source: "./media/characters/duke/front.svg",
  53613. extra: 910/815,
  53614. bottom: 30/940
  53615. }
  53616. },
  53617. },
  53618. [
  53619. {
  53620. name: "Normal",
  53621. height: math.unit(2 + 3/12, "feet"),
  53622. default: true
  53623. },
  53624. ]
  53625. ))
  53626. characterMakers.push(() => makeCharacter(
  53627. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53628. {
  53629. front: {
  53630. height: math.unit(5 + 4/12, "feet"),
  53631. weight: math.unit(156, "lb"),
  53632. name: "Front",
  53633. image: {
  53634. source: "./media/characters/dein/front.svg",
  53635. extra: 855/815,
  53636. bottom: 48/903
  53637. }
  53638. },
  53639. side: {
  53640. height: math.unit(5 + 4/12, "feet"),
  53641. weight: math.unit(156, "lb"),
  53642. name: "side",
  53643. image: {
  53644. source: "./media/characters/dein/side.svg",
  53645. extra: 846/803,
  53646. bottom: 25/871
  53647. }
  53648. },
  53649. maw: {
  53650. height: math.unit(1.45, "feet"),
  53651. name: "Maw",
  53652. image: {
  53653. source: "./media/characters/dein/maw.svg"
  53654. }
  53655. },
  53656. },
  53657. [
  53658. {
  53659. name: "Ferret Sized",
  53660. height: math.unit(2 + 5/12, "feet")
  53661. },
  53662. {
  53663. name: "Normal",
  53664. height: math.unit(5 + 4/12, "feet"),
  53665. default: true
  53666. },
  53667. ]
  53668. ))
  53669. characterMakers.push(() => makeCharacter(
  53670. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53671. {
  53672. front: {
  53673. height: math.unit(84 + 8/12, "feet"),
  53674. weight: math.unit(942180, "lb"),
  53675. name: "Front",
  53676. image: {
  53677. source: "./media/characters/daurine-arima/front.svg",
  53678. extra: 1989/1782,
  53679. bottom: 37/2026
  53680. }
  53681. },
  53682. side: {
  53683. height: math.unit(84 + 8/12, "feet"),
  53684. weight: math.unit(942180, "lb"),
  53685. name: "Side",
  53686. image: {
  53687. source: "./media/characters/daurine-arima/side.svg",
  53688. extra: 1997/1790,
  53689. bottom: 21/2018
  53690. }
  53691. },
  53692. back: {
  53693. height: math.unit(84 + 8/12, "feet"),
  53694. weight: math.unit(942180, "lb"),
  53695. name: "Back",
  53696. image: {
  53697. source: "./media/characters/daurine-arima/back.svg",
  53698. extra: 1992/1800,
  53699. bottom: 12/2004
  53700. }
  53701. },
  53702. head: {
  53703. height: math.unit(15.5, "feet"),
  53704. name: "Head",
  53705. image: {
  53706. source: "./media/characters/daurine-arima/head.svg"
  53707. }
  53708. },
  53709. headAlt: {
  53710. height: math.unit(19.19, "feet"),
  53711. name: "Head (Alt)",
  53712. image: {
  53713. source: "./media/characters/daurine-arima/head-alt.svg"
  53714. }
  53715. },
  53716. },
  53717. [
  53718. {
  53719. name: "Minimum height",
  53720. height: math.unit(8 + 10/12, "feet")
  53721. },
  53722. {
  53723. name: "Comfort height",
  53724. height: math.unit(19 + 6 /12, "feet")
  53725. },
  53726. {
  53727. name: "\"Normal\" height",
  53728. height: math.unit(28 + 10/12, "feet")
  53729. },
  53730. {
  53731. name: "Base height",
  53732. height: math.unit(84 + 8/12, "feet"),
  53733. default: true
  53734. },
  53735. {
  53736. name: "Mini-macro",
  53737. height: math.unit(2360, "feet")
  53738. },
  53739. {
  53740. name: "Macro",
  53741. height: math.unit(10, "miles")
  53742. },
  53743. {
  53744. name: "Goddess",
  53745. height: math.unit(9.99e40, "yottameters")
  53746. },
  53747. ]
  53748. ))
  53749. characterMakers.push(() => makeCharacter(
  53750. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53751. {
  53752. front: {
  53753. height: math.unit(2.3, "meters"),
  53754. name: "Front",
  53755. image: {
  53756. source: "./media/characters/cilenomon/front.svg",
  53757. extra: 1963/1778,
  53758. bottom: 54/2017
  53759. }
  53760. },
  53761. },
  53762. [
  53763. {
  53764. name: "Normal",
  53765. height: math.unit(2.3, "meters"),
  53766. default: true
  53767. },
  53768. {
  53769. name: "Big",
  53770. height: math.unit(5, "meters")
  53771. },
  53772. {
  53773. name: "Macro",
  53774. height: math.unit(30, "meters")
  53775. },
  53776. {
  53777. name: "True",
  53778. height: math.unit(1, "universe")
  53779. },
  53780. ]
  53781. ))
  53782. characterMakers.push(() => makeCharacter(
  53783. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53784. {
  53785. front: {
  53786. height: math.unit(5, "feet"),
  53787. name: "Front",
  53788. image: {
  53789. source: "./media/characters/sen-mink/front.svg",
  53790. extra: 1727/1675,
  53791. bottom: 35/1762
  53792. }
  53793. },
  53794. },
  53795. [
  53796. {
  53797. name: "Normal",
  53798. height: math.unit(5, "feet"),
  53799. default: true
  53800. },
  53801. ]
  53802. ))
  53803. characterMakers.push(() => makeCharacter(
  53804. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53805. {
  53806. front: {
  53807. height: math.unit(5.42999, "feet"),
  53808. weight: math.unit(100, "lb"),
  53809. name: "Front",
  53810. image: {
  53811. source: "./media/characters/ophois/front.svg",
  53812. extra: 1429/1286,
  53813. bottom: 60/1489
  53814. }
  53815. },
  53816. },
  53817. [
  53818. {
  53819. name: "Normal",
  53820. height: math.unit(5.42999, "feet"),
  53821. default: true
  53822. },
  53823. ]
  53824. ))
  53825. characterMakers.push(() => makeCharacter(
  53826. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53827. {
  53828. front: {
  53829. height: math.unit(2, "meters"),
  53830. name: "Front",
  53831. image: {
  53832. source: "./media/characters/riley/front.svg",
  53833. extra: 1779/1754,
  53834. bottom: 139/1918
  53835. }
  53836. },
  53837. },
  53838. [
  53839. {
  53840. name: "Normal",
  53841. height: math.unit(2, "meters"),
  53842. default: true
  53843. },
  53844. ]
  53845. ))
  53846. characterMakers.push(() => makeCharacter(
  53847. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53848. {
  53849. front: {
  53850. height: math.unit(6 + 2/12, "feet"),
  53851. weight: math.unit(195, "lb"),
  53852. preyCapacity: math.unit(6, "people"),
  53853. name: "Front",
  53854. image: {
  53855. source: "./media/characters/shuken-flash/front.svg",
  53856. extra: 1905/1739,
  53857. bottom: 65/1970
  53858. }
  53859. },
  53860. back: {
  53861. height: math.unit(6 + 2/12, "feet"),
  53862. weight: math.unit(195, "lb"),
  53863. preyCapacity: math.unit(6, "people"),
  53864. name: "Back",
  53865. image: {
  53866. source: "./media/characters/shuken-flash/back.svg",
  53867. extra: 1912/1751,
  53868. bottom: 13/1925
  53869. }
  53870. },
  53871. },
  53872. [
  53873. {
  53874. name: "Normal",
  53875. height: math.unit(6 + 2/12, "feet"),
  53876. default: true
  53877. },
  53878. ]
  53879. ))
  53880. characterMakers.push(() => makeCharacter(
  53881. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53882. {
  53883. front: {
  53884. height: math.unit(5 + 9/12, "feet"),
  53885. weight: math.unit(150, "lb"),
  53886. name: "Front",
  53887. image: {
  53888. source: "./media/characters/plat/front.svg",
  53889. extra: 1816/1703,
  53890. bottom: 43/1859
  53891. }
  53892. },
  53893. side: {
  53894. height: math.unit(5 + 9/12, "feet"),
  53895. weight: math.unit(300, "lb"),
  53896. name: "Side",
  53897. image: {
  53898. source: "./media/characters/plat/side.svg",
  53899. extra: 1824/1699,
  53900. bottom: 18/1842
  53901. }
  53902. },
  53903. },
  53904. [
  53905. {
  53906. name: "Normal",
  53907. height: math.unit(5 + 9/12, "feet"),
  53908. default: true
  53909. },
  53910. ]
  53911. ))
  53912. characterMakers.push(() => makeCharacter(
  53913. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53914. {
  53915. front: {
  53916. height: math.unit(9, "feet"),
  53917. weight: math.unit(1800, "lb"),
  53918. name: "Front",
  53919. image: {
  53920. source: "./media/characters/elaine/front.svg",
  53921. extra: 1833/1354,
  53922. bottom: 25/1858
  53923. }
  53924. },
  53925. back: {
  53926. height: math.unit(8.8, "feet"),
  53927. weight: math.unit(1800, "lb"),
  53928. name: "Back",
  53929. image: {
  53930. source: "./media/characters/elaine/back.svg",
  53931. extra: 1641/1233,
  53932. bottom: 53/1694
  53933. }
  53934. },
  53935. },
  53936. [
  53937. {
  53938. name: "Normal",
  53939. height: math.unit(9, "feet"),
  53940. default: true
  53941. },
  53942. ]
  53943. ))
  53944. characterMakers.push(() => makeCharacter(
  53945. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53946. {
  53947. front: {
  53948. height: math.unit(17 + 9/12, "feet"),
  53949. weight: math.unit(8000, "lb"),
  53950. name: "Front",
  53951. image: {
  53952. source: "./media/characters/vera-raven/front.svg",
  53953. extra: 1457/1412,
  53954. bottom: 121/1578
  53955. }
  53956. },
  53957. side: {
  53958. height: math.unit(17 + 9/12, "feet"),
  53959. weight: math.unit(8000, "lb"),
  53960. name: "Side",
  53961. image: {
  53962. source: "./media/characters/vera-raven/side.svg",
  53963. extra: 1510/1464,
  53964. bottom: 54/1564
  53965. }
  53966. },
  53967. },
  53968. [
  53969. {
  53970. name: "Normal",
  53971. height: math.unit(17 + 9/12, "feet"),
  53972. default: true
  53973. },
  53974. ]
  53975. ))
  53976. characterMakers.push(() => makeCharacter(
  53977. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53978. {
  53979. dressed: {
  53980. height: math.unit(6 + 9/12, "feet"),
  53981. name: "Dressed",
  53982. image: {
  53983. source: "./media/characters/nakisha/dressed.svg",
  53984. extra: 1909/1757,
  53985. bottom: 48/1957
  53986. }
  53987. },
  53988. nude: {
  53989. height: math.unit(6 + 9/12, "feet"),
  53990. name: "Nude",
  53991. image: {
  53992. source: "./media/characters/nakisha/nude.svg",
  53993. extra: 1917/1765,
  53994. bottom: 34/1951
  53995. }
  53996. },
  53997. },
  53998. [
  53999. {
  54000. name: "Normal",
  54001. height: math.unit(6 + 9/12, "feet"),
  54002. default: true
  54003. },
  54004. ]
  54005. ))
  54006. characterMakers.push(() => makeCharacter(
  54007. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  54008. {
  54009. front: {
  54010. height: math.unit(87, "meters"),
  54011. name: "Front",
  54012. image: {
  54013. source: "./media/characters/serafin/front.svg",
  54014. extra: 1919/1776,
  54015. bottom: 65/1984
  54016. }
  54017. },
  54018. },
  54019. [
  54020. {
  54021. name: "Normal",
  54022. height: math.unit(87, "meters"),
  54023. default: true
  54024. },
  54025. ]
  54026. ))
  54027. characterMakers.push(() => makeCharacter(
  54028. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  54029. {
  54030. front: {
  54031. height: math.unit(6, "feet"),
  54032. weight: math.unit(200, "lb"),
  54033. name: "Front",
  54034. image: {
  54035. source: "./media/characters/poptart/front.svg",
  54036. extra: 615/583,
  54037. bottom: 23/638
  54038. }
  54039. },
  54040. back: {
  54041. height: math.unit(6, "feet"),
  54042. weight: math.unit(200, "lb"),
  54043. name: "Back",
  54044. image: {
  54045. source: "./media/characters/poptart/back.svg",
  54046. extra: 617/584,
  54047. bottom: 22/639
  54048. }
  54049. },
  54050. frontNsfw: {
  54051. height: math.unit(6, "feet"),
  54052. weight: math.unit(200, "lb"),
  54053. name: "Front (NSFW)",
  54054. image: {
  54055. source: "./media/characters/poptart/front-nsfw.svg",
  54056. extra: 615/583,
  54057. bottom: 23/638
  54058. }
  54059. },
  54060. backNsfw: {
  54061. height: math.unit(6, "feet"),
  54062. weight: math.unit(200, "lb"),
  54063. name: "Back (NSFW)",
  54064. image: {
  54065. source: "./media/characters/poptart/back-nsfw.svg",
  54066. extra: 617/584,
  54067. bottom: 22/639
  54068. }
  54069. },
  54070. hand: {
  54071. height: math.unit(1.14, "feet"),
  54072. name: "Hand",
  54073. image: {
  54074. source: "./media/characters/poptart/hand.svg"
  54075. }
  54076. },
  54077. foot: {
  54078. height: math.unit(1.5, "feet"),
  54079. name: "Foot",
  54080. image: {
  54081. source: "./media/characters/poptart/foot.svg"
  54082. }
  54083. },
  54084. },
  54085. [
  54086. {
  54087. name: "Normal",
  54088. height: math.unit(6, "feet"),
  54089. default: true
  54090. },
  54091. {
  54092. name: "Grande",
  54093. height: math.unit(350, "feet")
  54094. },
  54095. {
  54096. name: "Massif",
  54097. height: math.unit(967, "feet")
  54098. },
  54099. ]
  54100. ))
  54101. characterMakers.push(() => makeCharacter(
  54102. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54103. {
  54104. hyenaSide: {
  54105. height: math.unit(120, "cm"),
  54106. weight: math.unit(120, "lb"),
  54107. name: "Side",
  54108. image: {
  54109. source: "./media/characters/trance/hyena-side.svg",
  54110. extra: 998/904,
  54111. bottom: 76/1074
  54112. }
  54113. },
  54114. },
  54115. [
  54116. {
  54117. name: "Normal",
  54118. height: math.unit(120, "cm"),
  54119. default: true
  54120. },
  54121. {
  54122. name: "Dire",
  54123. height: math.unit(230, "cm")
  54124. },
  54125. {
  54126. name: "Macro",
  54127. height: math.unit(37, "feet")
  54128. },
  54129. ]
  54130. ))
  54131. characterMakers.push(() => makeCharacter(
  54132. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54133. {
  54134. front: {
  54135. height: math.unit(6 + 3/12, "feet"),
  54136. name: "Front",
  54137. image: {
  54138. source: "./media/characters/michael-berretta/front.svg",
  54139. extra: 515/494,
  54140. bottom: 20/535
  54141. }
  54142. },
  54143. back: {
  54144. height: math.unit(6 + 3/12, "feet"),
  54145. name: "Back",
  54146. image: {
  54147. source: "./media/characters/michael-berretta/back.svg",
  54148. extra: 520/497,
  54149. bottom: 21/541
  54150. }
  54151. },
  54152. frontNsfw: {
  54153. height: math.unit(6 + 3/12, "feet"),
  54154. name: "Front (NSFW)",
  54155. image: {
  54156. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54157. extra: 515/494,
  54158. bottom: 20/535
  54159. }
  54160. },
  54161. dick: {
  54162. height: math.unit(1, "feet"),
  54163. name: "Dick",
  54164. image: {
  54165. source: "./media/characters/michael-berretta/dick.svg"
  54166. }
  54167. },
  54168. },
  54169. [
  54170. {
  54171. name: "Normal",
  54172. height: math.unit(6 + 3/12, "feet"),
  54173. default: true
  54174. },
  54175. {
  54176. name: "Big",
  54177. height: math.unit(12, "feet")
  54178. },
  54179. {
  54180. name: "Macro",
  54181. height: math.unit(187.5, "feet")
  54182. },
  54183. ]
  54184. ))
  54185. characterMakers.push(() => makeCharacter(
  54186. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54187. {
  54188. front: {
  54189. height: math.unit(9 + 9/12, "feet"),
  54190. weight: math.unit(1244, "lb"),
  54191. name: "Front",
  54192. image: {
  54193. source: "./media/characters/stella-edgecomb/front.svg",
  54194. extra: 1835/1706,
  54195. bottom: 49/1884
  54196. }
  54197. },
  54198. pen: {
  54199. height: math.unit(0.95, "feet"),
  54200. name: "Pen",
  54201. image: {
  54202. source: "./media/characters/stella-edgecomb/pen.svg"
  54203. }
  54204. },
  54205. },
  54206. [
  54207. {
  54208. name: "Cozy Bear",
  54209. height: math.unit(0.5, "inches")
  54210. },
  54211. {
  54212. name: "Normal",
  54213. height: math.unit(9 + 9/12, "feet"),
  54214. default: true
  54215. },
  54216. {
  54217. name: "Giga Bear",
  54218. height: math.unit(1, "mile")
  54219. },
  54220. {
  54221. name: "Great Bear",
  54222. height: math.unit(53, "miles")
  54223. },
  54224. {
  54225. name: "Goddess Bear",
  54226. height: math.unit(40000, "miles")
  54227. },
  54228. {
  54229. name: "Sun Bear",
  54230. height: math.unit(900000, "miles")
  54231. },
  54232. ]
  54233. ))
  54234. characterMakers.push(() => makeCharacter(
  54235. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54236. {
  54237. anthroFront: {
  54238. height: math.unit(556, "cm"),
  54239. weight: math.unit(2650, "kg"),
  54240. preyCapacity: math.unit(3, "people"),
  54241. name: "Front",
  54242. image: {
  54243. source: "./media/characters/ash´iika/front.svg",
  54244. extra: 710/673,
  54245. bottom: 15/725
  54246. },
  54247. form: "anthro",
  54248. default: true
  54249. },
  54250. anthroSide: {
  54251. height: math.unit(556, "cm"),
  54252. weight: math.unit(2650, "kg"),
  54253. preyCapacity: math.unit(3, "people"),
  54254. name: "Side",
  54255. image: {
  54256. source: "./media/characters/ash´iika/side.svg",
  54257. extra: 696/676,
  54258. bottom: 13/709
  54259. },
  54260. form: "anthro"
  54261. },
  54262. anthroDressed: {
  54263. height: math.unit(556, "cm"),
  54264. weight: math.unit(2650, "kg"),
  54265. preyCapacity: math.unit(3, "people"),
  54266. name: "Dressed",
  54267. image: {
  54268. source: "./media/characters/ash´iika/dressed.svg",
  54269. extra: 710/673,
  54270. bottom: 15/725
  54271. },
  54272. form: "anthro"
  54273. },
  54274. anthroHead: {
  54275. height: math.unit(3.5, "feet"),
  54276. name: "Head",
  54277. image: {
  54278. source: "./media/characters/ash´iika/head.svg",
  54279. extra: 348/291,
  54280. bottom: 45/393
  54281. },
  54282. form: "anthro"
  54283. },
  54284. feralSide: {
  54285. height: math.unit(870, "cm"),
  54286. weight: math.unit(17500, "kg"),
  54287. preyCapacity: math.unit(15, "people"),
  54288. name: "Side",
  54289. image: {
  54290. source: "./media/characters/ash´iika/feral.svg",
  54291. extra: 595/199,
  54292. bottom: 7/602
  54293. },
  54294. form: "feral",
  54295. default: true,
  54296. },
  54297. },
  54298. [
  54299. {
  54300. name: "Normal",
  54301. height: math.unit(556, "cm"),
  54302. default: true,
  54303. form: "anthro"
  54304. },
  54305. {
  54306. name: "Macro",
  54307. height: math.unit(88, "meters"),
  54308. form: "anthro"
  54309. },
  54310. {
  54311. name: "Normal",
  54312. height: math.unit(870, "cm"),
  54313. default: true,
  54314. form: "feral"
  54315. },
  54316. {
  54317. name: "Large",
  54318. height: math.unit(25, "meters"),
  54319. form: "feral"
  54320. },
  54321. ],
  54322. {
  54323. "anthro": {
  54324. name: "Anthro",
  54325. default: true
  54326. },
  54327. "feral": {
  54328. name: "Feral",
  54329. },
  54330. }
  54331. ))
  54332. characterMakers.push(() => makeCharacter(
  54333. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54334. {
  54335. front: {
  54336. height: math.unit(10, "feet"),
  54337. weight: math.unit(800, "lb"),
  54338. name: "Front",
  54339. image: {
  54340. source: "./media/characters/yen/front.svg",
  54341. extra: 443/411,
  54342. bottom: 6/449
  54343. }
  54344. },
  54345. sleeping: {
  54346. height: math.unit(10, "feet"),
  54347. weight: math.unit(800, "lb"),
  54348. name: "Sleeping",
  54349. image: {
  54350. source: "./media/characters/yen/sleeping.svg",
  54351. extra: 470/422,
  54352. bottom: 0/470
  54353. }
  54354. },
  54355. head: {
  54356. height: math.unit(2.2, "feet"),
  54357. name: "Head",
  54358. image: {
  54359. source: "./media/characters/yen/head.svg"
  54360. }
  54361. },
  54362. headAlt: {
  54363. height: math.unit(2.1, "feet"),
  54364. name: "Head (Alt)",
  54365. image: {
  54366. source: "./media/characters/yen/head-alt.svg"
  54367. }
  54368. },
  54369. },
  54370. [
  54371. {
  54372. name: "Normal",
  54373. height: math.unit(10, "feet"),
  54374. default: true
  54375. },
  54376. ]
  54377. ))
  54378. characterMakers.push(() => makeCharacter(
  54379. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54380. {
  54381. front: {
  54382. height: math.unit(12, "feet"),
  54383. name: "Front",
  54384. image: {
  54385. source: "./media/characters/citra/front.svg",
  54386. extra: 1950/1710,
  54387. bottom: 47/1997
  54388. }
  54389. },
  54390. },
  54391. [
  54392. {
  54393. name: "Normal",
  54394. height: math.unit(12, "feet"),
  54395. default: true
  54396. },
  54397. ]
  54398. ))
  54399. characterMakers.push(() => makeCharacter(
  54400. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54401. {
  54402. side: {
  54403. height: math.unit(7 + 10/12, "feet"),
  54404. name: "Side",
  54405. image: {
  54406. source: "./media/characters/sholstim/side.svg",
  54407. extra: 786/682,
  54408. bottom: 40/826
  54409. }
  54410. },
  54411. },
  54412. [
  54413. {
  54414. name: "Normal",
  54415. height: math.unit(7 + 10/12, "feet"),
  54416. default: true
  54417. },
  54418. ]
  54419. ))
  54420. characterMakers.push(() => makeCharacter(
  54421. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54422. {
  54423. front: {
  54424. height: math.unit(3.10, "meters"),
  54425. name: "Front",
  54426. image: {
  54427. source: "./media/characters/aggyn/front.svg",
  54428. extra: 1188/963,
  54429. bottom: 24/1212
  54430. }
  54431. },
  54432. },
  54433. [
  54434. {
  54435. name: "Normal",
  54436. height: math.unit(3.10, "meters"),
  54437. default: true
  54438. },
  54439. ]
  54440. ))
  54441. characterMakers.push(() => makeCharacter(
  54442. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54443. {
  54444. front: {
  54445. height: math.unit(7 + 5/12, "feet"),
  54446. weight: math.unit(687, "lb"),
  54447. name: "Front",
  54448. image: {
  54449. source: "./media/characters/alsandair-hergenroether/front.svg",
  54450. extra: 1251/1186,
  54451. bottom: 75/1326
  54452. }
  54453. },
  54454. back: {
  54455. height: math.unit(7 + 5/12, "feet"),
  54456. weight: math.unit(687, "lb"),
  54457. name: "Back",
  54458. image: {
  54459. source: "./media/characters/alsandair-hergenroether/back.svg",
  54460. extra: 1290/1229,
  54461. bottom: 17/1307
  54462. }
  54463. },
  54464. },
  54465. [
  54466. {
  54467. name: "Max Compression",
  54468. height: math.unit(7 + 5/12, "feet"),
  54469. default: true
  54470. },
  54471. {
  54472. name: "\"Normal\"",
  54473. height: math.unit(2, "universes")
  54474. },
  54475. ]
  54476. ))
  54477. characterMakers.push(() => makeCharacter(
  54478. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54479. {
  54480. front: {
  54481. height: math.unit(4 + 1/12, "feet"),
  54482. weight: math.unit(92, "lb"),
  54483. name: "Front",
  54484. image: {
  54485. source: "./media/characters/ie/front.svg",
  54486. extra: 1585/1352,
  54487. bottom: 91/1676
  54488. }
  54489. },
  54490. },
  54491. [
  54492. {
  54493. name: "Normal",
  54494. height: math.unit(4 + 1/12, "feet"),
  54495. default: true
  54496. },
  54497. ]
  54498. ))
  54499. characterMakers.push(() => makeCharacter(
  54500. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54501. {
  54502. anthro: {
  54503. height: math.unit(6, "feet"),
  54504. weight: math.unit(150, "lb"),
  54505. name: "Front",
  54506. image: {
  54507. source: "./media/characters/willow/anthro.svg",
  54508. extra: 1073/986,
  54509. bottom: 34/1107
  54510. },
  54511. form: "anthro",
  54512. default: true
  54513. },
  54514. taur: {
  54515. height: math.unit(6, "feet"),
  54516. weight: math.unit(150, "lb"),
  54517. name: "Side",
  54518. image: {
  54519. source: "./media/characters/willow/taur.svg",
  54520. extra: 647/512,
  54521. bottom: 136/783
  54522. },
  54523. form: "taur",
  54524. default: true
  54525. },
  54526. },
  54527. [
  54528. {
  54529. name: "Humanoid",
  54530. height: math.unit(2.7, "meters"),
  54531. form: "anthro"
  54532. },
  54533. {
  54534. name: "Normal",
  54535. height: math.unit(9, "meters"),
  54536. form: "anthro",
  54537. default: true
  54538. },
  54539. {
  54540. name: "Humanoid",
  54541. height: math.unit(2.1, "meters"),
  54542. form: "taur"
  54543. },
  54544. {
  54545. name: "Normal",
  54546. height: math.unit(7, "meters"),
  54547. form: "taur",
  54548. default: true
  54549. },
  54550. ],
  54551. {
  54552. "anthro": {
  54553. name: "Anthro",
  54554. default: true
  54555. },
  54556. "taur": {
  54557. name: "Taur",
  54558. },
  54559. }
  54560. ))
  54561. characterMakers.push(() => makeCharacter(
  54562. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54563. {
  54564. front: {
  54565. height: math.unit(2 + 5/12, "feet"),
  54566. name: "Front",
  54567. image: {
  54568. source: "./media/characters/kyan/front.svg",
  54569. extra: 460/334,
  54570. bottom: 23/483
  54571. },
  54572. extraAttributes: {
  54573. "toeLength": {
  54574. name: "Toe Length",
  54575. power: 1,
  54576. type: "length",
  54577. base: math.unit(7, "cm")
  54578. },
  54579. "toeclawLength": {
  54580. name: "Toeclaw Length",
  54581. power: 1,
  54582. type: "length",
  54583. base: math.unit(4.7, "cm")
  54584. },
  54585. "earHeight": {
  54586. name: "Ear Height",
  54587. power: 1,
  54588. type: "length",
  54589. base: math.unit(14.1, "cm")
  54590. },
  54591. }
  54592. },
  54593. paws: {
  54594. height: math.unit(0.45, "feet"),
  54595. name: "Paws",
  54596. image: {
  54597. source: "./media/characters/kyan/paws.svg",
  54598. extra: 581/581,
  54599. bottom: 114/695
  54600. }
  54601. },
  54602. },
  54603. [
  54604. {
  54605. name: "Normal",
  54606. height: math.unit(2 + 5/12, "feet"),
  54607. default: true
  54608. },
  54609. ]
  54610. ))
  54611. characterMakers.push(() => makeCharacter(
  54612. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54613. {
  54614. front: {
  54615. height: math.unit(2 + 2/3, "feet"),
  54616. name: "Front",
  54617. image: {
  54618. source: "./media/characters/xazzon/front.svg",
  54619. extra: 1109/984,
  54620. bottom: 42/1151
  54621. }
  54622. },
  54623. back: {
  54624. height: math.unit(2 + 2/3, "feet"),
  54625. name: "Back",
  54626. image: {
  54627. source: "./media/characters/xazzon/back.svg",
  54628. extra: 1095/971,
  54629. bottom: 23/1118
  54630. }
  54631. },
  54632. },
  54633. [
  54634. {
  54635. name: "Normal",
  54636. height: math.unit(2 + 2/3, "feet"),
  54637. default: true
  54638. },
  54639. ]
  54640. ))
  54641. characterMakers.push(() => makeCharacter(
  54642. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54643. {
  54644. front: {
  54645. height: math.unit(8, "feet"),
  54646. weight: math.unit(300, "lb"),
  54647. name: "Front",
  54648. image: {
  54649. source: "./media/characters/khyla-shadowsong/front.svg",
  54650. extra: 861/798,
  54651. bottom: 32/893
  54652. }
  54653. },
  54654. side: {
  54655. height: math.unit(8, "feet"),
  54656. weight: math.unit(300, "lb"),
  54657. name: "Side",
  54658. image: {
  54659. source: "./media/characters/khyla-shadowsong/side.svg",
  54660. extra: 790/750,
  54661. bottom: 87/877
  54662. }
  54663. },
  54664. back: {
  54665. height: math.unit(8, "feet"),
  54666. weight: math.unit(300, "lb"),
  54667. name: "Back",
  54668. image: {
  54669. source: "./media/characters/khyla-shadowsong/back.svg",
  54670. extra: 855/808,
  54671. bottom: 14/869
  54672. }
  54673. },
  54674. head: {
  54675. height: math.unit(2.7, "feet"),
  54676. name: "Head",
  54677. image: {
  54678. source: "./media/characters/khyla-shadowsong/head.svg"
  54679. }
  54680. },
  54681. },
  54682. [
  54683. {
  54684. name: "Micro",
  54685. height: math.unit(6, "inches")
  54686. },
  54687. {
  54688. name: "Normal",
  54689. height: math.unit(8, "feet"),
  54690. default: true
  54691. },
  54692. ]
  54693. ))
  54694. characterMakers.push(() => makeCharacter(
  54695. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54696. {
  54697. hyperFront: {
  54698. height: math.unit(9 + 4/12, "feet"),
  54699. weight: math.unit(2000, "lb"),
  54700. name: "Front",
  54701. image: {
  54702. source: "./media/characters/tiden/hyper-front.svg",
  54703. extra: 400/382,
  54704. bottom: 6/406
  54705. },
  54706. form: "hyper",
  54707. },
  54708. regularFront: {
  54709. height: math.unit(7 + 10/12, "feet"),
  54710. weight: math.unit(470, "lb"),
  54711. name: "Front",
  54712. image: {
  54713. source: "./media/characters/tiden/regular-front.svg",
  54714. extra: 468/442,
  54715. bottom: 6/474
  54716. },
  54717. form: "regular",
  54718. },
  54719. },
  54720. [
  54721. {
  54722. name: "Normal",
  54723. height: math.unit(9 + 4/12, "feet"),
  54724. default: true,
  54725. form: "hyper"
  54726. },
  54727. {
  54728. name: "Normal",
  54729. height: math.unit(7 + 10/12, "feet"),
  54730. default: true,
  54731. form: "regular"
  54732. },
  54733. ],
  54734. {
  54735. "hyper": {
  54736. name: "Hyper",
  54737. default: true
  54738. },
  54739. "regular": {
  54740. name: "Regular",
  54741. },
  54742. }
  54743. ))
  54744. characterMakers.push(() => makeCharacter(
  54745. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54746. {
  54747. side: {
  54748. height: math.unit(6, "feet"),
  54749. weight: math.unit(150, "lb"),
  54750. name: "Side",
  54751. image: {
  54752. source: "./media/characters/jason-crowe/side.svg",
  54753. extra: 1771/766,
  54754. bottom: 219/1990
  54755. }
  54756. },
  54757. },
  54758. [
  54759. {
  54760. name: "Pocket Gryphon",
  54761. height: math.unit(6, "cm")
  54762. },
  54763. {
  54764. name: "Raven",
  54765. height: math.unit(60, "cm")
  54766. },
  54767. {
  54768. name: "Normal",
  54769. height: math.unit(1, "meter"),
  54770. default: true
  54771. },
  54772. ]
  54773. ))
  54774. characterMakers.push(() => makeCharacter(
  54775. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54776. {
  54777. front: {
  54778. height: math.unit(9 + 6/12, "feet"),
  54779. weight: math.unit(1100, "lb"),
  54780. name: "Front",
  54781. image: {
  54782. source: "./media/characters/django/front.svg",
  54783. extra: 1231/1136,
  54784. bottom: 34/1265
  54785. }
  54786. },
  54787. side: {
  54788. height: math.unit(9 + 6/12, "feet"),
  54789. weight: math.unit(1100, "lb"),
  54790. name: "Side",
  54791. image: {
  54792. source: "./media/characters/django/side.svg",
  54793. extra: 1267/1174,
  54794. bottom: 9/1276
  54795. }
  54796. },
  54797. },
  54798. [
  54799. {
  54800. name: "Normal",
  54801. height: math.unit(9 + 6/12, "feet"),
  54802. default: true
  54803. },
  54804. {
  54805. name: "Macro 1",
  54806. height: math.unit(50, "feet")
  54807. },
  54808. {
  54809. name: "Macro 2",
  54810. height: math.unit(500, "feet")
  54811. },
  54812. {
  54813. name: "Mega Macro",
  54814. height: math.unit(5300, "feet")
  54815. },
  54816. ]
  54817. ))
  54818. characterMakers.push(() => makeCharacter(
  54819. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54820. {
  54821. frontSfw: {
  54822. height: math.unit(120, "cm"),
  54823. weight: math.unit(15, "kg"),
  54824. name: "Front (SFW)",
  54825. image: {
  54826. source: "./media/characters/eri/front-sfw.svg",
  54827. extra: 1014/939,
  54828. bottom: 37/1051
  54829. },
  54830. form: "moth",
  54831. },
  54832. frontNsfw: {
  54833. height: math.unit(120, "cm"),
  54834. weight: math.unit(15, "kg"),
  54835. name: "Front (NSFW)",
  54836. image: {
  54837. source: "./media/characters/eri/front-nsfw.svg",
  54838. extra: 1014/939,
  54839. bottom: 37/1051
  54840. },
  54841. form: "moth",
  54842. default: true
  54843. },
  54844. egg: {
  54845. height: math.unit(10, "cm"),
  54846. name: "Egg",
  54847. image: {
  54848. source: "./media/characters/eri/egg.svg"
  54849. },
  54850. form: "egg",
  54851. default: true
  54852. },
  54853. },
  54854. [
  54855. {
  54856. name: "Normal",
  54857. height: math.unit(120, "cm"),
  54858. default: true,
  54859. form: "moth"
  54860. },
  54861. {
  54862. name: "Normal",
  54863. height: math.unit(10, "cm"),
  54864. default: true,
  54865. form: "egg"
  54866. },
  54867. ],
  54868. {
  54869. "moth": {
  54870. name: "Moth",
  54871. default: true
  54872. },
  54873. "egg": {
  54874. name: "Egg",
  54875. },
  54876. }
  54877. ))
  54878. characterMakers.push(() => makeCharacter(
  54879. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54880. {
  54881. front: {
  54882. height: math.unit(200, "feet"),
  54883. name: "Front",
  54884. image: {
  54885. source: "./media/characters/bishop-dowser/front.svg",
  54886. extra: 933/868,
  54887. bottom: 106/1039
  54888. }
  54889. },
  54890. },
  54891. [
  54892. {
  54893. name: "Giant",
  54894. height: math.unit(200, "feet"),
  54895. default: true
  54896. },
  54897. ]
  54898. ))
  54899. characterMakers.push(() => makeCharacter(
  54900. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54901. {
  54902. front: {
  54903. height: math.unit(2, "meters"),
  54904. preyCapacity: math.unit(3, "people"),
  54905. name: "Front",
  54906. image: {
  54907. source: "./media/characters/fryra/front.svg",
  54908. extra: 1025/948,
  54909. bottom: 30/1055
  54910. },
  54911. extraAttributes: {
  54912. "breastVolume": {
  54913. name: "Breast Volume",
  54914. power: 3,
  54915. type: "volume",
  54916. base: math.unit(8, "liters")
  54917. },
  54918. }
  54919. },
  54920. back: {
  54921. height: math.unit(2, "meters"),
  54922. preyCapacity: math.unit(3, "people"),
  54923. name: "Back",
  54924. image: {
  54925. source: "./media/characters/fryra/back.svg",
  54926. extra: 993/938,
  54927. bottom: 38/1031
  54928. },
  54929. extraAttributes: {
  54930. "breastVolume": {
  54931. name: "Breast Volume",
  54932. power: 3,
  54933. type: "volume",
  54934. base: math.unit(8, "liters")
  54935. },
  54936. }
  54937. },
  54938. head: {
  54939. height: math.unit(1.33, "feet"),
  54940. name: "Head",
  54941. image: {
  54942. source: "./media/characters/fryra/head.svg"
  54943. }
  54944. },
  54945. maw: {
  54946. height: math.unit(0.56, "feet"),
  54947. name: "Maw",
  54948. image: {
  54949. source: "./media/characters/fryra/maw.svg"
  54950. }
  54951. },
  54952. },
  54953. [
  54954. {
  54955. name: "Micro",
  54956. height: math.unit(5, "cm")
  54957. },
  54958. {
  54959. name: "Normal",
  54960. height: math.unit(2, "meters"),
  54961. default: true
  54962. },
  54963. {
  54964. name: "Small Macro",
  54965. height: math.unit(8, "meters")
  54966. },
  54967. {
  54968. name: "Macro",
  54969. height: math.unit(50, "meters")
  54970. },
  54971. {
  54972. name: "Megamacro",
  54973. height: math.unit(1, "km")
  54974. },
  54975. {
  54976. name: "Planetary",
  54977. height: math.unit(300000, "km")
  54978. },
  54979. {
  54980. name: "Universal",
  54981. height: math.unit(250, "lightyears")
  54982. },
  54983. {
  54984. name: "Fabric of Reality",
  54985. height: math.unit(1000, "multiverses")
  54986. },
  54987. ]
  54988. ))
  54989. characterMakers.push(() => makeCharacter(
  54990. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54991. {
  54992. frontDressed: {
  54993. height: math.unit(6 + 2/12, "feet"),
  54994. name: "Front (Dressed)",
  54995. image: {
  54996. source: "./media/characters/fiera/front-dressed.svg",
  54997. extra: 1883/1793,
  54998. bottom: 70/1953
  54999. }
  55000. },
  55001. backDressed: {
  55002. height: math.unit(6 + 2/12, "feet"),
  55003. name: "Back (Dressed)",
  55004. image: {
  55005. source: "./media/characters/fiera/back-dressed.svg",
  55006. extra: 1847/1780,
  55007. bottom: 70/1917
  55008. }
  55009. },
  55010. frontNude: {
  55011. height: math.unit(6 + 2/12, "feet"),
  55012. name: "Front (Nude)",
  55013. image: {
  55014. source: "./media/characters/fiera/front-nude.svg",
  55015. extra: 1875/1785,
  55016. bottom: 66/1941
  55017. }
  55018. },
  55019. backNude: {
  55020. height: math.unit(6 + 2/12, "feet"),
  55021. name: "Back (Nude)",
  55022. image: {
  55023. source: "./media/characters/fiera/back-nude.svg",
  55024. extra: 1855/1788,
  55025. bottom: 44/1899
  55026. }
  55027. },
  55028. maw: {
  55029. height: math.unit(1.3, "feet"),
  55030. name: "Maw",
  55031. image: {
  55032. source: "./media/characters/fiera/maw.svg"
  55033. }
  55034. },
  55035. paw: {
  55036. height: math.unit(1, "feet"),
  55037. name: "Paw",
  55038. image: {
  55039. source: "./media/characters/fiera/paw.svg"
  55040. }
  55041. },
  55042. shoe: {
  55043. height: math.unit(1.05, "feet"),
  55044. name: "Shoe",
  55045. image: {
  55046. source: "./media/characters/fiera/shoe.svg"
  55047. }
  55048. },
  55049. },
  55050. [
  55051. {
  55052. name: "Normal",
  55053. height: math.unit(6 + 2/12, "feet"),
  55054. default: true
  55055. },
  55056. {
  55057. name: "Size Difference",
  55058. height: math.unit(13, "feet")
  55059. },
  55060. {
  55061. name: "Macro",
  55062. height: math.unit(60, "feet")
  55063. },
  55064. {
  55065. name: "Mega Macro",
  55066. height: math.unit(200, "feet")
  55067. },
  55068. ]
  55069. ))
  55070. characterMakers.push(() => makeCharacter(
  55071. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55072. {
  55073. back: {
  55074. height: math.unit(6, "feet"),
  55075. name: "Back",
  55076. image: {
  55077. source: "./media/characters/flare/back.svg",
  55078. extra: 1883/1765,
  55079. bottom: 32/1915
  55080. }
  55081. },
  55082. },
  55083. [
  55084. {
  55085. name: "Normal",
  55086. height: math.unit(6 + 2/12, "feet"),
  55087. default: true
  55088. },
  55089. {
  55090. name: "Size Difference",
  55091. height: math.unit(13, "feet")
  55092. },
  55093. {
  55094. name: "Macro",
  55095. height: math.unit(60, "feet")
  55096. },
  55097. {
  55098. name: "Macro 2",
  55099. height: math.unit(100, "feet")
  55100. },
  55101. {
  55102. name: "Mega Macro",
  55103. height: math.unit(200, "feet")
  55104. },
  55105. ]
  55106. ))
  55107. characterMakers.push(() => makeCharacter(
  55108. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55109. {
  55110. front: {
  55111. height: math.unit(2.2, "m"),
  55112. weight: math.unit(300, "kg"),
  55113. name: "Front",
  55114. image: {
  55115. source: "./media/characters/hanna/front.svg",
  55116. extra: 1696/1502,
  55117. bottom: 206/1902
  55118. }
  55119. },
  55120. },
  55121. [
  55122. {
  55123. name: "Humanoid",
  55124. height: math.unit(2.2, "meters")
  55125. },
  55126. {
  55127. name: "Normal",
  55128. height: math.unit(4.8, "meters"),
  55129. default: true
  55130. },
  55131. ]
  55132. ))
  55133. characterMakers.push(() => makeCharacter(
  55134. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55135. {
  55136. front: {
  55137. height: math.unit(2.8, "meters"),
  55138. name: "Front",
  55139. image: {
  55140. source: "./media/characters/argo/front.svg",
  55141. extra: 731/518,
  55142. bottom: 84/815
  55143. }
  55144. },
  55145. },
  55146. [
  55147. {
  55148. name: "Normal",
  55149. height: math.unit(3, "meters"),
  55150. default: true
  55151. },
  55152. ]
  55153. ))
  55154. characterMakers.push(() => makeCharacter(
  55155. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55156. {
  55157. side: {
  55158. height: math.unit(3.8, "meters"),
  55159. name: "Side",
  55160. image: {
  55161. source: "./media/characters/sybil/side.svg",
  55162. extra: 382/361,
  55163. bottom: 25/407
  55164. }
  55165. },
  55166. },
  55167. [
  55168. {
  55169. name: "Normal",
  55170. height: math.unit(3.8, "meters"),
  55171. default: true
  55172. },
  55173. ]
  55174. ))
  55175. characterMakers.push(() => makeCharacter(
  55176. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55177. {
  55178. side: {
  55179. height: math.unit(6, "meters"),
  55180. name: "Side",
  55181. image: {
  55182. source: "./media/characters/plum/side.svg",
  55183. extra: 858/755,
  55184. bottom: 45/903
  55185. },
  55186. form: "taur",
  55187. default: true
  55188. },
  55189. back: {
  55190. height: math.unit(6.3, "meters"),
  55191. name: "Back",
  55192. image: {
  55193. source: "./media/characters/plum/back.svg",
  55194. extra: 887/813,
  55195. bottom: 32/919
  55196. },
  55197. form: "taur",
  55198. },
  55199. feral: {
  55200. height: math.unit(5.5, "meter"),
  55201. name: "Front",
  55202. image: {
  55203. source: "./media/characters/plum/feral.svg",
  55204. extra: 568/403,
  55205. bottom: 51/619
  55206. },
  55207. form: "feral",
  55208. default: true
  55209. },
  55210. head: {
  55211. height: math.unit(1.46, "meter"),
  55212. name: "Head",
  55213. image: {
  55214. source: "./media/characters/plum/head.svg"
  55215. },
  55216. form: "taur"
  55217. },
  55218. tailTop: {
  55219. height: math.unit(5.6, "meter"),
  55220. name: "Tail (Top)",
  55221. image: {
  55222. source: "./media/characters/plum/tail-top.svg"
  55223. },
  55224. form: "taur",
  55225. },
  55226. tailBottom: {
  55227. height: math.unit(5.6, "meter"),
  55228. name: "Tail (Bottom)",
  55229. image: {
  55230. source: "./media/characters/plum/tail-bottom.svg"
  55231. },
  55232. form: "taur",
  55233. },
  55234. feralHead: {
  55235. height: math.unit(2.56549521, "meter"),
  55236. name: "Head",
  55237. image: {
  55238. source: "./media/characters/plum/head.svg"
  55239. },
  55240. form: "feral"
  55241. },
  55242. feralTailTop: {
  55243. height: math.unit(5.44728435, "meter"),
  55244. name: "Tail (Top)",
  55245. image: {
  55246. source: "./media/characters/plum/tail-top.svg"
  55247. },
  55248. form: "feral",
  55249. },
  55250. feralTailBottom: {
  55251. height: math.unit(5.44728435, "meter"),
  55252. name: "Tail (Bottom)",
  55253. image: {
  55254. source: "./media/characters/plum/tail-bottom.svg"
  55255. },
  55256. form: "feral",
  55257. },
  55258. },
  55259. [
  55260. {
  55261. name: "Normal",
  55262. height: math.unit(6, "meters"),
  55263. default: true,
  55264. form: "taur"
  55265. },
  55266. {
  55267. name: "Normal",
  55268. height: math.unit(5.5, "meters"),
  55269. default: true,
  55270. form: "feral"
  55271. },
  55272. ],
  55273. {
  55274. "taur": {
  55275. name: "Taur",
  55276. default: true
  55277. },
  55278. "feral": {
  55279. name: "Feral",
  55280. },
  55281. }
  55282. ))
  55283. characterMakers.push(() => makeCharacter(
  55284. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55285. {
  55286. front: {
  55287. height: math.unit(6, "feet"),
  55288. weight: math.unit(115, "lb"),
  55289. name: "Front",
  55290. image: {
  55291. source: "./media/characters/celeste-kitsune/front.svg",
  55292. extra: 393/366,
  55293. bottom: 7/400
  55294. }
  55295. },
  55296. side: {
  55297. height: math.unit(6, "feet"),
  55298. weight: math.unit(115, "lb"),
  55299. name: "Side",
  55300. image: {
  55301. source: "./media/characters/celeste-kitsune/side.svg",
  55302. extra: 818/765,
  55303. bottom: 40/858
  55304. }
  55305. },
  55306. },
  55307. [
  55308. {
  55309. name: "Megamacro",
  55310. height: math.unit(1500, "miles"),
  55311. default: true
  55312. },
  55313. ]
  55314. ))
  55315. characterMakers.push(() => makeCharacter(
  55316. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55317. {
  55318. front: {
  55319. height: math.unit(8, "meters"),
  55320. name: "Front",
  55321. image: {
  55322. source: "./media/characters/io/front.svg",
  55323. extra: 865/722,
  55324. bottom: 58/923
  55325. }
  55326. },
  55327. back: {
  55328. height: math.unit(8, "meters"),
  55329. name: "Back",
  55330. image: {
  55331. source: "./media/characters/io/back.svg",
  55332. extra: 920/776,
  55333. bottom: 42/962
  55334. }
  55335. },
  55336. head: {
  55337. height: math.unit(5.09, "meters"),
  55338. name: "Head",
  55339. image: {
  55340. source: "./media/characters/io/head.svg"
  55341. }
  55342. },
  55343. hand: {
  55344. height: math.unit(1.6, "meters"),
  55345. name: "Hand",
  55346. image: {
  55347. source: "./media/characters/io/hand.svg"
  55348. }
  55349. },
  55350. foot: {
  55351. height: math.unit(2.4, "meters"),
  55352. name: "Foot",
  55353. image: {
  55354. source: "./media/characters/io/foot.svg"
  55355. }
  55356. },
  55357. },
  55358. [
  55359. {
  55360. name: "Normal",
  55361. height: math.unit(8, "meters"),
  55362. default: true
  55363. },
  55364. ]
  55365. ))
  55366. characterMakers.push(() => makeCharacter(
  55367. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55368. {
  55369. side: {
  55370. height: math.unit(6 + 3/12, "feet"),
  55371. weight: math.unit(225, "lb"),
  55372. name: "Side",
  55373. image: {
  55374. source: "./media/characters/silas/side.svg",
  55375. extra: 703/653,
  55376. bottom: 23/726
  55377. },
  55378. extraAttributes: {
  55379. "pawLength": {
  55380. name: "Paw Length",
  55381. power: 1,
  55382. type: "length",
  55383. base: math.unit(12, "inches")
  55384. },
  55385. "pawWidth": {
  55386. name: "Paw Width",
  55387. power: 1,
  55388. type: "length",
  55389. base: math.unit(4.5, "inches")
  55390. },
  55391. "pawArea": {
  55392. name: "Paw Area",
  55393. power: 2,
  55394. type: "area",
  55395. base: math.unit(12 * 4.5, "inches^2")
  55396. },
  55397. }
  55398. },
  55399. },
  55400. [
  55401. {
  55402. name: "Normal",
  55403. height: math.unit(6 + 3/12, "feet"),
  55404. default: true
  55405. },
  55406. ]
  55407. ))
  55408. characterMakers.push(() => makeCharacter(
  55409. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55410. {
  55411. back: {
  55412. height: math.unit(1.6, "meters"),
  55413. weight: math.unit(150, "lb"),
  55414. name: "Back",
  55415. image: {
  55416. source: "./media/characters/zari/back.svg",
  55417. extra: 424/411,
  55418. bottom: 32/456
  55419. },
  55420. extraAttributes: {
  55421. "bladderCapacity": {
  55422. name: "Bladder Size",
  55423. power: 3,
  55424. type: "volume",
  55425. base: math.unit(500, "mL")
  55426. },
  55427. "bladderFlow": {
  55428. name: "Flow Rate",
  55429. power: 3,
  55430. type: "volume",
  55431. base: math.unit(25, "mL")
  55432. },
  55433. }
  55434. },
  55435. },
  55436. [
  55437. {
  55438. name: "Normal",
  55439. height: math.unit(1.6, "meters"),
  55440. default: true
  55441. },
  55442. ]
  55443. ))
  55444. characterMakers.push(() => makeCharacter(
  55445. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55446. {
  55447. front: {
  55448. height: math.unit(25, "feet"),
  55449. weight: math.unit(5, "tons"),
  55450. name: "Front",
  55451. image: {
  55452. source: "./media/characters/charlie-human/front.svg",
  55453. extra: 1870/1740,
  55454. bottom: 102/1972
  55455. },
  55456. extraAttributes: {
  55457. "dickLength": {
  55458. name: "Dick Length",
  55459. power: 1,
  55460. type: "length",
  55461. base: math.unit(9, "feet")
  55462. },
  55463. }
  55464. },
  55465. back: {
  55466. height: math.unit(25, "feet"),
  55467. weight: math.unit(5, "tons"),
  55468. name: "Back",
  55469. image: {
  55470. source: "./media/characters/charlie-human/back.svg",
  55471. extra: 1858/1733,
  55472. bottom: 105/1963
  55473. },
  55474. extraAttributes: {
  55475. "dickLength": {
  55476. name: "Dick Length",
  55477. power: 1,
  55478. type: "length",
  55479. base: math.unit(9, "feet")
  55480. },
  55481. }
  55482. },
  55483. },
  55484. [
  55485. {
  55486. name: "\"Normal\"",
  55487. height: math.unit(6 + 4/12, "feet")
  55488. },
  55489. {
  55490. name: "Big",
  55491. height: math.unit(25, "feet"),
  55492. default: true
  55493. },
  55494. ]
  55495. ))
  55496. characterMakers.push(() => makeCharacter(
  55497. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55498. {
  55499. front: {
  55500. height: math.unit(6 + 4/12, "feet"),
  55501. weight: math.unit(320, "lb"),
  55502. name: "Front",
  55503. image: {
  55504. source: "./media/characters/ookitsu/front.svg",
  55505. extra: 1160/976,
  55506. bottom: 38/1198
  55507. }
  55508. },
  55509. frontNsfw: {
  55510. height: math.unit(6 + 4/12, "feet"),
  55511. weight: math.unit(320, "lb"),
  55512. name: "Front (NSFW)",
  55513. image: {
  55514. source: "./media/characters/ookitsu/front-nsfw.svg",
  55515. extra: 1160/976,
  55516. bottom: 38/1198
  55517. }
  55518. },
  55519. back: {
  55520. height: math.unit(6 + 4/12, "feet"),
  55521. weight: math.unit(320, "lb"),
  55522. name: "Back",
  55523. image: {
  55524. source: "./media/characters/ookitsu/back.svg",
  55525. extra: 1030/975,
  55526. bottom: 70/1100
  55527. }
  55528. },
  55529. head: {
  55530. height: math.unit(1.79, "feet"),
  55531. name: "Head",
  55532. image: {
  55533. source: "./media/characters/ookitsu/head.svg"
  55534. }
  55535. },
  55536. hand: {
  55537. height: math.unit(0.92, "feet"),
  55538. name: "Hand",
  55539. image: {
  55540. source: "./media/characters/ookitsu/hand.svg"
  55541. }
  55542. },
  55543. tails: {
  55544. height: math.unit(3.3, "feet"),
  55545. name: "Tails",
  55546. image: {
  55547. source: "./media/characters/ookitsu/tails.svg"
  55548. }
  55549. },
  55550. dick: {
  55551. height: math.unit(1.10833, "feet"),
  55552. name: "Dick",
  55553. image: {
  55554. source: "./media/characters/ookitsu/dick.svg"
  55555. }
  55556. },
  55557. },
  55558. [
  55559. {
  55560. name: "Normal",
  55561. height: math.unit(6 + 4/12, "feet"),
  55562. default: true
  55563. },
  55564. {
  55565. name: "Macro",
  55566. height: math.unit(30, "feet")
  55567. },
  55568. ]
  55569. ))
  55570. characterMakers.push(() => makeCharacter(
  55571. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55572. {
  55573. anthroFront: {
  55574. height: math.unit(6, "feet"),
  55575. weight: math.unit(250, "lb"),
  55576. name: "Front",
  55577. image: {
  55578. source: "./media/characters/jhusky/anthro-front.svg",
  55579. extra: 474/439,
  55580. bottom: 7/481
  55581. },
  55582. form: "anthro",
  55583. default: true
  55584. },
  55585. taurSideSfw: {
  55586. height: math.unit(6 + 4/12, "feet"),
  55587. weight: math.unit(500, "lb"),
  55588. name: "Side (SFW)",
  55589. image: {
  55590. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55591. extra: 1741/1629,
  55592. bottom: 196/1937
  55593. },
  55594. form: "taur",
  55595. default: true
  55596. },
  55597. taurSideNsfw: {
  55598. height: math.unit(6 + 4/12, "feet"),
  55599. weight: math.unit(500, "lb"),
  55600. name: "Taur (NSFW)",
  55601. image: {
  55602. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55603. extra: 1741/1629,
  55604. bottom: 196/1937
  55605. },
  55606. form: "taur",
  55607. },
  55608. },
  55609. [
  55610. {
  55611. name: "Huge",
  55612. height: math.unit(500, "feet"),
  55613. form: "anthro"
  55614. },
  55615. {
  55616. name: "Macro",
  55617. height: math.unit(1000, "feet"),
  55618. default: true,
  55619. form: "anthro"
  55620. },
  55621. {
  55622. name: "Megamacro",
  55623. height: math.unit(10000, "feet"),
  55624. form: "anthro"
  55625. },
  55626. {
  55627. name: "Huge",
  55628. height: math.unit(528, "feet"),
  55629. form: "taur"
  55630. },
  55631. {
  55632. name: "Macro",
  55633. height: math.unit(1056, "feet"),
  55634. default: true,
  55635. form: "taur"
  55636. },
  55637. {
  55638. name: "Megamacro",
  55639. height: math.unit(10556, "feet"),
  55640. form: "taur"
  55641. },
  55642. ],
  55643. {
  55644. "anthro": {
  55645. name: "Anthro",
  55646. default: true
  55647. },
  55648. "taur": {
  55649. name: "Taur",
  55650. },
  55651. }
  55652. ))
  55653. characterMakers.push(() => makeCharacter(
  55654. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55655. {
  55656. front: {
  55657. height: math.unit(8, "feet"),
  55658. weight: math.unit(500, "lb"),
  55659. name: "Front",
  55660. image: {
  55661. source: "./media/characters/armail/front.svg",
  55662. extra: 1753/1669,
  55663. bottom: 155/1908
  55664. }
  55665. },
  55666. back: {
  55667. height: math.unit(8, "feet"),
  55668. weight: math.unit(500, "lb"),
  55669. name: "Back",
  55670. image: {
  55671. source: "./media/characters/armail/back.svg",
  55672. extra: 1872/1803,
  55673. bottom: 63/1935
  55674. }
  55675. },
  55676. },
  55677. [
  55678. {
  55679. name: "Micro",
  55680. height: math.unit(0.25, "feet")
  55681. },
  55682. {
  55683. name: "Normal",
  55684. height: math.unit(8, "feet"),
  55685. default: true
  55686. },
  55687. {
  55688. name: "Mini-macro",
  55689. height: math.unit(30, "feet")
  55690. },
  55691. {
  55692. name: "Macro",
  55693. height: math.unit(400, "feet")
  55694. },
  55695. {
  55696. name: "Mega-macro",
  55697. height: math.unit(6000, "feet")
  55698. },
  55699. ]
  55700. ))
  55701. characterMakers.push(() => makeCharacter(
  55702. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55703. {
  55704. front: {
  55705. height: math.unit(6 + 7/12, "feet"),
  55706. weight: math.unit(210, "lb"),
  55707. name: "Front",
  55708. image: {
  55709. source: "./media/characters/wilfred-t-buxton/front.svg",
  55710. extra: 1068/882,
  55711. bottom: 28/1096
  55712. }
  55713. },
  55714. },
  55715. [
  55716. {
  55717. name: "Normal",
  55718. height: math.unit(6 + 7/12, "feet"),
  55719. default: true
  55720. },
  55721. ]
  55722. ))
  55723. characterMakers.push(() => makeCharacter(
  55724. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55725. {
  55726. front: {
  55727. height: math.unit(5 + 2/12, "feet"),
  55728. weight: math.unit(120, "lb"),
  55729. name: "Front",
  55730. image: {
  55731. source: "./media/characters/leighton-marrow/front.svg",
  55732. extra: 441/409,
  55733. bottom: 37/478
  55734. }
  55735. },
  55736. },
  55737. [
  55738. {
  55739. name: "Normal",
  55740. height: math.unit(5 + 2/12, "feet"),
  55741. default: true
  55742. },
  55743. ]
  55744. ))
  55745. characterMakers.push(() => makeCharacter(
  55746. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55747. {
  55748. front: {
  55749. height: math.unit(4, "meters"),
  55750. weight: math.unit(1200, "kg"),
  55751. name: "Front",
  55752. image: {
  55753. source: "./media/characters/licos/front.svg",
  55754. extra: 1727/1604,
  55755. bottom: 101/1828
  55756. },
  55757. form: "anthro",
  55758. default: true
  55759. },
  55760. taur_side: {
  55761. height: math.unit(20, "meters"),
  55762. weight: math.unit(1100000, "kg"),
  55763. name: "Side",
  55764. image: {
  55765. source: "./media/characters/licos/taur.svg",
  55766. extra: 1158/1091,
  55767. bottom: 80/1238
  55768. },
  55769. form: "taur",
  55770. default: true
  55771. },
  55772. },
  55773. [
  55774. {
  55775. name: "Normal",
  55776. height: math.unit(4, "meters"),
  55777. default: true,
  55778. form: "anthro"
  55779. },
  55780. {
  55781. name: "Normal",
  55782. height: math.unit(20, "meters"),
  55783. default: true,
  55784. form: "taur"
  55785. },
  55786. ],
  55787. {
  55788. "anthro": {
  55789. name: "Anthro",
  55790. default: true
  55791. },
  55792. "taur": {
  55793. name: "Taur",
  55794. },
  55795. }
  55796. ))
  55797. characterMakers.push(() => makeCharacter(
  55798. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55799. {
  55800. front: {
  55801. height: math.unit(10 + 3/12, "feet"),
  55802. name: "Front",
  55803. image: {
  55804. source: "./media/characters/theo-monkey/front.svg",
  55805. extra: 1735/1658,
  55806. bottom: 73/1808
  55807. }
  55808. },
  55809. back: {
  55810. height: math.unit(10 + 3/12, "feet"),
  55811. name: "Back",
  55812. image: {
  55813. source: "./media/characters/theo-monkey/back.svg",
  55814. extra: 1742/1664,
  55815. bottom: 33/1775
  55816. }
  55817. },
  55818. head: {
  55819. height: math.unit(2.29, "feet"),
  55820. name: "Head",
  55821. image: {
  55822. source: "./media/characters/theo-monkey/head.svg"
  55823. }
  55824. },
  55825. handPalm: {
  55826. height: math.unit(1.73, "feet"),
  55827. name: "Hand (Palm)",
  55828. image: {
  55829. source: "./media/characters/theo-monkey/hand-palm.svg"
  55830. }
  55831. },
  55832. handBack: {
  55833. height: math.unit(1.63, "feet"),
  55834. name: "Hand (Back)",
  55835. image: {
  55836. source: "./media/characters/theo-monkey/hand-back.svg"
  55837. }
  55838. },
  55839. footSole: {
  55840. height: math.unit(2.15, "feet"),
  55841. name: "Foot (Sole)",
  55842. image: {
  55843. source: "./media/characters/theo-monkey/foot-sole.svg"
  55844. }
  55845. },
  55846. footSide: {
  55847. height: math.unit(1.6, "feet"),
  55848. name: "Foot (Side)",
  55849. image: {
  55850. source: "./media/characters/theo-monkey/foot-side.svg"
  55851. }
  55852. },
  55853. },
  55854. [
  55855. {
  55856. name: "Normal",
  55857. height: math.unit(10 + 3/12, "feet"),
  55858. default: true
  55859. },
  55860. ]
  55861. ))
  55862. characterMakers.push(() => makeCharacter(
  55863. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55864. {
  55865. front: {
  55866. height: math.unit(11, "feet"),
  55867. weight: math.unit(3000, "lb"),
  55868. preyCapacity: math.unit(10, "people"),
  55869. name: "Front",
  55870. image: {
  55871. source: "./media/characters/brook/front.svg",
  55872. extra: 909/835,
  55873. bottom: 108/1017
  55874. }
  55875. },
  55876. back: {
  55877. height: math.unit(11, "feet"),
  55878. weight: math.unit(3000, "lb"),
  55879. preyCapacity: math.unit(10, "people"),
  55880. name: "Back",
  55881. image: {
  55882. source: "./media/characters/brook/back.svg",
  55883. extra: 976/916,
  55884. bottom: 34/1010
  55885. }
  55886. },
  55887. backAlt: {
  55888. height: math.unit(11, "feet"),
  55889. weight: math.unit(3000, "lb"),
  55890. preyCapacity: math.unit(10, "people"),
  55891. name: "Back (Alt)",
  55892. image: {
  55893. source: "./media/characters/brook/back-alt.svg",
  55894. extra: 1283/1213,
  55895. bottom: 35/1318
  55896. }
  55897. },
  55898. bust: {
  55899. height: math.unit(9.0859030837, "feet"),
  55900. weight: math.unit(3000, "lb"),
  55901. preyCapacity: math.unit(10, "people"),
  55902. name: "Bust",
  55903. image: {
  55904. source: "./media/characters/brook/bust.svg",
  55905. extra: 2043/1923,
  55906. bottom: 0/2043
  55907. }
  55908. },
  55909. },
  55910. [
  55911. {
  55912. name: "Small",
  55913. height: math.unit(11, "feet"),
  55914. default: true
  55915. },
  55916. {
  55917. name: "Towering",
  55918. height: math.unit(5, "km")
  55919. },
  55920. {
  55921. name: "Enormous",
  55922. height: math.unit(25, "earths")
  55923. },
  55924. ]
  55925. ))
  55926. characterMakers.push(() => makeCharacter(
  55927. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55928. {
  55929. front: {
  55930. height: math.unit(4, "feet"),
  55931. weight: math.unit(150, "lb"),
  55932. name: "Front",
  55933. image: {
  55934. source: "./media/characters/squishi/front.svg",
  55935. extra: 1428/1271,
  55936. bottom: 30/1458
  55937. },
  55938. extraAttributes: {
  55939. "pawSize": {
  55940. name: "Paw Size",
  55941. power: 1,
  55942. type: "length",
  55943. base: math.unit(14, "ShoeSizeMensUS"),
  55944. defaultUnit: "ShoeSizeMensUS"
  55945. },
  55946. }
  55947. },
  55948. side: {
  55949. height: math.unit(4, "feet"),
  55950. weight: math.unit(150, "lb"),
  55951. name: "Side",
  55952. image: {
  55953. source: "./media/characters/squishi/side.svg",
  55954. extra: 1428/1271,
  55955. bottom: 30/1458
  55956. },
  55957. extraAttributes: {
  55958. "pawSize": {
  55959. name: "Paw Size",
  55960. power: 1,
  55961. type: "length",
  55962. base: math.unit(14, "ShoeSizeMensUS"),
  55963. defaultUnit: "ShoeSizeMensUS"
  55964. },
  55965. }
  55966. },
  55967. back: {
  55968. height: math.unit(4, "feet"),
  55969. weight: math.unit(150, "lb"),
  55970. name: "Back",
  55971. image: {
  55972. source: "./media/characters/squishi/back.svg",
  55973. extra: 1428/1271,
  55974. bottom: 30/1458
  55975. },
  55976. extraAttributes: {
  55977. "pawSize": {
  55978. name: "Paw Size",
  55979. power: 1,
  55980. type: "length",
  55981. base: math.unit(14, "ShoeSizeMensUS"),
  55982. defaultUnit: "ShoeSizeMensUS"
  55983. },
  55984. }
  55985. },
  55986. },
  55987. [
  55988. {
  55989. name: "Normal",
  55990. height: math.unit(4, "feet"),
  55991. default: true
  55992. },
  55993. ]
  55994. ))
  55995. characterMakers.push(() => makeCharacter(
  55996. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55997. {
  55998. front: {
  55999. height: math.unit(7 + 8/12, "feet"),
  56000. weight: math.unit(333, "lb"),
  56001. name: "Front",
  56002. image: {
  56003. source: "./media/characters/vincent-vasroc/front.svg",
  56004. extra: 1962/1860,
  56005. bottom: 41/2003
  56006. }
  56007. },
  56008. back: {
  56009. height: math.unit(7 + 8/12, "feet"),
  56010. weight: math.unit(333, "lb"),
  56011. name: "Back",
  56012. image: {
  56013. source: "./media/characters/vincent-vasroc/back.svg",
  56014. extra: 1952/1815,
  56015. bottom: 33/1985
  56016. }
  56017. },
  56018. paw: {
  56019. height: math.unit(1.24, "feet"),
  56020. name: "Paw",
  56021. image: {
  56022. source: "./media/characters/vincent-vasroc/paw.svg"
  56023. }
  56024. },
  56025. ear: {
  56026. height: math.unit(0.75, "feet"),
  56027. name: "Ear",
  56028. image: {
  56029. source: "./media/characters/vincent-vasroc/ear.svg"
  56030. }
  56031. },
  56032. },
  56033. [
  56034. {
  56035. name: "Nano",
  56036. height: math.unit(92, "micrometers")
  56037. },
  56038. {
  56039. name: "Normal",
  56040. height: math.unit(7 + 8/12, "feet"),
  56041. default: true
  56042. },
  56043. ]
  56044. ))
  56045. characterMakers.push(() => makeCharacter(
  56046. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56047. {
  56048. frontNsfw: {
  56049. height: math.unit(40, "feet"),
  56050. weight: math.unit(58, "tons"),
  56051. name: "Front (NSFW)",
  56052. image: {
  56053. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56054. extra: 1265/965,
  56055. bottom: 155/1420
  56056. }
  56057. },
  56058. frontSfw: {
  56059. height: math.unit(40, "feet"),
  56060. weight: math.unit(58, "tons"),
  56061. name: "Front (SFW)",
  56062. image: {
  56063. source: "./media/characters/ru-kahn/front-sfw.svg",
  56064. extra: 1265/965,
  56065. bottom: 80/1345
  56066. }
  56067. },
  56068. },
  56069. [
  56070. {
  56071. name: "Small",
  56072. height: math.unit(4, "feet")
  56073. },
  56074. {
  56075. name: "Normal",
  56076. height: math.unit(40, "feet"),
  56077. default: true
  56078. },
  56079. {
  56080. name: "Macro",
  56081. height: math.unit(400, "feet")
  56082. },
  56083. ]
  56084. ))
  56085. characterMakers.push(() => makeCharacter(
  56086. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56087. {
  56088. frontNude: {
  56089. height: math.unit(6 + 5/12, "feet"),
  56090. name: "Front (Nude)",
  56091. image: {
  56092. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56093. extra: 1369/1366,
  56094. bottom: 68/1437
  56095. }
  56096. },
  56097. frontDressed: {
  56098. height: math.unit(6 + 5/12, "feet"),
  56099. name: "Front (Dressed)",
  56100. image: {
  56101. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56102. extra: 1369/1366,
  56103. bottom: 68/1437
  56104. }
  56105. },
  56106. },
  56107. [
  56108. {
  56109. name: "Normal",
  56110. height: math.unit(6 + 5/12, "feet"),
  56111. default: true
  56112. },
  56113. {
  56114. name: "Maximum",
  56115. height: math.unit(1930, "feet")
  56116. },
  56117. ]
  56118. ))
  56119. characterMakers.push(() => makeCharacter(
  56120. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56121. {
  56122. front: {
  56123. height: math.unit(5 + 6/12, "feet"),
  56124. name: "Front",
  56125. image: {
  56126. source: "./media/characters/kaja/front.svg",
  56127. extra: 1874/1514,
  56128. bottom: 117/1991
  56129. }
  56130. },
  56131. },
  56132. [
  56133. {
  56134. name: "Normal",
  56135. height: math.unit(5 + 6/12, "feet"),
  56136. default: true
  56137. },
  56138. ]
  56139. ))
  56140. characterMakers.push(() => makeCharacter(
  56141. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56142. {
  56143. front: {
  56144. height: math.unit(5 + 9/12, "feet"),
  56145. weight: math.unit(200, "lb"),
  56146. name: "Front",
  56147. image: {
  56148. source: "./media/characters/mark-smith/front.svg",
  56149. extra: 1004/943,
  56150. bottom: 58/1062
  56151. }
  56152. },
  56153. back: {
  56154. height: math.unit(5 + 9/12, "feet"),
  56155. weight: math.unit(200, "lb"),
  56156. name: "Back",
  56157. image: {
  56158. source: "./media/characters/mark-smith/back.svg",
  56159. extra: 1023/953,
  56160. bottom: 24/1047
  56161. }
  56162. },
  56163. head: {
  56164. height: math.unit(1.82, "feet"),
  56165. name: "Head",
  56166. image: {
  56167. source: "./media/characters/mark-smith/head.svg"
  56168. }
  56169. },
  56170. hand: {
  56171. height: math.unit(1.4, "feet"),
  56172. name: "Hand",
  56173. image: {
  56174. source: "./media/characters/mark-smith/hand.svg"
  56175. }
  56176. },
  56177. paw: {
  56178. height: math.unit(1.69, "feet"),
  56179. name: "Paw",
  56180. image: {
  56181. source: "./media/characters/mark-smith/paw.svg"
  56182. }
  56183. },
  56184. },
  56185. [
  56186. {
  56187. name: "Micro",
  56188. height: math.unit(0.25, "inches")
  56189. },
  56190. {
  56191. name: "Normal",
  56192. height: math.unit(5 + 9/12, "feet"),
  56193. default: true
  56194. },
  56195. {
  56196. name: "Macro",
  56197. height: math.unit(500, "feet")
  56198. },
  56199. ]
  56200. ))
  56201. characterMakers.push(() => makeCharacter(
  56202. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56203. {
  56204. frontNude: {
  56205. height: math.unit(6, "feet"),
  56206. name: "Front (Nude)",
  56207. image: {
  56208. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56209. extra: 1384/1321,
  56210. bottom: 57/1441
  56211. }
  56212. },
  56213. frontDressed: {
  56214. height: math.unit(6, "feet"),
  56215. name: "Front (Dressed)",
  56216. image: {
  56217. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56218. extra: 1384/1321,
  56219. bottom: 57/1441
  56220. }
  56221. },
  56222. },
  56223. [
  56224. {
  56225. name: "Normal",
  56226. height: math.unit(6, "feet"),
  56227. default: true
  56228. },
  56229. {
  56230. name: "Maximum",
  56231. height: math.unit(1776, "feet")
  56232. },
  56233. ]
  56234. ))
  56235. characterMakers.push(() => makeCharacter(
  56236. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56237. {
  56238. front: {
  56239. height: math.unit(2 + 4/12, "feet"),
  56240. weight: math.unit(350, "lb"),
  56241. name: "Front",
  56242. image: {
  56243. source: "./media/characters/devos/front.svg",
  56244. extra: 958/852,
  56245. bottom: 143/1101
  56246. }
  56247. },
  56248. },
  56249. [
  56250. {
  56251. name: "Base",
  56252. height: math.unit(2 + 4/12, "feet"),
  56253. default: true
  56254. },
  56255. ]
  56256. ))
  56257. characterMakers.push(() => makeCharacter(
  56258. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56259. {
  56260. front: {
  56261. height: math.unit(9 + 2/12, "feet"),
  56262. name: "Front",
  56263. image: {
  56264. source: "./media/characters/hiveheart/front.svg",
  56265. extra: 394/364,
  56266. bottom: 65/459
  56267. }
  56268. },
  56269. back: {
  56270. height: math.unit(9 + 2/12, "feet"),
  56271. name: "Back",
  56272. image: {
  56273. source: "./media/characters/hiveheart/back.svg",
  56274. extra: 374/357,
  56275. bottom: 63/437
  56276. }
  56277. },
  56278. },
  56279. [
  56280. {
  56281. name: "Base",
  56282. height: math.unit(9 + 2/12, "feet"),
  56283. default: true
  56284. },
  56285. ]
  56286. ))
  56287. characterMakers.push(() => makeCharacter(
  56288. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56289. {
  56290. front: {
  56291. height: math.unit(2.5, "inches"),
  56292. weight: math.unit(0.6, "oz"),
  56293. name: "Front",
  56294. image: {
  56295. source: "./media/characters/bryn/front.svg",
  56296. extra: 1480/1205,
  56297. bottom: 27/1507
  56298. }
  56299. },
  56300. back: {
  56301. height: math.unit(2.5, "inches"),
  56302. weight: math.unit(0.6, "oz"),
  56303. name: "Back",
  56304. image: {
  56305. source: "./media/characters/bryn/back.svg",
  56306. extra: 1475/1201,
  56307. bottom: 39/1514
  56308. }
  56309. },
  56310. foot: {
  56311. height: math.unit(0.4, "inches"),
  56312. name: "Foot",
  56313. image: {
  56314. source: "./media/characters/bryn/foot.svg"
  56315. }
  56316. },
  56317. },
  56318. [
  56319. {
  56320. name: "Normal",
  56321. height: math.unit(2.5, "inches"),
  56322. default: true
  56323. },
  56324. ]
  56325. ))
  56326. characterMakers.push(() => makeCharacter(
  56327. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56328. {
  56329. side: {
  56330. height: math.unit(7, "feet"),
  56331. weight: math.unit(657, "kg"),
  56332. name: "Side",
  56333. image: {
  56334. source: "./media/characters/delta/side.svg",
  56335. extra: 781/212,
  56336. bottom: 7/788
  56337. },
  56338. extraAttributes: {
  56339. "wingspan": {
  56340. name: "Wingspan",
  56341. power: 1,
  56342. type: "length",
  56343. base: math.unit(48, "feet")
  56344. },
  56345. "length": {
  56346. name: "Length",
  56347. power: 1,
  56348. type: "length",
  56349. base: math.unit(21, "feet")
  56350. },
  56351. "pawSize": {
  56352. name: "Paw Size",
  56353. power: 2,
  56354. type: "area",
  56355. base: math.unit(1.5*1.4, "feet^2")
  56356. },
  56357. }
  56358. },
  56359. },
  56360. [
  56361. {
  56362. name: "Normal",
  56363. height: math.unit(6, "feet"),
  56364. default: true
  56365. },
  56366. ]
  56367. ))
  56368. characterMakers.push(() => makeCharacter(
  56369. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56370. {
  56371. front: {
  56372. height: math.unit(6, "feet"),
  56373. name: "Front",
  56374. image: {
  56375. source: "./media/characters/pyrow/front.svg",
  56376. extra: 513/486,
  56377. bottom: 14/527
  56378. }
  56379. },
  56380. frontWing: {
  56381. height: math.unit(6, "feet"),
  56382. name: "Front (Wing)",
  56383. image: {
  56384. source: "./media/characters/pyrow/front-wing.svg",
  56385. extra: 539/383,
  56386. bottom: 20/559
  56387. }
  56388. },
  56389. back: {
  56390. height: math.unit(6, "feet"),
  56391. name: "Back",
  56392. image: {
  56393. source: "./media/characters/pyrow/back.svg",
  56394. extra: 500/473,
  56395. bottom: 9/509
  56396. }
  56397. },
  56398. },
  56399. [
  56400. {
  56401. name: "Normal",
  56402. height: math.unit(6, "feet"),
  56403. default: true
  56404. },
  56405. ]
  56406. ))
  56407. characterMakers.push(() => makeCharacter(
  56408. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56409. {
  56410. front: {
  56411. height: math.unit(5, "meters"),
  56412. weight: math.unit(3, "tonnes"),
  56413. name: "Front",
  56414. image: {
  56415. source: "./media/characters/velikan/front.svg",
  56416. extra: 867/744,
  56417. bottom: 71/938
  56418. },
  56419. extraAttributes: {
  56420. "shoeSize": {
  56421. name: "Shoe Size",
  56422. power: 1,
  56423. type: "length",
  56424. base: math.unit(135, "ShoeSizeUK"),
  56425. defaultUnit: "ShoeSizeUK"
  56426. },
  56427. }
  56428. },
  56429. },
  56430. [
  56431. {
  56432. name: "Normal",
  56433. height: math.unit(5, "meters"),
  56434. default: true
  56435. },
  56436. {
  56437. name: "Macro",
  56438. height: math.unit(1, "km")
  56439. },
  56440. {
  56441. name: "Mega Macro",
  56442. height: math.unit(100, "km")
  56443. },
  56444. {
  56445. name: "Giga Macro",
  56446. height: math.unit(2, "megameters")
  56447. },
  56448. {
  56449. name: "Planetary",
  56450. height: math.unit(22, "megameters")
  56451. },
  56452. {
  56453. name: "Solar",
  56454. height: math.unit(8, "gigameters")
  56455. },
  56456. {
  56457. name: "Cosmic",
  56458. height: math.unit(10, "zettameters")
  56459. },
  56460. {
  56461. name: "Omni",
  56462. height: math.unit(9e260, "multiverses")
  56463. },
  56464. ]
  56465. ))
  56466. characterMakers.push(() => makeCharacter(
  56467. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56468. {
  56469. front: {
  56470. height: math.unit(4 + 3/12, "feet"),
  56471. weight: math.unit(90, "lb"),
  56472. name: "Front",
  56473. image: {
  56474. source: "./media/characters/sabiki/front.svg",
  56475. extra: 1662/1423,
  56476. bottom: 65/1727
  56477. }
  56478. },
  56479. },
  56480. [
  56481. {
  56482. name: "Normal",
  56483. height: math.unit(4 + 3/12, "feet"),
  56484. default: true
  56485. },
  56486. ]
  56487. ))
  56488. characterMakers.push(() => makeCharacter(
  56489. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56490. {
  56491. frontSfw: {
  56492. height: math.unit(2, "mm"),
  56493. name: "Front (SFW)",
  56494. image: {
  56495. source: "./media/characters/carmel/front-sfw.svg",
  56496. extra: 1131/1006,
  56497. bottom: 66/1197
  56498. }
  56499. },
  56500. frontNsfw: {
  56501. height: math.unit(2, "mm"),
  56502. name: "Front (NSFW)",
  56503. image: {
  56504. source: "./media/characters/carmel/front-nsfw.svg",
  56505. extra: 1131/1006,
  56506. bottom: 66/1197
  56507. }
  56508. },
  56509. foot: {
  56510. height: math.unit(0.3, "mm"),
  56511. name: "Foot",
  56512. image: {
  56513. source: "./media/characters/carmel/foot.svg"
  56514. }
  56515. },
  56516. tongue: {
  56517. height: math.unit(0.71, "mm"),
  56518. name: "Tongue",
  56519. image: {
  56520. source: "./media/characters/carmel/tongue.svg"
  56521. }
  56522. },
  56523. dick: {
  56524. height: math.unit(0.085, "mm"),
  56525. name: "Dick",
  56526. image: {
  56527. source: "./media/characters/carmel/dick.svg"
  56528. }
  56529. },
  56530. },
  56531. [
  56532. {
  56533. name: "Micro",
  56534. height: math.unit(2, "mm"),
  56535. default: true
  56536. },
  56537. {
  56538. name: "Normal",
  56539. height: math.unit(4 + 8/12, "feet")
  56540. },
  56541. {
  56542. name: "Mega Macro",
  56543. height: math.unit(250, "feet")
  56544. },
  56545. {
  56546. name: "BIGGER",
  56547. height: math.unit(1000, "feet")
  56548. },
  56549. {
  56550. name: "BIGGEST",
  56551. height: math.unit(2, "miles")
  56552. },
  56553. ]
  56554. ))
  56555. characterMakers.push(() => makeCharacter(
  56556. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56557. {
  56558. front: {
  56559. height: math.unit(6.5, "feet"),
  56560. weight: math.unit(198, "lb"),
  56561. name: "Front",
  56562. image: {
  56563. source: "./media/characters/tamani/anthro.svg",
  56564. extra: 930/890,
  56565. bottom: 34/964
  56566. },
  56567. form: "anthro",
  56568. default: true
  56569. },
  56570. side: {
  56571. height: math.unit(6, "feet"),
  56572. weight: math.unit(198*2, "lb"),
  56573. name: "Side",
  56574. image: {
  56575. source: "./media/characters/tamani/feral.svg",
  56576. extra: 559/519,
  56577. bottom: 43/602
  56578. },
  56579. form: "feral"
  56580. },
  56581. },
  56582. [
  56583. {
  56584. name: "Normal",
  56585. height: math.unit(6.5, "feet"),
  56586. default: true,
  56587. form: "anthro"
  56588. },
  56589. {
  56590. name: "Normal",
  56591. height: math.unit(6, "feet"),
  56592. default: true,
  56593. form: "feral"
  56594. },
  56595. ],
  56596. {
  56597. "anthro": {
  56598. name: "Anthro",
  56599. default: true
  56600. },
  56601. "feral": {
  56602. name: "Feral",
  56603. },
  56604. }
  56605. ))
  56606. characterMakers.push(() => makeCharacter(
  56607. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56608. {
  56609. front: {
  56610. height: math.unit(4 + 1/12, "feet"),
  56611. weight: math.unit(114, "lb"),
  56612. name: "Front",
  56613. image: {
  56614. source: "./media/characters/dex/front.svg",
  56615. extra: 787/680,
  56616. bottom: 18/805
  56617. }
  56618. },
  56619. side: {
  56620. height: math.unit(4 + 1/12, "feet"),
  56621. weight: math.unit(114, "lb"),
  56622. name: "Side",
  56623. image: {
  56624. source: "./media/characters/dex/side.svg",
  56625. extra: 785/680,
  56626. bottom: 12/797
  56627. }
  56628. },
  56629. back: {
  56630. height: math.unit(4 + 1/12, "feet"),
  56631. weight: math.unit(114, "lb"),
  56632. name: "Back",
  56633. image: {
  56634. source: "./media/characters/dex/back.svg",
  56635. extra: 785/681,
  56636. bottom: 17/802
  56637. }
  56638. },
  56639. loungewear: {
  56640. height: math.unit(4 + 1/12, "feet"),
  56641. weight: math.unit(114, "lb"),
  56642. name: "Loungewear",
  56643. image: {
  56644. source: "./media/characters/dex/loungewear.svg",
  56645. extra: 787/680,
  56646. bottom: 18/805
  56647. }
  56648. },
  56649. workout: {
  56650. height: math.unit(4 + 1/12, "feet"),
  56651. weight: math.unit(114, "lb"),
  56652. name: "Workout",
  56653. image: {
  56654. source: "./media/characters/dex/workout.svg",
  56655. extra: 787/680,
  56656. bottom: 18/805
  56657. }
  56658. },
  56659. schoolUniform: {
  56660. height: math.unit(4 + 1/12, "feet"),
  56661. weight: math.unit(114, "lb"),
  56662. name: "School-uniform",
  56663. image: {
  56664. source: "./media/characters/dex/school-uniform.svg",
  56665. extra: 787/680,
  56666. bottom: 18/805
  56667. }
  56668. },
  56669. maw: {
  56670. height: math.unit(0.55, "feet"),
  56671. name: "Maw",
  56672. image: {
  56673. source: "./media/characters/dex/maw.svg"
  56674. }
  56675. },
  56676. paw: {
  56677. height: math.unit(0.87, "feet"),
  56678. name: "Paw",
  56679. image: {
  56680. source: "./media/characters/dex/paw.svg"
  56681. }
  56682. },
  56683. bust: {
  56684. height: math.unit(1.67, "feet"),
  56685. name: "Bust",
  56686. image: {
  56687. source: "./media/characters/dex/bust.svg"
  56688. }
  56689. },
  56690. },
  56691. [
  56692. {
  56693. name: "Normal",
  56694. height: math.unit(4 + 1/12, "feet"),
  56695. default: true
  56696. },
  56697. ]
  56698. ))
  56699. characterMakers.push(() => makeCharacter(
  56700. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56701. {
  56702. front: {
  56703. height: math.unit(4 + 3/12, "feet"),
  56704. weight: math.unit(60, "lb"),
  56705. name: "Front",
  56706. image: {
  56707. source: "./media/characters/silke/front.svg",
  56708. extra: 1334/1122,
  56709. bottom: 21/1355
  56710. }
  56711. },
  56712. back: {
  56713. height: math.unit(4 + 3/12, "feet"),
  56714. weight: math.unit(60, "lb"),
  56715. name: "Back",
  56716. image: {
  56717. source: "./media/characters/silke/back.svg",
  56718. extra: 1328/1092,
  56719. bottom: 16/1344
  56720. }
  56721. },
  56722. dressed: {
  56723. height: math.unit(4 + 3/12, "feet"),
  56724. weight: math.unit(60, "lb"),
  56725. name: "Dressed",
  56726. image: {
  56727. source: "./media/characters/silke/dressed.svg",
  56728. extra: 1334/1122,
  56729. bottom: 43/1377
  56730. }
  56731. },
  56732. },
  56733. [
  56734. {
  56735. name: "Normal",
  56736. height: math.unit(4 + 3/12, "feet"),
  56737. default: true
  56738. },
  56739. ]
  56740. ))
  56741. characterMakers.push(() => makeCharacter(
  56742. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56743. {
  56744. front: {
  56745. height: math.unit(1.58, "meters"),
  56746. weight: math.unit(47, "kg"),
  56747. name: "Front",
  56748. image: {
  56749. source: "./media/characters/wireshark/front.svg",
  56750. extra: 883/838,
  56751. bottom: 66/949
  56752. }
  56753. },
  56754. },
  56755. [
  56756. {
  56757. name: "Normal",
  56758. height: math.unit(1.58, "meters"),
  56759. default: true
  56760. },
  56761. ]
  56762. ))
  56763. characterMakers.push(() => makeCharacter(
  56764. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56765. {
  56766. front: {
  56767. height: math.unit(6, "meters"),
  56768. weight: math.unit(15000, "kg"),
  56769. name: "Front",
  56770. image: {
  56771. source: "./media/characters/gallagher/front.svg",
  56772. extra: 532/493,
  56773. bottom: 0/532
  56774. }
  56775. },
  56776. },
  56777. [
  56778. {
  56779. name: "Normal",
  56780. height: math.unit(6, "meters"),
  56781. default: true
  56782. },
  56783. ]
  56784. ))
  56785. characterMakers.push(() => makeCharacter(
  56786. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56787. {
  56788. front: {
  56789. height: math.unit(2.4, "meters"),
  56790. weight: math.unit(270, "kg"),
  56791. name: "Front",
  56792. image: {
  56793. source: "./media/characters/alice/front.svg",
  56794. extra: 950/900,
  56795. bottom: 36/986
  56796. }
  56797. },
  56798. side: {
  56799. height: math.unit(2.4, "meters"),
  56800. weight: math.unit(270, "kg"),
  56801. name: "Side",
  56802. image: {
  56803. source: "./media/characters/alice/side.svg",
  56804. extra: 921/876,
  56805. bottom: 19/940
  56806. }
  56807. },
  56808. dressed: {
  56809. height: math.unit(2.4, "meters"),
  56810. weight: math.unit(270, "kg"),
  56811. name: "Dressed",
  56812. image: {
  56813. source: "./media/characters/alice/dressed.svg",
  56814. extra: 905/850,
  56815. bottom: 81/986
  56816. }
  56817. },
  56818. fishnet: {
  56819. height: math.unit(2.4, "meters"),
  56820. weight: math.unit(270, "kg"),
  56821. name: "Fishnet",
  56822. image: {
  56823. source: "./media/characters/alice/fishnet.svg",
  56824. extra: 905/850,
  56825. bottom: 81/986
  56826. }
  56827. },
  56828. },
  56829. [
  56830. {
  56831. name: "Normal",
  56832. height: math.unit(2.4, "meters"),
  56833. default: true
  56834. },
  56835. ]
  56836. ))
  56837. characterMakers.push(() => makeCharacter(
  56838. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56839. {
  56840. front: {
  56841. height: math.unit(175.25, "feet"),
  56842. name: "Front",
  56843. image: {
  56844. source: "./media/characters/fio/front.svg",
  56845. extra: 1883/1591,
  56846. bottom: 34/1917
  56847. }
  56848. },
  56849. },
  56850. [
  56851. {
  56852. name: "Normal",
  56853. height: math.unit(175.25, "cm"),
  56854. default: true
  56855. },
  56856. ]
  56857. ))
  56858. characterMakers.push(() => makeCharacter(
  56859. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56860. {
  56861. side: {
  56862. height: math.unit(6, "meters"),
  56863. weight: math.unit(3400, "kg"),
  56864. preyCapacity: math.unit(1700, "liters"),
  56865. name: "Side",
  56866. image: {
  56867. source: "./media/characters/hass/side.svg",
  56868. extra: 1058/997,
  56869. bottom: 177/1235
  56870. }
  56871. },
  56872. feeding: {
  56873. height: math.unit(6*0.63, "meters"),
  56874. weight: math.unit(3400, "kg"),
  56875. preyCapacity: math.unit(1700, "liters"),
  56876. name: "Feeding",
  56877. image: {
  56878. source: "./media/characters/hass/feeding.svg",
  56879. extra: 689/579,
  56880. bottom: 146/835
  56881. }
  56882. },
  56883. guts: {
  56884. height: math.unit(6, "meters"),
  56885. weight: math.unit(3400, "kg"),
  56886. name: "Guts",
  56887. image: {
  56888. source: "./media/characters/hass/guts.svg",
  56889. extra: 1223/1198,
  56890. bottom: 182/1405
  56891. }
  56892. },
  56893. dickFront: {
  56894. height: math.unit(1.4, "meters"),
  56895. name: "Dick (Front)",
  56896. image: {
  56897. source: "./media/characters/hass/dick-front.svg"
  56898. }
  56899. },
  56900. dickSide: {
  56901. height: math.unit(1.3, "meters"),
  56902. name: "Dick (Side)",
  56903. image: {
  56904. source: "./media/characters/hass/dick-side.svg"
  56905. }
  56906. },
  56907. dickBack: {
  56908. height: math.unit(1.4, "meters"),
  56909. name: "Dick (Back)",
  56910. image: {
  56911. source: "./media/characters/hass/dick-back.svg"
  56912. }
  56913. },
  56914. },
  56915. [
  56916. {
  56917. name: "Normal",
  56918. height: math.unit(6, "meters"),
  56919. default: true
  56920. },
  56921. ]
  56922. ))
  56923. characterMakers.push(() => makeCharacter(
  56924. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56925. {
  56926. front: {
  56927. height: math.unit(4, "feet"),
  56928. weight: math.unit(60, "lb"),
  56929. name: "Front",
  56930. image: {
  56931. source: "./media/characters/hickory-finnegan/front.svg",
  56932. extra: 444/411,
  56933. bottom: 10/454
  56934. }
  56935. },
  56936. side: {
  56937. height: math.unit(4, "feet"),
  56938. weight: math.unit(60, "lb"),
  56939. name: "Side",
  56940. image: {
  56941. source: "./media/characters/hickory-finnegan/side.svg",
  56942. extra: 444/411,
  56943. bottom: 10/454
  56944. }
  56945. },
  56946. back: {
  56947. height: math.unit(4, "feet"),
  56948. weight: math.unit(60, "lb"),
  56949. name: "Back",
  56950. image: {
  56951. source: "./media/characters/hickory-finnegan/back.svg",
  56952. extra: 444/411,
  56953. bottom: 10/454
  56954. }
  56955. },
  56956. },
  56957. [
  56958. {
  56959. name: "Normal",
  56960. height: math.unit(4, "feet"),
  56961. default: true
  56962. },
  56963. ]
  56964. ))
  56965. characterMakers.push(() => makeCharacter(
  56966. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  56967. {
  56968. snivy_front: {
  56969. height: math.unit(2, "feet"),
  56970. weight: math.unit(17.9, "lb"),
  56971. name: "Front",
  56972. image: {
  56973. source: "./media/characters/robin-phox/snivy-front.svg",
  56974. extra: 569/504,
  56975. bottom: 33/602
  56976. },
  56977. form: "snivy",
  56978. default: true
  56979. },
  56980. snivy_frontNsfw: {
  56981. height: math.unit(2, "feet"),
  56982. weight: math.unit(17.9, "lb"),
  56983. name: "Front (NSFW)",
  56984. image: {
  56985. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56986. extra: 569/504,
  56987. bottom: 33/602
  56988. },
  56989. form: "snivy",
  56990. },
  56991. snivy_back: {
  56992. height: math.unit(2, "feet"),
  56993. weight: math.unit(17.9, "lb"),
  56994. name: "Back",
  56995. image: {
  56996. source: "./media/characters/robin-phox/snivy-back.svg",
  56997. extra: 577/508,
  56998. bottom: 21/598
  56999. },
  57000. form: "snivy",
  57001. },
  57002. snivy_foot: {
  57003. height: math.unit(0.68, "feet"),
  57004. name: "Foot",
  57005. image: {
  57006. source: "./media/characters/robin-phox/snivy-foot.svg"
  57007. },
  57008. form: "snivy",
  57009. },
  57010. snivy_sole: {
  57011. height: math.unit(0.68, "feet"),
  57012. name: "Sole",
  57013. image: {
  57014. source: "./media/characters/robin-phox/snivy-sole.svg"
  57015. },
  57016. form: "snivy",
  57017. },
  57018. yoshi_front: {
  57019. height: math.unit(6, "feet"),
  57020. weight: math.unit(150, "lb"),
  57021. name: "Front",
  57022. image: {
  57023. source: "./media/characters/robin-phox/yoshi-front.svg",
  57024. extra: 890/792,
  57025. bottom: 29/919
  57026. },
  57027. form: "yoshi",
  57028. default: true
  57029. },
  57030. yoshi_frontNsfw: {
  57031. height: math.unit(6, "feet"),
  57032. weight: math.unit(150, "lb"),
  57033. name: "Front (NSFW)",
  57034. image: {
  57035. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57036. extra: 890/792,
  57037. bottom: 29/919
  57038. },
  57039. form: "yoshi",
  57040. },
  57041. yoshi_back: {
  57042. height: math.unit(6, "feet"),
  57043. weight: math.unit(150, "lb"),
  57044. name: "Back",
  57045. image: {
  57046. source: "./media/characters/robin-phox/yoshi-back.svg",
  57047. extra: 890/792,
  57048. bottom: 29/919
  57049. },
  57050. form: "yoshi",
  57051. },
  57052. yoshi_foot: {
  57053. height: math.unit(1.5, "feet"),
  57054. name: "Foot",
  57055. image: {
  57056. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57057. },
  57058. form: "yoshi",
  57059. },
  57060. delphox_front: {
  57061. height: math.unit(4 + 11/12, "feet"),
  57062. weight: math.unit(86, "lb"),
  57063. name: "Front",
  57064. image: {
  57065. source: "./media/characters/robin-phox/delphox-front.svg",
  57066. extra: 1266/1069,
  57067. bottom: 32/1298
  57068. },
  57069. form: "delphox",
  57070. default: true
  57071. },
  57072. delphox_frontNsfw: {
  57073. height: math.unit(4 + 11/12, "feet"),
  57074. weight: math.unit(86, "lb"),
  57075. name: "Front (NSFW)",
  57076. image: {
  57077. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57078. extra: 1266/1069,
  57079. bottom: 32/1298
  57080. },
  57081. form: "delphox",
  57082. },
  57083. delphox_back: {
  57084. height: math.unit(4 + 11/12, "feet"),
  57085. weight: math.unit(86, "lb"),
  57086. name: "Back",
  57087. image: {
  57088. source: "./media/characters/robin-phox/delphox-back.svg",
  57089. extra: 1269/1083,
  57090. bottom: 15/1284
  57091. },
  57092. form: "delphox",
  57093. },
  57094. mienshao_front: {
  57095. height: math.unit(4 + 7/12, "feet"),
  57096. weight: math.unit(78.3, "lb"),
  57097. name: "Front",
  57098. image: {
  57099. source: "./media/characters/robin-phox/mienshao-front.svg",
  57100. extra: 1052/970,
  57101. bottom: 108/1160
  57102. },
  57103. form: "mienshao",
  57104. default: true
  57105. },
  57106. mienshao_frontNsfw: {
  57107. height: math.unit(4 + 7/12, "feet"),
  57108. weight: math.unit(78.3, "lb"),
  57109. name: "Front (NSFW)",
  57110. image: {
  57111. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57112. extra: 1052/970,
  57113. bottom: 108/1160
  57114. },
  57115. form: "mienshao",
  57116. },
  57117. mienshao_back: {
  57118. height: math.unit(4 + 7/12, "feet"),
  57119. weight: math.unit(78.3, "lb"),
  57120. name: "Back",
  57121. image: {
  57122. source: "./media/characters/robin-phox/mienshao-back.svg",
  57123. extra: 1102/982,
  57124. bottom: 32/1134
  57125. },
  57126. form: "mienshao",
  57127. },
  57128. inteleon_front: {
  57129. height: math.unit(6 + 3/12, "feet"),
  57130. weight: math.unit(99.6, "lb"),
  57131. name: "Front",
  57132. image: {
  57133. source: "./media/characters/robin-phox/inteleon-front.svg",
  57134. extra: 910/799,
  57135. bottom: 76/986
  57136. },
  57137. form: "inteleon",
  57138. default: true
  57139. },
  57140. inteleon_frontNsfw: {
  57141. height: math.unit(6 + 3/12, "feet"),
  57142. weight: math.unit(99.6, "lb"),
  57143. name: "Front (NSFW)",
  57144. image: {
  57145. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57146. extra: 910/799,
  57147. bottom: 76/986
  57148. },
  57149. form: "inteleon",
  57150. },
  57151. inteleon_back: {
  57152. height: math.unit(6 + 3/12, "feet"),
  57153. weight: math.unit(99.6, "lb"),
  57154. name: "Back",
  57155. image: {
  57156. source: "./media/characters/robin-phox/inteleon-back.svg",
  57157. extra: 907/796,
  57158. bottom: 25/932
  57159. },
  57160. form: "inteleon",
  57161. },
  57162. reshiram_front: {
  57163. height: math.unit(10 + 6/12, "feet"),
  57164. weight: math.unit(727.5, "lb"),
  57165. name: "Front",
  57166. image: {
  57167. source: "./media/characters/robin-phox/reshiram-front.svg",
  57168. extra: 1198/940,
  57169. bottom: 123/1321
  57170. },
  57171. form: "reshiram",
  57172. },
  57173. reshiram_frontNsfw: {
  57174. height: math.unit(10 + 6/12, "feet"),
  57175. weight: math.unit(727.5, "lb"),
  57176. name: "Front-nsfw",
  57177. image: {
  57178. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57179. extra: 1198/940,
  57180. bottom: 123/1321
  57181. },
  57182. form: "reshiram",
  57183. },
  57184. reshiram_back: {
  57185. height: math.unit(10 + 6/12, "feet"),
  57186. weight: math.unit(727.5, "lb"),
  57187. name: "Back",
  57188. image: {
  57189. source: "./media/characters/robin-phox/reshiram-back.svg",
  57190. extra: 1024/904,
  57191. bottom: 85/1109
  57192. },
  57193. form: "reshiram",
  57194. },
  57195. samurott_front: {
  57196. height: math.unit(8, "feet"),
  57197. weight: math.unit(208.6, "lb"),
  57198. name: "Front",
  57199. image: {
  57200. source: "./media/characters/robin-phox/samurott-front.svg",
  57201. extra: 1048/984,
  57202. bottom: 100/1148
  57203. },
  57204. form: "samurott",
  57205. },
  57206. samurott_frontNsfw: {
  57207. height: math.unit(8, "feet"),
  57208. weight: math.unit(208.6, "lb"),
  57209. name: "Front-nsfw",
  57210. image: {
  57211. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57212. extra: 1048/984,
  57213. bottom: 100/1148
  57214. },
  57215. form: "samurott",
  57216. },
  57217. samurott_back: {
  57218. height: math.unit(8, "feet"),
  57219. weight: math.unit(208.6, "lb"),
  57220. name: "Back",
  57221. image: {
  57222. source: "./media/characters/robin-phox/samurott-back.svg",
  57223. extra: 1110/1042,
  57224. bottom: 12/1122
  57225. },
  57226. form: "samurott",
  57227. },
  57228. samurott_feral: {
  57229. height: math.unit(4 + 11/12, "feet"),
  57230. weight: math.unit(208.6, "lb"),
  57231. name: "Feral",
  57232. image: {
  57233. source: "./media/characters/robin-phox/samurott-feral.svg",
  57234. extra: 766/681,
  57235. bottom: 108/874
  57236. },
  57237. form: "samurott",
  57238. },
  57239. },
  57240. [
  57241. {
  57242. name: "Normal",
  57243. height: math.unit(2, "feet"),
  57244. default: true,
  57245. form: "snivy"
  57246. },
  57247. {
  57248. name: "Normal",
  57249. height: math.unit(6, "feet"),
  57250. default: true,
  57251. form: "yoshi"
  57252. },
  57253. {
  57254. name: "Normal",
  57255. height: math.unit(4 + 11/12, "feet"),
  57256. default: true,
  57257. form: "delphox"
  57258. },
  57259. {
  57260. name: "Normal",
  57261. height: math.unit(4 + 7/12, "feet"),
  57262. default: true,
  57263. form: "mienshao"
  57264. },
  57265. {
  57266. name: "Normal",
  57267. height: math.unit(6 + 3/12, "feet"),
  57268. default: true,
  57269. form: "inteleon"
  57270. },
  57271. {
  57272. name: "Normal",
  57273. height: math.unit(10 + 6/12, "feet"),
  57274. default: true,
  57275. form: "reshiram"
  57276. },
  57277. {
  57278. name: "Normal",
  57279. height: math.unit(8, "feet"),
  57280. default: true,
  57281. form: "samurott"
  57282. },
  57283. {
  57284. name: "Macro",
  57285. height: math.unit(500, "feet"),
  57286. allForms: true
  57287. },
  57288. {
  57289. name: "Mega Macro",
  57290. height: math.unit(10, "earths"),
  57291. allForms: true
  57292. },
  57293. {
  57294. name: "Giga Macro",
  57295. height: math.unit(1, "galaxy"),
  57296. allForms: true
  57297. },
  57298. {
  57299. name: "Godly Macro",
  57300. height: math.unit(1e10, "multiverses"),
  57301. allForms: true
  57302. },
  57303. ],
  57304. {
  57305. "snivy": {
  57306. name: "Snivy",
  57307. default: true
  57308. },
  57309. "yoshi": {
  57310. name: "Yoshi",
  57311. },
  57312. "delphox": {
  57313. name: "Delphox",
  57314. },
  57315. "mienshao": {
  57316. name: "Mienshao",
  57317. },
  57318. "inteleon": {
  57319. name: "Inteleon",
  57320. },
  57321. "reshiram": {
  57322. name: "Reshiram",
  57323. },
  57324. "samurott": {
  57325. name: "Samurott",
  57326. },
  57327. }
  57328. ))
  57329. characterMakers.push(() => makeCharacter(
  57330. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57331. {
  57332. front: {
  57333. height: math.unit(4, "feet"),
  57334. name: "Front",
  57335. image: {
  57336. source: "./media/characters/ash-leung/front.svg",
  57337. extra: 1916/1792,
  57338. bottom: 50/1966
  57339. }
  57340. },
  57341. },
  57342. [
  57343. {
  57344. name: "Atomic",
  57345. height: math.unit(1, "angstrom")
  57346. },
  57347. {
  57348. name: "Microscopic",
  57349. height: math.unit(4000, "angstroms")
  57350. },
  57351. {
  57352. name: "Speck",
  57353. height: math.unit(1, "mm")
  57354. },
  57355. {
  57356. name: "Small",
  57357. height: math.unit(1, "inch")
  57358. },
  57359. {
  57360. name: "Normal",
  57361. height: math.unit(4, "feet"),
  57362. default: true
  57363. },
  57364. ]
  57365. ))
  57366. characterMakers.push(() => makeCharacter(
  57367. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57368. {
  57369. frontDressed: {
  57370. height: math.unit(2.08, "meters"),
  57371. weight: math.unit(175, "lb"),
  57372. name: "Front (Dressed)",
  57373. image: {
  57374. source: "./media/characters/carie/front-dressed.svg",
  57375. extra: 456/417,
  57376. bottom: 7/463
  57377. }
  57378. },
  57379. backDressed: {
  57380. height: math.unit(2.08, "meters"),
  57381. weight: math.unit(175, "lb"),
  57382. name: "Back (Dressed)",
  57383. image: {
  57384. source: "./media/characters/carie/back-dressed.svg",
  57385. extra: 455/414,
  57386. bottom: 11/466
  57387. }
  57388. },
  57389. front: {
  57390. height: math.unit(2, "meters"),
  57391. weight: math.unit(175, "lb"),
  57392. name: "Front",
  57393. image: {
  57394. source: "./media/characters/carie/front.svg",
  57395. extra: 438/399,
  57396. bottom: 12/450
  57397. }
  57398. },
  57399. back: {
  57400. height: math.unit(2, "meters"),
  57401. weight: math.unit(175, "lb"),
  57402. name: "Back",
  57403. image: {
  57404. source: "./media/characters/carie/back.svg",
  57405. extra: 438/397,
  57406. bottom: 7/445
  57407. }
  57408. },
  57409. },
  57410. [
  57411. {
  57412. name: "Normal",
  57413. height: math.unit(2.08, "meters"),
  57414. default: true
  57415. },
  57416. {
  57417. name: "Macro",
  57418. height: math.unit(2.08e3, "meters")
  57419. },
  57420. {
  57421. name: "Mega Macro",
  57422. height: math.unit(2.08e6, "meters")
  57423. },
  57424. {
  57425. name: "Giga Macro",
  57426. height: math.unit(2.08e9, "meters")
  57427. },
  57428. {
  57429. name: "Tera Macro",
  57430. height: math.unit(2.08e12, "meters")
  57431. },
  57432. {
  57433. name: "Peta Macro",
  57434. height: math.unit(2.08e15, "meters")
  57435. },
  57436. {
  57437. name: "Exa Macro",
  57438. height: math.unit(2.08e18, "meters")
  57439. },
  57440. {
  57441. name: "Zetta Macro",
  57442. height: math.unit(2.08e21, "meters")
  57443. },
  57444. {
  57445. name: "Yotta Macro",
  57446. height: math.unit(2.08e24, "meters")
  57447. },
  57448. ]
  57449. ))
  57450. characterMakers.push(() => makeCharacter(
  57451. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57452. {
  57453. front: {
  57454. height: math.unit(5 + 2/12, "feet"),
  57455. weight: math.unit(120, "lb"),
  57456. name: "Front",
  57457. image: {
  57458. source: "./media/characters/sai-bree/front.svg",
  57459. extra: 1843/1702,
  57460. bottom: 91/1934
  57461. }
  57462. },
  57463. back: {
  57464. height: math.unit(5 + 2/12, "feet"),
  57465. weight: math.unit(120, "lb"),
  57466. name: "Back",
  57467. image: {
  57468. source: "./media/characters/sai-bree/back.svg",
  57469. extra: 1809/1637,
  57470. bottom: 56/1865
  57471. }
  57472. },
  57473. },
  57474. [
  57475. {
  57476. name: "Normal",
  57477. height: math.unit(5 + 2/12, "feet"),
  57478. default: true
  57479. },
  57480. {
  57481. name: "Macro",
  57482. height: math.unit(500, "feet")
  57483. },
  57484. ]
  57485. ))
  57486. characterMakers.push(() => makeCharacter(
  57487. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57488. {
  57489. side: {
  57490. height: math.unit(0.77, "meters"),
  57491. weight: math.unit(120, "lb"),
  57492. name: "Side",
  57493. image: {
  57494. source: "./media/characters/davwyn/side.svg",
  57495. extra: 1557/1225,
  57496. bottom: 131/1688
  57497. }
  57498. },
  57499. front: {
  57500. height: math.unit(0.835410, "meters"),
  57501. weight: math.unit(120, "lb"),
  57502. name: "Front",
  57503. image: {
  57504. source: "./media/characters/davwyn/front.svg",
  57505. extra: 870/843,
  57506. bottom: 175/1045
  57507. }
  57508. },
  57509. },
  57510. [
  57511. {
  57512. name: "Minidrake",
  57513. height: math.unit(0.77/4, "meters")
  57514. },
  57515. {
  57516. name: "Normal",
  57517. height: math.unit(0.77, "meters"),
  57518. default: true
  57519. },
  57520. ]
  57521. ))
  57522. characterMakers.push(() => makeCharacter(
  57523. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57524. {
  57525. front: {
  57526. height: math.unit(10 + 3/12, "feet"),
  57527. weight: math.unit(2857, "lb"),
  57528. name: "Front",
  57529. image: {
  57530. source: "./media/characters/balans/front.svg",
  57531. extra: 427/402,
  57532. bottom: 26/453
  57533. }
  57534. },
  57535. side: {
  57536. height: math.unit(10 + 3/12, "feet"),
  57537. weight: math.unit(2857, "lb"),
  57538. name: "Side",
  57539. image: {
  57540. source: "./media/characters/balans/side.svg",
  57541. extra: 397/371,
  57542. bottom: 17/414
  57543. }
  57544. },
  57545. back: {
  57546. height: math.unit(10 + 3/12, "feet"),
  57547. weight: math.unit(2857, "lb"),
  57548. name: "Back",
  57549. image: {
  57550. source: "./media/characters/balans/back.svg",
  57551. extra: 408/381,
  57552. bottom: 14/422
  57553. }
  57554. },
  57555. hand: {
  57556. height: math.unit(1.15, "feet"),
  57557. name: "Hand",
  57558. image: {
  57559. source: "./media/characters/balans/hand.svg"
  57560. }
  57561. },
  57562. footRest: {
  57563. height: math.unit(3.1, "feet"),
  57564. name: "Foot (Rest)",
  57565. image: {
  57566. source: "./media/characters/balans/foot-rest.svg"
  57567. }
  57568. },
  57569. footActive: {
  57570. height: math.unit(3.5, "feet"),
  57571. name: "Foot (Active)",
  57572. image: {
  57573. source: "./media/characters/balans/foot-active.svg"
  57574. }
  57575. },
  57576. },
  57577. [
  57578. {
  57579. name: "Normal",
  57580. height: math.unit(10 + 3/12, "feet"),
  57581. default: true
  57582. },
  57583. ]
  57584. ))
  57585. characterMakers.push(() => makeCharacter(
  57586. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57587. {
  57588. side: {
  57589. height: math.unit(9, "meters"),
  57590. weight: math.unit(114, "tonnes"),
  57591. name: "Side",
  57592. image: {
  57593. source: "./media/characters/eldkveikir/side.svg",
  57594. extra: 1927/338,
  57595. bottom: 42/1969
  57596. }
  57597. },
  57598. sitting: {
  57599. height: math.unit(13.4, "meters"),
  57600. weight: math.unit(114, "tonnes"),
  57601. name: "Sitting",
  57602. image: {
  57603. source: "./media/characters/eldkveikir/sitting.svg",
  57604. extra: 1108/963,
  57605. bottom: 610/1718
  57606. }
  57607. },
  57608. maw: {
  57609. height: math.unit(8.36, "meters"),
  57610. name: "Maw",
  57611. image: {
  57612. source: "./media/characters/eldkveikir/maw.svg"
  57613. }
  57614. },
  57615. hand: {
  57616. height: math.unit(4.84, "meters"),
  57617. name: "Hand",
  57618. image: {
  57619. source: "./media/characters/eldkveikir/hand.svg"
  57620. }
  57621. },
  57622. foot: {
  57623. height: math.unit(6.9, "meters"),
  57624. name: "Foot",
  57625. image: {
  57626. source: "./media/characters/eldkveikir/foot.svg"
  57627. }
  57628. },
  57629. genitals: {
  57630. height: math.unit(9.6, "meters"),
  57631. name: "Genitals",
  57632. image: {
  57633. source: "./media/characters/eldkveikir/genitals.svg"
  57634. }
  57635. },
  57636. },
  57637. [
  57638. {
  57639. name: "Normal",
  57640. height: math.unit(9, "meters"),
  57641. default: true
  57642. },
  57643. ]
  57644. ))
  57645. characterMakers.push(() => makeCharacter(
  57646. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57647. {
  57648. front: {
  57649. height: math.unit(14, "feet"),
  57650. weight: math.unit(4100, "lb"),
  57651. name: "Front",
  57652. image: {
  57653. source: "./media/characters/arrow/front.svg",
  57654. extra: 330/318,
  57655. bottom: 56/386
  57656. }
  57657. },
  57658. },
  57659. [
  57660. {
  57661. name: "Normal",
  57662. height: math.unit(14, "feet"),
  57663. default: true
  57664. },
  57665. {
  57666. name: "Minimacro",
  57667. height: math.unit(63, "feet")
  57668. },
  57669. {
  57670. name: "Macro",
  57671. height: math.unit(630, "feet")
  57672. },
  57673. {
  57674. name: "Megamacro",
  57675. height: math.unit(12600, "feet")
  57676. },
  57677. {
  57678. name: "Gigamacro",
  57679. height: math.unit(18000, "miles")
  57680. },
  57681. ]
  57682. ))
  57683. characterMakers.push(() => makeCharacter(
  57684. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57685. {
  57686. front: {
  57687. height: math.unit(10, "feet"),
  57688. weight: math.unit(2.4, "tons"),
  57689. name: "Front",
  57690. image: {
  57691. source: "./media/characters/3yk-k0-unit/front.svg",
  57692. extra: 573/561,
  57693. bottom: 33/606
  57694. }
  57695. },
  57696. back: {
  57697. height: math.unit(10, "feet"),
  57698. weight: math.unit(2.4, "tons"),
  57699. name: "Back",
  57700. image: {
  57701. source: "./media/characters/3yk-k0-unit/back.svg",
  57702. extra: 614/573,
  57703. bottom: 32/646
  57704. }
  57705. },
  57706. maw: {
  57707. height: math.unit(2.15, "feet"),
  57708. name: "Maw",
  57709. image: {
  57710. source: "./media/characters/3yk-k0-unit/maw.svg"
  57711. }
  57712. },
  57713. },
  57714. [
  57715. {
  57716. name: "Normal",
  57717. height: math.unit(10, "feet"),
  57718. default: true
  57719. },
  57720. ]
  57721. ))
  57722. characterMakers.push(() => makeCharacter(
  57723. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57724. {
  57725. front: {
  57726. height: math.unit(8 + 8/12, "feet"),
  57727. name: "Front",
  57728. image: {
  57729. source: "./media/characters/nemo/front.svg",
  57730. extra: 1308/1217,
  57731. bottom: 57/1365
  57732. }
  57733. },
  57734. },
  57735. [
  57736. {
  57737. name: "Normal",
  57738. height: math.unit(8 + 8/12, "feet"),
  57739. default: true
  57740. },
  57741. ]
  57742. ))
  57743. characterMakers.push(() => makeCharacter(
  57744. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57745. {
  57746. front: {
  57747. height: math.unit(8, "feet"),
  57748. weight: math.unit(760, "lb"),
  57749. name: "Front",
  57750. image: {
  57751. source: "./media/characters/rexx/front.svg",
  57752. extra: 786/750,
  57753. bottom: 17/803
  57754. },
  57755. extraAttributes: {
  57756. "pawLength": {
  57757. name: "Paw Length",
  57758. power: 1,
  57759. type: "length",
  57760. base: math.unit(27, "inches")
  57761. },
  57762. }
  57763. },
  57764. },
  57765. [
  57766. {
  57767. name: "Micro",
  57768. height: math.unit(2, "inches")
  57769. },
  57770. {
  57771. name: "Normal",
  57772. height: math.unit(8, "feet"),
  57773. default: true
  57774. },
  57775. {
  57776. name: "Macro",
  57777. height: math.unit(150, "feet")
  57778. },
  57779. ]
  57780. ))
  57781. characterMakers.push(() => makeCharacter(
  57782. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57783. {
  57784. front: {
  57785. height: math.unit(18, "feet"),
  57786. weight: math.unit(1975, "lb"),
  57787. name: "Front",
  57788. image: {
  57789. source: "./media/characters/draco/front.svg",
  57790. extra: 1325/1241,
  57791. bottom: 83/1408
  57792. }
  57793. },
  57794. back: {
  57795. height: math.unit(18, "feet"),
  57796. weight: math.unit(1975, "lb"),
  57797. name: "Back",
  57798. image: {
  57799. source: "./media/characters/draco/back.svg",
  57800. extra: 1332/1250,
  57801. bottom: 43/1375
  57802. }
  57803. },
  57804. dick: {
  57805. height: math.unit(7.5, "feet"),
  57806. name: "Dick",
  57807. image: {
  57808. source: "./media/characters/draco/dick.svg"
  57809. }
  57810. },
  57811. },
  57812. [
  57813. {
  57814. name: "Normal",
  57815. height: math.unit(18, "feet"),
  57816. default: true
  57817. },
  57818. ]
  57819. ))
  57820. characterMakers.push(() => makeCharacter(
  57821. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57822. {
  57823. front: {
  57824. height: math.unit(3.2, "meters"),
  57825. name: "Front",
  57826. image: {
  57827. source: "./media/characters/harriett/front.svg",
  57828. extra: 1966/1915,
  57829. bottom: 9/1975
  57830. }
  57831. },
  57832. },
  57833. [
  57834. {
  57835. name: "Normal",
  57836. height: math.unit(3.2, "meters"),
  57837. default: true
  57838. },
  57839. ]
  57840. ))
  57841. characterMakers.push(() => makeCharacter(
  57842. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57843. {
  57844. sitting: {
  57845. height: math.unit(0.8, "meter"),
  57846. name: "Sitting",
  57847. image: {
  57848. source: "./media/characters/serpentus/sitting.svg",
  57849. extra: 293/290,
  57850. bottom: 140/433
  57851. }
  57852. },
  57853. },
  57854. [
  57855. {
  57856. name: "Normal",
  57857. height: math.unit(0.8, "meter"),
  57858. default: true
  57859. },
  57860. ]
  57861. ))
  57862. characterMakers.push(() => makeCharacter(
  57863. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  57864. {
  57865. front: {
  57866. height: math.unit(5.7174385736, "feet"),
  57867. name: "Front",
  57868. image: {
  57869. source: "./media/characters/nova-polecat/front.svg",
  57870. extra: 1317/1216,
  57871. bottom: 92/1409
  57872. }
  57873. },
  57874. },
  57875. [
  57876. {
  57877. name: "Normal",
  57878. height: math.unit(5.7174385736, "feet"),
  57879. default: true
  57880. },
  57881. ]
  57882. ))
  57883. characterMakers.push(() => makeCharacter(
  57884. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  57885. {
  57886. front: {
  57887. height: math.unit(5 + 4/12, "feet"),
  57888. weight: math.unit(250, "lb"),
  57889. name: "Front",
  57890. image: {
  57891. source: "./media/characters/mook/front.svg",
  57892. extra: 1088/1037,
  57893. bottom: 132/1220
  57894. }
  57895. },
  57896. back: {
  57897. height: math.unit(5 + 1/12, "feet"),
  57898. weight: math.unit(250, "lb"),
  57899. name: "Back",
  57900. image: {
  57901. source: "./media/characters/mook/back.svg",
  57902. extra: 1184/905,
  57903. bottom: 96/1280
  57904. }
  57905. },
  57906. head: {
  57907. height: math.unit(1.85, "feet"),
  57908. name: "Head",
  57909. image: {
  57910. source: "./media/characters/mook/head.svg"
  57911. }
  57912. },
  57913. hand: {
  57914. height: math.unit(1.9, "feet"),
  57915. name: "Hand",
  57916. image: {
  57917. source: "./media/characters/mook/hand.svg"
  57918. }
  57919. },
  57920. palm: {
  57921. height: math.unit(1.84, "feet"),
  57922. name: "Palm",
  57923. image: {
  57924. source: "./media/characters/mook/palm.svg"
  57925. }
  57926. },
  57927. foot: {
  57928. height: math.unit(1.44, "feet"),
  57929. name: "Foot",
  57930. image: {
  57931. source: "./media/characters/mook/foot.svg"
  57932. }
  57933. },
  57934. sole: {
  57935. height: math.unit(1.44, "feet"),
  57936. name: "Sole",
  57937. image: {
  57938. source: "./media/characters/mook/sole.svg"
  57939. }
  57940. },
  57941. },
  57942. [
  57943. {
  57944. name: "Normal",
  57945. height: math.unit(5 + 4/12, "feet"),
  57946. default: true
  57947. },
  57948. {
  57949. name: "Big",
  57950. height: math.unit(12, "feet")
  57951. },
  57952. ]
  57953. ))
  57954. characterMakers.push(() => makeCharacter(
  57955. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  57956. {
  57957. front: {
  57958. height: math.unit(6 + 10/12, "feet"),
  57959. weight: math.unit(233, "lb"),
  57960. name: "Front",
  57961. image: {
  57962. source: "./media/characters/kayla/front.svg",
  57963. extra: 1850/1775,
  57964. bottom: 65/1915
  57965. }
  57966. },
  57967. },
  57968. [
  57969. {
  57970. name: "Normal",
  57971. height: math.unit(6 + 10/12, "feet"),
  57972. default: true
  57973. },
  57974. {
  57975. name: "Amazonian",
  57976. height: math.unit(12 + 5/12, "feet")
  57977. },
  57978. {
  57979. name: "Mini Giantess",
  57980. height: math.unit(26, "feet")
  57981. },
  57982. {
  57983. name: "Giantess",
  57984. height: math.unit(200, "feet")
  57985. },
  57986. {
  57987. name: "Mega Giantess",
  57988. height: math.unit(2500, "feet")
  57989. },
  57990. {
  57991. name: "City Sized",
  57992. height: math.unit(50, "miles")
  57993. },
  57994. {
  57995. name: "Country Sized",
  57996. height: math.unit(500, "miles")
  57997. },
  57998. {
  57999. name: "Continent Sized",
  58000. height: math.unit(2500, "miles")
  58001. },
  58002. {
  58003. name: "Planet Sized",
  58004. height: math.unit(10000, "miles")
  58005. },
  58006. {
  58007. name: "Star Sized",
  58008. height: math.unit(5e6, "miles")
  58009. },
  58010. {
  58011. name: "Solar System Sized",
  58012. height: math.unit(125, "AU")
  58013. },
  58014. {
  58015. name: "Galaxy Sized",
  58016. height: math.unit(300e3, "lightyears")
  58017. },
  58018. {
  58019. name: "Universe Sized",
  58020. height: math.unit(200e9, "lightyears")
  58021. },
  58022. {
  58023. name: "Multiverse Sized",
  58024. height: math.unit(20, "exauniverses")
  58025. },
  58026. {
  58027. name: "Mother of Existence",
  58028. height: math.unit(1e6, "yottauniverses")
  58029. },
  58030. ]
  58031. ))
  58032. characterMakers.push(() => makeCharacter(
  58033. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58034. {
  58035. side: {
  58036. height: math.unit(9.5, "meters"),
  58037. name: "Side",
  58038. image: {
  58039. source: "./media/characters/kulve-ragnarok/side.svg",
  58040. extra: 364/326,
  58041. bottom: 50/414
  58042. }
  58043. },
  58044. },
  58045. [
  58046. {
  58047. name: "Normal",
  58048. height: math.unit(9.5, "meters"),
  58049. default: true
  58050. },
  58051. ]
  58052. ))
  58053. characterMakers.push(() => makeCharacter(
  58054. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58055. {
  58056. front: {
  58057. height: math.unit(8 + 9/12, "feet"),
  58058. name: "Front",
  58059. image: {
  58060. source: "./media/characters/atlas-goat/front.svg",
  58061. extra: 1462/1323,
  58062. bottom: 12/1474
  58063. }
  58064. },
  58065. },
  58066. [
  58067. {
  58068. name: "Normal",
  58069. height: math.unit(8 + 9/12, "feet"),
  58070. default: true
  58071. },
  58072. {
  58073. name: "Skyline",
  58074. height: math.unit(845, "feet")
  58075. },
  58076. {
  58077. name: "Orbital",
  58078. height: math.unit(93000, "miles")
  58079. },
  58080. {
  58081. name: "Constellation",
  58082. height: math.unit(27000, "lightyears")
  58083. },
  58084. ]
  58085. ))
  58086. characterMakers.push(() => makeCharacter(
  58087. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58088. {
  58089. side: {
  58090. height: math.unit(1.8, "meters"),
  58091. weight: math.unit(120, "kg"),
  58092. name: "Side",
  58093. image: {
  58094. source: "./media/characters/xie-ling/side.svg",
  58095. extra: 646/574,
  58096. bottom: 44/690
  58097. }
  58098. },
  58099. },
  58100. [
  58101. {
  58102. name: "Tiny",
  58103. height: math.unit(1.80, "meters")
  58104. },
  58105. {
  58106. name: "Small",
  58107. height: math.unit(6, "meters")
  58108. },
  58109. {
  58110. name: "Medium",
  58111. height: math.unit(15, "meters")
  58112. },
  58113. {
  58114. name: "Normal",
  58115. height: math.unit(30, "meters"),
  58116. default: true
  58117. },
  58118. {
  58119. name: "Above Normal",
  58120. height: math.unit(60, "meters")
  58121. },
  58122. {
  58123. name: "Big",
  58124. height: math.unit(220, "meters")
  58125. },
  58126. {
  58127. name: "Giant",
  58128. height: math.unit(2.2, "km")
  58129. },
  58130. {
  58131. name: "Macro",
  58132. height: math.unit(25, "km")
  58133. },
  58134. {
  58135. name: "Mega Macro",
  58136. height: math.unit(350, "km")
  58137. },
  58138. {
  58139. name: "Mega Macro+",
  58140. height: math.unit(5000, "km")
  58141. },
  58142. {
  58143. name: "Goddess",
  58144. height: math.unit(3, "multiverses")
  58145. },
  58146. ]
  58147. ))
  58148. characterMakers.push(() => makeCharacter(
  58149. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58150. {
  58151. frontSfw: {
  58152. height: math.unit(5 + 11/12, "feet"),
  58153. weight: math.unit(210, "lb"),
  58154. name: "Front",
  58155. image: {
  58156. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58157. extra: 1928/1821,
  58158. bottom: 45/1973
  58159. }
  58160. },
  58161. backSfw: {
  58162. height: math.unit(5 + 11/12, "feet"),
  58163. weight: math.unit(210, "lb"),
  58164. name: "Back",
  58165. image: {
  58166. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58167. extra: 1920/1813,
  58168. bottom: 34/1954
  58169. }
  58170. },
  58171. frontNsfw: {
  58172. height: math.unit(5 + 11/12, "feet"),
  58173. weight: math.unit(210, "lb"),
  58174. name: "Front (NSFW)",
  58175. image: {
  58176. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58177. extra: 1928/1821,
  58178. bottom: 45/1973
  58179. }
  58180. },
  58181. backNsfw: {
  58182. height: math.unit(5 + 11/12, "feet"),
  58183. weight: math.unit(210, "lb"),
  58184. name: "Back (NSFW)",
  58185. image: {
  58186. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58187. extra: 1920/1813,
  58188. bottom: 34/1954
  58189. }
  58190. },
  58191. },
  58192. [
  58193. {
  58194. name: "Normal",
  58195. height: math.unit(5 + 11/12, "feet"),
  58196. default: true
  58197. },
  58198. {
  58199. name: "Goddess",
  58200. height: math.unit(20 + 3/12, "feet")
  58201. },
  58202. {
  58203. name: "Breaker of Man",
  58204. height: math.unit(329 + 9/12, "feet")
  58205. },
  58206. {
  58207. name: "Solar Justice",
  58208. height: math.unit(0.6, "solarradii")
  58209. },
  58210. {
  58211. name: "She Who Judges",
  58212. height: math.unit(1, "universe")
  58213. },
  58214. ]
  58215. ))
  58216. characterMakers.push(() => makeCharacter(
  58217. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58218. {
  58219. casual_front: {
  58220. height: math.unit(6 + 1/12, "feet"),
  58221. weight: math.unit(190, "lb"),
  58222. preyCapacity: math.unit(1, "people"),
  58223. name: "Front",
  58224. image: {
  58225. source: "./media/characters/managarmr/casual-front.svg",
  58226. extra: 411/381,
  58227. bottom: 15/426
  58228. },
  58229. extraAttributes: {
  58230. "pawSize": {
  58231. name: "Paw Size",
  58232. power: 1,
  58233. type: "length",
  58234. base: math.unit(0.2, "meters")
  58235. },
  58236. },
  58237. form: "casual",
  58238. },
  58239. casual_back: {
  58240. height: math.unit(6 + 1/12, "feet"),
  58241. weight: math.unit(190, "lb"),
  58242. preyCapacity: math.unit(1, "people"),
  58243. name: "Back",
  58244. image: {
  58245. source: "./media/characters/managarmr/casual-back.svg",
  58246. extra: 413/383,
  58247. bottom: 13/426
  58248. },
  58249. extraAttributes: {
  58250. "pawSize": {
  58251. name: "Paw Size",
  58252. power: 1,
  58253. type: "length",
  58254. base: math.unit(0.2, "meters")
  58255. },
  58256. },
  58257. form: "casual",
  58258. },
  58259. base_front: {
  58260. height: math.unit(7, "feet"),
  58261. weight: math.unit(210, "lb"),
  58262. preyCapacity: math.unit(2, "people"),
  58263. name: "Front",
  58264. image: {
  58265. source: "./media/characters/managarmr/base-front.svg",
  58266. extra: 580/485,
  58267. bottom: 32/612
  58268. },
  58269. extraAttributes: {
  58270. "wingspan": {
  58271. name: "Wingspan",
  58272. power: 1,
  58273. type: "length",
  58274. base: math.unit(4, "meters")
  58275. },
  58276. "pawSize": {
  58277. name: "Paw Size",
  58278. power: 1,
  58279. type: "length",
  58280. base: math.unit(0.2, "meters")
  58281. },
  58282. },
  58283. form: "base",
  58284. },
  58285. "true-divine_front": {
  58286. height: math.unit(40, "feet"),
  58287. weight: math.unit(39000, "lb"),
  58288. preyCapacity: math.unit(375, "people"),
  58289. name: "Front",
  58290. image: {
  58291. source: "./media/characters/managarmr/true-divine-front.svg",
  58292. extra: 725/573,
  58293. bottom: 120/845
  58294. },
  58295. extraAttributes: {
  58296. "wingspan": {
  58297. name: "Wingspan",
  58298. power: 1,
  58299. type: "length",
  58300. base: math.unit(20, "meters")
  58301. },
  58302. "pawSize": {
  58303. name: "Paw Size",
  58304. power: 1,
  58305. type: "length",
  58306. base: math.unit(1.5, "meters")
  58307. },
  58308. },
  58309. form: "true-divine",
  58310. },
  58311. },
  58312. [
  58313. {
  58314. name: "Normal",
  58315. height: math.unit(6 + 1/12, "feet"),
  58316. form: "casual",
  58317. default: true
  58318. },
  58319. {
  58320. name: "Normal",
  58321. height: math.unit(7, "feet"),
  58322. form: "base",
  58323. default: true
  58324. },
  58325. ],
  58326. {
  58327. "casual": {
  58328. name: "Casual",
  58329. default: true
  58330. },
  58331. "base": {
  58332. name: "Base",
  58333. },
  58334. "true-divine": {
  58335. name: "True Divine",
  58336. },
  58337. }
  58338. ))
  58339. characterMakers.push(() => makeCharacter(
  58340. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58341. {
  58342. front: {
  58343. height: math.unit(1.8, "meters"),
  58344. weight: math.unit(110, "kg"),
  58345. name: "Front",
  58346. image: {
  58347. source: "./media/characters/mystra/front.svg",
  58348. extra: 529/442,
  58349. bottom: 31/560
  58350. }
  58351. },
  58352. frontLewd: {
  58353. height: math.unit(1.8, "meters"),
  58354. weight: math.unit(110, "kg"),
  58355. name: "Front (Lewd)",
  58356. image: {
  58357. source: "./media/characters/mystra/front-lewd.svg",
  58358. extra: 529/442,
  58359. bottom: 31/560
  58360. }
  58361. },
  58362. head: {
  58363. height: math.unit(1.63, "feet"),
  58364. name: "Head",
  58365. image: {
  58366. source: "./media/characters/mystra/head.svg"
  58367. }
  58368. },
  58369. paw: {
  58370. height: math.unit(1.9, "feet"),
  58371. name: "Paw",
  58372. image: {
  58373. source: "./media/characters/mystra/paw.svg"
  58374. }
  58375. },
  58376. },
  58377. [
  58378. {
  58379. name: "Incognito",
  58380. height: math.unit(2.3, "meters")
  58381. },
  58382. {
  58383. name: "Small Macro",
  58384. height: math.unit(300, "meters")
  58385. },
  58386. {
  58387. name: "Small Mega",
  58388. height: math.unit(2, "km")
  58389. },
  58390. {
  58391. name: "Mega",
  58392. height: math.unit(30, "km")
  58393. },
  58394. {
  58395. name: "Small Giga",
  58396. height: math.unit(100, "km")
  58397. },
  58398. {
  58399. name: "Giga",
  58400. height: math.unit(1000, "km"),
  58401. default: true
  58402. },
  58403. {
  58404. name: "Continental",
  58405. height: math.unit(5000, "km")
  58406. },
  58407. {
  58408. name: "Terra",
  58409. height: math.unit(20000, "km")
  58410. },
  58411. {
  58412. name: "Solar",
  58413. height: math.unit(2e6, "km")
  58414. },
  58415. {
  58416. name: "Galactic",
  58417. height: math.unit(528502, "lightyears")
  58418. },
  58419. {
  58420. name: "Universal",
  58421. height: math.unit(20, "universes")
  58422. },
  58423. ]
  58424. ))
  58425. characterMakers.push(() => makeCharacter(
  58426. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58427. {
  58428. front: {
  58429. height: math.unit(2, "meters"),
  58430. weight: math.unit(140, "kg"),
  58431. name: "Front",
  58432. image: {
  58433. source: "./media/characters/caleb/front.svg",
  58434. extra: 873/817,
  58435. bottom: 47/920
  58436. }
  58437. },
  58438. back: {
  58439. height: math.unit(2, "meters"),
  58440. weight: math.unit(140, "kg"),
  58441. name: "Back",
  58442. image: {
  58443. source: "./media/characters/caleb/back.svg",
  58444. extra: 877/828,
  58445. bottom: 24/901
  58446. }
  58447. },
  58448. snakeTail: {
  58449. height: math.unit(1.44, "feet"),
  58450. name: "Snake Tail",
  58451. image: {
  58452. source: "./media/characters/caleb/snake-tail.svg"
  58453. }
  58454. },
  58455. dick: {
  58456. height: math.unit(2.6, "feet"),
  58457. name: "Dick",
  58458. image: {
  58459. source: "./media/characters/caleb/dick.svg"
  58460. }
  58461. },
  58462. },
  58463. [
  58464. {
  58465. name: "Incognito",
  58466. height: math.unit(3, "meters")
  58467. },
  58468. {
  58469. name: "Home Size",
  58470. height: math.unit(200, "meters"),
  58471. default: true
  58472. },
  58473. {
  58474. name: "Macro",
  58475. height: math.unit(500, "meters")
  58476. },
  58477. {
  58478. name: "Big Macro",
  58479. height: math.unit(5, "km")
  58480. },
  58481. {
  58482. name: "Giga",
  58483. height: math.unit(250, "km")
  58484. },
  58485. {
  58486. name: "Giga+",
  58487. height: math.unit(5000, "km")
  58488. },
  58489. {
  58490. name: "Small Terra",
  58491. height: math.unit(35e3, "km")
  58492. },
  58493. {
  58494. name: "Terra",
  58495. height: math.unit(2e6, "km")
  58496. },
  58497. {
  58498. name: "Terra+",
  58499. height: math.unit(1.5e6, "km")
  58500. },
  58501. ]
  58502. ))
  58503. characterMakers.push(() => makeCharacter(
  58504. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58505. {
  58506. front: {
  58507. height: math.unit(2, "meters"),
  58508. weight: math.unit(120, "kg"),
  58509. name: "Front",
  58510. image: {
  58511. source: "./media/characters/gilirian/front.svg",
  58512. extra: 805/737,
  58513. bottom: 13/818
  58514. }
  58515. },
  58516. side: {
  58517. height: math.unit(2, "meters"),
  58518. weight: math.unit(120, "kg"),
  58519. name: "Side",
  58520. image: {
  58521. source: "./media/characters/gilirian/side.svg",
  58522. extra: 810/746,
  58523. bottom: 6/816
  58524. }
  58525. },
  58526. back: {
  58527. height: math.unit(2, "meters"),
  58528. weight: math.unit(120, "kg"),
  58529. name: "Back",
  58530. image: {
  58531. source: "./media/characters/gilirian/back.svg",
  58532. extra: 815/745,
  58533. bottom: 15/830
  58534. }
  58535. },
  58536. frontNsfw: {
  58537. height: math.unit(2, "meters"),
  58538. weight: math.unit(120, "kg"),
  58539. name: "Front (NSFW)",
  58540. image: {
  58541. source: "./media/characters/gilirian/front-nsfw.svg",
  58542. extra: 805/737,
  58543. bottom: 13/818
  58544. }
  58545. },
  58546. sideNsfw: {
  58547. height: math.unit(2, "meters"),
  58548. weight: math.unit(120, "kg"),
  58549. name: "Side (NSFW)",
  58550. image: {
  58551. source: "./media/characters/gilirian/side-nsfw.svg",
  58552. extra: 810/746,
  58553. bottom: 6/816
  58554. }
  58555. },
  58556. },
  58557. [
  58558. {
  58559. name: "Incognito",
  58560. height: math.unit(2, "meters"),
  58561. default: true
  58562. },
  58563. {
  58564. name: "Macro",
  58565. height: math.unit(250, "meters")
  58566. },
  58567. {
  58568. name: "Big Macro",
  58569. height: math.unit(1500, "meters")
  58570. },
  58571. {
  58572. name: "Mega",
  58573. height: math.unit(40, "km")
  58574. },
  58575. {
  58576. name: "Giga",
  58577. height: math.unit(300, "km")
  58578. },
  58579. {
  58580. name: "Extra Giga",
  58581. height: math.unit(5000, "km")
  58582. },
  58583. {
  58584. name: "Small Terra",
  58585. height: math.unit(10e3, "km")
  58586. },
  58587. {
  58588. name: "Terra",
  58589. height: math.unit(3e5, "km")
  58590. },
  58591. {
  58592. name: "Galactic",
  58593. height: math.unit(369950, "lightyears")
  58594. },
  58595. ]
  58596. ))
  58597. characterMakers.push(() => makeCharacter(
  58598. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58599. {
  58600. front: {
  58601. height: math.unit(2.5, "meters"),
  58602. weight: math.unit(230, "lb"),
  58603. name: "Front",
  58604. image: {
  58605. source: "./media/characters/tarken/front.svg",
  58606. extra: 764/720,
  58607. bottom: 49/813
  58608. }
  58609. },
  58610. back: {
  58611. height: math.unit(2.5, "meters"),
  58612. weight: math.unit(230, "lb"),
  58613. name: "Back",
  58614. image: {
  58615. source: "./media/characters/tarken/back.svg",
  58616. extra: 756/720,
  58617. bottom: 35/791
  58618. }
  58619. },
  58620. frontNsfw: {
  58621. height: math.unit(2.5, "meters"),
  58622. weight: math.unit(230, "lb"),
  58623. name: "Front (NSFW)",
  58624. image: {
  58625. source: "./media/characters/tarken/front-nsfw.svg",
  58626. extra: 764/720,
  58627. bottom: 49/813
  58628. }
  58629. },
  58630. backNsfw: {
  58631. height: math.unit(2.5, "meters"),
  58632. weight: math.unit(230, "lb"),
  58633. name: "Back (NSFW)",
  58634. image: {
  58635. source: "./media/characters/tarken/back-nsfw.svg",
  58636. extra: 756/720,
  58637. bottom: 35/791
  58638. }
  58639. },
  58640. head: {
  58641. height: math.unit(2.22, "feet"),
  58642. name: "Head",
  58643. image: {
  58644. source: "./media/characters/tarken/head.svg"
  58645. }
  58646. },
  58647. tail: {
  58648. height: math.unit(5.25, "feet"),
  58649. name: "Tail",
  58650. image: {
  58651. source: "./media/characters/tarken/tail.svg"
  58652. }
  58653. },
  58654. dick: {
  58655. height: math.unit(1.95, "feet"),
  58656. name: "Dick",
  58657. image: {
  58658. source: "./media/characters/tarken/dick.svg"
  58659. }
  58660. },
  58661. hand: {
  58662. height: math.unit(1.78, "feet"),
  58663. name: "Hand",
  58664. image: {
  58665. source: "./media/characters/tarken/hand.svg"
  58666. }
  58667. },
  58668. beam: {
  58669. height: math.unit(1.5, "feet"),
  58670. name: "Beam",
  58671. image: {
  58672. source: "./media/characters/tarken/beam.svg"
  58673. }
  58674. },
  58675. },
  58676. [
  58677. {
  58678. name: "Original Size",
  58679. height: math.unit(2.5, "meters")
  58680. },
  58681. {
  58682. name: "Macro",
  58683. height: math.unit(150, "meters"),
  58684. default: true
  58685. },
  58686. {
  58687. name: "Macro+",
  58688. height: math.unit(300, "meters")
  58689. },
  58690. {
  58691. name: "Mega",
  58692. height: math.unit(2, "km")
  58693. },
  58694. {
  58695. name: "Mega+",
  58696. height: math.unit(35, "km")
  58697. },
  58698.  {
  58699. name: "Mega++",
  58700. height: math.unit(60, "km")
  58701. },
  58702. {
  58703. name: "Giga",
  58704. height: math.unit(200, "km")
  58705. },
  58706. {
  58707. name: "Giga+",
  58708. height: math.unit(2500, "km")
  58709. },
  58710. {
  58711. name: "Giga++",
  58712. height: math.unit(6600, "km")
  58713. },
  58714. {
  58715. name: "Terra",
  58716. height: math.unit(20000, "km")
  58717. },
  58718. {
  58719. name: "Terra+",
  58720. height: math.unit(300000, "km")
  58721. },
  58722. ]
  58723. ))
  58724. characterMakers.push(() => makeCharacter(
  58725. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  58726. {
  58727. magpie_dressed: {
  58728. height: math.unit(1.7, "meters"),
  58729. weight: math.unit(70, "kg"),
  58730. name: "Dressed",
  58731. image: {
  58732. source: "./media/characters/otreus/magpie-dressed.svg",
  58733. extra: 691/672,
  58734. bottom: 116/807
  58735. },
  58736. form: "magpie",
  58737. default: true
  58738. },
  58739. magpie_nude: {
  58740. height: math.unit(1.7, "meters"),
  58741. weight: math.unit(70, "kg"),
  58742. name: "Nude",
  58743. image: {
  58744. source: "./media/characters/otreus/magpie-nude.svg",
  58745. extra: 691/672,
  58746. bottom: 116/807
  58747. },
  58748. form: "magpie",
  58749. },
  58750. magpie_dressedLewd: {
  58751. height: math.unit(1.7, "meters"),
  58752. weight: math.unit(70, "kg"),
  58753. name: "Dressed (Lewd)",
  58754. image: {
  58755. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  58756. extra: 691/672,
  58757. bottom: 116/807
  58758. },
  58759. form: "magpie",
  58760. },
  58761. magpie_nudeLewd: {
  58762. height: math.unit(1.7, "meters"),
  58763. weight: math.unit(70, "kg"),
  58764. name: "Nude (Lewd)",
  58765. image: {
  58766. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  58767. extra: 691/672,
  58768. bottom: 116/807
  58769. },
  58770. form: "magpie",
  58771. },
  58772. magpie_leftFoot: {
  58773. height: math.unit(1.58, "feet"),
  58774. name: "Left Foot",
  58775. image: {
  58776. source: "./media/characters/otreus/magpie-left-foot.svg"
  58777. },
  58778. form: "magpie",
  58779. },
  58780. magpie_rightFoot: {
  58781. height: math.unit(1.58, "feet"),
  58782. name: "Right Foot",
  58783. image: {
  58784. source: "./media/characters/otreus/magpie-right-foot.svg"
  58785. },
  58786. form: "magpie",
  58787. },
  58788. magpie_wingspan: {
  58789. height: math.unit(2, "meters"),
  58790. weight: math.unit(70, "kg"),
  58791. name: "Wingspan",
  58792. image: {
  58793. source: "./media/characters/otreus/magpie-wingspan.svg"
  58794. },
  58795. extraAttributes: {
  58796. "wingspan": {
  58797. name: "Wingspan",
  58798. power: 1,
  58799. type: "length",
  58800. base: math.unit(3.35, "meters")
  58801. },
  58802. },
  58803. form: "magpie",
  58804. },
  58805. hippogriff_dressed: {
  58806. height: math.unit(1.7, "meters"),
  58807. weight: math.unit(70, "kg"),
  58808. name: "Dressed",
  58809. image: {
  58810. source: "./media/characters/otreus/hippogriff-dressed.svg",
  58811. extra: 710/689,
  58812. bottom: 67/777
  58813. },
  58814. form: "hippogriff",
  58815. default: true
  58816. },
  58817. hippogriff_nude: {
  58818. height: math.unit(1.7, "meters"),
  58819. weight: math.unit(70, "kg"),
  58820. name: "Nude",
  58821. image: {
  58822. source: "./media/characters/otreus/hippogriff-nude.svg",
  58823. extra: 710/689,
  58824. bottom: 67/777
  58825. },
  58826. form: "hippogriff",
  58827. },
  58828. hippogriff_dressedLewd: {
  58829. height: math.unit(1.7, "meters"),
  58830. weight: math.unit(70, "kg"),
  58831. name: "Dressed (Lewd)",
  58832. image: {
  58833. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  58834. extra: 710/689,
  58835. bottom: 67/777
  58836. },
  58837. form: "hippogriff",
  58838. },
  58839. hippogriff_nudeLewd: {
  58840. height: math.unit(1.7, "meters"),
  58841. weight: math.unit(70, "kg"),
  58842. name: "Nude (Lewd)",
  58843. image: {
  58844. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  58845. extra: 710/689,
  58846. bottom: 67/777
  58847. },
  58848. form: "hippogriff",
  58849. },
  58850. },
  58851. [
  58852. {
  58853. name: "Original Size",
  58854. height: math.unit(1.7, "meters"),
  58855. allForms: true
  58856. },
  58857. {
  58858. name: "Incognito Size",
  58859. height: math.unit(2, "meters"),
  58860. allForms: true
  58861. },
  58862. {
  58863. name: "Mega",
  58864. height: math.unit(2, "km"),
  58865. allForms: true
  58866. },
  58867. {
  58868. name: "Mega+",
  58869. height: math.unit(40, "km"),
  58870. allForms: true
  58871. },
  58872. {
  58873. name: "Giga",
  58874. height: math.unit(250, "km"),
  58875. allForms: true
  58876. },
  58877. {
  58878. name: "Giga+",
  58879. height: math.unit(3000, "km"),
  58880. allForms: true
  58881. },
  58882. {
  58883. name: "Terra",
  58884. height: math.unit(20000, "km"),
  58885. allForms: true
  58886. },
  58887. {
  58888. name: "Solar (Home Size)",
  58889. height: math.unit(3e6, "km"),
  58890. allForms: true,
  58891. default: true
  58892. },
  58893. ],
  58894. {
  58895. "magpie": {
  58896. name: "Magpie",
  58897. default: true
  58898. },
  58899. "hippogriff": {
  58900. name: "Hippogriff",
  58901. },
  58902. }
  58903. ))
  58904. characterMakers.push(() => makeCharacter(
  58905. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  58906. {
  58907. frontDressed: {
  58908. height: math.unit(1.8, "meters"),
  58909. weight: math.unit(90, "kg"),
  58910. name: "Front (Dressed)",
  58911. image: {
  58912. source: "./media/characters/thalia/front-dressed.svg",
  58913. extra: 478/402,
  58914. bottom: 55/533
  58915. }
  58916. },
  58917. backDressed: {
  58918. height: math.unit(1.8, "meters"),
  58919. weight: math.unit(90, "kg"),
  58920. name: "Back (Dressed)",
  58921. image: {
  58922. source: "./media/characters/thalia/back-dressed.svg",
  58923. extra: 500/424,
  58924. bottom: 15/515
  58925. }
  58926. },
  58927. frontNude: {
  58928. height: math.unit(1.8, "meters"),
  58929. weight: math.unit(90, "kg"),
  58930. name: "Front (Nude)",
  58931. image: {
  58932. source: "./media/characters/thalia/front-nude.svg",
  58933. extra: 478/402,
  58934. bottom: 55/533
  58935. }
  58936. },
  58937. backNude: {
  58938. height: math.unit(1.8, "meters"),
  58939. weight: math.unit(90, "kg"),
  58940. name: "Back (Nude)",
  58941. image: {
  58942. source: "./media/characters/thalia/back-nude.svg",
  58943. extra: 500/424,
  58944. bottom: 15/515
  58945. }
  58946. },
  58947. },
  58948. [
  58949. {
  58950. name: "Incognito",
  58951. height: math.unit(3, "meters")
  58952. },
  58953. {
  58954. name: "Macro",
  58955. height: math.unit(500, "meters")
  58956. },
  58957. {
  58958. name: "Mega",
  58959. height: math.unit(5, "km")
  58960. },
  58961. {
  58962. name: "Mega+",
  58963. height: math.unit(30, "km")
  58964. },
  58965. {
  58966. name: "Giga",
  58967. height: math.unit(350, "km")
  58968. },
  58969. {
  58970. name: "Giga+",
  58971. height: math.unit(4000, "km")
  58972. },
  58973. {
  58974. name: "Terra",
  58975. height: math.unit(35000, "km")
  58976. },
  58977. {
  58978. name: "Original Size",
  58979. height: math.unit(130000, "km")
  58980. },
  58981. {
  58982. name: "Solar (Home Size)",
  58983. height: math.unit(4e6, "km"),
  58984. default: true
  58985. },
  58986. ]
  58987. ))
  58988. characterMakers.push(() => makeCharacter(
  58989. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  58990. {
  58991. front: {
  58992. height: math.unit(1.8, "meters"),
  58993. weight: math.unit(95, "kg"),
  58994. name: "Front",
  58995. image: {
  58996. source: "./media/characters/shango/front.svg",
  58997. extra: 1925/1774,
  58998. bottom: 67/1992
  58999. }
  59000. },
  59001. back: {
  59002. height: math.unit(1.8, "meters"),
  59003. weight: math.unit(95, "kg"),
  59004. name: "Back",
  59005. image: {
  59006. source: "./media/characters/shango/back.svg",
  59007. extra: 1915/1766,
  59008. bottom: 52/1967
  59009. }
  59010. },
  59011. frontLewd: {
  59012. height: math.unit(1.8, "meters"),
  59013. weight: math.unit(95, "kg"),
  59014. name: "Front (Lewd)",
  59015. image: {
  59016. source: "./media/characters/shango/front-lewd.svg",
  59017. extra: 1925/1774,
  59018. bottom: 67/1992
  59019. }
  59020. },
  59021. backLewd: {
  59022. height: math.unit(1.8, "meters"),
  59023. weight: math.unit(95, "kg"),
  59024. name: "Back (Lewd)",
  59025. image: {
  59026. source: "./media/characters/shango/back-lewd.svg",
  59027. extra: 1915/1766,
  59028. bottom: 52/1967
  59029. }
  59030. },
  59031. maw: {
  59032. height: math.unit(1.64, "feet"),
  59033. name: "Maw",
  59034. image: {
  59035. source: "./media/characters/shango/maw.svg"
  59036. }
  59037. },
  59038. dick: {
  59039. height: math.unit(2.14, "feet"),
  59040. name: "Dick",
  59041. image: {
  59042. source: "./media/characters/shango/dick.svg"
  59043. }
  59044. },
  59045. },
  59046. [
  59047. {
  59048. name: "Incognito",
  59049. height: math.unit(1.8, "meters")
  59050. },
  59051. {
  59052. name: "Home Size",
  59053. height: math.unit(60, "meters"),
  59054. default: true
  59055. },
  59056. {
  59057. name: "Macro",
  59058. height: math.unit(450, "meters")
  59059. },
  59060. {
  59061. name: "Mega",
  59062. height: math.unit(6, "km")
  59063. },
  59064. {
  59065. name: "Mega+",
  59066. height: math.unit(35, "km")
  59067. },
  59068. {
  59069. name: "Giga",
  59070. height: math.unit(500, "km")
  59071. },
  59072. {
  59073. name: "Giga+",
  59074. height: math.unit(5000, "km")
  59075. },
  59076. {
  59077. name: "Terra",
  59078. height: math.unit(60000, "km")
  59079. },
  59080. {
  59081. name: "Terra+",
  59082. height: math.unit(400000, "km")
  59083. },
  59084. ]
  59085. ))
  59086. characterMakers.push(() => makeCharacter(
  59087. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59088. {
  59089. front: {
  59090. height: math.unit(2, "meters"),
  59091. weight: math.unit(95, "kg"),
  59092. name: "Front",
  59093. image: {
  59094. source: "./media/characters/osiris-gryphon/front.svg",
  59095. extra: 1508/1313,
  59096. bottom: 87/1595
  59097. }
  59098. },
  59099. back: {
  59100. height: math.unit(2, "meters"),
  59101. weight: math.unit(95, "kg"),
  59102. name: "Back",
  59103. image: {
  59104. source: "./media/characters/osiris-gryphon/back.svg",
  59105. extra: 1436/1309,
  59106. bottom: 64/1500
  59107. }
  59108. },
  59109. frontLewd: {
  59110. height: math.unit(2, "meters"),
  59111. weight: math.unit(95, "kg"),
  59112. name: "Front-lewd",
  59113. image: {
  59114. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59115. extra: 1508/1313,
  59116. bottom: 87/1595
  59117. }
  59118. },
  59119. wing: {
  59120. height: math.unit(6.3333, "feet"),
  59121. name: "Wing",
  59122. image: {
  59123. source: "./media/characters/osiris-gryphon/wing.svg"
  59124. }
  59125. },
  59126. },
  59127. [
  59128. {
  59129. name: "Incognito",
  59130. height: math.unit(2, "meters")
  59131. },
  59132. {
  59133. name: "Home Size",
  59134. height: math.unit(30, "meters"),
  59135. default: true
  59136. },
  59137. {
  59138. name: "Macro",
  59139. height: math.unit(100, "meters")
  59140. },
  59141. {
  59142. name: "Macro+",
  59143. height: math.unit(350, "meters")
  59144. },
  59145. {
  59146. name: "Mega",
  59147. height: math.unit(40, "km")
  59148. },
  59149. {
  59150. name: "Giga",
  59151. height: math.unit(300, "km")
  59152. },
  59153. {
  59154. name: "Giga+",
  59155. height: math.unit(2000, "km")
  59156. },
  59157. {
  59158. name: "Terra",
  59159. height: math.unit(30000, "km")
  59160. },
  59161. ]
  59162. ))
  59163. characterMakers.push(() => makeCharacter(
  59164. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59165. {
  59166. front: {
  59167. height: math.unit(2.5, "meters"),
  59168. weight: math.unit(200, "kg"),
  59169. name: "Front",
  59170. image: {
  59171. source: "./media/characters/atlas-dragon/front.svg",
  59172. extra: 745/462,
  59173. bottom: 36/781
  59174. }
  59175. },
  59176. back: {
  59177. height: math.unit(2.5, "meters"),
  59178. weight: math.unit(200, "kg"),
  59179. name: "Back",
  59180. image: {
  59181. source: "./media/characters/atlas-dragon/back.svg",
  59182. extra: 848/822,
  59183. bottom: 57/905
  59184. }
  59185. },
  59186. frontLewd: {
  59187. height: math.unit(2.5, "meters"),
  59188. weight: math.unit(200, "kg"),
  59189. name: "Front (Lewd)",
  59190. image: {
  59191. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59192. extra: 745/462,
  59193. bottom: 36/781
  59194. }
  59195. },
  59196. backLewd: {
  59197. height: math.unit(2.5, "meters"),
  59198. weight: math.unit(200, "kg"),
  59199. name: "Back (Lewd)",
  59200. image: {
  59201. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59202. extra: 848/822,
  59203. bottom: 57/905
  59204. }
  59205. },
  59206. },
  59207. [
  59208. {
  59209. name: "Incognito",
  59210. height: math.unit(2.5, "meters")
  59211. },
  59212. {
  59213. name: "Small Macro",
  59214. height: math.unit(50, "meters")
  59215. },
  59216. {
  59217. name: "Macro",
  59218. height: math.unit(350, "meters")
  59219. },
  59220. {
  59221. name: "Mega",
  59222. height: math.unit(5.5, "kilometers")
  59223. },
  59224. {
  59225. name: "Mega+",
  59226. height: math.unit(50, "km")
  59227. },
  59228. {
  59229. name: "Giga",
  59230. height: math.unit(350, "km")
  59231. },
  59232. {
  59233. name: "Giga+",
  59234. height: math.unit(2000, "km")
  59235. },
  59236. {
  59237. name: "Giga++",
  59238. height: math.unit(6500, "km")
  59239. },
  59240. {
  59241. name: "Terra",
  59242. height: math.unit(30000, "km")
  59243. },
  59244. {
  59245. name: "Terra+",
  59246. height: math.unit(250000, "km")
  59247. },
  59248. {
  59249. name: "True Size",
  59250. height: math.unit(100, "multiverses"),
  59251. default: true
  59252. },
  59253. ]
  59254. ))
  59255. characterMakers.push(() => makeCharacter(
  59256. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59257. {
  59258. front: {
  59259. height: math.unit(1.8, "m"),
  59260. weight: math.unit(120, "kg"),
  59261. name: "Front",
  59262. image: {
  59263. source: "./media/characters/chey/front.svg",
  59264. extra: 1359/1270,
  59265. bottom: 18/1377
  59266. }
  59267. },
  59268. arm: {
  59269. height: math.unit(2.05, "feet"),
  59270. name: "Arm",
  59271. image: {
  59272. source: "./media/characters/chey/arm.svg"
  59273. }
  59274. },
  59275. head: {
  59276. height: math.unit(1.89, "feet"),
  59277. name: "Head",
  59278. image: {
  59279. source: "./media/characters/chey/head.svg"
  59280. }
  59281. },
  59282. },
  59283. [
  59284. {
  59285. name: "Original Size",
  59286. height: math.unit(5, "cm")
  59287. },
  59288. {
  59289. name: "Incognito Size",
  59290. height: math.unit(2.4, "m")
  59291. },
  59292. {
  59293. name: "Home Size",
  59294. height: math.unit(200, "meters"),
  59295. default: true
  59296. },
  59297. {
  59298. name: "Mega",
  59299. height: math.unit(2, "km")
  59300. },
  59301. {
  59302. name: "Giga (Preferred Size)",
  59303. height: math.unit(2000, "km")
  59304. },
  59305. {
  59306. name: "Giga+",
  59307. height: math.unit(6000, "km")
  59308. },
  59309. {
  59310. name: "Terra",
  59311. height: math.unit(17000, "km")
  59312. },
  59313. {
  59314. name: "Terra+",
  59315. height: math.unit(75000, "km")
  59316. },
  59317. {
  59318. name: "Terra++",
  59319. height: math.unit(225000, "km")
  59320. },
  59321. ]
  59322. ))
  59323. characterMakers.push(() => makeCharacter(
  59324. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59325. {
  59326. side: {
  59327. height: math.unit(7.8, "meters"),
  59328. name: "Side",
  59329. image: {
  59330. source: "./media/characters/ragnarok/side.svg",
  59331. extra: 725/621,
  59332. bottom: 72/797
  59333. }
  59334. },
  59335. },
  59336. [
  59337. {
  59338. name: "Normal",
  59339. height: math.unit(7.8, "meters"),
  59340. default: true
  59341. },
  59342. ]
  59343. ))
  59344. characterMakers.push(() => makeCharacter(
  59345. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59346. {
  59347. hyena_front: {
  59348. height: math.unit(2.1, "meters"),
  59349. weight: math.unit(110, "kg"),
  59350. name: "Front",
  59351. image: {
  59352. source: "./media/characters/nima/hyena-front.svg",
  59353. extra: 1904/1796,
  59354. bottom: 67/1971
  59355. },
  59356. form: "hyena",
  59357. },
  59358. hyena_back: {
  59359. height: math.unit(2.1, "meters"),
  59360. weight: math.unit(110, "kg"),
  59361. name: "Back",
  59362. image: {
  59363. source: "./media/characters/nima/hyena-back.svg",
  59364. extra: 1964/1884,
  59365. bottom: 35/1999
  59366. },
  59367. form: "hyena",
  59368. },
  59369. shark_front: {
  59370. height: math.unit(1.95, "meters"),
  59371. weight: math.unit(110, "kg"),
  59372. name: "Front",
  59373. image: {
  59374. source: "./media/characters/nima/shark-front.svg",
  59375. extra: 2238/2013,
  59376. bottom: 0/223
  59377. },
  59378. form: "shark",
  59379. },
  59380. paw: {
  59381. height: math.unit(1, "feet"),
  59382. name: "Paw",
  59383. image: {
  59384. source: "./media/characters/nima/paw.svg"
  59385. }
  59386. },
  59387. circlet: {
  59388. height: math.unit(0.3, "feet"),
  59389. name: "Circlet",
  59390. image: {
  59391. source: "./media/characters/nima/circlet.svg"
  59392. }
  59393. },
  59394. necklace: {
  59395. height: math.unit(1.2, "feet"),
  59396. name: "Necklace",
  59397. image: {
  59398. source: "./media/characters/nima/necklace.svg"
  59399. }
  59400. },
  59401. bracelet: {
  59402. height: math.unit(0.51, "feet"),
  59403. name: "Bracelet",
  59404. image: {
  59405. source: "./media/characters/nima/bracelet.svg"
  59406. }
  59407. },
  59408. armband: {
  59409. height: math.unit(1.3, "feet"),
  59410. name: "Armband",
  59411. image: {
  59412. source: "./media/characters/nima/armband.svg"
  59413. }
  59414. },
  59415. },
  59416. [
  59417. {
  59418. name: "Incognito",
  59419. height: math.unit(2.1, "meters"),
  59420. allForms: true
  59421. },
  59422. {
  59423. name: "Small Macro",
  59424. height: math.unit(50, "meters"),
  59425. allForms: true
  59426. },
  59427. {
  59428. name: "Macro",
  59429. height: math.unit(200, "meters"),
  59430. allForms: true
  59431. },
  59432. {
  59433. name: "Mega",
  59434. height: math.unit(2.5, "km"),
  59435. allForms: true
  59436. },
  59437. {
  59438. name: "Mega+",
  59439. height: math.unit(30, "km"),
  59440. allForms: true
  59441. },
  59442. {
  59443. name: "Giga (Home Size)",
  59444. height: math.unit(400, "km"),
  59445. allForms: true,
  59446. default: true
  59447. },
  59448. {
  59449. name: "Giga+",
  59450. height: math.unit(2500, "km"),
  59451. allForms: true
  59452. },
  59453. {
  59454. name: "Giga++",
  59455. height: math.unit(8000, "km"),
  59456. allForms: true
  59457. },
  59458. {
  59459. name: "Terra",
  59460. height: math.unit(20000, "km"),
  59461. allForms: true
  59462. },
  59463. {
  59464. name: "Terra+",
  59465. height: math.unit(70000, "km"),
  59466. allForms: true
  59467. },
  59468. {
  59469. name: "Terra++",
  59470. height: math.unit(600000, "km"),
  59471. allForms: true
  59472. },
  59473. {
  59474. name: "Galactic",
  59475. height: math.unit(40, "galaxies"),
  59476. allForms: true
  59477. },
  59478. {
  59479. name: "Universal",
  59480. height: math.unit(40, "universes"),
  59481. allForms: true
  59482. },
  59483. ],
  59484. {
  59485. "hyena": {
  59486. name: "Hyena",
  59487. default: true
  59488. },
  59489. "shark": {
  59490. name: "Shark",
  59491. },
  59492. }
  59493. ))
  59494. characterMakers.push(() => makeCharacter(
  59495. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59496. {
  59497. anthro_front: {
  59498. height: math.unit(1.5, "meters"),
  59499. name: "Front",
  59500. image: {
  59501. source: "./media/characters/adelaide/anthro-front.svg",
  59502. extra: 860/783,
  59503. bottom: 60/920
  59504. },
  59505. form: "anthro",
  59506. default: true
  59507. },
  59508. hand: {
  59509. height: math.unit(0.65, "feet"),
  59510. name: "Hand",
  59511. image: {
  59512. source: "./media/characters/adelaide/hand.svg"
  59513. },
  59514. form: "anthro"
  59515. },
  59516. foot: {
  59517. height: math.unit(1.38 * 259 / 314, "feet"),
  59518. name: "Foot",
  59519. image: {
  59520. source: "./media/characters/adelaide/foot.svg",
  59521. extra: 259/259,
  59522. bottom: 55/314
  59523. },
  59524. form: "anthro"
  59525. },
  59526. feather: {
  59527. height: math.unit(0.85, "feet"),
  59528. name: "Feather",
  59529. image: {
  59530. source: "./media/characters/adelaide/feather.svg"
  59531. },
  59532. form: "anthro"
  59533. },
  59534. feral_side: {
  59535. height: math.unit(1, "meters"),
  59536. name: "Side",
  59537. image: {
  59538. source: "./media/characters/adelaide/feral-side.svg",
  59539. extra: 550/467,
  59540. bottom: 37/587
  59541. },
  59542. form: "feral",
  59543. default: true
  59544. },
  59545. feral_hand: {
  59546. height: math.unit(0.58, "feet"),
  59547. name: "Hand",
  59548. image: {
  59549. source: "./media/characters/adelaide/hand.svg"
  59550. },
  59551. form: "feral"
  59552. },
  59553. feral_foot: {
  59554. height: math.unit(1.2 * 259 / 314, "feet"),
  59555. name: "Foot",
  59556. image: {
  59557. source: "./media/characters/adelaide/foot.svg",
  59558. extra: 259/259,
  59559. bottom: 55/314
  59560. },
  59561. form: "feral"
  59562. },
  59563. feral_feather: {
  59564. height: math.unit(0.63, "feet"),
  59565. name: "Feather",
  59566. image: {
  59567. source: "./media/characters/adelaide/feather.svg"
  59568. },
  59569. form: "feral"
  59570. },
  59571. },
  59572. [
  59573. {
  59574. name: "Normal",
  59575. height: math.unit(1.5, "meters"),
  59576. form: "anthro",
  59577. default: true
  59578. },
  59579. {
  59580. name: "Normal",
  59581. height: math.unit(1, "meters"),
  59582. form: "feral",
  59583. default: true
  59584. },
  59585. ],
  59586. {
  59587. "anthro": {
  59588. name: "Anthro",
  59589. default: true
  59590. },
  59591. "feral": {
  59592. name: "Feral",
  59593. },
  59594. }
  59595. ))
  59596. characterMakers.push(() => makeCharacter(
  59597. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59598. {
  59599. front: {
  59600. height: math.unit(2.5, "meters"),
  59601. name: "Front",
  59602. image: {
  59603. source: "./media/characters/goa/front.svg",
  59604. extra: 1109/1013,
  59605. bottom: 150/1259
  59606. }
  59607. },
  59608. },
  59609. [
  59610. {
  59611. name: "Normal",
  59612. height: math.unit(2.5, "meters"),
  59613. default: true
  59614. },
  59615. ]
  59616. ))
  59617. characterMakers.push(() => makeCharacter(
  59618. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59619. {
  59620. front: {
  59621. height: math.unit(2, "meters"),
  59622. weight: math.unit(100, "kg"),
  59623. name: "Front",
  59624. image: {
  59625. source: "./media/characters/kiki-weavile/front.svg",
  59626. extra: 357/332,
  59627. bottom: 60/417
  59628. }
  59629. },
  59630. },
  59631. [
  59632. {
  59633. name: "Normal",
  59634. height: math.unit(2, "meters"),
  59635. default: true
  59636. },
  59637. ]
  59638. ))
  59639. characterMakers.push(() => makeCharacter(
  59640. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  59641. {
  59642. side: {
  59643. height: math.unit(1.6, "meters"),
  59644. name: "Side",
  59645. image: {
  59646. source: "./media/characters/liza/side.svg",
  59647. extra: 943/915,
  59648. bottom: 72/1015
  59649. }
  59650. },
  59651. },
  59652. [
  59653. {
  59654. name: "Normal",
  59655. height: math.unit(1.6, "meters"),
  59656. default: true
  59657. },
  59658. ]
  59659. ))
  59660. characterMakers.push(() => makeCharacter(
  59661. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  59662. {
  59663. side: {
  59664. height: math.unit(2.5, "meters"),
  59665. preyCapacity: math.unit(1, "people"),
  59666. name: "Side",
  59667. image: {
  59668. source: "./media/characters/persephone-sweetbreath/side.svg",
  59669. extra: 796/700,
  59670. bottom: 44/840
  59671. }
  59672. },
  59673. sideVore: {
  59674. height: math.unit(2.5, "meters"),
  59675. preyCapacity: math.unit(1, "people"),
  59676. name: "Side (Full)",
  59677. image: {
  59678. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  59679. extra: 796/700,
  59680. bottom: 44/840
  59681. }
  59682. },
  59683. },
  59684. [
  59685. {
  59686. name: "Normal",
  59687. height: math.unit(2.5, "meters"),
  59688. default: true
  59689. },
  59690. ]
  59691. ))
  59692. characterMakers.push(() => makeCharacter(
  59693. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  59694. {
  59695. front: {
  59696. height: math.unit(32, "meters"),
  59697. name: "Front",
  59698. image: {
  59699. source: "./media/characters/pierce/front.svg",
  59700. extra: 1695/1475,
  59701. bottom: 185/1880
  59702. }
  59703. },
  59704. side: {
  59705. height: math.unit(32, "meters"),
  59706. name: "Side",
  59707. image: {
  59708. source: "./media/characters/pierce/side.svg",
  59709. extra: 974/859,
  59710. bottom: 43/1017
  59711. }
  59712. },
  59713. frontWingless: {
  59714. height: math.unit(32, "meters"),
  59715. name: "Front (Wingless)",
  59716. image: {
  59717. source: "./media/characters/pierce/front-wingless.svg",
  59718. extra: 1695/1475,
  59719. bottom: 185/1880
  59720. }
  59721. },
  59722. sideWingless: {
  59723. height: math.unit(32, "meters"),
  59724. name: "Side (Wingless)",
  59725. image: {
  59726. source: "./media/characters/pierce/side-wingless.svg",
  59727. extra: 974/859,
  59728. bottom: 43/1017
  59729. }
  59730. },
  59731. maw: {
  59732. height: math.unit(19.3, "meters"),
  59733. name: "Maw",
  59734. image: {
  59735. source: "./media/characters/pierce/maw.svg"
  59736. }
  59737. },
  59738. },
  59739. [
  59740. {
  59741. name: "Small",
  59742. height: math.unit(8.5, "meters")
  59743. },
  59744. {
  59745. name: "Normal",
  59746. height: math.unit(32, "meters"),
  59747. default: true
  59748. },
  59749. ]
  59750. ))
  59751. characterMakers.push(() => makeCharacter(
  59752. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  59753. {
  59754. front: {
  59755. height: math.unit(2.3, "meters"),
  59756. weight: math.unit(165, "kg"),
  59757. name: "Front",
  59758. image: {
  59759. source: "./media/characters/shira/front.svg",
  59760. extra: 924/919,
  59761. bottom: 17/941
  59762. },
  59763. form: "cobra",
  59764. default: true
  59765. },
  59766. back: {
  59767. height: math.unit(2.3, "meters"),
  59768. weight: math.unit(165, "kg"),
  59769. name: "Back",
  59770. image: {
  59771. source: "./media/characters/shira/back.svg",
  59772. extra: 928/922,
  59773. bottom: 18/946
  59774. },
  59775. form: "cobra"
  59776. },
  59777. frontLewd: {
  59778. height: math.unit(2.3, "meters"),
  59779. weight: math.unit(165, "kg"),
  59780. name: "Front (Lewd)",
  59781. image: {
  59782. source: "./media/characters/shira/front-lewd.svg",
  59783. extra: 924/919,
  59784. bottom: 17/941
  59785. },
  59786. form: "cobra"
  59787. },
  59788. backLewd: {
  59789. height: math.unit(2.3, "meters"),
  59790. weight: math.unit(165, "kg"),
  59791. name: "Back (Lewd)",
  59792. image: {
  59793. source: "./media/characters/shira/back-lewd.svg",
  59794. extra: 928/922,
  59795. bottom: 18/946
  59796. },
  59797. form: "cobra"
  59798. },
  59799. maw: {
  59800. height: math.unit(1.14, "feet"),
  59801. name: "Maw",
  59802. image: {
  59803. source: "./media/characters/shira/maw.svg"
  59804. },
  59805. form: "cobra"
  59806. },
  59807. magma_front: {
  59808. height: math.unit(2.3, "meters"),
  59809. weight: math.unit(165, "kg"),
  59810. name: "Front",
  59811. image: {
  59812. source: "./media/characters/shira/magma-front.svg",
  59813. extra: 1870/1693,
  59814. bottom: 24/1894
  59815. },
  59816. form: "magma",
  59817. },
  59818. magma_back: {
  59819. height: math.unit(2.3, "meters"),
  59820. weight: math.unit(165, "kg"),
  59821. name: "Back",
  59822. image: {
  59823. source: "./media/characters/shira/magma-back.svg",
  59824. extra: 1918/1756,
  59825. bottom: 46/1964
  59826. },
  59827. form: "magma",
  59828. },
  59829. },
  59830. [
  59831. {
  59832. name: "Incognito",
  59833. height: math.unit(2.3, "meters"),
  59834. allForms: true
  59835. },
  59836. {
  59837. name: "Home Size",
  59838. height: math.unit(150, "meters"),
  59839. default: true,
  59840. allForms: true
  59841. },
  59842. {
  59843. name: "Macro",
  59844. height: math.unit(2, "km"),
  59845. allForms: true
  59846. },
  59847. {
  59848. name: "Mega",
  59849. height: math.unit(30, "km"),
  59850. allForms: true
  59851. },
  59852. {
  59853. name: "Giga",
  59854. height: math.unit(450, "km"),
  59855. allForms: true
  59856. },
  59857. {
  59858. name: "Giga+",
  59859. height: math.unit(3000, "km"),
  59860. allForms: true
  59861. },
  59862. {
  59863. name: "Giga++",
  59864. height: math.unit(6000, "km"),
  59865. allForms: true
  59866. },
  59867. {
  59868. name: "Terra",
  59869. height: math.unit(80000, "km"),
  59870. allForms: true
  59871. },
  59872. {
  59873. name: "Terra+",
  59874. height: math.unit(350000, "km"),
  59875. allForms: true
  59876. },
  59877. {
  59878. name: "Solar",
  59879. height: math.unit(1e6, "km"),
  59880. allForms: true
  59881. },
  59882. ],
  59883. {
  59884. "cobra": {
  59885. name: "Cobra",
  59886. default: true
  59887. },
  59888. "magma": {
  59889. name: "Magma Dragon",
  59890. },
  59891. }
  59892. ))
  59893. characterMakers.push(() => makeCharacter(
  59894. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  59895. {
  59896. front: {
  59897. height: math.unit(2, "meters"),
  59898. weight: math.unit(160, "kg"),
  59899. name: "Front",
  59900. image: {
  59901. source: "./media/characters/daxerios/front.svg",
  59902. extra: 1334/1277,
  59903. bottom: 45/1379
  59904. }
  59905. },
  59906. frontLewd: {
  59907. height: math.unit(2, "meters"),
  59908. weight: math.unit(160, "kg"),
  59909. name: "Front (Lewd)",
  59910. image: {
  59911. source: "./media/characters/daxerios/front-lewd.svg",
  59912. extra: 1334/1277,
  59913. bottom: 45/1379
  59914. }
  59915. },
  59916. dick: {
  59917. height: math.unit(2.35, "feet"),
  59918. name: "Dick",
  59919. image: {
  59920. source: "./media/characters/daxerios/dick.svg"
  59921. }
  59922. },
  59923. },
  59924. [
  59925. {
  59926. name: "\"Small\"",
  59927. height: math.unit(5, "meters")
  59928. },
  59929. {
  59930. name: "Original Size",
  59931. height: math.unit(500, "meters"),
  59932. default: true
  59933. },
  59934. {
  59935. name: "Mega",
  59936. height: math.unit(2, "km")
  59937. },
  59938. {
  59939. name: "Mega+",
  59940. height: math.unit(35, "km")
  59941. },
  59942. {
  59943. name: "Giga",
  59944. height: math.unit(250, "km")
  59945. },
  59946. {
  59947. name: "Giga+",
  59948. height: math.unit(3000, "km")
  59949. },
  59950. {
  59951. name: "Terra",
  59952. height: math.unit(25000, "km")
  59953. },
  59954. {
  59955. name: "Terra+",
  59956. height: math.unit(300000, "km")
  59957. },
  59958. {
  59959. name: "Solar",
  59960. height: math.unit(1e6, "km")
  59961. },
  59962. ]
  59963. ))
  59964. characterMakers.push(() => makeCharacter(
  59965. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  59966. {
  59967. front: {
  59968. height: math.unit(8 + 4/12, "feet"),
  59969. weight: math.unit(464, "lb"),
  59970. name: "Front",
  59971. image: {
  59972. source: "./media/characters/caveat/front.svg",
  59973. extra: 1861/1678,
  59974. bottom: 40/1901
  59975. }
  59976. },
  59977. },
  59978. [
  59979. {
  59980. name: "Normal",
  59981. height: math.unit(8 + 4/12, "feet"),
  59982. default: true
  59983. },
  59984. ]
  59985. ))
  59986. characterMakers.push(() => makeCharacter(
  59987. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  59988. {
  59989. front: {
  59990. height: math.unit(12, "feet"),
  59991. weight: math.unit(1800, "lb"),
  59992. name: "Front",
  59993. image: {
  59994. source: "./media/characters/centbair/front.svg",
  59995. extra: 781/663,
  59996. bottom: 25/806
  59997. }
  59998. },
  59999. frontNsfw: {
  60000. height: math.unit(12, "feet"),
  60001. weight: math.unit(1800, "lb"),
  60002. name: "Front (NSFW)",
  60003. image: {
  60004. source: "./media/characters/centbair/front-nsfw.svg",
  60005. extra: 781/663,
  60006. bottom: 25/806
  60007. }
  60008. },
  60009. back: {
  60010. height: math.unit(12, "feet"),
  60011. weight: math.unit(1800, "lb"),
  60012. name: "Back",
  60013. image: {
  60014. source: "./media/characters/centbair/back.svg",
  60015. extra: 808/761,
  60016. bottom: 19/827
  60017. }
  60018. },
  60019. dick: {
  60020. height: math.unit(6.5, "feet"),
  60021. name: "Dick",
  60022. image: {
  60023. source: "./media/characters/centbair/dick.svg"
  60024. }
  60025. },
  60026. slit: {
  60027. height: math.unit(3.25, "feet"),
  60028. name: "Slit",
  60029. image: {
  60030. source: "./media/characters/centbair/slit.svg"
  60031. }
  60032. },
  60033. },
  60034. [
  60035. {
  60036. name: "Normal",
  60037. height: math.unit(12, "feet"),
  60038. default: true
  60039. },
  60040. ]
  60041. ))
  60042. characterMakers.push(() => makeCharacter(
  60043. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60044. {
  60045. front: {
  60046. height: math.unit(5 + 7/12, "feet"),
  60047. name: "Front",
  60048. image: {
  60049. source: "./media/characters/andy/front.svg",
  60050. extra: 634/588,
  60051. bottom: 36/670
  60052. },
  60053. extraAttributes: {
  60054. "pawLength": {
  60055. name: "Paw Length",
  60056. power: 1,
  60057. type: "length",
  60058. base: math.unit(1, "feet")
  60059. },
  60060. }
  60061. },
  60062. side: {
  60063. height: math.unit(5 + 7/12, "feet"),
  60064. name: "Side",
  60065. image: {
  60066. source: "./media/characters/andy/side.svg",
  60067. extra: 641/596,
  60068. bottom: 34/675
  60069. },
  60070. extraAttributes: {
  60071. "pawLength": {
  60072. name: "Paw Length",
  60073. power: 1,
  60074. type: "length",
  60075. base: math.unit(1, "feet")
  60076. },
  60077. }
  60078. },
  60079. back: {
  60080. height: math.unit(5 + 7/12, "feet"),
  60081. name: "Back",
  60082. image: {
  60083. source: "./media/characters/andy/back.svg",
  60084. extra: 618/583,
  60085. bottom: 39/657
  60086. },
  60087. extraAttributes: {
  60088. "pawLength": {
  60089. name: "Paw Length",
  60090. power: 1,
  60091. type: "length",
  60092. base: math.unit(1, "feet")
  60093. },
  60094. }
  60095. },
  60096. paw: {
  60097. height: math.unit(1.13, "feet"),
  60098. name: "Paw",
  60099. image: {
  60100. source: "./media/characters/andy/paw.svg"
  60101. }
  60102. },
  60103. },
  60104. [
  60105. {
  60106. name: "Micro",
  60107. height: math.unit(4, "inches")
  60108. },
  60109. {
  60110. name: "Normal",
  60111. height: math.unit(5 + 7/12, "feet"),
  60112. default: true
  60113. },
  60114. {
  60115. name: "Macro",
  60116. height: math.unit(390.42, "feet")
  60117. },
  60118. ]
  60119. ))
  60120. characterMakers.push(() => makeCharacter(
  60121. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60122. {
  60123. front: {
  60124. height: math.unit(7, "feet"),
  60125. weight: math.unit(250, "lb"),
  60126. name: "Front",
  60127. image: {
  60128. source: "./media/characters/vix-titan/front.svg",
  60129. extra: 460/428,
  60130. bottom: 15/475
  60131. },
  60132. extraAttributes: {
  60133. "pawWidth": {
  60134. name: "Paw Width",
  60135. power: 1,
  60136. type: "length",
  60137. base: math.unit(0.75, "feet")
  60138. },
  60139. }
  60140. },
  60141. },
  60142. [
  60143. {
  60144. name: "Normal",
  60145. height: math.unit(7, "feet"),
  60146. default: true
  60147. },
  60148. {
  60149. name: "Giant",
  60150. height: math.unit(1500, "feet")
  60151. },
  60152. {
  60153. name: "Mega",
  60154. height: math.unit(10, "miles")
  60155. },
  60156. {
  60157. name: "Giga",
  60158. height: math.unit(150, "miles")
  60159. },
  60160. {
  60161. name: "Tera",
  60162. height: math.unit(144000, "miles")
  60163. },
  60164. ]
  60165. ))
  60166. characterMakers.push(() => makeCharacter(
  60167. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60168. {
  60169. front: {
  60170. height: math.unit(6 + 2/12, "feet"),
  60171. name: "Front",
  60172. image: {
  60173. source: "./media/characters/reiku/front.svg",
  60174. extra: 1910/1757,
  60175. bottom: 103/2013
  60176. },
  60177. extraAttributes: {
  60178. "thighThickness": {
  60179. name: "Thigh Thickness",
  60180. power: 1,
  60181. type: "length",
  60182. base: math.unit(1.12, "feet")
  60183. },
  60184. "assThickness": {
  60185. name: "Ass Thickness",
  60186. power: 1,
  60187. type: "length",
  60188. base: math.unit(1.12*2, "feet")
  60189. },
  60190. }
  60191. },
  60192. side: {
  60193. height: math.unit(6 + 2/12, "feet"),
  60194. name: "Side",
  60195. image: {
  60196. source: "./media/characters/reiku/side.svg",
  60197. extra: 1846/1748,
  60198. bottom: 99/1945
  60199. },
  60200. extraAttributes: {
  60201. "thighThickness": {
  60202. name: "Thigh Thickness",
  60203. power: 1,
  60204. type: "length",
  60205. base: math.unit(1.12, "feet")
  60206. },
  60207. "assThickness": {
  60208. name: "Ass Thickness",
  60209. power: 1,
  60210. type: "length",
  60211. base: math.unit(1.12*2, "feet")
  60212. },
  60213. }
  60214. },
  60215. back: {
  60216. height: math.unit(6 + 2/12, "feet"),
  60217. name: "Back",
  60218. image: {
  60219. source: "./media/characters/reiku/back.svg",
  60220. extra: 1941/1786,
  60221. bottom: 34/1975
  60222. },
  60223. extraAttributes: {
  60224. "thighThickness": {
  60225. name: "Thigh Thickness",
  60226. power: 1,
  60227. type: "length",
  60228. base: math.unit(1.12, "feet")
  60229. },
  60230. "assThickness": {
  60231. name: "Ass Thickness",
  60232. power: 1,
  60233. type: "length",
  60234. base: math.unit(1.12*2, "feet")
  60235. },
  60236. }
  60237. },
  60238. head: {
  60239. height: math.unit(1.8, "feet"),
  60240. name: "Head",
  60241. image: {
  60242. source: "./media/characters/reiku/head.svg"
  60243. }
  60244. },
  60245. tailTop: {
  60246. height: math.unit(8.4, "feet"),
  60247. name: "Tail (Top)",
  60248. image: {
  60249. source: "./media/characters/reiku/tail-top.svg"
  60250. }
  60251. },
  60252. tailBottom: {
  60253. height: math.unit(8.4, "feet"),
  60254. name: "Tail (Bottom)",
  60255. image: {
  60256. source: "./media/characters/reiku/tail-bottom.svg"
  60257. }
  60258. },
  60259. foot: {
  60260. height: math.unit(2.6, "feet"),
  60261. name: "Foot",
  60262. image: {
  60263. source: "./media/characters/reiku/foot.svg"
  60264. }
  60265. },
  60266. footCurled: {
  60267. height: math.unit(2.3, "feet"),
  60268. name: "Foot (Curled)",
  60269. image: {
  60270. source: "./media/characters/reiku/foot-curled.svg"
  60271. }
  60272. },
  60273. footSide: {
  60274. height: math.unit(1.26, "feet"),
  60275. name: "Foot (Side)",
  60276. image: {
  60277. source: "./media/characters/reiku/foot-side.svg"
  60278. }
  60279. },
  60280. },
  60281. [
  60282. {
  60283. name: "Normal",
  60284. height: math.unit(6 + 2/12, "feet"),
  60285. default: true
  60286. },
  60287. ]
  60288. ))
  60289. characterMakers.push(() => makeCharacter(
  60290. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60291. {
  60292. front: {
  60293. height: math.unit(7, "feet"),
  60294. weight: math.unit(500, "kg"),
  60295. name: "Front",
  60296. image: {
  60297. source: "./media/characters/cialda/front.svg",
  60298. extra: 912/745,
  60299. bottom: 55/967
  60300. }
  60301. },
  60302. },
  60303. [
  60304. {
  60305. name: "Normal",
  60306. height: math.unit(7, "feet"),
  60307. default: true
  60308. },
  60309. ]
  60310. ))
  60311. characterMakers.push(() => makeCharacter(
  60312. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60313. {
  60314. side: {
  60315. height: math.unit(6, "feet"),
  60316. weight: math.unit(600, "lb"),
  60317. preyCapacity: math.unit(25, "liters"),
  60318. name: "Side",
  60319. image: {
  60320. source: "./media/characters/darkkin/side.svg",
  60321. extra: 1597/1447,
  60322. bottom: 101/1698
  60323. }
  60324. },
  60325. },
  60326. [
  60327. {
  60328. name: "Canon Height",
  60329. height: math.unit(568, "feet"),
  60330. default: true
  60331. },
  60332. ]
  60333. ))
  60334. characterMakers.push(() => makeCharacter(
  60335. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60336. {
  60337. front: {
  60338. height: math.unit(6, "feet"),
  60339. weight: math.unit(1500, "lb"),
  60340. preyCapacity: math.unit(3, "people"),
  60341. name: "Front",
  60342. image: {
  60343. source: "./media/characters/livnia/front.svg",
  60344. extra: 934/932,
  60345. bottom: 83/1017
  60346. }
  60347. },
  60348. back: {
  60349. height: math.unit(6, "feet"),
  60350. weight: math.unit(1500, "lb"),
  60351. preyCapacity: math.unit(3, "people"),
  60352. name: "Back",
  60353. image: {
  60354. source: "./media/characters/livnia/back.svg",
  60355. extra: 916/915,
  60356. bottom: 58/974
  60357. }
  60358. },
  60359. head: {
  60360. height: math.unit(1.53, "feet"),
  60361. name: "Head",
  60362. image: {
  60363. source: "./media/characters/livnia/head.svg"
  60364. }
  60365. },
  60366. maw: {
  60367. height: math.unit(0.78, "feet"),
  60368. name: "Maw",
  60369. image: {
  60370. source: "./media/characters/livnia/maw.svg"
  60371. }
  60372. },
  60373. genitals: {
  60374. height: math.unit(0.35, "feet"),
  60375. name: "Genitals",
  60376. image: {
  60377. source: "./media/characters/livnia/genitals.svg"
  60378. }
  60379. },
  60380. },
  60381. [
  60382. {
  60383. name: "Normal",
  60384. height: math.unit(1000, "feet"),
  60385. default: true
  60386. },
  60387. ]
  60388. ))
  60389. characterMakers.push(() => makeCharacter(
  60390. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  60391. {
  60392. front: {
  60393. height: math.unit(4, "feet"),
  60394. weight: math.unit(73, "lb"),
  60395. name: "Front",
  60396. image: {
  60397. source: "./media/characters/hayaku/front.svg",
  60398. extra: 1011/888,
  60399. bottom: 33/1044
  60400. }
  60401. },
  60402. back: {
  60403. height: math.unit(4, "feet"),
  60404. weight: math.unit(73, "lb"),
  60405. name: "Back",
  60406. image: {
  60407. source: "./media/characters/hayaku/back.svg",
  60408. extra: 1040/930,
  60409. bottom: 20/1060
  60410. }
  60411. },
  60412. },
  60413. [
  60414. {
  60415. name: "Normal",
  60416. height: math.unit(4, "feet"),
  60417. default: true
  60418. },
  60419. ]
  60420. ))
  60421. characterMakers.push(() => makeCharacter(
  60422. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  60423. {
  60424. front: {
  60425. height: math.unit(6 + 7/12, "feet"),
  60426. weight: math.unit(300, "lb"),
  60427. name: "Front",
  60428. image: {
  60429. source: "./media/characters/athena-bryzant/front.svg",
  60430. extra: 870/835,
  60431. bottom: 33/903
  60432. }
  60433. },
  60434. back: {
  60435. height: math.unit(6 + 7/12, "feet"),
  60436. weight: math.unit(300, "lb"),
  60437. name: "Back",
  60438. image: {
  60439. source: "./media/characters/athena-bryzant/back.svg",
  60440. extra: 858/823,
  60441. bottom: 30/888
  60442. }
  60443. },
  60444. head: {
  60445. height: math.unit(2.38, "feet"),
  60446. name: "Head",
  60447. image: {
  60448. source: "./media/characters/athena-bryzant/head.svg"
  60449. }
  60450. },
  60451. wings: {
  60452. height: math.unit(2.85, "feet"),
  60453. name: "Wings",
  60454. image: {
  60455. source: "./media/characters/athena-bryzant/wings.svg"
  60456. }
  60457. },
  60458. },
  60459. [
  60460. {
  60461. name: "Normal",
  60462. height: math.unit(6 + 7/12, "feet"),
  60463. default: true
  60464. },
  60465. {
  60466. name: "Big",
  60467. height: math.unit(8, "feet")
  60468. },
  60469. {
  60470. name: "Very Big",
  60471. height: math.unit(11, "feet")
  60472. },
  60473. ]
  60474. ))
  60475. characterMakers.push(() => makeCharacter(
  60476. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  60477. {
  60478. side: {
  60479. height: math.unit(3, "meters"),
  60480. weight: math.unit(7500, "kg"),
  60481. preyCapacity: math.unit(1e12, "people"),
  60482. name: "Side",
  60483. image: {
  60484. source: "./media/characters/zel-kesh/side.svg",
  60485. extra: 910/407,
  60486. bottom: 147/1057
  60487. }
  60488. },
  60489. },
  60490. [
  60491. {
  60492. name: "Normal",
  60493. height: math.unit(3, "meters"),
  60494. default: true
  60495. },
  60496. ]
  60497. ))
  60498. characterMakers.push(() => makeCharacter(
  60499. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  60500. {
  60501. front: {
  60502. height: math.unit(2, "meters"),
  60503. weight: math.unit(95, "kg"),
  60504. name: "Front",
  60505. image: {
  60506. source: "./media/characters/kane-fox/front.svg",
  60507. extra: 945/888,
  60508. bottom: 27/972
  60509. }
  60510. },
  60511. back: {
  60512. height: math.unit(2, "meters"),
  60513. weight: math.unit(95, "kg"),
  60514. name: "Back",
  60515. image: {
  60516. source: "./media/characters/kane-fox/back.svg",
  60517. extra: 959/914,
  60518. bottom: 15/974
  60519. }
  60520. },
  60521. frontLewd: {
  60522. height: math.unit(2, "meters"),
  60523. weight: math.unit(95, "kg"),
  60524. name: "Front (Lewd)",
  60525. image: {
  60526. source: "./media/characters/kane-fox/front-lewd.svg",
  60527. extra: 945/888,
  60528. bottom: 27/972
  60529. }
  60530. },
  60531. },
  60532. [
  60533. {
  60534. name: "Home Size",
  60535. height: math.unit(2, "meters"),
  60536. default: true
  60537. },
  60538. {
  60539. name: "Macro",
  60540. height: math.unit(200, "meters")
  60541. },
  60542. {
  60543. name: "Small Mega",
  60544. height: math.unit(3, "km")
  60545. },
  60546. {
  60547. name: "Mega",
  60548. height: math.unit(50, "km")
  60549. },
  60550. {
  60551. name: "Giga",
  60552. height: math.unit(200, "km")
  60553. },
  60554. {
  60555. name: "Giga+",
  60556. height: math.unit(2500, "km")
  60557. },
  60558. {
  60559. name: "Terra",
  60560. height: math.unit(70000, "km")
  60561. },
  60562. {
  60563. name: "Terra+",
  60564. height: math.unit(150000, "km")
  60565. },
  60566. {
  60567. name: "Terra++",
  60568. height: math.unit(400000, "km")
  60569. },
  60570. ]
  60571. ))
  60572. characterMakers.push(() => makeCharacter(
  60573. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  60574. {
  60575. otter_front: {
  60576. height: math.unit(1.8, "meters"),
  60577. weight: math.unit(90, "kg"),
  60578. name: "Front",
  60579. image: {
  60580. source: "./media/characters/ayranus/otter-front.svg",
  60581. extra: 468/452,
  60582. bottom: 43/511
  60583. },
  60584. form: "otter",
  60585. },
  60586. otter_frontLewd: {
  60587. height: math.unit(1.8, "meters"),
  60588. weight: math.unit(90, "kg"),
  60589. name: "Front (Lewd)",
  60590. image: {
  60591. source: "./media/characters/ayranus/otter-front-lewd.svg",
  60592. extra: 468/452,
  60593. bottom: 43/511
  60594. },
  60595. form: "otter",
  60596. },
  60597. lionbat_front: {
  60598. height: math.unit(1.8, "meters"),
  60599. weight: math.unit(90, "kg"),
  60600. name: "Front (Lewd)",
  60601. image: {
  60602. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  60603. extra: 797/740,
  60604. bottom: 78/875
  60605. },
  60606. form: "lionbat",
  60607. },
  60608. paw: {
  60609. height: math.unit(1.5, "feet"),
  60610. name: "Paw",
  60611. image: {
  60612. source: "./media/characters/ayranus/paw.svg"
  60613. },
  60614. },
  60615. },
  60616. [
  60617. {
  60618. name: "Incognito",
  60619. height: math.unit(1.8, "meters"),
  60620. allForms: true
  60621. },
  60622. {
  60623. name: "Macro",
  60624. height: math.unit(60, "meters"),
  60625. allForms: true
  60626. },
  60627. {
  60628. name: "Macro+",
  60629. height: math.unit(200, "meters"),
  60630. allForms: true
  60631. },
  60632. {
  60633. name: "Mega",
  60634. height: math.unit(35, "km"),
  60635. allForms: true
  60636. },
  60637. {
  60638. name: "Giga",
  60639. height: math.unit(220, "km"),
  60640. allForms: true
  60641. },
  60642. {
  60643. name: "Giga+",
  60644. height: math.unit(1500, "km"),
  60645. allForms: true
  60646. },
  60647. {
  60648. name: "Terra",
  60649. height: math.unit(13000, "km"),
  60650. allForms: true
  60651. },
  60652. {
  60653. name: "Terra+",
  60654. height: math.unit(500000, "km"),
  60655. allForms: true
  60656. },
  60657. {
  60658. name: "Galactic",
  60659. height: math.unit(486080, "parsecs"),
  60660. default: true,
  60661. allForms: true
  60662. },
  60663. ],
  60664. {
  60665. "otter": {
  60666. name: "Otter",
  60667. default: true
  60668. },
  60669. "lionbat": {
  60670. name: "Lionbat",
  60671. },
  60672. }
  60673. ))
  60674. characterMakers.push(() => makeCharacter(
  60675. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  60676. {
  60677. front: {
  60678. height: math.unit(7 + 4/12, "feet"),
  60679. weight: math.unit(400, "lb"),
  60680. name: "Front",
  60681. image: {
  60682. source: "./media/characters/proxy/front.svg",
  60683. extra: 1605/1542,
  60684. bottom: 55/1660
  60685. }
  60686. },
  60687. side: {
  60688. height: math.unit(7 + 4/12, "feet"),
  60689. weight: math.unit(400, "lb"),
  60690. name: "Side",
  60691. image: {
  60692. source: "./media/characters/proxy/side.svg",
  60693. extra: 794/759,
  60694. bottom: 6/800
  60695. }
  60696. },
  60697. hand: {
  60698. height: math.unit(1.54, "feet"),
  60699. name: "Hand",
  60700. image: {
  60701. source: "./media/characters/proxy/hand.svg"
  60702. }
  60703. },
  60704. paw: {
  60705. height: math.unit(1.53, "feet"),
  60706. name: "Paw",
  60707. image: {
  60708. source: "./media/characters/proxy/paw.svg"
  60709. }
  60710. },
  60711. maw: {
  60712. height: math.unit(1.9, "feet"),
  60713. name: "Maw",
  60714. image: {
  60715. source: "./media/characters/proxy/maw.svg"
  60716. }
  60717. },
  60718. },
  60719. [
  60720. {
  60721. name: "Normal",
  60722. height: math.unit(7 + 4/12, "feet"),
  60723. default: true
  60724. },
  60725. ]
  60726. ))
  60727. characterMakers.push(() => makeCharacter(
  60728. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  60729. {
  60730. front: {
  60731. height: math.unit(4, "meters"),
  60732. name: "Front",
  60733. image: {
  60734. source: "./media/characters/crocozilla/front.svg",
  60735. extra: 1790/1742,
  60736. bottom: 78/1868
  60737. }
  60738. },
  60739. },
  60740. [
  60741. {
  60742. name: "Normal",
  60743. height: math.unit(4, "meters"),
  60744. default: true
  60745. },
  60746. ]
  60747. ))
  60748. characterMakers.push(() => makeCharacter(
  60749. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  60750. {
  60751. front: {
  60752. height: math.unit(1.8, "meters"),
  60753. weight: math.unit(120, "kg"),
  60754. name: "Front",
  60755. image: {
  60756. source: "./media/characters/kurz/front.svg",
  60757. extra: 1960/1824,
  60758. bottom: 41/2001
  60759. }
  60760. },
  60761. back: {
  60762. height: math.unit(1.8, "meters"),
  60763. weight: math.unit(120, "kg"),
  60764. name: "Back",
  60765. image: {
  60766. source: "./media/characters/kurz/back.svg",
  60767. extra: 1906/1787,
  60768. bottom: 60/1966
  60769. }
  60770. },
  60771. frontLewd: {
  60772. height: math.unit(1.8, "meters"),
  60773. weight: math.unit(120, "kg"),
  60774. name: "Front (Lewd)",
  60775. image: {
  60776. source: "./media/characters/kurz/front-lewd.svg",
  60777. extra: 1960/1824,
  60778. bottom: 41/2001
  60779. }
  60780. },
  60781. maw: {
  60782. height: math.unit(0.69, "meters"),
  60783. name: "Maw",
  60784. image: {
  60785. source: "./media/characters/kurz/maw.svg"
  60786. }
  60787. },
  60788. },
  60789. [
  60790. {
  60791. name: "Original Size",
  60792. height: math.unit(1.8, "meters")
  60793. },
  60794. {
  60795. name: "Incognito Size",
  60796. height: math.unit(2.4, "meters"),
  60797. default: true
  60798. },
  60799. {
  60800. name: "Macro",
  60801. height: math.unit(30, "meters")
  60802. },
  60803. {
  60804. name: "Macro+",
  60805. height: math.unit(250, "meters")
  60806. },
  60807. {
  60808. name: "Mega",
  60809. height: math.unit(2, "km")
  60810. },
  60811. {
  60812. name: "Mega+",
  60813. height: math.unit(35, "km")
  60814. },
  60815. {
  60816. name: "Mega++",
  60817. height: math.unit(75, "km")
  60818. },
  60819. {
  60820. name: "Giga",
  60821. height: math.unit(250, "km")
  60822. },
  60823. {
  60824. name: "Terra",
  60825. height: math.unit(15000, "km")
  60826. },
  60827. {
  60828. name: "Terra+",
  60829. height: math.unit(2250000, "km")
  60830. },
  60831. ]
  60832. ))
  60833. characterMakers.push(() => makeCharacter(
  60834. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  60835. {
  60836. front: {
  60837. height: math.unit(16 + 3/12, "feet"),
  60838. weight: math.unit(3575, "lb"),
  60839. name: "Front",
  60840. image: {
  60841. source: "./media/characters/nikita/front.svg",
  60842. extra: 1064/955,
  60843. bottom: 47/1111
  60844. }
  60845. },
  60846. },
  60847. [
  60848. {
  60849. name: "Normal",
  60850. height: math.unit(16 + 3/12, "feet"),
  60851. default: true
  60852. },
  60853. {
  60854. name: "Big",
  60855. height: math.unit(21, "feet")
  60856. },
  60857. {
  60858. name: "Biggest",
  60859. height: math.unit(50, "feet")
  60860. },
  60861. ]
  60862. ))
  60863. characterMakers.push(() => makeCharacter(
  60864. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  60865. {
  60866. front: {
  60867. height: math.unit(1.92, "m"),
  60868. weight: math.unit(76, "kg"),
  60869. name: "Front",
  60870. image: {
  60871. source: "./media/characters/kyara/front.svg",
  60872. extra: 1550/1438,
  60873. bottom: 139/1689
  60874. }
  60875. },
  60876. back: {
  60877. height: math.unit(1.92, "m"),
  60878. weight: math.unit(76, "kg"),
  60879. name: "Back",
  60880. image: {
  60881. source: "./media/characters/kyara/back.svg",
  60882. extra: 1523/1427,
  60883. bottom: 83/1606
  60884. }
  60885. },
  60886. head: {
  60887. height: math.unit(1.22, "feet"),
  60888. name: "Head",
  60889. image: {
  60890. source: "./media/characters/kyara/head.svg"
  60891. }
  60892. },
  60893. maw: {
  60894. height: math.unit(0.73, "feet"),
  60895. name: "Maw",
  60896. image: {
  60897. source: "./media/characters/kyara/maw.svg"
  60898. }
  60899. },
  60900. paws: {
  60901. height: math.unit(0.95, "feet"),
  60902. name: "Paws",
  60903. image: {
  60904. source: "./media/characters/kyara/paws.svg"
  60905. }
  60906. },
  60907. },
  60908. [
  60909. {
  60910. name: "Normal",
  60911. height: math.unit(1.92, "meters"),
  60912. default: true
  60913. },
  60914. {
  60915. name: "Mini Macro",
  60916. height: math.unit(192, "meters")
  60917. },
  60918. {
  60919. name: "Macro",
  60920. height: math.unit(480, "meters")
  60921. },
  60922. {
  60923. name: "Mega Macro",
  60924. height: math.unit(1440, "meters")
  60925. },
  60926. ]
  60927. ))
  60928. characterMakers.push(() => makeCharacter(
  60929. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  60930. {
  60931. front: {
  60932. height: math.unit(6, "feet"),
  60933. weight: math.unit(160, "lbs"),
  60934. preyCapacity: math.unit(0.05, "people"),
  60935. name: "Front",
  60936. image: {
  60937. source: "./media/characters/layla-amari/front.svg",
  60938. extra: 1922/1723,
  60939. bottom: 90/2012
  60940. }
  60941. },
  60942. back: {
  60943. height: math.unit(6, "feet"),
  60944. weight: math.unit(160, "lbs"),
  60945. preyCapacity: math.unit(0.05, "people"),
  60946. name: "Back",
  60947. image: {
  60948. source: "./media/characters/layla-amari/back.svg",
  60949. extra: 1917/1718,
  60950. bottom: 50/1967
  60951. }
  60952. },
  60953. frontDressed: {
  60954. height: math.unit(6, "feet"),
  60955. weight: math.unit(160, "lbs"),
  60956. preyCapacity: math.unit(0.05, "people"),
  60957. name: "Front (Dressed)",
  60958. image: {
  60959. source: "./media/characters/layla-amari/front-dressed.svg",
  60960. extra: 1922/1723,
  60961. bottom: 90/2012
  60962. }
  60963. },
  60964. face: {
  60965. height: math.unit(0.93, "feet"),
  60966. name: "Face",
  60967. image: {
  60968. source: "./media/characters/layla-amari/face.svg"
  60969. }
  60970. },
  60971. hand: {
  60972. height: math.unit(0.66 , "feet"),
  60973. name: "Hand",
  60974. image: {
  60975. source: "./media/characters/layla-amari/hand.svg"
  60976. }
  60977. },
  60978. foot: {
  60979. height: math.unit(1, "feet"),
  60980. name: "Foot",
  60981. image: {
  60982. source: "./media/characters/layla-amari/foot.svg"
  60983. }
  60984. },
  60985. necklace: {
  60986. height: math.unit(0.32, "feet"),
  60987. name: "Necklace",
  60988. image: {
  60989. source: "./media/characters/layla-amari/necklace.svg"
  60990. }
  60991. },
  60992. nipple: {
  60993. height: math.unit(0.2, "feet"),
  60994. name: "Nipple",
  60995. image: {
  60996. source: "./media/characters/layla-amari/nipple.svg"
  60997. }
  60998. },
  60999. slit: {
  61000. height: math.unit(0.26, "feet"),
  61001. name: "Slit",
  61002. image: {
  61003. source: "./media/characters/layla-amari/slit.svg"
  61004. }
  61005. },
  61006. },
  61007. [
  61008. {
  61009. name: "Natural",
  61010. height: math.unit(825, "feet"),
  61011. default: true
  61012. },
  61013. {
  61014. name: "Enhanced",
  61015. height: math.unit(8250, "feet")
  61016. },
  61017. {
  61018. name: "Apparent Size",
  61019. height: math.unit(9.04363e+8, "meters")
  61020. },
  61021. ]
  61022. ))
  61023. characterMakers.push(() => makeCharacter(
  61024. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61025. {
  61026. front: {
  61027. height: math.unit(1.3, "meters"),
  61028. name: "Front",
  61029. image: {
  61030. source: "./media/characters/percy/front.svg",
  61031. extra: 1444/1289,
  61032. bottom: 54/1498
  61033. }
  61034. },
  61035. },
  61036. [
  61037. {
  61038. name: "Normal",
  61039. height: math.unit(1.3, "meters"),
  61040. default: true
  61041. },
  61042. ]
  61043. ))
  61044. characterMakers.push(() => makeCharacter(
  61045. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61046. {
  61047. side: {
  61048. height: math.unit(10, "meters"),
  61049. name: "Side",
  61050. image: {
  61051. source: "./media/characters/grev/side.svg",
  61052. extra: 653/266,
  61053. bottom: 77/730
  61054. }
  61055. },
  61056. head: {
  61057. height: math.unit(16.2, "m"),
  61058. name: "Head",
  61059. image: {
  61060. source: "./media/characters/grev/head.svg"
  61061. }
  61062. },
  61063. dick: {
  61064. height: math.unit(2.8135932034, "m"),
  61065. name: "Dick",
  61066. image: {
  61067. source: "./media/characters/grev/dick.svg"
  61068. }
  61069. },
  61070. },
  61071. [
  61072. {
  61073. name: "Friend-Sized",
  61074. height: math.unit(80, "cm")
  61075. },
  61076. {
  61077. name: "Normal",
  61078. height: math.unit(10, "meters"),
  61079. default: true
  61080. },
  61081. {
  61082. name: "Macro",
  61083. height: math.unit(200, "meters")
  61084. },
  61085. ]
  61086. ))
  61087. characterMakers.push(() => makeCharacter(
  61088. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61089. {
  61090. front: {
  61091. height: math.unit(19.75, "feet"),
  61092. weight: math.unit(20000, "lb"),
  61093. name: "Front",
  61094. image: {
  61095. source: "./media/characters/azuuca/front.svg",
  61096. extra: 1593/1511,
  61097. bottom: 55/1648
  61098. }
  61099. },
  61100. },
  61101. [
  61102. {
  61103. name: "Normal",
  61104. height: math.unit(19.75, "feet"),
  61105. default: true
  61106. },
  61107. ]
  61108. ))
  61109. characterMakers.push(() => makeCharacter(
  61110. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61111. {
  61112. front: {
  61113. height: math.unit(15, "feet"),
  61114. weight: math.unit(1500, "lb"),
  61115. name: "Front",
  61116. image: {
  61117. source: "./media/characters/valuria/front.svg",
  61118. extra: 1588/1486,
  61119. bottom: 31/1619
  61120. }
  61121. },
  61122. },
  61123. [
  61124. {
  61125. name: "Normal",
  61126. height: math.unit(15, "feet"),
  61127. default: true
  61128. },
  61129. {
  61130. name: "Small",
  61131. height: math.unit(500, "feet")
  61132. },
  61133. {
  61134. name: "Macro",
  61135. height: math.unit(4000, "feet")
  61136. },
  61137. {
  61138. name: "Mega Macro",
  61139. height: math.unit(2000, "miles")
  61140. },
  61141. {
  61142. name: "Giga Macro",
  61143. height: math.unit(3e6, "miles")
  61144. },
  61145. ]
  61146. ))
  61147. characterMakers.push(() => makeCharacter(
  61148. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61149. {
  61150. front: {
  61151. height: math.unit(3500, "solarradii"),
  61152. name: "Front",
  61153. image: {
  61154. source: "./media/characters/terigaia/front.svg",
  61155. extra: 1531/1451,
  61156. bottom: 98/1629
  61157. }
  61158. },
  61159. },
  61160. [
  61161. {
  61162. name: "Normal",
  61163. height: math.unit(3500, "solarradii"),
  61164. default: true
  61165. },
  61166. ]
  61167. ))
  61168. characterMakers.push(() => makeCharacter(
  61169. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61170. {
  61171. front: {
  61172. height: math.unit(9.34, "feet"),
  61173. weight: math.unit(600, "lb"),
  61174. name: "Front",
  61175. image: {
  61176. source: "./media/characters/blair-blaziken/front.svg",
  61177. extra: 1557/1462,
  61178. bottom: 55/1612
  61179. }
  61180. },
  61181. },
  61182. [
  61183. {
  61184. name: "Normal",
  61185. height: math.unit(9.34, "feet"),
  61186. default: true
  61187. },
  61188. ]
  61189. ))
  61190. characterMakers.push(() => makeCharacter(
  61191. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  61192. {
  61193. pistrogre_front: {
  61194. height: math.unit(10, "feet"),
  61195. weight: math.unit(10, "tons"),
  61196. name: "Front",
  61197. image: {
  61198. source: "./media/characters/braxia/pistrogre-front.svg",
  61199. extra: 1531/1334,
  61200. bottom: 114/1645
  61201. },
  61202. form: "pistrogre",
  61203. default: true
  61204. },
  61205. human_front: {
  61206. height: math.unit(10, "feet"),
  61207. weight: math.unit(10, "tons"),
  61208. name: "Front",
  61209. image: {
  61210. source: "./media/characters/braxia/human-front.svg",
  61211. extra: 1574/1501,
  61212. bottom: 37/1611
  61213. },
  61214. form: "human",
  61215. default: true
  61216. },
  61217. },
  61218. [
  61219. {
  61220. name: "Normal",
  61221. height: math.unit(10, "feet"),
  61222. default: true,
  61223. allForms: true
  61224. },
  61225. {
  61226. name: "Macro",
  61227. height: math.unit(1000, "feet"),
  61228. allForms: true
  61229. },
  61230. {
  61231. name: "Mega Macro",
  61232. height: math.unit(100, "miles"),
  61233. allForms: true
  61234. },
  61235. {
  61236. name: "Cosmic",
  61237. height: math.unit(1000000, "lightyears"),
  61238. allForms: true
  61239. },
  61240. {
  61241. name: "ϐѮԆԬӁꭍϞԢ",
  61242. height: math.unit(1000, "multiverses"),
  61243. allForms: true
  61244. },
  61245. ],
  61246. {
  61247. "pistrogre": {
  61248. name: "Pistrogre",
  61249. default: true
  61250. },
  61251. "human": {
  61252. name: "Human",
  61253. },
  61254. }
  61255. ))
  61256. characterMakers.push(() => makeCharacter(
  61257. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  61258. {
  61259. front: {
  61260. height: math.unit(6 + 1/12, "feet"),
  61261. weight: math.unit(280, "lb"),
  61262. name: "Front",
  61263. image: {
  61264. source: "./media/characters/kiriga-yato/front.svg",
  61265. extra: 445/394,
  61266. bottom: 11/456
  61267. }
  61268. },
  61269. },
  61270. [
  61271. {
  61272. name: "Descended",
  61273. height: math.unit(3, "feet")
  61274. },
  61275. {
  61276. name: "Average",
  61277. height: math.unit(6 + 1/12, "feet"),
  61278. default: true
  61279. },
  61280. {
  61281. name: "Ascended",
  61282. height: math.unit(9 + 2/12, "feet")
  61283. },
  61284. ]
  61285. ))
  61286. characterMakers.push(() => makeCharacter(
  61287. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  61288. {
  61289. front: {
  61290. height: math.unit(6, "feet"),
  61291. weight: math.unit(150, "lb"),
  61292. name: "Front",
  61293. image: {
  61294. source: "./media/characters/kylie/front.svg",
  61295. extra: 1114/1046,
  61296. bottom: 65/1179
  61297. },
  61298. extraAttributes: {
  61299. "hoofSize": {
  61300. name: "Hoof Size",
  61301. power: 2,
  61302. type: "area",
  61303. base: math.unit(0.034, "m^2")
  61304. },
  61305. "footSize": {
  61306. name: "Foot Size",
  61307. power: 2,
  61308. type: "area",
  61309. base: math.unit(0.75, "m^2")
  61310. },
  61311. }
  61312. },
  61313. side: {
  61314. height: math.unit(6, "feet"),
  61315. weight: math.unit(150, "lb"),
  61316. name: "Side",
  61317. image: {
  61318. source: "./media/characters/kylie/side.svg",
  61319. extra: 1178/1110,
  61320. bottom: 21/1199
  61321. },
  61322. extraAttributes: {
  61323. "hoofSize": {
  61324. name: "Hoof Size",
  61325. power: 2,
  61326. type: "area",
  61327. base: math.unit(0.034, "m^2")
  61328. },
  61329. "footSize": {
  61330. name: "Foot Size",
  61331. power: 2,
  61332. type: "area",
  61333. base: math.unit(0.75, "m^2")
  61334. },
  61335. }
  61336. },
  61337. back: {
  61338. height: math.unit(6, "feet"),
  61339. weight: math.unit(150, "lb"),
  61340. name: "Back",
  61341. image: {
  61342. source: "./media/characters/kylie/back.svg",
  61343. extra: 1115/1047,
  61344. bottom: 66/1181
  61345. },
  61346. extraAttributes: {
  61347. "hoofSize": {
  61348. name: "Hoof Size",
  61349. power: 2,
  61350. type: "area",
  61351. base: math.unit(0.034, "m^2")
  61352. },
  61353. "footSize": {
  61354. name: "Foot Size",
  61355. power: 2,
  61356. type: "area",
  61357. base: math.unit(0.75, "m^2")
  61358. },
  61359. }
  61360. },
  61361. head: {
  61362. height: math.unit(1.85, "feet"),
  61363. name: "Head",
  61364. image: {
  61365. source: "./media/characters/kylie/head.svg"
  61366. }
  61367. },
  61368. },
  61369. [
  61370. {
  61371. name: "Normal",
  61372. height: math.unit(90, "meters"),
  61373. default: true
  61374. },
  61375. ]
  61376. ))
  61377. characterMakers.push(() => makeCharacter(
  61378. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  61379. {
  61380. front: {
  61381. height: math.unit(245, "feet"),
  61382. weight: math.unit(400000, "lb"),
  61383. name: "Front",
  61384. image: {
  61385. source: "./media/characters/sabado/front.svg",
  61386. extra: 1309/1164,
  61387. bottom: 29/1338
  61388. }
  61389. },
  61390. },
  61391. [
  61392. {
  61393. name: "Normal",
  61394. height: math.unit(245, "feet"),
  61395. default: true
  61396. },
  61397. ]
  61398. ))
  61399. characterMakers.push(() => makeCharacter(
  61400. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  61401. {
  61402. shark_front: {
  61403. height: math.unit(2, "meters"),
  61404. weight: math.unit(200, "kg"),
  61405. name: "Front",
  61406. image: {
  61407. source: "./media/characters/zechal/shark-front.svg",
  61408. extra: 969/925,
  61409. bottom: 74/1043
  61410. },
  61411. form: "shark",
  61412. },
  61413. shark_back: {
  61414. height: math.unit(2, "meters"),
  61415. weight: math.unit(200, "kg"),
  61416. name: "Back",
  61417. image: {
  61418. source: "./media/characters/zechal/shark-back.svg",
  61419. extra: 994/949,
  61420. bottom: 176/1170
  61421. },
  61422. form: "shark",
  61423. },
  61424. shark_frontLewd: {
  61425. height: math.unit(2, "meters"),
  61426. weight: math.unit(200, "kg"),
  61427. name: "Front (Lewd)",
  61428. image: {
  61429. source: "./media/characters/zechal/shark-front-lewd.svg",
  61430. extra: 969/925,
  61431. bottom: 74/1043
  61432. },
  61433. form: "shark",
  61434. },
  61435. shark_side: {
  61436. height: math.unit(1.56, "meters"),
  61437. weight: math.unit(200, "kg"),
  61438. name: "Side",
  61439. image: {
  61440. source: "./media/characters/zechal/shark-side.svg"
  61441. },
  61442. form: "shark",
  61443. },
  61444. dragon_front: {
  61445. height: math.unit(2, "meters"),
  61446. weight: math.unit(200, "kg"),
  61447. name: "Front",
  61448. image: {
  61449. source: "./media/characters/zechal/dragon-front.svg",
  61450. extra: 1041/925,
  61451. bottom: 74/1115
  61452. },
  61453. form: "dragon",
  61454. },
  61455. dragon_back: {
  61456. height: math.unit(2, "meters"),
  61457. weight: math.unit(200, "kg"),
  61458. name: "Back",
  61459. image: {
  61460. source: "./media/characters/zechal/dragon-back.svg",
  61461. extra: 1061/949,
  61462. bottom: 176/1237
  61463. },
  61464. form: "dragon",
  61465. },
  61466. dragon_frontLewd: {
  61467. height: math.unit(2, "meters"),
  61468. weight: math.unit(200, "kg"),
  61469. name: "Front (Lewd)",
  61470. image: {
  61471. source: "./media/characters/zechal/dragon-front-lewd.svg",
  61472. extra: 1041/925,
  61473. bottom: 74/1115
  61474. },
  61475. form: "dragon",
  61476. },
  61477. dragon_side: {
  61478. height: math.unit(1.56, "meters"),
  61479. weight: math.unit(200, "kg"),
  61480. name: "Side",
  61481. image: {
  61482. source: "./media/characters/zechal/dragon-side.svg"
  61483. },
  61484. form: "dragon",
  61485. },
  61486. foot: {
  61487. height: math.unit(0.5, "meters"),
  61488. name: "Foot",
  61489. image: {
  61490. source: "./media/characters/zechal/foot.svg"
  61491. }
  61492. },
  61493. sheathFront: {
  61494. height: math.unit(0.45, "meters"),
  61495. name: "Sheath (Front)",
  61496. image: {
  61497. source: "./media/characters/zechal/sheath-front.svg"
  61498. }
  61499. },
  61500. sheathSide: {
  61501. height: math.unit(0.45, "meters"),
  61502. name: "Sheath (Side)",
  61503. image: {
  61504. source: "./media/characters/zechal/sheath-side.svg"
  61505. }
  61506. },
  61507. },
  61508. [
  61509. {
  61510. name: "Incognito",
  61511. height: math.unit(2, "meters"),
  61512. allForms: true
  61513. },
  61514. {
  61515. name: "Small Rampage",
  61516. height: math.unit(25, "meters"),
  61517. allForms: true
  61518. },
  61519. {
  61520. name: "Home Size",
  61521. height: math.unit(250, "meters"),
  61522. allForms: true,
  61523. default: true
  61524. },
  61525. {
  61526. name: "Macro+",
  61527. height: math.unit(700, "meters"),
  61528. allForms: true
  61529. },
  61530. {
  61531. name: "Small Mega",
  61532. height: math.unit(3, "km"),
  61533. allForms: true
  61534. },
  61535. {
  61536. name: "Mega",
  61537. height: math.unit(15, "km"),
  61538. allForms: true
  61539. },
  61540. {
  61541. name: "Giga",
  61542. height: math.unit(300, "km"),
  61543. allForms: true
  61544. },
  61545. {
  61546. name: "Giga+",
  61547. height: math.unit(1750, "km"),
  61548. allForms: true
  61549. },
  61550. {
  61551. name: "Continental",
  61552. height: math.unit(5000, "km"),
  61553. allForms: true
  61554. },
  61555. {
  61556. name: "Terra",
  61557. height: math.unit(20000, "km"),
  61558. allForms: true
  61559. },
  61560. {
  61561. name: "Terra+",
  61562. height: math.unit(300000, "km"),
  61563. allForms: true
  61564. },
  61565. {
  61566. name: "Solar",
  61567. height: math.unit(40000000, "km"),
  61568. allForms: true
  61569. },
  61570. {
  61571. name: "Galactic",
  61572. height: math.unit(810133, "parsecs"),
  61573. allForms: true
  61574. },
  61575. {
  61576. name: "Universal",
  61577. height: math.unit(25, "universes"),
  61578. allForms: true
  61579. },
  61580. ],
  61581. {
  61582. "shark": {
  61583. name: "Shark",
  61584. default: true
  61585. },
  61586. "dragon": {
  61587. name: "Dragon",
  61588. },
  61589. }
  61590. ))
  61591. characterMakers.push(() => makeCharacter(
  61592. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  61593. {
  61594. front: {
  61595. height: math.unit(2.2, "meters"),
  61596. weight: math.unit(150, "kg"),
  61597. name: "Front",
  61598. image: {
  61599. source: "./media/characters/sergis/front.svg",
  61600. extra: 1314/1312,
  61601. bottom: 112/1426
  61602. }
  61603. },
  61604. back: {
  61605. height: math.unit(2.2, "meters"),
  61606. weight: math.unit(150, "kg"),
  61607. name: "Back",
  61608. image: {
  61609. source: "./media/characters/sergis/back.svg",
  61610. extra: 1335/1333,
  61611. bottom: 19/1354
  61612. }
  61613. },
  61614. frontLewd: {
  61615. height: math.unit(2.2, "meters"),
  61616. weight: math.unit(150, "kg"),
  61617. name: "Front (Lewd)",
  61618. image: {
  61619. source: "./media/characters/sergis/front-lewd.svg",
  61620. extra: 1314/1312,
  61621. bottom: 112/1426
  61622. }
  61623. },
  61624. frontDressed: {
  61625. height: math.unit(2.2, "meters"),
  61626. weight: math.unit(150, "kg"),
  61627. name: "Front (Dressed)",
  61628. image: {
  61629. source: "./media/characters/sergis/front-dressed.svg",
  61630. extra: 1330/1328,
  61631. bottom: 95/1425
  61632. }
  61633. },
  61634. frontDressedLewd: {
  61635. height: math.unit(2.2, "meters"),
  61636. weight: math.unit(150, "kg"),
  61637. name: "Front (Dressed, Lewd)",
  61638. image: {
  61639. source: "./media/characters/sergis/front-dressed-lewd.svg",
  61640. extra: 1330/1328,
  61641. bottom: 95/1425
  61642. }
  61643. },
  61644. maw: {
  61645. height: math.unit(0.48, "meters"),
  61646. name: "Maw",
  61647. image: {
  61648. source: "./media/characters/sergis/maw.svg"
  61649. }
  61650. },
  61651. sheath: {
  61652. height: math.unit(0.38, "meters"),
  61653. name: "Sheath",
  61654. image: {
  61655. source: "./media/characters/sergis/sheath.svg"
  61656. }
  61657. },
  61658. },
  61659. [
  61660. {
  61661. name: "Incognito Size",
  61662. height: math.unit(2.2, "meters")
  61663. },
  61664. {
  61665. name: "Small Macro",
  61666. height: math.unit(40, "meters")
  61667. },
  61668. {
  61669. name: "Macro",
  61670. height: math.unit(150, "meters")
  61671. },
  61672. {
  61673. name: "Macro+",
  61674. height: math.unit(300, "meters")
  61675. },
  61676. {
  61677. name: "Mega",
  61678. height: math.unit(2.5, "km")
  61679. },
  61680. {
  61681. name: "Mega+",
  61682. height: math.unit(30, "km")
  61683. },
  61684. {
  61685. name: "Home Size",
  61686. height: math.unit(300, "km"),
  61687. default: true
  61688. },
  61689. {
  61690. name: "Giga+",
  61691. height: math.unit(1000, "km")
  61692. },
  61693. {
  61694. name: "Giga++",
  61695. height: math.unit(6000, "km")
  61696. },
  61697. {
  61698. name: "Terra",
  61699. height: math.unit(70000, "km")
  61700. },
  61701. {
  61702. name: "Terra+",
  61703. height: math.unit(200000, "km")
  61704. },
  61705. {
  61706. name: "Galactic",
  61707. height: math.unit(634200, "lightyears")
  61708. },
  61709. ]
  61710. ))
  61711. characterMakers.push(() => makeCharacter(
  61712. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  61713. {
  61714. standard: {
  61715. height: math.unit(1 + 5/12, "feet"),
  61716. name: "Standard",
  61717. image: {
  61718. source: "./media/characters/spade/standard.svg",
  61719. extra: 1794/1703,
  61720. bottom: 115/1909
  61721. }
  61722. },
  61723. disguised: {
  61724. height: math.unit(1 + 5/12, "feet"),
  61725. name: "Disguised",
  61726. image: {
  61727. source: "./media/characters/spade/disguised.svg",
  61728. extra: 1794/1700,
  61729. bottom: 98/1892
  61730. }
  61731. },
  61732. },
  61733. [
  61734. {
  61735. name: "Normal",
  61736. height: math.unit(1 + 5/12, "feet"),
  61737. default: true
  61738. },
  61739. ]
  61740. ))
  61741. characterMakers.push(() => makeCharacter(
  61742. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  61743. {
  61744. frontNsfw: {
  61745. height: math.unit(5, "meters"),
  61746. weight: math.unit(2000, "kg"),
  61747. preyCapacity: math.unit(5, "people"),
  61748. name: "Front (NSFW)",
  61749. image: {
  61750. source: "./media/characters/zeanlain/front-nsfw.svg",
  61751. extra: 1087/938,
  61752. bottom: 93/1180
  61753. },
  61754. extraAttributes: {
  61755. "wingspan": {
  61756. name: "Wingspan",
  61757. power: 1,
  61758. type: "length",
  61759. base: math.unit(10, "meters")
  61760. },
  61761. "footSize": {
  61762. name: "Foot Size",
  61763. power: 1,
  61764. type: "length",
  61765. base: math.unit(0.68, "meters")
  61766. },
  61767. "cockLength": {
  61768. name: "Cock Length",
  61769. power: 1,
  61770. type: "length",
  61771. base: math.unit(1.69, "meters")
  61772. },
  61773. "ballVolume": {
  61774. name: "Ball Volume",
  61775. power: 3,
  61776. type: "volume",
  61777. base: math.unit(0.028, "m^3")
  61778. },
  61779. }
  61780. },
  61781. front: {
  61782. height: math.unit(5, "meters"),
  61783. weight: math.unit(2000, "kg"),
  61784. preyCapacity: math.unit(3, "people"),
  61785. name: "Front",
  61786. image: {
  61787. source: "./media/characters/zeanlain/front.svg",
  61788. extra: 1087/938,
  61789. bottom: 93/1180
  61790. },
  61791. extraAttributes: {
  61792. "wingspan": {
  61793. name: "Wingspan",
  61794. power: 1,
  61795. type: "length",
  61796. base: math.unit(10, "meters")
  61797. },
  61798. "footSize": {
  61799. name: "Foot Size",
  61800. power: 1,
  61801. type: "length",
  61802. base: math.unit(0.68, "meters")
  61803. },
  61804. }
  61805. },
  61806. },
  61807. [
  61808. {
  61809. name: "Normal",
  61810. height: math.unit(5, "meters"),
  61811. default: true
  61812. },
  61813. ]
  61814. ))
  61815. characterMakers.push(() => makeCharacter(
  61816. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  61817. {
  61818. front: {
  61819. height: math.unit(10, "meters"),
  61820. weight: math.unit(250000, "kg"),
  61821. name: "Front",
  61822. image: {
  61823. source: "./media/characters/airamis/front.svg",
  61824. extra: 865/835,
  61825. bottom: 13/878
  61826. }
  61827. },
  61828. },
  61829. [
  61830. {
  61831. name: "Normal",
  61832. height: math.unit(10, "meters"),
  61833. default: true
  61834. },
  61835. ]
  61836. ))
  61837. characterMakers.push(() => makeCharacter(
  61838. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  61839. {
  61840. front: {
  61841. height: math.unit(3 + 3/12, "feet"),
  61842. weight: math.unit(75, "lb"),
  61843. name: "Front",
  61844. image: {
  61845. source: "./media/characters/corra-tourmaline/front.svg",
  61846. extra: 1037/864,
  61847. bottom: 39/1076
  61848. }
  61849. },
  61850. back: {
  61851. height: math.unit(3 + 3/12, "feet"),
  61852. weight: math.unit(75, "lb"),
  61853. name: "Back",
  61854. image: {
  61855. source: "./media/characters/corra-tourmaline/back.svg",
  61856. extra: 1022/849,
  61857. bottom: 26/1048
  61858. }
  61859. },
  61860. dressed: {
  61861. height: math.unit(3 + 3/12, "feet"),
  61862. weight: math.unit(75, "lb"),
  61863. name: "Dressed",
  61864. image: {
  61865. source: "./media/characters/corra-tourmaline/dressed.svg",
  61866. extra: 1037/864,
  61867. bottom: 39/1076
  61868. }
  61869. },
  61870. beans: {
  61871. height: math.unit(0.37, "feet"),
  61872. name: "Beans",
  61873. image: {
  61874. source: "./media/characters/corra-tourmaline/beans.svg"
  61875. }
  61876. },
  61877. },
  61878. [
  61879. {
  61880. name: "Normal",
  61881. height: math.unit(3 + 3/12, "feet"),
  61882. default: true
  61883. },
  61884. {
  61885. name: "Macro",
  61886. height: math.unit(32, "feet")
  61887. },
  61888. ]
  61889. ))
  61890. characterMakers.push(() => makeCharacter(
  61891. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  61892. {
  61893. front: {
  61894. height: math.unit(6 + 2/12, "feet"),
  61895. weight: math.unit(203, "lb"),
  61896. name: "Front",
  61897. image: {
  61898. source: "./media/characters/maki-kawa/front.svg",
  61899. extra: 950/890,
  61900. bottom: 62/1012
  61901. }
  61902. },
  61903. back: {
  61904. height: math.unit(6 + 2/12, "feet"),
  61905. weight: math.unit(203, "lb"),
  61906. name: "Back",
  61907. image: {
  61908. source: "./media/characters/maki-kawa/back.svg",
  61909. extra: 953/878,
  61910. bottom: 49/1002
  61911. }
  61912. },
  61913. frontBarista: {
  61914. height: math.unit(6 + 2/12, "feet"),
  61915. weight: math.unit(203, "lb"),
  61916. name: "Front (Barista)",
  61917. image: {
  61918. source: "./media/characters/maki-kawa/front-barista.svg",
  61919. extra: 943/883,
  61920. bottom: 69/1012
  61921. }
  61922. },
  61923. backBarista: {
  61924. height: math.unit(6 + 2/12, "feet"),
  61925. weight: math.unit(203, "lb"),
  61926. name: "Back (Barista)",
  61927. image: {
  61928. source: "./media/characters/maki-kawa/back-barista.svg",
  61929. extra: 953/878,
  61930. bottom: 49/1002
  61931. }
  61932. },
  61933. frontWrestler: {
  61934. height: math.unit(6 + 2/12, "feet"),
  61935. weight: math.unit(203, "lb"),
  61936. name: "Front (Wrestler)",
  61937. image: {
  61938. source: "./media/characters/maki-kawa/front-wrestler.svg",
  61939. extra: 950/890,
  61940. bottom: 62/1012
  61941. }
  61942. },
  61943. backWrestler: {
  61944. height: math.unit(6 + 2/12, "feet"),
  61945. weight: math.unit(203, "lb"),
  61946. name: "Back (Wrestler)",
  61947. image: {
  61948. source: "./media/characters/maki-kawa/back-wrestler.svg",
  61949. extra: 953/878,
  61950. bottom: 49/1002
  61951. }
  61952. },
  61953. headFront: {
  61954. height: math.unit(1.64, "feet"),
  61955. name: "Head (Front)",
  61956. image: {
  61957. source: "./media/characters/maki-kawa/head-front.svg"
  61958. }
  61959. },
  61960. headSide: {
  61961. height: math.unit(1.59, "feet"),
  61962. name: "Head (Side)",
  61963. image: {
  61964. source: "./media/characters/maki-kawa/head-side.svg"
  61965. }
  61966. },
  61967. paw: {
  61968. height: math.unit(0.9, "feet"),
  61969. name: "Paw",
  61970. image: {
  61971. source: "./media/characters/maki-kawa/paw.svg"
  61972. }
  61973. },
  61974. },
  61975. [
  61976. {
  61977. name: "Normal",
  61978. height: math.unit(6 + 2/12, "feet"),
  61979. default: true
  61980. },
  61981. {
  61982. name: "Macro",
  61983. height: math.unit(617, "feet")
  61984. },
  61985. ]
  61986. ))
  61987. characterMakers.push(() => makeCharacter(
  61988. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  61989. {
  61990. front: {
  61991. height: math.unit(10, "feet"),
  61992. weight: math.unit(1500, "lb"),
  61993. name: "Front",
  61994. image: {
  61995. source: "./media/characters/lennox/front.svg",
  61996. extra: 1623/1496,
  61997. bottom: 18/1641
  61998. }
  61999. },
  62000. back: {
  62001. height: math.unit(10, "feet"),
  62002. weight: math.unit(1500, "lb"),
  62003. name: "Back",
  62004. image: {
  62005. source: "./media/characters/lennox/back.svg",
  62006. extra: 1641/1481,
  62007. bottom: 13/1654
  62008. }
  62009. },
  62010. maw: {
  62011. height: math.unit(2.94, "feet"),
  62012. name: "Maw",
  62013. image: {
  62014. source: "./media/characters/lennox/maw.svg"
  62015. }
  62016. },
  62017. },
  62018. [
  62019. {
  62020. name: "Micro",
  62021. height: math.unit(1, "inch")
  62022. },
  62023. {
  62024. name: "Normal",
  62025. height: math.unit(10, "feet"),
  62026. default: true
  62027. },
  62028. {
  62029. name: "Macro",
  62030. height: math.unit(200, "feet")
  62031. },
  62032. ]
  62033. ))
  62034. characterMakers.push(() => makeCharacter(
  62035. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  62036. {
  62037. frontDressed: {
  62038. height: math.unit(15 + 7/12, "feet"),
  62039. weight: math.unit(5000, "lb"),
  62040. name: "Front (Dressed)",
  62041. image: {
  62042. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62043. extra: 1136/1023,
  62044. bottom: 51/1187
  62045. }
  62046. },
  62047. backDressed: {
  62048. height: math.unit(15 + 7/12, "feet"),
  62049. weight: math.unit(5000, "lb"),
  62050. name: "Back (Dressed)",
  62051. image: {
  62052. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  62053. extra: 2359/2143,
  62054. bottom: 103/2462
  62055. }
  62056. },
  62057. front: {
  62058. height: math.unit(15 + 7/12, "feet"),
  62059. weight: math.unit(5000, "lb"),
  62060. name: "Front",
  62061. image: {
  62062. source: "./media/characters/vyse-iron-thunder/front.svg",
  62063. extra: 1136/1023,
  62064. bottom: 51/1187
  62065. }
  62066. },
  62067. hand: {
  62068. height: math.unit(2.36, "feet"),
  62069. name: "Hand",
  62070. image: {
  62071. source: "./media/characters/vyse-iron-thunder/hand.svg"
  62072. }
  62073. },
  62074. foot: {
  62075. height: math.unit(1.72, "feet"),
  62076. name: "Foot",
  62077. image: {
  62078. source: "./media/characters/vyse-iron-thunder/foot.svg"
  62079. }
  62080. },
  62081. mouth: {
  62082. height: math.unit(2, "feet"),
  62083. name: "Mouth",
  62084. image: {
  62085. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  62086. }
  62087. },
  62088. eye: {
  62089. height: math.unit(0.58, "feet"),
  62090. name: "Eye",
  62091. image: {
  62092. source: "./media/characters/vyse-iron-thunder/eye.svg"
  62093. }
  62094. },
  62095. },
  62096. [
  62097. {
  62098. name: "Normal",
  62099. height: math.unit(15 + 7/12, "feet"),
  62100. default: true
  62101. },
  62102. {
  62103. name: "Macro",
  62104. height: math.unit(157, "feet")
  62105. },
  62106. {
  62107. name: "Macro+",
  62108. height: math.unit(1570, "feet")
  62109. },
  62110. {
  62111. name: "Macro++",
  62112. height: math.unit(15700, "feet")
  62113. },
  62114. {
  62115. name: "Macro+++",
  62116. height: math.unit(157000, "feet")
  62117. },
  62118. {
  62119. name: "Macro++++",
  62120. height: math.unit(1570000, "feet")
  62121. },
  62122. ]
  62123. ))
  62124. characterMakers.push(() => makeCharacter(
  62125. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  62126. {
  62127. side: {
  62128. height: math.unit(6, "feet"),
  62129. weight: math.unit(115, "lb"),
  62130. name: "Side",
  62131. image: {
  62132. source: "./media/characters/moonbeam/side.svg",
  62133. extra: 839/485,
  62134. bottom: 60/899
  62135. }
  62136. },
  62137. },
  62138. [
  62139. {
  62140. name: "Normal",
  62141. height: math.unit(6, "feet"),
  62142. default: true
  62143. },
  62144. ]
  62145. ))
  62146. characterMakers.push(() => makeCharacter(
  62147. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  62148. {
  62149. front: {
  62150. height: math.unit(3500, "miles"),
  62151. weight: math.unit(1659, "petatonnes"),
  62152. name: "Front",
  62153. image: {
  62154. source: "./media/characters/baltica/front.svg",
  62155. extra: 429/428,
  62156. bottom: 41/470
  62157. }
  62158. },
  62159. back: {
  62160. height: math.unit(3500, "miles"),
  62161. weight: math.unit(1659, "petatonnes"),
  62162. name: "Back",
  62163. image: {
  62164. source: "./media/characters/baltica/back.svg",
  62165. extra: 452/451,
  62166. bottom: 8/460
  62167. }
  62168. },
  62169. },
  62170. [
  62171. {
  62172. name: "Gigamacro",
  62173. height: math.unit(3500, "miles"),
  62174. default: true
  62175. },
  62176. ]
  62177. ))
  62178. characterMakers.push(() => makeCharacter(
  62179. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  62180. {
  62181. front: {
  62182. height: math.unit(6 + 10/12, "feet"),
  62183. weight: math.unit(200, "lb"),
  62184. name: "Front",
  62185. image: {
  62186. source: "./media/characters/shadow-wolf/front.svg",
  62187. extra: 1931/1760,
  62188. bottom: 88/2019
  62189. }
  62190. },
  62191. },
  62192. [
  62193. {
  62194. name: "Normal",
  62195. height: math.unit(6 + 10/12, "feet"),
  62196. default: true
  62197. },
  62198. ]
  62199. ))
  62200. characterMakers.push(() => makeCharacter(
  62201. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  62202. {
  62203. front: {
  62204. height: math.unit(5 + 10/12, "feet"),
  62205. name: "Front",
  62206. image: {
  62207. source: "./media/characters/quincy-praying-mantis/front.svg",
  62208. extra: 1055/891,
  62209. bottom: 92/1147
  62210. }
  62211. },
  62212. soles: {
  62213. height: math.unit(0.85, "feet"),
  62214. name: "Soles",
  62215. image: {
  62216. source: "./media/characters/quincy-praying-mantis/soles.svg",
  62217. extra: 429/324,
  62218. bottom: 89/518
  62219. },
  62220. extraAttributes: {
  62221. "shoeSize": {
  62222. name: "Shoe Size",
  62223. power: 1,
  62224. type: "length",
  62225. base: math.unit(23, "ShoeSizeMensUS"),
  62226. defaultUnit: "ShoeSizeMensUS"
  62227. },
  62228. }
  62229. },
  62230. foot: {
  62231. height: math.unit(0.72, "feet"),
  62232. name: "Foot",
  62233. image: {
  62234. source: "./media/characters/quincy-praying-mantis/foot.svg",
  62235. extra: 349/349,
  62236. bottom: 76/425
  62237. }
  62238. },
  62239. },
  62240. [
  62241. {
  62242. name: "Normal",
  62243. height: math.unit(5 + 10/12, "feet"),
  62244. default: true
  62245. },
  62246. ]
  62247. ))
  62248. characterMakers.push(() => makeCharacter(
  62249. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  62250. {
  62251. front: {
  62252. height: math.unit(6, "feet"),
  62253. name: "Front",
  62254. image: {
  62255. source: "./media/characters/christopher-redwood/front.svg",
  62256. extra: 1402/1341,
  62257. bottom: 23/1425
  62258. }
  62259. },
  62260. back: {
  62261. height: math.unit(6, "feet"),
  62262. name: "Back",
  62263. image: {
  62264. source: "./media/characters/christopher-redwood/back.svg",
  62265. extra: 1406/1345,
  62266. bottom: 36/1442
  62267. }
  62268. },
  62269. head: {
  62270. height: math.unit(1.685, "feet"),
  62271. name: "Head",
  62272. image: {
  62273. source: "./media/characters/christopher-redwood/head.svg"
  62274. }
  62275. },
  62276. },
  62277. [
  62278. {
  62279. name: "Normal",
  62280. height: math.unit(6, "feet"),
  62281. default: true
  62282. },
  62283. ]
  62284. ))
  62285. characterMakers.push(() => makeCharacter(
  62286. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  62287. {
  62288. front: {
  62289. height: math.unit(1.9, "meters"),
  62290. weight: math.unit(140, "lb"),
  62291. name: "Front",
  62292. image: {
  62293. source: "./media/characters/kara-fox/front.svg",
  62294. extra: 766/711,
  62295. bottom: 41/807
  62296. }
  62297. },
  62298. back: {
  62299. height: math.unit(1.9, "meters"),
  62300. weight: math.unit(140, "lb"),
  62301. name: "Back",
  62302. image: {
  62303. source: "./media/characters/kara-fox/back.svg",
  62304. extra: 766/596,
  62305. bottom: 29/795
  62306. }
  62307. },
  62308. maw: {
  62309. height: math.unit(0.78, "feet"),
  62310. name: "Maw",
  62311. image: {
  62312. source: "./media/characters/kara-fox/maw.svg"
  62313. }
  62314. },
  62315. pawpads: {
  62316. height: math.unit(0.96, "feet"),
  62317. name: "Pawpads",
  62318. image: {
  62319. source: "./media/characters/kara-fox/pawpads.svg"
  62320. }
  62321. },
  62322. },
  62323. [
  62324. {
  62325. name: "Normal",
  62326. height: math.unit(1.9, "meters"),
  62327. default: true
  62328. },
  62329. {
  62330. name: "Giantess",
  62331. height: math.unit(80, "meters")
  62332. },
  62333. ]
  62334. ))
  62335. characterMakers.push(() => makeCharacter(
  62336. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  62337. {
  62338. front: {
  62339. height: math.unit(12, "feet"),
  62340. name: "Front",
  62341. image: {
  62342. source: "./media/characters/naomi-espeon/front.svg",
  62343. extra: 892/797,
  62344. bottom: 5/897
  62345. }
  62346. },
  62347. back: {
  62348. height: math.unit(12, "feet"),
  62349. name: "Back",
  62350. image: {
  62351. source: "./media/characters/naomi-espeon/back.svg",
  62352. extra: 890/785,
  62353. bottom: 12/902
  62354. }
  62355. },
  62356. },
  62357. [
  62358. {
  62359. name: "Normal",
  62360. height: math.unit(12, "feet"),
  62361. default: true
  62362. },
  62363. ]
  62364. ))
  62365. characterMakers.push(() => makeCharacter(
  62366. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  62367. {
  62368. anthro_front: {
  62369. height: math.unit(8, "feet"),
  62370. weight: math.unit(625, "lb"),
  62371. name: "Front",
  62372. image: {
  62373. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  62374. extra: 638/574,
  62375. bottom: 73/711
  62376. },
  62377. form: "anthro",
  62378. default: true
  62379. },
  62380. anthro_back: {
  62381. height: math.unit(8, "feet"),
  62382. weight: math.unit(625, "lb"),
  62383. name: "Back",
  62384. image: {
  62385. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  62386. extra: 674/614,
  62387. bottom: 7/681
  62388. },
  62389. form: "anthro",
  62390. },
  62391. taur_side: {
  62392. height: math.unit(16, "feet"),
  62393. weight: math.unit(4.5, "tons"),
  62394. name: "Side",
  62395. image: {
  62396. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  62397. extra: 704/646,
  62398. bottom: 132/836
  62399. },
  62400. form: "taur",
  62401. default: true
  62402. },
  62403. },
  62404. [
  62405. {
  62406. name: "Normal",
  62407. height: math.unit(8, "feet"),
  62408. default: true,
  62409. form: "anthro"
  62410. },
  62411. {
  62412. name: "Normal",
  62413. height: math.unit(16, "feet"),
  62414. default: true,
  62415. form: "taur"
  62416. },
  62417. ],
  62418. {
  62419. "anthro": {
  62420. name: "Anthro",
  62421. default: true
  62422. },
  62423. "taur": {
  62424. name: "Taur",
  62425. },
  62426. }
  62427. ))
  62428. characterMakers.push(() => makeCharacter(
  62429. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  62430. {
  62431. front: {
  62432. height: math.unit(190, "cm"),
  62433. weight: math.unit(110, "kg"),
  62434. name: "Front",
  62435. image: {
  62436. source: "./media/characters/amelie/front.svg",
  62437. extra: 530/442,
  62438. bottom: 35/565
  62439. }
  62440. },
  62441. },
  62442. [
  62443. {
  62444. name: "Normal",
  62445. height: math.unit(190, "cm"),
  62446. default: true
  62447. },
  62448. ]
  62449. ))
  62450. characterMakers.push(() => makeCharacter(
  62451. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  62452. {
  62453. front: {
  62454. height: math.unit(21, "feet"),
  62455. weight: math.unit(30000, "lb"),
  62456. name: "Front",
  62457. image: {
  62458. source: "./media/characters/valence/front.svg",
  62459. extra: 1430/1306,
  62460. bottom: 51/1481
  62461. }
  62462. },
  62463. },
  62464. [
  62465. {
  62466. name: "Normal",
  62467. height: math.unit(21, "feet"),
  62468. default: true
  62469. },
  62470. ]
  62471. ))
  62472. characterMakers.push(() => makeCharacter(
  62473. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  62474. {
  62475. front: {
  62476. height: math.unit(5 + 9/12, "feet"),
  62477. weight: math.unit(170, "lb"),
  62478. name: "Front",
  62479. image: {
  62480. source: "./media/characters/aurora-adkins/front.svg",
  62481. extra: 1141/1089,
  62482. bottom: 41/1182
  62483. }
  62484. },
  62485. },
  62486. [
  62487. {
  62488. name: "Tiny",
  62489. height: math.unit(7, "mm")
  62490. },
  62491. {
  62492. name: "Small",
  62493. height: math.unit(3.4, "inches")
  62494. },
  62495. {
  62496. name: "Normal",
  62497. height: math.unit(5 + 9/12, "feet"),
  62498. default: true
  62499. },
  62500. {
  62501. name: "Big",
  62502. height: math.unit(31, "feet")
  62503. },
  62504. {
  62505. name: "Giant",
  62506. height: math.unit(300, "feet")
  62507. },
  62508. ]
  62509. ))
  62510. characterMakers.push(() => makeCharacter(
  62511. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  62512. {
  62513. front: {
  62514. height: math.unit(5 + 6/12, "feet"),
  62515. weight: math.unit(210, "lb"),
  62516. name: "Front",
  62517. image: {
  62518. source: "./media/characters/cyber/front.svg",
  62519. extra: 1968/1798,
  62520. bottom: 10/1978
  62521. },
  62522. extraAttributes: {
  62523. "shoeSize": {
  62524. name: "Shoe Size",
  62525. power: 1,
  62526. type: "length",
  62527. base: math.unit(30, "ShoeSizeMensUS")
  62528. },
  62529. }
  62530. },
  62531. },
  62532. [
  62533. {
  62534. name: "Normal",
  62535. height: math.unit(5 + 6/12, "feet"),
  62536. default: true
  62537. },
  62538. ]
  62539. ))
  62540. characterMakers.push(() => makeCharacter(
  62541. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  62542. {
  62543. front: {
  62544. height: math.unit(6 + 6/12, "feet"),
  62545. weight: math.unit(140, "lb"),
  62546. name: "Front",
  62547. image: {
  62548. source: "./media/characters/sapphire-wairimea/front.svg",
  62549. extra: 475/458,
  62550. bottom: 14/489
  62551. }
  62552. },
  62553. },
  62554. [
  62555. {
  62556. name: "Normal",
  62557. height: math.unit(6 + 6/12, "feet")
  62558. },
  62559. {
  62560. name: "Macro",
  62561. height: math.unit(132, "feet"),
  62562. default: true
  62563. },
  62564. ]
  62565. ))
  62566. characterMakers.push(() => makeCharacter(
  62567. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  62568. {
  62569. front: {
  62570. height: math.unit(1.6, "meters"),
  62571. weight: math.unit(100, "lb"),
  62572. name: "Front",
  62573. image: {
  62574. source: "./media/characters/cirkazi/front.svg",
  62575. extra: 489/477,
  62576. bottom: 0/489
  62577. }
  62578. },
  62579. },
  62580. [
  62581. {
  62582. name: "Normal",
  62583. height: math.unit(1.6, "meters")
  62584. },
  62585. {
  62586. name: "Macro",
  62587. height: math.unit(800, "feet"),
  62588. default: true
  62589. },
  62590. ]
  62591. ))
  62592. characterMakers.push(() => makeCharacter(
  62593. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  62594. {
  62595. front: {
  62596. height: math.unit(5 + 10/12, "feet"),
  62597. weight: math.unit(145, "lb"),
  62598. name: "Front",
  62599. image: {
  62600. source: "./media/characters/corrin-cavelli/front.svg",
  62601. extra: 483/464,
  62602. bottom: 6/489
  62603. }
  62604. },
  62605. },
  62606. [
  62607. {
  62608. name: "Human",
  62609. height: math.unit(5 + 10/12, "feet")
  62610. },
  62611. {
  62612. name: "Giant",
  62613. height: math.unit(210, "feet"),
  62614. default: true
  62615. },
  62616. ]
  62617. ))
  62618. characterMakers.push(() => makeCharacter(
  62619. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  62620. {
  62621. back: {
  62622. height: math.unit(5 + 6/12, "feet"),
  62623. weight: math.unit(115, "lb"),
  62624. name: "Back",
  62625. image: {
  62626. source: "./media/characters/lori-lopez/back.svg",
  62627. extra: 483/474,
  62628. bottom: 6/489
  62629. }
  62630. },
  62631. },
  62632. [
  62633. {
  62634. name: "Human",
  62635. height: math.unit(5 + 6/12, "feet")
  62636. },
  62637. {
  62638. name: "Macro",
  62639. height: math.unit(198, "feet"),
  62640. default: true
  62641. },
  62642. ]
  62643. ))
  62644. characterMakers.push(() => makeCharacter(
  62645. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  62646. {
  62647. front: {
  62648. height: math.unit(6, "feet"),
  62649. weight: math.unit(220, "lb"),
  62650. name: "Front",
  62651. image: {
  62652. source: "./media/characters/sylvia-beauregard/front.svg",
  62653. extra: 483/479,
  62654. bottom: 6/489
  62655. }
  62656. },
  62657. },
  62658. [
  62659. {
  62660. name: "Macro",
  62661. height: math.unit(2071, "feet"),
  62662. default: true
  62663. },
  62664. ]
  62665. ))
  62666. characterMakers.push(() => makeCharacter(
  62667. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  62668. {
  62669. back: {
  62670. height: math.unit(5 + 6/12, "feet"),
  62671. weight: math.unit(160, "lb"),
  62672. name: "Back",
  62673. image: {
  62674. source: "./media/characters/akiko-takahashi/back.svg",
  62675. extra: 459/454,
  62676. bottom: 27/486
  62677. }
  62678. },
  62679. },
  62680. [
  62681. {
  62682. name: "Human",
  62683. height: math.unit(5 + 6/12, "feet")
  62684. },
  62685. {
  62686. name: "Macro",
  62687. height: math.unit(198, "feet"),
  62688. default: true
  62689. },
  62690. {
  62691. name: "Megamacro",
  62692. height: math.unit(7128, "feet")
  62693. },
  62694. ]
  62695. ))
  62696. characterMakers.push(() => makeCharacter(
  62697. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  62698. {
  62699. front: {
  62700. height: math.unit(6, "feet"),
  62701. weight: math.unit(140, "lb"),
  62702. name: "Front",
  62703. image: {
  62704. source: "./media/characters/velvet-garza/front.svg",
  62705. extra: 480/462,
  62706. bottom: 7/487
  62707. }
  62708. },
  62709. },
  62710. [
  62711. {
  62712. name: "Macro",
  62713. height: math.unit(37, "feet"),
  62714. default: true
  62715. },
  62716. ]
  62717. ))
  62718. characterMakers.push(() => makeCharacter(
  62719. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  62720. {
  62721. front: {
  62722. height: math.unit(7 + 6/12, "feet"),
  62723. weight: math.unit(400, "lb"),
  62724. name: "Front",
  62725. image: {
  62726. source: "./media/characters/gaia/front.svg",
  62727. extra: 474/463,
  62728. bottom: 13/487
  62729. }
  62730. },
  62731. },
  62732. [
  62733. {
  62734. name: "MiniMacro",
  62735. height: math.unit(7 + 6/12, "feet")
  62736. },
  62737. {
  62738. name: "GigaMacro",
  62739. height: math.unit(14500, "feet"),
  62740. default: true
  62741. },
  62742. ]
  62743. ))
  62744. characterMakers.push(() => makeCharacter(
  62745. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  62746. {
  62747. front: {
  62748. height: math.unit(6, "feet"),
  62749. weight: math.unit(150, "lb"),
  62750. name: "Front",
  62751. image: {
  62752. source: "./media/characters/tim/front.svg",
  62753. extra: 1878/1743,
  62754. bottom: 9/1887
  62755. }
  62756. },
  62757. frontDressed: {
  62758. height: math.unit(6, "feet"),
  62759. weight: math.unit(150, "lb"),
  62760. name: "Front (Dressed)",
  62761. image: {
  62762. source: "./media/characters/tim/front-dressed.svg",
  62763. extra: 1765/1485,
  62764. bottom: 48/1813
  62765. }
  62766. },
  62767. backDressed: {
  62768. height: math.unit(6, "feet"),
  62769. weight: math.unit(150, "lb"),
  62770. name: "Back (Dressed)",
  62771. image: {
  62772. source: "./media/characters/tim/back-dressed.svg",
  62773. extra: 1750/1465,
  62774. bottom: 25/1775
  62775. }
  62776. },
  62777. dick: {
  62778. height: math.unit(1.5, "feet"),
  62779. weight: math.unit(6, "lb"),
  62780. name: "Dick",
  62781. image: {
  62782. source: "./media/characters/tim/dick.svg"
  62783. }
  62784. },
  62785. hand: {
  62786. height: math.unit(0.522, "feet"),
  62787. name: "Hand",
  62788. image: {
  62789. source: "./media/characters/tim/hand.svg"
  62790. }
  62791. },
  62792. palm: {
  62793. height: math.unit(0.48, "feet"),
  62794. name: "Palm",
  62795. image: {
  62796. source: "./media/characters/tim/palm.svg"
  62797. }
  62798. },
  62799. paw: {
  62800. height: math.unit(0.9, "feet"),
  62801. name: "Paw",
  62802. image: {
  62803. source: "./media/characters/tim/paw.svg"
  62804. }
  62805. },
  62806. sole: {
  62807. height: math.unit(0.88, "feet"),
  62808. name: "Sole",
  62809. image: {
  62810. source: "./media/characters/tim/sole.svg"
  62811. }
  62812. },
  62813. },
  62814. [
  62815. {
  62816. name: "Macro",
  62817. height: math.unit(1000, "feet")
  62818. },
  62819. {
  62820. name: "Megamacro",
  62821. height: math.unit(10000, "feet"),
  62822. default: true
  62823. },
  62824. {
  62825. name: "Megamacro+",
  62826. height: math.unit(50000, "feet")
  62827. },
  62828. {
  62829. name: "Gigamacro",
  62830. height: math.unit(150000, "km")
  62831. },
  62832. ]
  62833. ))
  62834. //characters
  62835. function makeCharacters() {
  62836. const results = [];
  62837. characterMakers.forEach(character => {
  62838. results.push(character());
  62839. });
  62840. return results;
  62841. }