less copy protection, more size visualization
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

51797 lines
1.3 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity
  51. }
  52. }
  53. if (value.energyNeed) {
  54. views[key].attributes.capacity = {
  55. name: "Food Intake",
  56. power: 3,
  57. type: "energy",
  58. base: value.energyNeed
  59. }
  60. }
  61. if (value.extraAttributes) {
  62. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  63. views[key].attributes[attrKey] = attrValue
  64. })
  65. }
  66. });
  67. return createEntityMaker(info, views, defaultSizes, forms);
  68. }
  69. const speciesData = {
  70. animal: {
  71. name: "Animal"
  72. },
  73. dog: {
  74. name: "Dog",
  75. parents: [
  76. "canine"
  77. ]
  78. },
  79. canine: {
  80. name: "Canine",
  81. parents: [
  82. "mammal"
  83. ]
  84. },
  85. crux: {
  86. name: "Crux",
  87. parents: [
  88. "mammal"
  89. ]
  90. },
  91. mammal: {
  92. name: "Mammal",
  93. parents: [
  94. "animal"
  95. ]
  96. },
  97. "rough-collie": {
  98. name: "Rough Collie",
  99. parents: [
  100. "dog"
  101. ]
  102. },
  103. dragon: {
  104. name: "Dragon",
  105. parents: [
  106. "reptile"
  107. ]
  108. },
  109. reptile: {
  110. name: "Reptile",
  111. parents: [
  112. "animal"
  113. ]
  114. },
  115. woodpecker: {
  116. name: "Woodpecker",
  117. parents: [
  118. "avian"
  119. ]
  120. },
  121. avian: {
  122. name: "Avian",
  123. parents: [
  124. "animal"
  125. ]
  126. },
  127. kitsune: {
  128. name: "Kitsune",
  129. parents: [
  130. "fox"
  131. ]
  132. },
  133. fox: {
  134. name: "Fox",
  135. parents: [
  136. "mammal"
  137. ]
  138. },
  139. pokemon: {
  140. name: "Pokemon",
  141. },
  142. tiger: {
  143. name: "Tiger",
  144. parents: [
  145. "cat"
  146. ]
  147. },
  148. cat: {
  149. name: "Cat",
  150. parents: [
  151. "feliform"
  152. ]
  153. },
  154. "blue-jay": {
  155. name: "Blue Jay",
  156. parents: [
  157. "avian"
  158. ]
  159. },
  160. wolf: {
  161. name: "Wolf",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. coyote: {
  167. name: "Coyote",
  168. parents: [
  169. "mammal"
  170. ]
  171. },
  172. raccoon: {
  173. name: "Raccoon",
  174. parents: [
  175. "mammal"
  176. ]
  177. },
  178. weasel: {
  179. name: "Weasel",
  180. parents: [
  181. "mustelid"
  182. ]
  183. },
  184. "red-panda": {
  185. name: "Red Panda",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. dolphin: {
  191. name: "Dolphin",
  192. parents: [
  193. "mammal"
  194. ]
  195. },
  196. "african-wild-dog": {
  197. name: "African Wild Dog",
  198. parents: [
  199. "canine"
  200. ]
  201. },
  202. "hyena": {
  203. name: "Hyena",
  204. parents: [
  205. "feliform"
  206. ]
  207. },
  208. "carbuncle": {
  209. name: "Carbuncle",
  210. parents: [
  211. "animal"
  212. ]
  213. },
  214. bat: {
  215. name: "Bat",
  216. parents: [
  217. "mammal"
  218. ]
  219. },
  220. "leaf-nosed-bat": {
  221. name: "Leaf-Nosed Bat",
  222. parents: [
  223. "bat"
  224. ]
  225. },
  226. "fish": {
  227. name: "Fish",
  228. parents: [
  229. "animal"
  230. ]
  231. },
  232. "ram": {
  233. name: "Ram",
  234. parents: [
  235. "mammal"
  236. ]
  237. },
  238. "demon": {
  239. name: "Demon",
  240. parents: [
  241. "supernatural"
  242. ]
  243. },
  244. "cougar": {
  245. name: "Cougar",
  246. parents: [
  247. "cat"
  248. ]
  249. },
  250. "goat": {
  251. name: "Goat",
  252. parents: [
  253. "mammal"
  254. ]
  255. },
  256. "lion": {
  257. name: "Lion",
  258. parents: [
  259. "cat"
  260. ]
  261. },
  262. "harpy-eager": {
  263. name: "Harpy Eagle",
  264. parents: [
  265. "avian"
  266. ]
  267. },
  268. "deer": {
  269. name: "Deer",
  270. parents: [
  271. "mammal"
  272. ]
  273. },
  274. "phoenix": {
  275. name: "Phoenix",
  276. parents: [
  277. "avian"
  278. ]
  279. },
  280. "aeromorph": {
  281. name: "Aeromorph",
  282. parents: [
  283. "machine"
  284. ]
  285. },
  286. "machine": {
  287. name: "Machine",
  288. },
  289. "android": {
  290. name: "Android",
  291. parents: [
  292. "machine"
  293. ]
  294. },
  295. "jackal": {
  296. name: "Jackal",
  297. parents: [
  298. "canine"
  299. ]
  300. },
  301. "corvid": {
  302. name: "Corvid",
  303. parents: [
  304. "avian"
  305. ]
  306. },
  307. "pharaoh-hound": {
  308. name: "Pharaoh Hound",
  309. parents: [
  310. "dog"
  311. ]
  312. },
  313. "skunk": {
  314. name: "Skunk",
  315. parents: [
  316. "mammal"
  317. ]
  318. },
  319. "shark": {
  320. name: "Shark",
  321. parents: [
  322. "fish"
  323. ]
  324. },
  325. "black-panther": {
  326. name: "Black Panther",
  327. parents: [
  328. "cat"
  329. ]
  330. },
  331. "umbra": {
  332. name: "Umbra",
  333. parents: [
  334. "animal"
  335. ]
  336. },
  337. "raven": {
  338. name: "Raven",
  339. parents: [
  340. "corvid"
  341. ]
  342. },
  343. "snow-leopard": {
  344. name: "Snow Leopard",
  345. parents: [
  346. "cat"
  347. ]
  348. },
  349. "barbary-lion": {
  350. name: "Barbary Lion",
  351. parents: [
  352. "lion"
  353. ]
  354. },
  355. "dra'gal": {
  356. name: "Dra'Gal",
  357. parents: [
  358. "mammal"
  359. ]
  360. },
  361. "german-shepherd": {
  362. name: "German Shepherd",
  363. parents: [
  364. "dog"
  365. ]
  366. },
  367. "bayleef": {
  368. name: "Bayleef",
  369. parents: [
  370. "pokemon",
  371. "plant",
  372. "animal"
  373. ]
  374. },
  375. "mouse": {
  376. name: "Mouse",
  377. parents: [
  378. "rodent"
  379. ]
  380. },
  381. "rat": {
  382. name: "Rat",
  383. parents: [
  384. "mammal"
  385. ]
  386. },
  387. "hoshiko-beast": {
  388. name: "Hoshiko Beast",
  389. parents: ["animal"]
  390. },
  391. "snow-jugani": {
  392. name: "Snow Jugani",
  393. parents: ["cat"]
  394. },
  395. "patamon": {
  396. name: "Patamon",
  397. parents: ["digimon", "guinea-pig"]
  398. },
  399. "digimon": {
  400. name: "Digimon",
  401. },
  402. "jugani": {
  403. name: "Jugani",
  404. parents: ["cat"]
  405. },
  406. "luxray": {
  407. name: "Luxray",
  408. parents: ["pokemon", "lion"]
  409. },
  410. "mech": {
  411. name: "Mech",
  412. parents: ["machine"]
  413. },
  414. "zoid": {
  415. name: "Zoid",
  416. parents: ["mech"]
  417. },
  418. "monster": {
  419. name: "Monster",
  420. parents: ["animal"]
  421. },
  422. "foo-dog": {
  423. name: "Foo Dog",
  424. parents: ["mammal"]
  425. },
  426. "elephant": {
  427. name: "Elephant",
  428. parents: ["mammal"]
  429. },
  430. "eagle": {
  431. name: "Eagle",
  432. parents: ["avian"]
  433. },
  434. "cow": {
  435. name: "Cow",
  436. parents: ["mammal"]
  437. },
  438. "crocodile": {
  439. name: "Crocodile",
  440. parents: ["reptile"]
  441. },
  442. "borzoi": {
  443. name: "Borzoi",
  444. parents: ["dog"]
  445. },
  446. "snake": {
  447. name: "Snake",
  448. parents: ["reptile"]
  449. },
  450. "horned-bush-viper": {
  451. name: "Horned Bush Viper",
  452. parents: ["viper"]
  453. },
  454. "cobra": {
  455. name: "Cobra",
  456. parents: ["snake"]
  457. },
  458. "harpy-eagle": {
  459. name: "Harpy Eagle",
  460. parents: ["eagle"]
  461. },
  462. "raptor": {
  463. name: "Raptor",
  464. parents: ["dinosaur"]
  465. },
  466. "dinosaur": {
  467. name: "Dinosaur",
  468. parents: ["reptile"]
  469. },
  470. "veilhound": {
  471. name: "Veilhound",
  472. parents: ["hellhound"]
  473. },
  474. "hellhound": {
  475. name: "Hellhound",
  476. parents: ["canine", "demon"]
  477. },
  478. "insect": {
  479. name: "Insect",
  480. parents: ["animal"]
  481. },
  482. "beetle": {
  483. name: "Beetle",
  484. parents: ["insect"]
  485. },
  486. "moth": {
  487. name: "Moth",
  488. parents: ["insect"]
  489. },
  490. "eastern-dragon": {
  491. name: "Eastern Dragon",
  492. parents: ["dragon"]
  493. },
  494. "jaguar": {
  495. name: "Jaguar",
  496. parents: ["cat"]
  497. },
  498. "horse": {
  499. name: "Horse",
  500. parents: ["mammal"]
  501. },
  502. "sergal": {
  503. name: "Sergal",
  504. parents: ["mammal", "avian", "vilous"]
  505. },
  506. "gryphon": {
  507. name: "Gryphon",
  508. parents: ["lion", "eagle"]
  509. },
  510. "robot": {
  511. name: "Robot",
  512. parents: ["machine"]
  513. },
  514. "medihound": {
  515. name: "Medihound",
  516. parents: ["robot", "dog"]
  517. },
  518. "sylveon": {
  519. name: "Sylveon",
  520. parents: ["pokemon"]
  521. },
  522. "catgirl": {
  523. name: "Catgirl",
  524. parents: ["mammal"]
  525. },
  526. "cowgirl": {
  527. name: "Cowgirl",
  528. parents: ["mammal"]
  529. },
  530. "pony": {
  531. name: "Pony",
  532. parents: ["horse"]
  533. },
  534. "rabbit": {
  535. name: "Rabbit",
  536. parents: ["leporidae"]
  537. },
  538. "fennec-fox": {
  539. name: "Fennec Fox",
  540. parents: ["fox"]
  541. },
  542. "azodian": {
  543. name: "Azodian",
  544. parents: ["mouse"]
  545. },
  546. "shiba-inu": {
  547. name: "Shiba Inu",
  548. parents: ["dog"]
  549. },
  550. "changeling": {
  551. name: "Changeling",
  552. parents: ["insect"]
  553. },
  554. "cheetah": {
  555. name: "Cheetah",
  556. parents: ["cat"]
  557. },
  558. "golden-jackal": {
  559. name: "Golden Jackal",
  560. parents: ["jackal"]
  561. },
  562. "manectric": {
  563. name: "Manectric",
  564. parents: ["pokemon", "wolf"]
  565. },
  566. "rat": {
  567. name: "Rat",
  568. parents: ["rodent"]
  569. },
  570. "rodent": {
  571. name: "Rodent",
  572. parents: ["mammal"]
  573. },
  574. "octocoon": {
  575. name: "Octocoon",
  576. parents: ["raccoon", "octopus"]
  577. },
  578. "octopus": {
  579. name: "Octopus",
  580. parents: ["fish"]
  581. },
  582. "werewolf": {
  583. name: "Werewolf",
  584. parents: ["wolf", "werebeast"]
  585. },
  586. "werebeast": {
  587. name: "Werebeast",
  588. parents: ["monster"]
  589. },
  590. "meerkat": {
  591. name: "Meerkat",
  592. parents: ["mammal"]
  593. },
  594. "human": {
  595. name: "Human",
  596. parents: ["mammal"]
  597. },
  598. "geth": {
  599. name: "Geth",
  600. parents: ["android"]
  601. },
  602. "husky": {
  603. name: "Husky",
  604. parents: ["dog"]
  605. },
  606. "long-eared-bat": {
  607. name: "Long Eared Bat",
  608. parents: ["bat"]
  609. },
  610. "lizard": {
  611. name: "Lizard",
  612. parents: ["reptile"]
  613. },
  614. "salamander": {
  615. name: "Salamander",
  616. parents: ["lizard"]
  617. },
  618. "chameleon": {
  619. name: "Chameleon",
  620. parents: ["lizard"]
  621. },
  622. "gecko": {
  623. name: "Gecko",
  624. parents: ["lizard"]
  625. },
  626. "kobold": {
  627. name: "Kobold",
  628. parents: ["reptile"]
  629. },
  630. "charizard": {
  631. name: "Charizard",
  632. parents: ["pokemon", "dragon"]
  633. },
  634. "lugia": {
  635. name: "Lugia",
  636. parents: ["pokemon", "avian"]
  637. },
  638. "cerberus": {
  639. name: "Cerberus",
  640. parents: ["dog"]
  641. },
  642. "tyrantrum": {
  643. name: "Tyrantrum",
  644. parents: ["pokemon"]
  645. },
  646. "lemur": {
  647. name: "Lemur",
  648. parents: ["mammal"]
  649. },
  650. "kelpie": {
  651. name: "Kelpie",
  652. parents: ["horse", "monster"]
  653. },
  654. "labrador": {
  655. name: "Labrador",
  656. parents: ["dog"]
  657. },
  658. "sylveon": {
  659. name: "Sylveon",
  660. parents: ["eeveelution"]
  661. },
  662. "eeveelution": {
  663. name: "Eeveelution",
  664. parents: ["pokemon", "cat"]
  665. },
  666. "polar-bear": {
  667. name: "Polar Bear",
  668. parents: ["bear"]
  669. },
  670. "bear": {
  671. name: "Bear",
  672. parents: ["mammal"]
  673. },
  674. "absol": {
  675. name: "Absol",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "wolver": {
  679. name: "Wolver",
  680. parents: ["mammal"]
  681. },
  682. "rottweiler": {
  683. name: "Rottweiler",
  684. parents: ["dog"]
  685. },
  686. "zebra": {
  687. name: "Zebra",
  688. parents: ["horse"]
  689. },
  690. "yoshi": {
  691. name: "Yoshi",
  692. parents: ["lizard"]
  693. },
  694. "lynx": {
  695. name: "Lynx",
  696. parents: ["cat"]
  697. },
  698. "unknown": {
  699. name: "Unknown",
  700. parents: []
  701. },
  702. "thylacine": {
  703. name: "Thylacine",
  704. parents: ["mammal"]
  705. },
  706. "gabumon": {
  707. name: "Gabumon",
  708. parents: ["digimon"]
  709. },
  710. "border-collie": {
  711. name: "Border Collie",
  712. parents: ["dog"]
  713. },
  714. "imp": {
  715. name: "Imp",
  716. parents: ["demon"]
  717. },
  718. "kangaroo": {
  719. name: "Kangaroo",
  720. parents: ["marsupial"]
  721. },
  722. "renamon": {
  723. name: "Renamon",
  724. parents: ["digimon", "fox"]
  725. },
  726. "candy-orca-dragon": {
  727. name: "Candy Orca Dragon",
  728. parents: ["fish", "dragon", "candy"]
  729. },
  730. "sabertooth-tiger": {
  731. name: "Sabertooth Tiger",
  732. parents: ["cat"]
  733. },
  734. "espurr": {
  735. name: "Espurr",
  736. parents: ["pokemon", "cat"]
  737. },
  738. "otter": {
  739. name: "Otter",
  740. parents: ["mustelid"]
  741. },
  742. "elemental": {
  743. name: "Elemental",
  744. parents: ["mammal"]
  745. },
  746. "mew": {
  747. name: "Mew",
  748. parents: ["pokemon"]
  749. },
  750. "goodra": {
  751. name: "Goodra",
  752. parents: ["pokemon"]
  753. },
  754. "fairy": {
  755. name: "Fairy",
  756. parents: ["magical"]
  757. },
  758. "typhlosion": {
  759. name: "Typhlosion",
  760. parents: ["pokemon"]
  761. },
  762. "magical": {
  763. name: "Magical",
  764. parents: []
  765. },
  766. "xenomorph": {
  767. name: "Xenomorph",
  768. parents: ["monster", "alien"]
  769. },
  770. "charr": {
  771. name: "Charr",
  772. parents: ["cat"]
  773. },
  774. "siberian-husky": {
  775. name: "Siberian Husky",
  776. parents: ["husky"]
  777. },
  778. "alligator": {
  779. name: "Alligator",
  780. parents: ["reptile"]
  781. },
  782. "bernese-mountain-dog": {
  783. name: "Bernese Mountain Dog",
  784. parents: ["dog"]
  785. },
  786. "reshiram": {
  787. name: "Reshiram",
  788. parents: ["pokemon", "dragon"]
  789. },
  790. "grizzly-bear": {
  791. name: "Grizzly Bear",
  792. parents: ["bear"]
  793. },
  794. "water-monitor": {
  795. name: "Water Monitor",
  796. parents: ["lizard"]
  797. },
  798. "banchofossa": {
  799. name: "Banchofossa",
  800. parents: ["mammal"]
  801. },
  802. "kirin": {
  803. name: "Kirin",
  804. parents: ["monster"]
  805. },
  806. "quilava": {
  807. name: "Quilava",
  808. parents: ["pokemon"]
  809. },
  810. "seviper": {
  811. name: "Seviper",
  812. parents: ["pokemon", "viper"]
  813. },
  814. "flying-fox": {
  815. name: "Flying Fox",
  816. parents: ["bat"]
  817. },
  818. "keynain": {
  819. name: "Keynain",
  820. parents: ["avian"]
  821. },
  822. "lucario": {
  823. name: "Lucario",
  824. parents: ["pokemon", "jackal"]
  825. },
  826. "siamese-cat": {
  827. name: "Siamese Cat",
  828. parents: ["cat"]
  829. },
  830. "spider": {
  831. name: "Spider",
  832. parents: ["insect"]
  833. },
  834. "samurott": {
  835. name: "Samurott",
  836. parents: ["pokemon", "otter"]
  837. },
  838. "megalodon": {
  839. name: "Megalodon",
  840. parents: ["shark"]
  841. },
  842. "unicorn": {
  843. name: "Unicorn",
  844. parents: ["horse"]
  845. },
  846. "greninja": {
  847. name: "Greninja",
  848. parents: ["pokemon", "frog"]
  849. },
  850. "water-dragon": {
  851. name: "Water Dragon",
  852. parents: ["dragon"]
  853. },
  854. "cross-fox": {
  855. name: "Cross Fox",
  856. parents: ["fox"]
  857. },
  858. "synth": {
  859. name: "Synth",
  860. parents: ["machine"]
  861. },
  862. "construct": {
  863. name: "Construct",
  864. parents: []
  865. },
  866. "mexican-wolf": {
  867. name: "Mexican Wolf",
  868. parents: ["wolf"]
  869. },
  870. "leopard": {
  871. name: "Leopard",
  872. parents: ["cat"]
  873. },
  874. "pig": {
  875. name: "Pig",
  876. parents: ["mammal"]
  877. },
  878. "ampharos": {
  879. name: "Ampharos",
  880. parents: ["pokemon", "sheep"]
  881. },
  882. "orca": {
  883. name: "Orca",
  884. parents: ["fish"]
  885. },
  886. "lycanroc": {
  887. name: "Lycanroc",
  888. parents: ["pokemon", "wolf"]
  889. },
  890. "surkanu": {
  891. name: "Surkanu",
  892. parents: ["monster"]
  893. },
  894. "seal": {
  895. name: "Seal",
  896. parents: ["mammal"]
  897. },
  898. "keldeo": {
  899. name: "Keldeo",
  900. parents: ["pokemon"]
  901. },
  902. "great-dane": {
  903. name: "Great Dane",
  904. parents: ["dog"]
  905. },
  906. "black-backed-jackal": {
  907. name: "Black Backed Jackal",
  908. parents: ["jackal"]
  909. },
  910. "sheep": {
  911. name: "Sheep",
  912. parents: ["mammal"]
  913. },
  914. "leopard-seal": {
  915. name: "Leopard Seal",
  916. parents: ["seal"]
  917. },
  918. "zoroark": {
  919. name: "Zoroark",
  920. parents: ["pokemon", "fox"]
  921. },
  922. "maned-wolf": {
  923. name: "Maned Wolf",
  924. parents: ["canine"]
  925. },
  926. "dracha": {
  927. name: "Dracha",
  928. parents: ["dragon"]
  929. },
  930. "wolxi": {
  931. name: "Wolxi",
  932. parents: ["mammal", "alien"]
  933. },
  934. "dratini": {
  935. name: "Dratini",
  936. parents: ["pokemon", "dragon"]
  937. },
  938. "skaven": {
  939. name: "Skaven",
  940. parents: ["rat"]
  941. },
  942. "mongoose": {
  943. name: "Mongoose",
  944. parents: ["mammal"]
  945. },
  946. "lopunny": {
  947. name: "Lopunny",
  948. parents: ["pokemon", "rabbit"]
  949. },
  950. "feraligatr": {
  951. name: "Feraligatr",
  952. parents: ["pokemon", "alligator"]
  953. },
  954. "houndoom": {
  955. name: "Houndoom",
  956. parents: ["pokemon", "dog"]
  957. },
  958. "protogen": {
  959. name: "Protogen",
  960. parents: ["machine"]
  961. },
  962. "saint-bernard": {
  963. name: "Saint Bernard",
  964. parents: ["dog"]
  965. },
  966. "crow": {
  967. name: "Crow",
  968. parents: ["corvid"]
  969. },
  970. "delphox": {
  971. name: "Delphox",
  972. parents: ["pokemon", "fox"]
  973. },
  974. "moose": {
  975. name: "Moose",
  976. parents: ["mammal"]
  977. },
  978. "joraxian": {
  979. name: "Joraxian",
  980. parents: ["monster", "canine", "demon"]
  981. },
  982. "nimbat": {
  983. name: "Nimbat",
  984. parents: ["mammal"]
  985. },
  986. "aardwolf": {
  987. name: "Aardwolf",
  988. parents: ["canine"]
  989. },
  990. "fluudrani": {
  991. name: "Fluudrani",
  992. parents: ["animal"]
  993. },
  994. "arcanine": {
  995. name: "Arcanine",
  996. parents: ["pokemon", "dog"]
  997. },
  998. "inteleon": {
  999. name: "Inteleon",
  1000. parents: ["pokemon", "fish"]
  1001. },
  1002. "ninetales": {
  1003. name: "Ninetales",
  1004. parents: ["pokemon", "kitsune"]
  1005. },
  1006. "tigrex": {
  1007. name: "Tigrex",
  1008. parents: ["tiger"]
  1009. },
  1010. "zorua": {
  1011. name: "Zorua",
  1012. parents: ["pokemon", "fox"]
  1013. },
  1014. "vulpix": {
  1015. name: "Vulpix",
  1016. parents: ["pokemon", "fox"]
  1017. },
  1018. "barghest": {
  1019. name: "Barghest",
  1020. parents: ["monster"]
  1021. },
  1022. "gray-wolf": {
  1023. name: "Gray Wolf",
  1024. parents: ["wolf"]
  1025. },
  1026. "ruppells-fox": {
  1027. name: "Rüppell's Fox",
  1028. parents: ["fox"]
  1029. },
  1030. "bull-terrier": {
  1031. name: "Bull Terrier",
  1032. parents: ["dog"]
  1033. },
  1034. "european-honey-buzzard": {
  1035. name: "European Honey Buzzard",
  1036. parents: ["avian"]
  1037. },
  1038. "t-rex": {
  1039. name: "Tyrannosaurus Rex",
  1040. parents: ["dinosaur"]
  1041. },
  1042. "mactarian": {
  1043. name: "Mactarian",
  1044. parents: ["shark", "monster"]
  1045. },
  1046. "mewtwo-y": {
  1047. name: "Mewtwo Y",
  1048. parents: ["mewtwo"]
  1049. },
  1050. "mewtwo": {
  1051. name: "Mewtwo",
  1052. parents: ["pokemon"]
  1053. },
  1054. "eevee": {
  1055. name: "Eevee",
  1056. parents: ["eeveelution"]
  1057. },
  1058. "mienshao": {
  1059. name: "Mienshao",
  1060. parents: ["pokemon"]
  1061. },
  1062. "sugar-glider": {
  1063. name: "Sugar Glider",
  1064. parents: ["opossum"]
  1065. },
  1066. "spectral-bat": {
  1067. name: "Spectral Bat",
  1068. parents: ["bat"]
  1069. },
  1070. "scolipede": {
  1071. name: "Scolipede",
  1072. parents: ["pokemon", "insect"]
  1073. },
  1074. "jackalope": {
  1075. name: "Jackalope",
  1076. parents: ["rabbit", "antelope"]
  1077. },
  1078. "caracal": {
  1079. name: "Caracal",
  1080. parents: ["cat"]
  1081. },
  1082. "stoat": {
  1083. name: "Stoat",
  1084. parents: ["mammal"]
  1085. },
  1086. "african-golden-cat": {
  1087. name: "African Golden Cat",
  1088. parents: ["cat"]
  1089. },
  1090. "gigantosaurus": {
  1091. name: "Gigantosaurus",
  1092. parents: ["dinosaur"]
  1093. },
  1094. "zorgoia": {
  1095. name: "Zorgoia",
  1096. parents: ["mammal"]
  1097. },
  1098. "monitor-lizard": {
  1099. name: "Monitor Lizard",
  1100. parents: ["lizard"]
  1101. },
  1102. "ziralkia": {
  1103. name: "Ziralkia",
  1104. parents: ["mammal"]
  1105. },
  1106. "kiiasi": {
  1107. name: "Kiiasi",
  1108. parents: ["animal"]
  1109. },
  1110. "synx": {
  1111. name: "Synx",
  1112. parents: ["monster"]
  1113. },
  1114. "panther": {
  1115. name: "Panther",
  1116. parents: ["cat"]
  1117. },
  1118. "azumarill": {
  1119. name: "Azumarill",
  1120. parents: ["pokemon"]
  1121. },
  1122. "river-snaptail": {
  1123. name: "River Snaptail",
  1124. parents: ["otter", "crocodile"]
  1125. },
  1126. "great-blue-heron": {
  1127. name: "Great Blue Heron",
  1128. parents: ["avian"]
  1129. },
  1130. "smeargle": {
  1131. name: "Smeargle",
  1132. parents: ["pokemon"]
  1133. },
  1134. "vendeilen": {
  1135. name: "Vendeilen",
  1136. parents: ["monster"]
  1137. },
  1138. "ventura": {
  1139. name: "Ventura",
  1140. parents: ["canine"]
  1141. },
  1142. "clouded-leopard": {
  1143. name: "Clouded Leopard",
  1144. parents: ["leopard"]
  1145. },
  1146. "argonian": {
  1147. name: "Argonian",
  1148. parents: ["lizard"]
  1149. },
  1150. "salazzle": {
  1151. name: "Salazzle",
  1152. parents: ["pokemon", "lizard"]
  1153. },
  1154. "je-stoff-drachen": {
  1155. name: "Je-Stoff Drachen",
  1156. parents: ["dragon"]
  1157. },
  1158. "finnish-spitz-dog": {
  1159. name: "Finnish Spitz Dog",
  1160. parents: ["dog"]
  1161. },
  1162. "gray-fox": {
  1163. name: "Gray Fox",
  1164. parents: ["fox"]
  1165. },
  1166. "opossum": {
  1167. name: "Opossum",
  1168. parents: ["mammal"]
  1169. },
  1170. "antelope": {
  1171. name: "Antelope",
  1172. parents: ["mammal"]
  1173. },
  1174. "weavile": {
  1175. name: "Weavile",
  1176. parents: ["pokemon"]
  1177. },
  1178. "pikachu": {
  1179. name: "Pikachu",
  1180. parents: ["pokemon", "mouse"]
  1181. },
  1182. "grovyle": {
  1183. name: "Grovyle",
  1184. parents: ["pokemon", "plant"]
  1185. },
  1186. "sthara": {
  1187. name: "Sthara",
  1188. parents: ["snow-leopard", "reptile"]
  1189. },
  1190. "star-warrior": {
  1191. name: "Star Warrior",
  1192. parents: ["magical"]
  1193. },
  1194. "dragonoid": {
  1195. name: "Dragonoid",
  1196. parents: ["dragon"]
  1197. },
  1198. "suicune": {
  1199. name: "Suicune",
  1200. parents: ["pokemon"]
  1201. },
  1202. "vole": {
  1203. name: "Vole",
  1204. parents: ["mammal"]
  1205. },
  1206. "blaziken": {
  1207. name: "Blaziken",
  1208. parents: ["pokemon", "avian"]
  1209. },
  1210. "buizel": {
  1211. name: "Buizel",
  1212. parents: ["pokemon", "fish"]
  1213. },
  1214. "floatzel": {
  1215. name: "Floatzel",
  1216. parents: ["pokemon", "fish"]
  1217. },
  1218. "umok": {
  1219. name: "Umok",
  1220. parents: ["avian"]
  1221. },
  1222. "sea-monster": {
  1223. name: "Sea Monster",
  1224. parents: ["monster", "fish"]
  1225. },
  1226. "egyptian-vulture": {
  1227. name: "Egyptian Vulture",
  1228. parents: ["avian"]
  1229. },
  1230. "doberman": {
  1231. name: "Doberman",
  1232. parents: ["dog"]
  1233. },
  1234. "zangoose": {
  1235. name: "Zangoose",
  1236. parents: ["pokemon", "mongoose"]
  1237. },
  1238. "mongoose": {
  1239. name: "Mongoose",
  1240. parents: ["mammal"]
  1241. },
  1242. "wickerbeast": {
  1243. name: "Wickerbeast",
  1244. parents: ["monster"]
  1245. },
  1246. "zenari": {
  1247. name: "Zenari",
  1248. parents: ["lizard"]
  1249. },
  1250. "plant": {
  1251. name: "Plant",
  1252. parents: []
  1253. },
  1254. "raskatox": {
  1255. name: "Raskatox",
  1256. parents: ["raccoon", "skunk", "cat", "fox"]
  1257. },
  1258. "mikromare": {
  1259. name: "mikromare",
  1260. parents: ["alien"]
  1261. },
  1262. "alien": {
  1263. name: "Alien",
  1264. parents: ["animal"]
  1265. },
  1266. "deity": {
  1267. name: "Deity",
  1268. parents: []
  1269. },
  1270. "skarlan": {
  1271. name: "Skarlan",
  1272. parents: ["slug", "dragon"]
  1273. },
  1274. "slug": {
  1275. name: "Slug",
  1276. parents: ["mollusk"]
  1277. },
  1278. "mollusk": {
  1279. name: "Mollusk",
  1280. parents: ["animal"]
  1281. },
  1282. "chimera": {
  1283. name: "Chimera",
  1284. parents: ["monster"]
  1285. },
  1286. "gestalt": {
  1287. name: "Gestalt",
  1288. parents: ["construct"]
  1289. },
  1290. "mimic": {
  1291. name: "Mimic",
  1292. parents: ["monster"]
  1293. },
  1294. "calico-rat": {
  1295. name: "Calico Rat",
  1296. parents: ["rat"]
  1297. },
  1298. "panda": {
  1299. name: "Panda",
  1300. parents: ["mammal"]
  1301. },
  1302. "oni": {
  1303. name: "Oni",
  1304. parents: ["monster"]
  1305. },
  1306. "pegasus": {
  1307. name: "Pegasus",
  1308. parents: ["horse"]
  1309. },
  1310. "vulpera": {
  1311. name: "Vulpera",
  1312. parents: ["fennec-fox"]
  1313. },
  1314. "ceratosaurus": {
  1315. name: "Ceratosaurus",
  1316. parents: ["dinosaur"]
  1317. },
  1318. "nykur": {
  1319. name: "Nykur",
  1320. parents: ["horse", "monster"]
  1321. },
  1322. "giraffe": {
  1323. name: "Giraffe",
  1324. parents: ["mammal"]
  1325. },
  1326. "tauren": {
  1327. name: "Tauren",
  1328. parents: ["cow"]
  1329. },
  1330. "draconi": {
  1331. name: "Draconi",
  1332. parents: ["alien", "cat", "cyborg"]
  1333. },
  1334. "dire-wolf": {
  1335. name: "Dire Wolf",
  1336. parents: ["wolf"]
  1337. },
  1338. "ferromorph": {
  1339. name: "Ferromorph",
  1340. parents: ["construct"]
  1341. },
  1342. "meowth": {
  1343. name: "Meowth",
  1344. parents: ["cat", "pokemon"]
  1345. },
  1346. "pavodragon": {
  1347. name: "Pavodragon",
  1348. parents: ["dragon"]
  1349. },
  1350. "aaltranae": {
  1351. name: "Aaltranae",
  1352. parents: ["dragon"]
  1353. },
  1354. "cyborg": {
  1355. name: "Cyborg",
  1356. parents: ["machine"]
  1357. },
  1358. "draptor": {
  1359. name: "Draptor",
  1360. parents: ["dragon"]
  1361. },
  1362. "candy": {
  1363. name: "Candy",
  1364. parents: []
  1365. },
  1366. "drenath": {
  1367. name: "Drenath",
  1368. parents: ["dragon", "snake", "rabbit"]
  1369. },
  1370. "coyju": {
  1371. name: "Coyju",
  1372. parents: ["coyote", "kaiju"]
  1373. },
  1374. "kaiju": {
  1375. name: "Kaiju",
  1376. parents: ["monster"]
  1377. },
  1378. "nickit": {
  1379. name: "Nickit",
  1380. parents: ["pokemon", "cat"]
  1381. },
  1382. "lopunny": {
  1383. name: "Lopunny",
  1384. parents: ["pokemon", "rabbit"]
  1385. },
  1386. "korean-jindo-dog": {
  1387. name: "Korean Jindo Dog",
  1388. parents: ["dog"]
  1389. },
  1390. "naga": {
  1391. name: "Naga",
  1392. parents: ["snake", "monster"]
  1393. },
  1394. "undead": {
  1395. name: "Undead",
  1396. parents: ["monster"]
  1397. },
  1398. "whale": {
  1399. name: "Whale",
  1400. parents: ["fish"]
  1401. },
  1402. "gelato-bee": {
  1403. name: "Gelato Bee",
  1404. parents: ["bee"]
  1405. },
  1406. "bee": {
  1407. name: "Bee",
  1408. parents: ["insect"]
  1409. },
  1410. "gardevoir": {
  1411. name: "Gardevoir",
  1412. parents: ["pokemon"]
  1413. },
  1414. "ant": {
  1415. name: "Ant",
  1416. parents: ["insect"]
  1417. },
  1418. "frog": {
  1419. name: "Frog",
  1420. parents: ["amphibian"]
  1421. },
  1422. "amphibian": {
  1423. name: "Amphibian",
  1424. parents: ["animal"]
  1425. },
  1426. "pangolin": {
  1427. name: "Pangolin",
  1428. parents: ["mammal"]
  1429. },
  1430. "uragi'viidorn": {
  1431. name: "Uragi'viidorn",
  1432. parents: ["avian", "bear"]
  1433. },
  1434. "gryphdelphais": {
  1435. name: "Gryphdelphais",
  1436. parents: ["dolphin", "gryphon"]
  1437. },
  1438. "plush": {
  1439. name: "Plush",
  1440. parents: ["construct"]
  1441. },
  1442. "draiger": {
  1443. name: "Draiger",
  1444. parents: ["dragon","tiger"]
  1445. },
  1446. "foxsky": {
  1447. name: "Foxsky",
  1448. parents: ["fox", "husky"]
  1449. },
  1450. "umbreon": {
  1451. name: "Umbreon",
  1452. parents: ["eeveelution"]
  1453. },
  1454. "slime-dragon": {
  1455. name: "Slime Dragon",
  1456. parents: ["dragon", "goo"]
  1457. },
  1458. "enderman": {
  1459. name: "Enderman",
  1460. parents: ["monster"]
  1461. },
  1462. "gremlin": {
  1463. name: "Gremlin",
  1464. parents: ["monster"]
  1465. },
  1466. "dragonsune": {
  1467. name: "Dragonsune",
  1468. parents: ["dragon", "kitsune"]
  1469. },
  1470. "ghost": {
  1471. name: "Ghost",
  1472. parents: ["supernatural"]
  1473. },
  1474. "false-vampire-bat": {
  1475. name: "False Vampire Bat",
  1476. parents: ["bat"]
  1477. },
  1478. "succubus": {
  1479. name: "Succubus",
  1480. parents: ["demon"]
  1481. },
  1482. "mia": {
  1483. name: "Mia",
  1484. parents: ["canine"]
  1485. },
  1486. "rainbow": {
  1487. name: "Rainbow",
  1488. parents: ["monster"]
  1489. },
  1490. "solgaleo": {
  1491. name: "Solgaleo",
  1492. parents: ["pokemon"]
  1493. },
  1494. "lucent-nargacuga": {
  1495. name: "Lucent Nargacuga",
  1496. parents: ["monster-hunter"]
  1497. },
  1498. "monster-hunter": {
  1499. name: "Monster Hunter",
  1500. parents: ["monster"]
  1501. },
  1502. "leviathan": {
  1503. "name": "Leviathan",
  1504. "url": "sea-monster"
  1505. },
  1506. "bull": {
  1507. name: "Bull",
  1508. parents: ["mammal"]
  1509. },
  1510. "tanuki": {
  1511. name: "Tanuki",
  1512. parents: ["monster"]
  1513. },
  1514. "chakat": {
  1515. name: "Chakat",
  1516. parents: ["cat"]
  1517. },
  1518. "hydra": {
  1519. name: "Hydra",
  1520. parents: ["monster"]
  1521. },
  1522. "zigzagoon": {
  1523. name: "Zigzagoon",
  1524. parents: ["raccoon", "pokemon"]
  1525. },
  1526. "vulture": {
  1527. name: "Vulture",
  1528. parents: ["avian"]
  1529. },
  1530. "eastern-dragon": {
  1531. name: "Eastern Dragon",
  1532. parents: ["dragon"]
  1533. },
  1534. "gryffon": {
  1535. name: "Gryffon",
  1536. parents: ["phoenix", "red-panda"]
  1537. },
  1538. "amtsvane": {
  1539. name: "Amtsvane",
  1540. parents: ["reptile"]
  1541. },
  1542. "kigavi": {
  1543. name: "Kigavi",
  1544. parents: ["avian"]
  1545. },
  1546. "turian": {
  1547. name: "Turian",
  1548. parents: ["avian"]
  1549. },
  1550. "zeraora": {
  1551. name: "Zeraora",
  1552. parents: ["pokemon", "cat"]
  1553. },
  1554. "sandshrew": {
  1555. name: "Sandshrew",
  1556. parents: ["pokemon", "pangolin"]
  1557. },
  1558. "valais-blacknose-sheep": {
  1559. name: "Valais Blacknose Sheep",
  1560. parents: ["sheep"]
  1561. },
  1562. "novaleit": {
  1563. name: "Novaleit",
  1564. parents: ["mammal"]
  1565. },
  1566. "dunnoh": {
  1567. name: "Dunnoh",
  1568. parents: ["mammal"]
  1569. },
  1570. "lunaral-dragon": {
  1571. name: "Lunaral Dragon",
  1572. parents: ["dragon"]
  1573. },
  1574. "arctic-wolf": {
  1575. name: "Arctic Wolf",
  1576. parents: ["wolf"]
  1577. },
  1578. "donkey": {
  1579. name: "Donkey",
  1580. parents: ["horse"]
  1581. },
  1582. "chinchilla": {
  1583. name: "Chinchilla",
  1584. parents: ["rodent"]
  1585. },
  1586. "felkin": {
  1587. name: "Felkin",
  1588. parents: ["dragon"]
  1589. },
  1590. "tykeriel": {
  1591. name: "Tykeriel",
  1592. parents: ["avian"]
  1593. },
  1594. "folf": {
  1595. name: "Folf",
  1596. parents: ["fox", "wolf"]
  1597. },
  1598. "pooltoy": {
  1599. name: "Pooltoy",
  1600. parents: ["construct"]
  1601. },
  1602. "demi": {
  1603. name: "Demi",
  1604. parents: ["human"]
  1605. },
  1606. "stegosaurus": {
  1607. name: "Stegosaurus",
  1608. parents: ["dinosaur"]
  1609. },
  1610. "computer-virus": {
  1611. name: "Computer Virus",
  1612. parents: ["program"]
  1613. },
  1614. "program": {
  1615. name: "Program",
  1616. parents: ["construct"]
  1617. },
  1618. "space-springhare": {
  1619. name: "Space Springhare",
  1620. parents: ["hare"]
  1621. },
  1622. "river-drake": {
  1623. name: "River Drake",
  1624. parents: ["dragon"]
  1625. },
  1626. "djinn": {
  1627. "name": "Djinn",
  1628. "url": "supernatural"
  1629. },
  1630. "supernatural": {
  1631. name: "Supernatural",
  1632. parents: ["monster"]
  1633. },
  1634. "grasshopper-mouse": {
  1635. name: "Grasshopper Mouse",
  1636. parents: ["mouse"]
  1637. },
  1638. "somali-cat": {
  1639. name: "Somali Cat",
  1640. parents: ["cat"]
  1641. },
  1642. "minccino": {
  1643. name: "Minccino",
  1644. parents: ["pokemon", "chinchilla"]
  1645. },
  1646. "pine-marten": {
  1647. name: "Pine Marten",
  1648. parents: ["marten"]
  1649. },
  1650. "marten": {
  1651. name: "Marten",
  1652. parents: ["mustelid"]
  1653. },
  1654. "mustelid": {
  1655. name: "Mustelid",
  1656. parents: ["mammal"]
  1657. },
  1658. "caribou": {
  1659. name: "Caribou",
  1660. parents: ["deer"]
  1661. },
  1662. "gnoll": {
  1663. name: "Gnoll",
  1664. parents: ["hyena", "monster"]
  1665. },
  1666. "peacekeeper": {
  1667. name: "Peacekeeper",
  1668. parents: ["human"]
  1669. },
  1670. "river-otter": {
  1671. name: "River Otter",
  1672. parents: ["otter"]
  1673. },
  1674. "dhole": {
  1675. name: "Dhole",
  1676. parents: ["canine"]
  1677. },
  1678. "springbok": {
  1679. name: "Springbok",
  1680. parents: ["antelope"]
  1681. },
  1682. "marsupial": {
  1683. name: "Marsupial",
  1684. parents: ["mammal"]
  1685. },
  1686. "townsend-big-eared-bat": {
  1687. name: "Townsend Big-eared Bat",
  1688. parents: ["bat"]
  1689. },
  1690. "squirrel": {
  1691. name: "Squirrel",
  1692. parents: ["rodent"]
  1693. },
  1694. "magpie": {
  1695. name: "Magpie",
  1696. parents: ["corvid"]
  1697. },
  1698. "civet": {
  1699. name: "Civet",
  1700. parents: ["feliform"]
  1701. },
  1702. "feliform": {
  1703. name: "Feliform",
  1704. parents: ["mammal"]
  1705. },
  1706. "tiefling": {
  1707. name: "Tiefling",
  1708. parents: ["devil"]
  1709. },
  1710. "devil": {
  1711. name: "Devil",
  1712. parents: ["supernatural"]
  1713. },
  1714. "sika-deer": {
  1715. name: "Sika Deer",
  1716. parents: ["deer"]
  1717. },
  1718. "vaporeon": {
  1719. name: "Vaporeon",
  1720. parents: ["eeveelution"]
  1721. },
  1722. "leafeon": {
  1723. name: "Leafeon",
  1724. parents: ["eeveelution"]
  1725. },
  1726. "jolteon": {
  1727. name: "Jolteon",
  1728. parents: ["eeveelution"]
  1729. },
  1730. "spireborn": {
  1731. name: "Spireborn",
  1732. parents: ["zorgoia"]
  1733. },
  1734. "vampire": {
  1735. name: "Vampire",
  1736. parents: ["monster"]
  1737. },
  1738. "extraplanar": {
  1739. name: "Extraplanar",
  1740. parents: []
  1741. },
  1742. "goo": {
  1743. name: "Goo",
  1744. parents: []
  1745. },
  1746. "skink": {
  1747. name: "Skink",
  1748. parents: ["lizard"]
  1749. },
  1750. "bat-eared-fox": {
  1751. name: "Bat-eared Fox",
  1752. parents: ["fox"]
  1753. },
  1754. "belted-kingfisher": {
  1755. name: "Belted Kingfisher",
  1756. parents: ["avian"]
  1757. },
  1758. "omnifalcon": {
  1759. name: "Omnifalcon",
  1760. parents: ["gryphon", "falcon", "harpy-eagle"]
  1761. },
  1762. "falcon": {
  1763. name: "Falcon",
  1764. parents: ["avian"]
  1765. },
  1766. "avali": {
  1767. name: "Avali",
  1768. parents: ["avian", "alien"]
  1769. },
  1770. "arctic-fox": {
  1771. name: "Arctic Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "snow-tiger": {
  1775. name: "Snow Tiger",
  1776. parents: ["tiger"]
  1777. },
  1778. "marble-fox": {
  1779. name: "Marble Fox",
  1780. parents: ["fox"]
  1781. },
  1782. "king-wickerbeast": {
  1783. name: "King Wickerbeast",
  1784. parents: ["wickerbeast"]
  1785. },
  1786. "wickerbeast": {
  1787. name: "Wickerbeast",
  1788. parents: ["mammal"]
  1789. },
  1790. "european-polecat": {
  1791. name: "European Polecat",
  1792. parents: ["mustelid"]
  1793. },
  1794. "teshari": {
  1795. name: "Teshari",
  1796. parents: ["avian", "raptor"]
  1797. },
  1798. "alicorn": {
  1799. name: "Alicorn",
  1800. parents: ["horse"]
  1801. },
  1802. "atlas-moth": {
  1803. name: "Atlas Moth",
  1804. parents: ["moth"]
  1805. },
  1806. "owlbear": {
  1807. name: "Owlbear",
  1808. parents: ["owl", "bear", "monster"]
  1809. },
  1810. "owl": {
  1811. name: "Owl",
  1812. parents: ["avian"]
  1813. },
  1814. "silvertongue": {
  1815. name: "Silvertongue",
  1816. parents: ["reptile"]
  1817. },
  1818. "ahuizotl": {
  1819. name: "Ahuizotl",
  1820. parents: ["monster"]
  1821. },
  1822. "ender-dragon": {
  1823. name: "Ender Dragon",
  1824. parents: ["dragon"]
  1825. },
  1826. "bruhathkayosaurus": {
  1827. name: "Bruhathkayosaurus",
  1828. parents: ["sauropod"]
  1829. },
  1830. "sauropod": {
  1831. name: "Sauropod",
  1832. parents: ["dinosaur"]
  1833. },
  1834. "black-sable-antelope": {
  1835. name: "Black Sable Antelope",
  1836. parents: ["antelope"]
  1837. },
  1838. "slime": {
  1839. name: "Slime",
  1840. parents: ["goo"]
  1841. },
  1842. "utahraptor": {
  1843. name: "Utahraptor",
  1844. parents: ["raptor"]
  1845. },
  1846. "indian-giant-squirrel": {
  1847. name: "Indian Giant Squirrel",
  1848. parents: ["squirrel"]
  1849. },
  1850. "golden-retriever": {
  1851. name: "Golden Retriever",
  1852. parents: ["dog"]
  1853. },
  1854. "triceratops": {
  1855. name: "Triceratops",
  1856. parents: ["dinosaur"]
  1857. },
  1858. "drake": {
  1859. name: "Drake",
  1860. parents: ["dragon"]
  1861. },
  1862. "okapi": {
  1863. name: "Okapi",
  1864. parents: ["giraffe"]
  1865. },
  1866. "arctic-hare": {
  1867. name: "Arctic Hare",
  1868. parents: ["hare"]
  1869. },
  1870. "hare": {
  1871. name: "Hare",
  1872. parents: ["leporidae"]
  1873. },
  1874. "leporidae": {
  1875. name: "Leporidae",
  1876. parents: ["mammal"]
  1877. },
  1878. "leopard-gecko": {
  1879. name: "Leopard Gecko",
  1880. parents: ["gecko"]
  1881. },
  1882. "dreamspawn": {
  1883. name: "Dreamspawn",
  1884. parents: ["illusion"]
  1885. },
  1886. "illusion": {
  1887. name: "Illusion",
  1888. parents: []
  1889. },
  1890. "purrloin": {
  1891. name: "Purrloin",
  1892. parents: ["cat", "pokemon"]
  1893. },
  1894. "noivern": {
  1895. name: "Noivern",
  1896. parents: ["bat", "dragon", "pokemon"]
  1897. },
  1898. "hedgehog": {
  1899. name: "Hedgehog",
  1900. parents: ["mammal"]
  1901. },
  1902. "liger": {
  1903. name: "Liger",
  1904. parents: ["lion", "tiger", "hybrid"]
  1905. },
  1906. "hybrid": {
  1907. name: "Hybrid",
  1908. parents: []
  1909. },
  1910. "drider": {
  1911. name: "Drider",
  1912. parents: ["spider"]
  1913. },
  1914. "sabresune": {
  1915. name: "Sabresune",
  1916. parents: ["kitsune", "sabertooth-tiger"]
  1917. },
  1918. "ditto": {
  1919. name: "Ditto",
  1920. parents: ["pokemon", "goo"]
  1921. },
  1922. "amogus": {
  1923. name: "Amogus",
  1924. parents: ["deity"]
  1925. },
  1926. "ferret": {
  1927. name: "Ferret",
  1928. parents: ["mustelid"]
  1929. },
  1930. "guinea-pig": {
  1931. name: "Guinea Pig",
  1932. parents: ["rodent"]
  1933. },
  1934. "viper": {
  1935. name: "Viper",
  1936. parents: ["snake"]
  1937. },
  1938. "cinderace": {
  1939. name: "Cinderace",
  1940. parents: ["pokemon", "rabbit"]
  1941. },
  1942. "caudin": {
  1943. name: "Caudin",
  1944. parents: ["dragon"]
  1945. },
  1946. "red-winged-blackbird": {
  1947. name: "Red-Winged Blackbird",
  1948. parents: ["avian"]
  1949. },
  1950. "hooded-wheater": {
  1951. name: "Hooded Wheater",
  1952. parents: ["passerine"]
  1953. },
  1954. "passerine": {
  1955. name: "Passerine",
  1956. parents: ["avian"]
  1957. },
  1958. "gieeg": {
  1959. name: "Gieeg",
  1960. parents: ["alien"]
  1961. },
  1962. "ringtail": {
  1963. name: "Ringtail",
  1964. parents: ["raccoon"]
  1965. },
  1966. "hisuian-zoroark": {
  1967. name: "Hisuian Zoroark",
  1968. parents: ["zoroark", "hisuian"]
  1969. },
  1970. "hisuian": {
  1971. name: "Hisuian",
  1972. parents: ["regional-pokemon"]
  1973. },
  1974. "regional-pokemon": {
  1975. name: "Regional Pokemon",
  1976. parents: ["pokemon"]
  1977. },
  1978. "cybeast": {
  1979. name: "Cybeast",
  1980. parents: ["computer-virus"]
  1981. },
  1982. "javira-dragon": {
  1983. name: "Javira Dragon",
  1984. parents: ["dragon"]
  1985. },
  1986. "koopew": {
  1987. name: "Koopew",
  1988. parents: ["dragon", "alien"]
  1989. },
  1990. "nevrean": {
  1991. name: "Nevrean",
  1992. parents: ["avian", "vilous"]
  1993. },
  1994. "vilous": {
  1995. name: "Vilous Species",
  1996. parents: []
  1997. },
  1998. "titanoboa": {
  1999. name: "Titanoboa",
  2000. parents: ["snake"]
  2001. },
  2002. }
  2003. //species
  2004. function getSpeciesInfo(speciesList) {
  2005. let result = new Set();
  2006. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2007. result.add(entry)
  2008. });
  2009. return Array.from(result);
  2010. };
  2011. function getSpeciesInfoHelper(species) {
  2012. if (!speciesData[species]) {
  2013. console.warn(species + " doesn't exist");
  2014. return [];
  2015. }
  2016. if (speciesData[species].parents) {
  2017. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2018. } else {
  2019. return [species];
  2020. }
  2021. }
  2022. characterMakers.push(() => makeCharacter(
  2023. {
  2024. name: "Fen",
  2025. species: ["crux"],
  2026. description: {
  2027. title: "Bio",
  2028. text: "Very furry. Sheds on everything."
  2029. },
  2030. tags: [
  2031. "anthro",
  2032. "goo"
  2033. ]
  2034. },
  2035. {
  2036. front: {
  2037. height: math.unit(12, "feet"),
  2038. weight: math.unit(2400, "lb"),
  2039. name: "Front",
  2040. image: {
  2041. source: "./media/characters/fen/front.svg",
  2042. extra: 1804/1562,
  2043. bottom: 205/2009
  2044. }
  2045. },
  2046. diving: {
  2047. height: math.unit(4.9, "meters"),
  2048. weight: math.unit(2400, "lb"),
  2049. name: "Diving",
  2050. image: {
  2051. source: "./media/characters/fen/diving.svg"
  2052. }
  2053. },
  2054. goo: {
  2055. height: math.unit(12, "feet"),
  2056. weight: math.unit(3600, "lb"),
  2057. volume: math.unit(1000, "liters"),
  2058. preyCapacity: math.unit(6, "people"),
  2059. name: "Goo",
  2060. image: {
  2061. source: "./media/characters/fen/goo.svg",
  2062. extra: 1307/1071,
  2063. bottom: 134/1441
  2064. }
  2065. },
  2066. maw: {
  2067. height: math.unit(5.03, "feet"),
  2068. name: "Maw",
  2069. image: {
  2070. source: "./media/characters/fen/maw.svg"
  2071. }
  2072. },
  2073. gooCeiling: {
  2074. height: math.unit(6.6, "feet"),
  2075. weight: math.unit(3000, "lb"),
  2076. volume: math.unit(1000, "liters"),
  2077. preyCapacity: math.unit(6, "people"),
  2078. name: "Goo (Ceiling)",
  2079. image: {
  2080. source: "./media/characters/fen/goo-ceiling.svg"
  2081. }
  2082. },
  2083. back: {
  2084. height: math.unit(12, "feet"),
  2085. weight: math.unit(2400, "lb"),
  2086. name: "Back",
  2087. image: {
  2088. source: "./media/characters/fen/back.svg",
  2089. },
  2090. info: {
  2091. description: {
  2092. mode: "append",
  2093. text: "\n\nHe is not currently looking at you."
  2094. }
  2095. }
  2096. },
  2097. full: {
  2098. height: math.unit(1.85, "meter"),
  2099. weight: math.unit(3200, "lb"),
  2100. name: "Full",
  2101. image: {
  2102. source: "./media/characters/fen/full.svg",
  2103. extra: 1133/859,
  2104. bottom: 145/1278
  2105. },
  2106. info: {
  2107. description: {
  2108. mode: "append",
  2109. text: "\n\nMunch."
  2110. }
  2111. }
  2112. },
  2113. gooLounging: {
  2114. height: math.unit(4.53, "feet"),
  2115. weight: math.unit(3000, "lb"),
  2116. preyCapacity: math.unit(6, "people"),
  2117. name: "Goo (Lounging)",
  2118. image: {
  2119. source: "./media/characters/fen/goo-lounging.svg",
  2120. bottom: 116 / 613
  2121. }
  2122. },
  2123. lounging: {
  2124. height: math.unit(10.52, "feet"),
  2125. weight: math.unit(2400, "lb"),
  2126. name: "Lounging",
  2127. image: {
  2128. source: "./media/characters/fen/lounging.svg"
  2129. }
  2130. },
  2131. },
  2132. [
  2133. {
  2134. name: "Small",
  2135. height: math.unit(2.2428, "meter")
  2136. },
  2137. {
  2138. name: "Normal",
  2139. height: math.unit(12, "feet"),
  2140. default: true,
  2141. },
  2142. {
  2143. name: "Big",
  2144. height: math.unit(20, "feet")
  2145. },
  2146. {
  2147. name: "Minimacro",
  2148. height: math.unit(40, "feet"),
  2149. info: {
  2150. description: {
  2151. mode: "append",
  2152. text: "\n\nTOO DAMN BIG"
  2153. }
  2154. }
  2155. },
  2156. {
  2157. name: "Macro",
  2158. height: math.unit(100, "feet"),
  2159. info: {
  2160. description: {
  2161. mode: "append",
  2162. text: "\n\nTOO DAMN BIG"
  2163. }
  2164. }
  2165. },
  2166. {
  2167. name: "Megamacro",
  2168. height: math.unit(2, "miles")
  2169. },
  2170. {
  2171. name: "Gigamacro",
  2172. height: math.unit(10, "earths")
  2173. },
  2174. ]
  2175. ))
  2176. characterMakers.push(() => makeCharacter(
  2177. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2178. {
  2179. front: {
  2180. height: math.unit(183, "cm"),
  2181. weight: math.unit(80, "kg"),
  2182. name: "Front",
  2183. image: {
  2184. source: "./media/characters/sofia-fluttertail/front.svg",
  2185. bottom: 0.01,
  2186. extra: 2154 / 2081
  2187. }
  2188. },
  2189. frontAlt: {
  2190. height: math.unit(183, "cm"),
  2191. weight: math.unit(80, "kg"),
  2192. name: "Front (alt)",
  2193. image: {
  2194. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2195. }
  2196. },
  2197. back: {
  2198. height: math.unit(183, "cm"),
  2199. weight: math.unit(80, "kg"),
  2200. name: "Back",
  2201. image: {
  2202. source: "./media/characters/sofia-fluttertail/back.svg"
  2203. }
  2204. },
  2205. kneeling: {
  2206. height: math.unit(125, "cm"),
  2207. weight: math.unit(80, "kg"),
  2208. name: "Kneeling",
  2209. image: {
  2210. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2211. extra: 1033 / 977,
  2212. bottom: 23.7 / 1057
  2213. }
  2214. },
  2215. maw: {
  2216. height: math.unit(183 / 5, "cm"),
  2217. name: "Maw",
  2218. image: {
  2219. source: "./media/characters/sofia-fluttertail/maw.svg"
  2220. }
  2221. },
  2222. mawcloseup: {
  2223. height: math.unit(183 / 5 * 0.41, "cm"),
  2224. name: "Maw (Closeup)",
  2225. image: {
  2226. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2227. }
  2228. },
  2229. paws: {
  2230. height: math.unit(1.17, "feet"),
  2231. name: "Paws",
  2232. image: {
  2233. source: "./media/characters/sofia-fluttertail/paws.svg",
  2234. extra: 851 / 851,
  2235. bottom: 17 / 868
  2236. }
  2237. },
  2238. },
  2239. [
  2240. {
  2241. name: "Normal",
  2242. height: math.unit(1.83, "meter")
  2243. },
  2244. {
  2245. name: "Size Thief",
  2246. height: math.unit(18, "feet")
  2247. },
  2248. {
  2249. name: "50 Foot Collie",
  2250. height: math.unit(50, "feet")
  2251. },
  2252. {
  2253. name: "Macro",
  2254. height: math.unit(96, "feet"),
  2255. default: true
  2256. },
  2257. {
  2258. name: "Megamerger",
  2259. height: math.unit(650, "feet")
  2260. },
  2261. ]
  2262. ))
  2263. characterMakers.push(() => makeCharacter(
  2264. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2265. {
  2266. front: {
  2267. height: math.unit(7, "feet"),
  2268. weight: math.unit(100, "kg"),
  2269. name: "Front",
  2270. image: {
  2271. source: "./media/characters/march/front.svg",
  2272. extra: 1992/1851,
  2273. bottom: 39/2031
  2274. }
  2275. },
  2276. foot: {
  2277. height: math.unit(0.9, "feet"),
  2278. name: "Foot",
  2279. image: {
  2280. source: "./media/characters/march/foot.svg"
  2281. }
  2282. },
  2283. },
  2284. [
  2285. {
  2286. name: "Normal",
  2287. height: math.unit(7.9, "feet")
  2288. },
  2289. {
  2290. name: "Macro",
  2291. height: math.unit(220, "meters")
  2292. },
  2293. {
  2294. name: "Megamacro",
  2295. height: math.unit(2.98, "km"),
  2296. default: true
  2297. },
  2298. {
  2299. name: "Gigamacro",
  2300. height: math.unit(15963, "km")
  2301. },
  2302. {
  2303. name: "Teramacro",
  2304. height: math.unit(2980000000, "km")
  2305. },
  2306. {
  2307. name: "Examacro",
  2308. height: math.unit(250, "parsecs")
  2309. },
  2310. ]
  2311. ))
  2312. characterMakers.push(() => makeCharacter(
  2313. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2314. {
  2315. front: {
  2316. height: math.unit(6, "feet"),
  2317. weight: math.unit(60, "kg"),
  2318. name: "Front",
  2319. image: {
  2320. source: "./media/characters/noir/front.svg",
  2321. extra: 1,
  2322. bottom: 0.032
  2323. }
  2324. },
  2325. },
  2326. [
  2327. {
  2328. name: "Normal",
  2329. height: math.unit(6.6, "feet")
  2330. },
  2331. {
  2332. name: "Macro",
  2333. height: math.unit(500, "feet")
  2334. },
  2335. {
  2336. name: "Megamacro",
  2337. height: math.unit(2.5, "km"),
  2338. default: true
  2339. },
  2340. {
  2341. name: "Gigamacro",
  2342. height: math.unit(22500, "km")
  2343. },
  2344. {
  2345. name: "Teramacro",
  2346. height: math.unit(2500000000, "km")
  2347. },
  2348. {
  2349. name: "Examacro",
  2350. height: math.unit(200, "parsecs")
  2351. },
  2352. ]
  2353. ))
  2354. characterMakers.push(() => makeCharacter(
  2355. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2356. {
  2357. front: {
  2358. height: math.unit(7, "feet"),
  2359. weight: math.unit(100, "kg"),
  2360. name: "Front",
  2361. image: {
  2362. source: "./media/characters/okuri/front.svg",
  2363. extra: 739/665,
  2364. bottom: 39/778
  2365. }
  2366. },
  2367. back: {
  2368. height: math.unit(7, "feet"),
  2369. weight: math.unit(100, "kg"),
  2370. name: "Back",
  2371. image: {
  2372. source: "./media/characters/okuri/back.svg",
  2373. extra: 734/653,
  2374. bottom: 13/747
  2375. }
  2376. },
  2377. sitting: {
  2378. height: math.unit(2.95, "feet"),
  2379. weight: math.unit(100, "kg"),
  2380. name: "Sitting",
  2381. image: {
  2382. source: "./media/characters/okuri/sitting.svg",
  2383. extra: 370/318,
  2384. bottom: 99/469
  2385. }
  2386. },
  2387. },
  2388. [
  2389. {
  2390. name: "Smallest",
  2391. height: math.unit(5 + 2/12, "feet")
  2392. },
  2393. {
  2394. name: "Smaller",
  2395. height: math.unit(300, "feet")
  2396. },
  2397. {
  2398. name: "Small",
  2399. height: math.unit(1000, "feet")
  2400. },
  2401. {
  2402. name: "Macro",
  2403. height: math.unit(1, "mile")
  2404. },
  2405. {
  2406. name: "Mega Macro (Small)",
  2407. height: math.unit(20, "km")
  2408. },
  2409. {
  2410. name: "Mega Macro (Large)",
  2411. height: math.unit(600, "km")
  2412. },
  2413. {
  2414. name: "Giga Macro",
  2415. height: math.unit(10000, "km")
  2416. },
  2417. {
  2418. name: "Normal",
  2419. height: math.unit(577560, "km"),
  2420. default: true
  2421. },
  2422. {
  2423. name: "Large",
  2424. height: math.unit(4, "galaxies")
  2425. },
  2426. {
  2427. name: "Largest",
  2428. height: math.unit(15, "multiverses")
  2429. },
  2430. ]
  2431. ))
  2432. characterMakers.push(() => makeCharacter(
  2433. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2434. {
  2435. front: {
  2436. height: math.unit(7, "feet"),
  2437. weight: math.unit(100, "kg"),
  2438. name: "Front",
  2439. image: {
  2440. source: "./media/characters/manny/front.svg",
  2441. extra: 1,
  2442. bottom: 0.06
  2443. }
  2444. },
  2445. back: {
  2446. height: math.unit(7, "feet"),
  2447. weight: math.unit(100, "kg"),
  2448. name: "Back",
  2449. image: {
  2450. source: "./media/characters/manny/back.svg",
  2451. extra: 1,
  2452. bottom: 0.014
  2453. }
  2454. },
  2455. },
  2456. [
  2457. {
  2458. name: "Normal",
  2459. height: math.unit(7, "feet"),
  2460. },
  2461. {
  2462. name: "Macro",
  2463. height: math.unit(78, "feet"),
  2464. default: true
  2465. },
  2466. {
  2467. name: "Macro+",
  2468. height: math.unit(300, "meters")
  2469. },
  2470. {
  2471. name: "Macro++",
  2472. height: math.unit(2400, "meters")
  2473. },
  2474. {
  2475. name: "Megamacro",
  2476. height: math.unit(5167, "meters")
  2477. },
  2478. {
  2479. name: "Gigamacro",
  2480. height: math.unit(41769, "miles")
  2481. },
  2482. ]
  2483. ))
  2484. characterMakers.push(() => makeCharacter(
  2485. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2486. {
  2487. front: {
  2488. height: math.unit(7, "feet"),
  2489. weight: math.unit(100, "kg"),
  2490. name: "Front",
  2491. image: {
  2492. source: "./media/characters/adake/front-1.svg"
  2493. }
  2494. },
  2495. frontAlt: {
  2496. height: math.unit(7, "feet"),
  2497. weight: math.unit(100, "kg"),
  2498. name: "Front (Alt)",
  2499. image: {
  2500. source: "./media/characters/adake/front-2.svg",
  2501. extra: 1,
  2502. bottom: 0.01
  2503. }
  2504. },
  2505. back: {
  2506. height: math.unit(7, "feet"),
  2507. weight: math.unit(100, "kg"),
  2508. name: "Back",
  2509. image: {
  2510. source: "./media/characters/adake/back.svg",
  2511. }
  2512. },
  2513. kneel: {
  2514. height: math.unit(5.385, "feet"),
  2515. weight: math.unit(100, "kg"),
  2516. name: "Kneeling",
  2517. image: {
  2518. source: "./media/characters/adake/kneel.svg",
  2519. bottom: 0.052
  2520. }
  2521. },
  2522. },
  2523. [
  2524. {
  2525. name: "Normal",
  2526. height: math.unit(7, "feet"),
  2527. },
  2528. {
  2529. name: "Macro",
  2530. height: math.unit(78, "feet"),
  2531. default: true
  2532. },
  2533. {
  2534. name: "Macro+",
  2535. height: math.unit(300, "meters")
  2536. },
  2537. {
  2538. name: "Macro++",
  2539. height: math.unit(2400, "meters")
  2540. },
  2541. {
  2542. name: "Megamacro",
  2543. height: math.unit(5167, "meters")
  2544. },
  2545. {
  2546. name: "Gigamacro",
  2547. height: math.unit(41769, "miles")
  2548. },
  2549. ]
  2550. ))
  2551. characterMakers.push(() => makeCharacter(
  2552. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2553. {
  2554. front: {
  2555. height: math.unit(1.65, "meters"),
  2556. weight: math.unit(50, "kg"),
  2557. name: "Front",
  2558. image: {
  2559. source: "./media/characters/elijah/front.svg",
  2560. extra: 858 / 830,
  2561. bottom: 95.5 / 953.8559
  2562. }
  2563. },
  2564. back: {
  2565. height: math.unit(1.65, "meters"),
  2566. weight: math.unit(50, "kg"),
  2567. name: "Back",
  2568. image: {
  2569. source: "./media/characters/elijah/back.svg",
  2570. extra: 895 / 850,
  2571. bottom: 5.3 / 897.956
  2572. }
  2573. },
  2574. frontNsfw: {
  2575. height: math.unit(1.65, "meters"),
  2576. weight: math.unit(50, "kg"),
  2577. name: "Front (NSFW)",
  2578. image: {
  2579. source: "./media/characters/elijah/front-nsfw.svg",
  2580. extra: 858 / 830,
  2581. bottom: 95.5 / 953.8559
  2582. }
  2583. },
  2584. backNsfw: {
  2585. height: math.unit(1.65, "meters"),
  2586. weight: math.unit(50, "kg"),
  2587. name: "Back (NSFW)",
  2588. image: {
  2589. source: "./media/characters/elijah/back-nsfw.svg",
  2590. extra: 895 / 850,
  2591. bottom: 5.3 / 897.956
  2592. }
  2593. },
  2594. dick: {
  2595. height: math.unit(1, "feet"),
  2596. name: "Dick",
  2597. image: {
  2598. source: "./media/characters/elijah/dick.svg"
  2599. }
  2600. },
  2601. beakOpen: {
  2602. height: math.unit(1.25, "feet"),
  2603. name: "Beak (Open)",
  2604. image: {
  2605. source: "./media/characters/elijah/beak-open.svg"
  2606. }
  2607. },
  2608. beakShut: {
  2609. height: math.unit(1.25, "feet"),
  2610. name: "Beak (Shut)",
  2611. image: {
  2612. source: "./media/characters/elijah/beak-shut.svg"
  2613. }
  2614. },
  2615. footFlexing: {
  2616. height: math.unit(1.61, "feet"),
  2617. name: "Foot (Flexing)",
  2618. image: {
  2619. source: "./media/characters/elijah/foot-flexing.svg"
  2620. }
  2621. },
  2622. footStepping: {
  2623. height: math.unit(1.44, "feet"),
  2624. name: "Foot (Stepping)",
  2625. image: {
  2626. source: "./media/characters/elijah/foot-stepping.svg"
  2627. }
  2628. },
  2629. plantigradeLeg: {
  2630. height: math.unit(2.34, "feet"),
  2631. name: "Plantigrade Leg",
  2632. image: {
  2633. source: "./media/characters/elijah/plantigrade-leg.svg"
  2634. }
  2635. },
  2636. plantigradeFootLeft: {
  2637. height: math.unit(0.9, "feet"),
  2638. name: "Plantigrade Foot (Left)",
  2639. image: {
  2640. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2641. }
  2642. },
  2643. plantigradeFootRight: {
  2644. height: math.unit(0.9, "feet"),
  2645. name: "Plantigrade Foot (Right)",
  2646. image: {
  2647. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2648. }
  2649. },
  2650. },
  2651. [
  2652. {
  2653. name: "Normal",
  2654. height: math.unit(1.65, "meters")
  2655. },
  2656. {
  2657. name: "Macro",
  2658. height: math.unit(55, "meters"),
  2659. default: true
  2660. },
  2661. {
  2662. name: "Macro+",
  2663. height: math.unit(105, "meters")
  2664. },
  2665. ]
  2666. ))
  2667. characterMakers.push(() => makeCharacter(
  2668. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2669. {
  2670. front: {
  2671. height: math.unit(7 + 2/12, "feet"),
  2672. weight: math.unit(320, "kg"),
  2673. name: "Front",
  2674. image: {
  2675. source: "./media/characters/rai/front.svg",
  2676. extra: 1802/1696,
  2677. bottom: 68/1870
  2678. }
  2679. },
  2680. frontDressed: {
  2681. height: math.unit(7 + 2/12, "feet"),
  2682. weight: math.unit(320, "kg"),
  2683. name: "Front (Dressed)",
  2684. image: {
  2685. source: "./media/characters/rai/front-dressed.svg",
  2686. extra: 1802/1696,
  2687. bottom: 68/1870
  2688. }
  2689. },
  2690. side: {
  2691. height: math.unit(7 + 2/12, "feet"),
  2692. weight: math.unit(320, "kg"),
  2693. name: "Side",
  2694. image: {
  2695. source: "./media/characters/rai/side.svg",
  2696. extra: 1789/1710,
  2697. bottom: 115/1904
  2698. }
  2699. },
  2700. back: {
  2701. height: math.unit(7 + 2/12, "feet"),
  2702. weight: math.unit(320, "kg"),
  2703. name: "Back",
  2704. image: {
  2705. source: "./media/characters/rai/back.svg",
  2706. extra: 1770/1707,
  2707. bottom: 28/1798
  2708. }
  2709. },
  2710. feral: {
  2711. height: math.unit(9.5, "feet"),
  2712. weight: math.unit(640, "kg"),
  2713. name: "Feral",
  2714. image: {
  2715. source: "./media/characters/rai/feral.svg",
  2716. extra: 945/553,
  2717. bottom: 176/1121
  2718. }
  2719. },
  2720. dragon: {
  2721. height: math.unit(23, "feet"),
  2722. weight: math.unit(50000, "lb"),
  2723. name: "Dragon",
  2724. image: {
  2725. source: "./media/characters/rai/dragon.svg",
  2726. extra: 2498 / 2030,
  2727. bottom: 85.2 / 2584
  2728. }
  2729. },
  2730. maw: {
  2731. height: math.unit(1.69, "feet"),
  2732. name: "Maw",
  2733. image: {
  2734. source: "./media/characters/rai/maw.svg"
  2735. }
  2736. },
  2737. },
  2738. [
  2739. {
  2740. name: "Normal",
  2741. height: math.unit(7 + 2/12, "feet")
  2742. },
  2743. {
  2744. name: "Big",
  2745. height: math.unit(11, "feet")
  2746. },
  2747. {
  2748. name: "Macro",
  2749. height: math.unit(302, "feet"),
  2750. default: true
  2751. },
  2752. ]
  2753. ))
  2754. characterMakers.push(() => makeCharacter(
  2755. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2756. {
  2757. frontDressed: {
  2758. height: math.unit(216, "feet"),
  2759. weight: math.unit(7000000, "lb"),
  2760. name: "Front (Dressed)",
  2761. image: {
  2762. source: "./media/characters/jazzy/front-dressed.svg",
  2763. extra: 2738 / 2651,
  2764. bottom: 41.8 / 2786
  2765. }
  2766. },
  2767. backDressed: {
  2768. height: math.unit(216, "feet"),
  2769. weight: math.unit(7000000, "lb"),
  2770. name: "Back (Dressed)",
  2771. image: {
  2772. source: "./media/characters/jazzy/back-dressed.svg",
  2773. extra: 2775 / 2673,
  2774. bottom: 36.8 / 2817
  2775. }
  2776. },
  2777. front: {
  2778. height: math.unit(216, "feet"),
  2779. weight: math.unit(7000000, "lb"),
  2780. name: "Front",
  2781. image: {
  2782. source: "./media/characters/jazzy/front.svg",
  2783. extra: 2738 / 2651,
  2784. bottom: 41.8 / 2786
  2785. }
  2786. },
  2787. back: {
  2788. height: math.unit(216, "feet"),
  2789. weight: math.unit(7000000, "lb"),
  2790. name: "Back",
  2791. image: {
  2792. source: "./media/characters/jazzy/back.svg",
  2793. extra: 2775 / 2673,
  2794. bottom: 36.8 / 2817
  2795. }
  2796. },
  2797. maw: {
  2798. height: math.unit(20, "feet"),
  2799. name: "Maw",
  2800. image: {
  2801. source: "./media/characters/jazzy/maw.svg"
  2802. }
  2803. },
  2804. paws: {
  2805. height: math.unit(27.5, "feet"),
  2806. name: "Paws",
  2807. image: {
  2808. source: "./media/characters/jazzy/paws.svg"
  2809. }
  2810. },
  2811. eye: {
  2812. height: math.unit(4.4, "feet"),
  2813. name: "Eye",
  2814. image: {
  2815. source: "./media/characters/jazzy/eye.svg"
  2816. }
  2817. },
  2818. droneOffense: {
  2819. height: math.unit(9.5, "inches"),
  2820. name: "Drone (Offense)",
  2821. image: {
  2822. source: "./media/characters/jazzy/drone-offense.svg"
  2823. }
  2824. },
  2825. droneRecon: {
  2826. height: math.unit(9.5, "inches"),
  2827. name: "Drone (Recon)",
  2828. image: {
  2829. source: "./media/characters/jazzy/drone-recon.svg"
  2830. }
  2831. },
  2832. droneDefense: {
  2833. height: math.unit(9.5, "inches"),
  2834. name: "Drone (Defense)",
  2835. image: {
  2836. source: "./media/characters/jazzy/drone-defense.svg"
  2837. }
  2838. },
  2839. },
  2840. [
  2841. {
  2842. name: "Macro",
  2843. height: math.unit(216, "feet"),
  2844. default: true
  2845. },
  2846. ]
  2847. ))
  2848. characterMakers.push(() => makeCharacter(
  2849. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2850. {
  2851. front: {
  2852. height: math.unit(9 + 6/12, "feet"),
  2853. weight: math.unit(700, "lb"),
  2854. name: "Front",
  2855. image: {
  2856. source: "./media/characters/flamm/front.svg",
  2857. extra: 1751/1632,
  2858. bottom: 46/1797
  2859. }
  2860. },
  2861. buff: {
  2862. height: math.unit(9 + 6/12, "feet"),
  2863. weight: math.unit(950, "lb"),
  2864. name: "Buff",
  2865. image: {
  2866. source: "./media/characters/flamm/buff.svg",
  2867. extra: 3018/2874,
  2868. bottom: 221/3239
  2869. }
  2870. },
  2871. },
  2872. [
  2873. {
  2874. name: "Normal",
  2875. height: math.unit(9.5, "feet")
  2876. },
  2877. {
  2878. name: "Macro",
  2879. height: math.unit(200, "feet"),
  2880. default: true
  2881. },
  2882. ]
  2883. ))
  2884. characterMakers.push(() => makeCharacter(
  2885. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2886. {
  2887. front: {
  2888. height: math.unit(5 + 3/12, "feet"),
  2889. weight: math.unit(60, "kg"),
  2890. name: "Front",
  2891. image: {
  2892. source: "./media/characters/zephiro/front.svg",
  2893. extra: 2309 / 2162,
  2894. bottom: 0.069
  2895. }
  2896. },
  2897. side: {
  2898. height: math.unit(5 + 3/12, "feet"),
  2899. weight: math.unit(60, "kg"),
  2900. name: "Side",
  2901. image: {
  2902. source: "./media/characters/zephiro/side.svg",
  2903. extra: 2403 / 2279,
  2904. bottom: 0.015
  2905. }
  2906. },
  2907. back: {
  2908. height: math.unit(5 + 3/12, "feet"),
  2909. weight: math.unit(60, "kg"),
  2910. name: "Back",
  2911. image: {
  2912. source: "./media/characters/zephiro/back.svg",
  2913. extra: 2373 / 2244,
  2914. bottom: 0.013
  2915. }
  2916. },
  2917. hand: {
  2918. height: math.unit(0.68, "feet"),
  2919. name: "Hand",
  2920. image: {
  2921. source: "./media/characters/zephiro/hand.svg"
  2922. }
  2923. },
  2924. paw: {
  2925. height: math.unit(1, "feet"),
  2926. name: "Paw",
  2927. image: {
  2928. source: "./media/characters/zephiro/paw.svg"
  2929. }
  2930. },
  2931. beans: {
  2932. height: math.unit(0.93, "feet"),
  2933. name: "Beans",
  2934. image: {
  2935. source: "./media/characters/zephiro/beans.svg"
  2936. }
  2937. },
  2938. },
  2939. [
  2940. {
  2941. name: "Micro",
  2942. height: math.unit(3, "inches")
  2943. },
  2944. {
  2945. name: "Normal",
  2946. height: math.unit(5 + 3 / 12, "feet"),
  2947. default: true
  2948. },
  2949. {
  2950. name: "Macro",
  2951. height: math.unit(118, "feet")
  2952. },
  2953. ]
  2954. ))
  2955. characterMakers.push(() => makeCharacter(
  2956. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2957. {
  2958. front: {
  2959. height: math.unit(5, "feet"),
  2960. weight: math.unit(90, "kg"),
  2961. name: "Front",
  2962. image: {
  2963. source: "./media/characters/fory/front.svg",
  2964. extra: 2862 / 2674,
  2965. bottom: 180 / 3043.8
  2966. }
  2967. },
  2968. back: {
  2969. height: math.unit(5, "feet"),
  2970. weight: math.unit(90, "kg"),
  2971. name: "Back",
  2972. image: {
  2973. source: "./media/characters/fory/back.svg",
  2974. extra: 2962 / 2791,
  2975. bottom: 106 / 3071.8
  2976. }
  2977. },
  2978. foot: {
  2979. height: math.unit(2.14, "feet"),
  2980. name: "Foot",
  2981. image: {
  2982. source: "./media/characters/fory/foot.svg"
  2983. }
  2984. },
  2985. },
  2986. [
  2987. {
  2988. name: "Normal",
  2989. height: math.unit(5, "feet")
  2990. },
  2991. {
  2992. name: "Macro",
  2993. height: math.unit(50, "feet"),
  2994. default: true
  2995. },
  2996. {
  2997. name: "Megamacro",
  2998. height: math.unit(10, "miles")
  2999. },
  3000. {
  3001. name: "Gigamacro",
  3002. height: math.unit(5, "earths")
  3003. },
  3004. ]
  3005. ))
  3006. characterMakers.push(() => makeCharacter(
  3007. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3008. {
  3009. front: {
  3010. height: math.unit(7, "feet"),
  3011. weight: math.unit(90, "kg"),
  3012. name: "Front",
  3013. image: {
  3014. source: "./media/characters/kurrikage/front.svg",
  3015. extra: 1845/1733,
  3016. bottom: 119/1964
  3017. }
  3018. },
  3019. back: {
  3020. height: math.unit(7, "feet"),
  3021. weight: math.unit(90, "kg"),
  3022. name: "Back",
  3023. image: {
  3024. source: "./media/characters/kurrikage/back.svg",
  3025. extra: 1790/1677,
  3026. bottom: 61/1851
  3027. }
  3028. },
  3029. dressed: {
  3030. height: math.unit(7, "feet"),
  3031. weight: math.unit(90, "kg"),
  3032. name: "Dressed",
  3033. image: {
  3034. source: "./media/characters/kurrikage/dressed.svg",
  3035. extra: 1845/1733,
  3036. bottom: 119/1964
  3037. }
  3038. },
  3039. foot: {
  3040. height: math.unit(1.5, "feet"),
  3041. name: "Foot",
  3042. image: {
  3043. source: "./media/characters/kurrikage/foot.svg"
  3044. }
  3045. },
  3046. staff: {
  3047. height: math.unit(6.7, "feet"),
  3048. name: "Staff",
  3049. image: {
  3050. source: "./media/characters/kurrikage/staff.svg"
  3051. }
  3052. },
  3053. peek: {
  3054. height: math.unit(1.05, "feet"),
  3055. name: "Peeking",
  3056. image: {
  3057. source: "./media/characters/kurrikage/peek.svg",
  3058. bottom: 0.08
  3059. }
  3060. },
  3061. },
  3062. [
  3063. {
  3064. name: "Normal",
  3065. height: math.unit(12, "feet"),
  3066. default: true
  3067. },
  3068. {
  3069. name: "Big",
  3070. height: math.unit(20, "feet")
  3071. },
  3072. {
  3073. name: "Macro",
  3074. height: math.unit(500, "feet")
  3075. },
  3076. {
  3077. name: "Megamacro",
  3078. height: math.unit(20, "miles")
  3079. },
  3080. ]
  3081. ))
  3082. characterMakers.push(() => makeCharacter(
  3083. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3084. {
  3085. front: {
  3086. height: math.unit(6, "feet"),
  3087. weight: math.unit(75, "kg"),
  3088. name: "Front",
  3089. image: {
  3090. source: "./media/characters/shingo/front.svg",
  3091. extra: 1900/1825,
  3092. bottom: 82/1982
  3093. }
  3094. },
  3095. side: {
  3096. height: math.unit(6, "feet"),
  3097. weight: math.unit(75, "kg"),
  3098. name: "Side",
  3099. image: {
  3100. source: "./media/characters/shingo/side.svg",
  3101. extra: 1930/1865,
  3102. bottom: 16/1946
  3103. }
  3104. },
  3105. back: {
  3106. height: math.unit(6, "feet"),
  3107. weight: math.unit(75, "kg"),
  3108. name: "Back",
  3109. image: {
  3110. source: "./media/characters/shingo/back.svg",
  3111. extra: 1922/1852,
  3112. bottom: 16/1938
  3113. }
  3114. },
  3115. frontDressed: {
  3116. height: math.unit(6, "feet"),
  3117. weight: math.unit(150, "lb"),
  3118. name: "Front-dressed",
  3119. image: {
  3120. source: "./media/characters/shingo/front-dressed.svg",
  3121. extra: 1900/1825,
  3122. bottom: 82/1982
  3123. }
  3124. },
  3125. paw: {
  3126. height: math.unit(1.29, "feet"),
  3127. name: "Paw",
  3128. image: {
  3129. source: "./media/characters/shingo/paw.svg"
  3130. }
  3131. },
  3132. hand: {
  3133. height: math.unit(1.07, "feet"),
  3134. name: "Hand",
  3135. image: {
  3136. source: "./media/characters/shingo/hand.svg"
  3137. }
  3138. },
  3139. frontAlt: {
  3140. height: math.unit(6, "feet"),
  3141. weight: math.unit(75, "kg"),
  3142. name: "Front (Alt)",
  3143. image: {
  3144. source: "./media/characters/shingo/front-alt.svg",
  3145. extra: 3511 / 3338,
  3146. bottom: 0.005
  3147. }
  3148. },
  3149. frontAlt2: {
  3150. height: math.unit(6, "feet"),
  3151. weight: math.unit(75, "kg"),
  3152. name: "Front (Alt 2)",
  3153. image: {
  3154. source: "./media/characters/shingo/front-alt-2.svg",
  3155. extra: 706/681,
  3156. bottom: 11/717
  3157. }
  3158. },
  3159. pawAlt: {
  3160. height: math.unit(1, "feet"),
  3161. name: "Paw (Alt)",
  3162. image: {
  3163. source: "./media/characters/shingo/paw-alt.svg"
  3164. }
  3165. },
  3166. },
  3167. [
  3168. {
  3169. name: "Micro",
  3170. height: math.unit(4, "inches")
  3171. },
  3172. {
  3173. name: "Normal",
  3174. height: math.unit(6, "feet"),
  3175. default: true
  3176. },
  3177. {
  3178. name: "Macro",
  3179. height: math.unit(108, "feet")
  3180. },
  3181. {
  3182. name: "Macro+",
  3183. height: math.unit(1500, "feet")
  3184. },
  3185. ]
  3186. ))
  3187. characterMakers.push(() => makeCharacter(
  3188. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3189. {
  3190. side: {
  3191. height: math.unit(6, "feet"),
  3192. weight: math.unit(75, "kg"),
  3193. name: "Side",
  3194. image: {
  3195. source: "./media/characters/aigey/side.svg"
  3196. }
  3197. },
  3198. },
  3199. [
  3200. {
  3201. name: "Macro",
  3202. height: math.unit(200, "feet"),
  3203. default: true
  3204. },
  3205. {
  3206. name: "Megamacro",
  3207. height: math.unit(100, "miles")
  3208. },
  3209. ]
  3210. )
  3211. )
  3212. characterMakers.push(() => makeCharacter(
  3213. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3214. {
  3215. front: {
  3216. height: math.unit(5 + 5 / 12, "feet"),
  3217. weight: math.unit(75, "kg"),
  3218. name: "Front",
  3219. image: {
  3220. source: "./media/characters/natasha/front.svg",
  3221. extra: 859 / 824,
  3222. bottom: 23 / 879.6
  3223. }
  3224. },
  3225. frontNsfw: {
  3226. height: math.unit(5 + 5 / 12, "feet"),
  3227. weight: math.unit(75, "kg"),
  3228. name: "Front (NSFW)",
  3229. image: {
  3230. source: "./media/characters/natasha/front-nsfw.svg",
  3231. extra: 859 / 824,
  3232. bottom: 23 / 879.6
  3233. }
  3234. },
  3235. frontErect: {
  3236. height: math.unit(5 + 5 / 12, "feet"),
  3237. weight: math.unit(75, "kg"),
  3238. name: "Front (Erect)",
  3239. image: {
  3240. source: "./media/characters/natasha/front-erect.svg",
  3241. extra: 859 / 824,
  3242. bottom: 23 / 879.6
  3243. }
  3244. },
  3245. back: {
  3246. height: math.unit(5 + 5 / 12, "feet"),
  3247. weight: math.unit(75, "kg"),
  3248. name: "Back",
  3249. image: {
  3250. source: "./media/characters/natasha/back.svg",
  3251. extra: 887.9 / 852.6,
  3252. bottom: 9.7 / 896.4
  3253. }
  3254. },
  3255. backAlt: {
  3256. height: math.unit(5 + 5 / 12, "feet"),
  3257. weight: math.unit(75, "kg"),
  3258. name: "Back (Alt)",
  3259. image: {
  3260. source: "./media/characters/natasha/back-alt.svg",
  3261. extra: 1236.7 / 1192,
  3262. bottom: 22.3 / 1258.2
  3263. }
  3264. },
  3265. dick: {
  3266. height: math.unit(1.772, "feet"),
  3267. name: "Dick",
  3268. image: {
  3269. source: "./media/characters/natasha/dick.svg"
  3270. }
  3271. },
  3272. paw: {
  3273. height: math.unit(0.250, "meters"),
  3274. name: "Paw",
  3275. image: {
  3276. source: "./media/characters/natasha/paw.svg"
  3277. }
  3278. },
  3279. },
  3280. [
  3281. {
  3282. name: "Normal",
  3283. height: math.unit(5 + 5 / 12, "feet")
  3284. },
  3285. {
  3286. name: "Large",
  3287. height: math.unit(12, "feet")
  3288. },
  3289. {
  3290. name: "Macro",
  3291. height: math.unit(100, "feet"),
  3292. default: true
  3293. },
  3294. {
  3295. name: "Macro+",
  3296. height: math.unit(260, "feet")
  3297. },
  3298. {
  3299. name: "Macro++",
  3300. height: math.unit(1, "mile")
  3301. },
  3302. ]
  3303. ))
  3304. characterMakers.push(() => makeCharacter(
  3305. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3306. {
  3307. front: {
  3308. height: math.unit(6, "feet"),
  3309. weight: math.unit(75, "kg"),
  3310. name: "Front",
  3311. image: {
  3312. source: "./media/characters/malik/front.svg"
  3313. }
  3314. },
  3315. side: {
  3316. height: math.unit(6, "feet"),
  3317. weight: math.unit(75, "kg"),
  3318. name: "Side",
  3319. image: {
  3320. source: "./media/characters/malik/side.svg",
  3321. extra: 1.1539
  3322. }
  3323. },
  3324. back: {
  3325. height: math.unit(6, "feet"),
  3326. weight: math.unit(75, "kg"),
  3327. name: "Back",
  3328. image: {
  3329. source: "./media/characters/malik/back.svg"
  3330. }
  3331. },
  3332. },
  3333. [
  3334. {
  3335. name: "Macro",
  3336. height: math.unit(156, "feet"),
  3337. default: true
  3338. },
  3339. {
  3340. name: "Macro+",
  3341. height: math.unit(1188, "feet")
  3342. },
  3343. ]
  3344. ))
  3345. characterMakers.push(() => makeCharacter(
  3346. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3347. {
  3348. front: {
  3349. height: math.unit(6, "feet"),
  3350. weight: math.unit(75, "kg"),
  3351. name: "Front",
  3352. image: {
  3353. source: "./media/characters/sefer/front.svg",
  3354. extra: 848 / 659,
  3355. bottom: 28.3 / 876.442
  3356. }
  3357. },
  3358. back: {
  3359. height: math.unit(6, "feet"),
  3360. weight: math.unit(75, "kg"),
  3361. name: "Back",
  3362. image: {
  3363. source: "./media/characters/sefer/back.svg",
  3364. extra: 864 / 695,
  3365. bottom: 10 / 871
  3366. }
  3367. },
  3368. frontDressed: {
  3369. height: math.unit(6, "feet"),
  3370. weight: math.unit(75, "kg"),
  3371. name: "Front (Dressed)",
  3372. image: {
  3373. source: "./media/characters/sefer/front-dressed.svg",
  3374. extra: 839 / 653,
  3375. bottom: 37.6 / 878
  3376. }
  3377. },
  3378. },
  3379. [
  3380. {
  3381. name: "Normal",
  3382. height: math.unit(6, "feet"),
  3383. default: true
  3384. },
  3385. ]
  3386. ))
  3387. characterMakers.push(() => makeCharacter(
  3388. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3389. {
  3390. body: {
  3391. height: math.unit(2.2428, "meter"),
  3392. weight: math.unit(124.738, "kg"),
  3393. name: "Body",
  3394. image: {
  3395. extra: 1225 / 1050,
  3396. source: "./media/characters/north/front.svg"
  3397. }
  3398. }
  3399. },
  3400. [
  3401. {
  3402. name: "Micro",
  3403. height: math.unit(4, "inches")
  3404. },
  3405. {
  3406. name: "Macro",
  3407. height: math.unit(63, "meters")
  3408. },
  3409. {
  3410. name: "Megamacro",
  3411. height: math.unit(101, "miles"),
  3412. default: true
  3413. }
  3414. ]
  3415. ))
  3416. characterMakers.push(() => makeCharacter(
  3417. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3418. {
  3419. angled: {
  3420. height: math.unit(4, "meter"),
  3421. weight: math.unit(150, "kg"),
  3422. name: "Angled",
  3423. image: {
  3424. source: "./media/characters/talan/angled-sfw.svg",
  3425. bottom: 29 / 3734
  3426. }
  3427. },
  3428. angledNsfw: {
  3429. height: math.unit(4, "meter"),
  3430. weight: math.unit(150, "kg"),
  3431. name: "Angled (NSFW)",
  3432. image: {
  3433. source: "./media/characters/talan/angled-nsfw.svg",
  3434. bottom: 29 / 3734
  3435. }
  3436. },
  3437. frontNsfw: {
  3438. height: math.unit(4, "meter"),
  3439. weight: math.unit(150, "kg"),
  3440. name: "Front (NSFW)",
  3441. image: {
  3442. source: "./media/characters/talan/front-nsfw.svg",
  3443. bottom: 29 / 3734
  3444. }
  3445. },
  3446. sideNsfw: {
  3447. height: math.unit(4, "meter"),
  3448. weight: math.unit(150, "kg"),
  3449. name: "Side (NSFW)",
  3450. image: {
  3451. source: "./media/characters/talan/side-nsfw.svg",
  3452. bottom: 29 / 3734
  3453. }
  3454. },
  3455. back: {
  3456. height: math.unit(4, "meter"),
  3457. weight: math.unit(150, "kg"),
  3458. name: "Back",
  3459. image: {
  3460. source: "./media/characters/talan/back.svg"
  3461. }
  3462. },
  3463. dickBottom: {
  3464. height: math.unit(0.621, "meter"),
  3465. name: "Dick (Bottom)",
  3466. image: {
  3467. source: "./media/characters/talan/dick-bottom.svg"
  3468. }
  3469. },
  3470. dickTop: {
  3471. height: math.unit(0.621, "meter"),
  3472. name: "Dick (Top)",
  3473. image: {
  3474. source: "./media/characters/talan/dick-top.svg"
  3475. }
  3476. },
  3477. dickSide: {
  3478. height: math.unit(0.305, "meter"),
  3479. name: "Dick (Side)",
  3480. image: {
  3481. source: "./media/characters/talan/dick-side.svg"
  3482. }
  3483. },
  3484. dickFront: {
  3485. height: math.unit(0.305, "meter"),
  3486. name: "Dick (Front)",
  3487. image: {
  3488. source: "./media/characters/talan/dick-front.svg"
  3489. }
  3490. },
  3491. },
  3492. [
  3493. {
  3494. name: "Normal",
  3495. height: math.unit(4, "meters")
  3496. },
  3497. {
  3498. name: "Macro",
  3499. height: math.unit(100, "meters")
  3500. },
  3501. {
  3502. name: "Megamacro",
  3503. height: math.unit(2, "miles"),
  3504. default: true
  3505. },
  3506. {
  3507. name: "Gigamacro",
  3508. height: math.unit(5000, "miles")
  3509. },
  3510. {
  3511. name: "Teramacro",
  3512. height: math.unit(100, "parsecs")
  3513. }
  3514. ]
  3515. ))
  3516. characterMakers.push(() => makeCharacter(
  3517. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3518. {
  3519. front: {
  3520. height: math.unit(2, "meter"),
  3521. weight: math.unit(90, "kg"),
  3522. name: "Front",
  3523. image: {
  3524. source: "./media/characters/gael'rathus/front.svg"
  3525. }
  3526. },
  3527. frontAlt: {
  3528. height: math.unit(2, "meter"),
  3529. weight: math.unit(90, "kg"),
  3530. name: "Front (alt)",
  3531. image: {
  3532. source: "./media/characters/gael'rathus/front-alt.svg"
  3533. }
  3534. },
  3535. frontAlt2: {
  3536. height: math.unit(2, "meter"),
  3537. weight: math.unit(90, "kg"),
  3538. name: "Front (alt 2)",
  3539. image: {
  3540. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3541. }
  3542. }
  3543. },
  3544. [
  3545. {
  3546. name: "Normal",
  3547. height: math.unit(9, "feet"),
  3548. default: true
  3549. },
  3550. {
  3551. name: "Large",
  3552. height: math.unit(25, "feet")
  3553. },
  3554. {
  3555. name: "Macro",
  3556. height: math.unit(0.25, "miles")
  3557. },
  3558. {
  3559. name: "Megamacro",
  3560. height: math.unit(10, "miles")
  3561. }
  3562. ]
  3563. ))
  3564. characterMakers.push(() => makeCharacter(
  3565. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3566. {
  3567. side: {
  3568. height: math.unit(2, "meter"),
  3569. weight: math.unit(140, "kg"),
  3570. name: "Side",
  3571. image: {
  3572. source: "./media/characters/sosha/side.svg",
  3573. bottom: 0.042
  3574. }
  3575. },
  3576. },
  3577. [
  3578. {
  3579. name: "Normal",
  3580. height: math.unit(12, "feet"),
  3581. default: true
  3582. }
  3583. ]
  3584. ))
  3585. characterMakers.push(() => makeCharacter(
  3586. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3587. {
  3588. side: {
  3589. height: math.unit(5 + 5 / 12, "feet"),
  3590. weight: math.unit(170, "kg"),
  3591. name: "Side",
  3592. image: {
  3593. source: "./media/characters/runnola/side.svg",
  3594. extra: 741 / 448,
  3595. bottom: 0.05
  3596. }
  3597. },
  3598. },
  3599. [
  3600. {
  3601. name: "Small",
  3602. height: math.unit(3, "feet")
  3603. },
  3604. {
  3605. name: "Normal",
  3606. height: math.unit(5 + 5 / 12, "feet"),
  3607. default: true
  3608. },
  3609. {
  3610. name: "Big",
  3611. height: math.unit(10, "feet")
  3612. },
  3613. ]
  3614. ))
  3615. characterMakers.push(() => makeCharacter(
  3616. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3617. {
  3618. front: {
  3619. height: math.unit(2, "meter"),
  3620. weight: math.unit(50, "kg"),
  3621. name: "Front",
  3622. image: {
  3623. source: "./media/characters/kurribird/front.svg",
  3624. bottom: 0.015
  3625. }
  3626. },
  3627. frontAlt: {
  3628. height: math.unit(1.5, "meter"),
  3629. weight: math.unit(50, "kg"),
  3630. name: "Front (Alt)",
  3631. image: {
  3632. source: "./media/characters/kurribird/front-alt.svg",
  3633. extra: 1.45
  3634. }
  3635. },
  3636. },
  3637. [
  3638. {
  3639. name: "Normal",
  3640. height: math.unit(7, "feet")
  3641. },
  3642. {
  3643. name: "Big",
  3644. height: math.unit(12, "feet"),
  3645. default: true
  3646. },
  3647. {
  3648. name: "Macro",
  3649. height: math.unit(1500, "feet")
  3650. },
  3651. {
  3652. name: "Megamacro",
  3653. height: math.unit(2, "miles")
  3654. }
  3655. ]
  3656. ))
  3657. characterMakers.push(() => makeCharacter(
  3658. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3659. {
  3660. front: {
  3661. height: math.unit(2, "meter"),
  3662. weight: math.unit(80, "kg"),
  3663. name: "Front",
  3664. image: {
  3665. source: "./media/characters/elbial/front.svg",
  3666. extra: 1643 / 1556,
  3667. bottom: 60.2 / 1696
  3668. }
  3669. },
  3670. side: {
  3671. height: math.unit(2, "meter"),
  3672. weight: math.unit(80, "kg"),
  3673. name: "Side",
  3674. image: {
  3675. source: "./media/characters/elbial/side.svg",
  3676. extra: 1601/1528,
  3677. bottom: 97/1698
  3678. }
  3679. },
  3680. back: {
  3681. height: math.unit(2, "meter"),
  3682. weight: math.unit(80, "kg"),
  3683. name: "Back",
  3684. image: {
  3685. source: "./media/characters/elbial/back.svg",
  3686. extra: 1653/1569,
  3687. bottom: 20/1673
  3688. }
  3689. },
  3690. frontDressed: {
  3691. height: math.unit(2, "meter"),
  3692. weight: math.unit(80, "kg"),
  3693. name: "Front (Dressed)",
  3694. image: {
  3695. source: "./media/characters/elbial/front-dressed.svg",
  3696. extra: 1638/1569,
  3697. bottom: 70/1708
  3698. }
  3699. },
  3700. genitals: {
  3701. height: math.unit(2 / 3.367, "meter"),
  3702. name: "Genitals",
  3703. image: {
  3704. source: "./media/characters/elbial/genitals.svg"
  3705. }
  3706. },
  3707. },
  3708. [
  3709. {
  3710. name: "Large",
  3711. height: math.unit(100, "feet")
  3712. },
  3713. {
  3714. name: "Macro",
  3715. height: math.unit(500, "feet"),
  3716. default: true
  3717. },
  3718. {
  3719. name: "Megamacro",
  3720. height: math.unit(10, "miles")
  3721. },
  3722. {
  3723. name: "Gigamacro",
  3724. height: math.unit(25000, "miles")
  3725. },
  3726. {
  3727. name: "Full-Size",
  3728. height: math.unit(8000000, "gigaparsecs")
  3729. }
  3730. ]
  3731. ))
  3732. characterMakers.push(() => makeCharacter(
  3733. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3734. {
  3735. front: {
  3736. height: math.unit(2, "meter"),
  3737. weight: math.unit(60, "kg"),
  3738. name: "Front",
  3739. image: {
  3740. source: "./media/characters/noah/front.svg"
  3741. }
  3742. },
  3743. talons: {
  3744. height: math.unit(0.315, "meter"),
  3745. name: "Talons",
  3746. image: {
  3747. source: "./media/characters/noah/talons.svg"
  3748. }
  3749. }
  3750. },
  3751. [
  3752. {
  3753. name: "Large",
  3754. height: math.unit(50, "feet")
  3755. },
  3756. {
  3757. name: "Macro",
  3758. height: math.unit(750, "feet"),
  3759. default: true
  3760. },
  3761. {
  3762. name: "Megamacro",
  3763. height: math.unit(50, "miles")
  3764. },
  3765. {
  3766. name: "Gigamacro",
  3767. height: math.unit(100000, "miles")
  3768. },
  3769. {
  3770. name: "Full-Size",
  3771. height: math.unit(3000000000, "miles")
  3772. }
  3773. ]
  3774. ))
  3775. characterMakers.push(() => makeCharacter(
  3776. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3777. {
  3778. front: {
  3779. height: math.unit(2, "meter"),
  3780. weight: math.unit(80, "kg"),
  3781. name: "Front",
  3782. image: {
  3783. source: "./media/characters/natalya/front.svg"
  3784. }
  3785. },
  3786. back: {
  3787. height: math.unit(2, "meter"),
  3788. weight: math.unit(80, "kg"),
  3789. name: "Back",
  3790. image: {
  3791. source: "./media/characters/natalya/back.svg"
  3792. }
  3793. }
  3794. },
  3795. [
  3796. {
  3797. name: "Normal",
  3798. height: math.unit(150, "feet"),
  3799. default: true
  3800. },
  3801. {
  3802. name: "Megamacro",
  3803. height: math.unit(5, "miles")
  3804. },
  3805. {
  3806. name: "Full-Size",
  3807. height: math.unit(600, "kiloparsecs")
  3808. }
  3809. ]
  3810. ))
  3811. characterMakers.push(() => makeCharacter(
  3812. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3813. {
  3814. front: {
  3815. height: math.unit(2, "meter"),
  3816. weight: math.unit(50, "kg"),
  3817. name: "Front",
  3818. image: {
  3819. source: "./media/characters/erestrebah/front.svg",
  3820. extra: 1262/1162,
  3821. bottom: 96/1358
  3822. }
  3823. },
  3824. back: {
  3825. height: math.unit(2, "meter"),
  3826. weight: math.unit(50, "kg"),
  3827. name: "Back",
  3828. image: {
  3829. source: "./media/characters/erestrebah/back.svg",
  3830. extra: 1257/1139,
  3831. bottom: 13/1270
  3832. }
  3833. },
  3834. wing: {
  3835. height: math.unit(2, "meter"),
  3836. weight: math.unit(50, "kg"),
  3837. name: "Wing",
  3838. image: {
  3839. source: "./media/characters/erestrebah/wing.svg",
  3840. extra: 1262/1162,
  3841. bottom: 96/1358
  3842. }
  3843. },
  3844. mouth: {
  3845. height: math.unit(0.39, "feet"),
  3846. name: "Mouth",
  3847. image: {
  3848. source: "./media/characters/erestrebah/mouth.svg"
  3849. }
  3850. }
  3851. },
  3852. [
  3853. {
  3854. name: "Normal",
  3855. height: math.unit(10, "feet")
  3856. },
  3857. {
  3858. name: "Large",
  3859. height: math.unit(50, "feet"),
  3860. default: true
  3861. },
  3862. {
  3863. name: "Macro",
  3864. height: math.unit(300, "feet")
  3865. },
  3866. {
  3867. name: "Macro+",
  3868. height: math.unit(750, "feet")
  3869. },
  3870. {
  3871. name: "Megamacro",
  3872. height: math.unit(3, "miles")
  3873. }
  3874. ]
  3875. ))
  3876. characterMakers.push(() => makeCharacter(
  3877. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3878. {
  3879. front: {
  3880. height: math.unit(2, "meter"),
  3881. weight: math.unit(80, "kg"),
  3882. name: "Front",
  3883. image: {
  3884. source: "./media/characters/jennifer/front.svg",
  3885. bottom: 0.11,
  3886. extra: 1.16
  3887. }
  3888. },
  3889. frontAlt: {
  3890. height: math.unit(2, "meter"),
  3891. weight: math.unit(80, "kg"),
  3892. name: "Front (Alt)",
  3893. image: {
  3894. source: "./media/characters/jennifer/front-alt.svg"
  3895. }
  3896. }
  3897. },
  3898. [
  3899. {
  3900. name: "Canon Height",
  3901. height: math.unit(120, "feet"),
  3902. default: true
  3903. },
  3904. {
  3905. name: "Macro+",
  3906. height: math.unit(300, "feet")
  3907. },
  3908. {
  3909. name: "Megamacro",
  3910. height: math.unit(20000, "feet")
  3911. }
  3912. ]
  3913. ))
  3914. characterMakers.push(() => makeCharacter(
  3915. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3916. {
  3917. front: {
  3918. height: math.unit(2, "meter"),
  3919. weight: math.unit(50, "kg"),
  3920. name: "Front",
  3921. image: {
  3922. source: "./media/characters/kalista/front.svg",
  3923. extra: 1314/1145,
  3924. bottom: 101/1415
  3925. }
  3926. },
  3927. back: {
  3928. height: math.unit(2, "meter"),
  3929. weight: math.unit(50, "kg"),
  3930. name: "Back",
  3931. image: {
  3932. source: "./media/characters/kalista/back.svg",
  3933. extra: 1366 / 1156,
  3934. bottom: 33.9 / 1362.78
  3935. }
  3936. }
  3937. },
  3938. [
  3939. {
  3940. name: "Uncomfortably Small",
  3941. height: math.unit(10, "feet")
  3942. },
  3943. {
  3944. name: "Small",
  3945. height: math.unit(30, "feet")
  3946. },
  3947. {
  3948. name: "Macro",
  3949. height: math.unit(100, "feet"),
  3950. default: true
  3951. },
  3952. {
  3953. name: "Macro+",
  3954. height: math.unit(2000, "feet")
  3955. },
  3956. {
  3957. name: "True Form",
  3958. height: math.unit(8924, "miles")
  3959. }
  3960. ]
  3961. ))
  3962. characterMakers.push(() => makeCharacter(
  3963. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3964. {
  3965. front: {
  3966. height: math.unit(2, "meter"),
  3967. weight: math.unit(120, "kg"),
  3968. name: "Front",
  3969. image: {
  3970. source: "./media/characters/ggv/front.svg"
  3971. }
  3972. },
  3973. side: {
  3974. height: math.unit(2, "meter"),
  3975. weight: math.unit(120, "kg"),
  3976. name: "Side",
  3977. image: {
  3978. source: "./media/characters/ggv/side.svg"
  3979. }
  3980. }
  3981. },
  3982. [
  3983. {
  3984. name: "Extremely Puny",
  3985. height: math.unit(9 + 5 / 12, "feet")
  3986. },
  3987. {
  3988. name: "Horribly Small",
  3989. height: math.unit(47.7, "miles"),
  3990. default: true
  3991. },
  3992. {
  3993. name: "Reasonably Sized",
  3994. height: math.unit(25000, "parsecs")
  3995. },
  3996. {
  3997. name: "Slightly Uncompressed",
  3998. height: math.unit(7.77e31, "parsecs")
  3999. },
  4000. {
  4001. name: "Omniversal",
  4002. height: math.unit(1e300, "meters")
  4003. },
  4004. ]
  4005. ))
  4006. characterMakers.push(() => makeCharacter(
  4007. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4008. {
  4009. front: {
  4010. height: math.unit(2, "meter"),
  4011. weight: math.unit(75, "lb"),
  4012. name: "Front",
  4013. image: {
  4014. source: "./media/characters/napalm/front.svg"
  4015. }
  4016. },
  4017. back: {
  4018. height: math.unit(2, "meter"),
  4019. weight: math.unit(75, "lb"),
  4020. name: "Back",
  4021. image: {
  4022. source: "./media/characters/napalm/back.svg"
  4023. }
  4024. }
  4025. },
  4026. [
  4027. {
  4028. name: "Standard",
  4029. height: math.unit(55, "feet"),
  4030. default: true
  4031. }
  4032. ]
  4033. ))
  4034. characterMakers.push(() => makeCharacter(
  4035. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4036. {
  4037. front: {
  4038. height: math.unit(7 + 5 / 6, "feet"),
  4039. weight: math.unit(325, "lb"),
  4040. name: "Front",
  4041. image: {
  4042. source: "./media/characters/asana/front.svg",
  4043. extra: 1133 / 1060,
  4044. bottom: 15.2 / 1148.6
  4045. }
  4046. },
  4047. back: {
  4048. height: math.unit(7 + 5 / 6, "feet"),
  4049. weight: math.unit(325, "lb"),
  4050. name: "Back",
  4051. image: {
  4052. source: "./media/characters/asana/back.svg",
  4053. extra: 1114 / 1043,
  4054. bottom: 5 / 1120
  4055. }
  4056. },
  4057. dressedDark: {
  4058. height: math.unit(7 + 5 / 6, "feet"),
  4059. weight: math.unit(325, "lb"),
  4060. name: "Dressed (Dark)",
  4061. image: {
  4062. source: "./media/characters/asana/dressed-dark.svg",
  4063. extra: 1133 / 1060,
  4064. bottom: 15.2 / 1148.6
  4065. }
  4066. },
  4067. dressedLight: {
  4068. height: math.unit(7 + 5 / 6, "feet"),
  4069. weight: math.unit(325, "lb"),
  4070. name: "Dressed (Light)",
  4071. image: {
  4072. source: "./media/characters/asana/dressed-light.svg",
  4073. extra: 1133 / 1060,
  4074. bottom: 15.2 / 1148.6
  4075. }
  4076. },
  4077. },
  4078. [
  4079. {
  4080. name: "Standard",
  4081. height: math.unit(7 + 5 / 6, "feet"),
  4082. default: true
  4083. },
  4084. {
  4085. name: "Large",
  4086. height: math.unit(10, "meters")
  4087. },
  4088. {
  4089. name: "Macro",
  4090. height: math.unit(2500, "meters")
  4091. },
  4092. {
  4093. name: "Megamacro",
  4094. height: math.unit(5e6, "meters")
  4095. },
  4096. {
  4097. name: "Examacro",
  4098. height: math.unit(5e12, "lightyears")
  4099. },
  4100. {
  4101. name: "Max Size",
  4102. height: math.unit(1e31, "lightyears")
  4103. }
  4104. ]
  4105. ))
  4106. characterMakers.push(() => makeCharacter(
  4107. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4108. {
  4109. front: {
  4110. height: math.unit(2, "meter"),
  4111. weight: math.unit(60, "kg"),
  4112. name: "Front",
  4113. image: {
  4114. source: "./media/characters/ebony/front.svg",
  4115. bottom: 0.03,
  4116. extra: 1045 / 810 + 0.03
  4117. }
  4118. },
  4119. side: {
  4120. height: math.unit(2, "meter"),
  4121. weight: math.unit(60, "kg"),
  4122. name: "Side",
  4123. image: {
  4124. source: "./media/characters/ebony/side.svg",
  4125. bottom: 0.03,
  4126. extra: 1045 / 810 + 0.03
  4127. }
  4128. },
  4129. back: {
  4130. height: math.unit(2, "meter"),
  4131. weight: math.unit(60, "kg"),
  4132. name: "Back",
  4133. image: {
  4134. source: "./media/characters/ebony/back.svg",
  4135. bottom: 0.01,
  4136. extra: 1045 / 810 + 0.01
  4137. }
  4138. },
  4139. },
  4140. [
  4141. // TODO check why I did this lol
  4142. {
  4143. name: "Standard",
  4144. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4145. default: true
  4146. },
  4147. {
  4148. name: "Macro",
  4149. height: math.unit(200, "feet")
  4150. },
  4151. {
  4152. name: "Gigamacro",
  4153. height: math.unit(13000, "km")
  4154. }
  4155. ]
  4156. ))
  4157. characterMakers.push(() => makeCharacter(
  4158. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4159. {
  4160. front: {
  4161. height: math.unit(6, "feet"),
  4162. weight: math.unit(175, "lb"),
  4163. name: "Front",
  4164. image: {
  4165. source: "./media/characters/mountain/front.svg",
  4166. extra: 972 / 955,
  4167. bottom: 64 / 1036.6
  4168. }
  4169. },
  4170. back: {
  4171. height: math.unit(6, "feet"),
  4172. weight: math.unit(175, "lb"),
  4173. name: "Back",
  4174. image: {
  4175. source: "./media/characters/mountain/back.svg",
  4176. extra: 970 / 950,
  4177. bottom: 28.25 / 999
  4178. }
  4179. },
  4180. },
  4181. [
  4182. {
  4183. name: "Large",
  4184. height: math.unit(20, "meters")
  4185. },
  4186. {
  4187. name: "Macro",
  4188. height: math.unit(300, "meters")
  4189. },
  4190. {
  4191. name: "Gigamacro",
  4192. height: math.unit(10000, "km"),
  4193. default: true
  4194. },
  4195. {
  4196. name: "Examacro",
  4197. height: math.unit(10e9, "lightyears")
  4198. }
  4199. ]
  4200. ))
  4201. characterMakers.push(() => makeCharacter(
  4202. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4203. {
  4204. front: {
  4205. height: math.unit(8, "feet"),
  4206. weight: math.unit(500, "lb"),
  4207. name: "Front",
  4208. image: {
  4209. source: "./media/characters/rick/front.svg"
  4210. }
  4211. }
  4212. },
  4213. [
  4214. {
  4215. name: "Normal",
  4216. height: math.unit(8, "feet"),
  4217. default: true
  4218. },
  4219. {
  4220. name: "Macro",
  4221. height: math.unit(5, "km")
  4222. }
  4223. ]
  4224. ))
  4225. characterMakers.push(() => makeCharacter(
  4226. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4227. {
  4228. front: {
  4229. height: math.unit(8, "feet"),
  4230. weight: math.unit(120, "lb"),
  4231. name: "Front",
  4232. image: {
  4233. source: "./media/characters/ona/front.svg"
  4234. }
  4235. },
  4236. frontAlt: {
  4237. height: math.unit(8, "feet"),
  4238. weight: math.unit(120, "lb"),
  4239. name: "Front (Alt)",
  4240. image: {
  4241. source: "./media/characters/ona/front-alt.svg"
  4242. }
  4243. },
  4244. back: {
  4245. height: math.unit(8, "feet"),
  4246. weight: math.unit(120, "lb"),
  4247. name: "Back",
  4248. image: {
  4249. source: "./media/characters/ona/back.svg"
  4250. }
  4251. },
  4252. foot: {
  4253. height: math.unit(1.1, "feet"),
  4254. name: "Foot",
  4255. image: {
  4256. source: "./media/characters/ona/foot.svg"
  4257. }
  4258. }
  4259. },
  4260. [
  4261. {
  4262. name: "Megamacro",
  4263. height: math.unit(70, "km"),
  4264. default: true
  4265. },
  4266. {
  4267. name: "Gigamacro",
  4268. height: math.unit(681818, "miles")
  4269. },
  4270. {
  4271. name: "Examacro",
  4272. height: math.unit(3800000, "lightyears")
  4273. },
  4274. ]
  4275. ))
  4276. characterMakers.push(() => makeCharacter(
  4277. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4278. {
  4279. front: {
  4280. height: math.unit(12, "feet"),
  4281. weight: math.unit(3000, "lb"),
  4282. name: "Front",
  4283. image: {
  4284. source: "./media/characters/mech/front.svg",
  4285. extra: 2900 / 2770,
  4286. bottom: 110 / 3010
  4287. }
  4288. },
  4289. back: {
  4290. height: math.unit(12, "feet"),
  4291. weight: math.unit(3000, "lb"),
  4292. name: "Back",
  4293. image: {
  4294. source: "./media/characters/mech/back.svg",
  4295. extra: 3011 / 2890,
  4296. bottom: 94 / 3105
  4297. }
  4298. },
  4299. maw: {
  4300. height: math.unit(3.07, "feet"),
  4301. name: "Maw",
  4302. image: {
  4303. source: "./media/characters/mech/maw.svg"
  4304. }
  4305. },
  4306. head: {
  4307. height: math.unit(2.82, "feet"),
  4308. name: "Head",
  4309. image: {
  4310. source: "./media/characters/mech/head.svg"
  4311. }
  4312. },
  4313. dick: {
  4314. height: math.unit(1.43, "feet"),
  4315. name: "Dick",
  4316. image: {
  4317. source: "./media/characters/mech/dick.svg"
  4318. }
  4319. },
  4320. },
  4321. [
  4322. {
  4323. name: "Normal",
  4324. height: math.unit(12, "feet")
  4325. },
  4326. {
  4327. name: "Macro",
  4328. height: math.unit(300, "feet"),
  4329. default: true
  4330. },
  4331. {
  4332. name: "Macro+",
  4333. height: math.unit(1500, "feet")
  4334. },
  4335. ]
  4336. ))
  4337. characterMakers.push(() => makeCharacter(
  4338. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4339. {
  4340. front: {
  4341. height: math.unit(1.3, "meter"),
  4342. weight: math.unit(30, "kg"),
  4343. name: "Front",
  4344. image: {
  4345. source: "./media/characters/gregory/front.svg",
  4346. }
  4347. }
  4348. },
  4349. [
  4350. {
  4351. name: "Normal",
  4352. height: math.unit(1.3, "meter"),
  4353. default: true
  4354. },
  4355. {
  4356. name: "Macro",
  4357. height: math.unit(20, "meter")
  4358. }
  4359. ]
  4360. ))
  4361. characterMakers.push(() => makeCharacter(
  4362. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4363. {
  4364. front: {
  4365. height: math.unit(2.8, "meter"),
  4366. weight: math.unit(200, "kg"),
  4367. name: "Front",
  4368. image: {
  4369. source: "./media/characters/elory/front.svg",
  4370. }
  4371. }
  4372. },
  4373. [
  4374. {
  4375. name: "Normal",
  4376. height: math.unit(2.8, "meter"),
  4377. default: true
  4378. },
  4379. {
  4380. name: "Macro",
  4381. height: math.unit(38, "meter")
  4382. }
  4383. ]
  4384. ))
  4385. characterMakers.push(() => makeCharacter(
  4386. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4387. {
  4388. front: {
  4389. height: math.unit(470, "feet"),
  4390. weight: math.unit(924, "tons"),
  4391. name: "Front",
  4392. image: {
  4393. source: "./media/characters/angelpatamon/front.svg",
  4394. }
  4395. }
  4396. },
  4397. [
  4398. {
  4399. name: "Normal",
  4400. height: math.unit(470, "feet"),
  4401. default: true
  4402. },
  4403. {
  4404. name: "Deity Size I",
  4405. height: math.unit(28651.2, "km")
  4406. },
  4407. {
  4408. name: "Deity Size II",
  4409. height: math.unit(171907.2, "km")
  4410. }
  4411. ]
  4412. ))
  4413. characterMakers.push(() => makeCharacter(
  4414. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4415. {
  4416. side: {
  4417. height: math.unit(7.2, "meter"),
  4418. weight: math.unit(8.2, "tons"),
  4419. name: "Side",
  4420. image: {
  4421. source: "./media/characters/cryae/side.svg",
  4422. extra: 3500 / 1500
  4423. }
  4424. }
  4425. },
  4426. [
  4427. {
  4428. name: "Normal",
  4429. height: math.unit(7.2, "meter"),
  4430. default: true
  4431. }
  4432. ]
  4433. ))
  4434. characterMakers.push(() => makeCharacter(
  4435. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4436. {
  4437. front: {
  4438. height: math.unit(6, "feet"),
  4439. weight: math.unit(175, "lb"),
  4440. name: "Front",
  4441. image: {
  4442. source: "./media/characters/xera/front.svg",
  4443. extra: 2377 / 1972,
  4444. bottom: 75.5 / 2452
  4445. }
  4446. },
  4447. side: {
  4448. height: math.unit(6, "feet"),
  4449. weight: math.unit(175, "lb"),
  4450. name: "Side",
  4451. image: {
  4452. source: "./media/characters/xera/side.svg",
  4453. extra: 2345 / 2019,
  4454. bottom: 39.7 / 2384
  4455. }
  4456. },
  4457. back: {
  4458. height: math.unit(6, "feet"),
  4459. weight: math.unit(175, "lb"),
  4460. name: "Back",
  4461. image: {
  4462. source: "./media/characters/xera/back.svg",
  4463. extra: 2095 / 1984,
  4464. bottom: 67 / 2166
  4465. }
  4466. },
  4467. },
  4468. [
  4469. {
  4470. name: "Small",
  4471. height: math.unit(10, "feet")
  4472. },
  4473. {
  4474. name: "Macro",
  4475. height: math.unit(500, "meters"),
  4476. default: true
  4477. },
  4478. {
  4479. name: "Macro+",
  4480. height: math.unit(10, "km")
  4481. },
  4482. {
  4483. name: "Gigamacro",
  4484. height: math.unit(25000, "km")
  4485. },
  4486. {
  4487. name: "Teramacro",
  4488. height: math.unit(3e6, "km")
  4489. }
  4490. ]
  4491. ))
  4492. characterMakers.push(() => makeCharacter(
  4493. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4494. {
  4495. front: {
  4496. height: math.unit(6, "feet"),
  4497. weight: math.unit(175, "lb"),
  4498. name: "Front",
  4499. image: {
  4500. source: "./media/characters/nebula/front.svg",
  4501. extra: 2566 / 2362,
  4502. bottom: 81 / 2644
  4503. }
  4504. }
  4505. },
  4506. [
  4507. {
  4508. name: "Small",
  4509. height: math.unit(4.5, "meters")
  4510. },
  4511. {
  4512. name: "Macro",
  4513. height: math.unit(1500, "meters"),
  4514. default: true
  4515. },
  4516. {
  4517. name: "Megamacro",
  4518. height: math.unit(150, "km")
  4519. },
  4520. {
  4521. name: "Gigamacro",
  4522. height: math.unit(27000, "km")
  4523. }
  4524. ]
  4525. ))
  4526. characterMakers.push(() => makeCharacter(
  4527. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4528. {
  4529. front: {
  4530. height: math.unit(6, "feet"),
  4531. weight: math.unit(225, "lb"),
  4532. name: "Front",
  4533. image: {
  4534. source: "./media/characters/abysgar/front.svg",
  4535. extra: 1739/1614,
  4536. bottom: 71/1810
  4537. }
  4538. },
  4539. frontNsfw: {
  4540. height: math.unit(6, "feet"),
  4541. weight: math.unit(225, "lb"),
  4542. name: "Front (NSFW)",
  4543. image: {
  4544. source: "./media/characters/abysgar/front-nsfw.svg",
  4545. extra: 1739/1614,
  4546. bottom: 71/1810
  4547. }
  4548. },
  4549. back: {
  4550. height: math.unit(4.6, "feet"),
  4551. weight: math.unit(225, "lb"),
  4552. name: "Back",
  4553. image: {
  4554. source: "./media/characters/abysgar/back.svg",
  4555. extra: 1384/1327,
  4556. bottom: 0/1384
  4557. }
  4558. },
  4559. head: {
  4560. height: math.unit(1.25, "feet"),
  4561. name: "Head",
  4562. image: {
  4563. source: "./media/characters/abysgar/head.svg",
  4564. extra: 669/569,
  4565. bottom: 0/669
  4566. }
  4567. },
  4568. },
  4569. [
  4570. {
  4571. name: "Small",
  4572. height: math.unit(4.5, "meters")
  4573. },
  4574. {
  4575. name: "Macro",
  4576. height: math.unit(1250, "meters"),
  4577. default: true
  4578. },
  4579. {
  4580. name: "Megamacro",
  4581. height: math.unit(125, "km")
  4582. },
  4583. {
  4584. name: "Gigamacro",
  4585. height: math.unit(26000, "km")
  4586. }
  4587. ]
  4588. ))
  4589. characterMakers.push(() => makeCharacter(
  4590. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4591. {
  4592. front: {
  4593. height: math.unit(6, "feet"),
  4594. weight: math.unit(180, "lb"),
  4595. name: "Front",
  4596. image: {
  4597. source: "./media/characters/yakuz/front.svg"
  4598. }
  4599. }
  4600. },
  4601. [
  4602. {
  4603. name: "Small",
  4604. height: math.unit(5, "meters")
  4605. },
  4606. {
  4607. name: "Macro",
  4608. height: math.unit(1500, "meters"),
  4609. default: true
  4610. },
  4611. {
  4612. name: "Megamacro",
  4613. height: math.unit(200, "km")
  4614. },
  4615. {
  4616. name: "Gigamacro",
  4617. height: math.unit(100000, "km")
  4618. }
  4619. ]
  4620. ))
  4621. characterMakers.push(() => makeCharacter(
  4622. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4623. {
  4624. front: {
  4625. height: math.unit(6, "feet"),
  4626. weight: math.unit(175, "lb"),
  4627. name: "Front",
  4628. image: {
  4629. source: "./media/characters/mirova/front.svg",
  4630. extra: 3334 / 3071,
  4631. bottom: 42 / 3375.6
  4632. }
  4633. }
  4634. },
  4635. [
  4636. {
  4637. name: "Small",
  4638. height: math.unit(5, "meters")
  4639. },
  4640. {
  4641. name: "Macro",
  4642. height: math.unit(900, "meters"),
  4643. default: true
  4644. },
  4645. {
  4646. name: "Megamacro",
  4647. height: math.unit(135, "km")
  4648. },
  4649. {
  4650. name: "Gigamacro",
  4651. height: math.unit(20000, "km")
  4652. }
  4653. ]
  4654. ))
  4655. characterMakers.push(() => makeCharacter(
  4656. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4657. {
  4658. side: {
  4659. height: math.unit(28.35, "feet"),
  4660. weight: math.unit(99.75, "tons"),
  4661. name: "Side",
  4662. image: {
  4663. source: "./media/characters/asana-mech/side.svg",
  4664. extra: 923 / 699,
  4665. bottom: 50 / 975
  4666. }
  4667. },
  4668. chaingun: {
  4669. height: math.unit(7, "feet"),
  4670. weight: math.unit(2400, "lb"),
  4671. name: "Chaingun",
  4672. image: {
  4673. source: "./media/characters/asana-mech/chaingun.svg"
  4674. }
  4675. },
  4676. laser: {
  4677. height: math.unit(7.12, "feet"),
  4678. weight: math.unit(2000, "lb"),
  4679. name: "Laser",
  4680. image: {
  4681. source: "./media/characters/asana-mech/laser.svg"
  4682. }
  4683. },
  4684. },
  4685. [
  4686. {
  4687. name: "Normal",
  4688. height: math.unit(28.35, "feet"),
  4689. default: true
  4690. },
  4691. {
  4692. name: "Macro",
  4693. height: math.unit(2500, "feet")
  4694. },
  4695. {
  4696. name: "Megamacro",
  4697. height: math.unit(25, "miles")
  4698. },
  4699. {
  4700. name: "Examacro",
  4701. height: math.unit(6e8, "lightyears")
  4702. },
  4703. ]
  4704. ))
  4705. characterMakers.push(() => makeCharacter(
  4706. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4707. {
  4708. front: {
  4709. height: math.unit(5, "meters"),
  4710. weight: math.unit(1000, "kg"),
  4711. name: "Front",
  4712. image: {
  4713. source: "./media/characters/asche/front.svg",
  4714. extra: 1258 / 1190,
  4715. bottom: 47 / 1305
  4716. }
  4717. },
  4718. frontUnderwear: {
  4719. height: math.unit(5, "meters"),
  4720. weight: math.unit(1000, "kg"),
  4721. name: "Front (Underwear)",
  4722. image: {
  4723. source: "./media/characters/asche/front-underwear.svg",
  4724. extra: 1258 / 1190,
  4725. bottom: 47 / 1305
  4726. }
  4727. },
  4728. frontDressed: {
  4729. height: math.unit(5, "meters"),
  4730. weight: math.unit(1000, "kg"),
  4731. name: "Front (Dressed)",
  4732. image: {
  4733. source: "./media/characters/asche/front-dressed.svg",
  4734. extra: 1258 / 1190,
  4735. bottom: 47 / 1305
  4736. }
  4737. },
  4738. frontArmor: {
  4739. height: math.unit(5, "meters"),
  4740. weight: math.unit(1000, "kg"),
  4741. name: "Front (Armored)",
  4742. image: {
  4743. source: "./media/characters/asche/front-armored.svg",
  4744. extra: 1374 / 1308,
  4745. bottom: 23 / 1397
  4746. }
  4747. },
  4748. mp724: {
  4749. height: math.unit(0.96, "meters"),
  4750. weight: math.unit(38, "kg"),
  4751. name: "H&K MP724",
  4752. image: {
  4753. source: "./media/characters/asche/h&k-mp724.svg"
  4754. }
  4755. },
  4756. side: {
  4757. height: math.unit(5, "meters"),
  4758. weight: math.unit(1000, "kg"),
  4759. name: "Side",
  4760. image: {
  4761. source: "./media/characters/asche/side.svg",
  4762. extra: 1717 / 1609,
  4763. bottom: 0.005
  4764. }
  4765. },
  4766. back: {
  4767. height: math.unit(5, "meters"),
  4768. weight: math.unit(1000, "kg"),
  4769. name: "Back",
  4770. image: {
  4771. source: "./media/characters/asche/back.svg",
  4772. extra: 1570 / 1501
  4773. }
  4774. },
  4775. },
  4776. [
  4777. {
  4778. name: "DEFCON 5",
  4779. height: math.unit(5, "meters")
  4780. },
  4781. {
  4782. name: "DEFCON 4",
  4783. height: math.unit(500, "meters"),
  4784. default: true
  4785. },
  4786. {
  4787. name: "DEFCON 3",
  4788. height: math.unit(5, "km")
  4789. },
  4790. {
  4791. name: "DEFCON 2",
  4792. height: math.unit(500, "km")
  4793. },
  4794. {
  4795. name: "DEFCON 1",
  4796. height: math.unit(500000, "km")
  4797. },
  4798. {
  4799. name: "DEFCON 0",
  4800. height: math.unit(3, "gigaparsecs")
  4801. },
  4802. ]
  4803. ))
  4804. characterMakers.push(() => makeCharacter(
  4805. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4806. {
  4807. front: {
  4808. height: math.unit(2, "meters"),
  4809. weight: math.unit(76, "kg"),
  4810. name: "Front",
  4811. image: {
  4812. source: "./media/characters/gale/front.svg"
  4813. }
  4814. },
  4815. frontAlt1: {
  4816. height: math.unit(2, "meters"),
  4817. weight: math.unit(76, "kg"),
  4818. name: "Front (Alt 1)",
  4819. image: {
  4820. source: "./media/characters/gale/front-alt-1.svg"
  4821. }
  4822. },
  4823. frontAlt2: {
  4824. height: math.unit(2, "meters"),
  4825. weight: math.unit(76, "kg"),
  4826. name: "Front (Alt 2)",
  4827. image: {
  4828. source: "./media/characters/gale/front-alt-2.svg"
  4829. }
  4830. },
  4831. },
  4832. [
  4833. {
  4834. name: "Normal",
  4835. height: math.unit(7, "feet")
  4836. },
  4837. {
  4838. name: "Macro",
  4839. height: math.unit(150, "feet"),
  4840. default: true
  4841. },
  4842. {
  4843. name: "Macro+",
  4844. height: math.unit(300, "feet")
  4845. },
  4846. ]
  4847. ))
  4848. characterMakers.push(() => makeCharacter(
  4849. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4850. {
  4851. front: {
  4852. height: math.unit(5 + 10/12, "feet"),
  4853. weight: math.unit(67, "kg"),
  4854. name: "Front",
  4855. image: {
  4856. source: "./media/characters/draylen/front.svg",
  4857. extra: 832/777,
  4858. bottom: 85/917
  4859. }
  4860. }
  4861. },
  4862. [
  4863. {
  4864. name: "Normal",
  4865. height: math.unit(5 + 10/12, "feet")
  4866. },
  4867. {
  4868. name: "Macro",
  4869. height: math.unit(150, "feet"),
  4870. default: true
  4871. }
  4872. ]
  4873. ))
  4874. characterMakers.push(() => makeCharacter(
  4875. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4876. {
  4877. front: {
  4878. height: math.unit(7 + 9 / 12, "feet"),
  4879. weight: math.unit(379, "lbs"),
  4880. name: "Front",
  4881. image: {
  4882. source: "./media/characters/chez/front.svg"
  4883. }
  4884. },
  4885. side: {
  4886. height: math.unit(7 + 9 / 12, "feet"),
  4887. weight: math.unit(379, "lbs"),
  4888. name: "Side",
  4889. image: {
  4890. source: "./media/characters/chez/side.svg"
  4891. }
  4892. }
  4893. },
  4894. [
  4895. {
  4896. name: "Normal",
  4897. height: math.unit(7 + 9 / 12, "feet"),
  4898. default: true
  4899. },
  4900. {
  4901. name: "God King",
  4902. height: math.unit(9750000, "meters")
  4903. }
  4904. ]
  4905. ))
  4906. characterMakers.push(() => makeCharacter(
  4907. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4908. {
  4909. front: {
  4910. height: math.unit(6, "feet"),
  4911. weight: math.unit(275, "lbs"),
  4912. name: "Front",
  4913. image: {
  4914. source: "./media/characters/kaylum/front.svg",
  4915. bottom: 0.01,
  4916. extra: 1166 / 1031
  4917. }
  4918. },
  4919. frontWingless: {
  4920. height: math.unit(6, "feet"),
  4921. weight: math.unit(275, "lbs"),
  4922. name: "Front (Wingless)",
  4923. image: {
  4924. source: "./media/characters/kaylum/front-wingless.svg",
  4925. bottom: 0.01,
  4926. extra: 1117 / 1031
  4927. }
  4928. }
  4929. },
  4930. [
  4931. {
  4932. name: "Normal",
  4933. height: math.unit(3.05, "meters")
  4934. },
  4935. {
  4936. name: "Master",
  4937. height: math.unit(5.5, "meters")
  4938. },
  4939. {
  4940. name: "Rampage",
  4941. height: math.unit(19, "meters")
  4942. },
  4943. {
  4944. name: "Macro Lite",
  4945. height: math.unit(37, "meters")
  4946. },
  4947. {
  4948. name: "Hyper Predator",
  4949. height: math.unit(61, "meters")
  4950. },
  4951. {
  4952. name: "Macro",
  4953. height: math.unit(138, "meters"),
  4954. default: true
  4955. }
  4956. ]
  4957. ))
  4958. characterMakers.push(() => makeCharacter(
  4959. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4960. {
  4961. front: {
  4962. height: math.unit(5 + 5 / 12, "feet"),
  4963. weight: math.unit(120, "lbs"),
  4964. name: "Front",
  4965. image: {
  4966. source: "./media/characters/geta/front.svg",
  4967. extra: 1003/933,
  4968. bottom: 21/1024
  4969. }
  4970. },
  4971. paw: {
  4972. height: math.unit(0.35, "feet"),
  4973. name: "Paw",
  4974. image: {
  4975. source: "./media/characters/geta/paw.svg"
  4976. }
  4977. },
  4978. },
  4979. [
  4980. {
  4981. name: "Micro",
  4982. height: math.unit(3, "inches"),
  4983. default: true
  4984. },
  4985. {
  4986. name: "Normal",
  4987. height: math.unit(5 + 5 / 12, "feet")
  4988. }
  4989. ]
  4990. ))
  4991. characterMakers.push(() => makeCharacter(
  4992. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4993. {
  4994. front: {
  4995. height: math.unit(6, "feet"),
  4996. weight: math.unit(300, "lbs"),
  4997. name: "Front",
  4998. image: {
  4999. source: "./media/characters/tyrnn/front.svg"
  5000. }
  5001. }
  5002. },
  5003. [
  5004. {
  5005. name: "Main Height",
  5006. height: math.unit(355, "feet"),
  5007. default: true
  5008. },
  5009. {
  5010. name: "Fave. Height",
  5011. height: math.unit(2400, "feet")
  5012. }
  5013. ]
  5014. ))
  5015. characterMakers.push(() => makeCharacter(
  5016. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5017. {
  5018. front: {
  5019. height: math.unit(6, "feet"),
  5020. weight: math.unit(300, "lbs"),
  5021. name: "Front",
  5022. image: {
  5023. source: "./media/characters/appledectomy/front.svg"
  5024. }
  5025. }
  5026. },
  5027. [
  5028. {
  5029. name: "Macro",
  5030. height: math.unit(2500, "feet")
  5031. },
  5032. {
  5033. name: "Megamacro",
  5034. height: math.unit(50, "miles"),
  5035. default: true
  5036. },
  5037. {
  5038. name: "Gigamacro",
  5039. height: math.unit(5000, "miles")
  5040. },
  5041. {
  5042. name: "Teramacro",
  5043. height: math.unit(250000, "miles")
  5044. },
  5045. ]
  5046. ))
  5047. characterMakers.push(() => makeCharacter(
  5048. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5049. {
  5050. front: {
  5051. height: math.unit(6, "feet"),
  5052. weight: math.unit(200, "lbs"),
  5053. name: "Front",
  5054. image: {
  5055. source: "./media/characters/vulpes/front.svg",
  5056. extra: 573 / 543,
  5057. bottom: 0.033
  5058. }
  5059. },
  5060. side: {
  5061. height: math.unit(6, "feet"),
  5062. weight: math.unit(200, "lbs"),
  5063. name: "Side",
  5064. image: {
  5065. source: "./media/characters/vulpes/side.svg",
  5066. extra: 577 / 549,
  5067. bottom: 11 / 588
  5068. }
  5069. },
  5070. back: {
  5071. height: math.unit(6, "feet"),
  5072. weight: math.unit(200, "lbs"),
  5073. name: "Back",
  5074. image: {
  5075. source: "./media/characters/vulpes/back.svg",
  5076. extra: 573 / 549,
  5077. bottom: 20 / 593
  5078. }
  5079. },
  5080. feet: {
  5081. height: math.unit(1.276, "feet"),
  5082. name: "Feet",
  5083. image: {
  5084. source: "./media/characters/vulpes/feet.svg"
  5085. }
  5086. },
  5087. maw: {
  5088. height: math.unit(1.18, "feet"),
  5089. name: "Maw",
  5090. image: {
  5091. source: "./media/characters/vulpes/maw.svg"
  5092. }
  5093. },
  5094. },
  5095. [
  5096. {
  5097. name: "Micro",
  5098. height: math.unit(2, "inches")
  5099. },
  5100. {
  5101. name: "Normal",
  5102. height: math.unit(6.3, "feet")
  5103. },
  5104. {
  5105. name: "Macro",
  5106. height: math.unit(850, "feet")
  5107. },
  5108. {
  5109. name: "Megamacro",
  5110. height: math.unit(7500, "feet"),
  5111. default: true
  5112. },
  5113. {
  5114. name: "Gigamacro",
  5115. height: math.unit(570000, "miles")
  5116. }
  5117. ]
  5118. ))
  5119. characterMakers.push(() => makeCharacter(
  5120. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5121. {
  5122. front: {
  5123. height: math.unit(6, "feet"),
  5124. weight: math.unit(210, "lbs"),
  5125. name: "Front",
  5126. image: {
  5127. source: "./media/characters/rain-fallen/front.svg"
  5128. }
  5129. },
  5130. side: {
  5131. height: math.unit(6, "feet"),
  5132. weight: math.unit(210, "lbs"),
  5133. name: "Side",
  5134. image: {
  5135. source: "./media/characters/rain-fallen/side.svg"
  5136. }
  5137. },
  5138. back: {
  5139. height: math.unit(6, "feet"),
  5140. weight: math.unit(210, "lbs"),
  5141. name: "Back",
  5142. image: {
  5143. source: "./media/characters/rain-fallen/back.svg"
  5144. }
  5145. },
  5146. feral: {
  5147. height: math.unit(9, "feet"),
  5148. weight: math.unit(700, "lbs"),
  5149. name: "Feral",
  5150. image: {
  5151. source: "./media/characters/rain-fallen/feral.svg"
  5152. }
  5153. },
  5154. },
  5155. [
  5156. {
  5157. name: "Meddling with Mortals",
  5158. height: math.unit(8 + 8/12, "feet")
  5159. },
  5160. {
  5161. name: "Normal",
  5162. height: math.unit(5, "meter")
  5163. },
  5164. {
  5165. name: "Macro",
  5166. height: math.unit(150, "meter"),
  5167. default: true
  5168. },
  5169. {
  5170. name: "Megamacro",
  5171. height: math.unit(278e6, "meter")
  5172. },
  5173. {
  5174. name: "Gigamacro",
  5175. height: math.unit(2e9, "meter")
  5176. },
  5177. {
  5178. name: "Teramacro",
  5179. height: math.unit(8e12, "meter")
  5180. },
  5181. {
  5182. name: "Devourer",
  5183. height: math.unit(14, "zettameters")
  5184. },
  5185. {
  5186. name: "Scarlet King",
  5187. height: math.unit(18, "yottameters")
  5188. },
  5189. {
  5190. name: "Void",
  5191. height: math.unit(1e88, "yottameters")
  5192. }
  5193. ]
  5194. ))
  5195. characterMakers.push(() => makeCharacter(
  5196. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5197. {
  5198. standing: {
  5199. height: math.unit(6, "feet"),
  5200. weight: math.unit(180, "lbs"),
  5201. name: "Standing",
  5202. image: {
  5203. source: "./media/characters/zaakira/standing.svg",
  5204. extra: 1599/1504,
  5205. bottom: 39/1638
  5206. }
  5207. },
  5208. laying: {
  5209. height: math.unit(3.3, "feet"),
  5210. weight: math.unit(180, "lbs"),
  5211. name: "Laying",
  5212. image: {
  5213. source: "./media/characters/zaakira/laying.svg"
  5214. }
  5215. },
  5216. },
  5217. [
  5218. {
  5219. name: "Normal",
  5220. height: math.unit(12, "feet")
  5221. },
  5222. {
  5223. name: "Macro",
  5224. height: math.unit(279, "feet"),
  5225. default: true
  5226. }
  5227. ]
  5228. ))
  5229. characterMakers.push(() => makeCharacter(
  5230. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5231. {
  5232. femSfw: {
  5233. height: math.unit(8, "feet"),
  5234. weight: math.unit(350, "lb"),
  5235. name: "Fem",
  5236. image: {
  5237. source: "./media/characters/sigvald/fem-sfw.svg",
  5238. extra: 182 / 164,
  5239. bottom: 8.7 / 190.5
  5240. }
  5241. },
  5242. femNsfw: {
  5243. height: math.unit(8, "feet"),
  5244. weight: math.unit(350, "lb"),
  5245. name: "Fem (NSFW)",
  5246. image: {
  5247. source: "./media/characters/sigvald/fem-nsfw.svg",
  5248. extra: 182 / 164,
  5249. bottom: 8.7 / 190.5
  5250. }
  5251. },
  5252. maleNsfw: {
  5253. height: math.unit(8, "feet"),
  5254. weight: math.unit(350, "lb"),
  5255. name: "Male (NSFW)",
  5256. image: {
  5257. source: "./media/characters/sigvald/male-nsfw.svg",
  5258. extra: 182 / 164,
  5259. bottom: 8.7 / 190.5
  5260. }
  5261. },
  5262. hermNsfw: {
  5263. height: math.unit(8, "feet"),
  5264. weight: math.unit(350, "lb"),
  5265. name: "Herm (NSFW)",
  5266. image: {
  5267. source: "./media/characters/sigvald/herm-nsfw.svg",
  5268. extra: 182 / 164,
  5269. bottom: 8.7 / 190.5
  5270. }
  5271. },
  5272. dick: {
  5273. height: math.unit(2.36, "feet"),
  5274. name: "Dick",
  5275. image: {
  5276. source: "./media/characters/sigvald/dick.svg"
  5277. }
  5278. },
  5279. eye: {
  5280. height: math.unit(0.31, "feet"),
  5281. name: "Eye",
  5282. image: {
  5283. source: "./media/characters/sigvald/eye.svg"
  5284. }
  5285. },
  5286. mouth: {
  5287. height: math.unit(0.92, "feet"),
  5288. name: "Mouth",
  5289. image: {
  5290. source: "./media/characters/sigvald/mouth.svg"
  5291. }
  5292. },
  5293. paws: {
  5294. height: math.unit(2.2, "feet"),
  5295. name: "Paws",
  5296. image: {
  5297. source: "./media/characters/sigvald/paws.svg"
  5298. }
  5299. }
  5300. },
  5301. [
  5302. {
  5303. name: "Normal",
  5304. height: math.unit(8, "feet")
  5305. },
  5306. {
  5307. name: "Large",
  5308. height: math.unit(12, "feet")
  5309. },
  5310. {
  5311. name: "Larger",
  5312. height: math.unit(20, "feet")
  5313. },
  5314. {
  5315. name: "Macro",
  5316. height: math.unit(150, "feet")
  5317. },
  5318. {
  5319. name: "Macro+",
  5320. height: math.unit(200, "feet"),
  5321. default: true
  5322. },
  5323. ]
  5324. ))
  5325. characterMakers.push(() => makeCharacter(
  5326. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5327. {
  5328. side: {
  5329. height: math.unit(12, "feet"),
  5330. weight: math.unit(2000, "kg"),
  5331. name: "Side",
  5332. image: {
  5333. source: "./media/characters/scott/side.svg",
  5334. extra: 754 / 724,
  5335. bottom: 0.069
  5336. }
  5337. },
  5338. upright: {
  5339. height: math.unit(12, "feet"),
  5340. weight: math.unit(2000, "kg"),
  5341. name: "Upright",
  5342. image: {
  5343. source: "./media/characters/scott/upright.svg",
  5344. extra: 3881 / 3722,
  5345. bottom: 0.05
  5346. }
  5347. },
  5348. },
  5349. [
  5350. {
  5351. name: "Normal",
  5352. height: math.unit(12, "feet"),
  5353. default: true
  5354. },
  5355. ]
  5356. ))
  5357. characterMakers.push(() => makeCharacter(
  5358. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5359. {
  5360. side: {
  5361. height: math.unit(8, "meters"),
  5362. weight: math.unit(84755, "lbs"),
  5363. name: "Side",
  5364. image: {
  5365. source: "./media/characters/tobias/side.svg",
  5366. extra: 1474 / 1096,
  5367. bottom: 38.9 / 1513.1235
  5368. }
  5369. },
  5370. },
  5371. [
  5372. {
  5373. name: "Normal",
  5374. height: math.unit(8, "meters"),
  5375. default: true
  5376. },
  5377. ]
  5378. ))
  5379. characterMakers.push(() => makeCharacter(
  5380. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5381. {
  5382. front: {
  5383. height: math.unit(5.5, "feet"),
  5384. weight: math.unit(400, "lbs"),
  5385. name: "Front",
  5386. image: {
  5387. source: "./media/characters/kieran/front.svg",
  5388. extra: 2694 / 2364,
  5389. bottom: 217 / 2908
  5390. }
  5391. },
  5392. side: {
  5393. height: math.unit(5.5, "feet"),
  5394. weight: math.unit(400, "lbs"),
  5395. name: "Side",
  5396. image: {
  5397. source: "./media/characters/kieran/side.svg",
  5398. extra: 875 / 777,
  5399. bottom: 84.6 / 959
  5400. }
  5401. },
  5402. },
  5403. [
  5404. {
  5405. name: "Normal",
  5406. height: math.unit(5.5, "feet"),
  5407. default: true
  5408. },
  5409. ]
  5410. ))
  5411. characterMakers.push(() => makeCharacter(
  5412. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5413. {
  5414. side: {
  5415. height: math.unit(2, "meters"),
  5416. weight: math.unit(70, "kg"),
  5417. name: "Side",
  5418. image: {
  5419. source: "./media/characters/sanya/side.svg",
  5420. bottom: 0.02,
  5421. extra: 1.02
  5422. }
  5423. },
  5424. },
  5425. [
  5426. {
  5427. name: "Small",
  5428. height: math.unit(2, "meters")
  5429. },
  5430. {
  5431. name: "Normal",
  5432. height: math.unit(3, "meters")
  5433. },
  5434. {
  5435. name: "Macro",
  5436. height: math.unit(16, "meters"),
  5437. default: true
  5438. },
  5439. ]
  5440. ))
  5441. characterMakers.push(() => makeCharacter(
  5442. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5443. {
  5444. front: {
  5445. height: math.unit(2, "meters"),
  5446. weight: math.unit(120, "kg"),
  5447. name: "Front",
  5448. image: {
  5449. source: "./media/characters/miranda/front.svg",
  5450. extra: 195 / 185,
  5451. bottom: 10.9 / 206.5
  5452. }
  5453. },
  5454. back: {
  5455. height: math.unit(2, "meters"),
  5456. weight: math.unit(120, "kg"),
  5457. name: "Back",
  5458. image: {
  5459. source: "./media/characters/miranda/back.svg",
  5460. extra: 201 / 193,
  5461. bottom: 2.3 / 203.7
  5462. }
  5463. },
  5464. },
  5465. [
  5466. {
  5467. name: "Normal",
  5468. height: math.unit(10, "feet"),
  5469. default: true
  5470. }
  5471. ]
  5472. ))
  5473. characterMakers.push(() => makeCharacter(
  5474. { name: "James", species: ["deer"], tags: ["anthro"] },
  5475. {
  5476. side: {
  5477. height: math.unit(2, "meters"),
  5478. weight: math.unit(100, "kg"),
  5479. name: "Front",
  5480. image: {
  5481. source: "./media/characters/james/front.svg",
  5482. extra: 10 / 8.5
  5483. }
  5484. },
  5485. },
  5486. [
  5487. {
  5488. name: "Normal",
  5489. height: math.unit(8.5, "feet"),
  5490. default: true
  5491. }
  5492. ]
  5493. ))
  5494. characterMakers.push(() => makeCharacter(
  5495. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5496. {
  5497. side: {
  5498. height: math.unit(9.5, "feet"),
  5499. weight: math.unit(2500, "lbs"),
  5500. name: "Side",
  5501. image: {
  5502. source: "./media/characters/heather/side.svg"
  5503. }
  5504. },
  5505. },
  5506. [
  5507. {
  5508. name: "Normal",
  5509. height: math.unit(9.5, "feet"),
  5510. default: true
  5511. }
  5512. ]
  5513. ))
  5514. characterMakers.push(() => makeCharacter(
  5515. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5516. {
  5517. side: {
  5518. height: math.unit(6.5, "feet"),
  5519. weight: math.unit(400, "lbs"),
  5520. name: "Side",
  5521. image: {
  5522. source: "./media/characters/lukas/side.svg",
  5523. extra: 7.25 / 6.5
  5524. }
  5525. },
  5526. },
  5527. [
  5528. {
  5529. name: "Normal",
  5530. height: math.unit(6.5, "feet"),
  5531. default: true
  5532. }
  5533. ]
  5534. ))
  5535. characterMakers.push(() => makeCharacter(
  5536. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5537. {
  5538. side: {
  5539. height: math.unit(5, "feet"),
  5540. weight: math.unit(3000, "lbs"),
  5541. name: "Side",
  5542. image: {
  5543. source: "./media/characters/louise/side.svg"
  5544. }
  5545. },
  5546. },
  5547. [
  5548. {
  5549. name: "Normal",
  5550. height: math.unit(5, "feet"),
  5551. default: true
  5552. }
  5553. ]
  5554. ))
  5555. characterMakers.push(() => makeCharacter(
  5556. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5557. {
  5558. side: {
  5559. height: math.unit(6, "feet"),
  5560. weight: math.unit(150, "lbs"),
  5561. name: "Side",
  5562. image: {
  5563. source: "./media/characters/ramona/side.svg",
  5564. extra: 871/854,
  5565. bottom: 41/912
  5566. }
  5567. },
  5568. },
  5569. [
  5570. {
  5571. name: "Normal",
  5572. height: math.unit(5.3, "meters"),
  5573. default: true
  5574. },
  5575. {
  5576. name: "Macro",
  5577. height: math.unit(20, "stories")
  5578. },
  5579. {
  5580. name: "Macro+",
  5581. height: math.unit(50, "stories")
  5582. },
  5583. ]
  5584. ))
  5585. characterMakers.push(() => makeCharacter(
  5586. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5587. {
  5588. standing: {
  5589. height: math.unit(5.75, "feet"),
  5590. weight: math.unit(160, "lbs"),
  5591. name: "Standing",
  5592. image: {
  5593. source: "./media/characters/deerpuff/standing.svg",
  5594. extra: 682 / 624
  5595. }
  5596. },
  5597. sitting: {
  5598. height: math.unit(5.75 / 1.79, "feet"),
  5599. weight: math.unit(160, "lbs"),
  5600. name: "Sitting",
  5601. image: {
  5602. source: "./media/characters/deerpuff/sitting.svg",
  5603. bottom: 44 / 400,
  5604. extra: 1
  5605. }
  5606. },
  5607. taurLaying: {
  5608. height: math.unit(6, "feet"),
  5609. weight: math.unit(400, "lbs"),
  5610. name: "Taur (Laying)",
  5611. image: {
  5612. source: "./media/characters/deerpuff/taur-laying.svg"
  5613. }
  5614. },
  5615. },
  5616. [
  5617. {
  5618. name: "Puffball",
  5619. height: math.unit(6, "inches")
  5620. },
  5621. {
  5622. name: "Normalpuff",
  5623. height: math.unit(5.75, "feet")
  5624. },
  5625. {
  5626. name: "Macropuff",
  5627. height: math.unit(1500, "feet"),
  5628. default: true
  5629. },
  5630. {
  5631. name: "Megapuff",
  5632. height: math.unit(500, "miles")
  5633. },
  5634. {
  5635. name: "Gigapuff",
  5636. height: math.unit(250000, "miles")
  5637. },
  5638. {
  5639. name: "Omegapuff",
  5640. height: math.unit(1000, "lightyears")
  5641. },
  5642. ]
  5643. ))
  5644. characterMakers.push(() => makeCharacter(
  5645. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5646. {
  5647. stomping: {
  5648. height: math.unit(6, "feet"),
  5649. weight: math.unit(170, "lbs"),
  5650. name: "Stomping",
  5651. image: {
  5652. source: "./media/characters/vivian/stomping.svg"
  5653. }
  5654. },
  5655. sitting: {
  5656. height: math.unit(6 / 1.75, "feet"),
  5657. weight: math.unit(170, "lbs"),
  5658. name: "Sitting",
  5659. image: {
  5660. source: "./media/characters/vivian/sitting.svg",
  5661. bottom: 1 / 6.4,
  5662. extra: 1,
  5663. }
  5664. },
  5665. },
  5666. [
  5667. {
  5668. name: "Normal",
  5669. height: math.unit(7, "feet"),
  5670. default: true
  5671. },
  5672. {
  5673. name: "Macro",
  5674. height: math.unit(10, "stories")
  5675. },
  5676. {
  5677. name: "Macro+",
  5678. height: math.unit(30, "stories")
  5679. },
  5680. {
  5681. name: "Megamacro",
  5682. height: math.unit(10, "miles")
  5683. },
  5684. {
  5685. name: "Megamacro+",
  5686. height: math.unit(2750000, "meters")
  5687. },
  5688. ]
  5689. ))
  5690. characterMakers.push(() => makeCharacter(
  5691. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5692. {
  5693. front: {
  5694. height: math.unit(6, "feet"),
  5695. weight: math.unit(160, "lbs"),
  5696. name: "Front",
  5697. image: {
  5698. source: "./media/characters/prince/front.svg",
  5699. extra: 3400 / 3000
  5700. }
  5701. },
  5702. jumping: {
  5703. height: math.unit(6, "feet"),
  5704. weight: math.unit(160, "lbs"),
  5705. name: "Jumping",
  5706. image: {
  5707. source: "./media/characters/prince/jump.svg",
  5708. extra: 2555 / 2134
  5709. }
  5710. },
  5711. },
  5712. [
  5713. {
  5714. name: "Normal",
  5715. height: math.unit(7.75, "feet"),
  5716. default: true
  5717. },
  5718. {
  5719. name: "Not cute",
  5720. height: math.unit(17, "feet")
  5721. },
  5722. {
  5723. name: "I said NOT",
  5724. height: math.unit(91, "feet")
  5725. },
  5726. {
  5727. name: "Please stop",
  5728. height: math.unit(560, "feet")
  5729. },
  5730. {
  5731. name: "What have you done",
  5732. height: math.unit(2200, "feet")
  5733. },
  5734. {
  5735. name: "Deer God",
  5736. height: math.unit(3.6, "miles")
  5737. },
  5738. ]
  5739. ))
  5740. characterMakers.push(() => makeCharacter(
  5741. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5742. {
  5743. standing: {
  5744. height: math.unit(6, "feet"),
  5745. weight: math.unit(300, "lbs"),
  5746. name: "Standing",
  5747. image: {
  5748. source: "./media/characters/psymon/standing.svg",
  5749. extra: 1888 / 1810,
  5750. bottom: 0.05
  5751. }
  5752. },
  5753. slithering: {
  5754. height: math.unit(6, "feet"),
  5755. weight: math.unit(300, "lbs"),
  5756. name: "Slithering",
  5757. image: {
  5758. source: "./media/characters/psymon/slithering.svg",
  5759. extra: 1330 / 1224
  5760. }
  5761. },
  5762. slitheringAlt: {
  5763. height: math.unit(6, "feet"),
  5764. weight: math.unit(300, "lbs"),
  5765. name: "Slithering (Alt)",
  5766. image: {
  5767. source: "./media/characters/psymon/slithering-alt.svg",
  5768. extra: 1330 / 1224
  5769. }
  5770. },
  5771. },
  5772. [
  5773. {
  5774. name: "Normal",
  5775. height: math.unit(11.25, "feet"),
  5776. default: true
  5777. },
  5778. {
  5779. name: "Large",
  5780. height: math.unit(27, "feet")
  5781. },
  5782. {
  5783. name: "Giant",
  5784. height: math.unit(87, "feet")
  5785. },
  5786. {
  5787. name: "Macro",
  5788. height: math.unit(365, "feet")
  5789. },
  5790. {
  5791. name: "Megamacro",
  5792. height: math.unit(3, "miles")
  5793. },
  5794. {
  5795. name: "World Serpent",
  5796. height: math.unit(8000, "miles")
  5797. },
  5798. ]
  5799. ))
  5800. characterMakers.push(() => makeCharacter(
  5801. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5802. {
  5803. front: {
  5804. height: math.unit(6, "feet"),
  5805. weight: math.unit(180, "lbs"),
  5806. name: "Front",
  5807. image: {
  5808. source: "./media/characters/daimos/front.svg",
  5809. extra: 4160 / 3897,
  5810. bottom: 0.021
  5811. }
  5812. }
  5813. },
  5814. [
  5815. {
  5816. name: "Normal",
  5817. height: math.unit(8, "feet"),
  5818. default: true
  5819. },
  5820. {
  5821. name: "Big Dog",
  5822. height: math.unit(22, "feet")
  5823. },
  5824. {
  5825. name: "Macro",
  5826. height: math.unit(127, "feet")
  5827. },
  5828. {
  5829. name: "Megamacro",
  5830. height: math.unit(3600, "feet")
  5831. },
  5832. ]
  5833. ))
  5834. characterMakers.push(() => makeCharacter(
  5835. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5836. {
  5837. side: {
  5838. height: math.unit(6, "feet"),
  5839. weight: math.unit(180, "lbs"),
  5840. name: "Side",
  5841. image: {
  5842. source: "./media/characters/blake/side.svg",
  5843. extra: 1212 / 1120,
  5844. bottom: 0.05
  5845. }
  5846. },
  5847. crouched: {
  5848. height: math.unit(6 * 0.57, "feet"),
  5849. weight: math.unit(180, "lbs"),
  5850. name: "Crouched",
  5851. image: {
  5852. source: "./media/characters/blake/crouched.svg",
  5853. extra: 840 / 587,
  5854. bottom: 0.04
  5855. }
  5856. },
  5857. bent: {
  5858. height: math.unit(6 * 0.75, "feet"),
  5859. weight: math.unit(180, "lbs"),
  5860. name: "Bent",
  5861. image: {
  5862. source: "./media/characters/blake/bent.svg",
  5863. extra: 592 / 544,
  5864. bottom: 0.035
  5865. }
  5866. },
  5867. },
  5868. [
  5869. {
  5870. name: "Normal",
  5871. height: math.unit(8 + 1 / 6, "feet"),
  5872. default: true
  5873. },
  5874. {
  5875. name: "Big Backside",
  5876. height: math.unit(37, "feet")
  5877. },
  5878. {
  5879. name: "Subway Shredder",
  5880. height: math.unit(72, "feet")
  5881. },
  5882. {
  5883. name: "City Carver",
  5884. height: math.unit(1675, "feet")
  5885. },
  5886. {
  5887. name: "Tectonic Tweaker",
  5888. height: math.unit(2300, "miles")
  5889. },
  5890. ]
  5891. ))
  5892. characterMakers.push(() => makeCharacter(
  5893. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5894. {
  5895. front: {
  5896. height: math.unit(6, "feet"),
  5897. weight: math.unit(180, "lbs"),
  5898. name: "Front",
  5899. image: {
  5900. source: "./media/characters/guisetto/front.svg",
  5901. extra: 856 / 817,
  5902. bottom: 0.06
  5903. }
  5904. },
  5905. airborne: {
  5906. height: math.unit(6, "feet"),
  5907. weight: math.unit(180, "lbs"),
  5908. name: "Airborne",
  5909. image: {
  5910. source: "./media/characters/guisetto/airborne.svg",
  5911. extra: 584 / 525
  5912. }
  5913. },
  5914. },
  5915. [
  5916. {
  5917. name: "Normal",
  5918. height: math.unit(10 + 11 / 12, "feet"),
  5919. default: true
  5920. },
  5921. {
  5922. name: "Large",
  5923. height: math.unit(35, "feet")
  5924. },
  5925. {
  5926. name: "Macro",
  5927. height: math.unit(475, "feet")
  5928. },
  5929. ]
  5930. ))
  5931. characterMakers.push(() => makeCharacter(
  5932. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5933. {
  5934. front: {
  5935. height: math.unit(6, "feet"),
  5936. weight: math.unit(180, "lbs"),
  5937. name: "Front",
  5938. image: {
  5939. source: "./media/characters/luxor/front.svg",
  5940. extra: 2940 / 2152
  5941. }
  5942. },
  5943. back: {
  5944. height: math.unit(6, "feet"),
  5945. weight: math.unit(180, "lbs"),
  5946. name: "Back",
  5947. image: {
  5948. source: "./media/characters/luxor/back.svg",
  5949. extra: 1083 / 960
  5950. }
  5951. },
  5952. },
  5953. [
  5954. {
  5955. name: "Normal",
  5956. height: math.unit(5 + 5 / 6, "feet"),
  5957. default: true
  5958. },
  5959. {
  5960. name: "Lamp",
  5961. height: math.unit(50, "feet")
  5962. },
  5963. {
  5964. name: "Lämp",
  5965. height: math.unit(300, "feet")
  5966. },
  5967. {
  5968. name: "The sun is a lamp",
  5969. height: math.unit(250000, "miles")
  5970. },
  5971. ]
  5972. ))
  5973. characterMakers.push(() => makeCharacter(
  5974. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5975. {
  5976. front: {
  5977. height: math.unit(6, "feet"),
  5978. weight: math.unit(50, "lbs"),
  5979. name: "Front",
  5980. image: {
  5981. source: "./media/characters/huoyan/front.svg"
  5982. }
  5983. },
  5984. side: {
  5985. height: math.unit(6, "feet"),
  5986. weight: math.unit(180, "lbs"),
  5987. name: "Side",
  5988. image: {
  5989. source: "./media/characters/huoyan/side.svg"
  5990. }
  5991. },
  5992. },
  5993. [
  5994. {
  5995. name: "Chef",
  5996. height: math.unit(9, "feet")
  5997. },
  5998. {
  5999. name: "Normal",
  6000. height: math.unit(65, "feet"),
  6001. default: true
  6002. },
  6003. {
  6004. name: "Macro",
  6005. height: math.unit(780, "feet")
  6006. },
  6007. {
  6008. name: "Flaming Mountain",
  6009. height: math.unit(4.8, "miles")
  6010. },
  6011. {
  6012. name: "Celestial",
  6013. height: math.unit(765000, "miles")
  6014. },
  6015. ]
  6016. ))
  6017. characterMakers.push(() => makeCharacter(
  6018. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6019. {
  6020. front: {
  6021. height: math.unit(5 + 3 / 4, "feet"),
  6022. weight: math.unit(120, "lbs"),
  6023. name: "Front",
  6024. image: {
  6025. source: "./media/characters/tails/front.svg"
  6026. }
  6027. }
  6028. },
  6029. [
  6030. {
  6031. name: "Normal",
  6032. height: math.unit(5 + 3 / 4, "feet"),
  6033. default: true
  6034. }
  6035. ]
  6036. ))
  6037. characterMakers.push(() => makeCharacter(
  6038. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6039. {
  6040. front: {
  6041. height: math.unit(4, "feet"),
  6042. weight: math.unit(50, "lbs"),
  6043. name: "Front",
  6044. image: {
  6045. source: "./media/characters/rainy/front.svg"
  6046. }
  6047. }
  6048. },
  6049. [
  6050. {
  6051. name: "Macro",
  6052. height: math.unit(800, "feet"),
  6053. default: true
  6054. }
  6055. ]
  6056. ))
  6057. characterMakers.push(() => makeCharacter(
  6058. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6059. {
  6060. front: {
  6061. height: math.unit(6, "feet"),
  6062. weight: math.unit(150, "lbs"),
  6063. name: "Front",
  6064. image: {
  6065. source: "./media/characters/rainier/front.svg"
  6066. }
  6067. }
  6068. },
  6069. [
  6070. {
  6071. name: "Micro",
  6072. height: math.unit(2, "mm"),
  6073. default: true
  6074. }
  6075. ]
  6076. ))
  6077. characterMakers.push(() => makeCharacter(
  6078. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6079. {
  6080. front: {
  6081. height: math.unit(8 + 4/12, "feet"),
  6082. weight: math.unit(450, "kilograms"),
  6083. volume: math.unit(5, "cups"),
  6084. name: "Front",
  6085. image: {
  6086. source: "./media/characters/andy-renard/front.svg",
  6087. extra: 1839/1726,
  6088. bottom: 134/1973
  6089. }
  6090. },
  6091. back: {
  6092. height: math.unit(8 + 4/12, "feet"),
  6093. weight: math.unit(450, "kilograms"),
  6094. volume: math.unit(5, "cups"),
  6095. name: "Back",
  6096. image: {
  6097. source: "./media/characters/andy-renard/back.svg",
  6098. extra: 1838/1710,
  6099. bottom: 105/1943
  6100. }
  6101. },
  6102. },
  6103. [
  6104. {
  6105. name: "Tall",
  6106. height: math.unit(8 + 4/12, "feet")
  6107. },
  6108. {
  6109. name: "Mini Macro",
  6110. height: math.unit(15, "feet"),
  6111. default: true
  6112. },
  6113. {
  6114. name: "Macro",
  6115. height: math.unit(100, "feet")
  6116. },
  6117. {
  6118. name: "Mega Macro",
  6119. height: math.unit(1000, "feet")
  6120. },
  6121. {
  6122. name: "Giga Macro",
  6123. height: math.unit(10, "miles")
  6124. },
  6125. {
  6126. name: "God Macro",
  6127. height: math.unit(1, "multiverse")
  6128. },
  6129. ]
  6130. ))
  6131. characterMakers.push(() => makeCharacter(
  6132. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6133. {
  6134. front: {
  6135. height: math.unit(6, "feet"),
  6136. weight: math.unit(210, "lbs"),
  6137. name: "Front",
  6138. image: {
  6139. source: "./media/characters/cimmaron/front-sfw.svg",
  6140. extra: 701 / 676,
  6141. bottom: 0.046
  6142. }
  6143. },
  6144. back: {
  6145. height: math.unit(6, "feet"),
  6146. weight: math.unit(210, "lbs"),
  6147. name: "Back",
  6148. image: {
  6149. source: "./media/characters/cimmaron/back-sfw.svg",
  6150. extra: 701 / 676,
  6151. bottom: 0.046
  6152. }
  6153. },
  6154. frontNsfw: {
  6155. height: math.unit(6, "feet"),
  6156. weight: math.unit(210, "lbs"),
  6157. name: "Front (NSFW)",
  6158. image: {
  6159. source: "./media/characters/cimmaron/front-nsfw.svg",
  6160. extra: 701 / 676,
  6161. bottom: 0.046
  6162. }
  6163. },
  6164. backNsfw: {
  6165. height: math.unit(6, "feet"),
  6166. weight: math.unit(210, "lbs"),
  6167. name: "Back (NSFW)",
  6168. image: {
  6169. source: "./media/characters/cimmaron/back-nsfw.svg",
  6170. extra: 701 / 676,
  6171. bottom: 0.046
  6172. }
  6173. },
  6174. dick: {
  6175. height: math.unit(1.714, "feet"),
  6176. name: "Dick",
  6177. image: {
  6178. source: "./media/characters/cimmaron/dick.svg"
  6179. }
  6180. },
  6181. },
  6182. [
  6183. {
  6184. name: "Normal",
  6185. height: math.unit(6, "feet"),
  6186. default: true
  6187. },
  6188. {
  6189. name: "Macro Mayor",
  6190. height: math.unit(350, "meters")
  6191. },
  6192. ]
  6193. ))
  6194. characterMakers.push(() => makeCharacter(
  6195. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6196. {
  6197. front: {
  6198. height: math.unit(6, "feet"),
  6199. weight: math.unit(200, "lbs"),
  6200. name: "Front",
  6201. image: {
  6202. source: "./media/characters/akari/front.svg",
  6203. extra: 962 / 901,
  6204. bottom: 0.04
  6205. }
  6206. }
  6207. },
  6208. [
  6209. {
  6210. name: "Micro",
  6211. height: math.unit(5, "inches"),
  6212. default: true
  6213. },
  6214. {
  6215. name: "Normal",
  6216. height: math.unit(7, "feet")
  6217. },
  6218. ]
  6219. ))
  6220. characterMakers.push(() => makeCharacter(
  6221. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6222. {
  6223. front: {
  6224. height: math.unit(6, "feet"),
  6225. weight: math.unit(140, "lbs"),
  6226. name: "Front",
  6227. image: {
  6228. source: "./media/characters/cynosura/front.svg",
  6229. extra: 896 / 847
  6230. }
  6231. },
  6232. back: {
  6233. height: math.unit(6, "feet"),
  6234. weight: math.unit(140, "lbs"),
  6235. name: "Back",
  6236. image: {
  6237. source: "./media/characters/cynosura/back.svg",
  6238. extra: 1365 / 1250
  6239. }
  6240. },
  6241. },
  6242. [
  6243. {
  6244. name: "Micro",
  6245. height: math.unit(4, "inches")
  6246. },
  6247. {
  6248. name: "Normal",
  6249. height: math.unit(5.75, "feet"),
  6250. default: true
  6251. },
  6252. {
  6253. name: "Tall",
  6254. height: math.unit(10, "feet")
  6255. },
  6256. {
  6257. name: "Big",
  6258. height: math.unit(20, "feet")
  6259. },
  6260. {
  6261. name: "Macro",
  6262. height: math.unit(50, "feet")
  6263. },
  6264. ]
  6265. ))
  6266. characterMakers.push(() => makeCharacter(
  6267. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6268. {
  6269. front: {
  6270. height: math.unit(13 + 2/12, "feet"),
  6271. weight: math.unit(800, "kg"),
  6272. name: "Front",
  6273. image: {
  6274. source: "./media/characters/gin/front.svg",
  6275. extra: 1312/1191,
  6276. bottom: 45/1357
  6277. }
  6278. },
  6279. mouth: {
  6280. height: math.unit(2.39 * 1.8, "feet"),
  6281. name: "Mouth",
  6282. image: {
  6283. source: "./media/characters/gin/mouth.svg"
  6284. }
  6285. },
  6286. hand: {
  6287. height: math.unit(1.57 * 2.19, "feet"),
  6288. name: "Hand",
  6289. image: {
  6290. source: "./media/characters/gin/hand.svg"
  6291. }
  6292. },
  6293. foot: {
  6294. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6295. name: "Foot",
  6296. image: {
  6297. source: "./media/characters/gin/foot.svg"
  6298. }
  6299. },
  6300. sole: {
  6301. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6302. name: "Sole",
  6303. image: {
  6304. source: "./media/characters/gin/sole.svg"
  6305. }
  6306. },
  6307. },
  6308. [
  6309. {
  6310. name: "Very Small",
  6311. height: math.unit(13 + 2 / 12, "feet")
  6312. },
  6313. {
  6314. name: "Micro",
  6315. height: math.unit(600, "miles")
  6316. },
  6317. {
  6318. name: "Regular",
  6319. height: math.unit(20, "earths"),
  6320. default: true
  6321. },
  6322. {
  6323. name: "Macro",
  6324. height: math.unit(2.2, "solarradii")
  6325. },
  6326. {
  6327. name: "Teramacro",
  6328. height: math.unit(1.2, "galaxies")
  6329. },
  6330. {
  6331. name: "Omegamacro",
  6332. height: math.unit(200, "universes")
  6333. },
  6334. ]
  6335. ))
  6336. characterMakers.push(() => makeCharacter(
  6337. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6338. {
  6339. front: {
  6340. height: math.unit(6 + 1 / 6, "feet"),
  6341. weight: math.unit(178, "lbs"),
  6342. name: "Front",
  6343. image: {
  6344. source: "./media/characters/guy/front.svg"
  6345. }
  6346. }
  6347. },
  6348. [
  6349. {
  6350. name: "Normal",
  6351. height: math.unit(6 + 1 / 6, "feet"),
  6352. default: true
  6353. },
  6354. {
  6355. name: "Large",
  6356. height: math.unit(25 + 7 / 12, "feet")
  6357. },
  6358. {
  6359. name: "Macro",
  6360. height: math.unit(60 + 9 / 12, "feet")
  6361. },
  6362. {
  6363. name: "Macro+",
  6364. height: math.unit(246, "feet")
  6365. },
  6366. {
  6367. name: "Macro++",
  6368. height: math.unit(878, "feet")
  6369. }
  6370. ]
  6371. ))
  6372. characterMakers.push(() => makeCharacter(
  6373. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6374. {
  6375. front: {
  6376. height: math.unit(9, "feet"),
  6377. weight: math.unit(800, "lbs"),
  6378. name: "Front",
  6379. image: {
  6380. source: "./media/characters/tiberius/front.svg",
  6381. extra: 2295 / 2071
  6382. }
  6383. },
  6384. back: {
  6385. height: math.unit(9, "feet"),
  6386. weight: math.unit(800, "lbs"),
  6387. name: "Back",
  6388. image: {
  6389. source: "./media/characters/tiberius/back.svg",
  6390. extra: 2373 / 2160
  6391. }
  6392. },
  6393. },
  6394. [
  6395. {
  6396. name: "Normal",
  6397. height: math.unit(9, "feet"),
  6398. default: true
  6399. }
  6400. ]
  6401. ))
  6402. characterMakers.push(() => makeCharacter(
  6403. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6404. {
  6405. front: {
  6406. height: math.unit(6, "feet"),
  6407. weight: math.unit(600, "lbs"),
  6408. name: "Front",
  6409. image: {
  6410. source: "./media/characters/surgo/front.svg",
  6411. extra: 3591 / 2227
  6412. }
  6413. },
  6414. back: {
  6415. height: math.unit(6, "feet"),
  6416. weight: math.unit(600, "lbs"),
  6417. name: "Back",
  6418. image: {
  6419. source: "./media/characters/surgo/back.svg",
  6420. extra: 3557 / 2228
  6421. }
  6422. },
  6423. laying: {
  6424. height: math.unit(6 * 0.85, "feet"),
  6425. weight: math.unit(600, "lbs"),
  6426. name: "Laying",
  6427. image: {
  6428. source: "./media/characters/surgo/laying.svg"
  6429. }
  6430. },
  6431. },
  6432. [
  6433. {
  6434. name: "Normal",
  6435. height: math.unit(6, "feet"),
  6436. default: true
  6437. }
  6438. ]
  6439. ))
  6440. characterMakers.push(() => makeCharacter(
  6441. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6442. {
  6443. side: {
  6444. height: math.unit(6, "feet"),
  6445. weight: math.unit(150, "lbs"),
  6446. name: "Side",
  6447. image: {
  6448. source: "./media/characters/cibus/side.svg",
  6449. extra: 800 / 400
  6450. }
  6451. },
  6452. },
  6453. [
  6454. {
  6455. name: "Normal",
  6456. height: math.unit(6, "feet"),
  6457. default: true
  6458. }
  6459. ]
  6460. ))
  6461. characterMakers.push(() => makeCharacter(
  6462. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6463. {
  6464. front: {
  6465. height: math.unit(6, "feet"),
  6466. weight: math.unit(240, "lbs"),
  6467. name: "Front",
  6468. image: {
  6469. source: "./media/characters/nibbles/front.svg"
  6470. }
  6471. },
  6472. side: {
  6473. height: math.unit(6, "feet"),
  6474. weight: math.unit(240, "lbs"),
  6475. name: "Side",
  6476. image: {
  6477. source: "./media/characters/nibbles/side.svg"
  6478. }
  6479. },
  6480. },
  6481. [
  6482. {
  6483. name: "Normal",
  6484. height: math.unit(9, "feet"),
  6485. default: true
  6486. }
  6487. ]
  6488. ))
  6489. characterMakers.push(() => makeCharacter(
  6490. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6491. {
  6492. side: {
  6493. height: math.unit(5 + 1 / 6, "feet"),
  6494. weight: math.unit(130, "lbs"),
  6495. name: "Side",
  6496. image: {
  6497. source: "./media/characters/rikky/side.svg",
  6498. extra: 851 / 801
  6499. }
  6500. },
  6501. },
  6502. [
  6503. {
  6504. name: "Normal",
  6505. height: math.unit(5 + 1 / 6, "feet")
  6506. },
  6507. {
  6508. name: "Macro",
  6509. height: math.unit(152, "feet"),
  6510. default: true
  6511. },
  6512. {
  6513. name: "Megamacro",
  6514. height: math.unit(7, "miles")
  6515. }
  6516. ]
  6517. ))
  6518. characterMakers.push(() => makeCharacter(
  6519. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6520. {
  6521. side: {
  6522. height: math.unit(370, "cm"),
  6523. weight: math.unit(350, "lbs"),
  6524. name: "Side",
  6525. image: {
  6526. source: "./media/characters/malfressa/side.svg"
  6527. }
  6528. },
  6529. walking: {
  6530. height: math.unit(370, "cm"),
  6531. weight: math.unit(350, "lbs"),
  6532. name: "Walking",
  6533. image: {
  6534. source: "./media/characters/malfressa/walking.svg"
  6535. }
  6536. },
  6537. feral: {
  6538. height: math.unit(2500, "cm"),
  6539. weight: math.unit(100000, "lbs"),
  6540. name: "Feral",
  6541. image: {
  6542. source: "./media/characters/malfressa/feral.svg",
  6543. extra: 2108 / 837,
  6544. bottom: 0.02
  6545. }
  6546. },
  6547. },
  6548. [
  6549. {
  6550. name: "Normal",
  6551. height: math.unit(370, "cm")
  6552. },
  6553. {
  6554. name: "Macro",
  6555. height: math.unit(300, "meters"),
  6556. default: true
  6557. }
  6558. ]
  6559. ))
  6560. characterMakers.push(() => makeCharacter(
  6561. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6562. {
  6563. front: {
  6564. height: math.unit(6, "feet"),
  6565. weight: math.unit(60, "kg"),
  6566. name: "Front",
  6567. image: {
  6568. source: "./media/characters/jaro/front.svg",
  6569. extra: 845/817,
  6570. bottom: 45/890
  6571. }
  6572. },
  6573. back: {
  6574. height: math.unit(6, "feet"),
  6575. weight: math.unit(60, "kg"),
  6576. name: "Back",
  6577. image: {
  6578. source: "./media/characters/jaro/back.svg",
  6579. extra: 847/817,
  6580. bottom: 34/881
  6581. }
  6582. },
  6583. },
  6584. [
  6585. {
  6586. name: "Micro",
  6587. height: math.unit(7, "inches")
  6588. },
  6589. {
  6590. name: "Normal",
  6591. height: math.unit(5.5, "feet"),
  6592. default: true
  6593. },
  6594. {
  6595. name: "Minimacro",
  6596. height: math.unit(20, "feet")
  6597. },
  6598. {
  6599. name: "Macro",
  6600. height: math.unit(200, "meters")
  6601. }
  6602. ]
  6603. ))
  6604. characterMakers.push(() => makeCharacter(
  6605. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6606. {
  6607. front: {
  6608. height: math.unit(6, "feet"),
  6609. weight: math.unit(195, "lb"),
  6610. name: "Front",
  6611. image: {
  6612. source: "./media/characters/rogue/front.svg"
  6613. }
  6614. },
  6615. },
  6616. [
  6617. {
  6618. name: "Macro",
  6619. height: math.unit(90, "feet"),
  6620. default: true
  6621. },
  6622. ]
  6623. ))
  6624. characterMakers.push(() => makeCharacter(
  6625. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6626. {
  6627. standing: {
  6628. height: math.unit(5 + 8 / 12, "feet"),
  6629. weight: math.unit(140, "lb"),
  6630. name: "Standing",
  6631. image: {
  6632. source: "./media/characters/piper/standing.svg",
  6633. extra: 1440/1284,
  6634. bottom: 66/1506
  6635. }
  6636. },
  6637. running: {
  6638. height: math.unit(5 + 8 / 12, "feet"),
  6639. weight: math.unit(140, "lb"),
  6640. name: "Running",
  6641. image: {
  6642. source: "./media/characters/piper/running.svg",
  6643. extra: 3948/3655,
  6644. bottom: 0/3948
  6645. }
  6646. },
  6647. sole: {
  6648. height: math.unit(0.81, "feet"),
  6649. weight: math.unit(2, "kg"),
  6650. name: "Sole",
  6651. image: {
  6652. source: "./media/characters/piper/sole.svg"
  6653. }
  6654. },
  6655. nipple: {
  6656. height: math.unit(0.25, "feet"),
  6657. weight: math.unit(1.5, "lb"),
  6658. name: "Nipple",
  6659. image: {
  6660. source: "./media/characters/piper/nipple.svg"
  6661. }
  6662. },
  6663. head: {
  6664. height: math.unit(1.1, "feet"),
  6665. name: "Head",
  6666. image: {
  6667. source: "./media/characters/piper/head.svg"
  6668. }
  6669. },
  6670. },
  6671. [
  6672. {
  6673. name: "Micro",
  6674. height: math.unit(2, "inches")
  6675. },
  6676. {
  6677. name: "Normal",
  6678. height: math.unit(5 + 8 / 12, "feet")
  6679. },
  6680. {
  6681. name: "Macro",
  6682. height: math.unit(250, "feet"),
  6683. default: true
  6684. },
  6685. {
  6686. name: "Megamacro",
  6687. height: math.unit(7, "miles")
  6688. },
  6689. ]
  6690. ))
  6691. characterMakers.push(() => makeCharacter(
  6692. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6693. {
  6694. front: {
  6695. height: math.unit(6, "feet"),
  6696. weight: math.unit(220, "lb"),
  6697. name: "Front",
  6698. image: {
  6699. source: "./media/characters/gemini/front.svg"
  6700. }
  6701. },
  6702. back: {
  6703. height: math.unit(6, "feet"),
  6704. weight: math.unit(220, "lb"),
  6705. name: "Back",
  6706. image: {
  6707. source: "./media/characters/gemini/back.svg"
  6708. }
  6709. },
  6710. kneeling: {
  6711. height: math.unit(6 / 1.5, "feet"),
  6712. weight: math.unit(220, "lb"),
  6713. name: "Kneeling",
  6714. image: {
  6715. source: "./media/characters/gemini/kneeling.svg",
  6716. bottom: 0.02
  6717. }
  6718. },
  6719. },
  6720. [
  6721. {
  6722. name: "Macro",
  6723. height: math.unit(300, "meters"),
  6724. default: true
  6725. },
  6726. {
  6727. name: "Megamacro",
  6728. height: math.unit(6900, "meters")
  6729. },
  6730. ]
  6731. ))
  6732. characterMakers.push(() => makeCharacter(
  6733. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6734. {
  6735. anthro: {
  6736. height: math.unit(2.35, "meters"),
  6737. weight: math.unit(73, "kg"),
  6738. name: "Anthro",
  6739. image: {
  6740. source: "./media/characters/alicia/anthro.svg",
  6741. extra: 2571 / 2385,
  6742. bottom: 75 / 2648
  6743. }
  6744. },
  6745. paw: {
  6746. height: math.unit(1.32, "feet"),
  6747. name: "Paw",
  6748. image: {
  6749. source: "./media/characters/alicia/paw.svg"
  6750. }
  6751. },
  6752. feral: {
  6753. height: math.unit(1.69, "meters"),
  6754. weight: math.unit(73, "kg"),
  6755. name: "Feral",
  6756. image: {
  6757. source: "./media/characters/alicia/feral.svg",
  6758. extra: 2123 / 1715,
  6759. bottom: 222 / 2349
  6760. }
  6761. },
  6762. },
  6763. [
  6764. {
  6765. name: "Normal",
  6766. height: math.unit(2.35, "meters")
  6767. },
  6768. {
  6769. name: "Macro",
  6770. height: math.unit(60, "meters"),
  6771. default: true
  6772. },
  6773. {
  6774. name: "Megamacro",
  6775. height: math.unit(10000, "kilometers")
  6776. },
  6777. ]
  6778. ))
  6779. characterMakers.push(() => makeCharacter(
  6780. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6781. {
  6782. front: {
  6783. height: math.unit(7, "feet"),
  6784. weight: math.unit(250, "lbs"),
  6785. name: "Front",
  6786. image: {
  6787. source: "./media/characters/archy/front.svg"
  6788. }
  6789. }
  6790. },
  6791. [
  6792. {
  6793. name: "Micro",
  6794. height: math.unit(1, "inch")
  6795. },
  6796. {
  6797. name: "Shorty",
  6798. height: math.unit(5, "feet")
  6799. },
  6800. {
  6801. name: "Normal",
  6802. height: math.unit(7, "feet")
  6803. },
  6804. {
  6805. name: "Macro",
  6806. height: math.unit(600, "meters"),
  6807. default: true
  6808. },
  6809. {
  6810. name: "Megamacro",
  6811. height: math.unit(1, "mile")
  6812. },
  6813. ]
  6814. ))
  6815. characterMakers.push(() => makeCharacter(
  6816. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6817. {
  6818. front: {
  6819. height: math.unit(1.65, "meters"),
  6820. weight: math.unit(74, "kg"),
  6821. name: "Front",
  6822. image: {
  6823. source: "./media/characters/berri/front.svg",
  6824. extra: 857 / 837,
  6825. bottom: 18 / 877
  6826. }
  6827. },
  6828. bum: {
  6829. height: math.unit(1.46, "feet"),
  6830. name: "Bum",
  6831. image: {
  6832. source: "./media/characters/berri/bum.svg"
  6833. }
  6834. },
  6835. mouth: {
  6836. height: math.unit(0.44, "feet"),
  6837. name: "Mouth",
  6838. image: {
  6839. source: "./media/characters/berri/mouth.svg"
  6840. }
  6841. },
  6842. paw: {
  6843. height: math.unit(0.826, "feet"),
  6844. name: "Paw",
  6845. image: {
  6846. source: "./media/characters/berri/paw.svg"
  6847. }
  6848. },
  6849. },
  6850. [
  6851. {
  6852. name: "Normal",
  6853. height: math.unit(1.65, "meters")
  6854. },
  6855. {
  6856. name: "Macro",
  6857. height: math.unit(60, "m"),
  6858. default: true
  6859. },
  6860. {
  6861. name: "Megamacro",
  6862. height: math.unit(9.213, "km")
  6863. },
  6864. {
  6865. name: "Planet Eater",
  6866. height: math.unit(489, "megameters")
  6867. },
  6868. {
  6869. name: "Teramacro",
  6870. height: math.unit(2471635000000, "meters")
  6871. },
  6872. {
  6873. name: "Examacro",
  6874. height: math.unit(8.0624e+26, "meters")
  6875. }
  6876. ]
  6877. ))
  6878. characterMakers.push(() => makeCharacter(
  6879. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6880. {
  6881. front: {
  6882. height: math.unit(1.72, "meters"),
  6883. weight: math.unit(68, "kg"),
  6884. name: "Front",
  6885. image: {
  6886. source: "./media/characters/lexi/front.svg"
  6887. }
  6888. }
  6889. },
  6890. [
  6891. {
  6892. name: "Very Smol",
  6893. height: math.unit(10, "mm")
  6894. },
  6895. {
  6896. name: "Micro",
  6897. height: math.unit(6.8, "cm"),
  6898. default: true
  6899. },
  6900. {
  6901. name: "Normal",
  6902. height: math.unit(1.72, "m")
  6903. }
  6904. ]
  6905. ))
  6906. characterMakers.push(() => makeCharacter(
  6907. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6908. {
  6909. front: {
  6910. height: math.unit(1.69, "meters"),
  6911. weight: math.unit(68, "kg"),
  6912. name: "Front",
  6913. image: {
  6914. source: "./media/characters/martin/front.svg",
  6915. extra: 596 / 581
  6916. }
  6917. }
  6918. },
  6919. [
  6920. {
  6921. name: "Micro",
  6922. height: math.unit(6.85, "cm"),
  6923. default: true
  6924. },
  6925. {
  6926. name: "Normal",
  6927. height: math.unit(1.69, "m")
  6928. }
  6929. ]
  6930. ))
  6931. characterMakers.push(() => makeCharacter(
  6932. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6933. {
  6934. front: {
  6935. height: math.unit(1.69, "meters"),
  6936. weight: math.unit(68, "kg"),
  6937. name: "Front",
  6938. image: {
  6939. source: "./media/characters/juno/front.svg"
  6940. }
  6941. }
  6942. },
  6943. [
  6944. {
  6945. name: "Micro",
  6946. height: math.unit(7, "cm")
  6947. },
  6948. {
  6949. name: "Normal",
  6950. height: math.unit(1.89, "m")
  6951. },
  6952. {
  6953. name: "Macro",
  6954. height: math.unit(353, "meters"),
  6955. default: true
  6956. }
  6957. ]
  6958. ))
  6959. characterMakers.push(() => makeCharacter(
  6960. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6961. {
  6962. front: {
  6963. height: math.unit(1.93, "meters"),
  6964. weight: math.unit(83, "kg"),
  6965. name: "Front",
  6966. image: {
  6967. source: "./media/characters/samantha/front.svg"
  6968. }
  6969. },
  6970. frontClothed: {
  6971. height: math.unit(1.93, "meters"),
  6972. weight: math.unit(83, "kg"),
  6973. name: "Front (Clothed)",
  6974. image: {
  6975. source: "./media/characters/samantha/front-clothed.svg"
  6976. }
  6977. },
  6978. back: {
  6979. height: math.unit(1.93, "meters"),
  6980. weight: math.unit(83, "kg"),
  6981. name: "Back",
  6982. image: {
  6983. source: "./media/characters/samantha/back.svg"
  6984. }
  6985. },
  6986. },
  6987. [
  6988. {
  6989. name: "Normal",
  6990. height: math.unit(1.93, "m")
  6991. },
  6992. {
  6993. name: "Macro",
  6994. height: math.unit(74, "meters"),
  6995. default: true
  6996. },
  6997. {
  6998. name: "Macro+",
  6999. height: math.unit(223, "meters"),
  7000. },
  7001. {
  7002. name: "Megamacro",
  7003. height: math.unit(8381, "meters"),
  7004. },
  7005. {
  7006. name: "Megamacro+",
  7007. height: math.unit(12000, "kilometers")
  7008. },
  7009. ]
  7010. ))
  7011. characterMakers.push(() => makeCharacter(
  7012. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7013. {
  7014. front: {
  7015. height: math.unit(1.92, "meters"),
  7016. weight: math.unit(80, "kg"),
  7017. name: "Front",
  7018. image: {
  7019. source: "./media/characters/dr-clay/front.svg"
  7020. }
  7021. },
  7022. frontClothed: {
  7023. height: math.unit(1.92, "meters"),
  7024. weight: math.unit(80, "kg"),
  7025. name: "Front (Clothed)",
  7026. image: {
  7027. source: "./media/characters/dr-clay/front-clothed.svg"
  7028. }
  7029. }
  7030. },
  7031. [
  7032. {
  7033. name: "Normal",
  7034. height: math.unit(1.92, "m")
  7035. },
  7036. {
  7037. name: "Macro",
  7038. height: math.unit(214, "meters"),
  7039. default: true
  7040. },
  7041. {
  7042. name: "Macro+",
  7043. height: math.unit(12.237, "meters"),
  7044. },
  7045. {
  7046. name: "Megamacro",
  7047. height: math.unit(557, "megameters"),
  7048. },
  7049. {
  7050. name: "Unimaginable",
  7051. height: math.unit(120e9, "lightyears")
  7052. },
  7053. ]
  7054. ))
  7055. characterMakers.push(() => makeCharacter(
  7056. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7057. {
  7058. front: {
  7059. height: math.unit(2, "meters"),
  7060. weight: math.unit(80, "kg"),
  7061. name: "Front",
  7062. image: {
  7063. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7064. }
  7065. }
  7066. },
  7067. [
  7068. {
  7069. name: "Teramacro",
  7070. height: math.unit(500000, "lightyears"),
  7071. default: true
  7072. },
  7073. ]
  7074. ))
  7075. characterMakers.push(() => makeCharacter(
  7076. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7077. {
  7078. crux: {
  7079. height: math.unit(2, "meters"),
  7080. weight: math.unit(150, "kg"),
  7081. name: "Crux",
  7082. image: {
  7083. source: "./media/characters/vemus/crux.svg",
  7084. extra: 1074/936,
  7085. bottom: 23/1097
  7086. }
  7087. },
  7088. skunkTanuki: {
  7089. height: math.unit(2, "meters"),
  7090. weight: math.unit(150, "kg"),
  7091. name: "Skunk-Tanuki",
  7092. image: {
  7093. source: "./media/characters/vemus/skunk-tanuki.svg",
  7094. extra: 926/893,
  7095. bottom: 20/946
  7096. }
  7097. },
  7098. },
  7099. [
  7100. {
  7101. name: "Normal",
  7102. height: math.unit(3.75, "meters"),
  7103. default: true
  7104. },
  7105. {
  7106. name: "Big",
  7107. height: math.unit(8, "meters")
  7108. },
  7109. {
  7110. name: "Macro",
  7111. height: math.unit(100, "meters")
  7112. },
  7113. {
  7114. name: "Macro+",
  7115. height: math.unit(1500, "meters")
  7116. },
  7117. {
  7118. name: "Stellar",
  7119. height: math.unit(14e8, "meters")
  7120. },
  7121. ]
  7122. ))
  7123. characterMakers.push(() => makeCharacter(
  7124. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7125. {
  7126. front: {
  7127. height: math.unit(2, "meters"),
  7128. weight: math.unit(70, "kg"),
  7129. name: "Front",
  7130. image: {
  7131. source: "./media/characters/beherit/front.svg",
  7132. extra: 1234/1109,
  7133. bottom: 55/1289
  7134. }
  7135. }
  7136. },
  7137. [
  7138. {
  7139. name: "Normal",
  7140. height: math.unit(6, "feet")
  7141. },
  7142. {
  7143. name: "Lorg",
  7144. height: math.unit(25, "feet"),
  7145. default: true
  7146. },
  7147. {
  7148. name: "Lorger",
  7149. height: math.unit(75, "feet")
  7150. },
  7151. {
  7152. name: "Macro",
  7153. height: math.unit(200, "meters")
  7154. },
  7155. ]
  7156. ))
  7157. characterMakers.push(() => makeCharacter(
  7158. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7159. {
  7160. front: {
  7161. height: math.unit(2, "meters"),
  7162. weight: math.unit(150, "kg"),
  7163. name: "Front",
  7164. image: {
  7165. source: "./media/characters/everett/front.svg",
  7166. extra: 1017/866,
  7167. bottom: 86/1103
  7168. }
  7169. },
  7170. paw: {
  7171. height: math.unit(2 / 3.6, "meters"),
  7172. name: "Paw",
  7173. image: {
  7174. source: "./media/characters/everett/paw.svg"
  7175. }
  7176. },
  7177. },
  7178. [
  7179. {
  7180. name: "Normal",
  7181. height: math.unit(15, "feet"),
  7182. default: true
  7183. },
  7184. {
  7185. name: "Lorg",
  7186. height: math.unit(70, "feet"),
  7187. default: true
  7188. },
  7189. {
  7190. name: "Lorger",
  7191. height: math.unit(250, "feet")
  7192. },
  7193. {
  7194. name: "Macro",
  7195. height: math.unit(500, "meters")
  7196. },
  7197. ]
  7198. ))
  7199. characterMakers.push(() => makeCharacter(
  7200. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7201. {
  7202. front: {
  7203. height: math.unit(2, "meters"),
  7204. weight: math.unit(86, "kg"),
  7205. name: "Front",
  7206. image: {
  7207. source: "./media/characters/rose/front.svg",
  7208. extra: 1785/1636,
  7209. bottom: 30/1815
  7210. },
  7211. form: "liom",
  7212. default: true
  7213. },
  7214. frontSporty: {
  7215. height: math.unit(2, "meters"),
  7216. weight: math.unit(86, "kg"),
  7217. name: "Front (Sporty)",
  7218. image: {
  7219. source: "./media/characters/rose/front-sporty.svg",
  7220. extra: 350/335,
  7221. bottom: 10/360
  7222. },
  7223. form: "liom"
  7224. },
  7225. frontAlt: {
  7226. height: math.unit(1.6, "meters"),
  7227. weight: math.unit(86, "kg"),
  7228. name: "Front (Alt)",
  7229. image: {
  7230. source: "./media/characters/rose/front-alt.svg",
  7231. extra: 299/283,
  7232. bottom: 3/302
  7233. },
  7234. form: "liom"
  7235. },
  7236. plush: {
  7237. height: math.unit(2, "meters"),
  7238. weight: math.unit(86/3, "kg"),
  7239. name: "Plush",
  7240. image: {
  7241. source: "./media/characters/rose/plush.svg",
  7242. extra: 361/337,
  7243. bottom: 11/372
  7244. },
  7245. form: "plush",
  7246. default: true
  7247. },
  7248. faeStanding: {
  7249. height: math.unit(10, "cm"),
  7250. weight: math.unit(10, "grams"),
  7251. name: "Standing",
  7252. image: {
  7253. source: "./media/characters/rose/fae-standing.svg",
  7254. extra: 1189/1060,
  7255. bottom: 27/1216
  7256. },
  7257. form: "fae",
  7258. default: true
  7259. },
  7260. faeSitting: {
  7261. height: math.unit(5, "cm"),
  7262. weight: math.unit(10, "grams"),
  7263. name: "Sitting",
  7264. image: {
  7265. source: "./media/characters/rose/fae-sitting.svg",
  7266. extra: 737/577,
  7267. bottom: 356/1093
  7268. },
  7269. form: "fae"
  7270. },
  7271. faePaw: {
  7272. height: math.unit(1.35, "cm"),
  7273. name: "Paw",
  7274. image: {
  7275. source: "./media/characters/rose/fae-paw.svg"
  7276. },
  7277. form: "fae"
  7278. },
  7279. },
  7280. [
  7281. {
  7282. name: "True Micro",
  7283. height: math.unit(9, "cm"),
  7284. form: "liom"
  7285. },
  7286. {
  7287. name: "Micro",
  7288. height: math.unit(16, "cm"),
  7289. form: "liom"
  7290. },
  7291. {
  7292. name: "Normal",
  7293. height: math.unit(1.85, "meters"),
  7294. default: true,
  7295. form: "liom"
  7296. },
  7297. {
  7298. name: "Mini-Macro",
  7299. height: math.unit(5, "meters"),
  7300. form: "liom"
  7301. },
  7302. {
  7303. name: "Macro",
  7304. height: math.unit(15, "meters"),
  7305. form: "liom"
  7306. },
  7307. {
  7308. name: "True Macro",
  7309. height: math.unit(40, "meters"),
  7310. form: "liom"
  7311. },
  7312. {
  7313. name: "City Scale",
  7314. height: math.unit(1, "km"),
  7315. form: "liom"
  7316. },
  7317. {
  7318. name: "Plushie",
  7319. height: math.unit(9, "cm"),
  7320. form: "plush",
  7321. default: true
  7322. },
  7323. {
  7324. name: "Fae",
  7325. height: math.unit(10, "cm"),
  7326. form: "fae",
  7327. default: true
  7328. },
  7329. ],
  7330. {
  7331. "liom": {
  7332. name: "Liom"
  7333. },
  7334. "plush": {
  7335. name: "Plush"
  7336. },
  7337. "fae": {
  7338. name: "Fae Fox",
  7339. default: true
  7340. }
  7341. }
  7342. ))
  7343. characterMakers.push(() => makeCharacter(
  7344. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7345. {
  7346. front: {
  7347. height: math.unit(2, "meters"),
  7348. weight: math.unit(350, "lbs"),
  7349. name: "Front",
  7350. image: {
  7351. source: "./media/characters/regal/front.svg"
  7352. }
  7353. },
  7354. back: {
  7355. height: math.unit(2, "meters"),
  7356. weight: math.unit(350, "lbs"),
  7357. name: "Back",
  7358. image: {
  7359. source: "./media/characters/regal/back.svg"
  7360. }
  7361. },
  7362. },
  7363. [
  7364. {
  7365. name: "Macro",
  7366. height: math.unit(350, "feet"),
  7367. default: true
  7368. }
  7369. ]
  7370. ))
  7371. characterMakers.push(() => makeCharacter(
  7372. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7373. {
  7374. front: {
  7375. height: math.unit(4 + 11 / 12, "feet"),
  7376. weight: math.unit(100, "lbs"),
  7377. name: "Front",
  7378. image: {
  7379. source: "./media/characters/opal/front.svg"
  7380. }
  7381. },
  7382. frontAlt: {
  7383. height: math.unit(4 + 11 / 12, "feet"),
  7384. weight: math.unit(100, "lbs"),
  7385. name: "Front (Alt)",
  7386. image: {
  7387. source: "./media/characters/opal/front-alt.svg"
  7388. }
  7389. },
  7390. },
  7391. [
  7392. {
  7393. name: "Small",
  7394. height: math.unit(4 + 11 / 12, "feet")
  7395. },
  7396. {
  7397. name: "Normal",
  7398. height: math.unit(20, "feet"),
  7399. default: true
  7400. },
  7401. {
  7402. name: "Macro",
  7403. height: math.unit(120, "feet")
  7404. },
  7405. {
  7406. name: "Megamacro",
  7407. height: math.unit(80, "miles")
  7408. },
  7409. {
  7410. name: "True Size",
  7411. height: math.unit(100000, "lightyears")
  7412. },
  7413. ]
  7414. ))
  7415. characterMakers.push(() => makeCharacter(
  7416. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7417. {
  7418. front: {
  7419. height: math.unit(6, "feet"),
  7420. weight: math.unit(200, "lbs"),
  7421. name: "Front",
  7422. image: {
  7423. source: "./media/characters/vector-wuff/front.svg"
  7424. }
  7425. }
  7426. },
  7427. [
  7428. {
  7429. name: "Normal",
  7430. height: math.unit(2.8, "meters")
  7431. },
  7432. {
  7433. name: "Macro",
  7434. height: math.unit(450, "meters"),
  7435. default: true
  7436. },
  7437. {
  7438. name: "Megamacro",
  7439. height: math.unit(15, "kilometers")
  7440. }
  7441. ]
  7442. ))
  7443. characterMakers.push(() => makeCharacter(
  7444. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7445. {
  7446. front: {
  7447. height: math.unit(6, "feet"),
  7448. weight: math.unit(256, "lbs"),
  7449. name: "Front",
  7450. image: {
  7451. source: "./media/characters/dannik/front.svg"
  7452. }
  7453. }
  7454. },
  7455. [
  7456. {
  7457. name: "Macro",
  7458. height: math.unit(69.57, "meters"),
  7459. default: true
  7460. },
  7461. ]
  7462. ))
  7463. characterMakers.push(() => makeCharacter(
  7464. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7465. {
  7466. front: {
  7467. height: math.unit(6, "feet"),
  7468. weight: math.unit(120, "lbs"),
  7469. name: "Front",
  7470. image: {
  7471. source: "./media/characters/azura-saharah/front.svg"
  7472. }
  7473. },
  7474. back: {
  7475. height: math.unit(6, "feet"),
  7476. weight: math.unit(120, "lbs"),
  7477. name: "Back",
  7478. image: {
  7479. source: "./media/characters/azura-saharah/back.svg"
  7480. }
  7481. },
  7482. },
  7483. [
  7484. {
  7485. name: "Macro",
  7486. height: math.unit(100, "feet"),
  7487. default: true
  7488. },
  7489. ]
  7490. ))
  7491. characterMakers.push(() => makeCharacter(
  7492. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7493. {
  7494. side: {
  7495. height: math.unit(5 + 4 / 12, "feet"),
  7496. weight: math.unit(163, "lbs"),
  7497. name: "Side",
  7498. image: {
  7499. source: "./media/characters/kennedy/side.svg"
  7500. }
  7501. }
  7502. },
  7503. [
  7504. {
  7505. name: "Standard Doggo",
  7506. height: math.unit(5 + 4 / 12, "feet")
  7507. },
  7508. {
  7509. name: "Big Doggo",
  7510. height: math.unit(25 + 3 / 12, "feet"),
  7511. default: true
  7512. },
  7513. ]
  7514. ))
  7515. characterMakers.push(() => makeCharacter(
  7516. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7517. {
  7518. front: {
  7519. height: math.unit(5 + 5/12, "feet"),
  7520. weight: math.unit(100, "lbs"),
  7521. name: "Front",
  7522. image: {
  7523. source: "./media/characters/odios-de-lunar/front.svg",
  7524. extra: 1468/1323,
  7525. bottom: 22/1490
  7526. }
  7527. }
  7528. },
  7529. [
  7530. {
  7531. name: "Micro",
  7532. height: math.unit(3, "inches")
  7533. },
  7534. {
  7535. name: "Normal",
  7536. height: math.unit(5.5, "feet"),
  7537. default: true
  7538. },
  7539. {
  7540. name: "Macro",
  7541. height: math.unit(100, "feet")
  7542. },
  7543. ]
  7544. ))
  7545. characterMakers.push(() => makeCharacter(
  7546. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7547. {
  7548. back: {
  7549. height: math.unit(6, "feet"),
  7550. weight: math.unit(220, "lbs"),
  7551. name: "Back",
  7552. image: {
  7553. source: "./media/characters/mandake/back.svg"
  7554. }
  7555. }
  7556. },
  7557. [
  7558. {
  7559. name: "Normal",
  7560. height: math.unit(7, "feet"),
  7561. default: true
  7562. },
  7563. {
  7564. name: "Macro",
  7565. height: math.unit(78, "feet")
  7566. },
  7567. {
  7568. name: "Macro+",
  7569. height: math.unit(300, "meters")
  7570. },
  7571. {
  7572. name: "Macro++",
  7573. height: math.unit(2400, "feet")
  7574. },
  7575. {
  7576. name: "Megamacro",
  7577. height: math.unit(5167, "meters")
  7578. },
  7579. {
  7580. name: "Gigamacro",
  7581. height: math.unit(41769, "miles")
  7582. },
  7583. ]
  7584. ))
  7585. characterMakers.push(() => makeCharacter(
  7586. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7587. {
  7588. front: {
  7589. height: math.unit(6, "feet"),
  7590. weight: math.unit(120, "lbs"),
  7591. name: "Front",
  7592. image: {
  7593. source: "./media/characters/yozey/front.svg"
  7594. }
  7595. },
  7596. frontAlt: {
  7597. height: math.unit(6, "feet"),
  7598. weight: math.unit(120, "lbs"),
  7599. name: "Front (Alt)",
  7600. image: {
  7601. source: "./media/characters/yozey/front-alt.svg"
  7602. }
  7603. },
  7604. side: {
  7605. height: math.unit(6, "feet"),
  7606. weight: math.unit(120, "lbs"),
  7607. name: "Side",
  7608. image: {
  7609. source: "./media/characters/yozey/side.svg"
  7610. }
  7611. },
  7612. },
  7613. [
  7614. {
  7615. name: "Micro",
  7616. height: math.unit(3, "inches"),
  7617. default: true
  7618. },
  7619. {
  7620. name: "Normal",
  7621. height: math.unit(6, "feet")
  7622. }
  7623. ]
  7624. ))
  7625. characterMakers.push(() => makeCharacter(
  7626. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7627. {
  7628. front: {
  7629. height: math.unit(6, "feet"),
  7630. weight: math.unit(103, "lbs"),
  7631. name: "Front",
  7632. image: {
  7633. source: "./media/characters/valeska-voss/front.svg"
  7634. }
  7635. }
  7636. },
  7637. [
  7638. {
  7639. name: "Mini-Sized Sub",
  7640. height: math.unit(3.1, "inches")
  7641. },
  7642. {
  7643. name: "Mid-Sized Sub",
  7644. height: math.unit(6.2, "inches")
  7645. },
  7646. {
  7647. name: "Full-Sized Sub",
  7648. height: math.unit(9.3, "inches")
  7649. },
  7650. {
  7651. name: "Normal",
  7652. height: math.unit(5 + 2 / 12, "foot"),
  7653. default: true
  7654. },
  7655. ]
  7656. ))
  7657. characterMakers.push(() => makeCharacter(
  7658. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7659. {
  7660. front: {
  7661. height: math.unit(6, "feet"),
  7662. weight: math.unit(160, "lbs"),
  7663. name: "Front",
  7664. image: {
  7665. source: "./media/characters/gene-zeta/front.svg",
  7666. extra: 3006 / 2826,
  7667. bottom: 182 / 3188
  7668. }
  7669. }
  7670. },
  7671. [
  7672. {
  7673. name: "Micro",
  7674. height: math.unit(6, "inches")
  7675. },
  7676. {
  7677. name: "Normal",
  7678. height: math.unit(5 + 11 / 12, "foot"),
  7679. default: true
  7680. },
  7681. {
  7682. name: "Macro",
  7683. height: math.unit(140, "feet")
  7684. },
  7685. {
  7686. name: "Supercharged",
  7687. height: math.unit(2500, "feet")
  7688. },
  7689. ]
  7690. ))
  7691. characterMakers.push(() => makeCharacter(
  7692. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7693. {
  7694. front: {
  7695. height: math.unit(6, "feet"),
  7696. weight: math.unit(350, "lbs"),
  7697. name: "Front",
  7698. image: {
  7699. source: "./media/characters/razinox/front.svg",
  7700. extra: 1686 / 1548,
  7701. bottom: 28.2 / 1868
  7702. }
  7703. },
  7704. back: {
  7705. height: math.unit(6, "feet"),
  7706. weight: math.unit(350, "lbs"),
  7707. name: "Back",
  7708. image: {
  7709. source: "./media/characters/razinox/back.svg",
  7710. extra: 1660 / 1590,
  7711. bottom: 15 / 1665
  7712. }
  7713. },
  7714. },
  7715. [
  7716. {
  7717. name: "Normal",
  7718. height: math.unit(10 + 8 / 12, "foot")
  7719. },
  7720. {
  7721. name: "Minimacro",
  7722. height: math.unit(15, "foot")
  7723. },
  7724. {
  7725. name: "Macro",
  7726. height: math.unit(60, "foot"),
  7727. default: true
  7728. },
  7729. {
  7730. name: "Megamacro",
  7731. height: math.unit(5, "miles")
  7732. },
  7733. {
  7734. name: "Gigamacro",
  7735. height: math.unit(6000, "miles")
  7736. },
  7737. ]
  7738. ))
  7739. characterMakers.push(() => makeCharacter(
  7740. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7741. {
  7742. front: {
  7743. height: math.unit(6, "feet"),
  7744. weight: math.unit(150, "lbs"),
  7745. name: "Front",
  7746. image: {
  7747. source: "./media/characters/cobalt/front.svg"
  7748. }
  7749. }
  7750. },
  7751. [
  7752. {
  7753. name: "Normal",
  7754. height: math.unit(8 + 1 / 12, "foot")
  7755. },
  7756. {
  7757. name: "Macro",
  7758. height: math.unit(111, "foot"),
  7759. default: true
  7760. },
  7761. {
  7762. name: "Supracosmic",
  7763. height: math.unit(1e42, "feet")
  7764. },
  7765. ]
  7766. ))
  7767. characterMakers.push(() => makeCharacter(
  7768. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7769. {
  7770. front: {
  7771. height: math.unit(5, "inches"),
  7772. name: "Front",
  7773. image: {
  7774. source: "./media/characters/amanda/front.svg",
  7775. extra: 926/791,
  7776. bottom: 38/964
  7777. }
  7778. },
  7779. back: {
  7780. height: math.unit(5, "inches"),
  7781. name: "Back",
  7782. image: {
  7783. source: "./media/characters/amanda/back.svg",
  7784. extra: 909/805,
  7785. bottom: 43/952
  7786. }
  7787. },
  7788. },
  7789. [
  7790. {
  7791. name: "Micro",
  7792. height: math.unit(5, "inches"),
  7793. default: true
  7794. },
  7795. ]
  7796. ))
  7797. characterMakers.push(() => makeCharacter(
  7798. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7799. {
  7800. front: {
  7801. height: math.unit(2.75, "meters"),
  7802. weight: math.unit(1200, "lb"),
  7803. name: "Front",
  7804. image: {
  7805. source: "./media/characters/teal/front.svg",
  7806. extra: 2463 / 2320,
  7807. bottom: 166 / 2629
  7808. }
  7809. },
  7810. back: {
  7811. height: math.unit(2.75, "meters"),
  7812. weight: math.unit(1200, "lb"),
  7813. name: "Back",
  7814. image: {
  7815. source: "./media/characters/teal/back.svg",
  7816. extra: 2580 / 2489,
  7817. bottom: 151 / 2731
  7818. }
  7819. },
  7820. sitting: {
  7821. height: math.unit(1.9, "meters"),
  7822. weight: math.unit(1200, "lb"),
  7823. name: "Sitting",
  7824. image: {
  7825. source: "./media/characters/teal/sitting.svg",
  7826. extra: 623 / 590,
  7827. bottom: 121 / 744
  7828. }
  7829. },
  7830. standing: {
  7831. height: math.unit(2.75, "meters"),
  7832. weight: math.unit(1200, "lb"),
  7833. name: "Standing",
  7834. image: {
  7835. source: "./media/characters/teal/standing.svg",
  7836. extra: 923 / 893,
  7837. bottom: 60 / 983
  7838. }
  7839. },
  7840. stretching: {
  7841. height: math.unit(3.65, "meters"),
  7842. weight: math.unit(1200, "lb"),
  7843. name: "Stretching",
  7844. image: {
  7845. source: "./media/characters/teal/stretching.svg",
  7846. extra: 1276 / 1244,
  7847. bottom: 0 / 1276
  7848. }
  7849. },
  7850. legged: {
  7851. height: math.unit(1.3, "meters"),
  7852. weight: math.unit(100, "lb"),
  7853. name: "Legged",
  7854. image: {
  7855. source: "./media/characters/teal/legged.svg",
  7856. extra: 462 / 437,
  7857. bottom: 24 / 486
  7858. }
  7859. },
  7860. naga: {
  7861. height: math.unit(5.4, "meters"),
  7862. weight: math.unit(4000, "lb"),
  7863. name: "Naga",
  7864. image: {
  7865. source: "./media/characters/teal/naga.svg",
  7866. extra: 1902 / 1858,
  7867. bottom: 0 / 1902
  7868. }
  7869. },
  7870. hand: {
  7871. height: math.unit(0.52, "meters"),
  7872. name: "Hand",
  7873. image: {
  7874. source: "./media/characters/teal/hand.svg"
  7875. }
  7876. },
  7877. maw: {
  7878. height: math.unit(0.43, "meters"),
  7879. name: "Maw",
  7880. image: {
  7881. source: "./media/characters/teal/maw.svg"
  7882. }
  7883. },
  7884. slit: {
  7885. height: math.unit(0.25, "meters"),
  7886. name: "Slit",
  7887. image: {
  7888. source: "./media/characters/teal/slit.svg"
  7889. }
  7890. },
  7891. },
  7892. [
  7893. {
  7894. name: "Normal",
  7895. height: math.unit(2.75, "meters"),
  7896. default: true
  7897. },
  7898. {
  7899. name: "Macro",
  7900. height: math.unit(300, "feet")
  7901. },
  7902. {
  7903. name: "Macro+",
  7904. height: math.unit(2000, "feet")
  7905. },
  7906. ]
  7907. ))
  7908. characterMakers.push(() => makeCharacter(
  7909. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7910. {
  7911. frontCat: {
  7912. height: math.unit(6, "feet"),
  7913. weight: math.unit(180, "lbs"),
  7914. name: "Front (Cat)",
  7915. image: {
  7916. source: "./media/characters/ravin-amulet/front-cat.svg"
  7917. }
  7918. },
  7919. frontCatAlt: {
  7920. height: math.unit(6, "feet"),
  7921. weight: math.unit(180, "lbs"),
  7922. name: "Front (Alt, Cat)",
  7923. image: {
  7924. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7925. }
  7926. },
  7927. frontWerewolf: {
  7928. height: math.unit(6 * 1.2, "feet"),
  7929. weight: math.unit(225, "lbs"),
  7930. name: "Front (Werewolf)",
  7931. image: {
  7932. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7933. }
  7934. },
  7935. backWerewolf: {
  7936. height: math.unit(6 * 1.2, "feet"),
  7937. weight: math.unit(225, "lbs"),
  7938. name: "Back (Werewolf)",
  7939. image: {
  7940. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7941. }
  7942. },
  7943. },
  7944. [
  7945. {
  7946. name: "Nano",
  7947. height: math.unit(1, "micrometer")
  7948. },
  7949. {
  7950. name: "Micro",
  7951. height: math.unit(1, "inch")
  7952. },
  7953. {
  7954. name: "Normal",
  7955. height: math.unit(6, "feet"),
  7956. default: true
  7957. },
  7958. {
  7959. name: "Macro",
  7960. height: math.unit(60, "feet")
  7961. }
  7962. ]
  7963. ))
  7964. characterMakers.push(() => makeCharacter(
  7965. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7966. {
  7967. front: {
  7968. height: math.unit(6, "feet"),
  7969. weight: math.unit(165, "lbs"),
  7970. name: "Front",
  7971. image: {
  7972. source: "./media/characters/fluoresce/front.svg"
  7973. }
  7974. }
  7975. },
  7976. [
  7977. {
  7978. name: "Micro",
  7979. height: math.unit(6, "cm")
  7980. },
  7981. {
  7982. name: "Normal",
  7983. height: math.unit(5 + 7 / 12, "feet"),
  7984. default: true
  7985. },
  7986. {
  7987. name: "Macro",
  7988. height: math.unit(56, "feet")
  7989. },
  7990. {
  7991. name: "Megamacro",
  7992. height: math.unit(1.9, "miles")
  7993. },
  7994. ]
  7995. ))
  7996. characterMakers.push(() => makeCharacter(
  7997. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7998. {
  7999. front: {
  8000. height: math.unit(9 + 6 / 12, "feet"),
  8001. weight: math.unit(523, "lbs"),
  8002. name: "Side",
  8003. image: {
  8004. source: "./media/characters/aurora/side.svg"
  8005. }
  8006. }
  8007. },
  8008. [
  8009. {
  8010. name: "Normal",
  8011. height: math.unit(9 + 6 / 12, "feet")
  8012. },
  8013. {
  8014. name: "Macro",
  8015. height: math.unit(96, "feet"),
  8016. default: true
  8017. },
  8018. {
  8019. name: "Macro+",
  8020. height: math.unit(243, "feet")
  8021. },
  8022. ]
  8023. ))
  8024. characterMakers.push(() => makeCharacter(
  8025. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8026. {
  8027. front: {
  8028. height: math.unit(194, "cm"),
  8029. weight: math.unit(90, "kg"),
  8030. name: "Front",
  8031. image: {
  8032. source: "./media/characters/ranek/front.svg",
  8033. extra: 1862/1791,
  8034. bottom: 80/1942
  8035. }
  8036. },
  8037. back: {
  8038. height: math.unit(194, "cm"),
  8039. weight: math.unit(90, "kg"),
  8040. name: "Back",
  8041. image: {
  8042. source: "./media/characters/ranek/back.svg",
  8043. extra: 1853/1787,
  8044. bottom: 74/1927
  8045. }
  8046. },
  8047. feral: {
  8048. height: math.unit(30, "cm"),
  8049. weight: math.unit(1.6, "lbs"),
  8050. name: "Feral",
  8051. image: {
  8052. source: "./media/characters/ranek/feral.svg",
  8053. extra: 990/631,
  8054. bottom: 29/1019
  8055. }
  8056. },
  8057. },
  8058. [
  8059. {
  8060. name: "Normal",
  8061. height: math.unit(194, "cm"),
  8062. default: true
  8063. },
  8064. {
  8065. name: "Macro",
  8066. height: math.unit(100, "meters")
  8067. },
  8068. ]
  8069. ))
  8070. characterMakers.push(() => makeCharacter(
  8071. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8072. {
  8073. front: {
  8074. height: math.unit(5 + 6 / 12, "feet"),
  8075. weight: math.unit(153, "lbs"),
  8076. name: "Front",
  8077. image: {
  8078. source: "./media/characters/andrew-cooper/front.svg"
  8079. }
  8080. },
  8081. },
  8082. [
  8083. {
  8084. name: "Nano",
  8085. height: math.unit(1, "mm")
  8086. },
  8087. {
  8088. name: "Micro",
  8089. height: math.unit(2, "inches")
  8090. },
  8091. {
  8092. name: "Normal",
  8093. height: math.unit(5 + 6 / 12, "feet"),
  8094. default: true
  8095. }
  8096. ]
  8097. ))
  8098. characterMakers.push(() => makeCharacter(
  8099. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8100. {
  8101. front: {
  8102. height: math.unit(6, "feet"),
  8103. weight: math.unit(180, "lbs"),
  8104. name: "Front",
  8105. image: {
  8106. source: "./media/characters/akane-sato/front.svg",
  8107. extra: 1219 / 1140
  8108. }
  8109. },
  8110. back: {
  8111. height: math.unit(6, "feet"),
  8112. weight: math.unit(180, "lbs"),
  8113. name: "Back",
  8114. image: {
  8115. source: "./media/characters/akane-sato/back.svg",
  8116. extra: 1219 / 1170
  8117. }
  8118. },
  8119. },
  8120. [
  8121. {
  8122. name: "Normal",
  8123. height: math.unit(2.5, "meters")
  8124. },
  8125. {
  8126. name: "Macro",
  8127. height: math.unit(250, "meters"),
  8128. default: true
  8129. },
  8130. {
  8131. name: "Megamacro",
  8132. height: math.unit(25, "km")
  8133. },
  8134. ]
  8135. ))
  8136. characterMakers.push(() => makeCharacter(
  8137. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8138. {
  8139. front: {
  8140. height: math.unit(6, "feet"),
  8141. weight: math.unit(65, "kg"),
  8142. name: "Front",
  8143. image: {
  8144. source: "./media/characters/rook/front.svg",
  8145. extra: 960 / 950
  8146. }
  8147. }
  8148. },
  8149. [
  8150. {
  8151. name: "Normal",
  8152. height: math.unit(8.8, "feet")
  8153. },
  8154. {
  8155. name: "Macro",
  8156. height: math.unit(88, "feet"),
  8157. default: true
  8158. },
  8159. {
  8160. name: "Megamacro",
  8161. height: math.unit(8, "miles")
  8162. },
  8163. ]
  8164. ))
  8165. characterMakers.push(() => makeCharacter(
  8166. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8167. {
  8168. front: {
  8169. height: math.unit(12 + 2 / 12, "feet"),
  8170. weight: math.unit(808, "lbs"),
  8171. name: "Front",
  8172. image: {
  8173. source: "./media/characters/prodigy/front.svg"
  8174. }
  8175. }
  8176. },
  8177. [
  8178. {
  8179. name: "Normal",
  8180. height: math.unit(12 + 2 / 12, "feet"),
  8181. default: true
  8182. },
  8183. {
  8184. name: "Macro",
  8185. height: math.unit(143, "feet")
  8186. },
  8187. {
  8188. name: "Macro+",
  8189. height: math.unit(400, "feet")
  8190. },
  8191. ]
  8192. ))
  8193. characterMakers.push(() => makeCharacter(
  8194. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8195. {
  8196. front: {
  8197. height: math.unit(6, "feet"),
  8198. weight: math.unit(225, "lbs"),
  8199. name: "Front",
  8200. image: {
  8201. source: "./media/characters/daniel/front.svg"
  8202. }
  8203. },
  8204. leaning: {
  8205. height: math.unit(6, "feet"),
  8206. weight: math.unit(225, "lbs"),
  8207. name: "Leaning",
  8208. image: {
  8209. source: "./media/characters/daniel/leaning.svg"
  8210. }
  8211. },
  8212. },
  8213. [
  8214. {
  8215. name: "Macro",
  8216. height: math.unit(1000, "feet"),
  8217. default: true
  8218. },
  8219. ]
  8220. ))
  8221. characterMakers.push(() => makeCharacter(
  8222. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8223. {
  8224. front: {
  8225. height: math.unit(6, "feet"),
  8226. weight: math.unit(88, "lbs"),
  8227. name: "Front",
  8228. image: {
  8229. source: "./media/characters/chiros/front.svg",
  8230. extra: 306 / 226
  8231. }
  8232. },
  8233. side: {
  8234. height: math.unit(6, "feet"),
  8235. weight: math.unit(88, "lbs"),
  8236. name: "Side",
  8237. image: {
  8238. source: "./media/characters/chiros/side.svg",
  8239. extra: 306 / 226
  8240. }
  8241. },
  8242. },
  8243. [
  8244. {
  8245. name: "Normal",
  8246. height: math.unit(6, "cm"),
  8247. default: true
  8248. },
  8249. ]
  8250. ))
  8251. characterMakers.push(() => makeCharacter(
  8252. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8253. {
  8254. front: {
  8255. height: math.unit(6, "feet"),
  8256. weight: math.unit(100, "lbs"),
  8257. name: "Front",
  8258. image: {
  8259. source: "./media/characters/selka/front.svg",
  8260. extra: 947 / 887
  8261. }
  8262. }
  8263. },
  8264. [
  8265. {
  8266. name: "Normal",
  8267. height: math.unit(5, "cm"),
  8268. default: true
  8269. },
  8270. ]
  8271. ))
  8272. characterMakers.push(() => makeCharacter(
  8273. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8274. {
  8275. front: {
  8276. height: math.unit(8 + 3 / 12, "feet"),
  8277. weight: math.unit(424, "lbs"),
  8278. name: "Front",
  8279. image: {
  8280. source: "./media/characters/verin/front.svg",
  8281. extra: 1845 / 1550
  8282. }
  8283. },
  8284. frontArmored: {
  8285. height: math.unit(8 + 3 / 12, "feet"),
  8286. weight: math.unit(424, "lbs"),
  8287. name: "Front (Armored)",
  8288. image: {
  8289. source: "./media/characters/verin/front-armor.svg",
  8290. extra: 1845 / 1550,
  8291. bottom: 0.01
  8292. }
  8293. },
  8294. back: {
  8295. height: math.unit(8 + 3 / 12, "feet"),
  8296. weight: math.unit(424, "lbs"),
  8297. name: "Back",
  8298. image: {
  8299. source: "./media/characters/verin/back.svg",
  8300. bottom: 0.1,
  8301. extra: 1
  8302. }
  8303. },
  8304. foot: {
  8305. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8306. name: "Foot",
  8307. image: {
  8308. source: "./media/characters/verin/foot.svg"
  8309. }
  8310. },
  8311. },
  8312. [
  8313. {
  8314. name: "Normal",
  8315. height: math.unit(8 + 3 / 12, "feet")
  8316. },
  8317. {
  8318. name: "Minimacro",
  8319. height: math.unit(21, "feet"),
  8320. default: true
  8321. },
  8322. {
  8323. name: "Macro",
  8324. height: math.unit(626, "feet")
  8325. },
  8326. ]
  8327. ))
  8328. characterMakers.push(() => makeCharacter(
  8329. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8330. {
  8331. front: {
  8332. height: math.unit(2.718, "meters"),
  8333. weight: math.unit(150, "lbs"),
  8334. name: "Front",
  8335. image: {
  8336. source: "./media/characters/sovrim-terraquian/front.svg",
  8337. extra: 1752/1689,
  8338. bottom: 36/1788
  8339. }
  8340. },
  8341. back: {
  8342. height: math.unit(2.718, "meters"),
  8343. weight: math.unit(150, "lbs"),
  8344. name: "Back",
  8345. image: {
  8346. source: "./media/characters/sovrim-terraquian/back.svg",
  8347. extra: 1698/1657,
  8348. bottom: 58/1756
  8349. }
  8350. },
  8351. tongue: {
  8352. height: math.unit(2.865, "feet"),
  8353. name: "Tongue",
  8354. image: {
  8355. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8356. }
  8357. },
  8358. hand: {
  8359. height: math.unit(1.61, "feet"),
  8360. name: "Hand",
  8361. image: {
  8362. source: "./media/characters/sovrim-terraquian/hand.svg"
  8363. }
  8364. },
  8365. foot: {
  8366. height: math.unit(1.05, "feet"),
  8367. name: "Foot",
  8368. image: {
  8369. source: "./media/characters/sovrim-terraquian/foot.svg"
  8370. }
  8371. },
  8372. footAlt: {
  8373. height: math.unit(0.88, "feet"),
  8374. name: "Foot (Alt)",
  8375. image: {
  8376. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8377. }
  8378. },
  8379. },
  8380. [
  8381. {
  8382. name: "Micro",
  8383. height: math.unit(2, "inches")
  8384. },
  8385. {
  8386. name: "Small",
  8387. height: math.unit(1, "meter")
  8388. },
  8389. {
  8390. name: "Normal",
  8391. height: math.unit(Math.E, "meters"),
  8392. default: true
  8393. },
  8394. {
  8395. name: "Macro",
  8396. height: math.unit(20, "meters")
  8397. },
  8398. {
  8399. name: "Macro+",
  8400. height: math.unit(400, "meters")
  8401. },
  8402. ]
  8403. ))
  8404. characterMakers.push(() => makeCharacter(
  8405. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8406. {
  8407. front: {
  8408. height: math.unit(7, "feet"),
  8409. weight: math.unit(489, "lbs"),
  8410. name: "Front",
  8411. image: {
  8412. source: "./media/characters/reece-silvermane/front.svg",
  8413. bottom: 0.02,
  8414. extra: 1
  8415. }
  8416. },
  8417. },
  8418. [
  8419. {
  8420. name: "Macro",
  8421. height: math.unit(1.5, "miles"),
  8422. default: true
  8423. },
  8424. ]
  8425. ))
  8426. characterMakers.push(() => makeCharacter(
  8427. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8428. {
  8429. front: {
  8430. height: math.unit(6, "feet"),
  8431. weight: math.unit(78, "kg"),
  8432. name: "Front",
  8433. image: {
  8434. source: "./media/characters/kane/front.svg",
  8435. extra: 978 / 899
  8436. }
  8437. },
  8438. },
  8439. [
  8440. {
  8441. name: "Normal",
  8442. height: math.unit(2.1, "m"),
  8443. },
  8444. {
  8445. name: "Macro",
  8446. height: math.unit(1, "km"),
  8447. default: true
  8448. },
  8449. ]
  8450. ))
  8451. characterMakers.push(() => makeCharacter(
  8452. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8453. {
  8454. front: {
  8455. height: math.unit(6, "feet"),
  8456. weight: math.unit(200, "kg"),
  8457. name: "Front",
  8458. image: {
  8459. source: "./media/characters/tegon/front.svg",
  8460. bottom: 0.01,
  8461. extra: 1
  8462. }
  8463. },
  8464. },
  8465. [
  8466. {
  8467. name: "Micro",
  8468. height: math.unit(1, "inch")
  8469. },
  8470. {
  8471. name: "Normal",
  8472. height: math.unit(6 + 3 / 12, "feet"),
  8473. default: true
  8474. },
  8475. {
  8476. name: "Macro",
  8477. height: math.unit(300, "feet")
  8478. },
  8479. {
  8480. name: "Megamacro",
  8481. height: math.unit(69, "miles")
  8482. },
  8483. ]
  8484. ))
  8485. characterMakers.push(() => makeCharacter(
  8486. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8487. {
  8488. side: {
  8489. height: math.unit(6, "feet"),
  8490. weight: math.unit(2304, "lbs"),
  8491. name: "Side",
  8492. image: {
  8493. source: "./media/characters/arcturax/side.svg",
  8494. extra: 790 / 376,
  8495. bottom: 0.01
  8496. }
  8497. },
  8498. },
  8499. [
  8500. {
  8501. name: "Micro",
  8502. height: math.unit(2, "inch")
  8503. },
  8504. {
  8505. name: "Normal",
  8506. height: math.unit(6, "feet")
  8507. },
  8508. {
  8509. name: "Macro",
  8510. height: math.unit(39, "feet"),
  8511. default: true
  8512. },
  8513. {
  8514. name: "Megamacro",
  8515. height: math.unit(7, "miles")
  8516. },
  8517. ]
  8518. ))
  8519. characterMakers.push(() => makeCharacter(
  8520. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8521. {
  8522. front: {
  8523. height: math.unit(6, "feet"),
  8524. weight: math.unit(50, "lbs"),
  8525. name: "Front",
  8526. image: {
  8527. source: "./media/characters/sentri/front.svg",
  8528. extra: 1750 / 1570,
  8529. bottom: 0.025
  8530. }
  8531. },
  8532. frontAlt: {
  8533. height: math.unit(6, "feet"),
  8534. weight: math.unit(50, "lbs"),
  8535. name: "Front (Alt)",
  8536. image: {
  8537. source: "./media/characters/sentri/front-alt.svg",
  8538. extra: 1750 / 1570,
  8539. bottom: 0.025
  8540. }
  8541. },
  8542. },
  8543. [
  8544. {
  8545. name: "Normal",
  8546. height: math.unit(15, "feet"),
  8547. default: true
  8548. },
  8549. {
  8550. name: "Macro",
  8551. height: math.unit(2500, "feet")
  8552. }
  8553. ]
  8554. ))
  8555. characterMakers.push(() => makeCharacter(
  8556. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8557. {
  8558. front: {
  8559. height: math.unit(5 + 8 / 12, "feet"),
  8560. weight: math.unit(130, "lbs"),
  8561. name: "Front",
  8562. image: {
  8563. source: "./media/characters/corvin/front.svg",
  8564. extra: 1803 / 1629
  8565. }
  8566. },
  8567. frontShirt: {
  8568. height: math.unit(5 + 8 / 12, "feet"),
  8569. weight: math.unit(130, "lbs"),
  8570. name: "Front (Shirt)",
  8571. image: {
  8572. source: "./media/characters/corvin/front-shirt.svg",
  8573. extra: 1803 / 1629
  8574. }
  8575. },
  8576. frontPoncho: {
  8577. height: math.unit(5 + 8 / 12, "feet"),
  8578. weight: math.unit(130, "lbs"),
  8579. name: "Front (Poncho)",
  8580. image: {
  8581. source: "./media/characters/corvin/front-poncho.svg",
  8582. extra: 1803 / 1629
  8583. }
  8584. },
  8585. side: {
  8586. height: math.unit(5 + 8 / 12, "feet"),
  8587. weight: math.unit(130, "lbs"),
  8588. name: "Side",
  8589. image: {
  8590. source: "./media/characters/corvin/side.svg",
  8591. extra: 1012 / 945
  8592. }
  8593. },
  8594. back: {
  8595. height: math.unit(5 + 8 / 12, "feet"),
  8596. weight: math.unit(130, "lbs"),
  8597. name: "Back",
  8598. image: {
  8599. source: "./media/characters/corvin/back.svg",
  8600. extra: 1803 / 1629
  8601. }
  8602. },
  8603. },
  8604. [
  8605. {
  8606. name: "Micro",
  8607. height: math.unit(3, "inches")
  8608. },
  8609. {
  8610. name: "Normal",
  8611. height: math.unit(5 + 8 / 12, "feet")
  8612. },
  8613. {
  8614. name: "Macro",
  8615. height: math.unit(300, "feet"),
  8616. default: true
  8617. },
  8618. {
  8619. name: "Megamacro",
  8620. height: math.unit(500, "miles")
  8621. }
  8622. ]
  8623. ))
  8624. characterMakers.push(() => makeCharacter(
  8625. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8626. {
  8627. front: {
  8628. height: math.unit(6, "feet"),
  8629. weight: math.unit(135, "lbs"),
  8630. name: "Front",
  8631. image: {
  8632. source: "./media/characters/q/front.svg",
  8633. extra: 854 / 752,
  8634. bottom: 0.005
  8635. }
  8636. },
  8637. back: {
  8638. height: math.unit(6, "feet"),
  8639. weight: math.unit(130, "lbs"),
  8640. name: "Back",
  8641. image: {
  8642. source: "./media/characters/q/back.svg",
  8643. extra: 854 / 752
  8644. }
  8645. },
  8646. },
  8647. [
  8648. {
  8649. name: "Macro",
  8650. height: math.unit(90, "feet"),
  8651. default: true
  8652. },
  8653. {
  8654. name: "Extra Macro",
  8655. height: math.unit(300, "feet"),
  8656. },
  8657. {
  8658. name: "BIG WALF",
  8659. height: math.unit(750, "feet"),
  8660. },
  8661. ]
  8662. ))
  8663. characterMakers.push(() => makeCharacter(
  8664. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8665. {
  8666. front: {
  8667. height: math.unit(6, "feet"),
  8668. weight: math.unit(150, "lbs"),
  8669. name: "Front",
  8670. image: {
  8671. source: "./media/characters/carley/front.svg",
  8672. extra: 3927 / 3540,
  8673. bottom: 29.2 / 735
  8674. }
  8675. }
  8676. },
  8677. [
  8678. {
  8679. name: "Normal",
  8680. height: math.unit(6 + 3 / 12, "feet")
  8681. },
  8682. {
  8683. name: "Macro",
  8684. height: math.unit(185, "feet"),
  8685. default: true
  8686. },
  8687. {
  8688. name: "Megamacro",
  8689. height: math.unit(8, "miles"),
  8690. },
  8691. ]
  8692. ))
  8693. characterMakers.push(() => makeCharacter(
  8694. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8695. {
  8696. front: {
  8697. height: math.unit(3, "feet"),
  8698. weight: math.unit(28, "lbs"),
  8699. name: "Front",
  8700. image: {
  8701. source: "./media/characters/citrine/front.svg"
  8702. }
  8703. }
  8704. },
  8705. [
  8706. {
  8707. name: "Normal",
  8708. height: math.unit(3, "feet"),
  8709. default: true
  8710. }
  8711. ]
  8712. ))
  8713. characterMakers.push(() => makeCharacter(
  8714. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8715. {
  8716. front: {
  8717. height: math.unit(14, "feet"),
  8718. weight: math.unit(1450, "kg"),
  8719. preyCapacity: math.unit(15, "people"),
  8720. name: "Front",
  8721. image: {
  8722. source: "./media/characters/aura-starwind/front.svg",
  8723. extra: 1440/1327,
  8724. bottom: 11/1451
  8725. }
  8726. },
  8727. side: {
  8728. height: math.unit(14, "feet"),
  8729. weight: math.unit(1450, "kg"),
  8730. preyCapacity: math.unit(15, "people"),
  8731. name: "Side",
  8732. image: {
  8733. source: "./media/characters/aura-starwind/side.svg",
  8734. extra: 1654 / 1497
  8735. }
  8736. },
  8737. taur: {
  8738. height: math.unit(18, "feet"),
  8739. weight: math.unit(5500, "kg"),
  8740. preyCapacity: math.unit(50, "people"),
  8741. name: "Taur",
  8742. image: {
  8743. source: "./media/characters/aura-starwind/taur.svg",
  8744. extra: 1760 / 1650
  8745. }
  8746. },
  8747. feral: {
  8748. height: math.unit(46, "feet"),
  8749. weight: math.unit(25000, "kg"),
  8750. preyCapacity: math.unit(120, "people"),
  8751. name: "Feral",
  8752. image: {
  8753. source: "./media/characters/aura-starwind/feral.svg"
  8754. }
  8755. },
  8756. },
  8757. [
  8758. {
  8759. name: "Normal",
  8760. height: math.unit(14, "feet"),
  8761. default: true
  8762. },
  8763. {
  8764. name: "Macro",
  8765. height: math.unit(50, "meters")
  8766. },
  8767. {
  8768. name: "Megamacro",
  8769. height: math.unit(5000, "meters")
  8770. },
  8771. {
  8772. name: "Gigamacro",
  8773. height: math.unit(100000, "kilometers")
  8774. },
  8775. ]
  8776. ))
  8777. characterMakers.push(() => makeCharacter(
  8778. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8779. {
  8780. front: {
  8781. height: math.unit(2 + 7 / 12, "feet"),
  8782. weight: math.unit(32, "lbs"),
  8783. name: "Front",
  8784. image: {
  8785. source: "./media/characters/rivet/front.svg",
  8786. extra: 1716 / 1658,
  8787. bottom: 0.03
  8788. }
  8789. },
  8790. foot: {
  8791. height: math.unit(0.551, "feet"),
  8792. name: "Rivet's Foot",
  8793. image: {
  8794. source: "./media/characters/rivet/foot.svg"
  8795. },
  8796. rename: true
  8797. }
  8798. },
  8799. [
  8800. {
  8801. name: "Micro",
  8802. height: math.unit(1.5, "inches"),
  8803. },
  8804. {
  8805. name: "Normal",
  8806. height: math.unit(2 + 7 / 12, "feet"),
  8807. default: true
  8808. },
  8809. {
  8810. name: "Macro",
  8811. height: math.unit(85, "feet")
  8812. },
  8813. {
  8814. name: "Megamacro",
  8815. height: math.unit(2.2, "km")
  8816. }
  8817. ]
  8818. ))
  8819. characterMakers.push(() => makeCharacter(
  8820. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8821. {
  8822. front: {
  8823. height: math.unit(5 + 9 / 12, "feet"),
  8824. weight: math.unit(150, "lbs"),
  8825. name: "Front",
  8826. image: {
  8827. source: "./media/characters/coffee/front.svg",
  8828. extra: 3666 / 3032,
  8829. bottom: 0.04
  8830. }
  8831. },
  8832. foot: {
  8833. height: math.unit(1.29, "feet"),
  8834. name: "Foot",
  8835. image: {
  8836. source: "./media/characters/coffee/foot.svg"
  8837. }
  8838. },
  8839. },
  8840. [
  8841. {
  8842. name: "Micro",
  8843. height: math.unit(2, "inches"),
  8844. },
  8845. {
  8846. name: "Normal",
  8847. height: math.unit(5 + 9 / 12, "feet"),
  8848. default: true
  8849. },
  8850. {
  8851. name: "Macro",
  8852. height: math.unit(800, "feet")
  8853. },
  8854. {
  8855. name: "Megamacro",
  8856. height: math.unit(25, "miles")
  8857. }
  8858. ]
  8859. ))
  8860. characterMakers.push(() => makeCharacter(
  8861. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8862. {
  8863. front: {
  8864. height: math.unit(6, "feet"),
  8865. weight: math.unit(200, "lbs"),
  8866. name: "Front",
  8867. image: {
  8868. source: "./media/characters/chari-gal/front.svg",
  8869. extra: 1568 / 1385,
  8870. bottom: 0.047
  8871. }
  8872. },
  8873. gigantamax: {
  8874. height: math.unit(6 * 16, "feet"),
  8875. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8876. name: "Gigantamax",
  8877. image: {
  8878. source: "./media/characters/chari-gal/gigantamax.svg",
  8879. extra: 1124 / 888,
  8880. bottom: 0.03
  8881. }
  8882. },
  8883. },
  8884. [
  8885. {
  8886. name: "Normal",
  8887. height: math.unit(5 + 7 / 12, "feet")
  8888. },
  8889. {
  8890. name: "Macro",
  8891. height: math.unit(200, "feet"),
  8892. default: true
  8893. }
  8894. ]
  8895. ))
  8896. characterMakers.push(() => makeCharacter(
  8897. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8898. {
  8899. front: {
  8900. height: math.unit(6, "feet"),
  8901. weight: math.unit(150, "lbs"),
  8902. name: "Front",
  8903. image: {
  8904. source: "./media/characters/nova/front.svg",
  8905. extra: 5000 / 4722,
  8906. bottom: 0.02
  8907. }
  8908. }
  8909. },
  8910. [
  8911. {
  8912. name: "Micro-",
  8913. height: math.unit(0.8, "inches")
  8914. },
  8915. {
  8916. name: "Micro",
  8917. height: math.unit(2, "inches"),
  8918. default: true
  8919. },
  8920. ]
  8921. ))
  8922. characterMakers.push(() => makeCharacter(
  8923. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8924. {
  8925. front: {
  8926. height: math.unit(3 + 1 / 12, "feet"),
  8927. weight: math.unit(21.7, "lbs"),
  8928. name: "Front",
  8929. image: {
  8930. source: "./media/characters/argent/front.svg",
  8931. extra: 1471 / 1331,
  8932. bottom: 100.8 / 1575.5
  8933. }
  8934. }
  8935. },
  8936. [
  8937. {
  8938. name: "Micro",
  8939. height: math.unit(2, "inches")
  8940. },
  8941. {
  8942. name: "Normal",
  8943. height: math.unit(3 + 1 / 12, "feet"),
  8944. default: true
  8945. },
  8946. {
  8947. name: "Macro",
  8948. height: math.unit(120, "feet")
  8949. },
  8950. ]
  8951. ))
  8952. characterMakers.push(() => makeCharacter(
  8953. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8954. {
  8955. lamp: {
  8956. height: math.unit(7 * 1559 / 989, "feet"),
  8957. name: "Magic Lamp",
  8958. image: {
  8959. source: "./media/characters/mira-al-cul/lamp.svg",
  8960. extra: 1617 / 1559
  8961. }
  8962. },
  8963. front: {
  8964. height: math.unit(7, "feet"),
  8965. name: "Front",
  8966. image: {
  8967. source: "./media/characters/mira-al-cul/front.svg",
  8968. extra: 1044 / 990
  8969. }
  8970. },
  8971. },
  8972. [
  8973. {
  8974. name: "Heavily Restricted",
  8975. height: math.unit(7 * 1559 / 989, "feet")
  8976. },
  8977. {
  8978. name: "Freshly Freed",
  8979. height: math.unit(50 * 1559 / 989, "feet")
  8980. },
  8981. {
  8982. name: "World Encompassing",
  8983. height: math.unit(10000 * 1559 / 989, "miles")
  8984. },
  8985. {
  8986. name: "Galactic",
  8987. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8988. },
  8989. {
  8990. name: "Palmed Universe",
  8991. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8992. default: true
  8993. },
  8994. {
  8995. name: "Multiversal Matriarch",
  8996. height: math.unit(8.87e10, "yottameters")
  8997. },
  8998. {
  8999. name: "Void Mother",
  9000. height: math.unit(3.14e110, "yottaparsecs")
  9001. },
  9002. {
  9003. name: "Toying with Transcendence",
  9004. height: math.unit(1e307, "meters")
  9005. },
  9006. ]
  9007. ))
  9008. characterMakers.push(() => makeCharacter(
  9009. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9010. {
  9011. front: {
  9012. height: math.unit(17 + 1 / 12, "feet"),
  9013. weight: math.unit(476.2 * 5, "lbs"),
  9014. name: "Front",
  9015. image: {
  9016. source: "./media/characters/kuro-shi-uchū/front.svg",
  9017. extra: 2329 / 1835,
  9018. bottom: 0.02
  9019. }
  9020. },
  9021. },
  9022. [
  9023. {
  9024. name: "Micro",
  9025. height: math.unit(2, "inches")
  9026. },
  9027. {
  9028. name: "Normal",
  9029. height: math.unit(12, "meters")
  9030. },
  9031. {
  9032. name: "Planetary",
  9033. height: math.unit(0.00929, "AU"),
  9034. default: true
  9035. },
  9036. {
  9037. name: "Universal",
  9038. height: math.unit(20, "gigaparsecs")
  9039. },
  9040. ]
  9041. ))
  9042. characterMakers.push(() => makeCharacter(
  9043. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9044. {
  9045. front: {
  9046. height: math.unit(5 + 2 / 12, "feet"),
  9047. weight: math.unit(120, "lbs"),
  9048. name: "Front",
  9049. image: {
  9050. source: "./media/characters/katherine/front.svg",
  9051. extra: 2075 / 1969
  9052. }
  9053. },
  9054. dress: {
  9055. height: math.unit(5 + 2 / 12, "feet"),
  9056. weight: math.unit(120, "lbs"),
  9057. name: "Dress",
  9058. image: {
  9059. source: "./media/characters/katherine/dress.svg",
  9060. extra: 2258 / 2064
  9061. }
  9062. },
  9063. },
  9064. [
  9065. {
  9066. name: "Micro",
  9067. height: math.unit(1, "inches"),
  9068. default: true
  9069. },
  9070. {
  9071. name: "Normal",
  9072. height: math.unit(5 + 2 / 12, "feet")
  9073. },
  9074. {
  9075. name: "Macro",
  9076. height: math.unit(100, "meters")
  9077. },
  9078. {
  9079. name: "Megamacro",
  9080. height: math.unit(80, "miles")
  9081. },
  9082. ]
  9083. ))
  9084. characterMakers.push(() => makeCharacter(
  9085. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9086. {
  9087. front: {
  9088. height: math.unit(7 + 8 / 12, "feet"),
  9089. weight: math.unit(250, "lbs"),
  9090. name: "Front",
  9091. image: {
  9092. source: "./media/characters/yevis/front.svg",
  9093. extra: 1938 / 1755
  9094. }
  9095. }
  9096. },
  9097. [
  9098. {
  9099. name: "Mortal",
  9100. height: math.unit(7 + 8 / 12, "feet")
  9101. },
  9102. {
  9103. name: "Battle",
  9104. height: math.unit(25 + 11 / 12, "feet")
  9105. },
  9106. {
  9107. name: "Wrath",
  9108. height: math.unit(1654 + 11 / 12, "feet")
  9109. },
  9110. {
  9111. name: "Planet Destroyer",
  9112. height: math.unit(12000, "miles")
  9113. },
  9114. {
  9115. name: "Galaxy Conqueror",
  9116. height: math.unit(1.45, "zettameters"),
  9117. default: true
  9118. },
  9119. {
  9120. name: "Universal War",
  9121. height: math.unit(184, "gigaparsecs")
  9122. },
  9123. {
  9124. name: "Eternity War",
  9125. height: math.unit(1.98e55, "yottaparsecs")
  9126. },
  9127. ]
  9128. ))
  9129. characterMakers.push(() => makeCharacter(
  9130. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9131. {
  9132. front: {
  9133. height: math.unit(5 + 8 / 12, "feet"),
  9134. weight: math.unit(63, "kg"),
  9135. name: "Front",
  9136. image: {
  9137. source: "./media/characters/xavier/front.svg",
  9138. extra: 944 / 883
  9139. }
  9140. },
  9141. frontStretch: {
  9142. height: math.unit(5 + 8 / 12, "feet"),
  9143. weight: math.unit(63, "kg"),
  9144. name: "Stretching",
  9145. image: {
  9146. source: "./media/characters/xavier/front-stretch.svg",
  9147. extra: 962 / 820
  9148. }
  9149. },
  9150. },
  9151. [
  9152. {
  9153. name: "Normal",
  9154. height: math.unit(5 + 8 / 12, "feet")
  9155. },
  9156. {
  9157. name: "Macro",
  9158. height: math.unit(100, "meters"),
  9159. default: true
  9160. },
  9161. {
  9162. name: "McLargeHuge",
  9163. height: math.unit(10, "miles")
  9164. },
  9165. ]
  9166. ))
  9167. characterMakers.push(() => makeCharacter(
  9168. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9169. {
  9170. front: {
  9171. height: math.unit(5 + 5 / 12, "feet"),
  9172. weight: math.unit(150, "lb"),
  9173. name: "Front",
  9174. image: {
  9175. source: "./media/characters/joshii/front.svg",
  9176. extra: 765 / 653,
  9177. bottom: 51 / 816
  9178. }
  9179. },
  9180. foot: {
  9181. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9182. name: "Foot",
  9183. image: {
  9184. source: "./media/characters/joshii/foot.svg"
  9185. }
  9186. },
  9187. },
  9188. [
  9189. {
  9190. name: "Micro",
  9191. height: math.unit(2, "inches"),
  9192. default: true
  9193. },
  9194. {
  9195. name: "Normal",
  9196. height: math.unit(5 + 5 / 12, "feet")
  9197. },
  9198. {
  9199. name: "Macro",
  9200. height: math.unit(785, "feet")
  9201. },
  9202. {
  9203. name: "Megamacro",
  9204. height: math.unit(24.5, "miles")
  9205. },
  9206. ]
  9207. ))
  9208. characterMakers.push(() => makeCharacter(
  9209. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9210. {
  9211. front: {
  9212. height: math.unit(6, "feet"),
  9213. weight: math.unit(150, "lb"),
  9214. name: "Front",
  9215. image: {
  9216. source: "./media/characters/goddess-elizabeth/front.svg",
  9217. extra: 1800 / 1525,
  9218. bottom: 0.005
  9219. }
  9220. },
  9221. foot: {
  9222. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9223. name: "Foot",
  9224. image: {
  9225. source: "./media/characters/goddess-elizabeth/foot.svg"
  9226. }
  9227. },
  9228. mouth: {
  9229. height: math.unit(6, "feet"),
  9230. name: "Mouth",
  9231. image: {
  9232. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9233. }
  9234. },
  9235. },
  9236. [
  9237. {
  9238. name: "Micro",
  9239. height: math.unit(12, "feet")
  9240. },
  9241. {
  9242. name: "Normal",
  9243. height: math.unit(80, "miles"),
  9244. default: true
  9245. },
  9246. {
  9247. name: "Macro",
  9248. height: math.unit(15000, "parsecs")
  9249. },
  9250. ]
  9251. ))
  9252. characterMakers.push(() => makeCharacter(
  9253. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9254. {
  9255. front: {
  9256. height: math.unit(5 + 9 / 12, "feet"),
  9257. weight: math.unit(144, "lb"),
  9258. name: "Front",
  9259. image: {
  9260. source: "./media/characters/kara/front.svg"
  9261. }
  9262. },
  9263. feet: {
  9264. height: math.unit(6 / 6.765, "feet"),
  9265. name: "Kara's Feet",
  9266. rename: true,
  9267. image: {
  9268. source: "./media/characters/kara/feet.svg"
  9269. }
  9270. },
  9271. },
  9272. [
  9273. {
  9274. name: "Normal",
  9275. height: math.unit(5 + 9 / 12, "feet")
  9276. },
  9277. {
  9278. name: "Macro",
  9279. height: math.unit(174, "feet"),
  9280. default: true
  9281. },
  9282. ]
  9283. ))
  9284. characterMakers.push(() => makeCharacter(
  9285. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9286. {
  9287. front: {
  9288. height: math.unit(18, "feet"),
  9289. weight: math.unit(4050, "lb"),
  9290. name: "Front",
  9291. image: {
  9292. source: "./media/characters/tyrone/front.svg",
  9293. extra: 2405 / 2270,
  9294. bottom: 182 / 2587
  9295. }
  9296. },
  9297. },
  9298. [
  9299. {
  9300. name: "Normal",
  9301. height: math.unit(18, "feet"),
  9302. default: true
  9303. },
  9304. {
  9305. name: "Macro",
  9306. height: math.unit(300, "feet")
  9307. },
  9308. {
  9309. name: "Megamacro",
  9310. height: math.unit(15, "km")
  9311. },
  9312. {
  9313. name: "Gigamacro",
  9314. height: math.unit(500, "km")
  9315. },
  9316. {
  9317. name: "Teramacro",
  9318. height: math.unit(0.5, "gigameters")
  9319. },
  9320. {
  9321. name: "Omnimacro",
  9322. height: math.unit(1e252, "yottauniverse")
  9323. },
  9324. ]
  9325. ))
  9326. characterMakers.push(() => makeCharacter(
  9327. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9328. {
  9329. front: {
  9330. height: math.unit(7 + 8 / 12, "feet"),
  9331. weight: math.unit(120, "lb"),
  9332. name: "Front",
  9333. image: {
  9334. source: "./media/characters/danny/front.svg",
  9335. extra: 1490 / 1350
  9336. }
  9337. },
  9338. back: {
  9339. height: math.unit(7 + 8 / 12, "feet"),
  9340. weight: math.unit(120, "lb"),
  9341. name: "Back",
  9342. image: {
  9343. source: "./media/characters/danny/back.svg",
  9344. extra: 1490 / 1350
  9345. }
  9346. },
  9347. },
  9348. [
  9349. {
  9350. name: "Normal",
  9351. height: math.unit(7 + 8 / 12, "feet"),
  9352. default: true
  9353. },
  9354. ]
  9355. ))
  9356. characterMakers.push(() => makeCharacter(
  9357. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9358. {
  9359. front: {
  9360. height: math.unit(3.5, "inches"),
  9361. weight: math.unit(19, "grams"),
  9362. name: "Front",
  9363. image: {
  9364. source: "./media/characters/mallow/front.svg",
  9365. extra: 471 / 431
  9366. }
  9367. },
  9368. back: {
  9369. height: math.unit(3.5, "inches"),
  9370. weight: math.unit(19, "grams"),
  9371. name: "Back",
  9372. image: {
  9373. source: "./media/characters/mallow/back.svg",
  9374. extra: 471 / 431
  9375. }
  9376. },
  9377. },
  9378. [
  9379. {
  9380. name: "Normal",
  9381. height: math.unit(3.5, "inches"),
  9382. default: true
  9383. },
  9384. ]
  9385. ))
  9386. characterMakers.push(() => makeCharacter(
  9387. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9388. {
  9389. front: {
  9390. height: math.unit(9, "feet"),
  9391. weight: math.unit(230, "kg"),
  9392. name: "Front",
  9393. image: {
  9394. source: "./media/characters/starry-aqua/front.svg"
  9395. }
  9396. },
  9397. back: {
  9398. height: math.unit(9, "feet"),
  9399. weight: math.unit(230, "kg"),
  9400. name: "Back",
  9401. image: {
  9402. source: "./media/characters/starry-aqua/back.svg"
  9403. }
  9404. },
  9405. hand: {
  9406. height: math.unit(9 * 0.1168, "feet"),
  9407. name: "Hand",
  9408. image: {
  9409. source: "./media/characters/starry-aqua/hand.svg"
  9410. }
  9411. },
  9412. foot: {
  9413. height: math.unit(9 * 0.18, "feet"),
  9414. name: "Foot",
  9415. image: {
  9416. source: "./media/characters/starry-aqua/foot.svg"
  9417. }
  9418. }
  9419. },
  9420. [
  9421. {
  9422. name: "Micro",
  9423. height: math.unit(3, "inches")
  9424. },
  9425. {
  9426. name: "Normal",
  9427. height: math.unit(9, "feet")
  9428. },
  9429. {
  9430. name: "Macro",
  9431. height: math.unit(300, "feet"),
  9432. default: true
  9433. },
  9434. {
  9435. name: "Megamacro",
  9436. height: math.unit(3200, "feet")
  9437. }
  9438. ]
  9439. ))
  9440. characterMakers.push(() => makeCharacter(
  9441. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9442. {
  9443. front: {
  9444. height: math.unit(15, "feet"),
  9445. weight: math.unit(5026, "lb"),
  9446. name: "Front",
  9447. image: {
  9448. source: "./media/characters/luka-towers/front.svg",
  9449. extra: 1269/1133,
  9450. bottom: 51/1320
  9451. }
  9452. },
  9453. },
  9454. [
  9455. {
  9456. name: "Normal",
  9457. height: math.unit(15, "feet"),
  9458. default: true
  9459. },
  9460. {
  9461. name: "Minimacro",
  9462. height: math.unit(25, "feet")
  9463. },
  9464. {
  9465. name: "Macro",
  9466. height: math.unit(320, "feet")
  9467. },
  9468. {
  9469. name: "Megamacro",
  9470. height: math.unit(35000, "feet")
  9471. },
  9472. {
  9473. name: "Gigamacro",
  9474. height: math.unit(4000, "miles")
  9475. },
  9476. {
  9477. name: "Teramacro",
  9478. height: math.unit(15000, "miles")
  9479. },
  9480. ]
  9481. ))
  9482. characterMakers.push(() => makeCharacter(
  9483. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9484. {
  9485. front: {
  9486. height: math.unit(6, "feet"),
  9487. weight: math.unit(150, "lb"),
  9488. name: "Front",
  9489. image: {
  9490. source: "./media/characters/natalie-nightring/front.svg",
  9491. extra: 1,
  9492. bottom: 0.06
  9493. }
  9494. },
  9495. },
  9496. [
  9497. {
  9498. name: "Uh Oh",
  9499. height: math.unit(0.1, "mm")
  9500. },
  9501. {
  9502. name: "Small",
  9503. height: math.unit(3, "inches")
  9504. },
  9505. {
  9506. name: "Human Scale",
  9507. height: math.unit(6, "feet")
  9508. },
  9509. {
  9510. name: "Librarian",
  9511. height: math.unit(50, "feet"),
  9512. default: true
  9513. },
  9514. {
  9515. name: "Immense",
  9516. height: math.unit(200, "miles")
  9517. },
  9518. ]
  9519. ))
  9520. characterMakers.push(() => makeCharacter(
  9521. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9522. {
  9523. front: {
  9524. height: math.unit(6, "feet"),
  9525. weight: math.unit(180, "lbs"),
  9526. name: "Front",
  9527. image: {
  9528. source: "./media/characters/danni-rosie/front.svg",
  9529. extra: 1260 / 1128,
  9530. bottom: 0.022
  9531. }
  9532. },
  9533. },
  9534. [
  9535. {
  9536. name: "Micro",
  9537. height: math.unit(2, "inches"),
  9538. default: true
  9539. },
  9540. ]
  9541. ))
  9542. characterMakers.push(() => makeCharacter(
  9543. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9544. {
  9545. front: {
  9546. height: math.unit(5 + 9 / 12, "feet"),
  9547. weight: math.unit(220, "lb"),
  9548. name: "Front",
  9549. image: {
  9550. source: "./media/characters/samantha-kruse/front.svg",
  9551. extra: (985 / 935),
  9552. bottom: 0.03
  9553. }
  9554. },
  9555. frontUndressed: {
  9556. height: math.unit(5 + 9 / 12, "feet"),
  9557. weight: math.unit(220, "lb"),
  9558. name: "Front (Undressed)",
  9559. image: {
  9560. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9561. extra: (973 / 923),
  9562. bottom: 0.025
  9563. }
  9564. },
  9565. fat: {
  9566. height: math.unit(5 + 9 / 12, "feet"),
  9567. weight: math.unit(900, "lb"),
  9568. name: "Front (Fat)",
  9569. image: {
  9570. source: "./media/characters/samantha-kruse/fat.svg",
  9571. extra: 2688 / 2561
  9572. }
  9573. },
  9574. },
  9575. [
  9576. {
  9577. name: "Normal",
  9578. height: math.unit(5 + 9 / 12, "feet"),
  9579. default: true
  9580. }
  9581. ]
  9582. ))
  9583. characterMakers.push(() => makeCharacter(
  9584. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9585. {
  9586. back: {
  9587. height: math.unit(5 + 4 / 12, "feet"),
  9588. weight: math.unit(4963, "lb"),
  9589. name: "Back",
  9590. image: {
  9591. source: "./media/characters/amelia-rosie/back.svg",
  9592. extra: 1113 / 963,
  9593. bottom: 0.01
  9594. }
  9595. },
  9596. },
  9597. [
  9598. {
  9599. name: "Level 0",
  9600. height: math.unit(5 + 4 / 12, "feet")
  9601. },
  9602. {
  9603. name: "Level 1",
  9604. height: math.unit(164597, "feet"),
  9605. default: true
  9606. },
  9607. {
  9608. name: "Level 2",
  9609. height: math.unit(956243, "miles")
  9610. },
  9611. {
  9612. name: "Level 3",
  9613. height: math.unit(29421709423, "miles")
  9614. },
  9615. {
  9616. name: "Level 4",
  9617. height: math.unit(154, "lightyears")
  9618. },
  9619. {
  9620. name: "Level 5",
  9621. height: math.unit(4738272, "lightyears")
  9622. },
  9623. {
  9624. name: "Level 6",
  9625. height: math.unit(145787152896, "lightyears")
  9626. },
  9627. ]
  9628. ))
  9629. characterMakers.push(() => makeCharacter(
  9630. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9631. {
  9632. front: {
  9633. height: math.unit(5 + 11 / 12, "feet"),
  9634. weight: math.unit(65, "kg"),
  9635. name: "Front",
  9636. image: {
  9637. source: "./media/characters/rook-kitara/front.svg",
  9638. extra: 1347 / 1274,
  9639. bottom: 0.005
  9640. }
  9641. },
  9642. },
  9643. [
  9644. {
  9645. name: "Totally Unfair",
  9646. height: math.unit(1.8, "mm")
  9647. },
  9648. {
  9649. name: "Lap Rookie",
  9650. height: math.unit(1.4, "feet")
  9651. },
  9652. {
  9653. name: "Normal",
  9654. height: math.unit(5 + 11 / 12, "feet"),
  9655. default: true
  9656. },
  9657. {
  9658. name: "How Did This Happen",
  9659. height: math.unit(80, "miles")
  9660. }
  9661. ]
  9662. ))
  9663. characterMakers.push(() => makeCharacter(
  9664. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9665. {
  9666. front: {
  9667. height: math.unit(7, "feet"),
  9668. weight: math.unit(300, "lb"),
  9669. name: "Front",
  9670. image: {
  9671. source: "./media/characters/pisces/front.svg",
  9672. extra: 2255 / 2115,
  9673. bottom: 0.03
  9674. }
  9675. },
  9676. back: {
  9677. height: math.unit(7, "feet"),
  9678. weight: math.unit(300, "lb"),
  9679. name: "Back",
  9680. image: {
  9681. source: "./media/characters/pisces/back.svg",
  9682. extra: 2146 / 2055,
  9683. bottom: 0.04
  9684. }
  9685. },
  9686. },
  9687. [
  9688. {
  9689. name: "Normal",
  9690. height: math.unit(7, "feet"),
  9691. default: true
  9692. },
  9693. {
  9694. name: "Swimming Pool",
  9695. height: math.unit(12.2, "meters")
  9696. },
  9697. {
  9698. name: "Olympic Swimming Pool",
  9699. height: math.unit(56.3, "meters")
  9700. },
  9701. {
  9702. name: "Lake Superior",
  9703. height: math.unit(93900, "meters")
  9704. },
  9705. {
  9706. name: "Mediterranean Sea",
  9707. height: math.unit(644457, "meters")
  9708. },
  9709. {
  9710. name: "World's Oceans",
  9711. height: math.unit(4567491, "meters")
  9712. },
  9713. ]
  9714. ))
  9715. characterMakers.push(() => makeCharacter(
  9716. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9717. {
  9718. front: {
  9719. height: math.unit(2.3, "meters"),
  9720. weight: math.unit(120, "kg"),
  9721. name: "Front",
  9722. image: {
  9723. source: "./media/characters/zelas/front.svg"
  9724. }
  9725. },
  9726. side: {
  9727. height: math.unit(2.3, "meters"),
  9728. weight: math.unit(120, "kg"),
  9729. name: "Side",
  9730. image: {
  9731. source: "./media/characters/zelas/side.svg"
  9732. }
  9733. },
  9734. back: {
  9735. height: math.unit(2.3, "meters"),
  9736. weight: math.unit(120, "kg"),
  9737. name: "Back",
  9738. image: {
  9739. source: "./media/characters/zelas/back.svg"
  9740. }
  9741. },
  9742. foot: {
  9743. height: math.unit(1.116, "feet"),
  9744. name: "Foot",
  9745. image: {
  9746. source: "./media/characters/zelas/foot.svg"
  9747. }
  9748. },
  9749. },
  9750. [
  9751. {
  9752. name: "Normal",
  9753. height: math.unit(2.3, "meters")
  9754. },
  9755. {
  9756. name: "Macro",
  9757. height: math.unit(30, "meters"),
  9758. default: true
  9759. },
  9760. ]
  9761. ))
  9762. characterMakers.push(() => makeCharacter(
  9763. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9764. {
  9765. front: {
  9766. height: math.unit(1, "inch"),
  9767. weight: math.unit(0.21, "grams"),
  9768. name: "Front",
  9769. image: {
  9770. source: "./media/characters/talbot/front.svg",
  9771. extra: 594 / 544
  9772. }
  9773. },
  9774. },
  9775. [
  9776. {
  9777. name: "Micro",
  9778. height: math.unit(1, "inch"),
  9779. default: true
  9780. },
  9781. ]
  9782. ))
  9783. characterMakers.push(() => makeCharacter(
  9784. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9785. {
  9786. front: {
  9787. height: math.unit(3 + 3 / 12, "feet"),
  9788. weight: math.unit(51.8, "lb"),
  9789. name: "Front",
  9790. image: {
  9791. source: "./media/characters/fliss/front.svg",
  9792. extra: 840 / 640
  9793. }
  9794. },
  9795. },
  9796. [
  9797. {
  9798. name: "Teeny Tiny",
  9799. height: math.unit(1, "mm")
  9800. },
  9801. {
  9802. name: "Small",
  9803. height: math.unit(1, "inch"),
  9804. default: true
  9805. },
  9806. {
  9807. name: "Standard Sylveon",
  9808. height: math.unit(3 + 3 / 12, "feet")
  9809. },
  9810. {
  9811. name: "Large Nuisance",
  9812. height: math.unit(33, "feet")
  9813. },
  9814. {
  9815. name: "City Filler",
  9816. height: math.unit(3000, "feet")
  9817. },
  9818. {
  9819. name: "New Horizon",
  9820. height: math.unit(6000, "miles")
  9821. },
  9822. ]
  9823. ))
  9824. characterMakers.push(() => makeCharacter(
  9825. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9826. {
  9827. front: {
  9828. height: math.unit(5, "cm"),
  9829. weight: math.unit(1.94, "g"),
  9830. name: "Front",
  9831. image: {
  9832. source: "./media/characters/fleta/front.svg",
  9833. extra: 835 / 803
  9834. }
  9835. },
  9836. back: {
  9837. height: math.unit(5, "cm"),
  9838. weight: math.unit(1.94, "g"),
  9839. name: "Back",
  9840. image: {
  9841. source: "./media/characters/fleta/back.svg",
  9842. extra: 835 / 803
  9843. }
  9844. },
  9845. },
  9846. [
  9847. {
  9848. name: "Micro",
  9849. height: math.unit(5, "cm"),
  9850. default: true
  9851. },
  9852. ]
  9853. ))
  9854. characterMakers.push(() => makeCharacter(
  9855. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9856. {
  9857. front: {
  9858. height: math.unit(6, "feet"),
  9859. weight: math.unit(225, "lb"),
  9860. name: "Front",
  9861. image: {
  9862. source: "./media/characters/dominic/front.svg",
  9863. extra: 1770 / 1620,
  9864. bottom: 0.025
  9865. }
  9866. },
  9867. back: {
  9868. height: math.unit(6, "feet"),
  9869. weight: math.unit(225, "lb"),
  9870. name: "Back",
  9871. image: {
  9872. source: "./media/characters/dominic/back.svg",
  9873. extra: 1745 / 1620,
  9874. bottom: 0.065
  9875. }
  9876. },
  9877. },
  9878. [
  9879. {
  9880. name: "Nano",
  9881. height: math.unit(0.1, "mm")
  9882. },
  9883. {
  9884. name: "Micro-",
  9885. height: math.unit(1, "mm")
  9886. },
  9887. {
  9888. name: "Micro",
  9889. height: math.unit(4, "inches")
  9890. },
  9891. {
  9892. name: "Normal",
  9893. height: math.unit(6 + 4 / 12, "feet"),
  9894. default: true
  9895. },
  9896. {
  9897. name: "Macro",
  9898. height: math.unit(115, "feet")
  9899. },
  9900. {
  9901. name: "Macro+",
  9902. height: math.unit(955, "feet")
  9903. },
  9904. {
  9905. name: "Megamacro",
  9906. height: math.unit(8990, "feet")
  9907. },
  9908. {
  9909. name: "Gigmacro",
  9910. height: math.unit(9310, "miles")
  9911. },
  9912. {
  9913. name: "Teramacro",
  9914. height: math.unit(1567005010, "miles")
  9915. },
  9916. {
  9917. name: "Examacro",
  9918. height: math.unit(1425, "parsecs")
  9919. },
  9920. ]
  9921. ))
  9922. characterMakers.push(() => makeCharacter(
  9923. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9924. {
  9925. front: {
  9926. height: math.unit(400, "feet"),
  9927. weight: math.unit(44444444, "lb"),
  9928. name: "Front",
  9929. image: {
  9930. source: "./media/characters/major-colonel/front.svg"
  9931. }
  9932. },
  9933. back: {
  9934. height: math.unit(400, "feet"),
  9935. weight: math.unit(44444444, "lb"),
  9936. name: "Back",
  9937. image: {
  9938. source: "./media/characters/major-colonel/back.svg"
  9939. }
  9940. },
  9941. },
  9942. [
  9943. {
  9944. name: "Macro",
  9945. height: math.unit(400, "feet"),
  9946. default: true
  9947. },
  9948. ]
  9949. ))
  9950. characterMakers.push(() => makeCharacter(
  9951. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9952. {
  9953. catFront: {
  9954. height: math.unit(6, "feet"),
  9955. weight: math.unit(120, "lb"),
  9956. name: "Front (Cat Side)",
  9957. image: {
  9958. source: "./media/characters/axel-lycan/cat-front.svg",
  9959. extra: 430 / 402,
  9960. bottom: 43 / 472.35
  9961. }
  9962. },
  9963. catBack: {
  9964. height: math.unit(6, "feet"),
  9965. weight: math.unit(120, "lb"),
  9966. name: "Back (Cat Side)",
  9967. image: {
  9968. source: "./media/characters/axel-lycan/cat-back.svg",
  9969. extra: 447 / 419,
  9970. bottom: 23.3 / 469
  9971. }
  9972. },
  9973. wolfFront: {
  9974. height: math.unit(6, "feet"),
  9975. weight: math.unit(120, "lb"),
  9976. name: "Front (Wolf Side)",
  9977. image: {
  9978. source: "./media/characters/axel-lycan/wolf-front.svg",
  9979. extra: 485 / 456,
  9980. bottom: 19 / 504
  9981. }
  9982. },
  9983. wolfBack: {
  9984. height: math.unit(6, "feet"),
  9985. weight: math.unit(120, "lb"),
  9986. name: "Back (Wolf Side)",
  9987. image: {
  9988. source: "./media/characters/axel-lycan/wolf-back.svg",
  9989. extra: 475 / 438,
  9990. bottom: 39.2 / 514
  9991. }
  9992. },
  9993. },
  9994. [
  9995. {
  9996. name: "Macro",
  9997. height: math.unit(1, "km"),
  9998. default: true
  9999. },
  10000. ]
  10001. ))
  10002. characterMakers.push(() => makeCharacter(
  10003. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10004. {
  10005. front: {
  10006. height: math.unit(5 + 9 / 12, "feet"),
  10007. weight: math.unit(175, "lb"),
  10008. name: "Front",
  10009. image: {
  10010. source: "./media/characters/vanrel-hyena/front.svg",
  10011. extra: 1086 / 1010,
  10012. bottom: 0.04
  10013. }
  10014. },
  10015. },
  10016. [
  10017. {
  10018. name: "Normal",
  10019. height: math.unit(5 + 9 / 12, "feet"),
  10020. default: true
  10021. },
  10022. ]
  10023. ))
  10024. characterMakers.push(() => makeCharacter(
  10025. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10026. {
  10027. front: {
  10028. height: math.unit(6, "feet"),
  10029. weight: math.unit(103, "lb"),
  10030. name: "Front",
  10031. image: {
  10032. source: "./media/characters/abbott-absol/front.svg",
  10033. extra: 2010 / 1842
  10034. }
  10035. },
  10036. },
  10037. [
  10038. {
  10039. name: "Megamicro",
  10040. height: math.unit(0.1, "mm")
  10041. },
  10042. {
  10043. name: "Micro",
  10044. height: math.unit(1, "inch")
  10045. },
  10046. {
  10047. name: "Normal",
  10048. height: math.unit(6, "feet"),
  10049. default: true
  10050. },
  10051. ]
  10052. ))
  10053. characterMakers.push(() => makeCharacter(
  10054. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10055. {
  10056. front: {
  10057. height: math.unit(6, "feet"),
  10058. weight: math.unit(264, "lb"),
  10059. name: "Front",
  10060. image: {
  10061. source: "./media/characters/hector/front.svg",
  10062. extra: 2280 / 2130,
  10063. bottom: 0.07
  10064. }
  10065. },
  10066. },
  10067. [
  10068. {
  10069. name: "Normal",
  10070. height: math.unit(12.25, "foot"),
  10071. default: true
  10072. },
  10073. {
  10074. name: "Macro",
  10075. height: math.unit(160, "feet")
  10076. },
  10077. ]
  10078. ))
  10079. characterMakers.push(() => makeCharacter(
  10080. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10081. {
  10082. front: {
  10083. height: math.unit(6, "feet"),
  10084. weight: math.unit(150, "lb"),
  10085. name: "Front",
  10086. image: {
  10087. source: "./media/characters/sal/front.svg",
  10088. extra: 1846 / 1699,
  10089. bottom: 0.04
  10090. }
  10091. },
  10092. },
  10093. [
  10094. {
  10095. name: "Megamacro",
  10096. height: math.unit(10, "miles"),
  10097. default: true
  10098. },
  10099. ]
  10100. ))
  10101. characterMakers.push(() => makeCharacter(
  10102. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10103. {
  10104. front: {
  10105. height: math.unit(3, "meters"),
  10106. weight: math.unit(450, "kg"),
  10107. name: "front",
  10108. image: {
  10109. source: "./media/characters/ranger/front.svg",
  10110. extra: 2401 / 2243,
  10111. bottom: 0.05
  10112. }
  10113. },
  10114. },
  10115. [
  10116. {
  10117. name: "Normal",
  10118. height: math.unit(3, "meters"),
  10119. default: true
  10120. },
  10121. ]
  10122. ))
  10123. characterMakers.push(() => makeCharacter(
  10124. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10125. {
  10126. front: {
  10127. height: math.unit(14, "feet"),
  10128. weight: math.unit(800, "kg"),
  10129. name: "Front",
  10130. image: {
  10131. source: "./media/characters/theresa/front.svg",
  10132. extra: 3575 / 3346,
  10133. bottom: 0.03
  10134. }
  10135. },
  10136. },
  10137. [
  10138. {
  10139. name: "Normal",
  10140. height: math.unit(14, "feet"),
  10141. default: true
  10142. },
  10143. ]
  10144. ))
  10145. characterMakers.push(() => makeCharacter(
  10146. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10147. {
  10148. front: {
  10149. height: math.unit(6, "feet"),
  10150. weight: math.unit(3, "kg"),
  10151. name: "Front",
  10152. image: {
  10153. source: "./media/characters/ine/front.svg",
  10154. extra: 678 / 539,
  10155. bottom: 0.023
  10156. }
  10157. },
  10158. },
  10159. [
  10160. {
  10161. name: "Normal",
  10162. height: math.unit(2.265, "feet"),
  10163. default: true
  10164. },
  10165. ]
  10166. ))
  10167. characterMakers.push(() => makeCharacter(
  10168. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10169. {
  10170. front: {
  10171. height: math.unit(5, "feet"),
  10172. weight: math.unit(30, "kg"),
  10173. name: "Front",
  10174. image: {
  10175. source: "./media/characters/vial/front.svg",
  10176. extra: 1365 / 1277,
  10177. bottom: 0.04
  10178. }
  10179. },
  10180. },
  10181. [
  10182. {
  10183. name: "Normal",
  10184. height: math.unit(5, "feet"),
  10185. default: true
  10186. },
  10187. ]
  10188. ))
  10189. characterMakers.push(() => makeCharacter(
  10190. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10191. {
  10192. side: {
  10193. height: math.unit(3.4, "meters"),
  10194. weight: math.unit(1000, "lb"),
  10195. name: "Side",
  10196. image: {
  10197. source: "./media/characters/rovoska/side.svg",
  10198. extra: 4403 / 1515
  10199. }
  10200. },
  10201. },
  10202. [
  10203. {
  10204. name: "Normal",
  10205. height: math.unit(3.4, "meters"),
  10206. default: true
  10207. },
  10208. ]
  10209. ))
  10210. characterMakers.push(() => makeCharacter(
  10211. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10212. {
  10213. front: {
  10214. height: math.unit(8, "feet"),
  10215. weight: math.unit(315, "lb"),
  10216. name: "Front",
  10217. image: {
  10218. source: "./media/characters/gunner-rotthbauer/front.svg"
  10219. }
  10220. },
  10221. back: {
  10222. height: math.unit(8, "feet"),
  10223. weight: math.unit(315, "lb"),
  10224. name: "Back",
  10225. image: {
  10226. source: "./media/characters/gunner-rotthbauer/back.svg"
  10227. }
  10228. },
  10229. },
  10230. [
  10231. {
  10232. name: "Micro",
  10233. height: math.unit(3.5, "inches")
  10234. },
  10235. {
  10236. name: "Normal",
  10237. height: math.unit(8, "feet"),
  10238. default: true
  10239. },
  10240. {
  10241. name: "Macro",
  10242. height: math.unit(250, "feet")
  10243. },
  10244. {
  10245. name: "Megamacro",
  10246. height: math.unit(1, "AU")
  10247. },
  10248. ]
  10249. ))
  10250. characterMakers.push(() => makeCharacter(
  10251. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10252. {
  10253. front: {
  10254. height: math.unit(5 + 5 / 12, "feet"),
  10255. weight: math.unit(140, "lb"),
  10256. name: "Front",
  10257. image: {
  10258. source: "./media/characters/allatia/front.svg",
  10259. extra: 1227 / 1180,
  10260. bottom: 0.027
  10261. }
  10262. },
  10263. },
  10264. [
  10265. {
  10266. name: "Normal",
  10267. height: math.unit(5 + 5 / 12, "feet")
  10268. },
  10269. {
  10270. name: "Macro",
  10271. height: math.unit(250, "feet"),
  10272. default: true
  10273. },
  10274. {
  10275. name: "Megamacro",
  10276. height: math.unit(8, "miles")
  10277. }
  10278. ]
  10279. ))
  10280. characterMakers.push(() => makeCharacter(
  10281. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10282. {
  10283. front: {
  10284. height: math.unit(6, "feet"),
  10285. weight: math.unit(120, "lb"),
  10286. name: "Front",
  10287. image: {
  10288. source: "./media/characters/tene/front.svg",
  10289. extra: 814/750,
  10290. bottom: 36/850
  10291. }
  10292. },
  10293. stomping: {
  10294. height: math.unit(2.025, "meters"),
  10295. weight: math.unit(120, "lb"),
  10296. name: "Stomping",
  10297. image: {
  10298. source: "./media/characters/tene/stomping.svg",
  10299. extra: 885/821,
  10300. bottom: 15/900
  10301. }
  10302. },
  10303. sitting: {
  10304. height: math.unit(1, "meter"),
  10305. weight: math.unit(120, "lb"),
  10306. name: "Sitting",
  10307. image: {
  10308. source: "./media/characters/tene/sitting.svg",
  10309. extra: 396/366,
  10310. bottom: 79/475
  10311. }
  10312. },
  10313. smiling: {
  10314. height: math.unit(1.2, "feet"),
  10315. name: "Smiling",
  10316. image: {
  10317. source: "./media/characters/tene/smiling.svg",
  10318. extra: 1364/1071,
  10319. bottom: 0/1364
  10320. }
  10321. },
  10322. smug: {
  10323. height: math.unit(1.3, "feet"),
  10324. name: "Smug",
  10325. image: {
  10326. source: "./media/characters/tene/smug.svg",
  10327. extra: 1323/1082,
  10328. bottom: 0/1323
  10329. }
  10330. },
  10331. feral: {
  10332. height: math.unit(3.9, "feet"),
  10333. weight: math.unit(250, "lb"),
  10334. name: "Feral",
  10335. image: {
  10336. source: "./media/characters/tene/feral.svg",
  10337. extra: 717 / 458,
  10338. bottom: 0.179
  10339. }
  10340. },
  10341. },
  10342. [
  10343. {
  10344. name: "Normal",
  10345. height: math.unit(6, "feet")
  10346. },
  10347. {
  10348. name: "Macro",
  10349. height: math.unit(300, "feet"),
  10350. default: true
  10351. },
  10352. {
  10353. name: "Megamacro",
  10354. height: math.unit(5, "miles")
  10355. },
  10356. ]
  10357. ))
  10358. characterMakers.push(() => makeCharacter(
  10359. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10360. {
  10361. side: {
  10362. height: math.unit(6, "feet"),
  10363. name: "Side",
  10364. image: {
  10365. source: "./media/characters/evander/side.svg",
  10366. extra: 877 / 477
  10367. }
  10368. },
  10369. },
  10370. [
  10371. {
  10372. name: "Normal",
  10373. height: math.unit(0.83, "meters"),
  10374. default: true
  10375. },
  10376. ]
  10377. ))
  10378. characterMakers.push(() => makeCharacter(
  10379. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10380. {
  10381. front: {
  10382. height: math.unit(12, "feet"),
  10383. weight: math.unit(1000, "lb"),
  10384. name: "Front",
  10385. image: {
  10386. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10387. extra: 1762 / 1611
  10388. }
  10389. },
  10390. back: {
  10391. height: math.unit(12, "feet"),
  10392. weight: math.unit(1000, "lb"),
  10393. name: "Back",
  10394. image: {
  10395. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10396. extra: 1762 / 1611
  10397. }
  10398. },
  10399. },
  10400. [
  10401. {
  10402. name: "Normal",
  10403. height: math.unit(12, "feet"),
  10404. default: true
  10405. },
  10406. {
  10407. name: "Kaiju",
  10408. height: math.unit(150, "feet")
  10409. },
  10410. ]
  10411. ))
  10412. characterMakers.push(() => makeCharacter(
  10413. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10414. {
  10415. front: {
  10416. height: math.unit(6, "feet"),
  10417. weight: math.unit(150, "lb"),
  10418. name: "Front",
  10419. image: {
  10420. source: "./media/characters/zero-alurus/front.svg"
  10421. }
  10422. },
  10423. back: {
  10424. height: math.unit(6, "feet"),
  10425. weight: math.unit(150, "lb"),
  10426. name: "Back",
  10427. image: {
  10428. source: "./media/characters/zero-alurus/back.svg"
  10429. }
  10430. },
  10431. },
  10432. [
  10433. {
  10434. name: "Normal",
  10435. height: math.unit(5 + 10 / 12, "feet")
  10436. },
  10437. {
  10438. name: "Macro",
  10439. height: math.unit(60, "feet"),
  10440. default: true
  10441. },
  10442. {
  10443. name: "Macro+",
  10444. height: math.unit(450, "feet")
  10445. },
  10446. ]
  10447. ))
  10448. characterMakers.push(() => makeCharacter(
  10449. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10450. {
  10451. front: {
  10452. height: math.unit(6, "feet"),
  10453. weight: math.unit(200, "lb"),
  10454. name: "Front",
  10455. image: {
  10456. source: "./media/characters/mega-shi/front.svg",
  10457. extra: 1279 / 1250,
  10458. bottom: 0.02
  10459. }
  10460. },
  10461. back: {
  10462. height: math.unit(6, "feet"),
  10463. weight: math.unit(200, "lb"),
  10464. name: "Back",
  10465. image: {
  10466. source: "./media/characters/mega-shi/back.svg",
  10467. extra: 1279 / 1250,
  10468. bottom: 0.02
  10469. }
  10470. },
  10471. },
  10472. [
  10473. {
  10474. name: "Micro",
  10475. height: math.unit(16 + 6 / 12, "feet")
  10476. },
  10477. {
  10478. name: "Third Dimension",
  10479. height: math.unit(40, "meters")
  10480. },
  10481. {
  10482. name: "Normal",
  10483. height: math.unit(660, "feet"),
  10484. default: true
  10485. },
  10486. {
  10487. name: "Megamacro",
  10488. height: math.unit(10, "miles")
  10489. },
  10490. {
  10491. name: "Planetary Launch",
  10492. height: math.unit(500, "miles")
  10493. },
  10494. {
  10495. name: "Interstellar",
  10496. height: math.unit(1e9, "miles")
  10497. },
  10498. {
  10499. name: "Leaving the Universe",
  10500. height: math.unit(1, "gigaparsec")
  10501. },
  10502. {
  10503. name: "Travelling Universes",
  10504. height: math.unit(30e15, "parsecs")
  10505. },
  10506. ]
  10507. ))
  10508. characterMakers.push(() => makeCharacter(
  10509. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10510. {
  10511. front: {
  10512. height: math.unit(5 + 4/12, "feet"),
  10513. weight: math.unit(120, "lb"),
  10514. name: "Front",
  10515. image: {
  10516. source: "./media/characters/odyssey/front.svg",
  10517. extra: 1747/1571,
  10518. bottom: 47/1794
  10519. }
  10520. },
  10521. side: {
  10522. height: math.unit(5.1, "feet"),
  10523. weight: math.unit(120, "lb"),
  10524. name: "Side",
  10525. image: {
  10526. source: "./media/characters/odyssey/side.svg",
  10527. extra: 1847/1619,
  10528. bottom: 47/1894
  10529. }
  10530. },
  10531. lounging: {
  10532. height: math.unit(1.464, "feet"),
  10533. weight: math.unit(120, "lb"),
  10534. name: "Lounging",
  10535. image: {
  10536. source: "./media/characters/odyssey/lounging.svg",
  10537. extra: 1235/837,
  10538. bottom: 551/1786
  10539. }
  10540. },
  10541. },
  10542. [
  10543. {
  10544. name: "Normal",
  10545. height: math.unit(5 + 4 / 12, "feet")
  10546. },
  10547. {
  10548. name: "Macro",
  10549. height: math.unit(1, "km")
  10550. },
  10551. {
  10552. name: "Megamacro",
  10553. height: math.unit(3000, "km")
  10554. },
  10555. {
  10556. name: "Gigamacro",
  10557. height: math.unit(1, "AU"),
  10558. default: true
  10559. },
  10560. {
  10561. name: "Omniversal",
  10562. height: math.unit(100e14, "lightyears")
  10563. },
  10564. ]
  10565. ))
  10566. characterMakers.push(() => makeCharacter(
  10567. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10568. {
  10569. front: {
  10570. height: math.unit(6, "feet"),
  10571. weight: math.unit(300, "lb"),
  10572. name: "Front",
  10573. image: {
  10574. source: "./media/characters/mekuto/front.svg",
  10575. extra: 921 / 832,
  10576. bottom: 0.03
  10577. }
  10578. },
  10579. hand: {
  10580. height: math.unit(6 / 10.24, "feet"),
  10581. name: "Hand",
  10582. image: {
  10583. source: "./media/characters/mekuto/hand.svg"
  10584. }
  10585. },
  10586. foot: {
  10587. height: math.unit(6 / 5.05, "feet"),
  10588. name: "Foot",
  10589. image: {
  10590. source: "./media/characters/mekuto/foot.svg"
  10591. }
  10592. },
  10593. },
  10594. [
  10595. {
  10596. name: "Minimicro",
  10597. height: math.unit(0.2, "inches")
  10598. },
  10599. {
  10600. name: "Micro",
  10601. height: math.unit(1.5, "inches")
  10602. },
  10603. {
  10604. name: "Normal",
  10605. height: math.unit(5 + 11 / 12, "feet"),
  10606. default: true
  10607. },
  10608. {
  10609. name: "Minimacro",
  10610. height: math.unit(17 + 9 / 12, "feet")
  10611. },
  10612. {
  10613. name: "Macro",
  10614. height: math.unit(177.5, "feet")
  10615. },
  10616. {
  10617. name: "Megamacro",
  10618. height: math.unit(152, "miles")
  10619. },
  10620. ]
  10621. ))
  10622. characterMakers.push(() => makeCharacter(
  10623. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10624. {
  10625. front: {
  10626. height: math.unit(6.5, "inches"),
  10627. weight: math.unit(13, "oz"),
  10628. name: "Front",
  10629. image: {
  10630. source: "./media/characters/dafydd-tomos/front.svg",
  10631. extra: 2990 / 2603,
  10632. bottom: 0.03
  10633. }
  10634. },
  10635. },
  10636. [
  10637. {
  10638. name: "Micro",
  10639. height: math.unit(6.5, "inches"),
  10640. default: true
  10641. },
  10642. ]
  10643. ))
  10644. characterMakers.push(() => makeCharacter(
  10645. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10646. {
  10647. front: {
  10648. height: math.unit(6, "feet"),
  10649. weight: math.unit(150, "lb"),
  10650. name: "Front",
  10651. image: {
  10652. source: "./media/characters/splinter/front.svg",
  10653. extra: 2990 / 2882,
  10654. bottom: 0.04
  10655. }
  10656. },
  10657. back: {
  10658. height: math.unit(6, "feet"),
  10659. weight: math.unit(150, "lb"),
  10660. name: "Back",
  10661. image: {
  10662. source: "./media/characters/splinter/back.svg",
  10663. extra: 2990 / 2882,
  10664. bottom: 0.04
  10665. }
  10666. },
  10667. },
  10668. [
  10669. {
  10670. name: "Normal",
  10671. height: math.unit(6, "feet")
  10672. },
  10673. {
  10674. name: "Macro",
  10675. height: math.unit(230, "meters"),
  10676. default: true
  10677. },
  10678. ]
  10679. ))
  10680. characterMakers.push(() => makeCharacter(
  10681. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10682. {
  10683. front: {
  10684. height: math.unit(4 + 10 / 12, "feet"),
  10685. weight: math.unit(480, "lb"),
  10686. name: "Front",
  10687. image: {
  10688. source: "./media/characters/snow-gabumon/front.svg",
  10689. extra: 1140 / 963,
  10690. bottom: 0.058
  10691. }
  10692. },
  10693. back: {
  10694. height: math.unit(4 + 10 / 12, "feet"),
  10695. weight: math.unit(480, "lb"),
  10696. name: "Back",
  10697. image: {
  10698. source: "./media/characters/snow-gabumon/back.svg",
  10699. extra: 1115 / 962,
  10700. bottom: 0.041
  10701. }
  10702. },
  10703. frontUndresed: {
  10704. height: math.unit(4 + 10 / 12, "feet"),
  10705. weight: math.unit(480, "lb"),
  10706. name: "Front (Undressed)",
  10707. image: {
  10708. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10709. extra: 1061 / 960,
  10710. bottom: 0.045
  10711. }
  10712. },
  10713. },
  10714. [
  10715. {
  10716. name: "Micro",
  10717. height: math.unit(1, "inch")
  10718. },
  10719. {
  10720. name: "Normal",
  10721. height: math.unit(4 + 10 / 12, "feet"),
  10722. default: true
  10723. },
  10724. {
  10725. name: "Macro",
  10726. height: math.unit(200, "feet")
  10727. },
  10728. {
  10729. name: "Megamacro",
  10730. height: math.unit(120, "miles")
  10731. },
  10732. {
  10733. name: "Gigamacro",
  10734. height: math.unit(9800, "miles")
  10735. },
  10736. ]
  10737. ))
  10738. characterMakers.push(() => makeCharacter(
  10739. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10740. {
  10741. front: {
  10742. height: math.unit(1.7, "meters"),
  10743. weight: math.unit(140, "lb"),
  10744. name: "Front",
  10745. image: {
  10746. source: "./media/characters/moody/front.svg",
  10747. extra: 3226 / 3007,
  10748. bottom: 0.087
  10749. }
  10750. },
  10751. },
  10752. [
  10753. {
  10754. name: "Micro",
  10755. height: math.unit(1, "mm")
  10756. },
  10757. {
  10758. name: "Normal",
  10759. height: math.unit(1.7, "meters"),
  10760. default: true
  10761. },
  10762. {
  10763. name: "Macro",
  10764. height: math.unit(80, "meters")
  10765. },
  10766. {
  10767. name: "Macro+",
  10768. height: math.unit(500, "meters")
  10769. },
  10770. ]
  10771. ))
  10772. characterMakers.push(() => makeCharacter(
  10773. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10774. {
  10775. front: {
  10776. height: math.unit(6, "feet"),
  10777. weight: math.unit(150, "lb"),
  10778. name: "Front",
  10779. image: {
  10780. source: "./media/characters/zyas/front.svg",
  10781. extra: 1180 / 1120,
  10782. bottom: 0.045
  10783. }
  10784. },
  10785. },
  10786. [
  10787. {
  10788. name: "Normal",
  10789. height: math.unit(10, "feet"),
  10790. default: true
  10791. },
  10792. {
  10793. name: "Macro",
  10794. height: math.unit(500, "feet")
  10795. },
  10796. {
  10797. name: "Megamacro",
  10798. height: math.unit(5, "miles")
  10799. },
  10800. {
  10801. name: "Teramacro",
  10802. height: math.unit(150000, "miles")
  10803. },
  10804. ]
  10805. ))
  10806. characterMakers.push(() => makeCharacter(
  10807. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10808. {
  10809. front: {
  10810. height: math.unit(6, "feet"),
  10811. weight: math.unit(150, "lb"),
  10812. name: "Front",
  10813. image: {
  10814. source: "./media/characters/cuon/front.svg",
  10815. extra: 1390 / 1320,
  10816. bottom: 0.008
  10817. }
  10818. },
  10819. },
  10820. [
  10821. {
  10822. name: "Micro",
  10823. height: math.unit(3, "inches")
  10824. },
  10825. {
  10826. name: "Normal",
  10827. height: math.unit(18 + 9 / 12, "feet"),
  10828. default: true
  10829. },
  10830. {
  10831. name: "Macro",
  10832. height: math.unit(360, "feet")
  10833. },
  10834. {
  10835. name: "Megamacro",
  10836. height: math.unit(360, "miles")
  10837. },
  10838. ]
  10839. ))
  10840. characterMakers.push(() => makeCharacter(
  10841. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10842. {
  10843. front: {
  10844. height: math.unit(2.4, "meters"),
  10845. weight: math.unit(70, "kg"),
  10846. name: "Front",
  10847. image: {
  10848. source: "./media/characters/nyanuxk/front.svg",
  10849. extra: 1172 / 1084,
  10850. bottom: 0.065
  10851. }
  10852. },
  10853. side: {
  10854. height: math.unit(2.4, "meters"),
  10855. weight: math.unit(70, "kg"),
  10856. name: "Side",
  10857. image: {
  10858. source: "./media/characters/nyanuxk/side.svg",
  10859. extra: 1190 / 1132,
  10860. bottom: 0.007
  10861. }
  10862. },
  10863. back: {
  10864. height: math.unit(2.4, "meters"),
  10865. weight: math.unit(70, "kg"),
  10866. name: "Back",
  10867. image: {
  10868. source: "./media/characters/nyanuxk/back.svg",
  10869. extra: 1200 / 1141,
  10870. bottom: 0.015
  10871. }
  10872. },
  10873. foot: {
  10874. height: math.unit(0.52, "meters"),
  10875. name: "Foot",
  10876. image: {
  10877. source: "./media/characters/nyanuxk/foot.svg"
  10878. }
  10879. },
  10880. },
  10881. [
  10882. {
  10883. name: "Micro",
  10884. height: math.unit(2, "cm")
  10885. },
  10886. {
  10887. name: "Normal",
  10888. height: math.unit(2.4, "meters"),
  10889. default: true
  10890. },
  10891. {
  10892. name: "Smaller Macro",
  10893. height: math.unit(120, "meters")
  10894. },
  10895. {
  10896. name: "Bigger Macro",
  10897. height: math.unit(1.2, "km")
  10898. },
  10899. {
  10900. name: "Megamacro",
  10901. height: math.unit(15, "kilometers")
  10902. },
  10903. {
  10904. name: "Gigamacro",
  10905. height: math.unit(2000, "km")
  10906. },
  10907. {
  10908. name: "Teramacro",
  10909. height: math.unit(500000, "km")
  10910. },
  10911. ]
  10912. ))
  10913. characterMakers.push(() => makeCharacter(
  10914. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10915. {
  10916. side: {
  10917. height: math.unit(6, "feet"),
  10918. name: "Side",
  10919. image: {
  10920. source: "./media/characters/ailbhe/side.svg",
  10921. extra: 757 / 464,
  10922. bottom: 0.041
  10923. }
  10924. },
  10925. },
  10926. [
  10927. {
  10928. name: "Normal",
  10929. height: math.unit(1.07, "meters"),
  10930. default: true
  10931. },
  10932. ]
  10933. ))
  10934. characterMakers.push(() => makeCharacter(
  10935. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10936. {
  10937. front: {
  10938. height: math.unit(6, "feet"),
  10939. weight: math.unit(120, "kg"),
  10940. name: "Front",
  10941. image: {
  10942. source: "./media/characters/zevulfius/front.svg",
  10943. extra: 965 / 903
  10944. }
  10945. },
  10946. side: {
  10947. height: math.unit(6, "feet"),
  10948. weight: math.unit(120, "kg"),
  10949. name: "Side",
  10950. image: {
  10951. source: "./media/characters/zevulfius/side.svg",
  10952. extra: 939 / 900
  10953. }
  10954. },
  10955. back: {
  10956. height: math.unit(6, "feet"),
  10957. weight: math.unit(120, "kg"),
  10958. name: "Back",
  10959. image: {
  10960. source: "./media/characters/zevulfius/back.svg",
  10961. extra: 918 / 854,
  10962. bottom: 0.005
  10963. }
  10964. },
  10965. foot: {
  10966. height: math.unit(6 / 3.72, "feet"),
  10967. name: "Foot",
  10968. image: {
  10969. source: "./media/characters/zevulfius/foot.svg"
  10970. }
  10971. },
  10972. },
  10973. [
  10974. {
  10975. name: "Macro",
  10976. height: math.unit(750, "meters")
  10977. },
  10978. {
  10979. name: "Megamacro",
  10980. height: math.unit(20, "km"),
  10981. default: true
  10982. },
  10983. {
  10984. name: "Gigamacro",
  10985. height: math.unit(2000, "km")
  10986. },
  10987. {
  10988. name: "Teramacro",
  10989. height: math.unit(250000, "km")
  10990. },
  10991. ]
  10992. ))
  10993. characterMakers.push(() => makeCharacter(
  10994. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10995. {
  10996. front: {
  10997. height: math.unit(100, "feet"),
  10998. weight: math.unit(350, "kg"),
  10999. name: "Front",
  11000. image: {
  11001. source: "./media/characters/rikes/front.svg",
  11002. extra: 1565 / 1483,
  11003. bottom: 0.017
  11004. }
  11005. },
  11006. },
  11007. [
  11008. {
  11009. name: "Macro",
  11010. height: math.unit(100, "feet"),
  11011. default: true
  11012. },
  11013. ]
  11014. ))
  11015. characterMakers.push(() => makeCharacter(
  11016. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11017. {
  11018. front: {
  11019. height: math.unit(8, "feet"),
  11020. weight: math.unit(356, "lb"),
  11021. name: "Front",
  11022. image: {
  11023. source: "./media/characters/adam-silver-mane/front.svg",
  11024. extra: 1036/937,
  11025. bottom: 63/1099
  11026. }
  11027. },
  11028. side: {
  11029. height: math.unit(8, "feet"),
  11030. weight: math.unit(356, "lb"),
  11031. name: "Side",
  11032. image: {
  11033. source: "./media/characters/adam-silver-mane/side.svg",
  11034. extra: 997/901,
  11035. bottom: 59/1056
  11036. }
  11037. },
  11038. frontNsfw: {
  11039. height: math.unit(8, "feet"),
  11040. weight: math.unit(356, "lb"),
  11041. name: "Front (NSFW)",
  11042. image: {
  11043. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11044. extra: 1036/937,
  11045. bottom: 63/1099
  11046. }
  11047. },
  11048. sideNsfw: {
  11049. height: math.unit(8, "feet"),
  11050. weight: math.unit(356, "lb"),
  11051. name: "Side (NSFW)",
  11052. image: {
  11053. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11054. extra: 997/901,
  11055. bottom: 59/1056
  11056. }
  11057. },
  11058. dick: {
  11059. height: math.unit(2.1, "feet"),
  11060. name: "Dick",
  11061. image: {
  11062. source: "./media/characters/adam-silver-mane/dick.svg"
  11063. }
  11064. },
  11065. taur: {
  11066. height: math.unit(16, "feet"),
  11067. weight: math.unit(1500, "kg"),
  11068. name: "Taur",
  11069. image: {
  11070. source: "./media/characters/adam-silver-mane/taur.svg",
  11071. extra: 1713 / 1571,
  11072. bottom: 0.01
  11073. }
  11074. },
  11075. },
  11076. [
  11077. {
  11078. name: "Normal",
  11079. height: math.unit(8, "feet")
  11080. },
  11081. {
  11082. name: "Minimacro",
  11083. height: math.unit(80, "feet")
  11084. },
  11085. {
  11086. name: "MDA",
  11087. height: math.unit(80, "meters")
  11088. },
  11089. {
  11090. name: "Macro",
  11091. height: math.unit(800, "feet"),
  11092. default: true
  11093. },
  11094. {
  11095. name: "Megamacro",
  11096. height: math.unit(8000, "feet")
  11097. },
  11098. {
  11099. name: "Gigamacro",
  11100. height: math.unit(800, "miles")
  11101. },
  11102. {
  11103. name: "Teramacro",
  11104. height: math.unit(80000, "miles")
  11105. },
  11106. {
  11107. name: "Celestial",
  11108. height: math.unit(8e6, "miles")
  11109. },
  11110. {
  11111. name: "Star Dragon",
  11112. height: math.unit(800000, "parsecs")
  11113. },
  11114. {
  11115. name: "Godly",
  11116. height: math.unit(800, "teraparsecs")
  11117. },
  11118. ]
  11119. ))
  11120. characterMakers.push(() => makeCharacter(
  11121. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11122. {
  11123. front: {
  11124. height: math.unit(6, "feet"),
  11125. weight: math.unit(150, "lb"),
  11126. name: "Front",
  11127. image: {
  11128. source: "./media/characters/ky'owin/front.svg",
  11129. extra: 3888 / 3068,
  11130. bottom: 0.015
  11131. }
  11132. },
  11133. },
  11134. [
  11135. {
  11136. name: "Normal",
  11137. height: math.unit(6 + 8 / 12, "feet")
  11138. },
  11139. {
  11140. name: "Large",
  11141. height: math.unit(68, "feet")
  11142. },
  11143. {
  11144. name: "Macro",
  11145. height: math.unit(132, "feet")
  11146. },
  11147. {
  11148. name: "Macro+",
  11149. height: math.unit(340, "feet")
  11150. },
  11151. {
  11152. name: "Macro++",
  11153. height: math.unit(680, "feet"),
  11154. default: true
  11155. },
  11156. {
  11157. name: "Megamacro",
  11158. height: math.unit(1, "mile")
  11159. },
  11160. {
  11161. name: "Megamacro+",
  11162. height: math.unit(10, "miles")
  11163. },
  11164. ]
  11165. ))
  11166. characterMakers.push(() => makeCharacter(
  11167. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11168. {
  11169. front: {
  11170. height: math.unit(4, "feet"),
  11171. weight: math.unit(50, "lb"),
  11172. name: "Front",
  11173. image: {
  11174. source: "./media/characters/mal/front.svg",
  11175. extra: 785 / 724,
  11176. bottom: 0.07
  11177. }
  11178. },
  11179. },
  11180. [
  11181. {
  11182. name: "Micro",
  11183. height: math.unit(4, "inches")
  11184. },
  11185. {
  11186. name: "Normal",
  11187. height: math.unit(4, "feet"),
  11188. default: true
  11189. },
  11190. {
  11191. name: "Macro",
  11192. height: math.unit(200, "feet")
  11193. },
  11194. ]
  11195. ))
  11196. characterMakers.push(() => makeCharacter(
  11197. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11198. {
  11199. front: {
  11200. height: math.unit(6, "feet"),
  11201. weight: math.unit(150, "lb"),
  11202. name: "Front",
  11203. image: {
  11204. source: "./media/characters/jordan-deware/front.svg",
  11205. extra: 1191 / 1012
  11206. }
  11207. },
  11208. },
  11209. [
  11210. {
  11211. name: "Nano",
  11212. height: math.unit(0.01, "mm")
  11213. },
  11214. {
  11215. name: "Minimicro",
  11216. height: math.unit(1, "mm")
  11217. },
  11218. {
  11219. name: "Micro",
  11220. height: math.unit(0.5, "inches")
  11221. },
  11222. {
  11223. name: "Normal",
  11224. height: math.unit(4, "feet"),
  11225. default: true
  11226. },
  11227. {
  11228. name: "Minimacro",
  11229. height: math.unit(40, "meters")
  11230. },
  11231. {
  11232. name: "Small Macro",
  11233. height: math.unit(400, "meters")
  11234. },
  11235. {
  11236. name: "Macro",
  11237. height: math.unit(4, "miles")
  11238. },
  11239. {
  11240. name: "Megamacro",
  11241. height: math.unit(40, "miles")
  11242. },
  11243. {
  11244. name: "Megamacro+",
  11245. height: math.unit(400, "miles")
  11246. },
  11247. {
  11248. name: "Gigamacro",
  11249. height: math.unit(400000, "miles")
  11250. },
  11251. ]
  11252. ))
  11253. characterMakers.push(() => makeCharacter(
  11254. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11255. {
  11256. side: {
  11257. height: math.unit(6, "feet"),
  11258. weight: math.unit(150, "lb"),
  11259. name: "Side",
  11260. image: {
  11261. source: "./media/characters/kimiko/side.svg",
  11262. extra: 600 / 358
  11263. }
  11264. },
  11265. },
  11266. [
  11267. {
  11268. name: "Normal",
  11269. height: math.unit(15, "feet"),
  11270. default: true
  11271. },
  11272. {
  11273. name: "Macro",
  11274. height: math.unit(220, "feet")
  11275. },
  11276. {
  11277. name: "Macro+",
  11278. height: math.unit(1450, "feet")
  11279. },
  11280. {
  11281. name: "Megamacro",
  11282. height: math.unit(11500, "feet")
  11283. },
  11284. {
  11285. name: "Gigamacro",
  11286. height: math.unit(9500, "miles")
  11287. },
  11288. {
  11289. name: "Teramacro",
  11290. height: math.unit(2208005005, "miles")
  11291. },
  11292. {
  11293. name: "Examacro",
  11294. height: math.unit(2750, "parsecs")
  11295. },
  11296. {
  11297. name: "Zettamacro",
  11298. height: math.unit(101500, "parsecs")
  11299. },
  11300. ]
  11301. ))
  11302. characterMakers.push(() => makeCharacter(
  11303. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11304. {
  11305. front: {
  11306. height: math.unit(6, "feet"),
  11307. weight: math.unit(70, "kg"),
  11308. name: "Front",
  11309. image: {
  11310. source: "./media/characters/andrew-sleepy/front.svg"
  11311. }
  11312. },
  11313. side: {
  11314. height: math.unit(6, "feet"),
  11315. weight: math.unit(70, "kg"),
  11316. name: "Side",
  11317. image: {
  11318. source: "./media/characters/andrew-sleepy/side.svg"
  11319. }
  11320. },
  11321. },
  11322. [
  11323. {
  11324. name: "Micro",
  11325. height: math.unit(1, "mm"),
  11326. default: true
  11327. },
  11328. ]
  11329. ))
  11330. characterMakers.push(() => makeCharacter(
  11331. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11332. {
  11333. front: {
  11334. height: math.unit(6, "feet"),
  11335. weight: math.unit(150, "lb"),
  11336. name: "Front",
  11337. image: {
  11338. source: "./media/characters/judio/front.svg",
  11339. extra: 1258 / 1110
  11340. }
  11341. },
  11342. },
  11343. [
  11344. {
  11345. name: "Normal",
  11346. height: math.unit(5 + 6 / 12, "feet")
  11347. },
  11348. {
  11349. name: "Macro",
  11350. height: math.unit(1000, "feet"),
  11351. default: true
  11352. },
  11353. {
  11354. name: "Megamacro",
  11355. height: math.unit(10, "miles")
  11356. },
  11357. ]
  11358. ))
  11359. characterMakers.push(() => makeCharacter(
  11360. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11361. {
  11362. frontDressed: {
  11363. height: math.unit(6, "feet"),
  11364. weight: math.unit(68, "kg"),
  11365. name: "Front (Dressed)",
  11366. image: {
  11367. source: "./media/characters/nomaxice/front-dressed.svg",
  11368. extra: 1137/824,
  11369. bottom: 74/1211
  11370. }
  11371. },
  11372. frontShorts: {
  11373. height: math.unit(6, "feet"),
  11374. weight: math.unit(68, "kg"),
  11375. name: "Front (Shorts)",
  11376. image: {
  11377. source: "./media/characters/nomaxice/front-shorts.svg",
  11378. extra: 1137/824,
  11379. bottom: 74/1211
  11380. }
  11381. },
  11382. back: {
  11383. height: math.unit(6, "feet"),
  11384. weight: math.unit(68, "kg"),
  11385. name: "Back",
  11386. image: {
  11387. source: "./media/characters/nomaxice/back.svg",
  11388. extra: 822/786,
  11389. bottom: 39/861
  11390. }
  11391. },
  11392. hand: {
  11393. height: math.unit(0.565, "feet"),
  11394. name: "Hand",
  11395. image: {
  11396. source: "./media/characters/nomaxice/hand.svg"
  11397. }
  11398. },
  11399. foot: {
  11400. height: math.unit(1, "feet"),
  11401. name: "Foot",
  11402. image: {
  11403. source: "./media/characters/nomaxice/foot.svg"
  11404. }
  11405. },
  11406. },
  11407. [
  11408. {
  11409. name: "Micro",
  11410. height: math.unit(8, "cm")
  11411. },
  11412. {
  11413. name: "Norm",
  11414. height: math.unit(1.82, "m")
  11415. },
  11416. {
  11417. name: "Norm+",
  11418. height: math.unit(8.8, "feet"),
  11419. default: true
  11420. },
  11421. {
  11422. name: "Big",
  11423. height: math.unit(8, "meters")
  11424. },
  11425. {
  11426. name: "Macro",
  11427. height: math.unit(18, "meters")
  11428. },
  11429. {
  11430. name: "Macro+",
  11431. height: math.unit(88, "meters")
  11432. },
  11433. ]
  11434. ))
  11435. characterMakers.push(() => makeCharacter(
  11436. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11437. {
  11438. front: {
  11439. height: math.unit(12, "feet"),
  11440. weight: math.unit(1.5, "tons"),
  11441. name: "Front",
  11442. image: {
  11443. source: "./media/characters/dydros/front.svg",
  11444. extra: 863 / 800,
  11445. bottom: 0.015
  11446. }
  11447. },
  11448. back: {
  11449. height: math.unit(12, "feet"),
  11450. weight: math.unit(1.5, "tons"),
  11451. name: "Back",
  11452. image: {
  11453. source: "./media/characters/dydros/back.svg",
  11454. extra: 900 / 843,
  11455. bottom: 0.005
  11456. }
  11457. },
  11458. },
  11459. [
  11460. {
  11461. name: "Normal",
  11462. height: math.unit(12, "feet"),
  11463. default: true
  11464. },
  11465. ]
  11466. ))
  11467. characterMakers.push(() => makeCharacter(
  11468. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11469. {
  11470. front: {
  11471. height: math.unit(6, "feet"),
  11472. weight: math.unit(100, "kg"),
  11473. name: "Front",
  11474. image: {
  11475. source: "./media/characters/riggi/front.svg",
  11476. extra: 5787 / 5303
  11477. }
  11478. },
  11479. hyper: {
  11480. height: math.unit(6 * 5 / 3, "feet"),
  11481. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11482. name: "Hyper",
  11483. image: {
  11484. source: "./media/characters/riggi/hyper.svg",
  11485. extra: 3595 / 3485
  11486. }
  11487. },
  11488. },
  11489. [
  11490. {
  11491. name: "Small Macro",
  11492. height: math.unit(50, "feet")
  11493. },
  11494. {
  11495. name: "Default",
  11496. height: math.unit(200, "feet"),
  11497. default: true
  11498. },
  11499. {
  11500. name: "Loom",
  11501. height: math.unit(10000, "feet")
  11502. },
  11503. {
  11504. name: "Cruising Altitude",
  11505. height: math.unit(30000, "feet")
  11506. },
  11507. {
  11508. name: "Megamacro",
  11509. height: math.unit(100, "miles")
  11510. },
  11511. {
  11512. name: "Continent Sized",
  11513. height: math.unit(2800, "miles")
  11514. },
  11515. {
  11516. name: "Earth Sized",
  11517. height: math.unit(8000, "miles")
  11518. },
  11519. ]
  11520. ))
  11521. characterMakers.push(() => makeCharacter(
  11522. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11523. {
  11524. front: {
  11525. height: math.unit(6, "feet"),
  11526. weight: math.unit(250, "lb"),
  11527. name: "Front",
  11528. image: {
  11529. source: "./media/characters/alexi/front.svg",
  11530. extra: 3483 / 3291,
  11531. bottom: 0.04
  11532. }
  11533. },
  11534. back: {
  11535. height: math.unit(6, "feet"),
  11536. weight: math.unit(250, "lb"),
  11537. name: "Back",
  11538. image: {
  11539. source: "./media/characters/alexi/back.svg",
  11540. extra: 3533 / 3356,
  11541. bottom: 0.021
  11542. }
  11543. },
  11544. frontTransforming: {
  11545. height: math.unit(8.58, "feet"),
  11546. weight: math.unit(1300, "lb"),
  11547. name: "Transforming",
  11548. image: {
  11549. source: "./media/characters/alexi/front-transforming.svg",
  11550. extra: 437 / 409,
  11551. bottom: 19 / 458.66
  11552. }
  11553. },
  11554. frontTransformed: {
  11555. height: math.unit(12.5, "feet"),
  11556. weight: math.unit(4000, "lb"),
  11557. name: "Transformed",
  11558. image: {
  11559. source: "./media/characters/alexi/front-transformed.svg",
  11560. extra: 639 / 614,
  11561. bottom: 30.55 / 671
  11562. }
  11563. },
  11564. },
  11565. [
  11566. {
  11567. name: "Normal",
  11568. height: math.unit(14, "feet"),
  11569. default: true
  11570. },
  11571. {
  11572. name: "Minimacro",
  11573. height: math.unit(30, "meters")
  11574. },
  11575. {
  11576. name: "Macro",
  11577. height: math.unit(500, "meters")
  11578. },
  11579. {
  11580. name: "Megamacro",
  11581. height: math.unit(9000, "km")
  11582. },
  11583. {
  11584. name: "Teramacro",
  11585. height: math.unit(384000, "km")
  11586. },
  11587. ]
  11588. ))
  11589. characterMakers.push(() => makeCharacter(
  11590. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11591. {
  11592. front: {
  11593. height: math.unit(6, "feet"),
  11594. weight: math.unit(150, "lb"),
  11595. name: "Front",
  11596. image: {
  11597. source: "./media/characters/kayroo/front.svg",
  11598. extra: 1153 / 1038,
  11599. bottom: 0.06
  11600. }
  11601. },
  11602. foot: {
  11603. height: math.unit(6, "feet"),
  11604. weight: math.unit(150, "lb"),
  11605. name: "Foot",
  11606. image: {
  11607. source: "./media/characters/kayroo/foot.svg"
  11608. }
  11609. },
  11610. },
  11611. [
  11612. {
  11613. name: "Normal",
  11614. height: math.unit(8, "feet"),
  11615. default: true
  11616. },
  11617. {
  11618. name: "Minimacro",
  11619. height: math.unit(250, "feet")
  11620. },
  11621. {
  11622. name: "Macro",
  11623. height: math.unit(2800, "feet")
  11624. },
  11625. {
  11626. name: "Megamacro",
  11627. height: math.unit(5200, "feet")
  11628. },
  11629. {
  11630. name: "Gigamacro",
  11631. height: math.unit(27000, "feet")
  11632. },
  11633. {
  11634. name: "Omega",
  11635. height: math.unit(45000, "feet")
  11636. },
  11637. ]
  11638. ))
  11639. characterMakers.push(() => makeCharacter(
  11640. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11641. {
  11642. front: {
  11643. height: math.unit(18, "feet"),
  11644. weight: math.unit(5800, "lb"),
  11645. name: "Front",
  11646. image: {
  11647. source: "./media/characters/rhys/front.svg",
  11648. extra: 3386 / 3090,
  11649. bottom: 0.07
  11650. }
  11651. },
  11652. },
  11653. [
  11654. {
  11655. name: "Normal",
  11656. height: math.unit(18, "feet"),
  11657. default: true
  11658. },
  11659. {
  11660. name: "Working Size",
  11661. height: math.unit(200, "feet")
  11662. },
  11663. {
  11664. name: "Demolition Size",
  11665. height: math.unit(2000, "feet")
  11666. },
  11667. {
  11668. name: "Maximum Licensed Size",
  11669. height: math.unit(5, "miles")
  11670. },
  11671. {
  11672. name: "Maximum Observed Size",
  11673. height: math.unit(10, "yottameters")
  11674. },
  11675. ]
  11676. ))
  11677. characterMakers.push(() => makeCharacter(
  11678. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11679. {
  11680. front: {
  11681. height: math.unit(6, "feet"),
  11682. weight: math.unit(250, "lb"),
  11683. name: "Front",
  11684. image: {
  11685. source: "./media/characters/toto/front.svg",
  11686. extra: 527 / 479,
  11687. bottom: 0.05
  11688. }
  11689. },
  11690. },
  11691. [
  11692. {
  11693. name: "Micro",
  11694. height: math.unit(3, "feet")
  11695. },
  11696. {
  11697. name: "Normal",
  11698. height: math.unit(10, "feet")
  11699. },
  11700. {
  11701. name: "Macro",
  11702. height: math.unit(150, "feet"),
  11703. default: true
  11704. },
  11705. {
  11706. name: "Megamacro",
  11707. height: math.unit(1200, "feet")
  11708. },
  11709. ]
  11710. ))
  11711. characterMakers.push(() => makeCharacter(
  11712. { name: "King", species: ["lion"], tags: ["anthro"] },
  11713. {
  11714. back: {
  11715. height: math.unit(6, "feet"),
  11716. weight: math.unit(150, "lb"),
  11717. name: "Back",
  11718. image: {
  11719. source: "./media/characters/king/back.svg"
  11720. }
  11721. },
  11722. },
  11723. [
  11724. {
  11725. name: "Micro",
  11726. height: math.unit(2, "inches")
  11727. },
  11728. {
  11729. name: "Normal",
  11730. height: math.unit(8, "feet")
  11731. },
  11732. {
  11733. name: "Macro",
  11734. height: math.unit(200, "feet"),
  11735. default: true
  11736. },
  11737. {
  11738. name: "Megamacro",
  11739. height: math.unit(50, "miles")
  11740. },
  11741. ]
  11742. ))
  11743. characterMakers.push(() => makeCharacter(
  11744. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11745. {
  11746. front: {
  11747. height: math.unit(11, "feet"),
  11748. weight: math.unit(1400, "lb"),
  11749. name: "Front",
  11750. image: {
  11751. source: "./media/characters/cordite/front.svg",
  11752. extra: 1919/1827,
  11753. bottom: 40/1959
  11754. }
  11755. },
  11756. side: {
  11757. height: math.unit(11, "feet"),
  11758. weight: math.unit(1400, "lb"),
  11759. name: "Side",
  11760. image: {
  11761. source: "./media/characters/cordite/side.svg",
  11762. extra: 1908/1793,
  11763. bottom: 38/1946
  11764. }
  11765. },
  11766. back: {
  11767. height: math.unit(11, "feet"),
  11768. weight: math.unit(1400, "lb"),
  11769. name: "Back",
  11770. image: {
  11771. source: "./media/characters/cordite/back.svg",
  11772. extra: 1938/1837,
  11773. bottom: 10/1948
  11774. }
  11775. },
  11776. feral: {
  11777. height: math.unit(2, "feet"),
  11778. weight: math.unit(90, "lb"),
  11779. name: "Feral",
  11780. image: {
  11781. source: "./media/characters/cordite/feral.svg",
  11782. extra: 1260 / 755,
  11783. bottom: 0.05
  11784. }
  11785. },
  11786. },
  11787. [
  11788. {
  11789. name: "Normal",
  11790. height: math.unit(11, "feet"),
  11791. default: true
  11792. },
  11793. ]
  11794. ))
  11795. characterMakers.push(() => makeCharacter(
  11796. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11797. {
  11798. front: {
  11799. height: math.unit(6, "feet"),
  11800. weight: math.unit(150, "lb"),
  11801. name: "Front",
  11802. image: {
  11803. source: "./media/characters/pianostrong/front.svg",
  11804. extra: 6577 / 6254,
  11805. bottom: 0.02
  11806. }
  11807. },
  11808. side: {
  11809. height: math.unit(6, "feet"),
  11810. weight: math.unit(150, "lb"),
  11811. name: "Side",
  11812. image: {
  11813. source: "./media/characters/pianostrong/side.svg",
  11814. extra: 6106 / 5730
  11815. }
  11816. },
  11817. back: {
  11818. height: math.unit(6, "feet"),
  11819. weight: math.unit(150, "lb"),
  11820. name: "Back",
  11821. image: {
  11822. source: "./media/characters/pianostrong/back.svg",
  11823. extra: 6085 / 5733,
  11824. bottom: 0.01
  11825. }
  11826. },
  11827. },
  11828. [
  11829. {
  11830. name: "Macro",
  11831. height: math.unit(100, "feet")
  11832. },
  11833. {
  11834. name: "Macro+",
  11835. height: math.unit(300, "feet"),
  11836. default: true
  11837. },
  11838. {
  11839. name: "Macro++",
  11840. height: math.unit(1000, "feet")
  11841. },
  11842. ]
  11843. ))
  11844. characterMakers.push(() => makeCharacter(
  11845. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11846. {
  11847. front: {
  11848. height: math.unit(6, "feet"),
  11849. weight: math.unit(150, "lb"),
  11850. name: "Front",
  11851. image: {
  11852. source: "./media/characters/kona/front.svg",
  11853. extra: 2960 / 2629,
  11854. bottom: 0.005
  11855. }
  11856. },
  11857. },
  11858. [
  11859. {
  11860. name: "Normal",
  11861. height: math.unit(11 + 8 / 12, "feet")
  11862. },
  11863. {
  11864. name: "Macro",
  11865. height: math.unit(850, "feet"),
  11866. default: true
  11867. },
  11868. {
  11869. name: "Macro+",
  11870. height: math.unit(1.5, "km"),
  11871. default: true
  11872. },
  11873. {
  11874. name: "Megamacro",
  11875. height: math.unit(80, "miles")
  11876. },
  11877. {
  11878. name: "Gigamacro",
  11879. height: math.unit(3500, "miles")
  11880. },
  11881. ]
  11882. ))
  11883. characterMakers.push(() => makeCharacter(
  11884. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11885. {
  11886. side: {
  11887. height: math.unit(1.9, "meters"),
  11888. weight: math.unit(326, "kg"),
  11889. name: "Side",
  11890. image: {
  11891. source: "./media/characters/levi/side.svg",
  11892. extra: 1704 / 1334,
  11893. bottom: 0.02
  11894. }
  11895. },
  11896. },
  11897. [
  11898. {
  11899. name: "Normal",
  11900. height: math.unit(1.9, "meters"),
  11901. default: true
  11902. },
  11903. {
  11904. name: "Macro",
  11905. height: math.unit(20, "meters")
  11906. },
  11907. {
  11908. name: "Macro+",
  11909. height: math.unit(200, "meters")
  11910. },
  11911. {
  11912. name: "Megamacro",
  11913. height: math.unit(2, "km")
  11914. },
  11915. {
  11916. name: "Megamacro+",
  11917. height: math.unit(20, "km")
  11918. },
  11919. {
  11920. name: "Gigamacro",
  11921. height: math.unit(2500, "km")
  11922. },
  11923. {
  11924. name: "Gigamacro+",
  11925. height: math.unit(120000, "km")
  11926. },
  11927. {
  11928. name: "Teramacro",
  11929. height: math.unit(7.77e6, "km")
  11930. },
  11931. ]
  11932. ))
  11933. characterMakers.push(() => makeCharacter(
  11934. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11935. {
  11936. front: {
  11937. height: math.unit(6 + 4/12, "feet"),
  11938. weight: math.unit(190, "lb"),
  11939. name: "Front",
  11940. image: {
  11941. source: "./media/characters/bmc/front.svg",
  11942. extra: 1626/1472,
  11943. bottom: 79/1705
  11944. }
  11945. },
  11946. back: {
  11947. height: math.unit(6 + 4/12, "feet"),
  11948. weight: math.unit(190, "lb"),
  11949. name: "Back",
  11950. image: {
  11951. source: "./media/characters/bmc/back.svg",
  11952. extra: 1640/1479,
  11953. bottom: 45/1685
  11954. }
  11955. },
  11956. frontArmor: {
  11957. height: math.unit(6 + 4/12, "feet"),
  11958. weight: math.unit(190, "lb"),
  11959. name: "Front-armor",
  11960. image: {
  11961. source: "./media/characters/bmc/front-armor.svg",
  11962. extra: 1538/1468,
  11963. bottom: 79/1617
  11964. }
  11965. },
  11966. },
  11967. [
  11968. {
  11969. name: "Human-sized",
  11970. height: math.unit(6 + 4 / 12, "feet")
  11971. },
  11972. {
  11973. name: "Interactive Size",
  11974. height: math.unit(25, "feet")
  11975. },
  11976. {
  11977. name: "Small",
  11978. height: math.unit(250, "feet")
  11979. },
  11980. {
  11981. name: "Normal",
  11982. height: math.unit(1250, "feet"),
  11983. default: true
  11984. },
  11985. {
  11986. name: "Good Day",
  11987. height: math.unit(88, "miles")
  11988. },
  11989. {
  11990. name: "Largest Measured Size",
  11991. height: math.unit(105.960, "galaxies")
  11992. },
  11993. ]
  11994. ))
  11995. characterMakers.push(() => makeCharacter(
  11996. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11997. {
  11998. front: {
  11999. height: math.unit(20, "feet"),
  12000. weight: math.unit(2016, "kg"),
  12001. name: "Front",
  12002. image: {
  12003. source: "./media/characters/sven-the-kaiju/front.svg",
  12004. extra: 1277/1250,
  12005. bottom: 35/1312
  12006. }
  12007. },
  12008. mouth: {
  12009. height: math.unit(1.85, "feet"),
  12010. name: "Mouth",
  12011. image: {
  12012. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12013. }
  12014. },
  12015. },
  12016. [
  12017. {
  12018. name: "Fairy",
  12019. height: math.unit(6, "inches")
  12020. },
  12021. {
  12022. name: "Normal",
  12023. height: math.unit(20, "feet"),
  12024. default: true
  12025. },
  12026. {
  12027. name: "Rampage",
  12028. height: math.unit(200, "feet")
  12029. },
  12030. {
  12031. name: "Archfey Forest Guardian",
  12032. height: math.unit(1, "mile")
  12033. },
  12034. ]
  12035. ))
  12036. characterMakers.push(() => makeCharacter(
  12037. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12038. {
  12039. front: {
  12040. height: math.unit(4, "meters"),
  12041. weight: math.unit(2, "tons"),
  12042. name: "Front",
  12043. image: {
  12044. source: "./media/characters/marik/front.svg",
  12045. extra: 1057 / 1003,
  12046. bottom: 0.08
  12047. }
  12048. },
  12049. },
  12050. [
  12051. {
  12052. name: "Normal",
  12053. height: math.unit(4, "meters"),
  12054. default: true
  12055. },
  12056. {
  12057. name: "Macro",
  12058. height: math.unit(20, "meters")
  12059. },
  12060. {
  12061. name: "Megamacro",
  12062. height: math.unit(50, "km")
  12063. },
  12064. {
  12065. name: "Gigamacro",
  12066. height: math.unit(100, "km")
  12067. },
  12068. {
  12069. name: "Alpha Macro",
  12070. height: math.unit(7.88e7, "yottameters")
  12071. },
  12072. ]
  12073. ))
  12074. characterMakers.push(() => makeCharacter(
  12075. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12076. {
  12077. front: {
  12078. height: math.unit(6, "feet"),
  12079. weight: math.unit(110, "lb"),
  12080. name: "Front",
  12081. image: {
  12082. source: "./media/characters/mel/front.svg",
  12083. extra: 736 / 617,
  12084. bottom: 0.017
  12085. }
  12086. },
  12087. },
  12088. [
  12089. {
  12090. name: "Pico",
  12091. height: math.unit(3, "pm")
  12092. },
  12093. {
  12094. name: "Nano",
  12095. height: math.unit(3, "nm")
  12096. },
  12097. {
  12098. name: "Micro",
  12099. height: math.unit(0.3, "mm"),
  12100. default: true
  12101. },
  12102. {
  12103. name: "Micro+",
  12104. height: math.unit(3, "mm")
  12105. },
  12106. {
  12107. name: "Normal",
  12108. height: math.unit(5 + 10.5 / 12, "feet")
  12109. },
  12110. ]
  12111. ))
  12112. characterMakers.push(() => makeCharacter(
  12113. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12114. {
  12115. kaiju: {
  12116. height: math.unit(1.75, "meters"),
  12117. weight: math.unit(55, "kg"),
  12118. name: "Kaiju",
  12119. image: {
  12120. source: "./media/characters/lykonous/kaiju.svg",
  12121. extra: 1055 / 946,
  12122. bottom: 0.135
  12123. }
  12124. },
  12125. },
  12126. [
  12127. {
  12128. name: "Normal",
  12129. height: math.unit(2.5, "meters"),
  12130. default: true
  12131. },
  12132. {
  12133. name: "Kaiju Dragon",
  12134. height: math.unit(60, "meters")
  12135. },
  12136. {
  12137. name: "Mega Kaiju",
  12138. height: math.unit(120, "km")
  12139. },
  12140. {
  12141. name: "Giga Kaiju",
  12142. height: math.unit(200, "megameters")
  12143. },
  12144. {
  12145. name: "Terra Kaiju",
  12146. height: math.unit(400, "gigameters")
  12147. },
  12148. {
  12149. name: "Kaiju Dragon God",
  12150. height: math.unit(13000, "exaparsecs")
  12151. },
  12152. ]
  12153. ))
  12154. characterMakers.push(() => makeCharacter(
  12155. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12156. {
  12157. front: {
  12158. height: math.unit(6, "feet"),
  12159. weight: math.unit(150, "lb"),
  12160. name: "Front",
  12161. image: {
  12162. source: "./media/characters/blü/front.svg",
  12163. extra: 1883 / 1564,
  12164. bottom: 0.031
  12165. }
  12166. },
  12167. },
  12168. [
  12169. {
  12170. name: "Normal",
  12171. height: math.unit(13, "feet"),
  12172. default: true
  12173. },
  12174. {
  12175. name: "Big Boi",
  12176. height: math.unit(150, "meters")
  12177. },
  12178. {
  12179. name: "Mini Stomper",
  12180. height: math.unit(300, "meters")
  12181. },
  12182. {
  12183. name: "Macro",
  12184. height: math.unit(1000, "meters")
  12185. },
  12186. {
  12187. name: "Megamacro",
  12188. height: math.unit(11000, "meters")
  12189. },
  12190. {
  12191. name: "Gigamacro",
  12192. height: math.unit(11000, "km")
  12193. },
  12194. {
  12195. name: "Teramacro",
  12196. height: math.unit(420000, "km")
  12197. },
  12198. {
  12199. name: "Examacro",
  12200. height: math.unit(120, "parsecs")
  12201. },
  12202. {
  12203. name: "God Tho",
  12204. height: math.unit(98000000000, "parsecs")
  12205. },
  12206. ]
  12207. ))
  12208. characterMakers.push(() => makeCharacter(
  12209. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12210. {
  12211. taurFront: {
  12212. height: math.unit(6, "feet"),
  12213. weight: math.unit(200, "lb"),
  12214. name: "Taur (Front)",
  12215. image: {
  12216. source: "./media/characters/scales/taur-front.svg",
  12217. extra: 1,
  12218. bottom: 0.05
  12219. }
  12220. },
  12221. taurBack: {
  12222. height: math.unit(6, "feet"),
  12223. weight: math.unit(200, "lb"),
  12224. name: "Taur (Back)",
  12225. image: {
  12226. source: "./media/characters/scales/taur-back.svg",
  12227. extra: 1,
  12228. bottom: 0.08
  12229. }
  12230. },
  12231. anthro: {
  12232. height: math.unit(6 * 7 / 12, "feet"),
  12233. weight: math.unit(100, "lb"),
  12234. name: "Anthro",
  12235. image: {
  12236. source: "./media/characters/scales/anthro.svg",
  12237. extra: 1,
  12238. bottom: 0.06
  12239. }
  12240. },
  12241. },
  12242. [
  12243. {
  12244. name: "Normal",
  12245. height: math.unit(12, "feet"),
  12246. default: true
  12247. },
  12248. ]
  12249. ))
  12250. characterMakers.push(() => makeCharacter(
  12251. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12252. {
  12253. front: {
  12254. height: math.unit(6, "feet"),
  12255. weight: math.unit(150, "lb"),
  12256. name: "Front",
  12257. image: {
  12258. source: "./media/characters/koragos/front.svg",
  12259. extra: 841 / 794,
  12260. bottom: 0.035
  12261. }
  12262. },
  12263. back: {
  12264. height: math.unit(6, "feet"),
  12265. weight: math.unit(150, "lb"),
  12266. name: "Back",
  12267. image: {
  12268. source: "./media/characters/koragos/back.svg",
  12269. extra: 841 / 810,
  12270. bottom: 0.022
  12271. }
  12272. },
  12273. },
  12274. [
  12275. {
  12276. name: "Normal",
  12277. height: math.unit(6 + 11 / 12, "feet"),
  12278. default: true
  12279. },
  12280. {
  12281. name: "Macro",
  12282. height: math.unit(490, "feet")
  12283. },
  12284. {
  12285. name: "Megamacro",
  12286. height: math.unit(10, "miles")
  12287. },
  12288. {
  12289. name: "Gigamacro",
  12290. height: math.unit(50, "miles")
  12291. },
  12292. ]
  12293. ))
  12294. characterMakers.push(() => makeCharacter(
  12295. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12296. {
  12297. front: {
  12298. height: math.unit(6, "feet"),
  12299. weight: math.unit(250, "lb"),
  12300. name: "Front",
  12301. image: {
  12302. source: "./media/characters/xylrem/front.svg",
  12303. extra: 3323 / 3050,
  12304. bottom: 0.065
  12305. }
  12306. },
  12307. },
  12308. [
  12309. {
  12310. name: "Micro",
  12311. height: math.unit(4, "feet")
  12312. },
  12313. {
  12314. name: "Normal",
  12315. height: math.unit(16, "feet"),
  12316. default: true
  12317. },
  12318. {
  12319. name: "Macro",
  12320. height: math.unit(2720, "feet")
  12321. },
  12322. {
  12323. name: "Megamacro",
  12324. height: math.unit(25000, "miles")
  12325. },
  12326. ]
  12327. ))
  12328. characterMakers.push(() => makeCharacter(
  12329. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12330. {
  12331. front: {
  12332. height: math.unit(8, "feet"),
  12333. weight: math.unit(250, "kg"),
  12334. name: "Front",
  12335. image: {
  12336. source: "./media/characters/ikideru/front.svg",
  12337. extra: 930 / 870,
  12338. bottom: 0.087
  12339. }
  12340. },
  12341. back: {
  12342. height: math.unit(8, "feet"),
  12343. weight: math.unit(250, "kg"),
  12344. name: "Back",
  12345. image: {
  12346. source: "./media/characters/ikideru/back.svg",
  12347. extra: 919 / 852,
  12348. bottom: 0.055
  12349. }
  12350. },
  12351. },
  12352. [
  12353. {
  12354. name: "Rare",
  12355. height: math.unit(8, "feet"),
  12356. default: true
  12357. },
  12358. {
  12359. name: "Playful Loom",
  12360. height: math.unit(80, "feet")
  12361. },
  12362. {
  12363. name: "City Leaner",
  12364. height: math.unit(230, "feet")
  12365. },
  12366. {
  12367. name: "Megamacro",
  12368. height: math.unit(2500, "feet")
  12369. },
  12370. {
  12371. name: "Gigamacro",
  12372. height: math.unit(26400, "feet")
  12373. },
  12374. {
  12375. name: "Tectonic Shifter",
  12376. height: math.unit(1.7, "megameters")
  12377. },
  12378. {
  12379. name: "Planet Carer",
  12380. height: math.unit(21, "megameters")
  12381. },
  12382. {
  12383. name: "God",
  12384. height: math.unit(11157.22, "parsecs")
  12385. },
  12386. ]
  12387. ))
  12388. characterMakers.push(() => makeCharacter(
  12389. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12390. {
  12391. front: {
  12392. height: math.unit(6, "feet"),
  12393. weight: math.unit(120, "lb"),
  12394. name: "Front",
  12395. image: {
  12396. source: "./media/characters/neo/front.svg"
  12397. }
  12398. },
  12399. },
  12400. [
  12401. {
  12402. name: "Micro",
  12403. height: math.unit(2, "inches"),
  12404. default: true
  12405. },
  12406. {
  12407. name: "Human Size",
  12408. height: math.unit(5 + 8 / 12, "feet")
  12409. },
  12410. ]
  12411. ))
  12412. characterMakers.push(() => makeCharacter(
  12413. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12414. {
  12415. front: {
  12416. height: math.unit(13 + 10 / 12, "feet"),
  12417. weight: math.unit(5320, "lb"),
  12418. name: "Front",
  12419. image: {
  12420. source: "./media/characters/chauncey-chantz/front.svg",
  12421. extra: 1587 / 1435,
  12422. bottom: 0.02
  12423. }
  12424. },
  12425. },
  12426. [
  12427. {
  12428. name: "Normal",
  12429. height: math.unit(13 + 10 / 12, "feet"),
  12430. default: true
  12431. },
  12432. {
  12433. name: "Macro",
  12434. height: math.unit(45, "feet")
  12435. },
  12436. {
  12437. name: "Megamacro",
  12438. height: math.unit(250, "miles")
  12439. },
  12440. {
  12441. name: "Planetary",
  12442. height: math.unit(10000, "miles")
  12443. },
  12444. {
  12445. name: "Galactic",
  12446. height: math.unit(40000, "parsecs")
  12447. },
  12448. {
  12449. name: "Universal",
  12450. height: math.unit(1, "yottameter")
  12451. },
  12452. ]
  12453. ))
  12454. characterMakers.push(() => makeCharacter(
  12455. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12456. {
  12457. front: {
  12458. height: math.unit(6, "feet"),
  12459. weight: math.unit(150, "lb"),
  12460. name: "Front",
  12461. image: {
  12462. source: "./media/characters/epifox/front.svg",
  12463. extra: 1,
  12464. bottom: 0.075
  12465. }
  12466. },
  12467. },
  12468. [
  12469. {
  12470. name: "Micro",
  12471. height: math.unit(6, "inches")
  12472. },
  12473. {
  12474. name: "Normal",
  12475. height: math.unit(12, "feet"),
  12476. default: true
  12477. },
  12478. {
  12479. name: "Macro",
  12480. height: math.unit(3810, "feet")
  12481. },
  12482. {
  12483. name: "Megamacro",
  12484. height: math.unit(500, "miles")
  12485. },
  12486. ]
  12487. ))
  12488. characterMakers.push(() => makeCharacter(
  12489. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12490. {
  12491. front: {
  12492. height: math.unit(1.8796, "m"),
  12493. weight: math.unit(230, "lb"),
  12494. name: "Front",
  12495. image: {
  12496. source: "./media/characters/colin-t/front.svg",
  12497. extra: 1272 / 1193,
  12498. bottom: 0.07
  12499. }
  12500. },
  12501. },
  12502. [
  12503. {
  12504. name: "Micro",
  12505. height: math.unit(0.571, "meters")
  12506. },
  12507. {
  12508. name: "Normal",
  12509. height: math.unit(1.8796, "meters"),
  12510. default: true
  12511. },
  12512. {
  12513. name: "Tall",
  12514. height: math.unit(4, "meters")
  12515. },
  12516. {
  12517. name: "Macro",
  12518. height: math.unit(67.241, "meters")
  12519. },
  12520. {
  12521. name: "Megamacro",
  12522. height: math.unit(371.856, "meters")
  12523. },
  12524. {
  12525. name: "Planetary",
  12526. height: math.unit(12631.5689, "km")
  12527. },
  12528. ]
  12529. ))
  12530. characterMakers.push(() => makeCharacter(
  12531. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12532. {
  12533. front: {
  12534. height: math.unit(1.85, "meters"),
  12535. weight: math.unit(80, "kg"),
  12536. name: "Front",
  12537. image: {
  12538. source: "./media/characters/matvei/front.svg",
  12539. extra: 614 / 594,
  12540. bottom: 0.01
  12541. }
  12542. },
  12543. },
  12544. [
  12545. {
  12546. name: "Normal",
  12547. height: math.unit(1.85, "meters"),
  12548. default: true
  12549. },
  12550. ]
  12551. ))
  12552. characterMakers.push(() => makeCharacter(
  12553. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12554. {
  12555. front: {
  12556. height: math.unit(5 + 9 / 12, "feet"),
  12557. weight: math.unit(70, "lb"),
  12558. name: "Front",
  12559. image: {
  12560. source: "./media/characters/quincy/front.svg",
  12561. extra: 3041 / 2751
  12562. }
  12563. },
  12564. back: {
  12565. height: math.unit(5 + 9 / 12, "feet"),
  12566. weight: math.unit(70, "lb"),
  12567. name: "Back",
  12568. image: {
  12569. source: "./media/characters/quincy/back.svg",
  12570. extra: 3041 / 2751
  12571. }
  12572. },
  12573. flying: {
  12574. height: math.unit(5 + 4 / 12, "feet"),
  12575. weight: math.unit(70, "lb"),
  12576. name: "Flying",
  12577. image: {
  12578. source: "./media/characters/quincy/flying.svg",
  12579. extra: 1044 / 930
  12580. }
  12581. },
  12582. },
  12583. [
  12584. {
  12585. name: "Micro",
  12586. height: math.unit(3, "cm")
  12587. },
  12588. {
  12589. name: "Normal",
  12590. height: math.unit(5 + 9 / 12, "feet")
  12591. },
  12592. {
  12593. name: "Macro",
  12594. height: math.unit(200, "meters"),
  12595. default: true
  12596. },
  12597. {
  12598. name: "Megamacro",
  12599. height: math.unit(1000, "meters")
  12600. },
  12601. ]
  12602. ))
  12603. characterMakers.push(() => makeCharacter(
  12604. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12605. {
  12606. front: {
  12607. height: math.unit(3 + 11/12, "feet"),
  12608. weight: math.unit(50, "lb"),
  12609. name: "Front",
  12610. image: {
  12611. source: "./media/characters/vanrel/front.svg",
  12612. extra: 1104/949,
  12613. bottom: 52/1156
  12614. }
  12615. },
  12616. back: {
  12617. height: math.unit(3 + 11/12, "feet"),
  12618. weight: math.unit(50, "lb"),
  12619. name: "Back",
  12620. image: {
  12621. source: "./media/characters/vanrel/back.svg",
  12622. extra: 1119/976,
  12623. bottom: 37/1156
  12624. }
  12625. },
  12626. tome: {
  12627. height: math.unit(1.35, "feet"),
  12628. weight: math.unit(10, "lb"),
  12629. name: "Vanrel's Tome",
  12630. rename: true,
  12631. image: {
  12632. source: "./media/characters/vanrel/tome.svg"
  12633. }
  12634. },
  12635. beans: {
  12636. height: math.unit(0.89, "feet"),
  12637. name: "Beans",
  12638. image: {
  12639. source: "./media/characters/vanrel/beans.svg"
  12640. }
  12641. },
  12642. },
  12643. [
  12644. {
  12645. name: "Normal",
  12646. height: math.unit(3 + 11/12, "feet"),
  12647. default: true
  12648. },
  12649. ]
  12650. ))
  12651. characterMakers.push(() => makeCharacter(
  12652. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12653. {
  12654. front: {
  12655. height: math.unit(7 + 5 / 12, "feet"),
  12656. name: "Front",
  12657. image: {
  12658. source: "./media/characters/kuiper-vanrel/front.svg",
  12659. extra: 1219/1169,
  12660. bottom: 69/1288
  12661. }
  12662. },
  12663. back: {
  12664. height: math.unit(7 + 5 / 12, "feet"),
  12665. name: "Back",
  12666. image: {
  12667. source: "./media/characters/kuiper-vanrel/back.svg",
  12668. extra: 1236/1193,
  12669. bottom: 27/1263
  12670. }
  12671. },
  12672. foot: {
  12673. height: math.unit(0.55, "meters"),
  12674. name: "Foot",
  12675. image: {
  12676. source: "./media/characters/kuiper-vanrel/foot.svg",
  12677. }
  12678. },
  12679. battle: {
  12680. height: math.unit(6.824, "feet"),
  12681. name: "Battle",
  12682. image: {
  12683. source: "./media/characters/kuiper-vanrel/battle.svg",
  12684. extra: 1466 / 1327,
  12685. bottom: 29 / 1492.5
  12686. }
  12687. },
  12688. meerkui: {
  12689. height: math.unit(18, "inches"),
  12690. name: "Meerkui",
  12691. image: {
  12692. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12693. extra: 1354/1289,
  12694. bottom: 69/1423
  12695. }
  12696. },
  12697. },
  12698. [
  12699. {
  12700. name: "Normal",
  12701. height: math.unit(7 + 5 / 12, "feet"),
  12702. default: true
  12703. },
  12704. ]
  12705. ))
  12706. characterMakers.push(() => makeCharacter(
  12707. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12708. {
  12709. front: {
  12710. height: math.unit(8 + 5 / 12, "feet"),
  12711. name: "Front",
  12712. image: {
  12713. source: "./media/characters/keset-vanrel/front.svg",
  12714. extra: 1231/1148,
  12715. bottom: 82/1313
  12716. }
  12717. },
  12718. back: {
  12719. height: math.unit(8 + 5 / 12, "feet"),
  12720. name: "Back",
  12721. image: {
  12722. source: "./media/characters/keset-vanrel/back.svg",
  12723. extra: 1240/1174,
  12724. bottom: 33/1273
  12725. }
  12726. },
  12727. hand: {
  12728. height: math.unit(0.6, "meters"),
  12729. name: "Hand",
  12730. image: {
  12731. source: "./media/characters/keset-vanrel/hand.svg"
  12732. }
  12733. },
  12734. foot: {
  12735. height: math.unit(0.94978, "meters"),
  12736. name: "Foot",
  12737. image: {
  12738. source: "./media/characters/keset-vanrel/foot.svg"
  12739. }
  12740. },
  12741. battle: {
  12742. height: math.unit(7.408, "feet"),
  12743. name: "Battle",
  12744. image: {
  12745. source: "./media/characters/keset-vanrel/battle.svg",
  12746. extra: 1890 / 1386,
  12747. bottom: 73.28 / 1970
  12748. }
  12749. },
  12750. },
  12751. [
  12752. {
  12753. name: "Normal",
  12754. height: math.unit(8 + 5 / 12, "feet"),
  12755. default: true
  12756. },
  12757. ]
  12758. ))
  12759. characterMakers.push(() => makeCharacter(
  12760. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12761. {
  12762. front: {
  12763. height: math.unit(6, "feet"),
  12764. weight: math.unit(150, "lb"),
  12765. name: "Front",
  12766. image: {
  12767. source: "./media/characters/neos/front.svg",
  12768. extra: 1696 / 992,
  12769. bottom: 0.14
  12770. }
  12771. },
  12772. },
  12773. [
  12774. {
  12775. name: "Normal",
  12776. height: math.unit(54, "cm"),
  12777. default: true
  12778. },
  12779. {
  12780. name: "Macro",
  12781. height: math.unit(100, "m")
  12782. },
  12783. {
  12784. name: "Megamacro",
  12785. height: math.unit(10, "km")
  12786. },
  12787. {
  12788. name: "Megamacro+",
  12789. height: math.unit(100, "km")
  12790. },
  12791. {
  12792. name: "Gigamacro",
  12793. height: math.unit(100, "Mm")
  12794. },
  12795. {
  12796. name: "Teramacro",
  12797. height: math.unit(100, "Gm")
  12798. },
  12799. {
  12800. name: "Examacro",
  12801. height: math.unit(100, "Em")
  12802. },
  12803. {
  12804. name: "Godly",
  12805. height: math.unit(10000, "Ym")
  12806. },
  12807. {
  12808. name: "Beyond Godly",
  12809. height: math.unit(25, "multiverses")
  12810. },
  12811. ]
  12812. ))
  12813. characterMakers.push(() => makeCharacter(
  12814. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12815. {
  12816. feminine: {
  12817. height: math.unit(5, "feet"),
  12818. weight: math.unit(100, "lb"),
  12819. name: "Feminine",
  12820. image: {
  12821. source: "./media/characters/sammy-mouse/feminine.svg",
  12822. extra: 2526 / 2425,
  12823. bottom: 0.123
  12824. }
  12825. },
  12826. masculine: {
  12827. height: math.unit(5, "feet"),
  12828. weight: math.unit(100, "lb"),
  12829. name: "Masculine",
  12830. image: {
  12831. source: "./media/characters/sammy-mouse/masculine.svg",
  12832. extra: 2526 / 2425,
  12833. bottom: 0.123
  12834. }
  12835. },
  12836. },
  12837. [
  12838. {
  12839. name: "Micro",
  12840. height: math.unit(5, "inches")
  12841. },
  12842. {
  12843. name: "Normal",
  12844. height: math.unit(5, "feet"),
  12845. default: true
  12846. },
  12847. {
  12848. name: "Macro",
  12849. height: math.unit(60, "feet")
  12850. },
  12851. ]
  12852. ))
  12853. characterMakers.push(() => makeCharacter(
  12854. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12855. {
  12856. front: {
  12857. height: math.unit(4, "feet"),
  12858. weight: math.unit(50, "lb"),
  12859. name: "Front",
  12860. image: {
  12861. source: "./media/characters/kole/front.svg",
  12862. extra: 1423 / 1303,
  12863. bottom: 0.025
  12864. }
  12865. },
  12866. back: {
  12867. height: math.unit(4, "feet"),
  12868. weight: math.unit(50, "lb"),
  12869. name: "Back",
  12870. image: {
  12871. source: "./media/characters/kole/back.svg",
  12872. extra: 1426 / 1280,
  12873. bottom: 0.02
  12874. }
  12875. },
  12876. },
  12877. [
  12878. {
  12879. name: "Normal",
  12880. height: math.unit(4, "feet"),
  12881. default: true
  12882. },
  12883. ]
  12884. ))
  12885. characterMakers.push(() => makeCharacter(
  12886. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12887. {
  12888. front: {
  12889. height: math.unit(2.5, "feet"),
  12890. weight: math.unit(32, "lb"),
  12891. name: "Front",
  12892. image: {
  12893. source: "./media/characters/rufran/front.svg",
  12894. extra: 1313/885,
  12895. bottom: 94/1407
  12896. }
  12897. },
  12898. side: {
  12899. height: math.unit(2.5, "feet"),
  12900. weight: math.unit(32, "lb"),
  12901. name: "Side",
  12902. image: {
  12903. source: "./media/characters/rufran/side.svg",
  12904. extra: 1109/852,
  12905. bottom: 118/1227
  12906. }
  12907. },
  12908. back: {
  12909. height: math.unit(2.5, "feet"),
  12910. weight: math.unit(32, "lb"),
  12911. name: "Back",
  12912. image: {
  12913. source: "./media/characters/rufran/back.svg",
  12914. extra: 1280/878,
  12915. bottom: 131/1411
  12916. }
  12917. },
  12918. mouth: {
  12919. height: math.unit(1.13, "feet"),
  12920. name: "Mouth",
  12921. image: {
  12922. source: "./media/characters/rufran/mouth.svg"
  12923. }
  12924. },
  12925. foot: {
  12926. height: math.unit(1.33, "feet"),
  12927. name: "Foot",
  12928. image: {
  12929. source: "./media/characters/rufran/foot.svg"
  12930. }
  12931. },
  12932. koboldFront: {
  12933. height: math.unit(2 + 6 / 12, "feet"),
  12934. weight: math.unit(20, "lb"),
  12935. name: "Front (Kobold)",
  12936. image: {
  12937. source: "./media/characters/rufran/kobold-front.svg",
  12938. extra: 2041 / 1839,
  12939. bottom: 0.055
  12940. }
  12941. },
  12942. koboldBack: {
  12943. height: math.unit(2 + 6 / 12, "feet"),
  12944. weight: math.unit(20, "lb"),
  12945. name: "Back (Kobold)",
  12946. image: {
  12947. source: "./media/characters/rufran/kobold-back.svg",
  12948. extra: 2054 / 1839,
  12949. bottom: 0.01
  12950. }
  12951. },
  12952. koboldHand: {
  12953. height: math.unit(0.2166, "meters"),
  12954. name: "Hand (Kobold)",
  12955. image: {
  12956. source: "./media/characters/rufran/kobold-hand.svg"
  12957. }
  12958. },
  12959. koboldFoot: {
  12960. height: math.unit(0.185, "meters"),
  12961. name: "Foot (Kobold)",
  12962. image: {
  12963. source: "./media/characters/rufran/kobold-foot.svg"
  12964. }
  12965. },
  12966. },
  12967. [
  12968. {
  12969. name: "Micro",
  12970. height: math.unit(1, "inch")
  12971. },
  12972. {
  12973. name: "Normal",
  12974. height: math.unit(2 + 6 / 12, "feet"),
  12975. default: true
  12976. },
  12977. {
  12978. name: "Big",
  12979. height: math.unit(60, "feet")
  12980. },
  12981. {
  12982. name: "Macro",
  12983. height: math.unit(325, "feet")
  12984. },
  12985. ]
  12986. ))
  12987. characterMakers.push(() => makeCharacter(
  12988. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12989. {
  12990. front: {
  12991. height: math.unit(0.3, "meters"),
  12992. weight: math.unit(3.5, "kg"),
  12993. name: "Front",
  12994. image: {
  12995. source: "./media/characters/chip/front.svg",
  12996. extra: 748 / 674
  12997. }
  12998. },
  12999. },
  13000. [
  13001. {
  13002. name: "Micro",
  13003. height: math.unit(1, "inch"),
  13004. default: true
  13005. },
  13006. ]
  13007. ))
  13008. characterMakers.push(() => makeCharacter(
  13009. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13010. {
  13011. side: {
  13012. height: math.unit(2.3, "meters"),
  13013. weight: math.unit(3500, "lb"),
  13014. name: "Side",
  13015. image: {
  13016. source: "./media/characters/torvid/side.svg",
  13017. extra: 1972 / 722,
  13018. bottom: 0.035
  13019. }
  13020. },
  13021. },
  13022. [
  13023. {
  13024. name: "Normal",
  13025. height: math.unit(2.3, "meters"),
  13026. default: true
  13027. },
  13028. ]
  13029. ))
  13030. characterMakers.push(() => makeCharacter(
  13031. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13032. {
  13033. front: {
  13034. height: math.unit(2, "meters"),
  13035. weight: math.unit(150.5, "kg"),
  13036. name: "Front",
  13037. image: {
  13038. source: "./media/characters/susan/front.svg",
  13039. extra: 693 / 635,
  13040. bottom: 0.05
  13041. }
  13042. },
  13043. },
  13044. [
  13045. {
  13046. name: "Megamacro",
  13047. height: math.unit(505, "miles"),
  13048. default: true
  13049. },
  13050. ]
  13051. ))
  13052. characterMakers.push(() => makeCharacter(
  13053. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13054. {
  13055. front: {
  13056. height: math.unit(6, "feet"),
  13057. weight: math.unit(150, "lb"),
  13058. name: "Front",
  13059. image: {
  13060. source: "./media/characters/raindrops/front.svg",
  13061. extra: 2655 / 2461,
  13062. bottom: 49 / 2705
  13063. }
  13064. },
  13065. back: {
  13066. height: math.unit(6, "feet"),
  13067. weight: math.unit(150, "lb"),
  13068. name: "Back",
  13069. image: {
  13070. source: "./media/characters/raindrops/back.svg",
  13071. extra: 2574 / 2400,
  13072. bottom: 65 / 2634
  13073. }
  13074. },
  13075. },
  13076. [
  13077. {
  13078. name: "Micro",
  13079. height: math.unit(6, "inches")
  13080. },
  13081. {
  13082. name: "Normal",
  13083. height: math.unit(6 + 2 / 12, "feet")
  13084. },
  13085. {
  13086. name: "Macro",
  13087. height: math.unit(131, "feet"),
  13088. default: true
  13089. },
  13090. {
  13091. name: "Megamacro",
  13092. height: math.unit(15, "miles")
  13093. },
  13094. {
  13095. name: "Gigamacro",
  13096. height: math.unit(4000, "miles")
  13097. },
  13098. {
  13099. name: "Teramacro",
  13100. height: math.unit(315000, "miles")
  13101. },
  13102. ]
  13103. ))
  13104. characterMakers.push(() => makeCharacter(
  13105. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13106. {
  13107. front: {
  13108. height: math.unit(2.794, "meters"),
  13109. weight: math.unit(325, "kg"),
  13110. name: "Front",
  13111. image: {
  13112. source: "./media/characters/tezwa/front.svg",
  13113. extra: 2083 / 1906,
  13114. bottom: 0.031
  13115. }
  13116. },
  13117. foot: {
  13118. height: math.unit(0.687, "meters"),
  13119. name: "Foot",
  13120. image: {
  13121. source: "./media/characters/tezwa/foot.svg"
  13122. }
  13123. },
  13124. },
  13125. [
  13126. {
  13127. name: "Normal",
  13128. height: math.unit(9 + 2 / 12, "feet"),
  13129. default: true
  13130. },
  13131. ]
  13132. ))
  13133. characterMakers.push(() => makeCharacter(
  13134. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13135. {
  13136. front: {
  13137. height: math.unit(58, "feet"),
  13138. weight: math.unit(89000, "lb"),
  13139. name: "Front",
  13140. image: {
  13141. source: "./media/characters/typhus/front.svg",
  13142. extra: 816 / 800,
  13143. bottom: 0.065
  13144. }
  13145. },
  13146. },
  13147. [
  13148. {
  13149. name: "Macro",
  13150. height: math.unit(58, "feet"),
  13151. default: true
  13152. },
  13153. ]
  13154. ))
  13155. characterMakers.push(() => makeCharacter(
  13156. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13157. {
  13158. front: {
  13159. height: math.unit(12, "feet"),
  13160. weight: math.unit(6, "tonnes"),
  13161. name: "Front",
  13162. image: {
  13163. source: "./media/characters/lyra-von-wulf/front.svg",
  13164. extra: 1,
  13165. bottom: 0.10
  13166. }
  13167. },
  13168. frontMecha: {
  13169. height: math.unit(12, "feet"),
  13170. weight: math.unit(12, "tonnes"),
  13171. name: "Front (Mecha)",
  13172. image: {
  13173. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13174. extra: 1,
  13175. bottom: 0.042
  13176. }
  13177. },
  13178. maw: {
  13179. height: math.unit(2.2, "feet"),
  13180. name: "Maw",
  13181. image: {
  13182. source: "./media/characters/lyra-von-wulf/maw.svg"
  13183. }
  13184. },
  13185. },
  13186. [
  13187. {
  13188. name: "Normal",
  13189. height: math.unit(12, "feet"),
  13190. default: true
  13191. },
  13192. {
  13193. name: "Classic",
  13194. height: math.unit(50, "feet")
  13195. },
  13196. {
  13197. name: "Macro",
  13198. height: math.unit(500, "feet")
  13199. },
  13200. {
  13201. name: "Megamacro",
  13202. height: math.unit(1, "mile")
  13203. },
  13204. {
  13205. name: "Gigamacro",
  13206. height: math.unit(400, "miles")
  13207. },
  13208. {
  13209. name: "Teramacro",
  13210. height: math.unit(22000, "miles")
  13211. },
  13212. {
  13213. name: "Solarmacro",
  13214. height: math.unit(8600000, "miles")
  13215. },
  13216. {
  13217. name: "Galactic",
  13218. height: math.unit(1057000, "lightyears")
  13219. },
  13220. ]
  13221. ))
  13222. characterMakers.push(() => makeCharacter(
  13223. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13224. {
  13225. front: {
  13226. height: math.unit(6 + 10 / 12, "feet"),
  13227. weight: math.unit(150, "lb"),
  13228. name: "Front",
  13229. image: {
  13230. source: "./media/characters/dixon/front.svg",
  13231. extra: 3361 / 3209,
  13232. bottom: 0.01
  13233. }
  13234. },
  13235. },
  13236. [
  13237. {
  13238. name: "Normal",
  13239. height: math.unit(6 + 10 / 12, "feet"),
  13240. default: true
  13241. },
  13242. {
  13243. name: "Big",
  13244. height: math.unit(12, "meters")
  13245. },
  13246. {
  13247. name: "Macro",
  13248. height: math.unit(500, "meters")
  13249. },
  13250. {
  13251. name: "Megamacro",
  13252. height: math.unit(2, "km")
  13253. },
  13254. ]
  13255. ))
  13256. characterMakers.push(() => makeCharacter(
  13257. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13258. {
  13259. front: {
  13260. height: math.unit(185, "cm"),
  13261. weight: math.unit(68, "kg"),
  13262. name: "Front",
  13263. image: {
  13264. source: "./media/characters/kauko/front.svg",
  13265. extra: 1455 / 1421,
  13266. bottom: 0.03
  13267. }
  13268. },
  13269. back: {
  13270. height: math.unit(185, "cm"),
  13271. weight: math.unit(68, "kg"),
  13272. name: "Back",
  13273. image: {
  13274. source: "./media/characters/kauko/back.svg",
  13275. extra: 1455 / 1421,
  13276. bottom: 0.004
  13277. }
  13278. },
  13279. },
  13280. [
  13281. {
  13282. name: "Normal",
  13283. height: math.unit(185, "cm"),
  13284. default: true
  13285. },
  13286. ]
  13287. ))
  13288. characterMakers.push(() => makeCharacter(
  13289. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13290. {
  13291. front: {
  13292. height: math.unit(6, "feet"),
  13293. weight: math.unit(150, "kg"),
  13294. name: "Front",
  13295. image: {
  13296. source: "./media/characters/varg/front.svg",
  13297. extra: 1108 / 1018,
  13298. bottom: 0.0375
  13299. }
  13300. },
  13301. },
  13302. [
  13303. {
  13304. name: "Normal",
  13305. height: math.unit(5, "meters")
  13306. },
  13307. {
  13308. name: "Macro",
  13309. height: math.unit(200, "meters")
  13310. },
  13311. {
  13312. name: "Megamacro",
  13313. height: math.unit(20, "kilometers")
  13314. },
  13315. {
  13316. name: "True Size",
  13317. height: math.unit(211, "km"),
  13318. default: true
  13319. },
  13320. {
  13321. name: "Gigamacro",
  13322. height: math.unit(1000, "km")
  13323. },
  13324. {
  13325. name: "Gigamacro+",
  13326. height: math.unit(8000, "km")
  13327. },
  13328. {
  13329. name: "Teramacro",
  13330. height: math.unit(1000000, "km")
  13331. },
  13332. ]
  13333. ))
  13334. characterMakers.push(() => makeCharacter(
  13335. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13336. {
  13337. front: {
  13338. height: math.unit(7 + 7 / 12, "feet"),
  13339. weight: math.unit(267, "lb"),
  13340. name: "Front",
  13341. image: {
  13342. source: "./media/characters/dayza/front.svg",
  13343. extra: 1262 / 1200,
  13344. bottom: 0.035
  13345. }
  13346. },
  13347. side: {
  13348. height: math.unit(7 + 7 / 12, "feet"),
  13349. weight: math.unit(267, "lb"),
  13350. name: "Side",
  13351. image: {
  13352. source: "./media/characters/dayza/side.svg",
  13353. extra: 1295 / 1245,
  13354. bottom: 0.05
  13355. }
  13356. },
  13357. back: {
  13358. height: math.unit(7 + 7 / 12, "feet"),
  13359. weight: math.unit(267, "lb"),
  13360. name: "Back",
  13361. image: {
  13362. source: "./media/characters/dayza/back.svg",
  13363. extra: 1241 / 1170
  13364. }
  13365. },
  13366. },
  13367. [
  13368. {
  13369. name: "Normal",
  13370. height: math.unit(7 + 7 / 12, "feet"),
  13371. default: true
  13372. },
  13373. {
  13374. name: "Macro",
  13375. height: math.unit(155, "feet")
  13376. },
  13377. ]
  13378. ))
  13379. characterMakers.push(() => makeCharacter(
  13380. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13381. {
  13382. front: {
  13383. height: math.unit(6 + 5 / 12, "feet"),
  13384. weight: math.unit(160, "lb"),
  13385. name: "Front",
  13386. image: {
  13387. source: "./media/characters/xanthos/front.svg",
  13388. extra: 1,
  13389. bottom: 0.04
  13390. }
  13391. },
  13392. back: {
  13393. height: math.unit(6 + 5 / 12, "feet"),
  13394. weight: math.unit(160, "lb"),
  13395. name: "Back",
  13396. image: {
  13397. source: "./media/characters/xanthos/back.svg",
  13398. extra: 1,
  13399. bottom: 0.03
  13400. }
  13401. },
  13402. hand: {
  13403. height: math.unit(0.928, "feet"),
  13404. name: "Hand",
  13405. image: {
  13406. source: "./media/characters/xanthos/hand.svg"
  13407. }
  13408. },
  13409. foot: {
  13410. height: math.unit(1.286, "feet"),
  13411. name: "Foot",
  13412. image: {
  13413. source: "./media/characters/xanthos/foot.svg"
  13414. }
  13415. },
  13416. },
  13417. [
  13418. {
  13419. name: "Normal",
  13420. height: math.unit(6 + 5 / 12, "feet"),
  13421. default: true
  13422. },
  13423. {
  13424. name: "Normal+",
  13425. height: math.unit(6, "meters")
  13426. },
  13427. {
  13428. name: "Macro",
  13429. height: math.unit(40, "feet")
  13430. },
  13431. {
  13432. name: "Macro+",
  13433. height: math.unit(200, "meters")
  13434. },
  13435. {
  13436. name: "Megamacro",
  13437. height: math.unit(20, "km")
  13438. },
  13439. {
  13440. name: "Megamacro+",
  13441. height: math.unit(100, "km")
  13442. },
  13443. {
  13444. name: "Gigamacro",
  13445. height: math.unit(200, "megameters")
  13446. },
  13447. {
  13448. name: "Gigamacro+",
  13449. height: math.unit(1.5, "gigameters")
  13450. },
  13451. ]
  13452. ))
  13453. characterMakers.push(() => makeCharacter(
  13454. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13455. {
  13456. front: {
  13457. height: math.unit(6 + 3 / 12, "feet"),
  13458. weight: math.unit(215, "lb"),
  13459. name: "Front",
  13460. image: {
  13461. source: "./media/characters/grynn/front.svg",
  13462. extra: 4627 / 4209,
  13463. bottom: 0.047
  13464. }
  13465. },
  13466. },
  13467. [
  13468. {
  13469. name: "Micro",
  13470. height: math.unit(6, "inches")
  13471. },
  13472. {
  13473. name: "Normal",
  13474. height: math.unit(6 + 3 / 12, "feet"),
  13475. default: true
  13476. },
  13477. {
  13478. name: "Big",
  13479. height: math.unit(104, "feet")
  13480. },
  13481. {
  13482. name: "Macro",
  13483. height: math.unit(944, "feet")
  13484. },
  13485. {
  13486. name: "Macro+",
  13487. height: math.unit(9480, "feet")
  13488. },
  13489. {
  13490. name: "Megamacro",
  13491. height: math.unit(78752, "feet")
  13492. },
  13493. {
  13494. name: "Megamacro+",
  13495. height: math.unit(630128, "feet")
  13496. },
  13497. {
  13498. name: "Megamacro++",
  13499. height: math.unit(3150695, "feet")
  13500. },
  13501. ]
  13502. ))
  13503. characterMakers.push(() => makeCharacter(
  13504. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13505. {
  13506. front: {
  13507. height: math.unit(7 + 5 / 12, "feet"),
  13508. weight: math.unit(450, "lb"),
  13509. name: "Front",
  13510. image: {
  13511. source: "./media/characters/mocha-aura/front.svg",
  13512. extra: 1907 / 1817,
  13513. bottom: 0.04
  13514. }
  13515. },
  13516. back: {
  13517. height: math.unit(7 + 5 / 12, "feet"),
  13518. weight: math.unit(450, "lb"),
  13519. name: "Back",
  13520. image: {
  13521. source: "./media/characters/mocha-aura/back.svg",
  13522. extra: 1900 / 1825,
  13523. bottom: 0.045
  13524. }
  13525. },
  13526. },
  13527. [
  13528. {
  13529. name: "Nano",
  13530. height: math.unit(1, "nm")
  13531. },
  13532. {
  13533. name: "Megamicro",
  13534. height: math.unit(1, "mm")
  13535. },
  13536. {
  13537. name: "Micro",
  13538. height: math.unit(3, "inches")
  13539. },
  13540. {
  13541. name: "Normal",
  13542. height: math.unit(7 + 5 / 12, "feet"),
  13543. default: true
  13544. },
  13545. {
  13546. name: "Macro",
  13547. height: math.unit(30, "feet")
  13548. },
  13549. {
  13550. name: "Megamacro",
  13551. height: math.unit(3500, "feet")
  13552. },
  13553. {
  13554. name: "Teramacro",
  13555. height: math.unit(500000, "miles")
  13556. },
  13557. {
  13558. name: "Petamacro",
  13559. height: math.unit(50000000000000000, "parsecs")
  13560. },
  13561. ]
  13562. ))
  13563. characterMakers.push(() => makeCharacter(
  13564. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13565. {
  13566. front: {
  13567. height: math.unit(6, "feet"),
  13568. weight: math.unit(150, "lb"),
  13569. name: "Front",
  13570. image: {
  13571. source: "./media/characters/ilisha-devya/front.svg",
  13572. extra: 1053/1049,
  13573. bottom: 270/1323
  13574. }
  13575. },
  13576. back: {
  13577. height: math.unit(6, "feet"),
  13578. weight: math.unit(150, "lb"),
  13579. name: "Back",
  13580. image: {
  13581. source: "./media/characters/ilisha-devya/back.svg",
  13582. extra: 1131/1128,
  13583. bottom: 39/1170
  13584. }
  13585. },
  13586. },
  13587. [
  13588. {
  13589. name: "Macro",
  13590. height: math.unit(500, "feet"),
  13591. default: true
  13592. },
  13593. {
  13594. name: "Megamacro",
  13595. height: math.unit(10, "miles")
  13596. },
  13597. {
  13598. name: "Gigamacro",
  13599. height: math.unit(100000, "miles")
  13600. },
  13601. {
  13602. name: "Examacro",
  13603. height: math.unit(1e9, "lightyears")
  13604. },
  13605. {
  13606. name: "Omniversal",
  13607. height: math.unit(1e33, "lightyears")
  13608. },
  13609. {
  13610. name: "Beyond Infinite",
  13611. height: math.unit(1e100, "lightyears")
  13612. },
  13613. ]
  13614. ))
  13615. characterMakers.push(() => makeCharacter(
  13616. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13617. {
  13618. Side: {
  13619. height: math.unit(6, "feet"),
  13620. weight: math.unit(150, "lb"),
  13621. name: "Side",
  13622. image: {
  13623. source: "./media/characters/mira/side.svg",
  13624. extra: 900 / 799,
  13625. bottom: 0.02
  13626. }
  13627. },
  13628. },
  13629. [
  13630. {
  13631. name: "Human Size",
  13632. height: math.unit(6, "feet")
  13633. },
  13634. {
  13635. name: "Macro",
  13636. height: math.unit(100, "feet"),
  13637. default: true
  13638. },
  13639. {
  13640. name: "Megamacro",
  13641. height: math.unit(10, "miles")
  13642. },
  13643. {
  13644. name: "Gigamacro",
  13645. height: math.unit(25000, "miles")
  13646. },
  13647. {
  13648. name: "Teramacro",
  13649. height: math.unit(300, "AU")
  13650. },
  13651. {
  13652. name: "Full Size",
  13653. height: math.unit(4.5e10, "lightyears")
  13654. },
  13655. ]
  13656. ))
  13657. characterMakers.push(() => makeCharacter(
  13658. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13659. {
  13660. front: {
  13661. height: math.unit(6, "feet"),
  13662. weight: math.unit(150, "lb"),
  13663. name: "Front",
  13664. image: {
  13665. source: "./media/characters/holly/front.svg",
  13666. extra: 639 / 606
  13667. }
  13668. },
  13669. back: {
  13670. height: math.unit(6, "feet"),
  13671. weight: math.unit(150, "lb"),
  13672. name: "Back",
  13673. image: {
  13674. source: "./media/characters/holly/back.svg",
  13675. extra: 623 / 598
  13676. }
  13677. },
  13678. frontWorking: {
  13679. height: math.unit(6, "feet"),
  13680. weight: math.unit(150, "lb"),
  13681. name: "Front (Working)",
  13682. image: {
  13683. source: "./media/characters/holly/front-working.svg",
  13684. extra: 607 / 577,
  13685. bottom: 0.048
  13686. }
  13687. },
  13688. },
  13689. [
  13690. {
  13691. name: "Normal",
  13692. height: math.unit(12 + 3 / 12, "feet"),
  13693. default: true
  13694. },
  13695. ]
  13696. ))
  13697. characterMakers.push(() => makeCharacter(
  13698. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13699. {
  13700. front: {
  13701. height: math.unit(6, "feet"),
  13702. weight: math.unit(150, "lb"),
  13703. name: "Front",
  13704. image: {
  13705. source: "./media/characters/porter/front.svg",
  13706. extra: 1,
  13707. bottom: 0.01
  13708. }
  13709. },
  13710. frontRobes: {
  13711. height: math.unit(6, "feet"),
  13712. weight: math.unit(150, "lb"),
  13713. name: "Front (Robes)",
  13714. image: {
  13715. source: "./media/characters/porter/front-robes.svg",
  13716. extra: 1.01,
  13717. bottom: 0.01
  13718. }
  13719. },
  13720. },
  13721. [
  13722. {
  13723. name: "Normal",
  13724. height: math.unit(11 + 9 / 12, "feet"),
  13725. default: true
  13726. },
  13727. ]
  13728. ))
  13729. characterMakers.push(() => makeCharacter(
  13730. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13731. {
  13732. legendary: {
  13733. height: math.unit(6, "feet"),
  13734. weight: math.unit(150, "lb"),
  13735. name: "Legendary",
  13736. image: {
  13737. source: "./media/characters/lucy/legendary.svg",
  13738. extra: 1355 / 1100,
  13739. bottom: 0.045
  13740. }
  13741. },
  13742. },
  13743. [
  13744. {
  13745. name: "Legendary",
  13746. height: math.unit(86882 * 2, "miles"),
  13747. default: true
  13748. },
  13749. ]
  13750. ))
  13751. characterMakers.push(() => makeCharacter(
  13752. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13753. {
  13754. front: {
  13755. height: math.unit(6, "feet"),
  13756. weight: math.unit(150, "lb"),
  13757. name: "Front",
  13758. image: {
  13759. source: "./media/characters/drusilla/front.svg",
  13760. extra: 678 / 635,
  13761. bottom: 0.03
  13762. }
  13763. },
  13764. back: {
  13765. height: math.unit(6, "feet"),
  13766. weight: math.unit(150, "lb"),
  13767. name: "Back",
  13768. image: {
  13769. source: "./media/characters/drusilla/back.svg",
  13770. extra: 678 / 635,
  13771. bottom: 0.005
  13772. }
  13773. },
  13774. },
  13775. [
  13776. {
  13777. name: "Macro",
  13778. height: math.unit(100, "feet")
  13779. },
  13780. {
  13781. name: "Canon Height",
  13782. height: math.unit(2000, "feet"),
  13783. default: true
  13784. },
  13785. ]
  13786. ))
  13787. characterMakers.push(() => makeCharacter(
  13788. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13789. {
  13790. front: {
  13791. height: math.unit(6, "feet"),
  13792. weight: math.unit(180, "lb"),
  13793. name: "Front",
  13794. image: {
  13795. source: "./media/characters/renard-thatch/front.svg",
  13796. extra: 2411 / 2275,
  13797. bottom: 0.01
  13798. }
  13799. },
  13800. frontPosing: {
  13801. height: math.unit(6, "feet"),
  13802. weight: math.unit(180, "lb"),
  13803. name: "Front (Posing)",
  13804. image: {
  13805. source: "./media/characters/renard-thatch/front-posing.svg",
  13806. extra: 2381 / 2261,
  13807. bottom: 0.01
  13808. }
  13809. },
  13810. back: {
  13811. height: math.unit(6, "feet"),
  13812. weight: math.unit(180, "lb"),
  13813. name: "Back",
  13814. image: {
  13815. source: "./media/characters/renard-thatch/back.svg",
  13816. extra: 2428 / 2288
  13817. }
  13818. },
  13819. },
  13820. [
  13821. {
  13822. name: "Micro",
  13823. height: math.unit(3, "inches")
  13824. },
  13825. {
  13826. name: "Default",
  13827. height: math.unit(6, "feet"),
  13828. default: true
  13829. },
  13830. {
  13831. name: "Macro",
  13832. height: math.unit(75, "feet")
  13833. },
  13834. ]
  13835. ))
  13836. characterMakers.push(() => makeCharacter(
  13837. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13838. {
  13839. front: {
  13840. height: math.unit(1450, "feet"),
  13841. weight: math.unit(1.21e6, "tons"),
  13842. name: "Front",
  13843. image: {
  13844. source: "./media/characters/sekvra/front.svg",
  13845. extra: 1193/1190,
  13846. bottom: 78/1271
  13847. }
  13848. },
  13849. side: {
  13850. height: math.unit(1450, "feet"),
  13851. weight: math.unit(1.21e6, "tons"),
  13852. name: "Side",
  13853. image: {
  13854. source: "./media/characters/sekvra/side.svg",
  13855. extra: 1193/1190,
  13856. bottom: 52/1245
  13857. }
  13858. },
  13859. back: {
  13860. height: math.unit(1450, "feet"),
  13861. weight: math.unit(1.21e6, "tons"),
  13862. name: "Back",
  13863. image: {
  13864. source: "./media/characters/sekvra/back.svg",
  13865. extra: 1219/1216,
  13866. bottom: 21/1240
  13867. }
  13868. },
  13869. frontClothed: {
  13870. height: math.unit(1450, "feet"),
  13871. weight: math.unit(1.21e6, "tons"),
  13872. name: "Front (Clothed)",
  13873. image: {
  13874. source: "./media/characters/sekvra/front-clothed.svg",
  13875. extra: 1192/1189,
  13876. bottom: 79/1271
  13877. }
  13878. },
  13879. },
  13880. [
  13881. {
  13882. name: "Macro",
  13883. height: math.unit(1450, "feet"),
  13884. default: true
  13885. },
  13886. {
  13887. name: "Megamacro",
  13888. height: math.unit(15000, "feet")
  13889. },
  13890. ]
  13891. ))
  13892. characterMakers.push(() => makeCharacter(
  13893. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13894. {
  13895. front: {
  13896. height: math.unit(6, "feet"),
  13897. weight: math.unit(150, "lb"),
  13898. name: "Front",
  13899. image: {
  13900. source: "./media/characters/carmine/front.svg",
  13901. extra: 1,
  13902. bottom: 0.035
  13903. }
  13904. },
  13905. frontArmor: {
  13906. height: math.unit(6, "feet"),
  13907. weight: math.unit(150, "lb"),
  13908. name: "Front (Armor)",
  13909. image: {
  13910. source: "./media/characters/carmine/front-armor.svg",
  13911. extra: 1,
  13912. bottom: 0.035
  13913. }
  13914. },
  13915. },
  13916. [
  13917. {
  13918. name: "Large",
  13919. height: math.unit(1, "mile")
  13920. },
  13921. {
  13922. name: "Huge",
  13923. height: math.unit(40, "miles"),
  13924. default: true
  13925. },
  13926. {
  13927. name: "Colossal",
  13928. height: math.unit(2500, "miles")
  13929. },
  13930. ]
  13931. ))
  13932. characterMakers.push(() => makeCharacter(
  13933. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13934. {
  13935. front: {
  13936. height: math.unit(6, "feet"),
  13937. weight: math.unit(150, "lb"),
  13938. name: "Front",
  13939. image: {
  13940. source: "./media/characters/elyssia/front.svg",
  13941. extra: 2201 / 2035,
  13942. bottom: 0.05
  13943. }
  13944. },
  13945. frontClothed: {
  13946. height: math.unit(6, "feet"),
  13947. weight: math.unit(150, "lb"),
  13948. name: "Front (Clothed)",
  13949. image: {
  13950. source: "./media/characters/elyssia/front-clothed.svg",
  13951. extra: 2201 / 2035,
  13952. bottom: 0.05
  13953. }
  13954. },
  13955. back: {
  13956. height: math.unit(6, "feet"),
  13957. weight: math.unit(150, "lb"),
  13958. name: "Back",
  13959. image: {
  13960. source: "./media/characters/elyssia/back.svg",
  13961. extra: 2201 / 2035,
  13962. bottom: 0.013
  13963. }
  13964. },
  13965. },
  13966. [
  13967. {
  13968. name: "Smaller",
  13969. height: math.unit(150, "feet")
  13970. },
  13971. {
  13972. name: "Standard",
  13973. height: math.unit(1400, "feet"),
  13974. default: true
  13975. },
  13976. {
  13977. name: "Distracted",
  13978. height: math.unit(15000, "feet")
  13979. },
  13980. ]
  13981. ))
  13982. characterMakers.push(() => makeCharacter(
  13983. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13984. {
  13985. front: {
  13986. height: math.unit(7 + 4/12, "feet"),
  13987. weight: math.unit(690, "lb"),
  13988. name: "Front",
  13989. image: {
  13990. source: "./media/characters/geno-maxwell/front.svg",
  13991. extra: 984/856,
  13992. bottom: 87/1071
  13993. }
  13994. },
  13995. back: {
  13996. height: math.unit(7 + 4/12, "feet"),
  13997. weight: math.unit(690, "lb"),
  13998. name: "Back",
  13999. image: {
  14000. source: "./media/characters/geno-maxwell/back.svg",
  14001. extra: 981/854,
  14002. bottom: 57/1038
  14003. }
  14004. },
  14005. frontCostume: {
  14006. height: math.unit(7 + 4/12, "feet"),
  14007. weight: math.unit(690, "lb"),
  14008. name: "Front (Costume)",
  14009. image: {
  14010. source: "./media/characters/geno-maxwell/front-costume.svg",
  14011. extra: 984/856,
  14012. bottom: 87/1071
  14013. }
  14014. },
  14015. backcostume: {
  14016. height: math.unit(7 + 4/12, "feet"),
  14017. weight: math.unit(690, "lb"),
  14018. name: "Back (Costume)",
  14019. image: {
  14020. source: "./media/characters/geno-maxwell/back-costume.svg",
  14021. extra: 981/854,
  14022. bottom: 57/1038
  14023. }
  14024. },
  14025. },
  14026. [
  14027. {
  14028. name: "Micro",
  14029. height: math.unit(3, "inches")
  14030. },
  14031. {
  14032. name: "Normal",
  14033. height: math.unit(7 + 4 / 12, "feet"),
  14034. default: true
  14035. },
  14036. {
  14037. name: "Macro",
  14038. height: math.unit(220, "feet")
  14039. },
  14040. {
  14041. name: "Megamacro",
  14042. height: math.unit(11, "miles")
  14043. },
  14044. ]
  14045. ))
  14046. characterMakers.push(() => makeCharacter(
  14047. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14048. {
  14049. front: {
  14050. height: math.unit(7 + 4/12, "feet"),
  14051. weight: math.unit(750, "lb"),
  14052. name: "Front",
  14053. image: {
  14054. source: "./media/characters/regena-maxwell/front.svg",
  14055. extra: 984/856,
  14056. bottom: 87/1071
  14057. }
  14058. },
  14059. back: {
  14060. height: math.unit(7 + 4/12, "feet"),
  14061. weight: math.unit(750, "lb"),
  14062. name: "Back",
  14063. image: {
  14064. source: "./media/characters/regena-maxwell/back.svg",
  14065. extra: 981/854,
  14066. bottom: 57/1038
  14067. }
  14068. },
  14069. frontCostume: {
  14070. height: math.unit(7 + 4/12, "feet"),
  14071. weight: math.unit(750, "lb"),
  14072. name: "Front (Costume)",
  14073. image: {
  14074. source: "./media/characters/regena-maxwell/front-costume.svg",
  14075. extra: 984/856,
  14076. bottom: 87/1071
  14077. }
  14078. },
  14079. backcostume: {
  14080. height: math.unit(7 + 4/12, "feet"),
  14081. weight: math.unit(750, "lb"),
  14082. name: "Back (Costume)",
  14083. image: {
  14084. source: "./media/characters/regena-maxwell/back-costume.svg",
  14085. extra: 981/854,
  14086. bottom: 57/1038
  14087. }
  14088. },
  14089. },
  14090. [
  14091. {
  14092. name: "Normal",
  14093. height: math.unit(7 + 4 / 12, "feet"),
  14094. default: true
  14095. },
  14096. {
  14097. name: "Macro",
  14098. height: math.unit(220, "feet")
  14099. },
  14100. {
  14101. name: "Megamacro",
  14102. height: math.unit(11, "miles")
  14103. },
  14104. ]
  14105. ))
  14106. characterMakers.push(() => makeCharacter(
  14107. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14108. {
  14109. front: {
  14110. height: math.unit(6, "feet"),
  14111. weight: math.unit(150, "lb"),
  14112. name: "Front",
  14113. image: {
  14114. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14115. extra: 860 / 690,
  14116. bottom: 0.03
  14117. }
  14118. },
  14119. },
  14120. [
  14121. {
  14122. name: "Normal",
  14123. height: math.unit(1.7, "meters"),
  14124. default: true
  14125. },
  14126. ]
  14127. ))
  14128. characterMakers.push(() => makeCharacter(
  14129. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14130. {
  14131. front: {
  14132. height: math.unit(6, "feet"),
  14133. weight: math.unit(150, "lb"),
  14134. name: "Front",
  14135. image: {
  14136. source: "./media/characters/quilly/front.svg",
  14137. extra: 890 / 776
  14138. }
  14139. },
  14140. },
  14141. [
  14142. {
  14143. name: "Gigamacro",
  14144. height: math.unit(404090, "miles"),
  14145. default: true
  14146. },
  14147. ]
  14148. ))
  14149. characterMakers.push(() => makeCharacter(
  14150. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14151. {
  14152. front: {
  14153. height: math.unit(7 + 8 / 12, "feet"),
  14154. weight: math.unit(350, "lb"),
  14155. name: "Front",
  14156. image: {
  14157. source: "./media/characters/tempest/front.svg",
  14158. extra: 1175 / 1086,
  14159. bottom: 0.02
  14160. }
  14161. },
  14162. },
  14163. [
  14164. {
  14165. name: "Normal",
  14166. height: math.unit(7 + 8 / 12, "feet"),
  14167. default: true
  14168. },
  14169. ]
  14170. ))
  14171. characterMakers.push(() => makeCharacter(
  14172. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14173. {
  14174. side: {
  14175. height: math.unit(4 + 5 / 12, "feet"),
  14176. weight: math.unit(80, "lb"),
  14177. name: "Side",
  14178. image: {
  14179. source: "./media/characters/rodger/side.svg",
  14180. extra: 1235 / 1118
  14181. }
  14182. },
  14183. },
  14184. [
  14185. {
  14186. name: "Micro",
  14187. height: math.unit(1, "inch")
  14188. },
  14189. {
  14190. name: "Normal",
  14191. height: math.unit(4 + 5 / 12, "feet"),
  14192. default: true
  14193. },
  14194. {
  14195. name: "Macro",
  14196. height: math.unit(120, "feet")
  14197. },
  14198. ]
  14199. ))
  14200. characterMakers.push(() => makeCharacter(
  14201. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14202. {
  14203. front: {
  14204. height: math.unit(6, "feet"),
  14205. weight: math.unit(150, "lb"),
  14206. name: "Front",
  14207. image: {
  14208. source: "./media/characters/danyel/front.svg",
  14209. extra: 1185 / 1123,
  14210. bottom: 0.05
  14211. }
  14212. },
  14213. },
  14214. [
  14215. {
  14216. name: "Shrunken",
  14217. height: math.unit(0.5, "mm")
  14218. },
  14219. {
  14220. name: "Micro",
  14221. height: math.unit(1, "mm"),
  14222. default: true
  14223. },
  14224. {
  14225. name: "Upsized",
  14226. height: math.unit(5 + 5 / 12, "feet")
  14227. },
  14228. ]
  14229. ))
  14230. characterMakers.push(() => makeCharacter(
  14231. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14232. {
  14233. front: {
  14234. height: math.unit(5 + 6 / 12, "feet"),
  14235. weight: math.unit(200, "lb"),
  14236. name: "Front",
  14237. image: {
  14238. source: "./media/characters/vivian-bijoux/front.svg",
  14239. extra: 1217/1209,
  14240. bottom: 76/1293
  14241. }
  14242. },
  14243. back: {
  14244. height: math.unit(5 + 6 / 12, "feet"),
  14245. weight: math.unit(200, "lb"),
  14246. name: "Back",
  14247. image: {
  14248. source: "./media/characters/vivian-bijoux/back.svg",
  14249. extra: 1214/1208,
  14250. bottom: 51/1265
  14251. }
  14252. },
  14253. dressed: {
  14254. height: math.unit(5 + 6 / 12, "feet"),
  14255. weight: math.unit(200, "lb"),
  14256. name: "Dressed",
  14257. image: {
  14258. source: "./media/characters/vivian-bijoux/dressed.svg",
  14259. extra: 1217/1209,
  14260. bottom: 76/1293
  14261. }
  14262. },
  14263. },
  14264. [
  14265. {
  14266. name: "Normal",
  14267. height: math.unit(5 + 6 / 12, "feet"),
  14268. default: true
  14269. },
  14270. {
  14271. name: "Bad Dream",
  14272. height: math.unit(500, "feet")
  14273. },
  14274. {
  14275. name: "Nightmare",
  14276. height: math.unit(500, "miles")
  14277. },
  14278. ]
  14279. ))
  14280. characterMakers.push(() => makeCharacter(
  14281. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14282. {
  14283. front: {
  14284. height: math.unit(6 + 1 / 12, "feet"),
  14285. weight: math.unit(260, "lb"),
  14286. name: "Front",
  14287. image: {
  14288. source: "./media/characters/zeta/front.svg",
  14289. extra: 1968 / 1889,
  14290. bottom: 0.06
  14291. }
  14292. },
  14293. back: {
  14294. height: math.unit(6 + 1 / 12, "feet"),
  14295. weight: math.unit(260, "lb"),
  14296. name: "Back",
  14297. image: {
  14298. source: "./media/characters/zeta/back.svg",
  14299. extra: 1944 / 1858,
  14300. bottom: 0.03
  14301. }
  14302. },
  14303. hand: {
  14304. height: math.unit(1.112, "feet"),
  14305. name: "Hand",
  14306. image: {
  14307. source: "./media/characters/zeta/hand.svg"
  14308. }
  14309. },
  14310. foot: {
  14311. height: math.unit(1.48, "feet"),
  14312. name: "Foot",
  14313. image: {
  14314. source: "./media/characters/zeta/foot.svg"
  14315. }
  14316. },
  14317. },
  14318. [
  14319. {
  14320. name: "Micro",
  14321. height: math.unit(6, "inches")
  14322. },
  14323. {
  14324. name: "Normal",
  14325. height: math.unit(6 + 1 / 12, "feet"),
  14326. default: true
  14327. },
  14328. {
  14329. name: "Macro",
  14330. height: math.unit(20, "feet")
  14331. },
  14332. ]
  14333. ))
  14334. characterMakers.push(() => makeCharacter(
  14335. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14336. {
  14337. front: {
  14338. height: math.unit(6, "feet"),
  14339. weight: math.unit(150, "lb"),
  14340. name: "Front",
  14341. image: {
  14342. source: "./media/characters/jamie-larsen/front.svg",
  14343. extra: 962 / 933,
  14344. bottom: 0.02
  14345. }
  14346. },
  14347. back: {
  14348. height: math.unit(6, "feet"),
  14349. weight: math.unit(150, "lb"),
  14350. name: "Back",
  14351. image: {
  14352. source: "./media/characters/jamie-larsen/back.svg",
  14353. extra: 997 / 946
  14354. }
  14355. },
  14356. },
  14357. [
  14358. {
  14359. name: "Macro",
  14360. height: math.unit(28 + 7 / 12, "feet"),
  14361. default: true
  14362. },
  14363. {
  14364. name: "Macro+",
  14365. height: math.unit(180, "feet")
  14366. },
  14367. {
  14368. name: "Megamacro",
  14369. height: math.unit(10, "miles")
  14370. },
  14371. {
  14372. name: "Gigamacro",
  14373. height: math.unit(200000, "miles")
  14374. },
  14375. ]
  14376. ))
  14377. characterMakers.push(() => makeCharacter(
  14378. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14379. {
  14380. front: {
  14381. height: math.unit(6, "feet"),
  14382. weight: math.unit(120, "lb"),
  14383. name: "Front",
  14384. image: {
  14385. source: "./media/characters/vance/front.svg",
  14386. extra: 1980 / 1890,
  14387. bottom: 0.09
  14388. }
  14389. },
  14390. back: {
  14391. height: math.unit(6, "feet"),
  14392. weight: math.unit(120, "lb"),
  14393. name: "Back",
  14394. image: {
  14395. source: "./media/characters/vance/back.svg",
  14396. extra: 2081 / 1994,
  14397. bottom: 0.014
  14398. }
  14399. },
  14400. hand: {
  14401. height: math.unit(0.88, "feet"),
  14402. name: "Hand",
  14403. image: {
  14404. source: "./media/characters/vance/hand.svg"
  14405. }
  14406. },
  14407. foot: {
  14408. height: math.unit(0.64, "feet"),
  14409. name: "Foot",
  14410. image: {
  14411. source: "./media/characters/vance/foot.svg"
  14412. }
  14413. },
  14414. },
  14415. [
  14416. {
  14417. name: "Small",
  14418. height: math.unit(90, "feet"),
  14419. default: true
  14420. },
  14421. {
  14422. name: "Macro",
  14423. height: math.unit(100, "meters")
  14424. },
  14425. {
  14426. name: "Megamacro",
  14427. height: math.unit(15, "miles")
  14428. },
  14429. ]
  14430. ))
  14431. characterMakers.push(() => makeCharacter(
  14432. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14433. {
  14434. front: {
  14435. height: math.unit(6, "feet"),
  14436. weight: math.unit(180, "lb"),
  14437. name: "Front",
  14438. image: {
  14439. source: "./media/characters/xochitl/front.svg",
  14440. extra: 2297 / 2261,
  14441. bottom: 0.065
  14442. }
  14443. },
  14444. back: {
  14445. height: math.unit(6, "feet"),
  14446. weight: math.unit(180, "lb"),
  14447. name: "Back",
  14448. image: {
  14449. source: "./media/characters/xochitl/back.svg",
  14450. extra: 2386 / 2354,
  14451. bottom: 0.01
  14452. }
  14453. },
  14454. foot: {
  14455. height: math.unit(6 / 5 * 1.15, "feet"),
  14456. weight: math.unit(150, "lb"),
  14457. name: "Foot",
  14458. image: {
  14459. source: "./media/characters/xochitl/foot.svg"
  14460. }
  14461. },
  14462. },
  14463. [
  14464. {
  14465. name: "Macro",
  14466. height: math.unit(80, "feet")
  14467. },
  14468. {
  14469. name: "Macro+",
  14470. height: math.unit(400, "feet"),
  14471. default: true
  14472. },
  14473. {
  14474. name: "Gigamacro",
  14475. height: math.unit(80000, "miles")
  14476. },
  14477. {
  14478. name: "Gigamacro+",
  14479. height: math.unit(400000, "miles")
  14480. },
  14481. {
  14482. name: "Teramacro",
  14483. height: math.unit(300, "AU")
  14484. },
  14485. ]
  14486. ))
  14487. characterMakers.push(() => makeCharacter(
  14488. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14489. {
  14490. front: {
  14491. height: math.unit(6, "feet"),
  14492. weight: math.unit(150, "lb"),
  14493. name: "Front",
  14494. image: {
  14495. source: "./media/characters/vincent/front.svg",
  14496. extra: 1130 / 1080,
  14497. bottom: 0.055
  14498. }
  14499. },
  14500. beak: {
  14501. height: math.unit(6 * 0.1, "feet"),
  14502. name: "Beak",
  14503. image: {
  14504. source: "./media/characters/vincent/beak.svg"
  14505. }
  14506. },
  14507. hand: {
  14508. height: math.unit(6 * 0.85, "feet"),
  14509. weight: math.unit(150, "lb"),
  14510. name: "Hand",
  14511. image: {
  14512. source: "./media/characters/vincent/hand.svg"
  14513. }
  14514. },
  14515. foot: {
  14516. height: math.unit(6 * 0.19, "feet"),
  14517. weight: math.unit(150, "lb"),
  14518. name: "Foot",
  14519. image: {
  14520. source: "./media/characters/vincent/foot.svg"
  14521. }
  14522. },
  14523. },
  14524. [
  14525. {
  14526. name: "Base",
  14527. height: math.unit(6 + 5 / 12, "feet"),
  14528. default: true
  14529. },
  14530. {
  14531. name: "Macro",
  14532. height: math.unit(300, "feet")
  14533. },
  14534. {
  14535. name: "Megamacro",
  14536. height: math.unit(2, "miles")
  14537. },
  14538. {
  14539. name: "Gigamacro",
  14540. height: math.unit(1000, "miles")
  14541. },
  14542. ]
  14543. ))
  14544. characterMakers.push(() => makeCharacter(
  14545. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14546. {
  14547. front: {
  14548. height: math.unit(2, "meters"),
  14549. weight: math.unit(500, "kg"),
  14550. name: "Front",
  14551. image: {
  14552. source: "./media/characters/coatl/front.svg",
  14553. extra: 3948 / 3500,
  14554. bottom: 0.082
  14555. }
  14556. },
  14557. },
  14558. [
  14559. {
  14560. name: "Normal",
  14561. height: math.unit(4, "meters")
  14562. },
  14563. {
  14564. name: "Macro",
  14565. height: math.unit(100, "meters"),
  14566. default: true
  14567. },
  14568. {
  14569. name: "Macro+",
  14570. height: math.unit(300, "meters")
  14571. },
  14572. {
  14573. name: "Megamacro",
  14574. height: math.unit(3, "gigameters")
  14575. },
  14576. {
  14577. name: "Megamacro+",
  14578. height: math.unit(300, "terameters")
  14579. },
  14580. {
  14581. name: "Megamacro++",
  14582. height: math.unit(3, "lightyears")
  14583. },
  14584. ]
  14585. ))
  14586. characterMakers.push(() => makeCharacter(
  14587. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14588. {
  14589. front: {
  14590. height: math.unit(6, "feet"),
  14591. weight: math.unit(50, "kg"),
  14592. name: "front",
  14593. image: {
  14594. source: "./media/characters/shiroryu/front.svg",
  14595. extra: 1990 / 1935
  14596. }
  14597. },
  14598. },
  14599. [
  14600. {
  14601. name: "Mortal Mingling",
  14602. height: math.unit(3, "meters")
  14603. },
  14604. {
  14605. name: "Kaiju-ish",
  14606. height: math.unit(250, "meters")
  14607. },
  14608. {
  14609. name: "Somewhat Godly",
  14610. height: math.unit(400, "km"),
  14611. default: true
  14612. },
  14613. {
  14614. name: "Planetary",
  14615. height: math.unit(300, "megameters")
  14616. },
  14617. {
  14618. name: "Galaxy-dwarfing",
  14619. height: math.unit(450, "kiloparsecs")
  14620. },
  14621. {
  14622. name: "Universe Eater",
  14623. height: math.unit(150, "gigaparsecs")
  14624. },
  14625. {
  14626. name: "Almost Immeasurable",
  14627. height: math.unit(1.3e266, "yottaparsecs")
  14628. },
  14629. ]
  14630. ))
  14631. characterMakers.push(() => makeCharacter(
  14632. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14633. {
  14634. front: {
  14635. height: math.unit(6, "feet"),
  14636. weight: math.unit(150, "lb"),
  14637. name: "Front",
  14638. image: {
  14639. source: "./media/characters/umeko/front.svg",
  14640. extra: 1,
  14641. bottom: 0.019
  14642. }
  14643. },
  14644. frontArmored: {
  14645. height: math.unit(6, "feet"),
  14646. weight: math.unit(150, "lb"),
  14647. name: "Front (Armored)",
  14648. image: {
  14649. source: "./media/characters/umeko/front-armored.svg",
  14650. extra: 1,
  14651. bottom: 0.021
  14652. }
  14653. },
  14654. },
  14655. [
  14656. {
  14657. name: "Macro",
  14658. height: math.unit(220, "feet"),
  14659. default: true
  14660. },
  14661. {
  14662. name: "Guardian Dragon",
  14663. height: math.unit(50, "miles")
  14664. },
  14665. {
  14666. name: "Cosmic",
  14667. height: math.unit(800000, "miles")
  14668. },
  14669. ]
  14670. ))
  14671. characterMakers.push(() => makeCharacter(
  14672. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14673. {
  14674. front: {
  14675. height: math.unit(6, "feet"),
  14676. weight: math.unit(150, "lb"),
  14677. name: "Front",
  14678. image: {
  14679. source: "./media/characters/cassidy/front.svg",
  14680. extra: 810/808,
  14681. bottom: 41/851
  14682. }
  14683. },
  14684. },
  14685. [
  14686. {
  14687. name: "Canon Height",
  14688. height: math.unit(120, "feet"),
  14689. default: true
  14690. },
  14691. {
  14692. name: "Macro+",
  14693. height: math.unit(400, "feet")
  14694. },
  14695. {
  14696. name: "Macro++",
  14697. height: math.unit(4000, "feet")
  14698. },
  14699. {
  14700. name: "Megamacro",
  14701. height: math.unit(3, "miles")
  14702. },
  14703. ]
  14704. ))
  14705. characterMakers.push(() => makeCharacter(
  14706. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14707. {
  14708. front: {
  14709. height: math.unit(6, "feet"),
  14710. weight: math.unit(150, "lb"),
  14711. name: "Front",
  14712. image: {
  14713. source: "./media/characters/isaac/front.svg",
  14714. extra: 896 / 815,
  14715. bottom: 0.11
  14716. }
  14717. },
  14718. },
  14719. [
  14720. {
  14721. name: "Human Size",
  14722. height: math.unit(8, "feet"),
  14723. default: true
  14724. },
  14725. {
  14726. name: "Macro",
  14727. height: math.unit(400, "feet")
  14728. },
  14729. {
  14730. name: "Megamacro",
  14731. height: math.unit(50, "miles")
  14732. },
  14733. {
  14734. name: "Canon Height",
  14735. height: math.unit(200, "AU")
  14736. },
  14737. ]
  14738. ))
  14739. characterMakers.push(() => makeCharacter(
  14740. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14741. {
  14742. front: {
  14743. height: math.unit(6, "feet"),
  14744. weight: math.unit(72, "kg"),
  14745. name: "Front",
  14746. image: {
  14747. source: "./media/characters/sleekit/front.svg",
  14748. extra: 4693 / 4487,
  14749. bottom: 0.012
  14750. }
  14751. },
  14752. },
  14753. [
  14754. {
  14755. name: "Minimum Height",
  14756. height: math.unit(10, "meters")
  14757. },
  14758. {
  14759. name: "Smaller",
  14760. height: math.unit(25, "meters")
  14761. },
  14762. {
  14763. name: "Larger",
  14764. height: math.unit(38, "meters"),
  14765. default: true
  14766. },
  14767. {
  14768. name: "Maximum height",
  14769. height: math.unit(100, "meters")
  14770. },
  14771. ]
  14772. ))
  14773. characterMakers.push(() => makeCharacter(
  14774. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14775. {
  14776. front: {
  14777. height: math.unit(6, "feet"),
  14778. weight: math.unit(150, "lb"),
  14779. name: "Front",
  14780. image: {
  14781. source: "./media/characters/nillia/front.svg",
  14782. extra: 2195 / 2037,
  14783. bottom: 0.005
  14784. }
  14785. },
  14786. back: {
  14787. height: math.unit(6, "feet"),
  14788. weight: math.unit(150, "lb"),
  14789. name: "Back",
  14790. image: {
  14791. source: "./media/characters/nillia/back.svg",
  14792. extra: 2195 / 2037,
  14793. bottom: 0.005
  14794. }
  14795. },
  14796. },
  14797. [
  14798. {
  14799. name: "Canon Height",
  14800. height: math.unit(489, "feet"),
  14801. default: true
  14802. }
  14803. ]
  14804. ))
  14805. characterMakers.push(() => makeCharacter(
  14806. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14807. {
  14808. front: {
  14809. height: math.unit(6, "feet"),
  14810. weight: math.unit(150, "lb"),
  14811. name: "Front",
  14812. image: {
  14813. source: "./media/characters/mesmyriza/front.svg",
  14814. extra: 2067 / 1784,
  14815. bottom: 0.035
  14816. }
  14817. },
  14818. foot: {
  14819. height: math.unit(6 / (250 / 35), "feet"),
  14820. name: "Foot",
  14821. image: {
  14822. source: "./media/characters/mesmyriza/foot.svg"
  14823. }
  14824. },
  14825. },
  14826. [
  14827. {
  14828. name: "Macro",
  14829. height: math.unit(457, "meters"),
  14830. default: true
  14831. },
  14832. {
  14833. name: "Megamacro",
  14834. height: math.unit(8, "megameters")
  14835. },
  14836. ]
  14837. ))
  14838. characterMakers.push(() => makeCharacter(
  14839. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14840. {
  14841. front: {
  14842. height: math.unit(6, "feet"),
  14843. weight: math.unit(250, "lb"),
  14844. name: "Front",
  14845. image: {
  14846. source: "./media/characters/saudade/front.svg",
  14847. extra: 1172 / 1139,
  14848. bottom: 0.035
  14849. }
  14850. },
  14851. },
  14852. [
  14853. {
  14854. name: "Micro",
  14855. height: math.unit(3, "inches")
  14856. },
  14857. {
  14858. name: "Normal",
  14859. height: math.unit(6, "feet"),
  14860. default: true
  14861. },
  14862. {
  14863. name: "Macro",
  14864. height: math.unit(50, "feet")
  14865. },
  14866. {
  14867. name: "Megamacro",
  14868. height: math.unit(2800, "feet")
  14869. },
  14870. ]
  14871. ))
  14872. characterMakers.push(() => makeCharacter(
  14873. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14874. {
  14875. front: {
  14876. height: math.unit(5 + 4 / 12, "feet"),
  14877. weight: math.unit(100, "lb"),
  14878. name: "Front",
  14879. image: {
  14880. source: "./media/characters/keireer/front.svg",
  14881. extra: 716 / 666,
  14882. bottom: 0.05
  14883. }
  14884. },
  14885. },
  14886. [
  14887. {
  14888. name: "Normal",
  14889. height: math.unit(5 + 4 / 12, "feet"),
  14890. default: true
  14891. },
  14892. ]
  14893. ))
  14894. characterMakers.push(() => makeCharacter(
  14895. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14896. {
  14897. front: {
  14898. height: math.unit(6, "feet"),
  14899. weight: math.unit(90, "kg"),
  14900. name: "Front",
  14901. image: {
  14902. source: "./media/characters/mirja/front.svg",
  14903. extra: 1789 / 1683,
  14904. bottom: 0.05
  14905. }
  14906. },
  14907. frontDressed: {
  14908. height: math.unit(6, "feet"),
  14909. weight: math.unit(90, "lb"),
  14910. name: "Front (Dressed)",
  14911. image: {
  14912. source: "./media/characters/mirja/front-dressed.svg",
  14913. extra: 1789 / 1683,
  14914. bottom: 0.05
  14915. }
  14916. },
  14917. back: {
  14918. height: math.unit(6, "feet"),
  14919. weight: math.unit(90, "lb"),
  14920. name: "Back",
  14921. image: {
  14922. source: "./media/characters/mirja/back.svg",
  14923. extra: 953 / 917,
  14924. bottom: 0.017
  14925. }
  14926. },
  14927. },
  14928. [
  14929. {
  14930. name: "\"Incognito\"",
  14931. height: math.unit(3, "meters")
  14932. },
  14933. {
  14934. name: "Strolling Size",
  14935. height: math.unit(15, "km")
  14936. },
  14937. {
  14938. name: "Larger Strolling Size",
  14939. height: math.unit(400, "km")
  14940. },
  14941. {
  14942. name: "Preferred Size",
  14943. height: math.unit(5000, "km")
  14944. },
  14945. {
  14946. name: "True Size",
  14947. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14948. default: true
  14949. },
  14950. ]
  14951. ))
  14952. characterMakers.push(() => makeCharacter(
  14953. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14954. {
  14955. front: {
  14956. height: math.unit(15, "feet"),
  14957. weight: math.unit(880, "kg"),
  14958. name: "Front",
  14959. image: {
  14960. source: "./media/characters/nightraver/front.svg",
  14961. extra: 2444 / 2160,
  14962. bottom: 0.027
  14963. }
  14964. },
  14965. back: {
  14966. height: math.unit(15, "feet"),
  14967. weight: math.unit(880, "kg"),
  14968. name: "Back",
  14969. image: {
  14970. source: "./media/characters/nightraver/back.svg",
  14971. extra: 2309 / 2180,
  14972. bottom: 0.005
  14973. }
  14974. },
  14975. sole: {
  14976. height: math.unit(2.878, "feet"),
  14977. name: "Sole",
  14978. image: {
  14979. source: "./media/characters/nightraver/sole.svg"
  14980. }
  14981. },
  14982. foot: {
  14983. height: math.unit(2.285, "feet"),
  14984. name: "Foot",
  14985. image: {
  14986. source: "./media/characters/nightraver/foot.svg"
  14987. }
  14988. },
  14989. maw: {
  14990. height: math.unit(2.67, "feet"),
  14991. name: "Maw",
  14992. image: {
  14993. source: "./media/characters/nightraver/maw.svg"
  14994. }
  14995. },
  14996. },
  14997. [
  14998. {
  14999. name: "Micro",
  15000. height: math.unit(1, "cm")
  15001. },
  15002. {
  15003. name: "Normal",
  15004. height: math.unit(15, "feet"),
  15005. default: true
  15006. },
  15007. {
  15008. name: "Macro",
  15009. height: math.unit(300, "feet")
  15010. },
  15011. {
  15012. name: "Megamacro",
  15013. height: math.unit(300, "miles")
  15014. },
  15015. {
  15016. name: "Gigamacro",
  15017. height: math.unit(10000, "miles")
  15018. },
  15019. ]
  15020. ))
  15021. characterMakers.push(() => makeCharacter(
  15022. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15023. {
  15024. side: {
  15025. height: math.unit(2, "inches"),
  15026. weight: math.unit(5, "grams"),
  15027. name: "Side",
  15028. image: {
  15029. source: "./media/characters/arc/side.svg"
  15030. }
  15031. },
  15032. },
  15033. [
  15034. {
  15035. name: "Micro",
  15036. height: math.unit(2, "inches"),
  15037. default: true
  15038. },
  15039. ]
  15040. ))
  15041. characterMakers.push(() => makeCharacter(
  15042. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15043. {
  15044. front: {
  15045. height: math.unit(1.1938, "meters"),
  15046. weight: math.unit(54, "kg"),
  15047. name: "Front",
  15048. image: {
  15049. source: "./media/characters/nebula-shahar/front.svg",
  15050. extra: 1642 / 1436,
  15051. bottom: 0.06
  15052. }
  15053. },
  15054. },
  15055. [
  15056. {
  15057. name: "Megamicro",
  15058. height: math.unit(0.3, "mm")
  15059. },
  15060. {
  15061. name: "Micro",
  15062. height: math.unit(3, "cm")
  15063. },
  15064. {
  15065. name: "Normal",
  15066. height: math.unit(138, "cm"),
  15067. default: true
  15068. },
  15069. {
  15070. name: "Macro",
  15071. height: math.unit(30, "m")
  15072. },
  15073. ]
  15074. ))
  15075. characterMakers.push(() => makeCharacter(
  15076. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15077. {
  15078. front: {
  15079. height: math.unit(5.24, "feet"),
  15080. weight: math.unit(150, "lb"),
  15081. name: "Front",
  15082. image: {
  15083. source: "./media/characters/shayla/front.svg",
  15084. extra: 1512 / 1414,
  15085. bottom: 0.01
  15086. }
  15087. },
  15088. back: {
  15089. height: math.unit(5.24, "feet"),
  15090. weight: math.unit(150, "lb"),
  15091. name: "Back",
  15092. image: {
  15093. source: "./media/characters/shayla/back.svg",
  15094. extra: 1512 / 1414
  15095. }
  15096. },
  15097. hand: {
  15098. height: math.unit(0.7781496062992126, "feet"),
  15099. name: "Hand",
  15100. image: {
  15101. source: "./media/characters/shayla/hand.svg"
  15102. }
  15103. },
  15104. foot: {
  15105. height: math.unit(1.4206036745406823, "feet"),
  15106. name: "Foot",
  15107. image: {
  15108. source: "./media/characters/shayla/foot.svg"
  15109. }
  15110. },
  15111. },
  15112. [
  15113. {
  15114. name: "Micro",
  15115. height: math.unit(0.32, "feet")
  15116. },
  15117. {
  15118. name: "Normal",
  15119. height: math.unit(5.24, "feet"),
  15120. default: true
  15121. },
  15122. {
  15123. name: "Macro",
  15124. height: math.unit(492.12, "feet")
  15125. },
  15126. {
  15127. name: "Megamacro",
  15128. height: math.unit(186.41, "miles")
  15129. },
  15130. ]
  15131. ))
  15132. characterMakers.push(() => makeCharacter(
  15133. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15134. {
  15135. front: {
  15136. height: math.unit(2.2, "m"),
  15137. weight: math.unit(120, "kg"),
  15138. name: "Front",
  15139. image: {
  15140. source: "./media/characters/pia-jr/front.svg",
  15141. extra: 1000 / 970,
  15142. bottom: 0.035
  15143. }
  15144. },
  15145. hand: {
  15146. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15147. name: "Hand",
  15148. image: {
  15149. source: "./media/characters/pia-jr/hand.svg"
  15150. }
  15151. },
  15152. paw: {
  15153. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15154. name: "Paw",
  15155. image: {
  15156. source: "./media/characters/pia-jr/paw.svg"
  15157. }
  15158. },
  15159. },
  15160. [
  15161. {
  15162. name: "Micro",
  15163. height: math.unit(1.2, "cm")
  15164. },
  15165. {
  15166. name: "Normal",
  15167. height: math.unit(2.2, "m"),
  15168. default: true
  15169. },
  15170. {
  15171. name: "Macro",
  15172. height: math.unit(180, "m")
  15173. },
  15174. {
  15175. name: "Megamacro",
  15176. height: math.unit(420, "km")
  15177. },
  15178. ]
  15179. ))
  15180. characterMakers.push(() => makeCharacter(
  15181. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15182. {
  15183. front: {
  15184. height: math.unit(2, "m"),
  15185. weight: math.unit(115, "kg"),
  15186. name: "Front",
  15187. image: {
  15188. source: "./media/characters/pia-sr/front.svg",
  15189. extra: 760 / 730,
  15190. bottom: 0.015
  15191. }
  15192. },
  15193. back: {
  15194. height: math.unit(2, "m"),
  15195. weight: math.unit(115, "kg"),
  15196. name: "Back",
  15197. image: {
  15198. source: "./media/characters/pia-sr/back.svg",
  15199. extra: 760 / 730,
  15200. bottom: 0.01
  15201. }
  15202. },
  15203. hand: {
  15204. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15205. name: "Hand",
  15206. image: {
  15207. source: "./media/characters/pia-sr/hand.svg"
  15208. }
  15209. },
  15210. foot: {
  15211. height: math.unit(1.83, "feet"),
  15212. name: "Foot",
  15213. image: {
  15214. source: "./media/characters/pia-sr/foot.svg"
  15215. }
  15216. },
  15217. },
  15218. [
  15219. {
  15220. name: "Micro",
  15221. height: math.unit(88, "mm")
  15222. },
  15223. {
  15224. name: "Normal",
  15225. height: math.unit(2, "m"),
  15226. default: true
  15227. },
  15228. {
  15229. name: "Macro",
  15230. height: math.unit(200, "m")
  15231. },
  15232. {
  15233. name: "Megamacro",
  15234. height: math.unit(420, "km")
  15235. },
  15236. ]
  15237. ))
  15238. characterMakers.push(() => makeCharacter(
  15239. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15240. {
  15241. front: {
  15242. height: math.unit(8 + 2 / 12, "feet"),
  15243. weight: math.unit(300, "lb"),
  15244. name: "Front",
  15245. image: {
  15246. source: "./media/characters/kibibyte/front.svg",
  15247. extra: 2221 / 2098,
  15248. bottom: 0.04
  15249. }
  15250. },
  15251. },
  15252. [
  15253. {
  15254. name: "Normal",
  15255. height: math.unit(8 + 2 / 12, "feet"),
  15256. default: true
  15257. },
  15258. {
  15259. name: "Socialable Macro",
  15260. height: math.unit(50, "feet")
  15261. },
  15262. {
  15263. name: "Macro",
  15264. height: math.unit(300, "feet")
  15265. },
  15266. {
  15267. name: "Megamacro",
  15268. height: math.unit(500, "miles")
  15269. },
  15270. ]
  15271. ))
  15272. characterMakers.push(() => makeCharacter(
  15273. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15274. {
  15275. front: {
  15276. height: math.unit(6, "feet"),
  15277. weight: math.unit(150, "lb"),
  15278. name: "Front",
  15279. image: {
  15280. source: "./media/characters/felix/front.svg",
  15281. extra: 762 / 722,
  15282. bottom: 0.02
  15283. }
  15284. },
  15285. frontClothed: {
  15286. height: math.unit(6, "feet"),
  15287. weight: math.unit(150, "lb"),
  15288. name: "Front (Clothed)",
  15289. image: {
  15290. source: "./media/characters/felix/front-clothed.svg",
  15291. extra: 762 / 722,
  15292. bottom: 0.02
  15293. }
  15294. },
  15295. },
  15296. [
  15297. {
  15298. name: "Normal",
  15299. height: math.unit(6 + 8 / 12, "feet"),
  15300. default: true
  15301. },
  15302. {
  15303. name: "Macro",
  15304. height: math.unit(2600, "feet")
  15305. },
  15306. {
  15307. name: "Megamacro",
  15308. height: math.unit(450, "miles")
  15309. },
  15310. ]
  15311. ))
  15312. characterMakers.push(() => makeCharacter(
  15313. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15314. {
  15315. front: {
  15316. height: math.unit(6 + 1 / 12, "feet"),
  15317. weight: math.unit(250, "lb"),
  15318. name: "Front",
  15319. image: {
  15320. source: "./media/characters/tobo/front.svg",
  15321. extra: 608 / 586,
  15322. bottom: 0.023
  15323. }
  15324. },
  15325. back: {
  15326. height: math.unit(6 + 1 / 12, "feet"),
  15327. weight: math.unit(250, "lb"),
  15328. name: "Back",
  15329. image: {
  15330. source: "./media/characters/tobo/back.svg",
  15331. extra: 608 / 586
  15332. }
  15333. },
  15334. },
  15335. [
  15336. {
  15337. name: "Nano",
  15338. height: math.unit(2, "nm")
  15339. },
  15340. {
  15341. name: "Megamicro",
  15342. height: math.unit(0.1, "mm")
  15343. },
  15344. {
  15345. name: "Micro",
  15346. height: math.unit(1, "inch"),
  15347. default: true
  15348. },
  15349. {
  15350. name: "Human-sized",
  15351. height: math.unit(6 + 1 / 12, "feet")
  15352. },
  15353. {
  15354. name: "Macro",
  15355. height: math.unit(250, "feet")
  15356. },
  15357. {
  15358. name: "Megamacro",
  15359. height: math.unit(75, "miles")
  15360. },
  15361. {
  15362. name: "Texas-sized",
  15363. height: math.unit(750, "miles")
  15364. },
  15365. {
  15366. name: "Teramacro",
  15367. height: math.unit(50000, "miles")
  15368. },
  15369. ]
  15370. ))
  15371. characterMakers.push(() => makeCharacter(
  15372. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15373. {
  15374. front: {
  15375. height: math.unit(6, "feet"),
  15376. weight: math.unit(269, "lb"),
  15377. name: "Front",
  15378. image: {
  15379. source: "./media/characters/danny-kapowsky/front.svg",
  15380. extra: 766 / 736,
  15381. bottom: 0.044
  15382. }
  15383. },
  15384. back: {
  15385. height: math.unit(6, "feet"),
  15386. weight: math.unit(269, "lb"),
  15387. name: "Back",
  15388. image: {
  15389. source: "./media/characters/danny-kapowsky/back.svg",
  15390. extra: 797 / 760,
  15391. bottom: 0.025
  15392. }
  15393. },
  15394. },
  15395. [
  15396. {
  15397. name: "Macro",
  15398. height: math.unit(150, "feet"),
  15399. default: true
  15400. },
  15401. {
  15402. name: "Macro+",
  15403. height: math.unit(200, "feet")
  15404. },
  15405. {
  15406. name: "Macro++",
  15407. height: math.unit(300, "feet")
  15408. },
  15409. {
  15410. name: "Macro+++",
  15411. height: math.unit(400, "feet")
  15412. },
  15413. ]
  15414. ))
  15415. characterMakers.push(() => makeCharacter(
  15416. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15417. {
  15418. side: {
  15419. height: math.unit(6, "feet"),
  15420. weight: math.unit(170, "lb"),
  15421. name: "Side",
  15422. image: {
  15423. source: "./media/characters/finn/side.svg",
  15424. extra: 1953 / 1807,
  15425. bottom: 0.057
  15426. }
  15427. },
  15428. },
  15429. [
  15430. {
  15431. name: "Megamacro",
  15432. height: math.unit(14445, "feet"),
  15433. default: true
  15434. },
  15435. ]
  15436. ))
  15437. characterMakers.push(() => makeCharacter(
  15438. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15439. {
  15440. front: {
  15441. height: math.unit(5 + 6 / 12, "feet"),
  15442. weight: math.unit(125, "lb"),
  15443. name: "Front",
  15444. image: {
  15445. source: "./media/characters/roy/front.svg",
  15446. extra: 1,
  15447. bottom: 0.11
  15448. }
  15449. },
  15450. },
  15451. [
  15452. {
  15453. name: "Micro",
  15454. height: math.unit(3, "inches"),
  15455. default: true
  15456. },
  15457. {
  15458. name: "Normal",
  15459. height: math.unit(5 + 6 / 12, "feet")
  15460. },
  15461. {
  15462. name: "Lesser Macro",
  15463. height: math.unit(60, "feet")
  15464. },
  15465. {
  15466. name: "Greater Macro",
  15467. height: math.unit(120, "feet")
  15468. },
  15469. ]
  15470. ))
  15471. characterMakers.push(() => makeCharacter(
  15472. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15473. {
  15474. front: {
  15475. height: math.unit(6, "feet"),
  15476. weight: math.unit(100, "lb"),
  15477. name: "Front",
  15478. image: {
  15479. source: "./media/characters/aevsivs/front.svg",
  15480. extra: 1,
  15481. bottom: 0.03
  15482. }
  15483. },
  15484. back: {
  15485. height: math.unit(6, "feet"),
  15486. weight: math.unit(100, "lb"),
  15487. name: "Back",
  15488. image: {
  15489. source: "./media/characters/aevsivs/back.svg"
  15490. }
  15491. },
  15492. },
  15493. [
  15494. {
  15495. name: "Micro",
  15496. height: math.unit(2, "inches"),
  15497. default: true
  15498. },
  15499. {
  15500. name: "Normal",
  15501. height: math.unit(5, "feet")
  15502. },
  15503. ]
  15504. ))
  15505. characterMakers.push(() => makeCharacter(
  15506. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15507. {
  15508. front: {
  15509. height: math.unit(5 + 7 / 12, "feet"),
  15510. weight: math.unit(159, "lb"),
  15511. name: "Front",
  15512. image: {
  15513. source: "./media/characters/hildegard/front.svg",
  15514. extra: 289 / 269,
  15515. bottom: 7.63 / 297.8
  15516. }
  15517. },
  15518. back: {
  15519. height: math.unit(5 + 7 / 12, "feet"),
  15520. weight: math.unit(159, "lb"),
  15521. name: "Back",
  15522. image: {
  15523. source: "./media/characters/hildegard/back.svg",
  15524. extra: 280 / 260,
  15525. bottom: 2.3 / 282
  15526. }
  15527. },
  15528. },
  15529. [
  15530. {
  15531. name: "Normal",
  15532. height: math.unit(5 + 7 / 12, "feet"),
  15533. default: true
  15534. },
  15535. ]
  15536. ))
  15537. characterMakers.push(() => makeCharacter(
  15538. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15539. {
  15540. bernard: {
  15541. height: math.unit(2 + 7 / 12, "feet"),
  15542. weight: math.unit(66, "lb"),
  15543. name: "Bernard",
  15544. rename: true,
  15545. image: {
  15546. source: "./media/characters/bernard-wilder/bernard.svg",
  15547. extra: 192 / 128,
  15548. bottom: 0.05
  15549. }
  15550. },
  15551. wilder: {
  15552. height: math.unit(5 + 8 / 12, "feet"),
  15553. weight: math.unit(143, "lb"),
  15554. name: "Wilder",
  15555. rename: true,
  15556. image: {
  15557. source: "./media/characters/bernard-wilder/wilder.svg",
  15558. extra: 361 / 312,
  15559. bottom: 0.02
  15560. }
  15561. },
  15562. },
  15563. [
  15564. {
  15565. name: "Normal",
  15566. height: math.unit(2 + 7 / 12, "feet"),
  15567. default: true
  15568. },
  15569. ]
  15570. ))
  15571. characterMakers.push(() => makeCharacter(
  15572. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15573. {
  15574. anthro: {
  15575. height: math.unit(6 + 1 / 12, "feet"),
  15576. weight: math.unit(155, "lb"),
  15577. name: "Anthro",
  15578. image: {
  15579. source: "./media/characters/hearth/anthro.svg",
  15580. extra: 1178/1136,
  15581. bottom: 28/1206
  15582. }
  15583. },
  15584. feral: {
  15585. height: math.unit(3.78, "feet"),
  15586. weight: math.unit(35, "kg"),
  15587. name: "Feral",
  15588. image: {
  15589. source: "./media/characters/hearth/feral.svg",
  15590. extra: 153 / 135,
  15591. bottom: 0.03
  15592. }
  15593. },
  15594. },
  15595. [
  15596. {
  15597. name: "Normal",
  15598. height: math.unit(6 + 1 / 12, "feet"),
  15599. default: true
  15600. },
  15601. ]
  15602. ))
  15603. characterMakers.push(() => makeCharacter(
  15604. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15605. {
  15606. front: {
  15607. height: math.unit(6, "feet"),
  15608. weight: math.unit(182, "lb"),
  15609. name: "Front",
  15610. image: {
  15611. source: "./media/characters/ingrid/front.svg",
  15612. extra: 294 / 268,
  15613. bottom: 0.027
  15614. }
  15615. },
  15616. },
  15617. [
  15618. {
  15619. name: "Normal",
  15620. height: math.unit(6, "feet"),
  15621. default: true
  15622. },
  15623. ]
  15624. ))
  15625. characterMakers.push(() => makeCharacter(
  15626. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15627. {
  15628. eevee: {
  15629. height: math.unit(2 + 10 / 12, "feet"),
  15630. weight: math.unit(86, "lb"),
  15631. name: "Malgam",
  15632. image: {
  15633. source: "./media/characters/malgam/eevee.svg",
  15634. extra: 952/784,
  15635. bottom: 38/990
  15636. }
  15637. },
  15638. sylveon: {
  15639. height: math.unit(4, "feet"),
  15640. weight: math.unit(101, "lb"),
  15641. name: "Future Malgam",
  15642. rename: true,
  15643. image: {
  15644. source: "./media/characters/malgam/sylveon.svg",
  15645. extra: 371 / 325,
  15646. bottom: 0.015
  15647. }
  15648. },
  15649. gigantamax: {
  15650. height: math.unit(50, "feet"),
  15651. name: "Gigantamax Malgam",
  15652. rename: true,
  15653. image: {
  15654. source: "./media/characters/malgam/gigantamax.svg"
  15655. }
  15656. },
  15657. },
  15658. [
  15659. {
  15660. name: "Normal",
  15661. height: math.unit(2 + 10 / 12, "feet"),
  15662. default: true
  15663. },
  15664. ]
  15665. ))
  15666. characterMakers.push(() => makeCharacter(
  15667. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15668. {
  15669. front: {
  15670. height: math.unit(5 + 11 / 12, "feet"),
  15671. weight: math.unit(188, "lb"),
  15672. name: "Front",
  15673. image: {
  15674. source: "./media/characters/fleur/front.svg",
  15675. extra: 309 / 283,
  15676. bottom: 0.007
  15677. }
  15678. },
  15679. },
  15680. [
  15681. {
  15682. name: "Normal",
  15683. height: math.unit(5 + 11 / 12, "feet"),
  15684. default: true
  15685. },
  15686. ]
  15687. ))
  15688. characterMakers.push(() => makeCharacter(
  15689. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15690. {
  15691. front: {
  15692. height: math.unit(5 + 4 / 12, "feet"),
  15693. weight: math.unit(122, "lb"),
  15694. name: "Front",
  15695. image: {
  15696. source: "./media/characters/jude/front.svg",
  15697. extra: 288 / 273,
  15698. bottom: 0.03
  15699. }
  15700. },
  15701. },
  15702. [
  15703. {
  15704. name: "Normal",
  15705. height: math.unit(5 + 4 / 12, "feet"),
  15706. default: true
  15707. },
  15708. ]
  15709. ))
  15710. characterMakers.push(() => makeCharacter(
  15711. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15712. {
  15713. front: {
  15714. height: math.unit(5 + 11 / 12, "feet"),
  15715. weight: math.unit(190, "lb"),
  15716. name: "Front",
  15717. image: {
  15718. source: "./media/characters/seara/front.svg",
  15719. extra: 1,
  15720. bottom: 0.05
  15721. }
  15722. },
  15723. },
  15724. [
  15725. {
  15726. name: "Normal",
  15727. height: math.unit(5 + 11 / 12, "feet"),
  15728. default: true
  15729. },
  15730. ]
  15731. ))
  15732. characterMakers.push(() => makeCharacter(
  15733. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15734. {
  15735. front: {
  15736. height: math.unit(16 + 5 / 12, "feet"),
  15737. weight: math.unit(524, "lb"),
  15738. name: "Front",
  15739. image: {
  15740. source: "./media/characters/caspian-lugia/front.svg",
  15741. extra: 1,
  15742. bottom: 0.04
  15743. }
  15744. },
  15745. },
  15746. [
  15747. {
  15748. name: "Normal",
  15749. height: math.unit(16 + 5 / 12, "feet"),
  15750. default: true
  15751. },
  15752. ]
  15753. ))
  15754. characterMakers.push(() => makeCharacter(
  15755. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15756. {
  15757. front: {
  15758. height: math.unit(5 + 7 / 12, "feet"),
  15759. weight: math.unit(170, "lb"),
  15760. name: "Front",
  15761. image: {
  15762. source: "./media/characters/mika/front.svg",
  15763. extra: 1,
  15764. bottom: 0.016
  15765. }
  15766. },
  15767. },
  15768. [
  15769. {
  15770. name: "Normal",
  15771. height: math.unit(5 + 7 / 12, "feet"),
  15772. default: true
  15773. },
  15774. ]
  15775. ))
  15776. characterMakers.push(() => makeCharacter(
  15777. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15778. {
  15779. front: {
  15780. height: math.unit(6 + 2 / 12, "feet"),
  15781. weight: math.unit(268, "lb"),
  15782. name: "Front",
  15783. image: {
  15784. source: "./media/characters/sol/front.svg",
  15785. extra: 247 / 231,
  15786. bottom: 0.05
  15787. }
  15788. },
  15789. },
  15790. [
  15791. {
  15792. name: "Normal",
  15793. height: math.unit(6 + 2 / 12, "feet"),
  15794. default: true
  15795. },
  15796. ]
  15797. ))
  15798. characterMakers.push(() => makeCharacter(
  15799. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15800. {
  15801. buizel: {
  15802. height: math.unit(2 + 5 / 12, "feet"),
  15803. weight: math.unit(87, "lb"),
  15804. name: "Front",
  15805. image: {
  15806. source: "./media/characters/umiko/buizel.svg",
  15807. extra: 172 / 157,
  15808. bottom: 0.01
  15809. },
  15810. form: "buizel",
  15811. default: true
  15812. },
  15813. floatzel: {
  15814. height: math.unit(5 + 9 / 12, "feet"),
  15815. weight: math.unit(250, "lb"),
  15816. name: "Front",
  15817. image: {
  15818. source: "./media/characters/umiko/floatzel.svg",
  15819. extra: 1076/1006,
  15820. bottom: 15/1091
  15821. },
  15822. form: "floatzel",
  15823. default: true
  15824. },
  15825. },
  15826. [
  15827. {
  15828. name: "Normal",
  15829. height: math.unit(2 + 5 / 12, "feet"),
  15830. form: "buizel",
  15831. default: true
  15832. },
  15833. {
  15834. name: "Normal",
  15835. height: math.unit(5 + 9 / 12, "feet"),
  15836. form: "floatzel",
  15837. default: true
  15838. },
  15839. ],
  15840. {
  15841. "buizel": {
  15842. name: "Buizel"
  15843. },
  15844. "floatzel": {
  15845. name: "Floatzel",
  15846. default: true
  15847. }
  15848. }
  15849. ))
  15850. characterMakers.push(() => makeCharacter(
  15851. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15852. {
  15853. front: {
  15854. height: math.unit(6 + 2 / 12, "feet"),
  15855. weight: math.unit(146, "lb"),
  15856. name: "Front",
  15857. image: {
  15858. source: "./media/characters/iliac/front.svg",
  15859. extra: 389 / 365,
  15860. bottom: 0.035
  15861. }
  15862. },
  15863. },
  15864. [
  15865. {
  15866. name: "Normal",
  15867. height: math.unit(6 + 2 / 12, "feet"),
  15868. default: true
  15869. },
  15870. ]
  15871. ))
  15872. characterMakers.push(() => makeCharacter(
  15873. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15874. {
  15875. front: {
  15876. height: math.unit(6, "feet"),
  15877. weight: math.unit(170, "lb"),
  15878. name: "Front",
  15879. image: {
  15880. source: "./media/characters/topaz/front.svg",
  15881. extra: 317 / 303,
  15882. bottom: 0.055
  15883. }
  15884. },
  15885. },
  15886. [
  15887. {
  15888. name: "Normal",
  15889. height: math.unit(6, "feet"),
  15890. default: true
  15891. },
  15892. ]
  15893. ))
  15894. characterMakers.push(() => makeCharacter(
  15895. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15896. {
  15897. front: {
  15898. height: math.unit(5 + 11 / 12, "feet"),
  15899. weight: math.unit(144, "lb"),
  15900. name: "Front",
  15901. image: {
  15902. source: "./media/characters/gabriel/front.svg",
  15903. extra: 285 / 262,
  15904. bottom: 0.004
  15905. }
  15906. },
  15907. },
  15908. [
  15909. {
  15910. name: "Normal",
  15911. height: math.unit(5 + 11 / 12, "feet"),
  15912. default: true
  15913. },
  15914. ]
  15915. ))
  15916. characterMakers.push(() => makeCharacter(
  15917. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15918. {
  15919. side: {
  15920. height: math.unit(6 + 5 / 12, "feet"),
  15921. weight: math.unit(300, "lb"),
  15922. name: "Side",
  15923. image: {
  15924. source: "./media/characters/tempest-suicune/side.svg",
  15925. extra: 195 / 154,
  15926. bottom: 0.04
  15927. }
  15928. },
  15929. },
  15930. [
  15931. {
  15932. name: "Normal",
  15933. height: math.unit(6 + 5 / 12, "feet"),
  15934. default: true
  15935. },
  15936. ]
  15937. ))
  15938. characterMakers.push(() => makeCharacter(
  15939. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15940. {
  15941. front: {
  15942. height: math.unit(7 + 2 / 12, "feet"),
  15943. weight: math.unit(322, "lb"),
  15944. name: "Front",
  15945. image: {
  15946. source: "./media/characters/vulcan/front.svg",
  15947. extra: 154 / 147,
  15948. bottom: 0.04
  15949. }
  15950. },
  15951. },
  15952. [
  15953. {
  15954. name: "Normal",
  15955. height: math.unit(7 + 2 / 12, "feet"),
  15956. default: true
  15957. },
  15958. ]
  15959. ))
  15960. characterMakers.push(() => makeCharacter(
  15961. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15962. {
  15963. front: {
  15964. height: math.unit(5 + 10 / 12, "feet"),
  15965. weight: math.unit(264, "lb"),
  15966. name: "Front",
  15967. image: {
  15968. source: "./media/characters/gault/front.svg",
  15969. extra: 161 / 140,
  15970. bottom: 0.028
  15971. }
  15972. },
  15973. },
  15974. [
  15975. {
  15976. name: "Normal",
  15977. height: math.unit(5 + 10 / 12, "feet"),
  15978. default: true
  15979. },
  15980. ]
  15981. ))
  15982. characterMakers.push(() => makeCharacter(
  15983. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15984. {
  15985. front: {
  15986. height: math.unit(6, "feet"),
  15987. weight: math.unit(150, "lb"),
  15988. name: "Front",
  15989. image: {
  15990. source: "./media/characters/shard/front.svg",
  15991. extra: 273 / 238,
  15992. bottom: 0.02
  15993. }
  15994. },
  15995. },
  15996. [
  15997. {
  15998. name: "Normal",
  15999. height: math.unit(3 + 6 / 12, "feet"),
  16000. default: true
  16001. },
  16002. ]
  16003. ))
  16004. characterMakers.push(() => makeCharacter(
  16005. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16006. {
  16007. front: {
  16008. height: math.unit(5 + 11 / 12, "feet"),
  16009. weight: math.unit(146, "lb"),
  16010. name: "Front",
  16011. image: {
  16012. source: "./media/characters/ashe/front.svg",
  16013. extra: 400 / 373,
  16014. bottom: 0.01
  16015. }
  16016. },
  16017. },
  16018. [
  16019. {
  16020. name: "Normal",
  16021. height: math.unit(5 + 11 / 12, "feet"),
  16022. default: true
  16023. },
  16024. ]
  16025. ))
  16026. characterMakers.push(() => makeCharacter(
  16027. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16028. {
  16029. front: {
  16030. height: math.unit(5 + 5 / 12, "feet"),
  16031. weight: math.unit(135, "lb"),
  16032. name: "Front",
  16033. image: {
  16034. source: "./media/characters/beatrix/front.svg",
  16035. extra: 392 / 379,
  16036. bottom: 0.01
  16037. }
  16038. },
  16039. },
  16040. [
  16041. {
  16042. name: "Normal",
  16043. height: math.unit(6, "feet"),
  16044. default: true
  16045. },
  16046. ]
  16047. ))
  16048. characterMakers.push(() => makeCharacter(
  16049. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16050. {
  16051. front: {
  16052. height: math.unit(6 + 2/12, "feet"),
  16053. weight: math.unit(135, "lb"),
  16054. name: "Front",
  16055. image: {
  16056. source: "./media/characters/ignatius/front.svg",
  16057. extra: 1380/1259,
  16058. bottom: 27/1407
  16059. }
  16060. },
  16061. },
  16062. [
  16063. {
  16064. name: "Normal",
  16065. height: math.unit(6 + 2/12, "feet"),
  16066. default: true
  16067. },
  16068. ]
  16069. ))
  16070. characterMakers.push(() => makeCharacter(
  16071. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16072. {
  16073. front: {
  16074. height: math.unit(6 + 2 / 12, "feet"),
  16075. weight: math.unit(138, "lb"),
  16076. name: "Front",
  16077. image: {
  16078. source: "./media/characters/mei-li/front.svg",
  16079. extra: 237 / 229,
  16080. bottom: 0.03
  16081. }
  16082. },
  16083. },
  16084. [
  16085. {
  16086. name: "Normal",
  16087. height: math.unit(6 + 2 / 12, "feet"),
  16088. default: true
  16089. },
  16090. ]
  16091. ))
  16092. characterMakers.push(() => makeCharacter(
  16093. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16094. {
  16095. front: {
  16096. height: math.unit(2 + 4 / 12, "feet"),
  16097. weight: math.unit(62, "lb"),
  16098. name: "Front",
  16099. image: {
  16100. source: "./media/characters/puru/front.svg",
  16101. extra: 206 / 149,
  16102. bottom: 0.06
  16103. }
  16104. },
  16105. },
  16106. [
  16107. {
  16108. name: "Normal",
  16109. height: math.unit(2 + 4 / 12, "feet"),
  16110. default: true
  16111. },
  16112. ]
  16113. ))
  16114. characterMakers.push(() => makeCharacter(
  16115. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16116. {
  16117. anthro: {
  16118. height: math.unit(5 + 8/12, "feet"),
  16119. weight: math.unit(200, "lb"),
  16120. energyNeed: math.unit(2000, "kcal"),
  16121. name: "Anthro",
  16122. image: {
  16123. source: "./media/characters/kee/anthro.svg",
  16124. extra: 3251/3184,
  16125. bottom: 250/3501
  16126. }
  16127. },
  16128. taur: {
  16129. height: math.unit(11, "feet"),
  16130. weight: math.unit(500, "lb"),
  16131. energyNeed: math.unit(5000, "kcal"),
  16132. name: "Taur",
  16133. image: {
  16134. source: "./media/characters/kee/taur.svg",
  16135. extra: 1362/1320,
  16136. bottom: 83/1445
  16137. }
  16138. },
  16139. },
  16140. [
  16141. {
  16142. name: "Normal",
  16143. height: math.unit(5 + 8/12, "feet"),
  16144. default: true
  16145. },
  16146. {
  16147. name: "Macro",
  16148. height: math.unit(35, "feet")
  16149. },
  16150. ]
  16151. ))
  16152. characterMakers.push(() => makeCharacter(
  16153. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16154. {
  16155. anthro: {
  16156. height: math.unit(7, "feet"),
  16157. weight: math.unit(190, "lb"),
  16158. name: "Anthro",
  16159. image: {
  16160. source: "./media/characters/cobalt-dracha/anthro.svg",
  16161. extra: 231 / 225,
  16162. bottom: 0.04
  16163. }
  16164. },
  16165. feral: {
  16166. height: math.unit(9 + 7 / 12, "feet"),
  16167. weight: math.unit(294, "lb"),
  16168. name: "Feral",
  16169. image: {
  16170. source: "./media/characters/cobalt-dracha/feral.svg",
  16171. extra: 692 / 633,
  16172. bottom: 0.05
  16173. }
  16174. },
  16175. },
  16176. [
  16177. {
  16178. name: "Normal",
  16179. height: math.unit(7, "feet"),
  16180. default: true
  16181. },
  16182. ]
  16183. ))
  16184. characterMakers.push(() => makeCharacter(
  16185. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16186. {
  16187. fallen: {
  16188. height: math.unit(11 + 8 / 12, "feet"),
  16189. weight: math.unit(485, "lb"),
  16190. name: "Java (Fallen)",
  16191. rename: true,
  16192. image: {
  16193. source: "./media/characters/java/fallen.svg",
  16194. extra: 226 / 208,
  16195. bottom: 0.005
  16196. }
  16197. },
  16198. godkin: {
  16199. height: math.unit(10 + 6 / 12, "feet"),
  16200. weight: math.unit(328, "lb"),
  16201. name: "Java (Godkin)",
  16202. rename: true,
  16203. image: {
  16204. source: "./media/characters/java/godkin.svg",
  16205. extra: 1104/1068,
  16206. bottom: 36/1140
  16207. }
  16208. },
  16209. },
  16210. [
  16211. {
  16212. name: "Normal",
  16213. height: math.unit(11 + 8 / 12, "feet"),
  16214. default: true
  16215. },
  16216. ]
  16217. ))
  16218. characterMakers.push(() => makeCharacter(
  16219. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16220. {
  16221. front: {
  16222. height: math.unit(5 + 9 / 12, "feet"),
  16223. weight: math.unit(170, "lb"),
  16224. name: "Front",
  16225. image: {
  16226. source: "./media/characters/purna/front.svg",
  16227. extra: 239 / 229,
  16228. bottom: 0.01
  16229. }
  16230. },
  16231. },
  16232. [
  16233. {
  16234. name: "Normal",
  16235. height: math.unit(5 + 9 / 12, "feet"),
  16236. default: true
  16237. },
  16238. ]
  16239. ))
  16240. characterMakers.push(() => makeCharacter(
  16241. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16242. {
  16243. front: {
  16244. height: math.unit(5 + 9 / 12, "feet"),
  16245. weight: math.unit(142, "lb"),
  16246. name: "Front",
  16247. image: {
  16248. source: "./media/characters/kuva/front.svg",
  16249. extra: 281 / 271,
  16250. bottom: 0.006
  16251. }
  16252. },
  16253. },
  16254. [
  16255. {
  16256. name: "Normal",
  16257. height: math.unit(5 + 9 / 12, "feet"),
  16258. default: true
  16259. },
  16260. ]
  16261. ))
  16262. characterMakers.push(() => makeCharacter(
  16263. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16264. {
  16265. anthro: {
  16266. height: math.unit(9 + 2 / 12, "feet"),
  16267. weight: math.unit(270, "lb"),
  16268. name: "Anthro",
  16269. image: {
  16270. source: "./media/characters/embra/anthro.svg",
  16271. extra: 200 / 187,
  16272. bottom: 0.02
  16273. }
  16274. },
  16275. feral: {
  16276. height: math.unit(18 + 8 / 12, "feet"),
  16277. weight: math.unit(576, "lb"),
  16278. name: "Feral",
  16279. image: {
  16280. source: "./media/characters/embra/feral.svg",
  16281. extra: 152 / 137,
  16282. bottom: 0.037
  16283. }
  16284. },
  16285. },
  16286. [
  16287. {
  16288. name: "Normal",
  16289. height: math.unit(9 + 2 / 12, "feet"),
  16290. default: true
  16291. },
  16292. ]
  16293. ))
  16294. characterMakers.push(() => makeCharacter(
  16295. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16296. {
  16297. anthro: {
  16298. height: math.unit(10 + 9 / 12, "feet"),
  16299. weight: math.unit(224, "lb"),
  16300. name: "Anthro",
  16301. image: {
  16302. source: "./media/characters/grottos/anthro.svg",
  16303. extra: 350 / 332,
  16304. bottom: 0.045
  16305. }
  16306. },
  16307. feral: {
  16308. height: math.unit(20 + 7 / 12, "feet"),
  16309. weight: math.unit(629, "lb"),
  16310. name: "Feral",
  16311. image: {
  16312. source: "./media/characters/grottos/feral.svg",
  16313. extra: 207 / 190,
  16314. bottom: 0.05
  16315. }
  16316. },
  16317. },
  16318. [
  16319. {
  16320. name: "Normal",
  16321. height: math.unit(10 + 9 / 12, "feet"),
  16322. default: true
  16323. },
  16324. ]
  16325. ))
  16326. characterMakers.push(() => makeCharacter(
  16327. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16328. {
  16329. anthro: {
  16330. height: math.unit(9 + 6 / 12, "feet"),
  16331. weight: math.unit(298, "lb"),
  16332. name: "Anthro",
  16333. image: {
  16334. source: "./media/characters/frifna/anthro.svg",
  16335. extra: 282 / 269,
  16336. bottom: 0.015
  16337. }
  16338. },
  16339. feral: {
  16340. height: math.unit(16 + 2 / 12, "feet"),
  16341. weight: math.unit(624, "lb"),
  16342. name: "Feral",
  16343. image: {
  16344. source: "./media/characters/frifna/feral.svg"
  16345. }
  16346. },
  16347. },
  16348. [
  16349. {
  16350. name: "Normal",
  16351. height: math.unit(9 + 6 / 12, "feet"),
  16352. default: true
  16353. },
  16354. ]
  16355. ))
  16356. characterMakers.push(() => makeCharacter(
  16357. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16358. {
  16359. front: {
  16360. height: math.unit(6 + 2 / 12, "feet"),
  16361. weight: math.unit(168, "lb"),
  16362. name: "Front",
  16363. image: {
  16364. source: "./media/characters/elise/front.svg",
  16365. extra: 276 / 271
  16366. }
  16367. },
  16368. },
  16369. [
  16370. {
  16371. name: "Normal",
  16372. height: math.unit(6 + 2 / 12, "feet"),
  16373. default: true
  16374. },
  16375. ]
  16376. ))
  16377. characterMakers.push(() => makeCharacter(
  16378. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16379. {
  16380. front: {
  16381. height: math.unit(5 + 10 / 12, "feet"),
  16382. weight: math.unit(210, "lb"),
  16383. name: "Front",
  16384. image: {
  16385. source: "./media/characters/glade/front.svg",
  16386. extra: 258 / 247,
  16387. bottom: 0.008
  16388. }
  16389. },
  16390. },
  16391. [
  16392. {
  16393. name: "Normal",
  16394. height: math.unit(5 + 10 / 12, "feet"),
  16395. default: true
  16396. },
  16397. ]
  16398. ))
  16399. characterMakers.push(() => makeCharacter(
  16400. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16401. {
  16402. front: {
  16403. height: math.unit(5 + 10 / 12, "feet"),
  16404. weight: math.unit(129, "lb"),
  16405. name: "Front",
  16406. image: {
  16407. source: "./media/characters/rina/front.svg",
  16408. extra: 266 / 255,
  16409. bottom: 0.005
  16410. }
  16411. },
  16412. },
  16413. [
  16414. {
  16415. name: "Normal",
  16416. height: math.unit(5 + 10 / 12, "feet"),
  16417. default: true
  16418. },
  16419. ]
  16420. ))
  16421. characterMakers.push(() => makeCharacter(
  16422. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16423. {
  16424. front: {
  16425. height: math.unit(6 + 1 / 12, "feet"),
  16426. weight: math.unit(192, "lb"),
  16427. name: "Front",
  16428. image: {
  16429. source: "./media/characters/veronica/front.svg",
  16430. extra: 319 / 309,
  16431. bottom: 0.005
  16432. }
  16433. },
  16434. },
  16435. [
  16436. {
  16437. name: "Normal",
  16438. height: math.unit(6 + 1 / 12, "feet"),
  16439. default: true
  16440. },
  16441. ]
  16442. ))
  16443. characterMakers.push(() => makeCharacter(
  16444. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16445. {
  16446. front: {
  16447. height: math.unit(9 + 3 / 12, "feet"),
  16448. weight: math.unit(1100, "lb"),
  16449. name: "Front",
  16450. image: {
  16451. source: "./media/characters/braxton/front.svg",
  16452. extra: 1057 / 984,
  16453. bottom: 0.05
  16454. }
  16455. },
  16456. },
  16457. [
  16458. {
  16459. name: "Normal",
  16460. height: math.unit(9 + 3 / 12, "feet")
  16461. },
  16462. {
  16463. name: "Giant",
  16464. height: math.unit(300, "feet"),
  16465. default: true
  16466. },
  16467. {
  16468. name: "Macro",
  16469. height: math.unit(700, "feet")
  16470. },
  16471. {
  16472. name: "Megamacro",
  16473. height: math.unit(6000, "feet")
  16474. },
  16475. ]
  16476. ))
  16477. characterMakers.push(() => makeCharacter(
  16478. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16479. {
  16480. front: {
  16481. height: math.unit(6 + 7 / 12, "feet"),
  16482. weight: math.unit(150, "lb"),
  16483. name: "Front",
  16484. image: {
  16485. source: "./media/characters/blue-feyonics/front.svg",
  16486. extra: 1403 / 1306,
  16487. bottom: 0.047
  16488. }
  16489. },
  16490. },
  16491. [
  16492. {
  16493. name: "Normal",
  16494. height: math.unit(6 + 7 / 12, "feet"),
  16495. default: true
  16496. },
  16497. ]
  16498. ))
  16499. characterMakers.push(() => makeCharacter(
  16500. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16501. {
  16502. front: {
  16503. height: math.unit(1.8, "meters"),
  16504. weight: math.unit(60, "kg"),
  16505. name: "Front",
  16506. image: {
  16507. source: "./media/characters/maxwell/front.svg",
  16508. extra: 2060 / 1873
  16509. }
  16510. },
  16511. },
  16512. [
  16513. {
  16514. name: "Micro",
  16515. height: math.unit(1, "mm")
  16516. },
  16517. {
  16518. name: "Normal",
  16519. height: math.unit(1.8, "meter"),
  16520. default: true
  16521. },
  16522. {
  16523. name: "Macro",
  16524. height: math.unit(30, "meters")
  16525. },
  16526. {
  16527. name: "Megamacro",
  16528. height: math.unit(10, "km")
  16529. },
  16530. ]
  16531. ))
  16532. characterMakers.push(() => makeCharacter(
  16533. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16534. {
  16535. front: {
  16536. height: math.unit(6, "feet"),
  16537. weight: math.unit(150, "lb"),
  16538. name: "Front",
  16539. image: {
  16540. source: "./media/characters/jack/front.svg",
  16541. extra: 1754 / 1640,
  16542. bottom: 0.01
  16543. }
  16544. },
  16545. },
  16546. [
  16547. {
  16548. name: "Normal",
  16549. height: math.unit(80000, "feet"),
  16550. default: true
  16551. },
  16552. {
  16553. name: "Max size",
  16554. height: math.unit(10, "lightyears")
  16555. },
  16556. ]
  16557. ))
  16558. characterMakers.push(() => makeCharacter(
  16559. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16560. {
  16561. urban: {
  16562. height: math.unit(5, "feet"),
  16563. weight: math.unit(240, "lb"),
  16564. name: "Urban",
  16565. image: {
  16566. source: "./media/characters/cafat/urban.svg",
  16567. extra: 1223/1126,
  16568. bottom: 205/1428
  16569. }
  16570. },
  16571. summer: {
  16572. height: math.unit(5, "feet"),
  16573. weight: math.unit(240, "lb"),
  16574. name: "Summer",
  16575. image: {
  16576. source: "./media/characters/cafat/summer.svg",
  16577. extra: 1223/1126,
  16578. bottom: 205/1428
  16579. }
  16580. },
  16581. winter: {
  16582. height: math.unit(5, "feet"),
  16583. weight: math.unit(240, "lb"),
  16584. name: "Winter",
  16585. image: {
  16586. source: "./media/characters/cafat/winter.svg",
  16587. extra: 1223/1126,
  16588. bottom: 205/1428
  16589. }
  16590. },
  16591. lingerie: {
  16592. height: math.unit(5, "feet"),
  16593. weight: math.unit(240, "lb"),
  16594. name: "Lingerie",
  16595. image: {
  16596. source: "./media/characters/cafat/lingerie.svg",
  16597. extra: 1223/1126,
  16598. bottom: 205/1428
  16599. }
  16600. },
  16601. upright: {
  16602. height: math.unit(6.3, "feet"),
  16603. weight: math.unit(240, "lb"),
  16604. name: "Upright",
  16605. image: {
  16606. source: "./media/characters/cafat/upright.svg",
  16607. bottom: 0.01
  16608. }
  16609. },
  16610. uprightFull: {
  16611. height: math.unit(6.3, "feet"),
  16612. weight: math.unit(240, "lb"),
  16613. name: "Upright (Full)",
  16614. image: {
  16615. source: "./media/characters/cafat/upright-full.svg",
  16616. bottom: 0.01
  16617. }
  16618. },
  16619. },
  16620. [
  16621. {
  16622. name: "Small",
  16623. height: math.unit(5, "feet"),
  16624. default: true
  16625. },
  16626. {
  16627. name: "Large",
  16628. height: math.unit(13, "feet")
  16629. },
  16630. ]
  16631. ))
  16632. characterMakers.push(() => makeCharacter(
  16633. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16634. {
  16635. front: {
  16636. height: math.unit(6, "feet"),
  16637. weight: math.unit(150, "lb"),
  16638. name: "Front",
  16639. image: {
  16640. source: "./media/characters/verin-raharra/front.svg",
  16641. extra: 5019 / 4835,
  16642. bottom: 0.023
  16643. }
  16644. },
  16645. },
  16646. [
  16647. {
  16648. name: "Normal",
  16649. height: math.unit(7 + 5 / 12, "feet"),
  16650. default: true
  16651. },
  16652. {
  16653. name: "Upsized",
  16654. height: math.unit(20, "feet")
  16655. },
  16656. ]
  16657. ))
  16658. characterMakers.push(() => makeCharacter(
  16659. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16660. {
  16661. front: {
  16662. height: math.unit(7, "feet"),
  16663. weight: math.unit(230, "lb"),
  16664. name: "Front",
  16665. image: {
  16666. source: "./media/characters/nakata/front.svg",
  16667. extra: 1.005,
  16668. bottom: 0.01
  16669. }
  16670. },
  16671. },
  16672. [
  16673. {
  16674. name: "Normal",
  16675. height: math.unit(7, "feet"),
  16676. default: true
  16677. },
  16678. {
  16679. name: "Big",
  16680. height: math.unit(14, "feet")
  16681. },
  16682. {
  16683. name: "Macro",
  16684. height: math.unit(400, "feet")
  16685. },
  16686. ]
  16687. ))
  16688. characterMakers.push(() => makeCharacter(
  16689. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16690. {
  16691. front: {
  16692. height: math.unit(4.91, "feet"),
  16693. weight: math.unit(100, "lb"),
  16694. name: "Front",
  16695. image: {
  16696. source: "./media/characters/lily/front.svg",
  16697. extra: 1585 / 1415,
  16698. bottom: 0.02
  16699. }
  16700. },
  16701. },
  16702. [
  16703. {
  16704. name: "Normal",
  16705. height: math.unit(4.91, "feet"),
  16706. default: true
  16707. },
  16708. ]
  16709. ))
  16710. characterMakers.push(() => makeCharacter(
  16711. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16712. {
  16713. laying: {
  16714. height: math.unit(4 + 4 / 12, "feet"),
  16715. weight: math.unit(600, "lb"),
  16716. name: "Laying",
  16717. image: {
  16718. source: "./media/characters/sheila/laying.svg",
  16719. extra: 1333 / 1265,
  16720. bottom: 0.16
  16721. }
  16722. },
  16723. },
  16724. [
  16725. {
  16726. name: "Normal",
  16727. height: math.unit(4 + 4 / 12, "feet"),
  16728. default: true
  16729. },
  16730. ]
  16731. ))
  16732. characterMakers.push(() => makeCharacter(
  16733. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16734. {
  16735. front: {
  16736. height: math.unit(6, "feet"),
  16737. weight: math.unit(190, "lb"),
  16738. name: "Front",
  16739. image: {
  16740. source: "./media/characters/sax/front.svg",
  16741. extra: 1187 / 973,
  16742. bottom: 0.042
  16743. }
  16744. },
  16745. },
  16746. [
  16747. {
  16748. name: "Micro",
  16749. height: math.unit(4, "inches"),
  16750. default: true
  16751. },
  16752. ]
  16753. ))
  16754. characterMakers.push(() => makeCharacter(
  16755. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16756. {
  16757. front: {
  16758. height: math.unit(6, "feet"),
  16759. weight: math.unit(150, "lb"),
  16760. name: "Front",
  16761. image: {
  16762. source: "./media/characters/pandora/front.svg",
  16763. extra: 2720 / 2556,
  16764. bottom: 0.015
  16765. }
  16766. },
  16767. back: {
  16768. height: math.unit(6, "feet"),
  16769. weight: math.unit(150, "lb"),
  16770. name: "Back",
  16771. image: {
  16772. source: "./media/characters/pandora/back.svg",
  16773. extra: 2720 / 2556,
  16774. bottom: 0.01
  16775. }
  16776. },
  16777. beans: {
  16778. height: math.unit(6 / 8, "feet"),
  16779. name: "Beans",
  16780. image: {
  16781. source: "./media/characters/pandora/beans.svg"
  16782. }
  16783. },
  16784. collar: {
  16785. height: math.unit(0.31, "feet"),
  16786. name: "Collar",
  16787. image: {
  16788. source: "./media/characters/pandora/collar.svg"
  16789. }
  16790. },
  16791. skirt: {
  16792. height: math.unit(6, "feet"),
  16793. weight: math.unit(150, "lb"),
  16794. name: "Skirt",
  16795. image: {
  16796. source: "./media/characters/pandora/skirt.svg",
  16797. extra: 1622 / 1525,
  16798. bottom: 0.015
  16799. }
  16800. },
  16801. hoodie: {
  16802. height: math.unit(6, "feet"),
  16803. weight: math.unit(150, "lb"),
  16804. name: "Hoodie",
  16805. image: {
  16806. source: "./media/characters/pandora/hoodie.svg",
  16807. extra: 1622 / 1525,
  16808. bottom: 0.015
  16809. }
  16810. },
  16811. casual: {
  16812. height: math.unit(6, "feet"),
  16813. weight: math.unit(150, "lb"),
  16814. name: "Casual",
  16815. image: {
  16816. source: "./media/characters/pandora/casual.svg",
  16817. extra: 1622 / 1525,
  16818. bottom: 0.015
  16819. }
  16820. },
  16821. },
  16822. [
  16823. {
  16824. name: "Normal",
  16825. height: math.unit(6, "feet")
  16826. },
  16827. {
  16828. name: "Big Steppy",
  16829. height: math.unit(1, "km"),
  16830. default: true
  16831. },
  16832. {
  16833. name: "Galactic Steppy",
  16834. height: math.unit(2, "gigameters")
  16835. },
  16836. ]
  16837. ))
  16838. characterMakers.push(() => makeCharacter(
  16839. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16840. {
  16841. side: {
  16842. height: math.unit(10, "feet"),
  16843. weight: math.unit(800, "kg"),
  16844. name: "Side",
  16845. image: {
  16846. source: "./media/characters/venio-darcony/side.svg",
  16847. extra: 1373 / 1003,
  16848. bottom: 0.037
  16849. }
  16850. },
  16851. front: {
  16852. height: math.unit(19, "feet"),
  16853. weight: math.unit(800, "kg"),
  16854. name: "Front",
  16855. image: {
  16856. source: "./media/characters/venio-darcony/front.svg"
  16857. }
  16858. },
  16859. back: {
  16860. height: math.unit(19, "feet"),
  16861. weight: math.unit(800, "kg"),
  16862. name: "Back",
  16863. image: {
  16864. source: "./media/characters/venio-darcony/back.svg"
  16865. }
  16866. },
  16867. sideNsfw: {
  16868. height: math.unit(10, "feet"),
  16869. weight: math.unit(800, "kg"),
  16870. name: "Side (NSFW)",
  16871. image: {
  16872. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16873. extra: 1373 / 1003,
  16874. bottom: 0.037
  16875. }
  16876. },
  16877. frontNsfw: {
  16878. height: math.unit(19, "feet"),
  16879. weight: math.unit(800, "kg"),
  16880. name: "Front (NSFW)",
  16881. image: {
  16882. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16883. }
  16884. },
  16885. backNsfw: {
  16886. height: math.unit(19, "feet"),
  16887. weight: math.unit(800, "kg"),
  16888. name: "Back (NSFW)",
  16889. image: {
  16890. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16891. }
  16892. },
  16893. sideArmored: {
  16894. height: math.unit(10, "feet"),
  16895. weight: math.unit(800, "kg"),
  16896. name: "Side (Armored)",
  16897. image: {
  16898. source: "./media/characters/venio-darcony/side-armored.svg",
  16899. extra: 1373 / 1003,
  16900. bottom: 0.037
  16901. }
  16902. },
  16903. frontArmored: {
  16904. height: math.unit(19, "feet"),
  16905. weight: math.unit(900, "kg"),
  16906. name: "Front (Armored)",
  16907. image: {
  16908. source: "./media/characters/venio-darcony/front-armored.svg"
  16909. }
  16910. },
  16911. backArmored: {
  16912. height: math.unit(19, "feet"),
  16913. weight: math.unit(900, "kg"),
  16914. name: "Back (Armored)",
  16915. image: {
  16916. source: "./media/characters/venio-darcony/back-armored.svg"
  16917. }
  16918. },
  16919. sword: {
  16920. height: math.unit(10, "feet"),
  16921. weight: math.unit(50, "lb"),
  16922. name: "Sword",
  16923. image: {
  16924. source: "./media/characters/venio-darcony/sword.svg"
  16925. }
  16926. },
  16927. },
  16928. [
  16929. {
  16930. name: "Normal",
  16931. height: math.unit(10, "feet")
  16932. },
  16933. {
  16934. name: "Macro",
  16935. height: math.unit(130, "feet"),
  16936. default: true
  16937. },
  16938. {
  16939. name: "Macro+",
  16940. height: math.unit(240, "feet")
  16941. },
  16942. ]
  16943. ))
  16944. characterMakers.push(() => makeCharacter(
  16945. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16946. {
  16947. front: {
  16948. height: math.unit(6, "feet"),
  16949. weight: math.unit(150, "lb"),
  16950. name: "Front",
  16951. image: {
  16952. source: "./media/characters/veski/front.svg",
  16953. extra: 1299 / 1225,
  16954. bottom: 0.04
  16955. }
  16956. },
  16957. back: {
  16958. height: math.unit(6, "feet"),
  16959. weight: math.unit(150, "lb"),
  16960. name: "Back",
  16961. image: {
  16962. source: "./media/characters/veski/back.svg",
  16963. extra: 1299 / 1225,
  16964. bottom: 0.008
  16965. }
  16966. },
  16967. maw: {
  16968. height: math.unit(1.5 * 1.21, "feet"),
  16969. name: "Maw",
  16970. image: {
  16971. source: "./media/characters/veski/maw.svg"
  16972. }
  16973. },
  16974. },
  16975. [
  16976. {
  16977. name: "Macro",
  16978. height: math.unit(2, "km"),
  16979. default: true
  16980. },
  16981. ]
  16982. ))
  16983. characterMakers.push(() => makeCharacter(
  16984. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16985. {
  16986. front: {
  16987. height: math.unit(5 + 7 / 12, "feet"),
  16988. name: "Front",
  16989. image: {
  16990. source: "./media/characters/isabelle/front.svg",
  16991. extra: 2130 / 1976,
  16992. bottom: 0.05
  16993. }
  16994. },
  16995. },
  16996. [
  16997. {
  16998. name: "Supermicro",
  16999. height: math.unit(10, "micrometers")
  17000. },
  17001. {
  17002. name: "Micro",
  17003. height: math.unit(1, "inch")
  17004. },
  17005. {
  17006. name: "Tiny",
  17007. height: math.unit(5, "inches")
  17008. },
  17009. {
  17010. name: "Standard",
  17011. height: math.unit(5 + 7 / 12, "inches")
  17012. },
  17013. {
  17014. name: "Macro",
  17015. height: math.unit(80, "meters"),
  17016. default: true
  17017. },
  17018. {
  17019. name: "Megamacro",
  17020. height: math.unit(250, "meters")
  17021. },
  17022. {
  17023. name: "Gigamacro",
  17024. height: math.unit(5, "km")
  17025. },
  17026. {
  17027. name: "Cosmic",
  17028. height: math.unit(2.5e6, "miles")
  17029. },
  17030. ]
  17031. ))
  17032. characterMakers.push(() => makeCharacter(
  17033. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17034. {
  17035. front: {
  17036. height: math.unit(6, "feet"),
  17037. weight: math.unit(150, "lb"),
  17038. name: "Front",
  17039. image: {
  17040. source: "./media/characters/hanzo/front.svg",
  17041. extra: 374 / 344,
  17042. bottom: 0.02
  17043. }
  17044. },
  17045. },
  17046. [
  17047. {
  17048. name: "Normal",
  17049. height: math.unit(8, "feet"),
  17050. default: true
  17051. },
  17052. ]
  17053. ))
  17054. characterMakers.push(() => makeCharacter(
  17055. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17056. {
  17057. front: {
  17058. height: math.unit(7, "feet"),
  17059. weight: math.unit(130, "lb"),
  17060. name: "Front",
  17061. image: {
  17062. source: "./media/characters/anna/front.svg",
  17063. extra: 169 / 145,
  17064. bottom: 0.06
  17065. }
  17066. },
  17067. full: {
  17068. height: math.unit(4.96, "feet"),
  17069. weight: math.unit(220, "lb"),
  17070. name: "Full",
  17071. image: {
  17072. source: "./media/characters/anna/full.svg",
  17073. extra: 138 / 114,
  17074. bottom: 0.15
  17075. }
  17076. },
  17077. tongue: {
  17078. height: math.unit(2.53, "feet"),
  17079. name: "Tongue",
  17080. image: {
  17081. source: "./media/characters/anna/tongue.svg"
  17082. }
  17083. },
  17084. },
  17085. [
  17086. {
  17087. name: "Normal",
  17088. height: math.unit(7, "feet"),
  17089. default: true
  17090. },
  17091. ]
  17092. ))
  17093. characterMakers.push(() => makeCharacter(
  17094. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17095. {
  17096. front: {
  17097. height: math.unit(7, "feet"),
  17098. weight: math.unit(150, "lb"),
  17099. name: "Front",
  17100. image: {
  17101. source: "./media/characters/ian-corvid/front.svg",
  17102. extra: 150 / 142,
  17103. bottom: 0.02
  17104. }
  17105. },
  17106. back: {
  17107. height: math.unit(7, "feet"),
  17108. weight: math.unit(150, "lb"),
  17109. name: "Back",
  17110. image: {
  17111. source: "./media/characters/ian-corvid/back.svg",
  17112. extra: 150 / 143,
  17113. bottom: 0.01
  17114. }
  17115. },
  17116. stomping: {
  17117. height: math.unit(7, "feet"),
  17118. weight: math.unit(150, "lb"),
  17119. name: "Stomping",
  17120. image: {
  17121. source: "./media/characters/ian-corvid/stomping.svg",
  17122. extra: 76 / 72
  17123. }
  17124. },
  17125. sitting: {
  17126. height: math.unit(7 / 1.8, "feet"),
  17127. weight: math.unit(150, "lb"),
  17128. name: "Sitting",
  17129. image: {
  17130. source: "./media/characters/ian-corvid/sitting.svg",
  17131. extra: 1400 / 1269,
  17132. bottom: 0.15
  17133. }
  17134. },
  17135. },
  17136. [
  17137. {
  17138. name: "Tiny Microw",
  17139. height: math.unit(1, "inch")
  17140. },
  17141. {
  17142. name: "Microw",
  17143. height: math.unit(6, "inches")
  17144. },
  17145. {
  17146. name: "Crow",
  17147. height: math.unit(7 + 1 / 12, "feet"),
  17148. default: true
  17149. },
  17150. {
  17151. name: "Macrow",
  17152. height: math.unit(176, "feet")
  17153. },
  17154. ]
  17155. ))
  17156. characterMakers.push(() => makeCharacter(
  17157. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17158. {
  17159. front: {
  17160. height: math.unit(5 + 7 / 12, "feet"),
  17161. weight: math.unit(147, "lb"),
  17162. name: "Front",
  17163. image: {
  17164. source: "./media/characters/natalie-kellon/front.svg",
  17165. extra: 1214 / 1141,
  17166. bottom: 0.02
  17167. }
  17168. },
  17169. },
  17170. [
  17171. {
  17172. name: "Micro",
  17173. height: math.unit(1 / 16, "inch")
  17174. },
  17175. {
  17176. name: "Tiny",
  17177. height: math.unit(4, "inches")
  17178. },
  17179. {
  17180. name: "Normal",
  17181. height: math.unit(5 + 7 / 12, "feet"),
  17182. default: true
  17183. },
  17184. {
  17185. name: "Amazon",
  17186. height: math.unit(12, "feet")
  17187. },
  17188. {
  17189. name: "Giantess",
  17190. height: math.unit(160, "meters")
  17191. },
  17192. {
  17193. name: "Titaness",
  17194. height: math.unit(800, "meters")
  17195. },
  17196. ]
  17197. ))
  17198. characterMakers.push(() => makeCharacter(
  17199. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17200. {
  17201. front: {
  17202. height: math.unit(6, "feet"),
  17203. weight: math.unit(150, "lb"),
  17204. name: "Front",
  17205. image: {
  17206. source: "./media/characters/alluria/front.svg",
  17207. extra: 806 / 738,
  17208. bottom: 0.01
  17209. }
  17210. },
  17211. side: {
  17212. height: math.unit(6, "feet"),
  17213. weight: math.unit(150, "lb"),
  17214. name: "Side",
  17215. image: {
  17216. source: "./media/characters/alluria/side.svg",
  17217. extra: 800 / 750,
  17218. }
  17219. },
  17220. back: {
  17221. height: math.unit(6, "feet"),
  17222. weight: math.unit(150, "lb"),
  17223. name: "Back",
  17224. image: {
  17225. source: "./media/characters/alluria/back.svg",
  17226. extra: 806 / 738,
  17227. }
  17228. },
  17229. frontMaid: {
  17230. height: math.unit(6, "feet"),
  17231. weight: math.unit(150, "lb"),
  17232. name: "Front (Maid)",
  17233. image: {
  17234. source: "./media/characters/alluria/front-maid.svg",
  17235. extra: 806 / 738,
  17236. bottom: 0.01
  17237. }
  17238. },
  17239. sideMaid: {
  17240. height: math.unit(6, "feet"),
  17241. weight: math.unit(150, "lb"),
  17242. name: "Side (Maid)",
  17243. image: {
  17244. source: "./media/characters/alluria/side-maid.svg",
  17245. extra: 800 / 750,
  17246. bottom: 0.005
  17247. }
  17248. },
  17249. backMaid: {
  17250. height: math.unit(6, "feet"),
  17251. weight: math.unit(150, "lb"),
  17252. name: "Back (Maid)",
  17253. image: {
  17254. source: "./media/characters/alluria/back-maid.svg",
  17255. extra: 806 / 738,
  17256. }
  17257. },
  17258. },
  17259. [
  17260. {
  17261. name: "Micro",
  17262. height: math.unit(6, "inches"),
  17263. default: true
  17264. },
  17265. ]
  17266. ))
  17267. characterMakers.push(() => makeCharacter(
  17268. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17269. {
  17270. front: {
  17271. height: math.unit(6, "feet"),
  17272. weight: math.unit(150, "lb"),
  17273. name: "Front",
  17274. image: {
  17275. source: "./media/characters/kyle/front.svg",
  17276. extra: 1069 / 962,
  17277. bottom: 77.228 / 1727.45
  17278. }
  17279. },
  17280. },
  17281. [
  17282. {
  17283. name: "Macro",
  17284. height: math.unit(150, "feet"),
  17285. default: true
  17286. },
  17287. ]
  17288. ))
  17289. characterMakers.push(() => makeCharacter(
  17290. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17291. {
  17292. front: {
  17293. height: math.unit(6, "feet"),
  17294. weight: math.unit(300, "lb"),
  17295. name: "Front",
  17296. image: {
  17297. source: "./media/characters/duncan/front.svg",
  17298. extra: 1650 / 1482,
  17299. bottom: 0.05
  17300. }
  17301. },
  17302. },
  17303. [
  17304. {
  17305. name: "Macro",
  17306. height: math.unit(100, "feet"),
  17307. default: true
  17308. },
  17309. ]
  17310. ))
  17311. characterMakers.push(() => makeCharacter(
  17312. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17313. {
  17314. front: {
  17315. height: math.unit(5 + 4 / 12, "feet"),
  17316. weight: math.unit(220, "lb"),
  17317. name: "Front",
  17318. image: {
  17319. source: "./media/characters/memory/front.svg",
  17320. extra: 3641 / 3545,
  17321. bottom: 0.03
  17322. }
  17323. },
  17324. back: {
  17325. height: math.unit(5 + 4 / 12, "feet"),
  17326. weight: math.unit(220, "lb"),
  17327. name: "Back",
  17328. image: {
  17329. source: "./media/characters/memory/back.svg",
  17330. extra: 3641 / 3545,
  17331. bottom: 0.025
  17332. }
  17333. },
  17334. frontSkirt: {
  17335. height: math.unit(5 + 4 / 12, "feet"),
  17336. weight: math.unit(220, "lb"),
  17337. name: "Front (Skirt)",
  17338. image: {
  17339. source: "./media/characters/memory/front-skirt.svg",
  17340. extra: 3641 / 3545,
  17341. bottom: 0.03
  17342. }
  17343. },
  17344. frontDress: {
  17345. height: math.unit(5 + 4 / 12, "feet"),
  17346. weight: math.unit(220, "lb"),
  17347. name: "Front (Dress)",
  17348. image: {
  17349. source: "./media/characters/memory/front-dress.svg",
  17350. extra: 3641 / 3545,
  17351. bottom: 0.03
  17352. }
  17353. },
  17354. },
  17355. [
  17356. {
  17357. name: "Micro",
  17358. height: math.unit(6, "inches"),
  17359. default: true
  17360. },
  17361. {
  17362. name: "Normal",
  17363. height: math.unit(5 + 4 / 12, "feet")
  17364. },
  17365. ]
  17366. ))
  17367. characterMakers.push(() => makeCharacter(
  17368. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17369. {
  17370. front: {
  17371. height: math.unit(4 + 11 / 12, "feet"),
  17372. weight: math.unit(100, "lb"),
  17373. name: "Front",
  17374. image: {
  17375. source: "./media/characters/luno/front.svg",
  17376. extra: 1535 / 1487,
  17377. bottom: 0.03
  17378. }
  17379. },
  17380. },
  17381. [
  17382. {
  17383. name: "Micro",
  17384. height: math.unit(3, "inches")
  17385. },
  17386. {
  17387. name: "Normal",
  17388. height: math.unit(4 + 11 / 12, "feet"),
  17389. default: true
  17390. },
  17391. {
  17392. name: "Macro",
  17393. height: math.unit(300, "feet")
  17394. },
  17395. {
  17396. name: "Megamacro",
  17397. height: math.unit(700, "miles")
  17398. },
  17399. ]
  17400. ))
  17401. characterMakers.push(() => makeCharacter(
  17402. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17403. {
  17404. front: {
  17405. height: math.unit(6 + 2 / 12, "feet"),
  17406. weight: math.unit(170, "lb"),
  17407. name: "Front",
  17408. image: {
  17409. source: "./media/characters/jamesy/front.svg",
  17410. extra: 440 / 382,
  17411. bottom: 0.005
  17412. }
  17413. },
  17414. },
  17415. [
  17416. {
  17417. name: "Micro",
  17418. height: math.unit(3, "inches")
  17419. },
  17420. {
  17421. name: "Normal",
  17422. height: math.unit(6 + 2 / 12, "feet"),
  17423. default: true
  17424. },
  17425. {
  17426. name: "Macro",
  17427. height: math.unit(300, "feet")
  17428. },
  17429. {
  17430. name: "Megamacro",
  17431. height: math.unit(700, "miles")
  17432. },
  17433. ]
  17434. ))
  17435. characterMakers.push(() => makeCharacter(
  17436. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17437. {
  17438. front: {
  17439. height: math.unit(6, "feet"),
  17440. weight: math.unit(160, "lb"),
  17441. name: "Front",
  17442. image: {
  17443. source: "./media/characters/mark/front.svg",
  17444. extra: 3300 / 3100,
  17445. bottom: 136.42 / 3440.47
  17446. }
  17447. },
  17448. },
  17449. [
  17450. {
  17451. name: "Macro",
  17452. height: math.unit(120, "meters")
  17453. },
  17454. {
  17455. name: "Bigger Macro",
  17456. height: math.unit(350, "meters")
  17457. },
  17458. {
  17459. name: "Megamacro",
  17460. height: math.unit(8, "km"),
  17461. default: true
  17462. },
  17463. {
  17464. name: "Continental",
  17465. height: math.unit(4550, "km")
  17466. },
  17467. {
  17468. name: "Planetary",
  17469. height: math.unit(65000, "km")
  17470. },
  17471. ]
  17472. ))
  17473. characterMakers.push(() => makeCharacter(
  17474. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17475. {
  17476. front: {
  17477. height: math.unit(6, "feet"),
  17478. weight: math.unit(400, "lb"),
  17479. name: "Front",
  17480. image: {
  17481. source: "./media/characters/mac/front.svg",
  17482. extra: 1048 / 987.7,
  17483. bottom: 60 / 1107.6,
  17484. }
  17485. },
  17486. },
  17487. [
  17488. {
  17489. name: "Macro",
  17490. height: math.unit(500, "feet"),
  17491. default: true
  17492. },
  17493. ]
  17494. ))
  17495. characterMakers.push(() => makeCharacter(
  17496. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17497. {
  17498. front: {
  17499. height: math.unit(5 + 2 / 12, "feet"),
  17500. weight: math.unit(190, "lb"),
  17501. name: "Front",
  17502. image: {
  17503. source: "./media/characters/bari/front.svg",
  17504. extra: 3156 / 2880,
  17505. bottom: 0.03
  17506. }
  17507. },
  17508. back: {
  17509. height: math.unit(5 + 2 / 12, "feet"),
  17510. weight: math.unit(190, "lb"),
  17511. name: "Back",
  17512. image: {
  17513. source: "./media/characters/bari/back.svg",
  17514. extra: 3260 / 2834,
  17515. bottom: 0.025
  17516. }
  17517. },
  17518. frontPlush: {
  17519. height: math.unit(5 + 2 / 12, "feet"),
  17520. weight: math.unit(190, "lb"),
  17521. name: "Front (Plush)",
  17522. image: {
  17523. source: "./media/characters/bari/front-plush.svg",
  17524. extra: 1112 / 1061,
  17525. bottom: 0.002
  17526. }
  17527. },
  17528. },
  17529. [
  17530. {
  17531. name: "Micro",
  17532. height: math.unit(3, "inches")
  17533. },
  17534. {
  17535. name: "Normal",
  17536. height: math.unit(5 + 2 / 12, "feet"),
  17537. default: true
  17538. },
  17539. {
  17540. name: "Macro",
  17541. height: math.unit(20, "feet")
  17542. },
  17543. ]
  17544. ))
  17545. characterMakers.push(() => makeCharacter(
  17546. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17547. {
  17548. front: {
  17549. height: math.unit(6 + 1 / 12, "feet"),
  17550. weight: math.unit(275, "lb"),
  17551. name: "Front",
  17552. image: {
  17553. source: "./media/characters/hunter-misha-raven/front.svg"
  17554. }
  17555. },
  17556. },
  17557. [
  17558. {
  17559. name: "Mortal",
  17560. height: math.unit(6 + 1 / 12, "feet")
  17561. },
  17562. {
  17563. name: "Divine",
  17564. height: math.unit(1.12134e34, "parsecs"),
  17565. default: true
  17566. },
  17567. ]
  17568. ))
  17569. characterMakers.push(() => makeCharacter(
  17570. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17571. {
  17572. front: {
  17573. height: math.unit(6 + 3 / 12, "feet"),
  17574. weight: math.unit(220, "lb"),
  17575. name: "Front",
  17576. image: {
  17577. source: "./media/characters/max-calore/front.svg",
  17578. extra: 1700 / 1648,
  17579. bottom: 0.01
  17580. }
  17581. },
  17582. back: {
  17583. height: math.unit(6 + 3 / 12, "feet"),
  17584. weight: math.unit(220, "lb"),
  17585. name: "Back",
  17586. image: {
  17587. source: "./media/characters/max-calore/back.svg",
  17588. extra: 1700 / 1648,
  17589. bottom: 0.01
  17590. }
  17591. },
  17592. },
  17593. [
  17594. {
  17595. name: "Normal",
  17596. height: math.unit(6 + 3 / 12, "feet"),
  17597. default: true
  17598. },
  17599. ]
  17600. ))
  17601. characterMakers.push(() => makeCharacter(
  17602. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17603. {
  17604. side: {
  17605. height: math.unit(2 + 8 / 12, "feet"),
  17606. weight: math.unit(99, "lb"),
  17607. name: "Side",
  17608. image: {
  17609. source: "./media/characters/aspen/side.svg",
  17610. extra: 152 / 138,
  17611. bottom: 0.032
  17612. }
  17613. },
  17614. },
  17615. [
  17616. {
  17617. name: "Normal",
  17618. height: math.unit(2 + 8 / 12, "feet"),
  17619. default: true
  17620. },
  17621. ]
  17622. ))
  17623. characterMakers.push(() => makeCharacter(
  17624. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17625. {
  17626. side: {
  17627. height: math.unit(3 + 2 / 12, "feet"),
  17628. weight: math.unit(224, "lb"),
  17629. name: "Side",
  17630. image: {
  17631. source: "./media/characters/sheila-feral-wolf/side.svg",
  17632. extra: 179 / 166,
  17633. bottom: 0.03
  17634. }
  17635. },
  17636. },
  17637. [
  17638. {
  17639. name: "Normal",
  17640. height: math.unit(3 + 2 / 12, "feet"),
  17641. default: true
  17642. },
  17643. ]
  17644. ))
  17645. characterMakers.push(() => makeCharacter(
  17646. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17647. {
  17648. side: {
  17649. height: math.unit(1 + 9 / 12, "feet"),
  17650. weight: math.unit(38, "lb"),
  17651. name: "Side",
  17652. image: {
  17653. source: "./media/characters/michelle/side.svg",
  17654. extra: 147 / 136.7,
  17655. bottom: 0.03
  17656. }
  17657. },
  17658. },
  17659. [
  17660. {
  17661. name: "Normal",
  17662. height: math.unit(1 + 9 / 12, "feet"),
  17663. default: true
  17664. },
  17665. ]
  17666. ))
  17667. characterMakers.push(() => makeCharacter(
  17668. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17669. {
  17670. front: {
  17671. height: math.unit(1.54, "feet"),
  17672. weight: math.unit(50, "lb"),
  17673. name: "Front",
  17674. image: {
  17675. source: "./media/characters/nino/front.svg"
  17676. }
  17677. },
  17678. },
  17679. [
  17680. {
  17681. name: "Normal",
  17682. height: math.unit(1.54, "feet"),
  17683. default: true
  17684. },
  17685. ]
  17686. ))
  17687. characterMakers.push(() => makeCharacter(
  17688. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17689. {
  17690. front: {
  17691. height: math.unit(1.49, "feet"),
  17692. weight: math.unit(45, "lb"),
  17693. name: "Front",
  17694. image: {
  17695. source: "./media/characters/viola/front.svg"
  17696. }
  17697. },
  17698. },
  17699. [
  17700. {
  17701. name: "Normal",
  17702. height: math.unit(1.49, "feet"),
  17703. default: true
  17704. },
  17705. ]
  17706. ))
  17707. characterMakers.push(() => makeCharacter(
  17708. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17709. {
  17710. front: {
  17711. height: math.unit(6 + 5 / 12, "feet"),
  17712. weight: math.unit(580, "lb"),
  17713. name: "Front",
  17714. image: {
  17715. source: "./media/characters/atlas/front.svg",
  17716. extra: 298.5 / 290,
  17717. bottom: 0.015
  17718. }
  17719. },
  17720. },
  17721. [
  17722. {
  17723. name: "Normal",
  17724. height: math.unit(6 + 5 / 12, "feet"),
  17725. default: true
  17726. },
  17727. ]
  17728. ))
  17729. characterMakers.push(() => makeCharacter(
  17730. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17731. {
  17732. side: {
  17733. height: math.unit(15.6, "inches"),
  17734. weight: math.unit(10, "lb"),
  17735. name: "Side",
  17736. image: {
  17737. source: "./media/characters/davy/side.svg",
  17738. extra: 200 / 170,
  17739. bottom: 0.01
  17740. }
  17741. },
  17742. },
  17743. [
  17744. {
  17745. name: "Normal",
  17746. height: math.unit(15.6, "inches"),
  17747. default: true
  17748. },
  17749. ]
  17750. ))
  17751. characterMakers.push(() => makeCharacter(
  17752. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17753. {
  17754. side: {
  17755. height: math.unit(4 + 8 / 12, "feet"),
  17756. weight: math.unit(166, "lb"),
  17757. name: "Side",
  17758. image: {
  17759. source: "./media/characters/fiona/side.svg",
  17760. extra: 232 / 220,
  17761. bottom: 0.03
  17762. }
  17763. },
  17764. },
  17765. [
  17766. {
  17767. name: "Normal",
  17768. height: math.unit(4 + 8 / 12, "feet"),
  17769. default: true
  17770. },
  17771. ]
  17772. ))
  17773. characterMakers.push(() => makeCharacter(
  17774. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17775. {
  17776. front: {
  17777. height: math.unit(26, "inches"),
  17778. weight: math.unit(35, "lb"),
  17779. name: "Front",
  17780. image: {
  17781. source: "./media/characters/lyla/front.svg",
  17782. bottom: 0.1
  17783. }
  17784. },
  17785. },
  17786. [
  17787. {
  17788. name: "Normal",
  17789. height: math.unit(3, "feet"),
  17790. default: true
  17791. },
  17792. ]
  17793. ))
  17794. characterMakers.push(() => makeCharacter(
  17795. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17796. {
  17797. side: {
  17798. height: math.unit(1.8, "feet"),
  17799. weight: math.unit(44, "lb"),
  17800. name: "Side",
  17801. image: {
  17802. source: "./media/characters/perseus/side.svg",
  17803. bottom: 0.21
  17804. }
  17805. },
  17806. },
  17807. [
  17808. {
  17809. name: "Normal",
  17810. height: math.unit(1.8, "feet"),
  17811. default: true
  17812. },
  17813. ]
  17814. ))
  17815. characterMakers.push(() => makeCharacter(
  17816. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17817. {
  17818. side: {
  17819. height: math.unit(4 + 2 / 12, "feet"),
  17820. weight: math.unit(20, "lb"),
  17821. name: "Side",
  17822. image: {
  17823. source: "./media/characters/remus/side.svg"
  17824. }
  17825. },
  17826. },
  17827. [
  17828. {
  17829. name: "Normal",
  17830. height: math.unit(4 + 2 / 12, "feet"),
  17831. default: true
  17832. },
  17833. ]
  17834. ))
  17835. characterMakers.push(() => makeCharacter(
  17836. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17837. {
  17838. front: {
  17839. height: math.unit(4 + 11 / 12, "feet"),
  17840. weight: math.unit(114, "lb"),
  17841. name: "Front",
  17842. image: {
  17843. source: "./media/characters/raf/front.svg",
  17844. extra: 1504/1339,
  17845. bottom: 26/1530
  17846. }
  17847. },
  17848. side: {
  17849. height: math.unit(4 + 11 / 12, "feet"),
  17850. weight: math.unit(114, "lb"),
  17851. name: "Side",
  17852. image: {
  17853. source: "./media/characters/raf/side.svg",
  17854. extra: 1466/1316,
  17855. bottom: 29/1495
  17856. }
  17857. },
  17858. },
  17859. [
  17860. {
  17861. name: "Micro",
  17862. height: math.unit(2, "inches")
  17863. },
  17864. {
  17865. name: "Normal",
  17866. height: math.unit(4 + 11 / 12, "feet"),
  17867. default: true
  17868. },
  17869. {
  17870. name: "Macro",
  17871. height: math.unit(70, "feet")
  17872. },
  17873. ]
  17874. ))
  17875. characterMakers.push(() => makeCharacter(
  17876. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17877. {
  17878. front: {
  17879. height: math.unit(1.5, "meters"),
  17880. weight: math.unit(68, "kg"),
  17881. name: "Front",
  17882. image: {
  17883. source: "./media/characters/liam-einarr/front.svg",
  17884. extra: 2822 / 2666
  17885. }
  17886. },
  17887. back: {
  17888. height: math.unit(1.5, "meters"),
  17889. weight: math.unit(68, "kg"),
  17890. name: "Back",
  17891. image: {
  17892. source: "./media/characters/liam-einarr/back.svg",
  17893. extra: 2822 / 2666,
  17894. bottom: 0.015
  17895. }
  17896. },
  17897. },
  17898. [
  17899. {
  17900. name: "Normal",
  17901. height: math.unit(1.5, "meters"),
  17902. default: true
  17903. },
  17904. {
  17905. name: "Macro",
  17906. height: math.unit(150, "meters")
  17907. },
  17908. {
  17909. name: "Megamacro",
  17910. height: math.unit(35, "km")
  17911. },
  17912. ]
  17913. ))
  17914. characterMakers.push(() => makeCharacter(
  17915. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17916. {
  17917. front: {
  17918. height: math.unit(6, "feet"),
  17919. weight: math.unit(75, "kg"),
  17920. name: "Front",
  17921. image: {
  17922. source: "./media/characters/linda/front.svg",
  17923. extra: 930 / 874,
  17924. bottom: 0.004
  17925. }
  17926. },
  17927. },
  17928. [
  17929. {
  17930. name: "Normal",
  17931. height: math.unit(6, "feet"),
  17932. default: true
  17933. },
  17934. ]
  17935. ))
  17936. characterMakers.push(() => makeCharacter(
  17937. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17938. {
  17939. front: {
  17940. height: math.unit(6 + 8 / 12, "feet"),
  17941. weight: math.unit(220, "lb"),
  17942. name: "Front",
  17943. image: {
  17944. source: "./media/characters/caylex/front.svg",
  17945. extra: 821 / 772,
  17946. bottom: 0.07
  17947. }
  17948. },
  17949. back: {
  17950. height: math.unit(6 + 8 / 12, "feet"),
  17951. weight: math.unit(220, "lb"),
  17952. name: "Back",
  17953. image: {
  17954. source: "./media/characters/caylex/back.svg",
  17955. extra: 821 / 772,
  17956. bottom: 0.022
  17957. }
  17958. },
  17959. hand: {
  17960. height: math.unit(1.25, "feet"),
  17961. name: "Hand",
  17962. image: {
  17963. source: "./media/characters/caylex/hand.svg"
  17964. }
  17965. },
  17966. foot: {
  17967. height: math.unit(1.6, "feet"),
  17968. name: "Foot",
  17969. image: {
  17970. source: "./media/characters/caylex/foot.svg"
  17971. }
  17972. },
  17973. armored: {
  17974. height: math.unit(6 + 8 / 12, "feet"),
  17975. weight: math.unit(250, "lb"),
  17976. name: "Armored",
  17977. image: {
  17978. source: "./media/characters/caylex/armored.svg",
  17979. extra: 1420 / 1310,
  17980. bottom: 0.045
  17981. }
  17982. },
  17983. },
  17984. [
  17985. {
  17986. name: "Normal",
  17987. height: math.unit(6 + 8 / 12, "feet"),
  17988. default: true
  17989. },
  17990. {
  17991. name: "Normal+",
  17992. height: math.unit(12, "feet")
  17993. },
  17994. ]
  17995. ))
  17996. characterMakers.push(() => makeCharacter(
  17997. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17998. {
  17999. front: {
  18000. height: math.unit(7 + 6 / 12, "feet"),
  18001. weight: math.unit(288, "lb"),
  18002. name: "Front",
  18003. image: {
  18004. source: "./media/characters/alana/front.svg",
  18005. extra: 679 / 653,
  18006. bottom: 22.5 / 701
  18007. }
  18008. },
  18009. },
  18010. [
  18011. {
  18012. name: "Normal",
  18013. height: math.unit(7 + 6 / 12, "feet")
  18014. },
  18015. {
  18016. name: "Large",
  18017. height: math.unit(50, "feet")
  18018. },
  18019. {
  18020. name: "Macro",
  18021. height: math.unit(100, "feet"),
  18022. default: true
  18023. },
  18024. {
  18025. name: "Macro+",
  18026. height: math.unit(200, "feet")
  18027. },
  18028. ]
  18029. ))
  18030. characterMakers.push(() => makeCharacter(
  18031. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18032. {
  18033. front: {
  18034. height: math.unit(6 + 1 / 12, "feet"),
  18035. weight: math.unit(210, "lb"),
  18036. name: "Front",
  18037. image: {
  18038. source: "./media/characters/hasani/front.svg",
  18039. extra: 244 / 232,
  18040. bottom: 0.01
  18041. }
  18042. },
  18043. back: {
  18044. height: math.unit(6 + 1 / 12, "feet"),
  18045. weight: math.unit(210, "lb"),
  18046. name: "Back",
  18047. image: {
  18048. source: "./media/characters/hasani/back.svg",
  18049. extra: 244 / 232,
  18050. bottom: 0.01
  18051. }
  18052. },
  18053. },
  18054. [
  18055. {
  18056. name: "Normal",
  18057. height: math.unit(6 + 1 / 12, "feet")
  18058. },
  18059. {
  18060. name: "Macro",
  18061. height: math.unit(175, "feet"),
  18062. default: true
  18063. },
  18064. ]
  18065. ))
  18066. characterMakers.push(() => makeCharacter(
  18067. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18068. {
  18069. front: {
  18070. height: math.unit(1.82, "meters"),
  18071. weight: math.unit(140, "lb"),
  18072. name: "Front",
  18073. image: {
  18074. source: "./media/characters/nita/front.svg",
  18075. extra: 2473 / 2363,
  18076. bottom: 0.01
  18077. }
  18078. },
  18079. },
  18080. [
  18081. {
  18082. name: "Normal",
  18083. height: math.unit(1.82, "m")
  18084. },
  18085. {
  18086. name: "Macro",
  18087. height: math.unit(300, "m")
  18088. },
  18089. {
  18090. name: "Mistake Canon",
  18091. height: math.unit(0.5, "miles"),
  18092. default: true
  18093. },
  18094. {
  18095. name: "Big Mistake",
  18096. height: math.unit(13, "miles")
  18097. },
  18098. {
  18099. name: "Playing God",
  18100. height: math.unit(2450, "miles")
  18101. },
  18102. ]
  18103. ))
  18104. characterMakers.push(() => makeCharacter(
  18105. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18106. {
  18107. front: {
  18108. height: math.unit(4, "feet"),
  18109. weight: math.unit(120, "lb"),
  18110. name: "Front",
  18111. image: {
  18112. source: "./media/characters/shiriko/front.svg",
  18113. extra: 970/934,
  18114. bottom: 5/975
  18115. }
  18116. },
  18117. },
  18118. [
  18119. {
  18120. name: "Normal",
  18121. height: math.unit(4, "feet"),
  18122. default: true
  18123. },
  18124. ]
  18125. ))
  18126. characterMakers.push(() => makeCharacter(
  18127. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18128. {
  18129. front: {
  18130. height: math.unit(6, "feet"),
  18131. name: "front",
  18132. image: {
  18133. source: "./media/characters/deja/front.svg",
  18134. extra: 926 / 840,
  18135. bottom: 0.07
  18136. }
  18137. },
  18138. },
  18139. [
  18140. {
  18141. name: "Planck Length",
  18142. height: math.unit(1.6e-35, "meters")
  18143. },
  18144. {
  18145. name: "Normal",
  18146. height: math.unit(30.48, "meters"),
  18147. default: true
  18148. },
  18149. {
  18150. name: "Universal",
  18151. height: math.unit(8.8e26, "meters")
  18152. },
  18153. ]
  18154. ))
  18155. characterMakers.push(() => makeCharacter(
  18156. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18157. {
  18158. side: {
  18159. height: math.unit(8, "feet"),
  18160. weight: math.unit(6300, "lb"),
  18161. name: "Side",
  18162. image: {
  18163. source: "./media/characters/anima/side.svg",
  18164. bottom: 0.035
  18165. }
  18166. },
  18167. },
  18168. [
  18169. {
  18170. name: "Normal",
  18171. height: math.unit(8, "feet"),
  18172. default: true
  18173. },
  18174. ]
  18175. ))
  18176. characterMakers.push(() => makeCharacter(
  18177. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18178. {
  18179. front: {
  18180. height: math.unit(8, "feet"),
  18181. weight: math.unit(350, "lb"),
  18182. name: "Front",
  18183. image: {
  18184. source: "./media/characters/bianca/front.svg",
  18185. extra: 234 / 225,
  18186. bottom: 0.03
  18187. }
  18188. },
  18189. },
  18190. [
  18191. {
  18192. name: "Normal",
  18193. height: math.unit(8, "feet"),
  18194. default: true
  18195. },
  18196. ]
  18197. ))
  18198. characterMakers.push(() => makeCharacter(
  18199. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18200. {
  18201. front: {
  18202. height: math.unit(6, "feet"),
  18203. weight: math.unit(150, "lb"),
  18204. name: "Front",
  18205. image: {
  18206. source: "./media/characters/adinia/front.svg",
  18207. extra: 1845 / 1672,
  18208. bottom: 0.02
  18209. }
  18210. },
  18211. back: {
  18212. height: math.unit(6, "feet"),
  18213. weight: math.unit(150, "lb"),
  18214. name: "Back",
  18215. image: {
  18216. source: "./media/characters/adinia/back.svg",
  18217. extra: 1845 / 1672,
  18218. bottom: 0.002
  18219. }
  18220. },
  18221. },
  18222. [
  18223. {
  18224. name: "Normal",
  18225. height: math.unit(11 + 5 / 12, "feet"),
  18226. default: true
  18227. },
  18228. ]
  18229. ))
  18230. characterMakers.push(() => makeCharacter(
  18231. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18232. {
  18233. front: {
  18234. height: math.unit(3, "meters"),
  18235. weight: math.unit(200, "kg"),
  18236. name: "Front",
  18237. image: {
  18238. source: "./media/characters/lykasa/front.svg",
  18239. extra: 1076 / 976,
  18240. bottom: 0.06
  18241. }
  18242. },
  18243. },
  18244. [
  18245. {
  18246. name: "Normal",
  18247. height: math.unit(3, "meters")
  18248. },
  18249. {
  18250. name: "Kaiju",
  18251. height: math.unit(120, "meters"),
  18252. default: true
  18253. },
  18254. {
  18255. name: "Mega Kaiju",
  18256. height: math.unit(240, "km")
  18257. },
  18258. {
  18259. name: "Giga Kaiju",
  18260. height: math.unit(400, "megameters")
  18261. },
  18262. {
  18263. name: "Tera Kaiju",
  18264. height: math.unit(800, "gigameters")
  18265. },
  18266. {
  18267. name: "Kaiju Dragon Goddess",
  18268. height: math.unit(26, "zettaparsecs")
  18269. },
  18270. ]
  18271. ))
  18272. characterMakers.push(() => makeCharacter(
  18273. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18274. {
  18275. side: {
  18276. height: math.unit(283 / 124 * 6, "feet"),
  18277. weight: math.unit(35000, "lb"),
  18278. name: "Side",
  18279. image: {
  18280. source: "./media/characters/malfaren/side.svg",
  18281. extra: 1310/529,
  18282. bottom: 24/1334
  18283. }
  18284. },
  18285. front: {
  18286. height: math.unit(22.36, "feet"),
  18287. weight: math.unit(35000, "lb"),
  18288. name: "Front",
  18289. image: {
  18290. source: "./media/characters/malfaren/front.svg",
  18291. extra: 1237/1115,
  18292. bottom: 32/1269
  18293. }
  18294. },
  18295. maw: {
  18296. height: math.unit(6.9, "feet"),
  18297. name: "Maw",
  18298. image: {
  18299. source: "./media/characters/malfaren/maw.svg"
  18300. }
  18301. },
  18302. dick: {
  18303. height: math.unit(6.19, "feet"),
  18304. name: "Dick",
  18305. image: {
  18306. source: "./media/characters/malfaren/dick.svg"
  18307. }
  18308. },
  18309. eye: {
  18310. height: math.unit(0.69, "feet"),
  18311. name: "Eye",
  18312. image: {
  18313. source: "./media/characters/malfaren/eye.svg"
  18314. }
  18315. },
  18316. },
  18317. [
  18318. {
  18319. name: "Big",
  18320. height: math.unit(283 / 162 * 6, "feet"),
  18321. },
  18322. {
  18323. name: "Bigger",
  18324. height: math.unit(283 / 124 * 6, "feet")
  18325. },
  18326. {
  18327. name: "Massive",
  18328. height: math.unit(283 / 92 * 6, "feet"),
  18329. default: true
  18330. },
  18331. {
  18332. name: "👀💦",
  18333. height: math.unit(283 / 73 * 6, "feet"),
  18334. },
  18335. ]
  18336. ))
  18337. characterMakers.push(() => makeCharacter(
  18338. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18339. {
  18340. front: {
  18341. height: math.unit(1.7, "m"),
  18342. weight: math.unit(70, "kg"),
  18343. name: "Front",
  18344. image: {
  18345. source: "./media/characters/kernel/front.svg",
  18346. extra: 222 / 210,
  18347. bottom: 0.007
  18348. }
  18349. },
  18350. },
  18351. [
  18352. {
  18353. name: "Nano",
  18354. height: math.unit(17, "micrometers")
  18355. },
  18356. {
  18357. name: "Micro",
  18358. height: math.unit(1.7, "mm")
  18359. },
  18360. {
  18361. name: "Small",
  18362. height: math.unit(1.7, "cm")
  18363. },
  18364. {
  18365. name: "Normal",
  18366. height: math.unit(1.7, "m"),
  18367. default: true
  18368. },
  18369. ]
  18370. ))
  18371. characterMakers.push(() => makeCharacter(
  18372. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18373. {
  18374. front: {
  18375. height: math.unit(1.75, "meters"),
  18376. weight: math.unit(65, "kg"),
  18377. name: "Front",
  18378. image: {
  18379. source: "./media/characters/jayne-folest/front.svg",
  18380. extra: 2115 / 2007,
  18381. bottom: 0.02
  18382. }
  18383. },
  18384. back: {
  18385. height: math.unit(1.75, "meters"),
  18386. weight: math.unit(65, "kg"),
  18387. name: "Back",
  18388. image: {
  18389. source: "./media/characters/jayne-folest/back.svg",
  18390. extra: 2115 / 2007,
  18391. bottom: 0.005
  18392. }
  18393. },
  18394. frontClothed: {
  18395. height: math.unit(1.75, "meters"),
  18396. weight: math.unit(65, "kg"),
  18397. name: "Front (Clothed)",
  18398. image: {
  18399. source: "./media/characters/jayne-folest/front-clothed.svg",
  18400. extra: 2115 / 2007,
  18401. bottom: 0.035
  18402. }
  18403. },
  18404. hand: {
  18405. height: math.unit(1 / 1.260, "feet"),
  18406. name: "Hand",
  18407. image: {
  18408. source: "./media/characters/jayne-folest/hand.svg"
  18409. }
  18410. },
  18411. foot: {
  18412. height: math.unit(1 / 0.918, "feet"),
  18413. name: "Foot",
  18414. image: {
  18415. source: "./media/characters/jayne-folest/foot.svg"
  18416. }
  18417. },
  18418. },
  18419. [
  18420. {
  18421. name: "Micro",
  18422. height: math.unit(4, "cm")
  18423. },
  18424. {
  18425. name: "Normal",
  18426. height: math.unit(1.75, "meters")
  18427. },
  18428. {
  18429. name: "Macro",
  18430. height: math.unit(47.5, "meters"),
  18431. default: true
  18432. },
  18433. ]
  18434. ))
  18435. characterMakers.push(() => makeCharacter(
  18436. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18437. {
  18438. front: {
  18439. height: math.unit(180, "cm"),
  18440. weight: math.unit(70, "kg"),
  18441. name: "Front",
  18442. image: {
  18443. source: "./media/characters/algier/front.svg",
  18444. extra: 596 / 572,
  18445. bottom: 0.04
  18446. }
  18447. },
  18448. back: {
  18449. height: math.unit(180, "cm"),
  18450. weight: math.unit(70, "kg"),
  18451. name: "Back",
  18452. image: {
  18453. source: "./media/characters/algier/back.svg",
  18454. extra: 596 / 572,
  18455. bottom: 0.025
  18456. }
  18457. },
  18458. frontdressed: {
  18459. height: math.unit(180, "cm"),
  18460. weight: math.unit(150, "kg"),
  18461. name: "Front-dressed",
  18462. image: {
  18463. source: "./media/characters/algier/front-dressed.svg",
  18464. extra: 596 / 572,
  18465. bottom: 0.038
  18466. }
  18467. },
  18468. },
  18469. [
  18470. {
  18471. name: "Micro",
  18472. height: math.unit(5, "cm")
  18473. },
  18474. {
  18475. name: "Normal",
  18476. height: math.unit(180, "cm"),
  18477. default: true
  18478. },
  18479. {
  18480. name: "Macro",
  18481. height: math.unit(64, "m")
  18482. },
  18483. ]
  18484. ))
  18485. characterMakers.push(() => makeCharacter(
  18486. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18487. {
  18488. upright: {
  18489. height: math.unit(7, "feet"),
  18490. weight: math.unit(300, "lb"),
  18491. name: "Upright",
  18492. image: {
  18493. source: "./media/characters/pretzel/upright.svg",
  18494. extra: 534 / 522,
  18495. bottom: 0.065
  18496. }
  18497. },
  18498. sprawling: {
  18499. height: math.unit(3.75, "feet"),
  18500. weight: math.unit(300, "lb"),
  18501. name: "Sprawling",
  18502. image: {
  18503. source: "./media/characters/pretzel/sprawling.svg",
  18504. extra: 314 / 281,
  18505. bottom: 0.1
  18506. }
  18507. },
  18508. tongue: {
  18509. height: math.unit(2, "feet"),
  18510. name: "Tongue",
  18511. image: {
  18512. source: "./media/characters/pretzel/tongue.svg"
  18513. }
  18514. },
  18515. },
  18516. [
  18517. {
  18518. name: "Normal",
  18519. height: math.unit(7, "feet"),
  18520. default: true
  18521. },
  18522. {
  18523. name: "Oversized",
  18524. height: math.unit(15, "feet")
  18525. },
  18526. {
  18527. name: "Huge",
  18528. height: math.unit(30, "feet")
  18529. },
  18530. {
  18531. name: "Macro",
  18532. height: math.unit(250, "feet")
  18533. },
  18534. ]
  18535. ))
  18536. characterMakers.push(() => makeCharacter(
  18537. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18538. {
  18539. sideFront: {
  18540. height: math.unit(5 + 2 / 12, "feet"),
  18541. weight: math.unit(120, "lb"),
  18542. name: "Front Side",
  18543. image: {
  18544. source: "./media/characters/roxi/side-front.svg",
  18545. extra: 2924 / 2717,
  18546. bottom: 0.08
  18547. }
  18548. },
  18549. sideBack: {
  18550. height: math.unit(5 + 2 / 12, "feet"),
  18551. weight: math.unit(120, "lb"),
  18552. name: "Back Side",
  18553. image: {
  18554. source: "./media/characters/roxi/side-back.svg",
  18555. extra: 2904 / 2693,
  18556. bottom: 0.06
  18557. }
  18558. },
  18559. front: {
  18560. height: math.unit(5 + 2 / 12, "feet"),
  18561. weight: math.unit(120, "lb"),
  18562. name: "Front",
  18563. image: {
  18564. source: "./media/characters/roxi/front.svg",
  18565. extra: 2028 / 1907,
  18566. bottom: 0.01
  18567. }
  18568. },
  18569. frontAlt: {
  18570. height: math.unit(5 + 2 / 12, "feet"),
  18571. weight: math.unit(120, "lb"),
  18572. name: "Front (Alt)",
  18573. image: {
  18574. source: "./media/characters/roxi/front-alt.svg",
  18575. extra: 1828 / 1798,
  18576. bottom: 0.01
  18577. }
  18578. },
  18579. sitting: {
  18580. height: math.unit(2.8, "feet"),
  18581. weight: math.unit(120, "lb"),
  18582. name: "Sitting",
  18583. image: {
  18584. source: "./media/characters/roxi/sitting.svg",
  18585. extra: 2660 / 2462,
  18586. bottom: 0.1
  18587. }
  18588. },
  18589. },
  18590. [
  18591. {
  18592. name: "Normal",
  18593. height: math.unit(5 + 2 / 12, "feet"),
  18594. default: true
  18595. },
  18596. ]
  18597. ))
  18598. characterMakers.push(() => makeCharacter(
  18599. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18600. {
  18601. side: {
  18602. height: math.unit(55, "feet"),
  18603. weight: math.unit(153, "tons"),
  18604. name: "Side",
  18605. image: {
  18606. source: "./media/characters/shadow/side.svg",
  18607. extra: 701 / 628,
  18608. bottom: 0.02
  18609. }
  18610. },
  18611. flying: {
  18612. height: math.unit(145, "feet"),
  18613. weight: math.unit(153, "tons"),
  18614. name: "Flying",
  18615. image: {
  18616. source: "./media/characters/shadow/flying.svg"
  18617. }
  18618. },
  18619. },
  18620. [
  18621. {
  18622. name: "Normal",
  18623. height: math.unit(55, "feet"),
  18624. default: true
  18625. },
  18626. ]
  18627. ))
  18628. characterMakers.push(() => makeCharacter(
  18629. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18630. {
  18631. front: {
  18632. height: math.unit(6, "feet"),
  18633. weight: math.unit(200, "lb"),
  18634. name: "Front",
  18635. image: {
  18636. source: "./media/characters/marcie/front.svg",
  18637. extra: 960 / 876,
  18638. bottom: 58 / 1017.87
  18639. }
  18640. },
  18641. },
  18642. [
  18643. {
  18644. name: "Macro",
  18645. height: math.unit(1, "mile"),
  18646. default: true
  18647. },
  18648. ]
  18649. ))
  18650. characterMakers.push(() => makeCharacter(
  18651. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18652. {
  18653. front: {
  18654. height: math.unit(7, "feet"),
  18655. weight: math.unit(200, "lb"),
  18656. name: "Front",
  18657. image: {
  18658. source: "./media/characters/kachina/front.svg",
  18659. extra: 1290.68 / 1119,
  18660. bottom: 36.5 / 1327.18
  18661. }
  18662. },
  18663. },
  18664. [
  18665. {
  18666. name: "Normal",
  18667. height: math.unit(7, "feet"),
  18668. default: true
  18669. },
  18670. ]
  18671. ))
  18672. characterMakers.push(() => makeCharacter(
  18673. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18674. {
  18675. looking: {
  18676. height: math.unit(2, "meters"),
  18677. weight: math.unit(300, "kg"),
  18678. name: "Looking",
  18679. image: {
  18680. source: "./media/characters/kash/looking.svg",
  18681. extra: 474 / 344,
  18682. bottom: 0.03
  18683. }
  18684. },
  18685. side: {
  18686. height: math.unit(2, "meters"),
  18687. weight: math.unit(300, "kg"),
  18688. name: "Side",
  18689. image: {
  18690. source: "./media/characters/kash/side.svg",
  18691. extra: 302 / 251,
  18692. bottom: 0.03
  18693. }
  18694. },
  18695. front: {
  18696. height: math.unit(2, "meters"),
  18697. weight: math.unit(300, "kg"),
  18698. name: "Front",
  18699. image: {
  18700. source: "./media/characters/kash/front.svg",
  18701. extra: 495 / 360,
  18702. bottom: 0.015
  18703. }
  18704. },
  18705. },
  18706. [
  18707. {
  18708. name: "Normal",
  18709. height: math.unit(2, "meters"),
  18710. default: true
  18711. },
  18712. {
  18713. name: "Big",
  18714. height: math.unit(3, "meters")
  18715. },
  18716. {
  18717. name: "Large",
  18718. height: math.unit(5, "meters")
  18719. },
  18720. ]
  18721. ))
  18722. characterMakers.push(() => makeCharacter(
  18723. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18724. {
  18725. feeding: {
  18726. height: math.unit(6.7, "feet"),
  18727. weight: math.unit(350, "lb"),
  18728. name: "Feeding",
  18729. image: {
  18730. source: "./media/characters/lalim/feeding.svg",
  18731. }
  18732. },
  18733. },
  18734. [
  18735. {
  18736. name: "Normal",
  18737. height: math.unit(6.7, "feet"),
  18738. default: true
  18739. },
  18740. ]
  18741. ))
  18742. characterMakers.push(() => makeCharacter(
  18743. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18744. {
  18745. front: {
  18746. height: math.unit(9.5, "feet"),
  18747. weight: math.unit(600, "lb"),
  18748. name: "Front",
  18749. image: {
  18750. source: "./media/characters/de'vout/front.svg",
  18751. extra: 1443 / 1328,
  18752. bottom: 0.025
  18753. }
  18754. },
  18755. back: {
  18756. height: math.unit(9.5, "feet"),
  18757. weight: math.unit(600, "lb"),
  18758. name: "Back",
  18759. image: {
  18760. source: "./media/characters/de'vout/back.svg",
  18761. extra: 1443 / 1328
  18762. }
  18763. },
  18764. frontDressed: {
  18765. height: math.unit(9.5, "feet"),
  18766. weight: math.unit(600, "lb"),
  18767. name: "Front (Dressed",
  18768. image: {
  18769. source: "./media/characters/de'vout/front-dressed.svg",
  18770. extra: 1443 / 1328,
  18771. bottom: 0.025
  18772. }
  18773. },
  18774. backDressed: {
  18775. height: math.unit(9.5, "feet"),
  18776. weight: math.unit(600, "lb"),
  18777. name: "Back (Dressed",
  18778. image: {
  18779. source: "./media/characters/de'vout/back-dressed.svg",
  18780. extra: 1443 / 1328
  18781. }
  18782. },
  18783. },
  18784. [
  18785. {
  18786. name: "Normal",
  18787. height: math.unit(9.5, "feet"),
  18788. default: true
  18789. },
  18790. ]
  18791. ))
  18792. characterMakers.push(() => makeCharacter(
  18793. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18794. {
  18795. front: {
  18796. height: math.unit(8, "feet"),
  18797. weight: math.unit(225, "lb"),
  18798. name: "Front",
  18799. image: {
  18800. source: "./media/characters/talana/front.svg",
  18801. extra: 1410 / 1300,
  18802. bottom: 0.015
  18803. }
  18804. },
  18805. frontDressed: {
  18806. height: math.unit(8, "feet"),
  18807. weight: math.unit(225, "lb"),
  18808. name: "Front (Dressed",
  18809. image: {
  18810. source: "./media/characters/talana/front-dressed.svg",
  18811. extra: 1410 / 1300,
  18812. bottom: 0.015
  18813. }
  18814. },
  18815. },
  18816. [
  18817. {
  18818. name: "Normal",
  18819. height: math.unit(8, "feet"),
  18820. default: true
  18821. },
  18822. ]
  18823. ))
  18824. characterMakers.push(() => makeCharacter(
  18825. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18826. {
  18827. side: {
  18828. height: math.unit(7.2, "feet"),
  18829. weight: math.unit(150, "lb"),
  18830. name: "Side",
  18831. image: {
  18832. source: "./media/characters/xeauvok/side.svg",
  18833. extra: 1975 / 1523,
  18834. bottom: 0.07
  18835. }
  18836. },
  18837. },
  18838. [
  18839. {
  18840. name: "Normal",
  18841. height: math.unit(7.2, "feet"),
  18842. default: true
  18843. },
  18844. ]
  18845. ))
  18846. characterMakers.push(() => makeCharacter(
  18847. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18848. {
  18849. side: {
  18850. height: math.unit(4, "meters"),
  18851. weight: math.unit(2200, "kg"),
  18852. name: "Side",
  18853. image: {
  18854. source: "./media/characters/zara/side.svg",
  18855. extra: 765/744,
  18856. bottom: 156/921
  18857. }
  18858. },
  18859. },
  18860. [
  18861. {
  18862. name: "Normal",
  18863. height: math.unit(4, "meters"),
  18864. default: true
  18865. },
  18866. ]
  18867. ))
  18868. characterMakers.push(() => makeCharacter(
  18869. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18870. {
  18871. side: {
  18872. height: math.unit(6, "feet"),
  18873. weight: math.unit(150, "lb"),
  18874. name: "Side",
  18875. image: {
  18876. source: "./media/characters/richard-dragon/side.svg",
  18877. extra: 845 / 340,
  18878. bottom: 0.017
  18879. }
  18880. },
  18881. maw: {
  18882. height: math.unit(2.97, "feet"),
  18883. name: "Maw",
  18884. image: {
  18885. source: "./media/characters/richard-dragon/maw.svg"
  18886. }
  18887. },
  18888. },
  18889. [
  18890. ]
  18891. ))
  18892. characterMakers.push(() => makeCharacter(
  18893. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18894. {
  18895. front: {
  18896. height: math.unit(4, "feet"),
  18897. weight: math.unit(100, "lb"),
  18898. name: "Front",
  18899. image: {
  18900. source: "./media/characters/richard-smeargle/front.svg",
  18901. extra: 2952 / 2820,
  18902. bottom: 0.028
  18903. }
  18904. },
  18905. },
  18906. [
  18907. {
  18908. name: "Normal",
  18909. height: math.unit(4, "feet"),
  18910. default: true
  18911. },
  18912. {
  18913. name: "Dynamax",
  18914. height: math.unit(20, "meters")
  18915. },
  18916. ]
  18917. ))
  18918. characterMakers.push(() => makeCharacter(
  18919. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18920. {
  18921. front: {
  18922. height: math.unit(6, "feet"),
  18923. weight: math.unit(110, "lb"),
  18924. name: "Front",
  18925. image: {
  18926. source: "./media/characters/klay/front.svg",
  18927. extra: 962 / 883,
  18928. bottom: 0.04
  18929. }
  18930. },
  18931. back: {
  18932. height: math.unit(6, "feet"),
  18933. weight: math.unit(110, "lb"),
  18934. name: "Back",
  18935. image: {
  18936. source: "./media/characters/klay/back.svg",
  18937. extra: 962 / 883
  18938. }
  18939. },
  18940. beans: {
  18941. height: math.unit(1.15, "feet"),
  18942. name: "Beans",
  18943. image: {
  18944. source: "./media/characters/klay/beans.svg"
  18945. }
  18946. },
  18947. },
  18948. [
  18949. {
  18950. name: "Micro",
  18951. height: math.unit(6, "inches")
  18952. },
  18953. {
  18954. name: "Mini",
  18955. height: math.unit(3, "feet")
  18956. },
  18957. {
  18958. name: "Normal",
  18959. height: math.unit(6, "feet"),
  18960. default: true
  18961. },
  18962. {
  18963. name: "Big",
  18964. height: math.unit(25, "feet")
  18965. },
  18966. {
  18967. name: "Macro",
  18968. height: math.unit(100, "feet")
  18969. },
  18970. {
  18971. name: "Megamacro",
  18972. height: math.unit(400, "feet")
  18973. },
  18974. ]
  18975. ))
  18976. characterMakers.push(() => makeCharacter(
  18977. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18978. {
  18979. front: {
  18980. height: math.unit(6, "feet"),
  18981. weight: math.unit(160, "lb"),
  18982. name: "Front",
  18983. image: {
  18984. source: "./media/characters/marcus/front.svg",
  18985. extra: 734 / 676,
  18986. bottom: 0.03
  18987. }
  18988. },
  18989. },
  18990. [
  18991. {
  18992. name: "Little",
  18993. height: math.unit(6, "feet")
  18994. },
  18995. {
  18996. name: "Normal",
  18997. height: math.unit(110, "feet"),
  18998. default: true
  18999. },
  19000. {
  19001. name: "Macro",
  19002. height: math.unit(250, "feet")
  19003. },
  19004. {
  19005. name: "Megamacro",
  19006. height: math.unit(1000, "feet")
  19007. },
  19008. ]
  19009. ))
  19010. characterMakers.push(() => makeCharacter(
  19011. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19012. {
  19013. front: {
  19014. height: math.unit(7, "feet"),
  19015. weight: math.unit(275, "lb"),
  19016. name: "Front",
  19017. image: {
  19018. source: "./media/characters/claude-delroute/front.svg",
  19019. extra: 902/827,
  19020. bottom: 26/928
  19021. }
  19022. },
  19023. side: {
  19024. height: math.unit(7, "feet"),
  19025. weight: math.unit(275, "lb"),
  19026. name: "Side",
  19027. image: {
  19028. source: "./media/characters/claude-delroute/side.svg",
  19029. extra: 908/853,
  19030. bottom: 16/924
  19031. }
  19032. },
  19033. back: {
  19034. height: math.unit(7, "feet"),
  19035. weight: math.unit(275, "lb"),
  19036. name: "Back",
  19037. image: {
  19038. source: "./media/characters/claude-delroute/back.svg",
  19039. extra: 911/829,
  19040. bottom: 18/929
  19041. }
  19042. },
  19043. maw: {
  19044. height: math.unit(0.6407, "meters"),
  19045. name: "Maw",
  19046. image: {
  19047. source: "./media/characters/claude-delroute/maw.svg"
  19048. }
  19049. },
  19050. },
  19051. [
  19052. {
  19053. name: "Normal",
  19054. height: math.unit(7, "feet"),
  19055. default: true
  19056. },
  19057. {
  19058. name: "Lorge",
  19059. height: math.unit(20, "feet")
  19060. },
  19061. ]
  19062. ))
  19063. characterMakers.push(() => makeCharacter(
  19064. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19065. {
  19066. front: {
  19067. height: math.unit(8 + 4 / 12, "feet"),
  19068. weight: math.unit(600, "lb"),
  19069. name: "Front",
  19070. image: {
  19071. source: "./media/characters/dragonien/front.svg",
  19072. extra: 100 / 94,
  19073. bottom: 3.3 / 103.3445
  19074. }
  19075. },
  19076. back: {
  19077. height: math.unit(8 + 4 / 12, "feet"),
  19078. weight: math.unit(600, "lb"),
  19079. name: "Back",
  19080. image: {
  19081. source: "./media/characters/dragonien/back.svg",
  19082. extra: 776 / 746,
  19083. bottom: 6.4 / 782.0616
  19084. }
  19085. },
  19086. foot: {
  19087. height: math.unit(1.54, "feet"),
  19088. name: "Foot",
  19089. image: {
  19090. source: "./media/characters/dragonien/foot.svg",
  19091. }
  19092. },
  19093. },
  19094. [
  19095. {
  19096. name: "Normal",
  19097. height: math.unit(8 + 4 / 12, "feet"),
  19098. default: true
  19099. },
  19100. {
  19101. name: "Macro",
  19102. height: math.unit(200, "feet")
  19103. },
  19104. {
  19105. name: "Megamacro",
  19106. height: math.unit(1, "mile")
  19107. },
  19108. {
  19109. name: "Gigamacro",
  19110. height: math.unit(1000, "miles")
  19111. },
  19112. ]
  19113. ))
  19114. characterMakers.push(() => makeCharacter(
  19115. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19116. {
  19117. front: {
  19118. height: math.unit(5 + 2 / 12, "feet"),
  19119. weight: math.unit(110, "lb"),
  19120. name: "Front",
  19121. image: {
  19122. source: "./media/characters/desta/front.svg",
  19123. extra: 767 / 726,
  19124. bottom: 11.7 / 779
  19125. }
  19126. },
  19127. back: {
  19128. height: math.unit(5 + 2 / 12, "feet"),
  19129. weight: math.unit(110, "lb"),
  19130. name: "Back",
  19131. image: {
  19132. source: "./media/characters/desta/back.svg",
  19133. extra: 777 / 728,
  19134. bottom: 6 / 784
  19135. }
  19136. },
  19137. frontAlt: {
  19138. height: math.unit(5 + 2 / 12, "feet"),
  19139. weight: math.unit(110, "lb"),
  19140. name: "Front",
  19141. image: {
  19142. source: "./media/characters/desta/front-alt.svg",
  19143. extra: 1482 / 1417
  19144. }
  19145. },
  19146. side: {
  19147. height: math.unit(5 + 2 / 12, "feet"),
  19148. weight: math.unit(110, "lb"),
  19149. name: "Side",
  19150. image: {
  19151. source: "./media/characters/desta/side.svg",
  19152. extra: 2579 / 2491,
  19153. bottom: 0.053
  19154. }
  19155. },
  19156. },
  19157. [
  19158. {
  19159. name: "Micro",
  19160. height: math.unit(6, "inches")
  19161. },
  19162. {
  19163. name: "Normal",
  19164. height: math.unit(5 + 2 / 12, "feet"),
  19165. default: true
  19166. },
  19167. {
  19168. name: "Macro",
  19169. height: math.unit(62, "feet")
  19170. },
  19171. {
  19172. name: "Megamacro",
  19173. height: math.unit(1800, "feet")
  19174. },
  19175. ]
  19176. ))
  19177. characterMakers.push(() => makeCharacter(
  19178. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19179. {
  19180. front: {
  19181. height: math.unit(10, "feet"),
  19182. weight: math.unit(700, "lb"),
  19183. name: "Front",
  19184. image: {
  19185. source: "./media/characters/storm-alystar/front.svg",
  19186. extra: 2112 / 1898,
  19187. bottom: 0.034
  19188. }
  19189. },
  19190. },
  19191. [
  19192. {
  19193. name: "Micro",
  19194. height: math.unit(3.5, "inches")
  19195. },
  19196. {
  19197. name: "Normal",
  19198. height: math.unit(10, "feet"),
  19199. default: true
  19200. },
  19201. {
  19202. name: "Macro",
  19203. height: math.unit(400, "feet")
  19204. },
  19205. {
  19206. name: "Deific",
  19207. height: math.unit(60, "miles")
  19208. },
  19209. ]
  19210. ))
  19211. characterMakers.push(() => makeCharacter(
  19212. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19213. {
  19214. front: {
  19215. height: math.unit(2.35, "meters"),
  19216. weight: math.unit(119, "kg"),
  19217. name: "Front",
  19218. image: {
  19219. source: "./media/characters/ilia/front.svg",
  19220. extra: 1285 / 1255,
  19221. bottom: 0.06
  19222. }
  19223. },
  19224. },
  19225. [
  19226. {
  19227. name: "Normal",
  19228. height: math.unit(2.35, "meters")
  19229. },
  19230. {
  19231. name: "Macro",
  19232. height: math.unit(140, "meters"),
  19233. default: true
  19234. },
  19235. {
  19236. name: "Megamacro",
  19237. height: math.unit(100, "miles")
  19238. },
  19239. ]
  19240. ))
  19241. characterMakers.push(() => makeCharacter(
  19242. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19243. {
  19244. front: {
  19245. height: math.unit(6 + 5 / 12, "feet"),
  19246. weight: math.unit(190, "lb"),
  19247. name: "Front",
  19248. image: {
  19249. source: "./media/characters/kingdead/front.svg",
  19250. extra: 1228 / 1177
  19251. }
  19252. },
  19253. },
  19254. [
  19255. {
  19256. name: "Micro",
  19257. height: math.unit(7, "inches")
  19258. },
  19259. {
  19260. name: "Normal",
  19261. height: math.unit(6 + 5 / 12, "feet")
  19262. },
  19263. {
  19264. name: "Macro",
  19265. height: math.unit(150, "feet"),
  19266. default: true
  19267. },
  19268. {
  19269. name: "Megamacro",
  19270. height: math.unit(200, "miles")
  19271. },
  19272. ]
  19273. ))
  19274. characterMakers.push(() => makeCharacter(
  19275. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19276. {
  19277. front: {
  19278. height: math.unit(8, "feet"),
  19279. weight: math.unit(600, "lb"),
  19280. name: "Front",
  19281. image: {
  19282. source: "./media/characters/kyrehx/front.svg",
  19283. extra: 1195 / 1095,
  19284. bottom: 0.034
  19285. }
  19286. },
  19287. },
  19288. [
  19289. {
  19290. name: "Micro",
  19291. height: math.unit(2, "inches")
  19292. },
  19293. {
  19294. name: "Normal",
  19295. height: math.unit(8, "feet"),
  19296. default: true
  19297. },
  19298. {
  19299. name: "Macro",
  19300. height: math.unit(255, "feet")
  19301. },
  19302. ]
  19303. ))
  19304. characterMakers.push(() => makeCharacter(
  19305. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19306. {
  19307. front: {
  19308. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19309. weight: math.unit(184, "lb"),
  19310. name: "Front",
  19311. image: {
  19312. source: "./media/characters/xang/front.svg",
  19313. extra: 845 / 755
  19314. }
  19315. },
  19316. },
  19317. [
  19318. {
  19319. name: "Normal",
  19320. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19321. default: true
  19322. },
  19323. {
  19324. name: "Macro",
  19325. height: math.unit(0.935 * 146, "feet")
  19326. },
  19327. {
  19328. name: "Megamacro",
  19329. height: math.unit(0.935 * 3, "miles")
  19330. },
  19331. ]
  19332. ))
  19333. characterMakers.push(() => makeCharacter(
  19334. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19335. {
  19336. frontDressed: {
  19337. height: math.unit(5 + 7 / 12, "feet"),
  19338. weight: math.unit(140, "lb"),
  19339. name: "Front (Dressed)",
  19340. image: {
  19341. source: "./media/characters/doc-weardno/front-dressed.svg",
  19342. extra: 263 / 234
  19343. }
  19344. },
  19345. backDressed: {
  19346. height: math.unit(5 + 7 / 12, "feet"),
  19347. weight: math.unit(140, "lb"),
  19348. name: "Back (Dressed)",
  19349. image: {
  19350. source: "./media/characters/doc-weardno/back-dressed.svg",
  19351. extra: 266 / 238
  19352. }
  19353. },
  19354. front: {
  19355. height: math.unit(5 + 7 / 12, "feet"),
  19356. weight: math.unit(140, "lb"),
  19357. name: "Front",
  19358. image: {
  19359. source: "./media/characters/doc-weardno/front.svg",
  19360. extra: 254 / 233
  19361. }
  19362. },
  19363. },
  19364. [
  19365. {
  19366. name: "Micro",
  19367. height: math.unit(3, "inches")
  19368. },
  19369. {
  19370. name: "Normal",
  19371. height: math.unit(5 + 7 / 12, "feet"),
  19372. default: true
  19373. },
  19374. {
  19375. name: "Macro",
  19376. height: math.unit(25, "feet")
  19377. },
  19378. {
  19379. name: "Megamacro",
  19380. height: math.unit(2, "miles")
  19381. },
  19382. ]
  19383. ))
  19384. characterMakers.push(() => makeCharacter(
  19385. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19386. {
  19387. front: {
  19388. height: math.unit(6 + 2 / 12, "feet"),
  19389. weight: math.unit(153, "lb"),
  19390. name: "Front",
  19391. image: {
  19392. source: "./media/characters/seth-whilst/front.svg",
  19393. bottom: 0.07
  19394. }
  19395. },
  19396. },
  19397. [
  19398. {
  19399. name: "Micro",
  19400. height: math.unit(5, "inches")
  19401. },
  19402. {
  19403. name: "Normal",
  19404. height: math.unit(6 + 2 / 12, "feet"),
  19405. default: true
  19406. },
  19407. ]
  19408. ))
  19409. characterMakers.push(() => makeCharacter(
  19410. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19411. {
  19412. front: {
  19413. height: math.unit(3, "inches"),
  19414. weight: math.unit(8, "grams"),
  19415. name: "Front",
  19416. image: {
  19417. source: "./media/characters/pocket-jabari/front.svg",
  19418. extra: 1024 / 974,
  19419. bottom: 0.039
  19420. }
  19421. },
  19422. },
  19423. [
  19424. {
  19425. name: "Minimicro",
  19426. height: math.unit(8, "mm")
  19427. },
  19428. {
  19429. name: "Micro",
  19430. height: math.unit(3, "inches"),
  19431. default: true
  19432. },
  19433. {
  19434. name: "Normal",
  19435. height: math.unit(3, "feet")
  19436. },
  19437. ]
  19438. ))
  19439. characterMakers.push(() => makeCharacter(
  19440. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19441. {
  19442. frontDressed: {
  19443. height: math.unit(15, "feet"),
  19444. weight: math.unit(3280, "lb"),
  19445. name: "Front (Dressed)",
  19446. image: {
  19447. source: "./media/characters/sapphy/front-dressed.svg",
  19448. extra: 1951/1654,
  19449. bottom: 194/2145
  19450. },
  19451. form: "anthro",
  19452. default: true
  19453. },
  19454. backDressed: {
  19455. height: math.unit(15, "feet"),
  19456. weight: math.unit(3280, "lb"),
  19457. name: "Back (Dressed)",
  19458. image: {
  19459. source: "./media/characters/sapphy/back-dressed.svg",
  19460. extra: 2058/1918,
  19461. bottom: 125/2183
  19462. },
  19463. form: "anthro"
  19464. },
  19465. frontNude: {
  19466. height: math.unit(15, "feet"),
  19467. weight: math.unit(3280, "lb"),
  19468. name: "Front (Nude)",
  19469. image: {
  19470. source: "./media/characters/sapphy/front-nude.svg",
  19471. extra: 1951/1654,
  19472. bottom: 194/2145
  19473. },
  19474. form: "anthro"
  19475. },
  19476. backNude: {
  19477. height: math.unit(15, "feet"),
  19478. weight: math.unit(3280, "lb"),
  19479. name: "Back (Nude)",
  19480. image: {
  19481. source: "./media/characters/sapphy/back-nude.svg",
  19482. extra: 2058/1918,
  19483. bottom: 125/2183
  19484. },
  19485. form: "anthro"
  19486. },
  19487. full: {
  19488. height: math.unit(15, "feet"),
  19489. weight: math.unit(3280, "lb"),
  19490. name: "Full",
  19491. image: {
  19492. source: "./media/characters/sapphy/full.svg",
  19493. extra: 1396/1317,
  19494. bottom: 44/1440
  19495. },
  19496. form: "anthro"
  19497. },
  19498. dick: {
  19499. height: math.unit(3.8, "feet"),
  19500. name: "Dick",
  19501. image: {
  19502. source: "./media/characters/sapphy/dick.svg"
  19503. },
  19504. form: "anthro"
  19505. },
  19506. feral: {
  19507. height: math.unit(35, "feet"),
  19508. weight: math.unit(160, "tons"),
  19509. name: "Feral",
  19510. image: {
  19511. source: "./media/characters/sapphy/feral.svg",
  19512. extra: 1050/573,
  19513. bottom: 60/1110
  19514. },
  19515. form: "feral",
  19516. default: true
  19517. },
  19518. },
  19519. [
  19520. {
  19521. name: "Normal",
  19522. height: math.unit(15, "feet"),
  19523. form: "anthro"
  19524. },
  19525. {
  19526. name: "Casual Macro",
  19527. height: math.unit(120, "feet"),
  19528. form: "anthro"
  19529. },
  19530. {
  19531. name: "Macro",
  19532. height: math.unit(2150, "feet"),
  19533. default: true,
  19534. form: "anthro"
  19535. },
  19536. {
  19537. name: "Megamacro",
  19538. height: math.unit(8, "miles"),
  19539. form: "anthro"
  19540. },
  19541. {
  19542. name: "Galaxy Mom",
  19543. height: math.unit(6, "megalightyears"),
  19544. form: "anthro"
  19545. },
  19546. {
  19547. name: "Normal",
  19548. height: math.unit(35, "feet"),
  19549. form: "feral",
  19550. default: true
  19551. },
  19552. {
  19553. name: "Macro",
  19554. height: math.unit(300, "feet"),
  19555. form: "feral"
  19556. },
  19557. {
  19558. name: "Galaxy Mom",
  19559. height: math.unit(10, "megalightyears"),
  19560. form: "feral"
  19561. },
  19562. ],
  19563. {
  19564. "anthro": {
  19565. name: "Anthro",
  19566. default: true
  19567. },
  19568. "feral": {
  19569. name: "Feral"
  19570. }
  19571. }
  19572. ))
  19573. characterMakers.push(() => makeCharacter(
  19574. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19575. {
  19576. front: {
  19577. height: math.unit(6, "feet"),
  19578. weight: math.unit(170, "lb"),
  19579. name: "Front",
  19580. image: {
  19581. source: "./media/characters/kiro/front.svg",
  19582. extra: 1064 / 1012,
  19583. bottom: 0.052
  19584. }
  19585. },
  19586. },
  19587. [
  19588. {
  19589. name: "Micro",
  19590. height: math.unit(6, "inches")
  19591. },
  19592. {
  19593. name: "Normal",
  19594. height: math.unit(6, "feet"),
  19595. default: true
  19596. },
  19597. {
  19598. name: "Macro",
  19599. height: math.unit(72, "feet")
  19600. },
  19601. ]
  19602. ))
  19603. characterMakers.push(() => makeCharacter(
  19604. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19605. {
  19606. front: {
  19607. height: math.unit(5 + 9 / 12, "feet"),
  19608. weight: math.unit(175, "lb"),
  19609. name: "Front",
  19610. image: {
  19611. source: "./media/characters/irishfox/front.svg",
  19612. extra: 1912 / 1680,
  19613. bottom: 0.02
  19614. }
  19615. },
  19616. },
  19617. [
  19618. {
  19619. name: "Nano",
  19620. height: math.unit(1, "mm")
  19621. },
  19622. {
  19623. name: "Micro",
  19624. height: math.unit(2, "inches")
  19625. },
  19626. {
  19627. name: "Normal",
  19628. height: math.unit(5 + 9 / 12, "feet"),
  19629. default: true
  19630. },
  19631. {
  19632. name: "Macro",
  19633. height: math.unit(45, "feet")
  19634. },
  19635. ]
  19636. ))
  19637. characterMakers.push(() => makeCharacter(
  19638. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19639. {
  19640. front: {
  19641. height: math.unit(6 + 1 / 12, "feet"),
  19642. weight: math.unit(75, "lb"),
  19643. name: "Front",
  19644. image: {
  19645. source: "./media/characters/aronai-sieyes/front.svg",
  19646. extra: 1532/1450,
  19647. bottom: 42/1574
  19648. }
  19649. },
  19650. side: {
  19651. height: math.unit(6 + 1 / 12, "feet"),
  19652. weight: math.unit(75, "lb"),
  19653. name: "Side",
  19654. image: {
  19655. source: "./media/characters/aronai-sieyes/side.svg",
  19656. extra: 1422/1365,
  19657. bottom: 148/1570
  19658. }
  19659. },
  19660. back: {
  19661. height: math.unit(6 + 1 / 12, "feet"),
  19662. weight: math.unit(75, "lb"),
  19663. name: "Back",
  19664. image: {
  19665. source: "./media/characters/aronai-sieyes/back.svg",
  19666. extra: 1526/1464,
  19667. bottom: 51/1577
  19668. }
  19669. },
  19670. dressed: {
  19671. height: math.unit(6 + 1 / 12, "feet"),
  19672. weight: math.unit(75, "lb"),
  19673. name: "Dressed",
  19674. image: {
  19675. source: "./media/characters/aronai-sieyes/dressed.svg",
  19676. extra: 1559/1483,
  19677. bottom: 39/1598
  19678. }
  19679. },
  19680. slit: {
  19681. height: math.unit(1.3, "feet"),
  19682. name: "Slit",
  19683. image: {
  19684. source: "./media/characters/aronai-sieyes/slit.svg"
  19685. }
  19686. },
  19687. slitSpread: {
  19688. height: math.unit(0.9, "feet"),
  19689. name: "Slit (Spread)",
  19690. image: {
  19691. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19692. }
  19693. },
  19694. rump: {
  19695. height: math.unit(1.3, "feet"),
  19696. name: "Rump",
  19697. image: {
  19698. source: "./media/characters/aronai-sieyes/rump.svg"
  19699. }
  19700. },
  19701. maw: {
  19702. height: math.unit(1.25, "feet"),
  19703. name: "Maw",
  19704. image: {
  19705. source: "./media/characters/aronai-sieyes/maw.svg"
  19706. }
  19707. },
  19708. feral: {
  19709. height: math.unit(18, "feet"),
  19710. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19711. name: "Feral",
  19712. image: {
  19713. source: "./media/characters/aronai-sieyes/feral.svg",
  19714. extra: 1530 / 1240,
  19715. bottom: 0.035
  19716. }
  19717. },
  19718. },
  19719. [
  19720. {
  19721. name: "Micro",
  19722. height: math.unit(2, "inches")
  19723. },
  19724. {
  19725. name: "Normal",
  19726. height: math.unit(6 + 1 / 12, "feet"),
  19727. default: true
  19728. }
  19729. ]
  19730. ))
  19731. characterMakers.push(() => makeCharacter(
  19732. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19733. {
  19734. front: {
  19735. height: math.unit(12, "feet"),
  19736. weight: math.unit(410, "kg"),
  19737. name: "Front",
  19738. image: {
  19739. source: "./media/characters/xuna/front.svg",
  19740. extra: 2184 / 1980
  19741. }
  19742. },
  19743. side: {
  19744. height: math.unit(12, "feet"),
  19745. weight: math.unit(410, "kg"),
  19746. name: "Side",
  19747. image: {
  19748. source: "./media/characters/xuna/side.svg",
  19749. extra: 2184 / 1980
  19750. }
  19751. },
  19752. back: {
  19753. height: math.unit(12, "feet"),
  19754. weight: math.unit(410, "kg"),
  19755. name: "Back",
  19756. image: {
  19757. source: "./media/characters/xuna/back.svg",
  19758. extra: 2184 / 1980
  19759. }
  19760. },
  19761. },
  19762. [
  19763. {
  19764. name: "Nano glow",
  19765. height: math.unit(10, "nm")
  19766. },
  19767. {
  19768. name: "Micro floof",
  19769. height: math.unit(0.3, "m")
  19770. },
  19771. {
  19772. name: "Huggable softy boi",
  19773. height: math.unit(3.6576, "m"),
  19774. default: true
  19775. },
  19776. {
  19777. name: "Admirable floof",
  19778. height: math.unit(80, "meters")
  19779. },
  19780. {
  19781. name: "Gentle macro",
  19782. height: math.unit(300, "meters")
  19783. },
  19784. {
  19785. name: "Very careful floof",
  19786. height: math.unit(3200, "meters")
  19787. },
  19788. {
  19789. name: "The mega floof",
  19790. height: math.unit(36000, "meters")
  19791. },
  19792. {
  19793. name: "Giga-fur-Wicker",
  19794. height: math.unit(4800000, "meters")
  19795. },
  19796. {
  19797. name: "Licky world",
  19798. height: math.unit(20000000, "meters")
  19799. },
  19800. {
  19801. name: "Floofy cyan sun",
  19802. height: math.unit(1500000000, "meters")
  19803. },
  19804. {
  19805. name: "Milky Wicker",
  19806. height: math.unit(1000000000000000000000, "meters")
  19807. },
  19808. {
  19809. name: "The observing Wicker",
  19810. height: math.unit(999999999999999999999999999, "meters")
  19811. },
  19812. ]
  19813. ))
  19814. characterMakers.push(() => makeCharacter(
  19815. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19816. {
  19817. front: {
  19818. height: math.unit(5 + 9 / 12, "feet"),
  19819. weight: math.unit(150, "lb"),
  19820. name: "Front",
  19821. image: {
  19822. source: "./media/characters/arokha-sieyes/front.svg",
  19823. extra: 1425 / 1284,
  19824. bottom: 0.05
  19825. }
  19826. },
  19827. },
  19828. [
  19829. {
  19830. name: "Normal",
  19831. height: math.unit(5 + 9 / 12, "feet")
  19832. },
  19833. {
  19834. name: "Macro",
  19835. height: math.unit(30, "meters"),
  19836. default: true
  19837. },
  19838. ]
  19839. ))
  19840. characterMakers.push(() => makeCharacter(
  19841. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19842. {
  19843. front: {
  19844. height: math.unit(6, "feet"),
  19845. weight: math.unit(180, "lb"),
  19846. name: "Front",
  19847. image: {
  19848. source: "./media/characters/arokh-sieyes/front.svg",
  19849. extra: 1830 / 1769,
  19850. bottom: 0.01
  19851. }
  19852. },
  19853. },
  19854. [
  19855. {
  19856. name: "Normal",
  19857. height: math.unit(6, "feet")
  19858. },
  19859. {
  19860. name: "Macro",
  19861. height: math.unit(30, "meters"),
  19862. default: true
  19863. },
  19864. ]
  19865. ))
  19866. characterMakers.push(() => makeCharacter(
  19867. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19868. {
  19869. side: {
  19870. height: math.unit(13 + 1 / 12, "feet"),
  19871. weight: math.unit(8.5, "tonnes"),
  19872. name: "Side",
  19873. image: {
  19874. source: "./media/characters/goldeneye/side.svg",
  19875. extra: 1182 / 778,
  19876. bottom: 0.067
  19877. }
  19878. },
  19879. paw: {
  19880. height: math.unit(3.4, "feet"),
  19881. name: "Paw",
  19882. image: {
  19883. source: "./media/characters/goldeneye/paw.svg"
  19884. }
  19885. },
  19886. },
  19887. [
  19888. {
  19889. name: "Normal",
  19890. height: math.unit(13 + 1 / 12, "feet"),
  19891. default: true
  19892. },
  19893. ]
  19894. ))
  19895. characterMakers.push(() => makeCharacter(
  19896. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19897. {
  19898. front: {
  19899. height: math.unit(6 + 1 / 12, "feet"),
  19900. weight: math.unit(210, "lb"),
  19901. name: "Front",
  19902. image: {
  19903. source: "./media/characters/leonardo-lycheborne/front.svg",
  19904. extra: 776/723,
  19905. bottom: 34/810
  19906. }
  19907. },
  19908. side: {
  19909. height: math.unit(6 + 1 / 12, "feet"),
  19910. weight: math.unit(210, "lb"),
  19911. name: "Side",
  19912. image: {
  19913. source: "./media/characters/leonardo-lycheborne/side.svg",
  19914. extra: 780/728,
  19915. bottom: 12/792
  19916. }
  19917. },
  19918. back: {
  19919. height: math.unit(6 + 1 / 12, "feet"),
  19920. weight: math.unit(210, "lb"),
  19921. name: "Back",
  19922. image: {
  19923. source: "./media/characters/leonardo-lycheborne/back.svg",
  19924. extra: 775/721,
  19925. bottom: 17/792
  19926. }
  19927. },
  19928. hand: {
  19929. height: math.unit(1.08, "feet"),
  19930. name: "Hand",
  19931. image: {
  19932. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19933. }
  19934. },
  19935. foot: {
  19936. height: math.unit(1.32, "feet"),
  19937. name: "Foot",
  19938. image: {
  19939. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19940. }
  19941. },
  19942. maw: {
  19943. height: math.unit(1, "feet"),
  19944. name: "Maw",
  19945. image: {
  19946. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19947. }
  19948. },
  19949. were: {
  19950. height: math.unit(20, "feet"),
  19951. weight: math.unit(7800, "lb"),
  19952. name: "Were",
  19953. image: {
  19954. source: "./media/characters/leonardo-lycheborne/were.svg",
  19955. extra: 1224/1165,
  19956. bottom: 72/1296
  19957. }
  19958. },
  19959. feral: {
  19960. height: math.unit(7.5, "feet"),
  19961. weight: math.unit(600, "lb"),
  19962. name: "Feral",
  19963. image: {
  19964. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19965. extra: 797/702,
  19966. bottom: 139/936
  19967. }
  19968. },
  19969. taur: {
  19970. height: math.unit(11, "feet"),
  19971. weight: math.unit(3300, "lb"),
  19972. name: "Taur",
  19973. image: {
  19974. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19975. extra: 1271/1197,
  19976. bottom: 47/1318
  19977. }
  19978. },
  19979. barghest: {
  19980. height: math.unit(11, "feet"),
  19981. weight: math.unit(1300, "lb"),
  19982. name: "Barghest",
  19983. image: {
  19984. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19985. extra: 1291/1204,
  19986. bottom: 37/1328
  19987. }
  19988. },
  19989. dick: {
  19990. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19991. name: "Dick",
  19992. image: {
  19993. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19994. }
  19995. },
  19996. dickWere: {
  19997. height: math.unit((20) / 3.8, "feet"),
  19998. name: "Dick (Were)",
  19999. image: {
  20000. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20001. }
  20002. },
  20003. },
  20004. [
  20005. {
  20006. name: "Normal",
  20007. height: math.unit(6 + 1 / 12, "feet"),
  20008. default: true
  20009. },
  20010. ]
  20011. ))
  20012. characterMakers.push(() => makeCharacter(
  20013. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20014. {
  20015. front: {
  20016. height: math.unit(10, "feet"),
  20017. weight: math.unit(350, "lb"),
  20018. name: "Front",
  20019. image: {
  20020. source: "./media/characters/jet/front.svg",
  20021. extra: 2050 / 1980,
  20022. bottom: 0.013
  20023. }
  20024. },
  20025. back: {
  20026. height: math.unit(10, "feet"),
  20027. weight: math.unit(350, "lb"),
  20028. name: "Back",
  20029. image: {
  20030. source: "./media/characters/jet/back.svg",
  20031. extra: 2050 / 1980,
  20032. bottom: 0.013
  20033. }
  20034. },
  20035. },
  20036. [
  20037. {
  20038. name: "Micro",
  20039. height: math.unit(6, "inches")
  20040. },
  20041. {
  20042. name: "Normal",
  20043. height: math.unit(10, "feet"),
  20044. default: true
  20045. },
  20046. {
  20047. name: "Macro",
  20048. height: math.unit(100, "feet")
  20049. },
  20050. ]
  20051. ))
  20052. characterMakers.push(() => makeCharacter(
  20053. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20054. {
  20055. front: {
  20056. height: math.unit(15, "feet"),
  20057. weight: math.unit(2800, "lb"),
  20058. name: "Front",
  20059. image: {
  20060. source: "./media/characters/tanarath/front.svg",
  20061. extra: 2392 / 2220,
  20062. bottom: 0.03
  20063. }
  20064. },
  20065. back: {
  20066. height: math.unit(15, "feet"),
  20067. weight: math.unit(2800, "lb"),
  20068. name: "Back",
  20069. image: {
  20070. source: "./media/characters/tanarath/back.svg",
  20071. extra: 2392 / 2220,
  20072. bottom: 0.03
  20073. }
  20074. },
  20075. },
  20076. [
  20077. {
  20078. name: "Normal",
  20079. height: math.unit(15, "feet"),
  20080. default: true
  20081. },
  20082. ]
  20083. ))
  20084. characterMakers.push(() => makeCharacter(
  20085. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20086. {
  20087. front: {
  20088. height: math.unit(7 + 1 / 12, "feet"),
  20089. weight: math.unit(175, "lb"),
  20090. name: "Front",
  20091. image: {
  20092. source: "./media/characters/patty-cattybatty/front.svg",
  20093. extra: 908 / 874,
  20094. bottom: 0.025
  20095. }
  20096. },
  20097. },
  20098. [
  20099. {
  20100. name: "Micro",
  20101. height: math.unit(1, "inch")
  20102. },
  20103. {
  20104. name: "Normal",
  20105. height: math.unit(7 + 1 / 12, "feet")
  20106. },
  20107. {
  20108. name: "Mini Macro",
  20109. height: math.unit(155, "feet")
  20110. },
  20111. {
  20112. name: "Macro",
  20113. height: math.unit(1077, "feet")
  20114. },
  20115. {
  20116. name: "Mega Macro",
  20117. height: math.unit(47650, "feet"),
  20118. default: true
  20119. },
  20120. {
  20121. name: "Giga Macro",
  20122. height: math.unit(440, "miles")
  20123. },
  20124. {
  20125. name: "Tera Macro",
  20126. height: math.unit(8700, "miles")
  20127. },
  20128. {
  20129. name: "Planetary Macro",
  20130. height: math.unit(32700, "miles")
  20131. },
  20132. {
  20133. name: "Solar Macro",
  20134. height: math.unit(550000, "miles")
  20135. },
  20136. {
  20137. name: "Celestial Macro",
  20138. height: math.unit(2.5, "AU")
  20139. },
  20140. ]
  20141. ))
  20142. characterMakers.push(() => makeCharacter(
  20143. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20144. {
  20145. front: {
  20146. height: math.unit(4 + 5 / 12, "feet"),
  20147. weight: math.unit(90, "lb"),
  20148. name: "Front",
  20149. image: {
  20150. source: "./media/characters/cappu/front.svg",
  20151. extra: 1247 / 1152,
  20152. bottom: 0.012
  20153. }
  20154. },
  20155. },
  20156. [
  20157. {
  20158. name: "Normal",
  20159. height: math.unit(4 + 5 / 12, "feet"),
  20160. default: true
  20161. },
  20162. ]
  20163. ))
  20164. characterMakers.push(() => makeCharacter(
  20165. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20166. {
  20167. frontDressed: {
  20168. height: math.unit(70, "cm"),
  20169. weight: math.unit(6, "kg"),
  20170. name: "Front (Dressed)",
  20171. image: {
  20172. source: "./media/characters/sebi/front-dressed.svg",
  20173. extra: 713.5 / 686.5,
  20174. bottom: 0.003
  20175. }
  20176. },
  20177. front: {
  20178. height: math.unit(70, "cm"),
  20179. weight: math.unit(5, "kg"),
  20180. name: "Front",
  20181. image: {
  20182. source: "./media/characters/sebi/front.svg",
  20183. extra: 713.5 / 686.5,
  20184. bottom: 0.003
  20185. }
  20186. }
  20187. },
  20188. [
  20189. {
  20190. name: "Normal",
  20191. height: math.unit(70, "cm"),
  20192. default: true
  20193. },
  20194. {
  20195. name: "Macro",
  20196. height: math.unit(8, "meters")
  20197. },
  20198. ]
  20199. ))
  20200. characterMakers.push(() => makeCharacter(
  20201. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20202. {
  20203. front: {
  20204. height: math.unit(6, "feet"),
  20205. weight: math.unit(150, "lb"),
  20206. name: "Front",
  20207. image: {
  20208. source: "./media/characters/typhek/front.svg",
  20209. extra: 1948 / 1929,
  20210. bottom: 0.025
  20211. }
  20212. },
  20213. side: {
  20214. height: math.unit(6, "feet"),
  20215. weight: math.unit(150, "lb"),
  20216. name: "Side",
  20217. image: {
  20218. source: "./media/characters/typhek/side.svg",
  20219. extra: 2034 / 2010,
  20220. bottom: 0.003
  20221. }
  20222. },
  20223. back: {
  20224. height: math.unit(6, "feet"),
  20225. weight: math.unit(150, "lb"),
  20226. name: "Back",
  20227. image: {
  20228. source: "./media/characters/typhek/back.svg",
  20229. extra: 2005 / 1978,
  20230. bottom: 0.004
  20231. }
  20232. },
  20233. palm: {
  20234. height: math.unit(1.2, "feet"),
  20235. name: "Palm",
  20236. image: {
  20237. source: "./media/characters/typhek/palm.svg"
  20238. }
  20239. },
  20240. fist: {
  20241. height: math.unit(1.1, "feet"),
  20242. name: "Fist",
  20243. image: {
  20244. source: "./media/characters/typhek/fist.svg"
  20245. }
  20246. },
  20247. foot: {
  20248. height: math.unit(1.57, "feet"),
  20249. name: "Foot",
  20250. image: {
  20251. source: "./media/characters/typhek/foot.svg"
  20252. }
  20253. },
  20254. sole: {
  20255. height: math.unit(2.05, "feet"),
  20256. name: "Sole",
  20257. image: {
  20258. source: "./media/characters/typhek/sole.svg"
  20259. }
  20260. },
  20261. },
  20262. [
  20263. {
  20264. name: "Macro",
  20265. height: math.unit(40, "stories"),
  20266. default: true
  20267. },
  20268. {
  20269. name: "Megamacro",
  20270. height: math.unit(1, "mile")
  20271. },
  20272. {
  20273. name: "Gigamacro",
  20274. height: math.unit(4000, "solarradii")
  20275. },
  20276. {
  20277. name: "Universal",
  20278. height: math.unit(1.1, "universes")
  20279. }
  20280. ]
  20281. ))
  20282. characterMakers.push(() => makeCharacter(
  20283. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20284. {
  20285. side: {
  20286. height: math.unit(5 + 7 / 12, "feet"),
  20287. weight: math.unit(150, "lb"),
  20288. name: "Side",
  20289. image: {
  20290. source: "./media/characters/kassy/side.svg",
  20291. extra: 1280 / 1225,
  20292. bottom: 0.002
  20293. }
  20294. },
  20295. front: {
  20296. height: math.unit(5 + 7 / 12, "feet"),
  20297. weight: math.unit(150, "lb"),
  20298. name: "Front",
  20299. image: {
  20300. source: "./media/characters/kassy/front.svg",
  20301. extra: 1280 / 1225,
  20302. bottom: 0.025
  20303. }
  20304. },
  20305. back: {
  20306. height: math.unit(5 + 7 / 12, "feet"),
  20307. weight: math.unit(150, "lb"),
  20308. name: "Back",
  20309. image: {
  20310. source: "./media/characters/kassy/back.svg",
  20311. extra: 1280 / 1225,
  20312. bottom: 0.002
  20313. }
  20314. },
  20315. foot: {
  20316. height: math.unit(1.266, "feet"),
  20317. name: "Foot",
  20318. image: {
  20319. source: "./media/characters/kassy/foot.svg"
  20320. }
  20321. },
  20322. },
  20323. [
  20324. {
  20325. name: "Normal",
  20326. height: math.unit(5 + 7 / 12, "feet")
  20327. },
  20328. {
  20329. name: "Macro",
  20330. height: math.unit(137, "feet"),
  20331. default: true
  20332. },
  20333. {
  20334. name: "Megamacro",
  20335. height: math.unit(1, "mile")
  20336. },
  20337. ]
  20338. ))
  20339. characterMakers.push(() => makeCharacter(
  20340. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20341. {
  20342. front: {
  20343. height: math.unit(6 + 1 / 12, "feet"),
  20344. weight: math.unit(200, "lb"),
  20345. name: "Front",
  20346. image: {
  20347. source: "./media/characters/neil/front.svg",
  20348. extra: 1326 / 1250,
  20349. bottom: 0.023
  20350. }
  20351. },
  20352. },
  20353. [
  20354. {
  20355. name: "Normal",
  20356. height: math.unit(6 + 1 / 12, "feet"),
  20357. default: true
  20358. },
  20359. {
  20360. name: "Macro",
  20361. height: math.unit(200, "feet")
  20362. },
  20363. ]
  20364. ))
  20365. characterMakers.push(() => makeCharacter(
  20366. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20367. {
  20368. front: {
  20369. height: math.unit(5 + 9 / 12, "feet"),
  20370. weight: math.unit(190, "lb"),
  20371. name: "Front",
  20372. image: {
  20373. source: "./media/characters/atticus/front.svg",
  20374. extra: 2934 / 2785,
  20375. bottom: 0.025
  20376. }
  20377. },
  20378. },
  20379. [
  20380. {
  20381. name: "Normal",
  20382. height: math.unit(5 + 9 / 12, "feet"),
  20383. default: true
  20384. },
  20385. {
  20386. name: "Macro",
  20387. height: math.unit(180, "feet")
  20388. },
  20389. ]
  20390. ))
  20391. characterMakers.push(() => makeCharacter(
  20392. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20393. {
  20394. side: {
  20395. height: math.unit(9, "feet"),
  20396. weight: math.unit(650, "lb"),
  20397. name: "Side",
  20398. image: {
  20399. source: "./media/characters/milo/side.svg",
  20400. extra: 2644 / 2310,
  20401. bottom: 0.032
  20402. }
  20403. },
  20404. },
  20405. [
  20406. {
  20407. name: "Normal",
  20408. height: math.unit(9, "feet"),
  20409. default: true
  20410. },
  20411. {
  20412. name: "Macro",
  20413. height: math.unit(300, "feet")
  20414. },
  20415. ]
  20416. ))
  20417. characterMakers.push(() => makeCharacter(
  20418. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20419. {
  20420. side: {
  20421. height: math.unit(8, "meters"),
  20422. weight: math.unit(90000, "kg"),
  20423. name: "Side",
  20424. image: {
  20425. source: "./media/characters/ijzer/side.svg",
  20426. extra: 2756 / 1600,
  20427. bottom: 0.01
  20428. }
  20429. },
  20430. },
  20431. [
  20432. {
  20433. name: "Small",
  20434. height: math.unit(3, "meters")
  20435. },
  20436. {
  20437. name: "Normal",
  20438. height: math.unit(8, "meters"),
  20439. default: true
  20440. },
  20441. {
  20442. name: "Normal+",
  20443. height: math.unit(10, "meters")
  20444. },
  20445. {
  20446. name: "Bigger",
  20447. height: math.unit(24, "meters")
  20448. },
  20449. {
  20450. name: "Huge",
  20451. height: math.unit(80, "meters")
  20452. },
  20453. ]
  20454. ))
  20455. characterMakers.push(() => makeCharacter(
  20456. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20457. {
  20458. front: {
  20459. height: math.unit(6 + 2 / 12, "feet"),
  20460. weight: math.unit(153, "lb"),
  20461. name: "Front",
  20462. image: {
  20463. source: "./media/characters/luca-cervicum/front.svg",
  20464. extra: 370 / 327,
  20465. bottom: 0.015
  20466. }
  20467. },
  20468. back: {
  20469. height: math.unit(6 + 2 / 12, "feet"),
  20470. weight: math.unit(153, "lb"),
  20471. name: "Back",
  20472. image: {
  20473. source: "./media/characters/luca-cervicum/back.svg",
  20474. extra: 367 / 333,
  20475. bottom: 0.005
  20476. }
  20477. },
  20478. frontGear: {
  20479. height: math.unit(6 + 2 / 12, "feet"),
  20480. weight: math.unit(173, "lb"),
  20481. name: "Front (Gear)",
  20482. image: {
  20483. source: "./media/characters/luca-cervicum/front-gear.svg",
  20484. extra: 377 / 333,
  20485. bottom: 0.006
  20486. }
  20487. },
  20488. },
  20489. [
  20490. {
  20491. name: "Normal",
  20492. height: math.unit(6 + 2 / 12, "feet"),
  20493. default: true
  20494. },
  20495. ]
  20496. ))
  20497. characterMakers.push(() => makeCharacter(
  20498. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20499. {
  20500. front: {
  20501. height: math.unit(6 + 1 / 12, "feet"),
  20502. weight: math.unit(304, "lb"),
  20503. name: "Front",
  20504. image: {
  20505. source: "./media/characters/oliver/front.svg",
  20506. extra: 157 / 143,
  20507. bottom: 0.08
  20508. }
  20509. },
  20510. },
  20511. [
  20512. {
  20513. name: "Normal",
  20514. height: math.unit(6 + 1 / 12, "feet"),
  20515. default: true
  20516. },
  20517. ]
  20518. ))
  20519. characterMakers.push(() => makeCharacter(
  20520. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20521. {
  20522. front: {
  20523. height: math.unit(5 + 7 / 12, "feet"),
  20524. weight: math.unit(140, "lb"),
  20525. name: "Front",
  20526. image: {
  20527. source: "./media/characters/shane/front.svg",
  20528. extra: 304 / 289,
  20529. bottom: 0.005
  20530. }
  20531. },
  20532. },
  20533. [
  20534. {
  20535. name: "Normal",
  20536. height: math.unit(5 + 7 / 12, "feet"),
  20537. default: true
  20538. },
  20539. ]
  20540. ))
  20541. characterMakers.push(() => makeCharacter(
  20542. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20543. {
  20544. front: {
  20545. height: math.unit(5 + 9 / 12, "feet"),
  20546. weight: math.unit(178, "lb"),
  20547. name: "Front",
  20548. image: {
  20549. source: "./media/characters/shin/front.svg",
  20550. extra: 159 / 151,
  20551. bottom: 0.015
  20552. }
  20553. },
  20554. },
  20555. [
  20556. {
  20557. name: "Normal",
  20558. height: math.unit(5 + 9 / 12, "feet"),
  20559. default: true
  20560. },
  20561. ]
  20562. ))
  20563. characterMakers.push(() => makeCharacter(
  20564. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20565. {
  20566. front: {
  20567. height: math.unit(5 + 10 / 12, "feet"),
  20568. weight: math.unit(168, "lb"),
  20569. name: "Front",
  20570. image: {
  20571. source: "./media/characters/xerxes/front.svg",
  20572. extra: 282 / 260,
  20573. bottom: 0.045
  20574. }
  20575. },
  20576. },
  20577. [
  20578. {
  20579. name: "Normal",
  20580. height: math.unit(5 + 10 / 12, "feet"),
  20581. default: true
  20582. },
  20583. ]
  20584. ))
  20585. characterMakers.push(() => makeCharacter(
  20586. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20587. {
  20588. front: {
  20589. height: math.unit(6 + 7 / 12, "feet"),
  20590. weight: math.unit(208, "lb"),
  20591. name: "Front",
  20592. image: {
  20593. source: "./media/characters/chaska/front.svg",
  20594. extra: 332 / 319,
  20595. bottom: 0.015
  20596. }
  20597. },
  20598. },
  20599. [
  20600. {
  20601. name: "Normal",
  20602. height: math.unit(6 + 7 / 12, "feet"),
  20603. default: true
  20604. },
  20605. ]
  20606. ))
  20607. characterMakers.push(() => makeCharacter(
  20608. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20609. {
  20610. front: {
  20611. height: math.unit(5 + 8 / 12, "feet"),
  20612. weight: math.unit(208, "lb"),
  20613. name: "Front",
  20614. image: {
  20615. source: "./media/characters/enuk/front.svg",
  20616. extra: 437 / 406,
  20617. bottom: 0.02
  20618. }
  20619. },
  20620. },
  20621. [
  20622. {
  20623. name: "Normal",
  20624. height: math.unit(5 + 8 / 12, "feet"),
  20625. default: true
  20626. },
  20627. ]
  20628. ))
  20629. characterMakers.push(() => makeCharacter(
  20630. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20631. {
  20632. front: {
  20633. height: math.unit(5 + 10 / 12, "feet"),
  20634. weight: math.unit(252, "lb"),
  20635. name: "Front",
  20636. image: {
  20637. source: "./media/characters/bruun/front.svg",
  20638. extra: 197 / 187,
  20639. bottom: 0.012
  20640. }
  20641. },
  20642. },
  20643. [
  20644. {
  20645. name: "Normal",
  20646. height: math.unit(5 + 10 / 12, "feet"),
  20647. default: true
  20648. },
  20649. ]
  20650. ))
  20651. characterMakers.push(() => makeCharacter(
  20652. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20653. {
  20654. front: {
  20655. height: math.unit(6 + 10 / 12, "feet"),
  20656. weight: math.unit(255, "lb"),
  20657. name: "Front",
  20658. image: {
  20659. source: "./media/characters/alexeev/front.svg",
  20660. extra: 213 / 200,
  20661. bottom: 0.05
  20662. }
  20663. },
  20664. },
  20665. [
  20666. {
  20667. name: "Normal",
  20668. height: math.unit(6 + 10 / 12, "feet"),
  20669. default: true
  20670. },
  20671. ]
  20672. ))
  20673. characterMakers.push(() => makeCharacter(
  20674. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20675. {
  20676. front: {
  20677. height: math.unit(2 + 8 / 12, "feet"),
  20678. weight: math.unit(22, "lb"),
  20679. name: "Front",
  20680. image: {
  20681. source: "./media/characters/evelyn/front.svg",
  20682. extra: 208 / 180
  20683. }
  20684. },
  20685. },
  20686. [
  20687. {
  20688. name: "Normal",
  20689. height: math.unit(2 + 8 / 12, "feet"),
  20690. default: true
  20691. },
  20692. ]
  20693. ))
  20694. characterMakers.push(() => makeCharacter(
  20695. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20696. {
  20697. front: {
  20698. height: math.unit(5 + 9 / 12, "feet"),
  20699. weight: math.unit(139, "lb"),
  20700. name: "Front",
  20701. image: {
  20702. source: "./media/characters/inca/front.svg",
  20703. extra: 294 / 291,
  20704. bottom: 0.03
  20705. }
  20706. },
  20707. },
  20708. [
  20709. {
  20710. name: "Normal",
  20711. height: math.unit(5 + 9 / 12, "feet"),
  20712. default: true
  20713. },
  20714. ]
  20715. ))
  20716. characterMakers.push(() => makeCharacter(
  20717. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20718. {
  20719. front: {
  20720. height: math.unit(6 + 3 / 12, "feet"),
  20721. weight: math.unit(185, "lb"),
  20722. name: "Front",
  20723. image: {
  20724. source: "./media/characters/mera/front.svg",
  20725. extra: 291 / 277,
  20726. bottom: 0.03
  20727. }
  20728. },
  20729. },
  20730. [
  20731. {
  20732. name: "Normal",
  20733. height: math.unit(6 + 3 / 12, "feet"),
  20734. default: true
  20735. },
  20736. ]
  20737. ))
  20738. characterMakers.push(() => makeCharacter(
  20739. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20740. {
  20741. front: {
  20742. height: math.unit(6 + 7 / 12, "feet"),
  20743. weight: math.unit(160, "lb"),
  20744. name: "Front",
  20745. image: {
  20746. source: "./media/characters/ceres/front.svg",
  20747. extra: 1023 / 950,
  20748. bottom: 0.027
  20749. }
  20750. },
  20751. back: {
  20752. height: math.unit(6 + 7 / 12, "feet"),
  20753. weight: math.unit(160, "lb"),
  20754. name: "Back",
  20755. image: {
  20756. source: "./media/characters/ceres/back.svg",
  20757. extra: 1023 / 950
  20758. }
  20759. },
  20760. },
  20761. [
  20762. {
  20763. name: "Normal",
  20764. height: math.unit(6 + 7 / 12, "feet"),
  20765. default: true
  20766. },
  20767. ]
  20768. ))
  20769. characterMakers.push(() => makeCharacter(
  20770. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20771. {
  20772. front: {
  20773. height: math.unit(5 + 10 / 12, "feet"),
  20774. weight: math.unit(150, "lb"),
  20775. name: "Front",
  20776. image: {
  20777. source: "./media/characters/kris/front.svg",
  20778. extra: 885 / 803,
  20779. bottom: 0.03
  20780. }
  20781. },
  20782. },
  20783. [
  20784. {
  20785. name: "Normal",
  20786. height: math.unit(5 + 10 / 12, "feet"),
  20787. default: true
  20788. },
  20789. ]
  20790. ))
  20791. characterMakers.push(() => makeCharacter(
  20792. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20793. {
  20794. front: {
  20795. height: math.unit(7, "feet"),
  20796. weight: math.unit(120, "kg"),
  20797. name: "Front",
  20798. image: {
  20799. source: "./media/characters/taluthus/front.svg",
  20800. extra: 903 / 833,
  20801. bottom: 0.015
  20802. }
  20803. },
  20804. },
  20805. [
  20806. {
  20807. name: "Normal",
  20808. height: math.unit(7, "feet"),
  20809. default: true
  20810. },
  20811. {
  20812. name: "Macro",
  20813. height: math.unit(300, "feet")
  20814. },
  20815. ]
  20816. ))
  20817. characterMakers.push(() => makeCharacter(
  20818. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20819. {
  20820. front: {
  20821. height: math.unit(5 + 9 / 12, "feet"),
  20822. weight: math.unit(145, "lb"),
  20823. name: "Front",
  20824. image: {
  20825. source: "./media/characters/dawn/front.svg",
  20826. extra: 2094 / 2016,
  20827. bottom: 0.025
  20828. }
  20829. },
  20830. back: {
  20831. height: math.unit(5 + 9 / 12, "feet"),
  20832. weight: math.unit(160, "lb"),
  20833. name: "Back",
  20834. image: {
  20835. source: "./media/characters/dawn/back.svg",
  20836. extra: 2112 / 2080,
  20837. bottom: 0.005
  20838. }
  20839. },
  20840. },
  20841. [
  20842. {
  20843. name: "Normal",
  20844. height: math.unit(6 + 7 / 12, "feet"),
  20845. default: true
  20846. },
  20847. ]
  20848. ))
  20849. characterMakers.push(() => makeCharacter(
  20850. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20851. {
  20852. anthro: {
  20853. height: math.unit(8 + 3 / 12, "feet"),
  20854. weight: math.unit(450, "lb"),
  20855. name: "Anthro",
  20856. image: {
  20857. source: "./media/characters/arador/anthro.svg",
  20858. extra: 1835 / 1718,
  20859. bottom: 0.025
  20860. }
  20861. },
  20862. feral: {
  20863. height: math.unit(4, "feet"),
  20864. weight: math.unit(200, "lb"),
  20865. name: "Feral",
  20866. image: {
  20867. source: "./media/characters/arador/feral.svg",
  20868. extra: 1683 / 1514,
  20869. bottom: 0.07
  20870. }
  20871. },
  20872. },
  20873. [
  20874. {
  20875. name: "Normal",
  20876. height: math.unit(8 + 3 / 12, "feet")
  20877. },
  20878. {
  20879. name: "Macro",
  20880. height: math.unit(82.5, "feet"),
  20881. default: true
  20882. },
  20883. ]
  20884. ))
  20885. characterMakers.push(() => makeCharacter(
  20886. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20887. {
  20888. front: {
  20889. height: math.unit(5 + 10 / 12, "feet"),
  20890. weight: math.unit(125, "lb"),
  20891. name: "Front",
  20892. image: {
  20893. source: "./media/characters/dharsi/front.svg",
  20894. extra: 716 / 630,
  20895. bottom: 0.035
  20896. }
  20897. },
  20898. },
  20899. [
  20900. {
  20901. name: "Nano",
  20902. height: math.unit(100, "nm")
  20903. },
  20904. {
  20905. name: "Micro",
  20906. height: math.unit(2, "inches")
  20907. },
  20908. {
  20909. name: "Normal",
  20910. height: math.unit(5 + 10 / 12, "feet"),
  20911. default: true
  20912. },
  20913. {
  20914. name: "Macro",
  20915. height: math.unit(1000, "feet")
  20916. },
  20917. {
  20918. name: "Megamacro",
  20919. height: math.unit(10, "miles")
  20920. },
  20921. {
  20922. name: "Gigamacro",
  20923. height: math.unit(3000, "miles")
  20924. },
  20925. {
  20926. name: "Teramacro",
  20927. height: math.unit(500000, "miles")
  20928. },
  20929. {
  20930. name: "Teramacro+",
  20931. height: math.unit(30, "galaxies")
  20932. },
  20933. ]
  20934. ))
  20935. characterMakers.push(() => makeCharacter(
  20936. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20937. {
  20938. front: {
  20939. height: math.unit(6, "feet"),
  20940. weight: math.unit(150, "lb"),
  20941. name: "Front",
  20942. image: {
  20943. source: "./media/characters/deathy/front.svg",
  20944. extra: 1552 / 1463,
  20945. bottom: 0.025
  20946. }
  20947. },
  20948. side: {
  20949. height: math.unit(6, "feet"),
  20950. weight: math.unit(150, "lb"),
  20951. name: "Side",
  20952. image: {
  20953. source: "./media/characters/deathy/side.svg",
  20954. extra: 1604 / 1455,
  20955. bottom: 0.025
  20956. }
  20957. },
  20958. back: {
  20959. height: math.unit(6, "feet"),
  20960. weight: math.unit(150, "lb"),
  20961. name: "Back",
  20962. image: {
  20963. source: "./media/characters/deathy/back.svg",
  20964. extra: 1580 / 1463,
  20965. bottom: 0.005
  20966. }
  20967. },
  20968. },
  20969. [
  20970. {
  20971. name: "Micro",
  20972. height: math.unit(5, "millimeters")
  20973. },
  20974. {
  20975. name: "Normal",
  20976. height: math.unit(6 + 5 / 12, "feet"),
  20977. default: true
  20978. },
  20979. ]
  20980. ))
  20981. characterMakers.push(() => makeCharacter(
  20982. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20983. {
  20984. front: {
  20985. height: math.unit(16, "feet"),
  20986. weight: math.unit(4000, "lb"),
  20987. name: "Front",
  20988. image: {
  20989. source: "./media/characters/juniper/front.svg",
  20990. bottom: 0.04
  20991. }
  20992. },
  20993. },
  20994. [
  20995. {
  20996. name: "Normal",
  20997. height: math.unit(16, "feet"),
  20998. default: true
  20999. },
  21000. ]
  21001. ))
  21002. characterMakers.push(() => makeCharacter(
  21003. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21004. {
  21005. front: {
  21006. height: math.unit(6, "feet"),
  21007. weight: math.unit(150, "lb"),
  21008. name: "Front",
  21009. image: {
  21010. source: "./media/characters/hipster/front.svg",
  21011. extra: 1312 / 1209,
  21012. bottom: 0.025
  21013. }
  21014. },
  21015. back: {
  21016. height: math.unit(6, "feet"),
  21017. weight: math.unit(150, "lb"),
  21018. name: "Back",
  21019. image: {
  21020. source: "./media/characters/hipster/back.svg",
  21021. extra: 1281 / 1196,
  21022. bottom: 0.01
  21023. }
  21024. },
  21025. },
  21026. [
  21027. {
  21028. name: "Micro",
  21029. height: math.unit(1, "mm")
  21030. },
  21031. {
  21032. name: "Normal",
  21033. height: math.unit(4, "inches"),
  21034. default: true
  21035. },
  21036. {
  21037. name: "Macro",
  21038. height: math.unit(500, "feet")
  21039. },
  21040. {
  21041. name: "Megamacro",
  21042. height: math.unit(1000, "miles")
  21043. },
  21044. ]
  21045. ))
  21046. characterMakers.push(() => makeCharacter(
  21047. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21048. {
  21049. front: {
  21050. height: math.unit(6, "feet"),
  21051. weight: math.unit(150, "lb"),
  21052. name: "Front",
  21053. image: {
  21054. source: "./media/characters/tendirmuldr/front.svg",
  21055. extra: 1878 / 1772,
  21056. bottom: 0.015
  21057. }
  21058. },
  21059. },
  21060. [
  21061. {
  21062. name: "Megamacro",
  21063. height: math.unit(1500, "miles"),
  21064. default: true
  21065. },
  21066. ]
  21067. ))
  21068. characterMakers.push(() => makeCharacter(
  21069. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21070. {
  21071. front: {
  21072. height: math.unit(14, "feet"),
  21073. weight: math.unit(12000, "lb"),
  21074. name: "Front",
  21075. image: {
  21076. source: "./media/characters/mort/front.svg",
  21077. extra: 365 / 318,
  21078. bottom: 0.01
  21079. }
  21080. },
  21081. side: {
  21082. height: math.unit(14, "feet"),
  21083. weight: math.unit(12000, "lb"),
  21084. name: "Side",
  21085. image: {
  21086. source: "./media/characters/mort/side.svg",
  21087. extra: 365 / 318,
  21088. bottom: 0.052
  21089. },
  21090. default: true
  21091. },
  21092. back: {
  21093. height: math.unit(14, "feet"),
  21094. weight: math.unit(12000, "lb"),
  21095. name: "Back",
  21096. image: {
  21097. source: "./media/characters/mort/back.svg",
  21098. extra: 371 / 332,
  21099. bottom: 0.18
  21100. }
  21101. },
  21102. },
  21103. [
  21104. {
  21105. name: "Normal",
  21106. height: math.unit(14, "feet"),
  21107. default: true
  21108. },
  21109. ]
  21110. ))
  21111. characterMakers.push(() => makeCharacter(
  21112. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21113. {
  21114. front: {
  21115. height: math.unit(8, "feet"),
  21116. weight: math.unit(1, "ton"),
  21117. name: "Front",
  21118. image: {
  21119. source: "./media/characters/lycoa/front.svg",
  21120. extra: 1836/1728,
  21121. bottom: 81/1917
  21122. }
  21123. },
  21124. back: {
  21125. height: math.unit(8, "feet"),
  21126. weight: math.unit(1, "ton"),
  21127. name: "Back",
  21128. image: {
  21129. source: "./media/characters/lycoa/back.svg",
  21130. extra: 1785/1720,
  21131. bottom: 91/1876
  21132. }
  21133. },
  21134. head: {
  21135. height: math.unit(1.6243, "feet"),
  21136. name: "Head",
  21137. image: {
  21138. source: "./media/characters/lycoa/head.svg",
  21139. extra: 1011/782,
  21140. bottom: 0/1011
  21141. }
  21142. },
  21143. tailmaw: {
  21144. height: math.unit(1.9, "feet"),
  21145. name: "Tailmaw",
  21146. image: {
  21147. source: "./media/characters/lycoa/tailmaw.svg"
  21148. }
  21149. },
  21150. tentacles: {
  21151. height: math.unit(2.1, "feet"),
  21152. name: "Tentacles",
  21153. image: {
  21154. source: "./media/characters/lycoa/tentacles.svg"
  21155. }
  21156. },
  21157. dick: {
  21158. height: math.unit(1.73, "feet"),
  21159. name: "Dick",
  21160. image: {
  21161. source: "./media/characters/lycoa/dick.svg"
  21162. }
  21163. },
  21164. },
  21165. [
  21166. {
  21167. name: "Normal",
  21168. height: math.unit(8, "feet"),
  21169. default: true
  21170. },
  21171. {
  21172. name: "Macro",
  21173. height: math.unit(30, "feet")
  21174. },
  21175. ]
  21176. ))
  21177. characterMakers.push(() => makeCharacter(
  21178. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21179. {
  21180. front: {
  21181. height: math.unit(4 + 2 / 12, "feet"),
  21182. weight: math.unit(70, "lb"),
  21183. name: "Front",
  21184. image: {
  21185. source: "./media/characters/naldara/front.svg",
  21186. extra: 1664/1387,
  21187. bottom: 81/1745
  21188. },
  21189. form: "anthro",
  21190. default: true
  21191. },
  21192. naga: {
  21193. height: math.unit(20, "feet"),
  21194. weight: math.unit(15000, "kg"),
  21195. name: "Front",
  21196. image: {
  21197. source: "./media/characters/naldara/naga.svg",
  21198. extra: 1590/1396,
  21199. bottom: 285/1875
  21200. },
  21201. form: "naga",
  21202. default: true
  21203. },
  21204. },
  21205. [
  21206. {
  21207. name: "Normal",
  21208. height: math.unit(4 + 2 / 12, "feet"),
  21209. form: "anthro",
  21210. default: true
  21211. },
  21212. {
  21213. name: "Normal",
  21214. height: math.unit(20, "feet"),
  21215. form: "naga",
  21216. default: true
  21217. },
  21218. ],
  21219. {
  21220. "anthro": {
  21221. name: "Anthro",
  21222. default: true
  21223. },
  21224. "naga": {
  21225. name: "Naga"
  21226. }
  21227. }
  21228. ))
  21229. characterMakers.push(() => makeCharacter(
  21230. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21231. {
  21232. front: {
  21233. height: math.unit(13 + 7 / 12, "feet"),
  21234. weight: math.unit(1500, "lb"),
  21235. name: "Front",
  21236. image: {
  21237. source: "./media/characters/briar/front.svg",
  21238. extra: 1223/1157,
  21239. bottom: 123/1346
  21240. }
  21241. },
  21242. },
  21243. [
  21244. {
  21245. name: "Normal",
  21246. height: math.unit(13 + 7 / 12, "feet"),
  21247. default: true
  21248. },
  21249. ]
  21250. ))
  21251. characterMakers.push(() => makeCharacter(
  21252. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21253. {
  21254. side: {
  21255. height: math.unit(16, "feet"),
  21256. weight: math.unit(500, "lb"),
  21257. name: "Side",
  21258. image: {
  21259. source: "./media/characters/vanguard/side.svg",
  21260. extra: 1022/914,
  21261. bottom: 30/1052
  21262. }
  21263. },
  21264. sideAlt: {
  21265. height: math.unit(10, "feet"),
  21266. weight: math.unit(500, "lb"),
  21267. name: "Side (Alt)",
  21268. image: {
  21269. source: "./media/characters/vanguard/side-alt.svg",
  21270. extra: 502 / 425,
  21271. bottom: 0.087
  21272. }
  21273. },
  21274. },
  21275. [
  21276. {
  21277. name: "Normal",
  21278. height: math.unit(17.71, "feet"),
  21279. default: true
  21280. },
  21281. ]
  21282. ))
  21283. characterMakers.push(() => makeCharacter(
  21284. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21285. {
  21286. front: {
  21287. height: math.unit(7.5, "feet"),
  21288. weight: math.unit(2, "lb"),
  21289. name: "Front",
  21290. image: {
  21291. source: "./media/characters/artemis/work-safe-front.svg",
  21292. extra: 1192 / 1075,
  21293. bottom: 0.07
  21294. },
  21295. form: "work-safe",
  21296. default: true
  21297. },
  21298. frontNsfw: {
  21299. height: math.unit(7.5, "feet"),
  21300. weight: math.unit(2, "lb"),
  21301. name: "Front",
  21302. image: {
  21303. source: "./media/characters/artemis/calibrating-front.svg",
  21304. extra: 1192 / 1075,
  21305. bottom: 0.07
  21306. },
  21307. form: "calibrating",
  21308. default: true
  21309. },
  21310. frontNsfwer: {
  21311. height: math.unit(7.5, "feet"),
  21312. weight: math.unit(2, "lb"),
  21313. name: "Front",
  21314. image: {
  21315. source: "./media/characters/artemis/oversize-load-front.svg",
  21316. extra: 1192 / 1075,
  21317. bottom: 0.07
  21318. },
  21319. form: "oversize-load",
  21320. default: true
  21321. },
  21322. side: {
  21323. height: math.unit(7.5, "feet"),
  21324. weight: math.unit(2, "lb"),
  21325. name: "Side",
  21326. image: {
  21327. source: "./media/characters/artemis/work-safe-side.svg",
  21328. extra: 1192 / 1075,
  21329. bottom: 0.07
  21330. },
  21331. form: "work-safe"
  21332. },
  21333. sideNsfw: {
  21334. height: math.unit(7.5, "feet"),
  21335. weight: math.unit(2, "lb"),
  21336. name: "Side",
  21337. image: {
  21338. source: "./media/characters/artemis/calibrating-side.svg",
  21339. extra: 1192 / 1075,
  21340. bottom: 0.07
  21341. },
  21342. form: "calibrating"
  21343. },
  21344. sideNsfwer: {
  21345. height: math.unit(7.5, "feet"),
  21346. weight: math.unit(2, "lb"),
  21347. name: "Side",
  21348. image: {
  21349. source: "./media/characters/artemis/oversize-load-side.svg",
  21350. extra: 1192 / 1075,
  21351. bottom: 0.07
  21352. },
  21353. form: "oversize-load"
  21354. },
  21355. maw: {
  21356. height: math.unit(1.1, "feet"),
  21357. name: "Maw",
  21358. image: {
  21359. source: "./media/characters/artemis/maw.svg"
  21360. },
  21361. form: "work-safe"
  21362. },
  21363. stomach: {
  21364. height: math.unit(0.95, "feet"),
  21365. name: "Stomach",
  21366. image: {
  21367. source: "./media/characters/artemis/stomach.svg"
  21368. },
  21369. form: "work-safe"
  21370. },
  21371. dickCanine: {
  21372. height: math.unit(1, "feet"),
  21373. name: "Dick (Canine)",
  21374. image: {
  21375. source: "./media/characters/artemis/dick-canine.svg"
  21376. },
  21377. form: "calibrating"
  21378. },
  21379. dickEquine: {
  21380. height: math.unit(0.85, "feet"),
  21381. name: "Dick (Equine)",
  21382. image: {
  21383. source: "./media/characters/artemis/dick-equine.svg"
  21384. },
  21385. form: "calibrating"
  21386. },
  21387. dickExotic: {
  21388. height: math.unit(0.85, "feet"),
  21389. name: "Dick (Exotic)",
  21390. image: {
  21391. source: "./media/characters/artemis/dick-exotic.svg"
  21392. },
  21393. form: "calibrating"
  21394. },
  21395. dickCanineBigger: {
  21396. height: math.unit(1 * 1.33, "feet"),
  21397. name: "Dick (Canine)",
  21398. image: {
  21399. source: "./media/characters/artemis/dick-canine.svg"
  21400. },
  21401. form: "oversize-load"
  21402. },
  21403. dickEquineBigger: {
  21404. height: math.unit(0.85 * 1.33, "feet"),
  21405. name: "Dick (Equine)",
  21406. image: {
  21407. source: "./media/characters/artemis/dick-equine.svg"
  21408. },
  21409. form: "oversize-load"
  21410. },
  21411. dickExoticBigger: {
  21412. height: math.unit(0.85 * 1.33, "feet"),
  21413. name: "Dick (Exotic)",
  21414. image: {
  21415. source: "./media/characters/artemis/dick-exotic.svg"
  21416. },
  21417. form: "oversize-load"
  21418. },
  21419. },
  21420. [
  21421. {
  21422. name: "Normal",
  21423. height: math.unit(7.5, "feet"),
  21424. form: "work-safe",
  21425. default: true
  21426. },
  21427. {
  21428. name: "Normal",
  21429. height: math.unit(7.5, "feet"),
  21430. form: "calibrating",
  21431. default: true
  21432. },
  21433. {
  21434. name: "Normal",
  21435. height: math.unit(7.5, "feet"),
  21436. form: "oversize-load",
  21437. default: true
  21438. },
  21439. {
  21440. name: "Enlarged",
  21441. height: math.unit(12, "feet"),
  21442. form: "work-safe",
  21443. },
  21444. {
  21445. name: "Enlarged",
  21446. height: math.unit(12, "feet"),
  21447. form: "calibrating",
  21448. },
  21449. {
  21450. name: "Enlarged",
  21451. height: math.unit(12, "feet"),
  21452. form: "oversize-load",
  21453. },
  21454. ],
  21455. {
  21456. "work-safe": {
  21457. name: "Work-Safe",
  21458. default: true
  21459. },
  21460. "calibrating": {
  21461. name: "Calibrating"
  21462. },
  21463. "oversize-load": {
  21464. name: "Oversize Load"
  21465. }
  21466. }
  21467. ))
  21468. characterMakers.push(() => makeCharacter(
  21469. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21470. {
  21471. front: {
  21472. height: math.unit(5 + 3 / 12, "feet"),
  21473. weight: math.unit(160, "lb"),
  21474. name: "Front",
  21475. image: {
  21476. source: "./media/characters/kira/front.svg",
  21477. extra: 906 / 786,
  21478. bottom: 0.01
  21479. }
  21480. },
  21481. back: {
  21482. height: math.unit(5 + 3 / 12, "feet"),
  21483. weight: math.unit(160, "lb"),
  21484. name: "Back",
  21485. image: {
  21486. source: "./media/characters/kira/back.svg",
  21487. extra: 882 / 757,
  21488. bottom: 0.005
  21489. }
  21490. },
  21491. frontDressed: {
  21492. height: math.unit(5 + 3 / 12, "feet"),
  21493. weight: math.unit(160, "lb"),
  21494. name: "Front (Dressed)",
  21495. image: {
  21496. source: "./media/characters/kira/front-dressed.svg",
  21497. extra: 906 / 786,
  21498. bottom: 0.01
  21499. }
  21500. },
  21501. beans: {
  21502. height: math.unit(0.92, "feet"),
  21503. name: "Beans",
  21504. image: {
  21505. source: "./media/characters/kira/beans.svg"
  21506. }
  21507. },
  21508. },
  21509. [
  21510. {
  21511. name: "Normal",
  21512. height: math.unit(5 + 3 / 12, "feet"),
  21513. default: true
  21514. },
  21515. ]
  21516. ))
  21517. characterMakers.push(() => makeCharacter(
  21518. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21519. {
  21520. front: {
  21521. height: math.unit(5 + 4 / 12, "feet"),
  21522. weight: math.unit(145, "lb"),
  21523. name: "Front",
  21524. image: {
  21525. source: "./media/characters/scramble/front.svg",
  21526. extra: 763 / 727,
  21527. bottom: 0.05
  21528. }
  21529. },
  21530. back: {
  21531. height: math.unit(5 + 4 / 12, "feet"),
  21532. weight: math.unit(145, "lb"),
  21533. name: "Back",
  21534. image: {
  21535. source: "./media/characters/scramble/back.svg",
  21536. extra: 826 / 737,
  21537. bottom: 0.002
  21538. }
  21539. },
  21540. },
  21541. [
  21542. {
  21543. name: "Normal",
  21544. height: math.unit(5 + 4 / 12, "feet"),
  21545. default: true
  21546. },
  21547. ]
  21548. ))
  21549. characterMakers.push(() => makeCharacter(
  21550. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21551. {
  21552. side: {
  21553. height: math.unit(6 + 2 / 12, "feet"),
  21554. weight: math.unit(190, "lb"),
  21555. name: "Side",
  21556. image: {
  21557. source: "./media/characters/biscuit/side.svg",
  21558. extra: 858 / 791,
  21559. bottom: 0.044
  21560. }
  21561. },
  21562. },
  21563. [
  21564. {
  21565. name: "Normal",
  21566. height: math.unit(6 + 2 / 12, "feet"),
  21567. default: true
  21568. },
  21569. ]
  21570. ))
  21571. characterMakers.push(() => makeCharacter(
  21572. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21573. {
  21574. front: {
  21575. height: math.unit(5 + 2 / 12, "feet"),
  21576. weight: math.unit(120, "lb"),
  21577. name: "Front",
  21578. image: {
  21579. source: "./media/characters/poffin/front.svg",
  21580. extra: 786 / 680,
  21581. bottom: 0.005
  21582. }
  21583. },
  21584. },
  21585. [
  21586. {
  21587. name: "Normal",
  21588. height: math.unit(5 + 2 / 12, "feet"),
  21589. default: true
  21590. },
  21591. ]
  21592. ))
  21593. characterMakers.push(() => makeCharacter(
  21594. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21595. {
  21596. front: {
  21597. height: math.unit(6 + 3 / 12, "feet"),
  21598. weight: math.unit(519, "lb"),
  21599. name: "Front",
  21600. image: {
  21601. source: "./media/characters/dhari/front.svg",
  21602. extra: 1048 / 946,
  21603. bottom: 0.015
  21604. }
  21605. },
  21606. back: {
  21607. height: math.unit(6 + 3 / 12, "feet"),
  21608. weight: math.unit(519, "lb"),
  21609. name: "Back",
  21610. image: {
  21611. source: "./media/characters/dhari/back.svg",
  21612. extra: 1048 / 931,
  21613. bottom: 0.005
  21614. }
  21615. },
  21616. frontDressed: {
  21617. height: math.unit(6 + 3 / 12, "feet"),
  21618. weight: math.unit(519, "lb"),
  21619. name: "Front (Dressed)",
  21620. image: {
  21621. source: "./media/characters/dhari/front-dressed.svg",
  21622. extra: 1713 / 1546,
  21623. bottom: 0.02
  21624. }
  21625. },
  21626. backDressed: {
  21627. height: math.unit(6 + 3 / 12, "feet"),
  21628. weight: math.unit(519, "lb"),
  21629. name: "Back (Dressed)",
  21630. image: {
  21631. source: "./media/characters/dhari/back-dressed.svg",
  21632. extra: 1699 / 1537,
  21633. bottom: 0.01
  21634. }
  21635. },
  21636. maw: {
  21637. height: math.unit(0.95, "feet"),
  21638. name: "Maw",
  21639. image: {
  21640. source: "./media/characters/dhari/maw.svg"
  21641. }
  21642. },
  21643. wereFront: {
  21644. height: math.unit(12 + 8 / 12, "feet"),
  21645. weight: math.unit(4000, "lb"),
  21646. name: "Front (Were)",
  21647. image: {
  21648. source: "./media/characters/dhari/were-front.svg",
  21649. extra: 1065 / 969,
  21650. bottom: 0.015
  21651. }
  21652. },
  21653. wereBack: {
  21654. height: math.unit(12 + 8 / 12, "feet"),
  21655. weight: math.unit(4000, "lb"),
  21656. name: "Back (Were)",
  21657. image: {
  21658. source: "./media/characters/dhari/were-back.svg",
  21659. extra: 1065 / 969,
  21660. bottom: 0.012
  21661. }
  21662. },
  21663. wereMaw: {
  21664. height: math.unit(0.625, "meters"),
  21665. name: "Maw (Were)",
  21666. image: {
  21667. source: "./media/characters/dhari/were-maw.svg"
  21668. }
  21669. },
  21670. },
  21671. [
  21672. {
  21673. name: "Normal",
  21674. height: math.unit(6 + 3 / 12, "feet"),
  21675. default: true
  21676. },
  21677. ]
  21678. ))
  21679. characterMakers.push(() => makeCharacter(
  21680. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21681. {
  21682. anthro: {
  21683. height: math.unit(5 + 7 / 12, "feet"),
  21684. weight: math.unit(175, "lb"),
  21685. name: "Anthro",
  21686. image: {
  21687. source: "./media/characters/rena-dyne/anthro.svg",
  21688. extra: 1849 / 1785,
  21689. bottom: 0.005
  21690. }
  21691. },
  21692. taur: {
  21693. height: math.unit(15 + 6 / 12, "feet"),
  21694. weight: math.unit(8000, "lb"),
  21695. name: "Taur",
  21696. image: {
  21697. source: "./media/characters/rena-dyne/taur.svg",
  21698. extra: 2315 / 2234,
  21699. bottom: 0.033
  21700. }
  21701. },
  21702. },
  21703. [
  21704. {
  21705. name: "Normal",
  21706. height: math.unit(5 + 7 / 12, "feet"),
  21707. default: true
  21708. },
  21709. ]
  21710. ))
  21711. characterMakers.push(() => makeCharacter(
  21712. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21713. {
  21714. front: {
  21715. height: math.unit(8, "feet"),
  21716. weight: math.unit(600, "lb"),
  21717. name: "Front",
  21718. image: {
  21719. source: "./media/characters/weremeep/front.svg",
  21720. extra: 967 / 862,
  21721. bottom: 0.01
  21722. }
  21723. },
  21724. },
  21725. [
  21726. {
  21727. name: "Normal",
  21728. height: math.unit(8, "feet"),
  21729. default: true
  21730. },
  21731. {
  21732. name: "Lorg",
  21733. height: math.unit(12, "feet")
  21734. },
  21735. {
  21736. name: "Oh Lawd She Comin'",
  21737. height: math.unit(20, "feet")
  21738. },
  21739. ]
  21740. ))
  21741. characterMakers.push(() => makeCharacter(
  21742. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21743. {
  21744. front: {
  21745. height: math.unit(4, "feet"),
  21746. weight: math.unit(90, "lb"),
  21747. name: "Front",
  21748. image: {
  21749. source: "./media/characters/reza/front.svg",
  21750. extra: 1183 / 1111,
  21751. bottom: 0.017
  21752. }
  21753. },
  21754. back: {
  21755. height: math.unit(4, "feet"),
  21756. weight: math.unit(90, "lb"),
  21757. name: "Back",
  21758. image: {
  21759. source: "./media/characters/reza/back.svg",
  21760. extra: 1183 / 1111,
  21761. bottom: 0.01
  21762. }
  21763. },
  21764. drake: {
  21765. height: math.unit(30, "feet"),
  21766. weight: math.unit(246960, "lb"),
  21767. name: "Drake",
  21768. image: {
  21769. source: "./media/characters/reza/drake.svg",
  21770. extra: 2350 / 2024,
  21771. bottom: 60.7 / 2403
  21772. }
  21773. },
  21774. },
  21775. [
  21776. {
  21777. name: "Normal",
  21778. height: math.unit(4, "feet"),
  21779. default: true
  21780. },
  21781. ]
  21782. ))
  21783. characterMakers.push(() => makeCharacter(
  21784. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21785. {
  21786. side: {
  21787. height: math.unit(15, "feet"),
  21788. weight: math.unit(14, "tons"),
  21789. name: "Side",
  21790. image: {
  21791. source: "./media/characters/athea/side.svg",
  21792. extra: 960 / 540,
  21793. bottom: 0.003
  21794. }
  21795. },
  21796. sitting: {
  21797. height: math.unit(6 * 2.85, "feet"),
  21798. weight: math.unit(14, "tons"),
  21799. name: "Sitting",
  21800. image: {
  21801. source: "./media/characters/athea/sitting.svg",
  21802. extra: 621 / 581,
  21803. bottom: 0.075
  21804. }
  21805. },
  21806. maw: {
  21807. height: math.unit(7.59498031496063, "feet"),
  21808. name: "Maw",
  21809. image: {
  21810. source: "./media/characters/athea/maw.svg"
  21811. }
  21812. },
  21813. },
  21814. [
  21815. {
  21816. name: "Lap Cat",
  21817. height: math.unit(2.5, "feet")
  21818. },
  21819. {
  21820. name: "Minimacro",
  21821. height: math.unit(15, "feet"),
  21822. default: true
  21823. },
  21824. {
  21825. name: "Macro",
  21826. height: math.unit(120, "feet")
  21827. },
  21828. {
  21829. name: "Macro+",
  21830. height: math.unit(640, "feet")
  21831. },
  21832. {
  21833. name: "Colossus",
  21834. height: math.unit(2.2, "miles")
  21835. },
  21836. ]
  21837. ))
  21838. characterMakers.push(() => makeCharacter(
  21839. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21840. {
  21841. front: {
  21842. height: math.unit(8 + 8 / 12, "feet"),
  21843. weight: math.unit(130, "kg"),
  21844. name: "Front",
  21845. image: {
  21846. source: "./media/characters/seroko/front.svg",
  21847. extra: 1385 / 1280,
  21848. bottom: 0.025
  21849. }
  21850. },
  21851. back: {
  21852. height: math.unit(8 + 8 / 12, "feet"),
  21853. weight: math.unit(130, "kg"),
  21854. name: "Back",
  21855. image: {
  21856. source: "./media/characters/seroko/back.svg",
  21857. extra: 1369 / 1238,
  21858. bottom: 0.018
  21859. }
  21860. },
  21861. frontDressed: {
  21862. height: math.unit(8 + 8 / 12, "feet"),
  21863. weight: math.unit(130, "kg"),
  21864. name: "Front (Dressed)",
  21865. image: {
  21866. source: "./media/characters/seroko/front-dressed.svg",
  21867. extra: 1366 / 1275,
  21868. bottom: 0.03
  21869. }
  21870. },
  21871. },
  21872. [
  21873. {
  21874. name: "Normal",
  21875. height: math.unit(8 + 8 / 12, "feet"),
  21876. default: true
  21877. },
  21878. ]
  21879. ))
  21880. characterMakers.push(() => makeCharacter(
  21881. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21882. {
  21883. front: {
  21884. height: math.unit(5.5, "feet"),
  21885. weight: math.unit(160, "lb"),
  21886. name: "Front",
  21887. image: {
  21888. source: "./media/characters/quatzi/front.svg",
  21889. extra: 2346 / 2242,
  21890. bottom: 0.015
  21891. }
  21892. },
  21893. },
  21894. [
  21895. {
  21896. name: "Normal",
  21897. height: math.unit(5.5, "feet"),
  21898. default: true
  21899. },
  21900. {
  21901. name: "Big",
  21902. height: math.unit(7.7, "feet")
  21903. },
  21904. ]
  21905. ))
  21906. characterMakers.push(() => makeCharacter(
  21907. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21908. {
  21909. front: {
  21910. height: math.unit(5 + 11 / 12, "feet"),
  21911. weight: math.unit(180, "lb"),
  21912. name: "Front",
  21913. image: {
  21914. source: "./media/characters/sen/front.svg",
  21915. extra: 1321 / 1254,
  21916. bottom: 0.015
  21917. }
  21918. },
  21919. side: {
  21920. height: math.unit(5 + 11 / 12, "feet"),
  21921. weight: math.unit(180, "lb"),
  21922. name: "Side",
  21923. image: {
  21924. source: "./media/characters/sen/side.svg",
  21925. extra: 1321 / 1254,
  21926. bottom: 0.007
  21927. }
  21928. },
  21929. back: {
  21930. height: math.unit(5 + 11 / 12, "feet"),
  21931. weight: math.unit(180, "lb"),
  21932. name: "Back",
  21933. image: {
  21934. source: "./media/characters/sen/back.svg",
  21935. extra: 1321 / 1254
  21936. }
  21937. },
  21938. },
  21939. [
  21940. {
  21941. name: "Normal",
  21942. height: math.unit(5 + 11 / 12, "feet"),
  21943. default: true
  21944. },
  21945. ]
  21946. ))
  21947. characterMakers.push(() => makeCharacter(
  21948. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21949. {
  21950. front: {
  21951. height: math.unit(166.6, "cm"),
  21952. weight: math.unit(66.6, "kg"),
  21953. name: "Front",
  21954. image: {
  21955. source: "./media/characters/fruity/front.svg",
  21956. extra: 1510 / 1386,
  21957. bottom: 0.04
  21958. }
  21959. },
  21960. back: {
  21961. height: math.unit(166.6, "cm"),
  21962. weight: math.unit(66.6, "lb"),
  21963. name: "Back",
  21964. image: {
  21965. source: "./media/characters/fruity/back.svg",
  21966. extra: 1563 / 1435,
  21967. bottom: 0.005
  21968. }
  21969. },
  21970. },
  21971. [
  21972. {
  21973. name: "Normal",
  21974. height: math.unit(166.6, "cm"),
  21975. default: true
  21976. },
  21977. {
  21978. name: "Demonic",
  21979. height: math.unit(166.6, "feet")
  21980. },
  21981. ]
  21982. ))
  21983. characterMakers.push(() => makeCharacter(
  21984. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21985. {
  21986. side: {
  21987. height: math.unit(10, "feet"),
  21988. weight: math.unit(500, "lb"),
  21989. name: "Side",
  21990. image: {
  21991. source: "./media/characters/zost/side.svg",
  21992. extra: 2870/2533,
  21993. bottom: 252/3122
  21994. }
  21995. },
  21996. mawFront: {
  21997. height: math.unit(1.08, "meters"),
  21998. name: "Maw (Front)",
  21999. image: {
  22000. source: "./media/characters/zost/maw-front.svg"
  22001. }
  22002. },
  22003. mawSide: {
  22004. height: math.unit(2.66, "feet"),
  22005. name: "Maw (Side)",
  22006. image: {
  22007. source: "./media/characters/zost/maw-side.svg"
  22008. }
  22009. },
  22010. wingspan: {
  22011. height: math.unit(7.4, "feet"),
  22012. name: "Wingspan",
  22013. image: {
  22014. source: "./media/characters/zost/wingspan.svg"
  22015. }
  22016. },
  22017. },
  22018. [
  22019. {
  22020. name: "Normal",
  22021. height: math.unit(10, "feet"),
  22022. default: true
  22023. },
  22024. ]
  22025. ))
  22026. characterMakers.push(() => makeCharacter(
  22027. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22028. {
  22029. front: {
  22030. height: math.unit(5 + 4 / 12, "feet"),
  22031. weight: math.unit(120, "lb"),
  22032. name: "Front",
  22033. image: {
  22034. source: "./media/characters/luci/front.svg",
  22035. extra: 1985 / 1884,
  22036. bottom: 0.04
  22037. }
  22038. },
  22039. back: {
  22040. height: math.unit(5 + 4 / 12, "feet"),
  22041. weight: math.unit(120, "lb"),
  22042. name: "Back",
  22043. image: {
  22044. source: "./media/characters/luci/back.svg",
  22045. extra: 1892 / 1791,
  22046. bottom: 0.002
  22047. }
  22048. },
  22049. },
  22050. [
  22051. {
  22052. name: "Normal",
  22053. height: math.unit(5 + 4 / 12, "feet"),
  22054. default: true
  22055. },
  22056. ]
  22057. ))
  22058. characterMakers.push(() => makeCharacter(
  22059. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22060. {
  22061. front: {
  22062. height: math.unit(1500, "feet"),
  22063. weight: math.unit(3.8e6, "tons"),
  22064. name: "Front",
  22065. image: {
  22066. source: "./media/characters/2th/front.svg",
  22067. extra: 3489 / 3350,
  22068. bottom: 0.1
  22069. }
  22070. },
  22071. foot: {
  22072. height: math.unit(461, "feet"),
  22073. name: "Foot",
  22074. image: {
  22075. source: "./media/characters/2th/foot.svg"
  22076. }
  22077. },
  22078. },
  22079. [
  22080. {
  22081. name: "\"Micro\"",
  22082. height: math.unit(15 + 7 / 12, "feet")
  22083. },
  22084. {
  22085. name: "Normal",
  22086. height: math.unit(1500, "feet"),
  22087. default: true
  22088. },
  22089. {
  22090. name: "Macro",
  22091. height: math.unit(5000, "feet")
  22092. },
  22093. {
  22094. name: "Megamacro",
  22095. height: math.unit(15, "miles")
  22096. },
  22097. {
  22098. name: "Gigamacro",
  22099. height: math.unit(4000, "miles")
  22100. },
  22101. {
  22102. name: "Galactic",
  22103. height: math.unit(50, "AU")
  22104. },
  22105. ]
  22106. ))
  22107. characterMakers.push(() => makeCharacter(
  22108. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22109. {
  22110. front: {
  22111. height: math.unit(5 + 6 / 12, "feet"),
  22112. weight: math.unit(220, "lb"),
  22113. name: "Front",
  22114. image: {
  22115. source: "./media/characters/amethyst/front.svg",
  22116. extra: 2078 / 2040,
  22117. bottom: 0.045
  22118. }
  22119. },
  22120. back: {
  22121. height: math.unit(5 + 6 / 12, "feet"),
  22122. weight: math.unit(220, "lb"),
  22123. name: "Back",
  22124. image: {
  22125. source: "./media/characters/amethyst/back.svg",
  22126. extra: 2021 / 1989,
  22127. bottom: 0.02
  22128. }
  22129. },
  22130. },
  22131. [
  22132. {
  22133. name: "Normal",
  22134. height: math.unit(5 + 6 / 12, "feet"),
  22135. default: true
  22136. },
  22137. ]
  22138. ))
  22139. characterMakers.push(() => makeCharacter(
  22140. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22141. {
  22142. front: {
  22143. height: math.unit(4 + 11 / 12, "feet"),
  22144. weight: math.unit(120, "lb"),
  22145. name: "Front",
  22146. image: {
  22147. source: "./media/characters/yumi-akiyama/front.svg",
  22148. extra: 1327 / 1235,
  22149. bottom: 0.02
  22150. }
  22151. },
  22152. back: {
  22153. height: math.unit(4 + 11 / 12, "feet"),
  22154. weight: math.unit(120, "lb"),
  22155. name: "Back",
  22156. image: {
  22157. source: "./media/characters/yumi-akiyama/back.svg",
  22158. extra: 1287 / 1245,
  22159. bottom: 0.002
  22160. }
  22161. },
  22162. },
  22163. [
  22164. {
  22165. name: "Galactic",
  22166. height: math.unit(50, "galaxies"),
  22167. default: true
  22168. },
  22169. {
  22170. name: "Universal",
  22171. height: math.unit(100, "universes")
  22172. },
  22173. ]
  22174. ))
  22175. characterMakers.push(() => makeCharacter(
  22176. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22177. {
  22178. front: {
  22179. height: math.unit(8, "feet"),
  22180. weight: math.unit(500, "lb"),
  22181. name: "Front",
  22182. image: {
  22183. source: "./media/characters/rifter-yrmori/front.svg",
  22184. extra: 1180 / 1125,
  22185. bottom: 0.02
  22186. }
  22187. },
  22188. back: {
  22189. height: math.unit(8, "feet"),
  22190. weight: math.unit(500, "lb"),
  22191. name: "Back",
  22192. image: {
  22193. source: "./media/characters/rifter-yrmori/back.svg",
  22194. extra: 1190 / 1145,
  22195. bottom: 0.001
  22196. }
  22197. },
  22198. wings: {
  22199. height: math.unit(7.75, "feet"),
  22200. weight: math.unit(500, "lb"),
  22201. name: "Wings",
  22202. image: {
  22203. source: "./media/characters/rifter-yrmori/wings.svg",
  22204. extra: 1357 / 1285
  22205. }
  22206. },
  22207. maw: {
  22208. height: math.unit(0.8, "feet"),
  22209. name: "Maw",
  22210. image: {
  22211. source: "./media/characters/rifter-yrmori/maw.svg"
  22212. }
  22213. },
  22214. mawfront: {
  22215. height: math.unit(1.45, "feet"),
  22216. name: "Maw (Front)",
  22217. image: {
  22218. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22219. }
  22220. },
  22221. },
  22222. [
  22223. {
  22224. name: "Normal",
  22225. height: math.unit(8, "feet"),
  22226. default: true
  22227. },
  22228. {
  22229. name: "Macro",
  22230. height: math.unit(42, "meters")
  22231. },
  22232. ]
  22233. ))
  22234. characterMakers.push(() => makeCharacter(
  22235. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22236. {
  22237. were: {
  22238. height: math.unit(25 + 6 / 12, "feet"),
  22239. weight: math.unit(10000, "lb"),
  22240. name: "Were",
  22241. image: {
  22242. source: "./media/characters/tahajin/were.svg",
  22243. extra: 801 / 770,
  22244. bottom: 0.042
  22245. }
  22246. },
  22247. aquatic: {
  22248. height: math.unit(6 + 4 / 12, "feet"),
  22249. weight: math.unit(160, "lb"),
  22250. name: "Aquatic",
  22251. image: {
  22252. source: "./media/characters/tahajin/aquatic.svg",
  22253. extra: 572 / 542,
  22254. bottom: 0.04
  22255. }
  22256. },
  22257. chow: {
  22258. height: math.unit(8 + 11 / 12, "feet"),
  22259. weight: math.unit(450, "lb"),
  22260. name: "Chow",
  22261. image: {
  22262. source: "./media/characters/tahajin/chow.svg",
  22263. extra: 660 / 640,
  22264. bottom: 0.015
  22265. }
  22266. },
  22267. demiNaga: {
  22268. height: math.unit(6 + 8 / 12, "feet"),
  22269. weight: math.unit(300, "lb"),
  22270. name: "Demi Naga",
  22271. image: {
  22272. source: "./media/characters/tahajin/demi-naga.svg",
  22273. extra: 643 / 615,
  22274. bottom: 0.1
  22275. }
  22276. },
  22277. data: {
  22278. height: math.unit(5, "inches"),
  22279. weight: math.unit(0.1, "lb"),
  22280. name: "Data",
  22281. image: {
  22282. source: "./media/characters/tahajin/data.svg"
  22283. }
  22284. },
  22285. fluu: {
  22286. height: math.unit(5 + 7 / 12, "feet"),
  22287. weight: math.unit(140, "lb"),
  22288. name: "Fluu",
  22289. image: {
  22290. source: "./media/characters/tahajin/fluu.svg",
  22291. extra: 628 / 592,
  22292. bottom: 0.02
  22293. }
  22294. },
  22295. starWarrior: {
  22296. height: math.unit(4 + 5 / 12, "feet"),
  22297. weight: math.unit(50, "lb"),
  22298. name: "Star Warrior",
  22299. image: {
  22300. source: "./media/characters/tahajin/star-warrior.svg"
  22301. }
  22302. },
  22303. },
  22304. [
  22305. {
  22306. name: "Normal",
  22307. height: math.unit(25 + 6 / 12, "feet"),
  22308. default: true
  22309. },
  22310. ]
  22311. ))
  22312. characterMakers.push(() => makeCharacter(
  22313. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22314. {
  22315. front: {
  22316. height: math.unit(8, "feet"),
  22317. weight: math.unit(350, "lb"),
  22318. name: "Front",
  22319. image: {
  22320. source: "./media/characters/gabira/front.svg",
  22321. extra: 608 / 580,
  22322. bottom: 0.03
  22323. }
  22324. },
  22325. back: {
  22326. height: math.unit(8, "feet"),
  22327. weight: math.unit(350, "lb"),
  22328. name: "Back",
  22329. image: {
  22330. source: "./media/characters/gabira/back.svg",
  22331. extra: 608 / 580,
  22332. bottom: 0.03
  22333. }
  22334. },
  22335. },
  22336. [
  22337. {
  22338. name: "Normal",
  22339. height: math.unit(8, "feet"),
  22340. default: true
  22341. },
  22342. ]
  22343. ))
  22344. characterMakers.push(() => makeCharacter(
  22345. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22346. {
  22347. front: {
  22348. height: math.unit(5 + 3 / 12, "feet"),
  22349. weight: math.unit(137, "lb"),
  22350. name: "Front",
  22351. image: {
  22352. source: "./media/characters/sasha-katraine/front.svg",
  22353. extra: 1745/1694,
  22354. bottom: 37/1782
  22355. }
  22356. },
  22357. back: {
  22358. height: math.unit(5 + 3 / 12, "feet"),
  22359. weight: math.unit(137, "lb"),
  22360. name: "Back",
  22361. image: {
  22362. source: "./media/characters/sasha-katraine/back.svg",
  22363. extra: 1776/1699,
  22364. bottom: 26/1802
  22365. }
  22366. },
  22367. },
  22368. [
  22369. {
  22370. name: "Micro",
  22371. height: math.unit(5, "inches")
  22372. },
  22373. {
  22374. name: "Normal",
  22375. height: math.unit(5 + 3 / 12, "feet"),
  22376. default: true
  22377. },
  22378. ]
  22379. ))
  22380. characterMakers.push(() => makeCharacter(
  22381. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22382. {
  22383. side: {
  22384. height: math.unit(4, "inches"),
  22385. weight: math.unit(200, "grams"),
  22386. name: "Side",
  22387. image: {
  22388. source: "./media/characters/der/side.svg",
  22389. extra: 719 / 400,
  22390. bottom: 30.6 / 749.9187
  22391. }
  22392. },
  22393. },
  22394. [
  22395. {
  22396. name: "Micro",
  22397. height: math.unit(4, "inches"),
  22398. default: true
  22399. },
  22400. ]
  22401. ))
  22402. characterMakers.push(() => makeCharacter(
  22403. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22404. {
  22405. side: {
  22406. height: math.unit(30, "meters"),
  22407. weight: math.unit(700, "tonnes"),
  22408. name: "Side",
  22409. image: {
  22410. source: "./media/characters/fixerdragon/side.svg",
  22411. extra: (1293.0514 - 116.03) / 1106.86,
  22412. bottom: 116.03 / 1293.0514
  22413. }
  22414. },
  22415. },
  22416. [
  22417. {
  22418. name: "Planck",
  22419. height: math.unit(1.6e-35, "meters")
  22420. },
  22421. {
  22422. name: "Micro",
  22423. height: math.unit(0.4, "meters")
  22424. },
  22425. {
  22426. name: "Normal",
  22427. height: math.unit(30, "meters"),
  22428. default: true
  22429. },
  22430. {
  22431. name: "Megamacro",
  22432. height: math.unit(1.2, "megameters")
  22433. },
  22434. {
  22435. name: "Teramacro",
  22436. height: math.unit(130, "terameters")
  22437. },
  22438. {
  22439. name: "Yottamacro",
  22440. height: math.unit(6200, "yottameters")
  22441. },
  22442. ]
  22443. ));
  22444. characterMakers.push(() => makeCharacter(
  22445. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22446. {
  22447. front: {
  22448. height: math.unit(8, "feet"),
  22449. weight: math.unit(250, "lb"),
  22450. name: "Front",
  22451. image: {
  22452. source: "./media/characters/kite/front.svg",
  22453. extra: 2796 / 2659,
  22454. bottom: 0.002
  22455. }
  22456. },
  22457. },
  22458. [
  22459. {
  22460. name: "Normal",
  22461. height: math.unit(8, "feet"),
  22462. default: true
  22463. },
  22464. {
  22465. name: "Macro",
  22466. height: math.unit(360, "feet")
  22467. },
  22468. {
  22469. name: "Megamacro",
  22470. height: math.unit(1500, "feet")
  22471. },
  22472. ]
  22473. ))
  22474. characterMakers.push(() => makeCharacter(
  22475. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22476. {
  22477. front: {
  22478. height: math.unit(5 + 11/12, "feet"),
  22479. weight: math.unit(170, "lb"),
  22480. name: "Front",
  22481. image: {
  22482. source: "./media/characters/poojawa-vynar/front.svg",
  22483. extra: 1735/1585,
  22484. bottom: 96/1831
  22485. }
  22486. },
  22487. back: {
  22488. height: math.unit(5 + 11/12, "feet"),
  22489. weight: math.unit(170, "lb"),
  22490. name: "Back",
  22491. image: {
  22492. source: "./media/characters/poojawa-vynar/back.svg",
  22493. extra: 1749/1607,
  22494. bottom: 28/1777
  22495. }
  22496. },
  22497. male: {
  22498. height: math.unit(5 + 11/12, "feet"),
  22499. weight: math.unit(170, "lb"),
  22500. name: "Male",
  22501. image: {
  22502. source: "./media/characters/poojawa-vynar/male.svg",
  22503. extra: 1855/1713,
  22504. bottom: 63/1918
  22505. }
  22506. },
  22507. taur: {
  22508. height: math.unit(5 + 11/12, "feet"),
  22509. weight: math.unit(170, "lb"),
  22510. name: "Taur",
  22511. image: {
  22512. source: "./media/characters/poojawa-vynar/taur.svg",
  22513. extra: 1151/1059,
  22514. bottom: 356/1507
  22515. }
  22516. },
  22517. frontDressed: {
  22518. height: math.unit(5 + 11/12, "feet"),
  22519. weight: math.unit(170, "lb"),
  22520. name: "Front (Dressed)",
  22521. image: {
  22522. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22523. extra: 1735/1585,
  22524. bottom: 96/1831
  22525. }
  22526. },
  22527. backDressed: {
  22528. height: math.unit(5 + 11/12, "feet"),
  22529. weight: math.unit(170, "lb"),
  22530. name: "Back (Dressed)",
  22531. image: {
  22532. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22533. extra: 1749/1607,
  22534. bottom: 28/1777
  22535. }
  22536. },
  22537. maleDressed: {
  22538. height: math.unit(5 + 11/12, "feet"),
  22539. weight: math.unit(170, "lb"),
  22540. name: "Male (Dressed)",
  22541. image: {
  22542. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22543. extra: 1855/1713,
  22544. bottom: 63/1918
  22545. }
  22546. },
  22547. taurDressed: {
  22548. height: math.unit(5 + 11/12, "feet"),
  22549. weight: math.unit(170, "lb"),
  22550. name: "Taur (Dressed)",
  22551. image: {
  22552. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22553. extra: 1151/1059,
  22554. bottom: 356/1507
  22555. }
  22556. },
  22557. maw: {
  22558. height: math.unit(1.46, "feet"),
  22559. name: "Maw",
  22560. image: {
  22561. source: "./media/characters/poojawa-vynar/maw.svg"
  22562. }
  22563. },
  22564. head: {
  22565. height: math.unit(2.34, "feet"),
  22566. name: "Head",
  22567. image: {
  22568. source: "./media/characters/poojawa-vynar/head.svg"
  22569. }
  22570. },
  22571. paw: {
  22572. height: math.unit(1.61, "feet"),
  22573. name: "Paw",
  22574. image: {
  22575. source: "./media/characters/poojawa-vynar/paw.svg"
  22576. }
  22577. },
  22578. pawToering: {
  22579. height: math.unit(1.72, "feet"),
  22580. name: "Paw (Toering)",
  22581. image: {
  22582. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22583. }
  22584. },
  22585. toering: {
  22586. height: math.unit(2.9, "inches"),
  22587. name: "Toering",
  22588. image: {
  22589. source: "./media/characters/poojawa-vynar/toering.svg"
  22590. }
  22591. },
  22592. shaft: {
  22593. height: math.unit(0.625, "feet"),
  22594. name: "Shaft",
  22595. image: {
  22596. source: "./media/characters/poojawa-vynar/shaft.svg"
  22597. }
  22598. },
  22599. spade: {
  22600. height: math.unit(0.42, "feet"),
  22601. name: "Spade",
  22602. image: {
  22603. source: "./media/characters/poojawa-vynar/spade.svg"
  22604. }
  22605. },
  22606. },
  22607. [
  22608. {
  22609. name: "Shortstack",
  22610. height: math.unit(4, "feet")
  22611. },
  22612. {
  22613. name: "Normal",
  22614. height: math.unit(5 + 11 / 12, "feet"),
  22615. default: true
  22616. },
  22617. {
  22618. name: "Tauric",
  22619. height: math.unit(4, "meters")
  22620. },
  22621. ]
  22622. ))
  22623. characterMakers.push(() => makeCharacter(
  22624. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22625. {
  22626. front: {
  22627. height: math.unit(293, "meters"),
  22628. weight: math.unit(70400, "tons"),
  22629. name: "Front",
  22630. image: {
  22631. source: "./media/characters/violette/front.svg",
  22632. extra: 1227 / 1180,
  22633. bottom: 0.005
  22634. }
  22635. },
  22636. back: {
  22637. height: math.unit(293, "meters"),
  22638. weight: math.unit(70400, "tons"),
  22639. name: "Back",
  22640. image: {
  22641. source: "./media/characters/violette/back.svg",
  22642. extra: 1227 / 1180,
  22643. bottom: 0.005
  22644. }
  22645. },
  22646. },
  22647. [
  22648. {
  22649. name: "Macro",
  22650. height: math.unit(293, "meters"),
  22651. default: true
  22652. },
  22653. ]
  22654. ))
  22655. characterMakers.push(() => makeCharacter(
  22656. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22657. {
  22658. front: {
  22659. height: math.unit(1050, "feet"),
  22660. weight: math.unit(200000, "tons"),
  22661. name: "Front",
  22662. image: {
  22663. source: "./media/characters/alessandra/front.svg",
  22664. extra: 960 / 912,
  22665. bottom: 0.06
  22666. }
  22667. },
  22668. },
  22669. [
  22670. {
  22671. name: "Macro",
  22672. height: math.unit(1050, "feet")
  22673. },
  22674. {
  22675. name: "Macro+",
  22676. height: math.unit(900, "meters"),
  22677. default: true
  22678. },
  22679. ]
  22680. ))
  22681. characterMakers.push(() => makeCharacter(
  22682. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22683. {
  22684. front: {
  22685. height: math.unit(5, "feet"),
  22686. weight: math.unit(187, "lb"),
  22687. name: "Front",
  22688. image: {
  22689. source: "./media/characters/person/front.svg",
  22690. extra: 3087 / 2945,
  22691. bottom: 91 / 3181
  22692. }
  22693. },
  22694. },
  22695. [
  22696. {
  22697. name: "Micro",
  22698. height: math.unit(3, "inches")
  22699. },
  22700. {
  22701. name: "Normal",
  22702. height: math.unit(5, "feet"),
  22703. default: true
  22704. },
  22705. {
  22706. name: "Macro",
  22707. height: math.unit(90, "feet")
  22708. },
  22709. {
  22710. name: "Max Size",
  22711. height: math.unit(280, "feet")
  22712. },
  22713. ]
  22714. ))
  22715. characterMakers.push(() => makeCharacter(
  22716. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22717. {
  22718. front: {
  22719. height: math.unit(4.5, "meters"),
  22720. weight: math.unit(3200, "lb"),
  22721. name: "Front",
  22722. image: {
  22723. source: "./media/characters/ty/front.svg",
  22724. extra: 1038 / 960,
  22725. bottom: 31.156 / 1068
  22726. }
  22727. },
  22728. back: {
  22729. height: math.unit(4.5, "meters"),
  22730. weight: math.unit(3200, "lb"),
  22731. name: "Back",
  22732. image: {
  22733. source: "./media/characters/ty/back.svg",
  22734. extra: 1044 / 966,
  22735. bottom: 7.48 / 1049
  22736. }
  22737. },
  22738. },
  22739. [
  22740. {
  22741. name: "Normal",
  22742. height: math.unit(4.5, "meters"),
  22743. default: true
  22744. },
  22745. ]
  22746. ))
  22747. characterMakers.push(() => makeCharacter(
  22748. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22749. {
  22750. front: {
  22751. height: math.unit(5 + 4 / 12, "feet"),
  22752. weight: math.unit(115, "lb"),
  22753. name: "Front",
  22754. image: {
  22755. source: "./media/characters/rocky/front.svg",
  22756. extra: 1012 / 975,
  22757. bottom: 54 / 1066
  22758. }
  22759. },
  22760. },
  22761. [
  22762. {
  22763. name: "Normal",
  22764. height: math.unit(5 + 4 / 12, "feet"),
  22765. default: true
  22766. },
  22767. ]
  22768. ))
  22769. characterMakers.push(() => makeCharacter(
  22770. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22771. {
  22772. upright: {
  22773. height: math.unit(6, "meters"),
  22774. weight: math.unit(4000, "kg"),
  22775. name: "Upright",
  22776. image: {
  22777. source: "./media/characters/ruin/upright.svg",
  22778. extra: 668 / 661,
  22779. bottom: 42 / 799.8396
  22780. }
  22781. },
  22782. },
  22783. [
  22784. {
  22785. name: "Normal",
  22786. height: math.unit(6, "meters"),
  22787. default: true
  22788. },
  22789. ]
  22790. ))
  22791. characterMakers.push(() => makeCharacter(
  22792. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22793. {
  22794. front: {
  22795. height: math.unit(5, "feet"),
  22796. weight: math.unit(106, "lb"),
  22797. name: "Front",
  22798. image: {
  22799. source: "./media/characters/robin/front.svg",
  22800. extra: 862 / 799,
  22801. bottom: 42.4 / 914.8856
  22802. }
  22803. },
  22804. },
  22805. [
  22806. {
  22807. name: "Normal",
  22808. height: math.unit(5, "feet"),
  22809. default: true
  22810. },
  22811. ]
  22812. ))
  22813. characterMakers.push(() => makeCharacter(
  22814. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22815. {
  22816. side: {
  22817. height: math.unit(3, "feet"),
  22818. weight: math.unit(225, "lb"),
  22819. name: "Side",
  22820. image: {
  22821. source: "./media/characters/saian/side.svg",
  22822. extra: 566 / 356,
  22823. bottom: 79.7 / 643
  22824. }
  22825. },
  22826. maw: {
  22827. height: math.unit(2.85, "feet"),
  22828. name: "Maw",
  22829. image: {
  22830. source: "./media/characters/saian/maw.svg"
  22831. }
  22832. },
  22833. },
  22834. [
  22835. {
  22836. name: "Normal",
  22837. height: math.unit(3, "feet"),
  22838. default: true
  22839. },
  22840. ]
  22841. ))
  22842. characterMakers.push(() => makeCharacter(
  22843. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22844. {
  22845. side: {
  22846. height: math.unit(8, "feet"),
  22847. weight: math.unit(300, "lb"),
  22848. name: "Side",
  22849. image: {
  22850. source: "./media/characters/equus-silvermane/side.svg",
  22851. extra: 2176 / 2050,
  22852. bottom: 65.7 / 2245
  22853. }
  22854. },
  22855. front: {
  22856. height: math.unit(8, "feet"),
  22857. weight: math.unit(300, "lb"),
  22858. name: "Front",
  22859. image: {
  22860. source: "./media/characters/equus-silvermane/front.svg",
  22861. extra: 4633 / 4400,
  22862. bottom: 71.3 / 4706.915
  22863. }
  22864. },
  22865. sideStepping: {
  22866. height: math.unit(8, "feet"),
  22867. weight: math.unit(300, "lb"),
  22868. name: "Side (Stepping)",
  22869. image: {
  22870. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22871. extra: 1968 / 1860,
  22872. bottom: 16.4 / 1989
  22873. }
  22874. },
  22875. },
  22876. [
  22877. {
  22878. name: "Normal",
  22879. height: math.unit(8, "feet")
  22880. },
  22881. {
  22882. name: "Minimacro",
  22883. height: math.unit(75, "feet"),
  22884. default: true
  22885. },
  22886. {
  22887. name: "Macro",
  22888. height: math.unit(150, "feet")
  22889. },
  22890. {
  22891. name: "Macro+",
  22892. height: math.unit(1000, "feet")
  22893. },
  22894. {
  22895. name: "Megamacro",
  22896. height: math.unit(1, "mile")
  22897. },
  22898. ]
  22899. ))
  22900. characterMakers.push(() => makeCharacter(
  22901. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22902. {
  22903. side: {
  22904. height: math.unit(20, "feet"),
  22905. weight: math.unit(30000, "kg"),
  22906. name: "Side",
  22907. image: {
  22908. source: "./media/characters/windar/side.svg",
  22909. extra: 1491 / 1248,
  22910. bottom: 82.56 / 1568
  22911. }
  22912. },
  22913. },
  22914. [
  22915. {
  22916. name: "Normal",
  22917. height: math.unit(20, "feet"),
  22918. default: true
  22919. },
  22920. ]
  22921. ))
  22922. characterMakers.push(() => makeCharacter(
  22923. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22924. {
  22925. side: {
  22926. height: math.unit(15.66, "feet"),
  22927. weight: math.unit(150, "lb"),
  22928. name: "Side",
  22929. image: {
  22930. source: "./media/characters/melody/side.svg",
  22931. extra: 1097 / 944,
  22932. bottom: 11.8 / 1109
  22933. }
  22934. },
  22935. sideOutfit: {
  22936. height: math.unit(15.66, "feet"),
  22937. weight: math.unit(150, "lb"),
  22938. name: "Side (Outfit)",
  22939. image: {
  22940. source: "./media/characters/melody/side-outfit.svg",
  22941. extra: 1097 / 944,
  22942. bottom: 11.8 / 1109
  22943. }
  22944. },
  22945. },
  22946. [
  22947. {
  22948. name: "Normal",
  22949. height: math.unit(15.66, "feet"),
  22950. default: true
  22951. },
  22952. ]
  22953. ))
  22954. characterMakers.push(() => makeCharacter(
  22955. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22956. {
  22957. front: {
  22958. height: math.unit(8, "feet"),
  22959. weight: math.unit(325, "lb"),
  22960. name: "Front",
  22961. image: {
  22962. source: "./media/characters/windera/front.svg",
  22963. extra: 3180 / 2845,
  22964. bottom: 178 / 3365
  22965. }
  22966. },
  22967. },
  22968. [
  22969. {
  22970. name: "Normal",
  22971. height: math.unit(8, "feet"),
  22972. default: true
  22973. },
  22974. ]
  22975. ))
  22976. characterMakers.push(() => makeCharacter(
  22977. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22978. {
  22979. front: {
  22980. height: math.unit(28.75, "feet"),
  22981. weight: math.unit(2000, "kg"),
  22982. name: "Front",
  22983. image: {
  22984. source: "./media/characters/sonear/front.svg",
  22985. extra: 1041.1 / 964.9,
  22986. bottom: 53.7 / 1096.6
  22987. }
  22988. },
  22989. },
  22990. [
  22991. {
  22992. name: "Normal",
  22993. height: math.unit(28.75, "feet"),
  22994. default: true
  22995. },
  22996. ]
  22997. ))
  22998. characterMakers.push(() => makeCharacter(
  22999. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23000. {
  23001. side: {
  23002. height: math.unit(25.5, "feet"),
  23003. weight: math.unit(23000, "kg"),
  23004. name: "Side",
  23005. image: {
  23006. source: "./media/characters/kanara/side.svg"
  23007. }
  23008. },
  23009. },
  23010. [
  23011. {
  23012. name: "Normal",
  23013. height: math.unit(25.5, "feet"),
  23014. default: true
  23015. },
  23016. ]
  23017. ))
  23018. characterMakers.push(() => makeCharacter(
  23019. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23020. {
  23021. side: {
  23022. height: math.unit(10, "feet"),
  23023. weight: math.unit(1000, "kg"),
  23024. name: "Side",
  23025. image: {
  23026. source: "./media/characters/ereus/side.svg",
  23027. extra: 1157 / 959,
  23028. bottom: 153 / 1312.5
  23029. }
  23030. },
  23031. },
  23032. [
  23033. {
  23034. name: "Normal",
  23035. height: math.unit(10, "feet"),
  23036. default: true
  23037. },
  23038. ]
  23039. ))
  23040. characterMakers.push(() => makeCharacter(
  23041. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23042. {
  23043. side: {
  23044. height: math.unit(4.5, "feet"),
  23045. weight: math.unit(500, "lb"),
  23046. name: "Side",
  23047. image: {
  23048. source: "./media/characters/e-ter/side.svg",
  23049. extra: 1550 / 1248,
  23050. bottom: 146 / 1694
  23051. }
  23052. },
  23053. },
  23054. [
  23055. {
  23056. name: "Normal",
  23057. height: math.unit(4.5, "feet"),
  23058. default: true
  23059. },
  23060. ]
  23061. ))
  23062. characterMakers.push(() => makeCharacter(
  23063. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23064. {
  23065. side: {
  23066. height: math.unit(9.7, "feet"),
  23067. weight: math.unit(4000, "kg"),
  23068. name: "Side",
  23069. image: {
  23070. source: "./media/characters/yamie/side.svg"
  23071. }
  23072. },
  23073. },
  23074. [
  23075. {
  23076. name: "Normal",
  23077. height: math.unit(9.7, "feet"),
  23078. default: true
  23079. },
  23080. ]
  23081. ))
  23082. characterMakers.push(() => makeCharacter(
  23083. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23084. {
  23085. front: {
  23086. height: math.unit(50, "feet"),
  23087. weight: math.unit(50000, "kg"),
  23088. name: "Front",
  23089. image: {
  23090. source: "./media/characters/anders/front.svg",
  23091. extra: 570 / 539,
  23092. bottom: 14.7 / 586.7
  23093. }
  23094. },
  23095. },
  23096. [
  23097. {
  23098. name: "Large",
  23099. height: math.unit(50, "feet")
  23100. },
  23101. {
  23102. name: "Macro",
  23103. height: math.unit(2000, "feet"),
  23104. default: true
  23105. },
  23106. {
  23107. name: "Megamacro",
  23108. height: math.unit(12, "miles")
  23109. },
  23110. ]
  23111. ))
  23112. characterMakers.push(() => makeCharacter(
  23113. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23114. {
  23115. front: {
  23116. height: math.unit(7 + 2 / 12, "feet"),
  23117. weight: math.unit(300, "lb"),
  23118. name: "Front",
  23119. image: {
  23120. source: "./media/characters/reban/front.svg",
  23121. extra: 1287/1212,
  23122. bottom: 148/1435
  23123. }
  23124. },
  23125. head: {
  23126. height: math.unit(1.95, "feet"),
  23127. name: "Head",
  23128. image: {
  23129. source: "./media/characters/reban/head.svg"
  23130. }
  23131. },
  23132. maw: {
  23133. height: math.unit(0.95, "feet"),
  23134. name: "Maw",
  23135. image: {
  23136. source: "./media/characters/reban/maw.svg"
  23137. }
  23138. },
  23139. foot: {
  23140. height: math.unit(1.65, "feet"),
  23141. name: "Foot",
  23142. image: {
  23143. source: "./media/characters/reban/foot.svg"
  23144. }
  23145. },
  23146. dick: {
  23147. height: math.unit(7 / 5, "feet"),
  23148. name: "Dick",
  23149. image: {
  23150. source: "./media/characters/reban/dick.svg"
  23151. }
  23152. },
  23153. },
  23154. [
  23155. {
  23156. name: "Natural Height",
  23157. height: math.unit(7 + 2 / 12, "feet")
  23158. },
  23159. {
  23160. name: "Macro",
  23161. height: math.unit(500, "feet"),
  23162. default: true
  23163. },
  23164. {
  23165. name: "Canon Height",
  23166. height: math.unit(50, "AU")
  23167. },
  23168. ]
  23169. ))
  23170. characterMakers.push(() => makeCharacter(
  23171. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23172. {
  23173. front: {
  23174. height: math.unit(6, "feet"),
  23175. weight: math.unit(150, "lb"),
  23176. name: "Front",
  23177. image: {
  23178. source: "./media/characters/terrance-keayes/front.svg",
  23179. extra: 1.005,
  23180. bottom: 151 / 1615
  23181. }
  23182. },
  23183. side: {
  23184. height: math.unit(6, "feet"),
  23185. weight: math.unit(150, "lb"),
  23186. name: "Side",
  23187. image: {
  23188. source: "./media/characters/terrance-keayes/side.svg",
  23189. extra: 1.005,
  23190. bottom: 129.4 / 1544
  23191. }
  23192. },
  23193. back: {
  23194. height: math.unit(6, "feet"),
  23195. weight: math.unit(150, "lb"),
  23196. name: "Back",
  23197. image: {
  23198. source: "./media/characters/terrance-keayes/back.svg",
  23199. extra: 1.005,
  23200. bottom: 58.4 / 1557.3
  23201. }
  23202. },
  23203. dick: {
  23204. height: math.unit(6 * 0.208, "feet"),
  23205. name: "Dick",
  23206. image: {
  23207. source: "./media/characters/terrance-keayes/dick.svg"
  23208. }
  23209. },
  23210. },
  23211. [
  23212. {
  23213. name: "Canon Height",
  23214. height: math.unit(35, "miles"),
  23215. default: true
  23216. },
  23217. ]
  23218. ))
  23219. characterMakers.push(() => makeCharacter(
  23220. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23221. {
  23222. front: {
  23223. height: math.unit(6, "feet"),
  23224. weight: math.unit(150, "lb"),
  23225. name: "Front",
  23226. image: {
  23227. source: "./media/characters/ofelia/front.svg",
  23228. extra: 1130/1117,
  23229. bottom: 91/1221
  23230. }
  23231. },
  23232. back: {
  23233. height: math.unit(6, "feet"),
  23234. weight: math.unit(150, "lb"),
  23235. name: "Back",
  23236. image: {
  23237. source: "./media/characters/ofelia/back.svg",
  23238. extra: 1172/1159,
  23239. bottom: 28/1200
  23240. }
  23241. },
  23242. maw: {
  23243. height: math.unit(1, "feet"),
  23244. name: "Maw",
  23245. image: {
  23246. source: "./media/characters/ofelia/maw.svg"
  23247. }
  23248. },
  23249. foot: {
  23250. height: math.unit(1.949, "feet"),
  23251. name: "Foot",
  23252. image: {
  23253. source: "./media/characters/ofelia/foot.svg"
  23254. }
  23255. },
  23256. },
  23257. [
  23258. {
  23259. name: "Canon Height",
  23260. height: math.unit(2000, "miles"),
  23261. default: true
  23262. },
  23263. ]
  23264. ))
  23265. characterMakers.push(() => makeCharacter(
  23266. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23267. {
  23268. front: {
  23269. height: math.unit(6, "feet"),
  23270. weight: math.unit(150, "lb"),
  23271. name: "Front",
  23272. image: {
  23273. source: "./media/characters/samuel/front.svg",
  23274. extra: 265 / 258,
  23275. bottom: 2 / 266.1566
  23276. }
  23277. },
  23278. },
  23279. [
  23280. {
  23281. name: "Macro",
  23282. height: math.unit(100, "feet"),
  23283. default: true
  23284. },
  23285. {
  23286. name: "Full Size",
  23287. height: math.unit(1000, "miles")
  23288. },
  23289. ]
  23290. ))
  23291. characterMakers.push(() => makeCharacter(
  23292. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23293. {
  23294. front: {
  23295. height: math.unit(6, "feet"),
  23296. weight: math.unit(300, "lb"),
  23297. name: "Front",
  23298. image: {
  23299. source: "./media/characters/beishir-kiel/front.svg",
  23300. extra: 569 / 547,
  23301. bottom: 41.9 / 609
  23302. }
  23303. },
  23304. maw: {
  23305. height: math.unit(6 * 0.202, "feet"),
  23306. name: "Maw",
  23307. image: {
  23308. source: "./media/characters/beishir-kiel/maw.svg"
  23309. }
  23310. },
  23311. },
  23312. [
  23313. {
  23314. name: "Macro",
  23315. height: math.unit(300, "feet"),
  23316. default: true
  23317. },
  23318. ]
  23319. ))
  23320. characterMakers.push(() => makeCharacter(
  23321. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23322. {
  23323. front: {
  23324. height: math.unit(5 + 7/12, "feet"),
  23325. weight: math.unit(120, "lb"),
  23326. name: "Front",
  23327. image: {
  23328. source: "./media/characters/logan-grey/front.svg",
  23329. extra: 1836/1738,
  23330. bottom: 108/1944
  23331. }
  23332. },
  23333. back: {
  23334. height: math.unit(5 + 7/12, "feet"),
  23335. weight: math.unit(120, "lb"),
  23336. name: "Back",
  23337. image: {
  23338. source: "./media/characters/logan-grey/back.svg",
  23339. extra: 1880/1794,
  23340. bottom: 24/1904
  23341. }
  23342. },
  23343. frontSfw: {
  23344. height: math.unit(5 + 7/12, "feet"),
  23345. weight: math.unit(120, "lb"),
  23346. name: "Front (SFW)",
  23347. image: {
  23348. source: "./media/characters/logan-grey/front-sfw.svg",
  23349. extra: 1836/1738,
  23350. bottom: 108/1944
  23351. }
  23352. },
  23353. backSfw: {
  23354. height: math.unit(5 + 7/12, "feet"),
  23355. weight: math.unit(120, "lb"),
  23356. name: "Back (SFW)",
  23357. image: {
  23358. source: "./media/characters/logan-grey/back-sfw.svg",
  23359. extra: 1880/1794,
  23360. bottom: 24/1904
  23361. }
  23362. },
  23363. hands: {
  23364. height: math.unit(0.84, "feet"),
  23365. name: "Hands",
  23366. image: {
  23367. source: "./media/characters/logan-grey/hands.svg"
  23368. }
  23369. },
  23370. paws: {
  23371. height: math.unit(0.72, "feet"),
  23372. name: "Paws",
  23373. image: {
  23374. source: "./media/characters/logan-grey/paws.svg"
  23375. }
  23376. },
  23377. cock: {
  23378. height: math.unit(1.45, "feet"),
  23379. name: "Cock",
  23380. image: {
  23381. source: "./media/characters/logan-grey/cock.svg"
  23382. }
  23383. },
  23384. cockAlt: {
  23385. height: math.unit(1.437, "feet"),
  23386. name: "Cock (alt)",
  23387. image: {
  23388. source: "./media/characters/logan-grey/cock-alt.svg"
  23389. }
  23390. },
  23391. },
  23392. [
  23393. {
  23394. name: "Normal",
  23395. height: math.unit(5 + 8 / 12, "feet")
  23396. },
  23397. {
  23398. name: "The 500 Foot Femboy",
  23399. height: math.unit(500, "feet"),
  23400. default: true
  23401. },
  23402. {
  23403. name: "Megmacro",
  23404. height: math.unit(20, "miles")
  23405. },
  23406. ]
  23407. ))
  23408. characterMakers.push(() => makeCharacter(
  23409. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23410. {
  23411. front: {
  23412. height: math.unit(8 + 2 / 12, "feet"),
  23413. weight: math.unit(275, "lb"),
  23414. name: "Front",
  23415. image: {
  23416. source: "./media/characters/draganta/front.svg",
  23417. extra: 1177 / 1135,
  23418. bottom: 33.46 / 1212.1
  23419. }
  23420. },
  23421. },
  23422. [
  23423. {
  23424. name: "Normal",
  23425. height: math.unit(8 + 6 / 12, "feet"),
  23426. default: true
  23427. },
  23428. {
  23429. name: "Macro",
  23430. height: math.unit(150, "feet")
  23431. },
  23432. {
  23433. name: "Megamacro",
  23434. height: math.unit(1000, "miles")
  23435. },
  23436. ]
  23437. ))
  23438. characterMakers.push(() => makeCharacter(
  23439. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23440. {
  23441. front: {
  23442. height: math.unit(1.72, "m"),
  23443. weight: math.unit(80, "lb"),
  23444. name: "Front",
  23445. image: {
  23446. source: "./media/characters/voski/front.svg",
  23447. extra: 2076.22 / 2022.4,
  23448. bottom: 102.7 / 2177.3866
  23449. }
  23450. },
  23451. frontFlaccid: {
  23452. height: math.unit(1.72, "m"),
  23453. weight: math.unit(80, "lb"),
  23454. name: "Front (Flaccid)",
  23455. image: {
  23456. source: "./media/characters/voski/front-flaccid.svg",
  23457. extra: 2076.22 / 2022.4,
  23458. bottom: 102.7 / 2177.3866
  23459. }
  23460. },
  23461. frontErect: {
  23462. height: math.unit(1.72, "m"),
  23463. weight: math.unit(80, "lb"),
  23464. name: "Front (Erect)",
  23465. image: {
  23466. source: "./media/characters/voski/front-erect.svg",
  23467. extra: 2076.22 / 2022.4,
  23468. bottom: 102.7 / 2177.3866
  23469. }
  23470. },
  23471. back: {
  23472. height: math.unit(1.72, "m"),
  23473. weight: math.unit(80, "lb"),
  23474. name: "Back",
  23475. image: {
  23476. source: "./media/characters/voski/back.svg",
  23477. extra: 2104 / 2051,
  23478. bottom: 10.45 / 2113.63
  23479. }
  23480. },
  23481. },
  23482. [
  23483. {
  23484. name: "Normal",
  23485. height: math.unit(1.72, "m")
  23486. },
  23487. {
  23488. name: "Macro",
  23489. height: math.unit(55, "m"),
  23490. default: true
  23491. },
  23492. {
  23493. name: "Macro+",
  23494. height: math.unit(300, "m")
  23495. },
  23496. {
  23497. name: "Macro++",
  23498. height: math.unit(700, "m")
  23499. },
  23500. {
  23501. name: "Macro+++",
  23502. height: math.unit(4500, "m")
  23503. },
  23504. {
  23505. name: "Macro++++",
  23506. height: math.unit(45, "km")
  23507. },
  23508. {
  23509. name: "Macro+++++",
  23510. height: math.unit(1220, "km")
  23511. },
  23512. ]
  23513. ))
  23514. characterMakers.push(() => makeCharacter(
  23515. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23516. {
  23517. front: {
  23518. height: math.unit(2.3, "m"),
  23519. weight: math.unit(304, "kg"),
  23520. name: "Front",
  23521. image: {
  23522. source: "./media/characters/icowom-lee/front.svg",
  23523. extra: 985 / 955,
  23524. bottom: 25.4 / 1012
  23525. }
  23526. },
  23527. fronttentacles: {
  23528. height: math.unit(2.3, "m"),
  23529. weight: math.unit(304, "kg"),
  23530. name: "Front-tentacles",
  23531. image: {
  23532. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23533. extra: 985 / 955,
  23534. bottom: 25.4 / 1012
  23535. }
  23536. },
  23537. back: {
  23538. height: math.unit(2.3, "m"),
  23539. weight: math.unit(304, "kg"),
  23540. name: "Back",
  23541. image: {
  23542. source: "./media/characters/icowom-lee/back.svg",
  23543. extra: 975 / 954,
  23544. bottom: 9.5 / 985
  23545. }
  23546. },
  23547. backtentacles: {
  23548. height: math.unit(2.3, "m"),
  23549. weight: math.unit(304, "kg"),
  23550. name: "Back-tentacles",
  23551. image: {
  23552. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23553. extra: 975 / 954,
  23554. bottom: 9.5 / 985
  23555. }
  23556. },
  23557. frontDressed: {
  23558. height: math.unit(2.3, "m"),
  23559. weight: math.unit(304, "kg"),
  23560. name: "Front (Dressed)",
  23561. image: {
  23562. source: "./media/characters/icowom-lee/front-dressed.svg",
  23563. extra: 3076 / 2933,
  23564. bottom: 51.4 / 3125.1889
  23565. }
  23566. },
  23567. rump: {
  23568. height: math.unit(0.776, "meters"),
  23569. name: "Rump",
  23570. image: {
  23571. source: "./media/characters/icowom-lee/rump.svg"
  23572. }
  23573. },
  23574. genitals: {
  23575. height: math.unit(0.78, "meters"),
  23576. name: "Genitals",
  23577. image: {
  23578. source: "./media/characters/icowom-lee/genitals.svg"
  23579. }
  23580. },
  23581. },
  23582. [
  23583. {
  23584. name: "Normal",
  23585. height: math.unit(2.3, "meters"),
  23586. default: true
  23587. },
  23588. {
  23589. name: "Macro",
  23590. height: math.unit(94, "meters"),
  23591. default: true
  23592. },
  23593. ]
  23594. ))
  23595. characterMakers.push(() => makeCharacter(
  23596. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23597. {
  23598. front: {
  23599. height: math.unit(22, "meters"),
  23600. weight: math.unit(21000, "kg"),
  23601. name: "Front",
  23602. image: {
  23603. source: "./media/characters/shock-diamond/front.svg",
  23604. extra: 2204 / 2053,
  23605. bottom: 65 / 2239.47
  23606. }
  23607. },
  23608. frontNude: {
  23609. height: math.unit(22, "meters"),
  23610. weight: math.unit(21000, "kg"),
  23611. name: "Front (Nude)",
  23612. image: {
  23613. source: "./media/characters/shock-diamond/front-nude.svg",
  23614. extra: 2514 / 2285,
  23615. bottom: 13 / 2527.56
  23616. }
  23617. },
  23618. },
  23619. [
  23620. {
  23621. name: "Normal",
  23622. height: math.unit(3, "meters")
  23623. },
  23624. {
  23625. name: "Macro",
  23626. height: math.unit(22, "meters"),
  23627. default: true
  23628. },
  23629. ]
  23630. ))
  23631. characterMakers.push(() => makeCharacter(
  23632. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23633. {
  23634. front: {
  23635. height: math.unit(5 + 4 / 12, "feet"),
  23636. weight: math.unit(120, "lb"),
  23637. name: "Front",
  23638. image: {
  23639. source: "./media/characters/rory/front.svg",
  23640. extra: 1318/1241,
  23641. bottom: 42/1360
  23642. }
  23643. },
  23644. back: {
  23645. height: math.unit(5 + 4 / 12, "feet"),
  23646. weight: math.unit(120, "lb"),
  23647. name: "Back",
  23648. image: {
  23649. source: "./media/characters/rory/back.svg",
  23650. extra: 1318/1241,
  23651. bottom: 42/1360
  23652. }
  23653. },
  23654. butt: {
  23655. height: math.unit(1.74, "feet"),
  23656. name: "Butt",
  23657. image: {
  23658. source: "./media/characters/rory/butt.svg"
  23659. }
  23660. },
  23661. dick: {
  23662. height: math.unit(1.02, "feet"),
  23663. name: "Dick",
  23664. image: {
  23665. source: "./media/characters/rory/dick.svg"
  23666. }
  23667. },
  23668. paws: {
  23669. height: math.unit(1, "feet"),
  23670. name: "Paws",
  23671. image: {
  23672. source: "./media/characters/rory/paws.svg"
  23673. }
  23674. },
  23675. frontAlt: {
  23676. height: math.unit(5 + 4 / 12, "feet"),
  23677. weight: math.unit(120, "lb"),
  23678. name: "Front (Alt)",
  23679. image: {
  23680. source: "./media/characters/rory/front-alt.svg",
  23681. extra: 589 / 556,
  23682. bottom: 45.7 / 635.76
  23683. }
  23684. },
  23685. frontAltNude: {
  23686. height: math.unit(5 + 4 / 12, "feet"),
  23687. weight: math.unit(120, "lb"),
  23688. name: "Front (Alt, Nude)",
  23689. image: {
  23690. source: "./media/characters/rory/front-alt-nude.svg",
  23691. extra: 589 / 556,
  23692. bottom: 45.7 / 635.76
  23693. }
  23694. },
  23695. side: {
  23696. height: math.unit(5 + 4 / 12, "feet"),
  23697. weight: math.unit(120, "lb"),
  23698. name: "Side",
  23699. image: {
  23700. source: "./media/characters/rory/side.svg",
  23701. extra: 597 / 564,
  23702. bottom: 55 / 653
  23703. }
  23704. },
  23705. backAlt: {
  23706. height: math.unit(5 + 4 / 12, "feet"),
  23707. weight: math.unit(120, "lb"),
  23708. name: "Back (Alt)",
  23709. image: {
  23710. source: "./media/characters/rory/back-alt.svg",
  23711. extra: 620 / 585,
  23712. bottom: 8.86 / 630.43
  23713. }
  23714. },
  23715. dickAlt: {
  23716. height: math.unit(0.86, "feet"),
  23717. name: "Dick (Alt)",
  23718. image: {
  23719. source: "./media/characters/rory/dick-alt.svg"
  23720. }
  23721. },
  23722. },
  23723. [
  23724. {
  23725. name: "Normal",
  23726. height: math.unit(5 + 4 / 12, "feet"),
  23727. default: true
  23728. },
  23729. {
  23730. name: "Macro",
  23731. height: math.unit(100, "feet")
  23732. },
  23733. {
  23734. name: "Macro+",
  23735. height: math.unit(140, "feet")
  23736. },
  23737. {
  23738. name: "Macro++",
  23739. height: math.unit(300, "feet")
  23740. },
  23741. ]
  23742. ))
  23743. characterMakers.push(() => makeCharacter(
  23744. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23745. {
  23746. front: {
  23747. height: math.unit(5 + 9 / 12, "feet"),
  23748. weight: math.unit(190, "lb"),
  23749. name: "Front",
  23750. image: {
  23751. source: "./media/characters/sprisk/front.svg",
  23752. extra: 1225 / 1180,
  23753. bottom: 42.7 / 1266.4
  23754. }
  23755. },
  23756. frontNsfw: {
  23757. height: math.unit(5 + 9 / 12, "feet"),
  23758. weight: math.unit(190, "lb"),
  23759. name: "Front (NSFW)",
  23760. image: {
  23761. source: "./media/characters/sprisk/front-nsfw.svg",
  23762. extra: 1225 / 1180,
  23763. bottom: 42.7 / 1266.4
  23764. }
  23765. },
  23766. back: {
  23767. height: math.unit(5 + 9 / 12, "feet"),
  23768. weight: math.unit(190, "lb"),
  23769. name: "Back",
  23770. image: {
  23771. source: "./media/characters/sprisk/back.svg",
  23772. extra: 1247 / 1200,
  23773. bottom: 5.6 / 1253.04
  23774. }
  23775. },
  23776. },
  23777. [
  23778. {
  23779. name: "Tiny",
  23780. height: math.unit(2, "inches")
  23781. },
  23782. {
  23783. name: "Normal",
  23784. height: math.unit(5 + 9 / 12, "feet"),
  23785. default: true
  23786. },
  23787. {
  23788. name: "Mini Macro",
  23789. height: math.unit(18, "feet")
  23790. },
  23791. {
  23792. name: "Macro",
  23793. height: math.unit(100, "feet")
  23794. },
  23795. {
  23796. name: "MACRO",
  23797. height: math.unit(50, "miles")
  23798. },
  23799. {
  23800. name: "M A C R O",
  23801. height: math.unit(300, "miles")
  23802. },
  23803. ]
  23804. ))
  23805. characterMakers.push(() => makeCharacter(
  23806. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23807. {
  23808. side: {
  23809. height: math.unit(15.6, "meters"),
  23810. weight: math.unit(700000, "kg"),
  23811. name: "Side",
  23812. image: {
  23813. source: "./media/characters/bunsen/side.svg",
  23814. extra: 1644 / 358
  23815. }
  23816. },
  23817. foot: {
  23818. height: math.unit(1.611 * 1644 / 358, "meter"),
  23819. name: "Foot",
  23820. image: {
  23821. source: "./media/characters/bunsen/foot.svg"
  23822. }
  23823. },
  23824. },
  23825. [
  23826. {
  23827. name: "Small",
  23828. height: math.unit(10, "feet")
  23829. },
  23830. {
  23831. name: "Normal",
  23832. height: math.unit(15.6, "meters"),
  23833. default: true
  23834. },
  23835. ]
  23836. ))
  23837. characterMakers.push(() => makeCharacter(
  23838. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23839. {
  23840. front: {
  23841. height: math.unit(4 + 11 / 12, "feet"),
  23842. weight: math.unit(140, "lb"),
  23843. name: "Front",
  23844. image: {
  23845. source: "./media/characters/sesh/front.svg",
  23846. extra: 3420 / 3231,
  23847. bottom: 72 / 3949.5
  23848. }
  23849. },
  23850. },
  23851. [
  23852. {
  23853. name: "Normal",
  23854. height: math.unit(4 + 11 / 12, "feet")
  23855. },
  23856. {
  23857. name: "Grown",
  23858. height: math.unit(15, "feet"),
  23859. default: true
  23860. },
  23861. {
  23862. name: "Macro",
  23863. height: math.unit(1500, "feet")
  23864. },
  23865. {
  23866. name: "Megamacro",
  23867. height: math.unit(30, "miles")
  23868. },
  23869. {
  23870. name: "Continental",
  23871. height: math.unit(3000, "miles")
  23872. },
  23873. {
  23874. name: "Gravity Mass",
  23875. height: math.unit(300000, "miles")
  23876. },
  23877. {
  23878. name: "Planet Buster",
  23879. height: math.unit(30000000, "miles")
  23880. },
  23881. {
  23882. name: "Big",
  23883. height: math.unit(3000000000, "miles")
  23884. },
  23885. ]
  23886. ))
  23887. characterMakers.push(() => makeCharacter(
  23888. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23889. {
  23890. front: {
  23891. height: math.unit(9, "feet"),
  23892. weight: math.unit(350, "lb"),
  23893. name: "Front",
  23894. image: {
  23895. source: "./media/characters/pepper/front.svg",
  23896. extra: 1448 / 1312,
  23897. bottom: 9.4 / 1457.88
  23898. }
  23899. },
  23900. back: {
  23901. height: math.unit(9, "feet"),
  23902. weight: math.unit(350, "lb"),
  23903. name: "Back",
  23904. image: {
  23905. source: "./media/characters/pepper/back.svg",
  23906. extra: 1423 / 1300,
  23907. bottom: 4.6 / 1429
  23908. }
  23909. },
  23910. maw: {
  23911. height: math.unit(0.932, "feet"),
  23912. name: "Maw",
  23913. image: {
  23914. source: "./media/characters/pepper/maw.svg"
  23915. }
  23916. },
  23917. },
  23918. [
  23919. {
  23920. name: "Normal",
  23921. height: math.unit(9, "feet"),
  23922. default: true
  23923. },
  23924. ]
  23925. ))
  23926. characterMakers.push(() => makeCharacter(
  23927. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23928. {
  23929. front: {
  23930. height: math.unit(6, "feet"),
  23931. weight: math.unit(150, "lb"),
  23932. name: "Front",
  23933. image: {
  23934. source: "./media/characters/maelstrom/front.svg",
  23935. extra: 2100 / 1883,
  23936. bottom: 94 / 2196.7
  23937. }
  23938. },
  23939. },
  23940. [
  23941. {
  23942. name: "Less Kaiju",
  23943. height: math.unit(200, "feet")
  23944. },
  23945. {
  23946. name: "Kaiju",
  23947. height: math.unit(400, "feet"),
  23948. default: true
  23949. },
  23950. {
  23951. name: "Kaiju-er",
  23952. height: math.unit(600, "feet")
  23953. },
  23954. ]
  23955. ))
  23956. characterMakers.push(() => makeCharacter(
  23957. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23958. {
  23959. front: {
  23960. height: math.unit(6 + 5 / 12, "feet"),
  23961. weight: math.unit(180, "lb"),
  23962. name: "Front",
  23963. image: {
  23964. source: "./media/characters/lexir/front.svg",
  23965. extra: 180 / 172,
  23966. bottom: 12 / 192
  23967. }
  23968. },
  23969. back: {
  23970. height: math.unit(6 + 5 / 12, "feet"),
  23971. weight: math.unit(180, "lb"),
  23972. name: "Back",
  23973. image: {
  23974. source: "./media/characters/lexir/back.svg",
  23975. extra: 1273/1201,
  23976. bottom: 39/1312
  23977. }
  23978. },
  23979. },
  23980. [
  23981. {
  23982. name: "Very Smal",
  23983. height: math.unit(1, "nm")
  23984. },
  23985. {
  23986. name: "Normal",
  23987. height: math.unit(6 + 5 / 12, "feet"),
  23988. default: true
  23989. },
  23990. {
  23991. name: "Macro",
  23992. height: math.unit(1, "mile")
  23993. },
  23994. {
  23995. name: "Megamacro",
  23996. height: math.unit(50, "miles")
  23997. },
  23998. ]
  23999. ))
  24000. characterMakers.push(() => makeCharacter(
  24001. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24002. {
  24003. front: {
  24004. height: math.unit(1.5, "meters"),
  24005. weight: math.unit(100, "lb"),
  24006. name: "Front",
  24007. image: {
  24008. source: "./media/characters/maksio/front.svg",
  24009. extra: 1549 / 1531,
  24010. bottom: 123.7 / 1674.5429
  24011. }
  24012. },
  24013. back: {
  24014. height: math.unit(1.5, "meters"),
  24015. weight: math.unit(100, "lb"),
  24016. name: "Back",
  24017. image: {
  24018. source: "./media/characters/maksio/back.svg",
  24019. extra: 1541 / 1509,
  24020. bottom: 97 / 1639
  24021. }
  24022. },
  24023. hand: {
  24024. height: math.unit(0.621, "feet"),
  24025. name: "Hand",
  24026. image: {
  24027. source: "./media/characters/maksio/hand.svg"
  24028. }
  24029. },
  24030. foot: {
  24031. height: math.unit(1.611, "feet"),
  24032. name: "Foot",
  24033. image: {
  24034. source: "./media/characters/maksio/foot.svg"
  24035. }
  24036. },
  24037. },
  24038. [
  24039. {
  24040. name: "Shrunken",
  24041. height: math.unit(10, "cm")
  24042. },
  24043. {
  24044. name: "Normal",
  24045. height: math.unit(150, "cm"),
  24046. default: true
  24047. },
  24048. ]
  24049. ))
  24050. characterMakers.push(() => makeCharacter(
  24051. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24052. {
  24053. front: {
  24054. height: math.unit(100, "feet"),
  24055. name: "Front",
  24056. image: {
  24057. source: "./media/characters/erza-bear/front.svg",
  24058. extra: 2449 / 2390,
  24059. bottom: 46 / 2494
  24060. }
  24061. },
  24062. back: {
  24063. height: math.unit(100, "feet"),
  24064. name: "Back",
  24065. image: {
  24066. source: "./media/characters/erza-bear/back.svg",
  24067. extra: 2489 / 2430,
  24068. bottom: 85.4 / 2480
  24069. }
  24070. },
  24071. tail: {
  24072. height: math.unit(42, "feet"),
  24073. name: "Tail",
  24074. image: {
  24075. source: "./media/characters/erza-bear/tail.svg"
  24076. }
  24077. },
  24078. tongue: {
  24079. height: math.unit(8, "feet"),
  24080. name: "Tongue",
  24081. image: {
  24082. source: "./media/characters/erza-bear/tongue.svg"
  24083. }
  24084. },
  24085. dick: {
  24086. height: math.unit(10.5, "feet"),
  24087. name: "Dick",
  24088. image: {
  24089. source: "./media/characters/erza-bear/dick.svg"
  24090. }
  24091. },
  24092. dickVertical: {
  24093. height: math.unit(16.9, "feet"),
  24094. name: "Dick (Vertical)",
  24095. image: {
  24096. source: "./media/characters/erza-bear/dick-vertical.svg"
  24097. }
  24098. },
  24099. },
  24100. [
  24101. {
  24102. name: "Macro",
  24103. height: math.unit(100, "feet"),
  24104. default: true
  24105. },
  24106. ]
  24107. ))
  24108. characterMakers.push(() => makeCharacter(
  24109. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24110. {
  24111. front: {
  24112. height: math.unit(172, "cm"),
  24113. weight: math.unit(73, "kg"),
  24114. name: "Front",
  24115. image: {
  24116. source: "./media/characters/violet-flor/front.svg",
  24117. extra: 1530 / 1442,
  24118. bottom: 61.9 / 1588.8
  24119. }
  24120. },
  24121. back: {
  24122. height: math.unit(180, "cm"),
  24123. weight: math.unit(73, "kg"),
  24124. name: "Back",
  24125. image: {
  24126. source: "./media/characters/violet-flor/back.svg",
  24127. extra: 1692 / 1630,
  24128. bottom: 20 / 1712
  24129. }
  24130. },
  24131. },
  24132. [
  24133. {
  24134. name: "Normal",
  24135. height: math.unit(172, "cm"),
  24136. default: true
  24137. },
  24138. ]
  24139. ))
  24140. characterMakers.push(() => makeCharacter(
  24141. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24142. {
  24143. front: {
  24144. height: math.unit(6, "feet"),
  24145. weight: math.unit(220, "lb"),
  24146. name: "Front",
  24147. image: {
  24148. source: "./media/characters/lynn-rhea/front.svg",
  24149. extra: 310 / 273
  24150. }
  24151. },
  24152. back: {
  24153. height: math.unit(6, "feet"),
  24154. weight: math.unit(220, "lb"),
  24155. name: "Back",
  24156. image: {
  24157. source: "./media/characters/lynn-rhea/back.svg",
  24158. extra: 310 / 273
  24159. }
  24160. },
  24161. dicks: {
  24162. height: math.unit(0.9, "feet"),
  24163. name: "Dicks",
  24164. image: {
  24165. source: "./media/characters/lynn-rhea/dicks.svg"
  24166. }
  24167. },
  24168. slit: {
  24169. height: math.unit(0.4, "feet"),
  24170. name: "Slit",
  24171. image: {
  24172. source: "./media/characters/lynn-rhea/slit.svg"
  24173. }
  24174. },
  24175. },
  24176. [
  24177. {
  24178. name: "Micro",
  24179. height: math.unit(1, "inch")
  24180. },
  24181. {
  24182. name: "Macro",
  24183. height: math.unit(60, "feet"),
  24184. default: true
  24185. },
  24186. {
  24187. name: "Megamacro",
  24188. height: math.unit(2, "miles")
  24189. },
  24190. {
  24191. name: "Gigamacro",
  24192. height: math.unit(3, "earths")
  24193. },
  24194. {
  24195. name: "Galactic",
  24196. height: math.unit(0.8, "galaxies")
  24197. },
  24198. ]
  24199. ))
  24200. characterMakers.push(() => makeCharacter(
  24201. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24202. {
  24203. front: {
  24204. height: math.unit(1600, "feet"),
  24205. weight: math.unit(85758785169, "kg"),
  24206. name: "Front",
  24207. image: {
  24208. source: "./media/characters/valathos/front.svg",
  24209. extra: 1451 / 1339
  24210. }
  24211. },
  24212. },
  24213. [
  24214. {
  24215. name: "Macro",
  24216. height: math.unit(1600, "feet"),
  24217. default: true
  24218. },
  24219. ]
  24220. ))
  24221. characterMakers.push(() => makeCharacter(
  24222. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24223. {
  24224. front: {
  24225. height: math.unit(7 + 5 / 12, "feet"),
  24226. weight: math.unit(300, "lb"),
  24227. name: "Front",
  24228. image: {
  24229. source: "./media/characters/azula/front.svg",
  24230. extra: 3208 / 2880,
  24231. bottom: 80.2 / 3277
  24232. }
  24233. },
  24234. back: {
  24235. height: math.unit(7 + 5 / 12, "feet"),
  24236. weight: math.unit(300, "lb"),
  24237. name: "Back",
  24238. image: {
  24239. source: "./media/characters/azula/back.svg",
  24240. extra: 3169 / 2822,
  24241. bottom: 150.6 / 3321
  24242. }
  24243. },
  24244. },
  24245. [
  24246. {
  24247. name: "Normal",
  24248. height: math.unit(7 + 5 / 12, "feet"),
  24249. default: true
  24250. },
  24251. {
  24252. name: "Big",
  24253. height: math.unit(20, "feet")
  24254. },
  24255. ]
  24256. ))
  24257. characterMakers.push(() => makeCharacter(
  24258. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24259. {
  24260. front: {
  24261. height: math.unit(5 + 1 / 12, "feet"),
  24262. weight: math.unit(110, "lb"),
  24263. name: "Front",
  24264. image: {
  24265. source: "./media/characters/rupert/front.svg",
  24266. extra: 1549 / 1495,
  24267. bottom: 54.2 / 1604.4
  24268. }
  24269. },
  24270. },
  24271. [
  24272. {
  24273. name: "Normal",
  24274. height: math.unit(5 + 1 / 12, "feet"),
  24275. default: true
  24276. },
  24277. ]
  24278. ))
  24279. characterMakers.push(() => makeCharacter(
  24280. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24281. {
  24282. front: {
  24283. height: math.unit(8 + 4 / 12, "feet"),
  24284. weight: math.unit(350, "lb"),
  24285. name: "Front",
  24286. image: {
  24287. source: "./media/characters/sheera-castellar/front.svg",
  24288. extra: 1957 / 1894,
  24289. bottom: 26.97 / 1975.017
  24290. }
  24291. },
  24292. side: {
  24293. height: math.unit(8 + 4 / 12, "feet"),
  24294. weight: math.unit(350, "lb"),
  24295. name: "Side",
  24296. image: {
  24297. source: "./media/characters/sheera-castellar/side.svg",
  24298. extra: 1957 / 1894
  24299. }
  24300. },
  24301. back: {
  24302. height: math.unit(8 + 4 / 12, "feet"),
  24303. weight: math.unit(350, "lb"),
  24304. name: "Back",
  24305. image: {
  24306. source: "./media/characters/sheera-castellar/back.svg",
  24307. extra: 1957 / 1894
  24308. }
  24309. },
  24310. angled: {
  24311. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24312. weight: math.unit(350, "lb"),
  24313. name: "Angled",
  24314. image: {
  24315. source: "./media/characters/sheera-castellar/angled.svg",
  24316. extra: 1807 / 1707,
  24317. bottom: 68 / 1875
  24318. }
  24319. },
  24320. genitals: {
  24321. height: math.unit(2.2, "feet"),
  24322. name: "Genitals",
  24323. image: {
  24324. source: "./media/characters/sheera-castellar/genitals.svg"
  24325. }
  24326. },
  24327. taur: {
  24328. height: math.unit(10 + 6/12, "feet"),
  24329. name: "Taur",
  24330. image: {
  24331. source: "./media/characters/sheera-castellar/taur.svg",
  24332. extra: 2017/1909,
  24333. bottom: 185/2202
  24334. }
  24335. },
  24336. },
  24337. [
  24338. {
  24339. name: "Normal",
  24340. height: math.unit(8 + 4 / 12, "feet")
  24341. },
  24342. {
  24343. name: "Macro",
  24344. height: math.unit(150, "feet"),
  24345. default: true
  24346. },
  24347. {
  24348. name: "Macro+",
  24349. height: math.unit(800, "feet")
  24350. },
  24351. ]
  24352. ))
  24353. characterMakers.push(() => makeCharacter(
  24354. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24355. {
  24356. front: {
  24357. height: math.unit(6, "feet"),
  24358. weight: math.unit(150, "lb"),
  24359. name: "Front",
  24360. image: {
  24361. source: "./media/characters/jaipur/front.svg",
  24362. extra: 3860 / 3731,
  24363. bottom: 287 / 4140
  24364. }
  24365. },
  24366. back: {
  24367. height: math.unit(6, "feet"),
  24368. weight: math.unit(150, "lb"),
  24369. name: "Back",
  24370. image: {
  24371. source: "./media/characters/jaipur/back.svg",
  24372. extra: 1637/1561,
  24373. bottom: 154/1791
  24374. }
  24375. },
  24376. },
  24377. [
  24378. {
  24379. name: "Normal",
  24380. height: math.unit(1.85, "meters"),
  24381. default: true
  24382. },
  24383. {
  24384. name: "Macro",
  24385. height: math.unit(150, "meters")
  24386. },
  24387. {
  24388. name: "Macro+",
  24389. height: math.unit(0.5, "miles")
  24390. },
  24391. {
  24392. name: "Macro++",
  24393. height: math.unit(2.5, "miles")
  24394. },
  24395. {
  24396. name: "Macro+++",
  24397. height: math.unit(12, "miles")
  24398. },
  24399. {
  24400. name: "Macro++++",
  24401. height: math.unit(120, "miles")
  24402. },
  24403. {
  24404. name: "Macro+++++",
  24405. height: math.unit(1200, "miles")
  24406. },
  24407. ]
  24408. ))
  24409. characterMakers.push(() => makeCharacter(
  24410. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24411. {
  24412. front: {
  24413. height: math.unit(6, "feet"),
  24414. weight: math.unit(150, "lb"),
  24415. name: "Front",
  24416. image: {
  24417. source: "./media/characters/sheila-wolf/front.svg",
  24418. extra: 1931 / 1808,
  24419. bottom: 29.5 / 1960
  24420. }
  24421. },
  24422. dick: {
  24423. height: math.unit(1.464, "feet"),
  24424. name: "Dick",
  24425. image: {
  24426. source: "./media/characters/sheila-wolf/dick.svg"
  24427. }
  24428. },
  24429. muzzle: {
  24430. height: math.unit(0.513, "feet"),
  24431. name: "Muzzle",
  24432. image: {
  24433. source: "./media/characters/sheila-wolf/muzzle.svg"
  24434. }
  24435. },
  24436. },
  24437. [
  24438. {
  24439. name: "Macro",
  24440. height: math.unit(70, "feet"),
  24441. default: true
  24442. },
  24443. ]
  24444. ))
  24445. characterMakers.push(() => makeCharacter(
  24446. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24447. {
  24448. front: {
  24449. height: math.unit(32, "meters"),
  24450. weight: math.unit(300000, "kg"),
  24451. name: "Front",
  24452. image: {
  24453. source: "./media/characters/almor/front.svg",
  24454. extra: 1408 / 1322,
  24455. bottom: 94.6 / 1506.5
  24456. }
  24457. },
  24458. },
  24459. [
  24460. {
  24461. name: "Macro",
  24462. height: math.unit(32, "meters"),
  24463. default: true
  24464. },
  24465. ]
  24466. ))
  24467. characterMakers.push(() => makeCharacter(
  24468. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24469. {
  24470. front: {
  24471. height: math.unit(7, "feet"),
  24472. weight: math.unit(200, "lb"),
  24473. name: "Front",
  24474. image: {
  24475. source: "./media/characters/silver/front.svg",
  24476. extra: 472.1 / 450.5,
  24477. bottom: 26.5 / 499.424
  24478. }
  24479. },
  24480. },
  24481. [
  24482. {
  24483. name: "Normal",
  24484. height: math.unit(7, "feet"),
  24485. default: true
  24486. },
  24487. {
  24488. name: "Macro",
  24489. height: math.unit(800, "feet")
  24490. },
  24491. {
  24492. name: "Megamacro",
  24493. height: math.unit(250, "miles")
  24494. },
  24495. ]
  24496. ))
  24497. characterMakers.push(() => makeCharacter(
  24498. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24499. {
  24500. front: {
  24501. height: math.unit(6, "feet"),
  24502. weight: math.unit(150, "lb"),
  24503. name: "Front",
  24504. image: {
  24505. source: "./media/characters/pliskin/front.svg",
  24506. extra: 1469 / 1359,
  24507. bottom: 70 / 1540
  24508. }
  24509. },
  24510. },
  24511. [
  24512. {
  24513. name: "Micro",
  24514. height: math.unit(3, "inches")
  24515. },
  24516. {
  24517. name: "Normal",
  24518. height: math.unit(5 + 11 / 12, "feet"),
  24519. default: true
  24520. },
  24521. {
  24522. name: "Macro",
  24523. height: math.unit(120, "feet")
  24524. },
  24525. ]
  24526. ))
  24527. characterMakers.push(() => makeCharacter(
  24528. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24529. {
  24530. front: {
  24531. height: math.unit(6, "feet"),
  24532. weight: math.unit(150, "lb"),
  24533. name: "Front",
  24534. image: {
  24535. source: "./media/characters/sammy/front.svg",
  24536. extra: 1193 / 1089,
  24537. bottom: 30.5 / 1226
  24538. }
  24539. },
  24540. },
  24541. [
  24542. {
  24543. name: "Macro",
  24544. height: math.unit(1700, "feet"),
  24545. default: true
  24546. },
  24547. {
  24548. name: "Examacro",
  24549. height: math.unit(2.5e9, "lightyears")
  24550. },
  24551. ]
  24552. ))
  24553. characterMakers.push(() => makeCharacter(
  24554. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24555. {
  24556. front: {
  24557. height: math.unit(21, "meters"),
  24558. weight: math.unit(12, "tonnes"),
  24559. name: "Front",
  24560. image: {
  24561. source: "./media/characters/kuru/front.svg",
  24562. extra: 4301 / 3785,
  24563. bottom: 371.3 / 4691
  24564. }
  24565. },
  24566. },
  24567. [
  24568. {
  24569. name: "Macro",
  24570. height: math.unit(21, "meters"),
  24571. default: true
  24572. },
  24573. ]
  24574. ))
  24575. characterMakers.push(() => makeCharacter(
  24576. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24577. {
  24578. front: {
  24579. height: math.unit(23, "meters"),
  24580. weight: math.unit(12.2, "tonnes"),
  24581. name: "Front",
  24582. image: {
  24583. source: "./media/characters/rakka/front.svg",
  24584. extra: 4670 / 4169,
  24585. bottom: 301 / 4968.7
  24586. }
  24587. },
  24588. },
  24589. [
  24590. {
  24591. name: "Macro",
  24592. height: math.unit(23, "meters"),
  24593. default: true
  24594. },
  24595. ]
  24596. ))
  24597. characterMakers.push(() => makeCharacter(
  24598. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24599. {
  24600. front: {
  24601. height: math.unit(6, "feet"),
  24602. weight: math.unit(150, "lb"),
  24603. name: "Front",
  24604. image: {
  24605. source: "./media/characters/rhys-feline/front.svg",
  24606. extra: 2488 / 2308,
  24607. bottom: 35.67 / 2519.19
  24608. }
  24609. },
  24610. },
  24611. [
  24612. {
  24613. name: "Really Small",
  24614. height: math.unit(1, "nm")
  24615. },
  24616. {
  24617. name: "Micro",
  24618. height: math.unit(4, "inches")
  24619. },
  24620. {
  24621. name: "Normal",
  24622. height: math.unit(4 + 10 / 12, "feet"),
  24623. default: true
  24624. },
  24625. {
  24626. name: "Macro",
  24627. height: math.unit(100, "feet")
  24628. },
  24629. {
  24630. name: "Megamacto",
  24631. height: math.unit(50, "miles")
  24632. },
  24633. ]
  24634. ))
  24635. characterMakers.push(() => makeCharacter(
  24636. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24637. {
  24638. side: {
  24639. height: math.unit(30, "feet"),
  24640. weight: math.unit(35000, "kg"),
  24641. name: "Side",
  24642. image: {
  24643. source: "./media/characters/alydar/side.svg",
  24644. extra: 234 / 222,
  24645. bottom: 6.5 / 241
  24646. }
  24647. },
  24648. front: {
  24649. height: math.unit(30, "feet"),
  24650. weight: math.unit(35000, "kg"),
  24651. name: "Front",
  24652. image: {
  24653. source: "./media/characters/alydar/front.svg",
  24654. extra: 223.37 / 210.2,
  24655. bottom: 22.3 / 246.76
  24656. }
  24657. },
  24658. top: {
  24659. height: math.unit(64.54, "feet"),
  24660. weight: math.unit(35000, "kg"),
  24661. name: "Top",
  24662. image: {
  24663. source: "./media/characters/alydar/top.svg"
  24664. }
  24665. },
  24666. anthro: {
  24667. height: math.unit(30, "feet"),
  24668. weight: math.unit(9000, "kg"),
  24669. name: "Anthro",
  24670. image: {
  24671. source: "./media/characters/alydar/anthro.svg",
  24672. extra: 432 / 421,
  24673. bottom: 7.18 / 440
  24674. }
  24675. },
  24676. maw: {
  24677. height: math.unit(11.693, "feet"),
  24678. name: "Maw",
  24679. image: {
  24680. source: "./media/characters/alydar/maw.svg"
  24681. }
  24682. },
  24683. head: {
  24684. height: math.unit(11.693, "feet"),
  24685. name: "Head",
  24686. image: {
  24687. source: "./media/characters/alydar/head.svg"
  24688. }
  24689. },
  24690. headAlt: {
  24691. height: math.unit(12.861, "feet"),
  24692. name: "Head (Alt)",
  24693. image: {
  24694. source: "./media/characters/alydar/head-alt.svg"
  24695. }
  24696. },
  24697. wing: {
  24698. height: math.unit(20.712, "feet"),
  24699. name: "Wing",
  24700. image: {
  24701. source: "./media/characters/alydar/wing.svg"
  24702. }
  24703. },
  24704. wingFeather: {
  24705. height: math.unit(9.662, "feet"),
  24706. name: "Wing Feather",
  24707. image: {
  24708. source: "./media/characters/alydar/wing-feather.svg"
  24709. }
  24710. },
  24711. countourFeather: {
  24712. height: math.unit(4.154, "feet"),
  24713. name: "Contour Feather",
  24714. image: {
  24715. source: "./media/characters/alydar/contour-feather.svg"
  24716. }
  24717. },
  24718. },
  24719. [
  24720. {
  24721. name: "Diplomatic",
  24722. height: math.unit(13, "feet"),
  24723. default: true
  24724. },
  24725. {
  24726. name: "Small",
  24727. height: math.unit(30, "feet")
  24728. },
  24729. {
  24730. name: "Normal",
  24731. height: math.unit(95, "feet"),
  24732. default: true
  24733. },
  24734. {
  24735. name: "Large",
  24736. height: math.unit(285, "feet")
  24737. },
  24738. {
  24739. name: "Incomprehensible",
  24740. height: math.unit(450, "megameters")
  24741. },
  24742. ]
  24743. ))
  24744. characterMakers.push(() => makeCharacter(
  24745. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24746. {
  24747. side: {
  24748. height: math.unit(11, "feet"),
  24749. weight: math.unit(1750, "kg"),
  24750. name: "Side",
  24751. image: {
  24752. source: "./media/characters/selicia/side.svg",
  24753. extra: 440 / 396,
  24754. bottom: 24.8 / 465.979
  24755. }
  24756. },
  24757. maw: {
  24758. height: math.unit(4.665, "feet"),
  24759. name: "Maw",
  24760. image: {
  24761. source: "./media/characters/selicia/maw.svg"
  24762. }
  24763. },
  24764. },
  24765. [
  24766. {
  24767. name: "Normal",
  24768. height: math.unit(11, "feet"),
  24769. default: true
  24770. },
  24771. ]
  24772. ))
  24773. characterMakers.push(() => makeCharacter(
  24774. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24775. {
  24776. side: {
  24777. height: math.unit(2 + 6 / 12, "feet"),
  24778. weight: math.unit(30, "lb"),
  24779. name: "Side",
  24780. image: {
  24781. source: "./media/characters/layla/side.svg",
  24782. extra: 244 / 188,
  24783. bottom: 18.2 / 262.1
  24784. }
  24785. },
  24786. back: {
  24787. height: math.unit(2 + 6 / 12, "feet"),
  24788. weight: math.unit(30, "lb"),
  24789. name: "Back",
  24790. image: {
  24791. source: "./media/characters/layla/back.svg",
  24792. extra: 308 / 241.5,
  24793. bottom: 8.9 / 316.8
  24794. }
  24795. },
  24796. cumming: {
  24797. height: math.unit(2 + 6 / 12, "feet"),
  24798. weight: math.unit(30, "lb"),
  24799. name: "Cumming",
  24800. image: {
  24801. source: "./media/characters/layla/cumming.svg",
  24802. extra: 342 / 279,
  24803. bottom: 595 / 938
  24804. }
  24805. },
  24806. dickFlaccid: {
  24807. height: math.unit(2.595, "feet"),
  24808. name: "Flaccid Genitals",
  24809. image: {
  24810. source: "./media/characters/layla/dick-flaccid.svg"
  24811. }
  24812. },
  24813. dickErect: {
  24814. height: math.unit(2.359, "feet"),
  24815. name: "Erect Genitals",
  24816. image: {
  24817. source: "./media/characters/layla/dick-erect.svg"
  24818. }
  24819. },
  24820. dragon: {
  24821. height: math.unit(40, "feet"),
  24822. name: "Dragon",
  24823. image: {
  24824. source: "./media/characters/layla/dragon.svg",
  24825. extra: 610/535,
  24826. bottom: 367/977
  24827. }
  24828. },
  24829. taur: {
  24830. height: math.unit(30, "feet"),
  24831. name: "Taur",
  24832. image: {
  24833. source: "./media/characters/layla/taur.svg",
  24834. extra: 1268/1199,
  24835. bottom: 112/1380
  24836. }
  24837. },
  24838. },
  24839. [
  24840. {
  24841. name: "Micro",
  24842. height: math.unit(1, "inch")
  24843. },
  24844. {
  24845. name: "Small",
  24846. height: math.unit(1, "foot")
  24847. },
  24848. {
  24849. name: "Normal",
  24850. height: math.unit(2 + 6 / 12, "feet"),
  24851. default: true
  24852. },
  24853. {
  24854. name: "Macro",
  24855. height: math.unit(200, "feet")
  24856. },
  24857. {
  24858. name: "Megamacro",
  24859. height: math.unit(1000, "miles")
  24860. },
  24861. {
  24862. name: "Planetary",
  24863. height: math.unit(8000, "miles")
  24864. },
  24865. {
  24866. name: "True Layla",
  24867. height: math.unit(200000 * 7, "multiverses")
  24868. },
  24869. ]
  24870. ))
  24871. characterMakers.push(() => makeCharacter(
  24872. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24873. {
  24874. back: {
  24875. height: math.unit(10.5, "feet"),
  24876. weight: math.unit(800, "lb"),
  24877. name: "Back",
  24878. image: {
  24879. source: "./media/characters/knox/back.svg",
  24880. extra: 1486 / 1089,
  24881. bottom: 107 / 1601.4
  24882. }
  24883. },
  24884. side: {
  24885. height: math.unit(10.5, "feet"),
  24886. weight: math.unit(800, "lb"),
  24887. name: "Side",
  24888. image: {
  24889. source: "./media/characters/knox/side.svg",
  24890. extra: 244 / 218,
  24891. bottom: 14 / 260
  24892. }
  24893. },
  24894. },
  24895. [
  24896. {
  24897. name: "Compact",
  24898. height: math.unit(10.5, "feet"),
  24899. default: true
  24900. },
  24901. {
  24902. name: "Dynamax",
  24903. height: math.unit(210, "feet")
  24904. },
  24905. {
  24906. name: "Full Macro",
  24907. height: math.unit(850, "feet")
  24908. },
  24909. ]
  24910. ))
  24911. characterMakers.push(() => makeCharacter(
  24912. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24913. {
  24914. front: {
  24915. height: math.unit(28, "feet"),
  24916. weight: math.unit(10500, "lb"),
  24917. name: "Front",
  24918. image: {
  24919. source: "./media/characters/kayda/front.svg",
  24920. extra: 1536 / 1428,
  24921. bottom: 68.7 / 1603
  24922. }
  24923. },
  24924. back: {
  24925. height: math.unit(28, "feet"),
  24926. weight: math.unit(10500, "lb"),
  24927. name: "Back",
  24928. image: {
  24929. source: "./media/characters/kayda/back.svg",
  24930. extra: 1557 / 1464,
  24931. bottom: 39.5 / 1597.49
  24932. }
  24933. },
  24934. dick: {
  24935. height: math.unit(3.858, "feet"),
  24936. name: "Dick",
  24937. image: {
  24938. source: "./media/characters/kayda/dick.svg"
  24939. }
  24940. },
  24941. },
  24942. [
  24943. {
  24944. name: "Macro",
  24945. height: math.unit(28, "feet"),
  24946. default: true
  24947. },
  24948. ]
  24949. ))
  24950. characterMakers.push(() => makeCharacter(
  24951. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24952. {
  24953. front: {
  24954. height: math.unit(10 + 11 / 12, "feet"),
  24955. weight: math.unit(1400, "lb"),
  24956. name: "Front",
  24957. image: {
  24958. source: "./media/characters/brian/front.svg",
  24959. extra: 737 / 692,
  24960. bottom: 55.4 / 785
  24961. }
  24962. },
  24963. },
  24964. [
  24965. {
  24966. name: "Normal",
  24967. height: math.unit(10 + 11 / 12, "feet"),
  24968. default: true
  24969. },
  24970. ]
  24971. ))
  24972. characterMakers.push(() => makeCharacter(
  24973. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24974. {
  24975. front: {
  24976. height: math.unit(5 + 8 / 12, "feet"),
  24977. weight: math.unit(140, "lb"),
  24978. name: "Front",
  24979. image: {
  24980. source: "./media/characters/khemri/front.svg",
  24981. extra: 4780 / 4059,
  24982. bottom: 80.1 / 4859.25
  24983. }
  24984. },
  24985. },
  24986. [
  24987. {
  24988. name: "Micro",
  24989. height: math.unit(6, "inches")
  24990. },
  24991. {
  24992. name: "Normal",
  24993. height: math.unit(5 + 8 / 12, "feet"),
  24994. default: true
  24995. },
  24996. ]
  24997. ))
  24998. characterMakers.push(() => makeCharacter(
  24999. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25000. {
  25001. front: {
  25002. height: math.unit(13, "feet"),
  25003. weight: math.unit(1700, "lb"),
  25004. name: "Front",
  25005. image: {
  25006. source: "./media/characters/felix-braveheart/front.svg",
  25007. extra: 1222 / 1157,
  25008. bottom: 53.2 / 1280
  25009. }
  25010. },
  25011. back: {
  25012. height: math.unit(13, "feet"),
  25013. weight: math.unit(1700, "lb"),
  25014. name: "Back",
  25015. image: {
  25016. source: "./media/characters/felix-braveheart/back.svg",
  25017. extra: 1277 / 1203,
  25018. bottom: 50.2 / 1327
  25019. }
  25020. },
  25021. feral: {
  25022. height: math.unit(6, "feet"),
  25023. weight: math.unit(400, "lb"),
  25024. name: "Feral",
  25025. image: {
  25026. source: "./media/characters/felix-braveheart/feral.svg",
  25027. extra: 682 / 625,
  25028. bottom: 6.9 / 688
  25029. }
  25030. },
  25031. },
  25032. [
  25033. {
  25034. name: "Normal",
  25035. height: math.unit(13, "feet"),
  25036. default: true
  25037. },
  25038. ]
  25039. ))
  25040. characterMakers.push(() => makeCharacter(
  25041. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25042. {
  25043. side: {
  25044. height: math.unit(5 + 11 / 12, "feet"),
  25045. weight: math.unit(1400, "lb"),
  25046. name: "Side",
  25047. image: {
  25048. source: "./media/characters/shadow-blade/side.svg",
  25049. extra: 1726 / 1267,
  25050. bottom: 58.4 / 1785
  25051. }
  25052. },
  25053. },
  25054. [
  25055. {
  25056. name: "Normal",
  25057. height: math.unit(5 + 11 / 12, "feet"),
  25058. default: true
  25059. },
  25060. ]
  25061. ))
  25062. characterMakers.push(() => makeCharacter(
  25063. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25064. {
  25065. front: {
  25066. height: math.unit(1 + 6 / 12, "feet"),
  25067. weight: math.unit(25, "lb"),
  25068. name: "Front",
  25069. image: {
  25070. source: "./media/characters/karla-halldor/front.svg",
  25071. extra: 1459 / 1383,
  25072. bottom: 12 / 1472
  25073. }
  25074. },
  25075. },
  25076. [
  25077. {
  25078. name: "Normal",
  25079. height: math.unit(1 + 6 / 12, "feet"),
  25080. default: true
  25081. },
  25082. ]
  25083. ))
  25084. characterMakers.push(() => makeCharacter(
  25085. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25086. {
  25087. front: {
  25088. height: math.unit(6 + 2 / 12, "feet"),
  25089. weight: math.unit(160, "lb"),
  25090. name: "Front",
  25091. image: {
  25092. source: "./media/characters/ariam/front.svg",
  25093. extra: 1073/976,
  25094. bottom: 52/1125
  25095. }
  25096. },
  25097. back: {
  25098. height: math.unit(6 + 2/12, "feet"),
  25099. weight: math.unit(160, "lb"),
  25100. name: "Back",
  25101. image: {
  25102. source: "./media/characters/ariam/back.svg",
  25103. extra: 1103/1023,
  25104. bottom: 9/1112
  25105. }
  25106. },
  25107. dressed: {
  25108. height: math.unit(6 + 2/12, "feet"),
  25109. weight: math.unit(160, "lb"),
  25110. name: "Dressed",
  25111. image: {
  25112. source: "./media/characters/ariam/dressed.svg",
  25113. extra: 1099/1009,
  25114. bottom: 25/1124
  25115. }
  25116. },
  25117. squatting: {
  25118. height: math.unit(4.1, "feet"),
  25119. weight: math.unit(160, "lb"),
  25120. name: "Squatting",
  25121. image: {
  25122. source: "./media/characters/ariam/squatting.svg",
  25123. extra: 2617 / 2112,
  25124. bottom: 61.2 / 2681,
  25125. }
  25126. },
  25127. },
  25128. [
  25129. {
  25130. name: "Normal",
  25131. height: math.unit(6 + 2 / 12, "feet"),
  25132. default: true
  25133. },
  25134. {
  25135. name: "Normal+",
  25136. height: math.unit(4, "meters")
  25137. },
  25138. {
  25139. name: "Macro",
  25140. height: math.unit(50, "meters")
  25141. },
  25142. {
  25143. name: "Macro+",
  25144. height: math.unit(100, "meters")
  25145. },
  25146. {
  25147. name: "Megamacro",
  25148. height: math.unit(20, "km")
  25149. },
  25150. {
  25151. name: "Caretaker",
  25152. height: math.unit(444, "megameters")
  25153. },
  25154. ]
  25155. ))
  25156. characterMakers.push(() => makeCharacter(
  25157. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25158. {
  25159. front: {
  25160. height: math.unit(1.67, "meters"),
  25161. weight: math.unit(140, "lb"),
  25162. name: "Front",
  25163. image: {
  25164. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25165. extra: 438 / 410,
  25166. bottom: 0.75 / 439
  25167. }
  25168. },
  25169. },
  25170. [
  25171. {
  25172. name: "Shrunken",
  25173. height: math.unit(7.6, "cm")
  25174. },
  25175. {
  25176. name: "Human Scale",
  25177. height: math.unit(1.67, "meters")
  25178. },
  25179. {
  25180. name: "Wolxi Scale",
  25181. height: math.unit(36.7, "meters"),
  25182. default: true
  25183. },
  25184. ]
  25185. ))
  25186. characterMakers.push(() => makeCharacter(
  25187. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25188. {
  25189. front: {
  25190. height: math.unit(1.73, "meters"),
  25191. weight: math.unit(240, "lb"),
  25192. name: "Front",
  25193. image: {
  25194. source: "./media/characters/izue-two-mothers/front.svg",
  25195. extra: 469 / 437,
  25196. bottom: 1.24 / 470.6
  25197. }
  25198. },
  25199. },
  25200. [
  25201. {
  25202. name: "Shrunken",
  25203. height: math.unit(7.86, "cm")
  25204. },
  25205. {
  25206. name: "Human Scale",
  25207. height: math.unit(1.73, "meters")
  25208. },
  25209. {
  25210. name: "Wolxi Scale",
  25211. height: math.unit(38, "meters"),
  25212. default: true
  25213. },
  25214. ]
  25215. ))
  25216. characterMakers.push(() => makeCharacter(
  25217. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25218. {
  25219. front: {
  25220. height: math.unit(1.55, "meters"),
  25221. weight: math.unit(120, "lb"),
  25222. name: "Front",
  25223. image: {
  25224. source: "./media/characters/teeku-love-shack/front.svg",
  25225. extra: 387 / 362,
  25226. bottom: 1.51 / 388
  25227. }
  25228. },
  25229. },
  25230. [
  25231. {
  25232. name: "Shrunken",
  25233. height: math.unit(7, "cm")
  25234. },
  25235. {
  25236. name: "Human Scale",
  25237. height: math.unit(1.55, "meters")
  25238. },
  25239. {
  25240. name: "Wolxi Scale",
  25241. height: math.unit(34.1, "meters"),
  25242. default: true
  25243. },
  25244. ]
  25245. ))
  25246. characterMakers.push(() => makeCharacter(
  25247. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25248. {
  25249. front: {
  25250. height: math.unit(1.83, "meters"),
  25251. weight: math.unit(135, "lb"),
  25252. name: "Front",
  25253. image: {
  25254. source: "./media/characters/dejma-the-red/front.svg",
  25255. extra: 480 / 458,
  25256. bottom: 1.8 / 482
  25257. }
  25258. },
  25259. },
  25260. [
  25261. {
  25262. name: "Shrunken",
  25263. height: math.unit(8.3, "cm")
  25264. },
  25265. {
  25266. name: "Human Scale",
  25267. height: math.unit(1.83, "meters")
  25268. },
  25269. {
  25270. name: "Wolxi Scale",
  25271. height: math.unit(40, "meters"),
  25272. default: true
  25273. },
  25274. ]
  25275. ))
  25276. characterMakers.push(() => makeCharacter(
  25277. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25278. {
  25279. front: {
  25280. height: math.unit(1.78, "meters"),
  25281. weight: math.unit(65, "kg"),
  25282. name: "Front",
  25283. image: {
  25284. source: "./media/characters/aki/front.svg",
  25285. extra: 452 / 415
  25286. }
  25287. },
  25288. frontNsfw: {
  25289. height: math.unit(1.78, "meters"),
  25290. weight: math.unit(65, "kg"),
  25291. name: "Front (NSFW)",
  25292. image: {
  25293. source: "./media/characters/aki/front-nsfw.svg",
  25294. extra: 452 / 415
  25295. }
  25296. },
  25297. back: {
  25298. height: math.unit(1.78, "meters"),
  25299. weight: math.unit(65, "kg"),
  25300. name: "Back",
  25301. image: {
  25302. source: "./media/characters/aki/back.svg",
  25303. extra: 452 / 415
  25304. }
  25305. },
  25306. rump: {
  25307. height: math.unit(2.05, "feet"),
  25308. name: "Rump",
  25309. image: {
  25310. source: "./media/characters/aki/rump.svg"
  25311. }
  25312. },
  25313. dick: {
  25314. height: math.unit(0.95, "feet"),
  25315. name: "Dick",
  25316. image: {
  25317. source: "./media/characters/aki/dick.svg"
  25318. }
  25319. },
  25320. },
  25321. [
  25322. {
  25323. name: "Micro",
  25324. height: math.unit(15, "cm")
  25325. },
  25326. {
  25327. name: "Normal",
  25328. height: math.unit(178, "cm"),
  25329. default: true
  25330. },
  25331. {
  25332. name: "Macro",
  25333. height: math.unit(214, "m")
  25334. },
  25335. {
  25336. name: "Macro+",
  25337. height: math.unit(534, "m")
  25338. },
  25339. ]
  25340. ))
  25341. characterMakers.push(() => makeCharacter(
  25342. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25343. {
  25344. front: {
  25345. height: math.unit(5 + 5 / 12, "feet"),
  25346. weight: math.unit(120, "lb"),
  25347. name: "Front",
  25348. image: {
  25349. source: "./media/characters/ari/front.svg",
  25350. extra: 1550/1471,
  25351. bottom: 39/1589
  25352. }
  25353. },
  25354. },
  25355. [
  25356. {
  25357. name: "Normal",
  25358. height: math.unit(5 + 5 / 12, "feet")
  25359. },
  25360. {
  25361. name: "Macro",
  25362. height: math.unit(100, "feet"),
  25363. default: true
  25364. },
  25365. {
  25366. name: "Megamacro",
  25367. height: math.unit(100, "miles")
  25368. },
  25369. {
  25370. name: "Gigamacro",
  25371. height: math.unit(80000, "miles")
  25372. },
  25373. ]
  25374. ))
  25375. characterMakers.push(() => makeCharacter(
  25376. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25377. {
  25378. side: {
  25379. height: math.unit(9, "feet"),
  25380. weight: math.unit(400, "kg"),
  25381. name: "Side",
  25382. image: {
  25383. source: "./media/characters/bolt/side.svg",
  25384. extra: 1126 / 896,
  25385. bottom: 60 / 1187.3,
  25386. }
  25387. },
  25388. },
  25389. [
  25390. {
  25391. name: "Micro",
  25392. height: math.unit(5, "inches")
  25393. },
  25394. {
  25395. name: "Normal",
  25396. height: math.unit(9, "feet"),
  25397. default: true
  25398. },
  25399. {
  25400. name: "Macro",
  25401. height: math.unit(700, "feet")
  25402. },
  25403. {
  25404. name: "Max Size",
  25405. height: math.unit(1.52e22, "yottameters")
  25406. },
  25407. ]
  25408. ))
  25409. characterMakers.push(() => makeCharacter(
  25410. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25411. {
  25412. front: {
  25413. height: math.unit(4.3, "meters"),
  25414. weight: math.unit(3, "tons"),
  25415. name: "Front",
  25416. image: {
  25417. source: "./media/characters/draekon-sylviar/front.svg",
  25418. extra: 2072/1512,
  25419. bottom: 74/2146
  25420. }
  25421. },
  25422. back: {
  25423. height: math.unit(4.3, "meters"),
  25424. weight: math.unit(3, "tons"),
  25425. name: "Back",
  25426. image: {
  25427. source: "./media/characters/draekon-sylviar/back.svg",
  25428. extra: 1639/1483,
  25429. bottom: 41/1680
  25430. }
  25431. },
  25432. feral: {
  25433. height: math.unit(1.15, "meters"),
  25434. weight: math.unit(3, "tons"),
  25435. name: "Feral",
  25436. image: {
  25437. source: "./media/characters/draekon-sylviar/feral.svg",
  25438. extra: 1033/395,
  25439. bottom: 130/1163
  25440. }
  25441. },
  25442. maw: {
  25443. height: math.unit(1.3, "meters"),
  25444. name: "Maw",
  25445. image: {
  25446. source: "./media/characters/draekon-sylviar/maw.svg"
  25447. }
  25448. },
  25449. mawSeparated: {
  25450. height: math.unit(1.53, "meters"),
  25451. name: "Separated Maw",
  25452. image: {
  25453. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25454. }
  25455. },
  25456. tail: {
  25457. height: math.unit(1.15, "meters"),
  25458. name: "Tail",
  25459. image: {
  25460. source: "./media/characters/draekon-sylviar/tail.svg"
  25461. }
  25462. },
  25463. tailDick: {
  25464. height: math.unit(1.15, "meters"),
  25465. name: "Tail (Dick)",
  25466. image: {
  25467. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25468. }
  25469. },
  25470. tailDickSeparated: {
  25471. height: math.unit(1.19, "meters"),
  25472. name: "Tail (Separated Dick)",
  25473. image: {
  25474. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25475. }
  25476. },
  25477. slit: {
  25478. height: math.unit(1, "meters"),
  25479. name: "Slit",
  25480. image: {
  25481. source: "./media/characters/draekon-sylviar/slit.svg"
  25482. }
  25483. },
  25484. dick: {
  25485. height: math.unit(1.15, "meters"),
  25486. name: "Dick",
  25487. image: {
  25488. source: "./media/characters/draekon-sylviar/dick.svg"
  25489. }
  25490. },
  25491. dickSeparated: {
  25492. height: math.unit(1.1, "meters"),
  25493. name: "Separated Dick",
  25494. image: {
  25495. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25496. }
  25497. },
  25498. sheath: {
  25499. height: math.unit(1.15, "meters"),
  25500. name: "Sheath",
  25501. image: {
  25502. source: "./media/characters/draekon-sylviar/sheath.svg"
  25503. }
  25504. },
  25505. },
  25506. [
  25507. {
  25508. name: "Small",
  25509. height: math.unit(4.53 / 2, "meters"),
  25510. default: true
  25511. },
  25512. {
  25513. name: "Normal",
  25514. height: math.unit(4.53, "meters"),
  25515. default: true
  25516. },
  25517. {
  25518. name: "Large",
  25519. height: math.unit(4.53 * 2, "meters"),
  25520. },
  25521. ]
  25522. ))
  25523. characterMakers.push(() => makeCharacter(
  25524. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25525. {
  25526. front: {
  25527. height: math.unit(6 + 2 / 12, "feet"),
  25528. weight: math.unit(180, "lb"),
  25529. name: "Front",
  25530. image: {
  25531. source: "./media/characters/brawler/front.svg",
  25532. extra: 3301 / 3027,
  25533. bottom: 138 / 3439
  25534. }
  25535. },
  25536. },
  25537. [
  25538. {
  25539. name: "Normal",
  25540. height: math.unit(6 + 2 / 12, "feet"),
  25541. default: true
  25542. },
  25543. ]
  25544. ))
  25545. characterMakers.push(() => makeCharacter(
  25546. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25547. {
  25548. front: {
  25549. height: math.unit(11, "feet"),
  25550. weight: math.unit(1000, "lb"),
  25551. name: "Front",
  25552. image: {
  25553. source: "./media/characters/alex/front.svg",
  25554. bottom: 44.5 / 620
  25555. }
  25556. },
  25557. },
  25558. [
  25559. {
  25560. name: "Micro",
  25561. height: math.unit(5, "inches")
  25562. },
  25563. {
  25564. name: "Normal",
  25565. height: math.unit(11, "feet"),
  25566. default: true
  25567. },
  25568. {
  25569. name: "Macro",
  25570. height: math.unit(9.5e9, "feet")
  25571. },
  25572. {
  25573. name: "Max Size",
  25574. height: math.unit(1.4e283, "yottameters")
  25575. },
  25576. ]
  25577. ))
  25578. characterMakers.push(() => makeCharacter(
  25579. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25580. {
  25581. female: {
  25582. height: math.unit(29.9, "m"),
  25583. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25584. name: "Female",
  25585. image: {
  25586. source: "./media/characters/zenari/female.svg",
  25587. extra: 3281.6 / 3217,
  25588. bottom: 72.2 / 3353
  25589. }
  25590. },
  25591. male: {
  25592. height: math.unit(27.7, "m"),
  25593. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25594. name: "Male",
  25595. image: {
  25596. source: "./media/characters/zenari/male.svg",
  25597. extra: 3008 / 2991,
  25598. bottom: 54.6 / 3069
  25599. }
  25600. },
  25601. },
  25602. [
  25603. {
  25604. name: "Macro",
  25605. height: math.unit(29.7, "meters"),
  25606. default: true
  25607. },
  25608. ]
  25609. ))
  25610. characterMakers.push(() => makeCharacter(
  25611. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25612. {
  25613. female: {
  25614. height: math.unit(23.8, "m"),
  25615. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25616. name: "Female",
  25617. image: {
  25618. source: "./media/characters/mactarian/female.svg",
  25619. extra: 2662 / 2569,
  25620. bottom: 73 / 2736
  25621. }
  25622. },
  25623. male: {
  25624. height: math.unit(23.8, "m"),
  25625. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25626. name: "Male",
  25627. image: {
  25628. source: "./media/characters/mactarian/male.svg",
  25629. extra: 2673 / 2600,
  25630. bottom: 76 / 2750
  25631. }
  25632. },
  25633. },
  25634. [
  25635. {
  25636. name: "Macro",
  25637. height: math.unit(23.8, "meters"),
  25638. default: true
  25639. },
  25640. ]
  25641. ))
  25642. characterMakers.push(() => makeCharacter(
  25643. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25644. {
  25645. female: {
  25646. height: math.unit(19.3, "m"),
  25647. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25648. name: "Female",
  25649. image: {
  25650. source: "./media/characters/umok/female.svg",
  25651. extra: 2186 / 2078,
  25652. bottom: 87 / 2277
  25653. }
  25654. },
  25655. male: {
  25656. height: math.unit(19.5, "m"),
  25657. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25658. name: "Male",
  25659. image: {
  25660. source: "./media/characters/umok/male.svg",
  25661. extra: 2233 / 2140,
  25662. bottom: 24.4 / 2258
  25663. }
  25664. },
  25665. },
  25666. [
  25667. {
  25668. name: "Macro",
  25669. height: math.unit(19.3, "meters"),
  25670. default: true
  25671. },
  25672. ]
  25673. ))
  25674. characterMakers.push(() => makeCharacter(
  25675. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25676. {
  25677. female: {
  25678. height: math.unit(26.15, "m"),
  25679. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25680. name: "Female",
  25681. image: {
  25682. source: "./media/characters/joraxian/female.svg",
  25683. extra: 2912 / 2824,
  25684. bottom: 36 / 2956
  25685. }
  25686. },
  25687. male: {
  25688. height: math.unit(25.4, "m"),
  25689. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25690. name: "Male",
  25691. image: {
  25692. source: "./media/characters/joraxian/male.svg",
  25693. extra: 2877 / 2721,
  25694. bottom: 82 / 2967
  25695. }
  25696. },
  25697. },
  25698. [
  25699. {
  25700. name: "Macro",
  25701. height: math.unit(26.15, "meters"),
  25702. default: true
  25703. },
  25704. ]
  25705. ))
  25706. characterMakers.push(() => makeCharacter(
  25707. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25708. {
  25709. female: {
  25710. height: math.unit(21.6, "m"),
  25711. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25712. name: "Female",
  25713. image: {
  25714. source: "./media/characters/sthara/female.svg",
  25715. extra: 2516 / 2347,
  25716. bottom: 21.5 / 2537
  25717. }
  25718. },
  25719. male: {
  25720. height: math.unit(24, "m"),
  25721. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25722. name: "Male",
  25723. image: {
  25724. source: "./media/characters/sthara/male.svg",
  25725. extra: 2732 / 2607,
  25726. bottom: 23 / 2732
  25727. }
  25728. },
  25729. },
  25730. [
  25731. {
  25732. name: "Macro",
  25733. height: math.unit(21.6, "meters"),
  25734. default: true
  25735. },
  25736. ]
  25737. ))
  25738. characterMakers.push(() => makeCharacter(
  25739. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25740. {
  25741. front: {
  25742. height: math.unit(6 + 4 / 12, "feet"),
  25743. weight: math.unit(175, "lb"),
  25744. name: "Front",
  25745. image: {
  25746. source: "./media/characters/luka-bryzant/front.svg",
  25747. extra: 311 / 289,
  25748. bottom: 4 / 315
  25749. }
  25750. },
  25751. back: {
  25752. height: math.unit(6 + 4 / 12, "feet"),
  25753. weight: math.unit(175, "lb"),
  25754. name: "Back",
  25755. image: {
  25756. source: "./media/characters/luka-bryzant/back.svg",
  25757. extra: 311 / 289,
  25758. bottom: 3.8 / 313.7
  25759. }
  25760. },
  25761. },
  25762. [
  25763. {
  25764. name: "Micro",
  25765. height: math.unit(10, "inches")
  25766. },
  25767. {
  25768. name: "Normal",
  25769. height: math.unit(6 + 4 / 12, "feet"),
  25770. default: true
  25771. },
  25772. {
  25773. name: "Large",
  25774. height: math.unit(12, "feet")
  25775. },
  25776. ]
  25777. ))
  25778. characterMakers.push(() => makeCharacter(
  25779. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25780. {
  25781. front: {
  25782. height: math.unit(5 + 7 / 12, "feet"),
  25783. weight: math.unit(185, "lb"),
  25784. name: "Front",
  25785. image: {
  25786. source: "./media/characters/aman-aquila/front.svg",
  25787. extra: 1013 / 976,
  25788. bottom: 45.6 / 1057
  25789. }
  25790. },
  25791. side: {
  25792. height: math.unit(5 + 7 / 12, "feet"),
  25793. weight: math.unit(185, "lb"),
  25794. name: "Side",
  25795. image: {
  25796. source: "./media/characters/aman-aquila/side.svg",
  25797. extra: 1054 / 1011,
  25798. bottom: 15 / 1070
  25799. }
  25800. },
  25801. back: {
  25802. height: math.unit(5 + 7 / 12, "feet"),
  25803. weight: math.unit(185, "lb"),
  25804. name: "Back",
  25805. image: {
  25806. source: "./media/characters/aman-aquila/back.svg",
  25807. extra: 1026 / 970,
  25808. bottom: 12 / 1039
  25809. }
  25810. },
  25811. head: {
  25812. height: math.unit(1.211, "feet"),
  25813. name: "Head",
  25814. image: {
  25815. source: "./media/characters/aman-aquila/head.svg",
  25816. }
  25817. },
  25818. },
  25819. [
  25820. {
  25821. name: "Minimicro",
  25822. height: math.unit(0.057, "inches")
  25823. },
  25824. {
  25825. name: "Micro",
  25826. height: math.unit(7, "inches")
  25827. },
  25828. {
  25829. name: "Mini",
  25830. height: math.unit(3 + 7 / 12, "feet")
  25831. },
  25832. {
  25833. name: "Normal",
  25834. height: math.unit(5 + 7 / 12, "feet"),
  25835. default: true
  25836. },
  25837. {
  25838. name: "Macro",
  25839. height: math.unit(157 + 7 / 12, "feet")
  25840. },
  25841. {
  25842. name: "Megamacro",
  25843. height: math.unit(1557 + 7 / 12, "feet")
  25844. },
  25845. {
  25846. name: "Gigamacro",
  25847. height: math.unit(15557 + 7 / 12, "feet")
  25848. },
  25849. ]
  25850. ))
  25851. characterMakers.push(() => makeCharacter(
  25852. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25853. {
  25854. front: {
  25855. height: math.unit(3 + 2 / 12, "inches"),
  25856. weight: math.unit(0.3, "ounces"),
  25857. name: "Front",
  25858. image: {
  25859. source: "./media/characters/hiphae/front.svg",
  25860. extra: 1931 / 1683,
  25861. bottom: 24 / 1955
  25862. }
  25863. },
  25864. },
  25865. [
  25866. {
  25867. name: "Normal",
  25868. height: math.unit(3 + 1 / 2, "inches"),
  25869. default: true
  25870. },
  25871. ]
  25872. ))
  25873. characterMakers.push(() => makeCharacter(
  25874. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25875. {
  25876. front: {
  25877. height: math.unit(5 + 10 / 12, "feet"),
  25878. weight: math.unit(165, "lb"),
  25879. name: "Front",
  25880. image: {
  25881. source: "./media/characters/nicky/front.svg",
  25882. extra: 3144 / 2886,
  25883. bottom: 45.6 / 3192
  25884. }
  25885. },
  25886. back: {
  25887. height: math.unit(5 + 10 / 12, "feet"),
  25888. weight: math.unit(165, "lb"),
  25889. name: "Back",
  25890. image: {
  25891. source: "./media/characters/nicky/back.svg",
  25892. extra: 3055 / 2804,
  25893. bottom: 28.4 / 3087
  25894. }
  25895. },
  25896. frontclothed: {
  25897. height: math.unit(5 + 10 / 12, "feet"),
  25898. weight: math.unit(165, "lb"),
  25899. name: "Front-clothed",
  25900. image: {
  25901. source: "./media/characters/nicky/front-clothed.svg",
  25902. extra: 3184.9 / 2926.9,
  25903. bottom: 86.5 / 3239.9
  25904. }
  25905. },
  25906. foot: {
  25907. height: math.unit(1.16, "feet"),
  25908. name: "Foot",
  25909. image: {
  25910. source: "./media/characters/nicky/foot.svg"
  25911. }
  25912. },
  25913. feet: {
  25914. height: math.unit(1.34, "feet"),
  25915. name: "Feet",
  25916. image: {
  25917. source: "./media/characters/nicky/feet.svg"
  25918. }
  25919. },
  25920. maw: {
  25921. height: math.unit(0.9, "feet"),
  25922. name: "Maw",
  25923. image: {
  25924. source: "./media/characters/nicky/maw.svg"
  25925. }
  25926. },
  25927. },
  25928. [
  25929. {
  25930. name: "Normal",
  25931. height: math.unit(5 + 10 / 12, "feet"),
  25932. default: true
  25933. },
  25934. {
  25935. name: "Macro",
  25936. height: math.unit(60, "feet")
  25937. },
  25938. {
  25939. name: "Megamacro",
  25940. height: math.unit(1, "mile")
  25941. },
  25942. ]
  25943. ))
  25944. characterMakers.push(() => makeCharacter(
  25945. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25946. {
  25947. side: {
  25948. height: math.unit(10, "feet"),
  25949. weight: math.unit(600, "lb"),
  25950. name: "Side",
  25951. image: {
  25952. source: "./media/characters/blair/side.svg",
  25953. bottom: 16.6 / 475,
  25954. extra: 458 / 431
  25955. }
  25956. },
  25957. },
  25958. [
  25959. {
  25960. name: "Micro",
  25961. height: math.unit(8, "inches")
  25962. },
  25963. {
  25964. name: "Normal",
  25965. height: math.unit(10, "feet"),
  25966. default: true
  25967. },
  25968. {
  25969. name: "Macro",
  25970. height: math.unit(180, "feet")
  25971. },
  25972. ]
  25973. ))
  25974. characterMakers.push(() => makeCharacter(
  25975. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25976. {
  25977. front: {
  25978. height: math.unit(5 + 4 / 12, "feet"),
  25979. weight: math.unit(125, "lb"),
  25980. name: "Front",
  25981. image: {
  25982. source: "./media/characters/fisher/front.svg",
  25983. extra: 444 / 390,
  25984. bottom: 2 / 444.8
  25985. }
  25986. },
  25987. },
  25988. [
  25989. {
  25990. name: "Micro",
  25991. height: math.unit(4, "inches")
  25992. },
  25993. {
  25994. name: "Normal",
  25995. height: math.unit(5 + 4 / 12, "feet"),
  25996. default: true
  25997. },
  25998. {
  25999. name: "Macro",
  26000. height: math.unit(100, "feet")
  26001. },
  26002. ]
  26003. ))
  26004. characterMakers.push(() => makeCharacter(
  26005. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26006. {
  26007. front: {
  26008. height: math.unit(6.71, "feet"),
  26009. weight: math.unit(200, "lb"),
  26010. preyCapacity: math.unit(1000000, "people"),
  26011. name: "Front",
  26012. image: {
  26013. source: "./media/characters/gliss/front.svg",
  26014. extra: 2347 / 2231,
  26015. bottom: 113 / 2462
  26016. }
  26017. },
  26018. hammerspaceSize: {
  26019. height: math.unit(6.71 * 717, "feet"),
  26020. weight: math.unit(200, "lb"),
  26021. preyCapacity: math.unit(1000000, "people"),
  26022. name: "Hammerspace Size",
  26023. image: {
  26024. source: "./media/characters/gliss/front.svg",
  26025. extra: 2347 / 2231,
  26026. bottom: 113 / 2462
  26027. }
  26028. },
  26029. },
  26030. [
  26031. {
  26032. name: "Normal",
  26033. height: math.unit(6.71, "feet"),
  26034. default: true
  26035. },
  26036. ]
  26037. ))
  26038. characterMakers.push(() => makeCharacter(
  26039. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26040. {
  26041. side: {
  26042. height: math.unit(1.44, "m"),
  26043. weight: math.unit(80, "kg"),
  26044. name: "Side",
  26045. image: {
  26046. source: "./media/characters/dune-anderson/side.svg",
  26047. bottom: 49 / 1426
  26048. }
  26049. },
  26050. },
  26051. [
  26052. {
  26053. name: "Wolf-sized",
  26054. height: math.unit(1.44, "meters")
  26055. },
  26056. {
  26057. name: "Normal",
  26058. height: math.unit(5.05, "meters"),
  26059. default: true
  26060. },
  26061. {
  26062. name: "Big",
  26063. height: math.unit(14.4, "meters")
  26064. },
  26065. {
  26066. name: "Huge",
  26067. height: math.unit(144, "meters")
  26068. },
  26069. ]
  26070. ))
  26071. characterMakers.push(() => makeCharacter(
  26072. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26073. {
  26074. front: {
  26075. height: math.unit(7, "feet"),
  26076. weight: math.unit(425, "lb"),
  26077. name: "Front",
  26078. image: {
  26079. source: "./media/characters/hind/front.svg",
  26080. extra: 2091 / 1860,
  26081. bottom: 129 / 2220
  26082. }
  26083. },
  26084. back: {
  26085. height: math.unit(7, "feet"),
  26086. weight: math.unit(425, "lb"),
  26087. name: "Back",
  26088. image: {
  26089. source: "./media/characters/hind/back.svg",
  26090. extra: 2091 / 1860,
  26091. bottom: 24.6 / 2309
  26092. }
  26093. },
  26094. tail: {
  26095. height: math.unit(2.8, "feet"),
  26096. name: "Tail",
  26097. image: {
  26098. source: "./media/characters/hind/tail.svg"
  26099. }
  26100. },
  26101. head: {
  26102. height: math.unit(2.55, "feet"),
  26103. name: "Head",
  26104. image: {
  26105. source: "./media/characters/hind/head.svg"
  26106. }
  26107. },
  26108. },
  26109. [
  26110. {
  26111. name: "XS",
  26112. height: math.unit(0.7, "feet")
  26113. },
  26114. {
  26115. name: "Normal",
  26116. height: math.unit(7, "feet"),
  26117. default: true
  26118. },
  26119. {
  26120. name: "XL",
  26121. height: math.unit(70, "feet")
  26122. },
  26123. ]
  26124. ))
  26125. characterMakers.push(() => makeCharacter(
  26126. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26127. {
  26128. front: {
  26129. height: math.unit(2.1, "meters"),
  26130. weight: math.unit(150, "lb"),
  26131. name: "Front",
  26132. image: {
  26133. source: "./media/characters/tharquench-sizestealer/front.svg",
  26134. extra: 1605/1470,
  26135. bottom: 36/1641
  26136. }
  26137. },
  26138. frontAlt: {
  26139. height: math.unit(2.1, "meters"),
  26140. weight: math.unit(150, "lb"),
  26141. name: "Front (Alt)",
  26142. image: {
  26143. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26144. extra: 2318 / 2063,
  26145. bottom: 93.4 / 2410
  26146. }
  26147. },
  26148. },
  26149. [
  26150. {
  26151. name: "Nano",
  26152. height: math.unit(1, "mm")
  26153. },
  26154. {
  26155. name: "Micro",
  26156. height: math.unit(1, "cm")
  26157. },
  26158. {
  26159. name: "Normal",
  26160. height: math.unit(2.1, "meters"),
  26161. default: true
  26162. },
  26163. ]
  26164. ))
  26165. characterMakers.push(() => makeCharacter(
  26166. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26167. {
  26168. front: {
  26169. height: math.unit(7 + 5 / 12, "feet"),
  26170. weight: math.unit(357, "lb"),
  26171. name: "Front",
  26172. image: {
  26173. source: "./media/characters/solex-draconov/front.svg",
  26174. extra: 1993 / 1865,
  26175. bottom: 117 / 2111
  26176. }
  26177. },
  26178. },
  26179. [
  26180. {
  26181. name: "Natural Height",
  26182. height: math.unit(7 + 5 / 12, "feet"),
  26183. default: true
  26184. },
  26185. {
  26186. name: "Macro",
  26187. height: math.unit(350, "feet")
  26188. },
  26189. {
  26190. name: "Macro+",
  26191. height: math.unit(1000, "feet")
  26192. },
  26193. {
  26194. name: "Megamacro",
  26195. height: math.unit(20, "km")
  26196. },
  26197. {
  26198. name: "Megamacro+",
  26199. height: math.unit(1000, "km")
  26200. },
  26201. {
  26202. name: "Gigamacro",
  26203. height: math.unit(2.5, "Gm")
  26204. },
  26205. {
  26206. name: "Teramacro",
  26207. height: math.unit(15, "Tm")
  26208. },
  26209. {
  26210. name: "Galactic",
  26211. height: math.unit(30, "Zm")
  26212. },
  26213. {
  26214. name: "Universal",
  26215. height: math.unit(21000, "Ym")
  26216. },
  26217. {
  26218. name: "Omniversal",
  26219. height: math.unit(9.861e50, "Ym")
  26220. },
  26221. {
  26222. name: "Existential",
  26223. height: math.unit(1e300, "meters")
  26224. },
  26225. ]
  26226. ))
  26227. characterMakers.push(() => makeCharacter(
  26228. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26229. {
  26230. side: {
  26231. height: math.unit(25, "feet"),
  26232. weight: math.unit(90000, "lb"),
  26233. name: "Side",
  26234. image: {
  26235. source: "./media/characters/mandarax/side.svg",
  26236. extra: 614 / 332,
  26237. bottom: 55 / 630
  26238. }
  26239. },
  26240. lounging: {
  26241. height: math.unit(15.4, "feet"),
  26242. weight: math.unit(90000, "lb"),
  26243. name: "Lounging",
  26244. image: {
  26245. source: "./media/characters/mandarax/lounging.svg",
  26246. extra: 817/609,
  26247. bottom: 685/1502
  26248. }
  26249. },
  26250. head: {
  26251. height: math.unit(11.4, "feet"),
  26252. name: "Head",
  26253. image: {
  26254. source: "./media/characters/mandarax/head.svg"
  26255. }
  26256. },
  26257. belly: {
  26258. height: math.unit(33, "feet"),
  26259. name: "Belly",
  26260. preyCapacity: math.unit(500, "people"),
  26261. image: {
  26262. source: "./media/characters/mandarax/belly.svg"
  26263. }
  26264. },
  26265. dick: {
  26266. height: math.unit(8.46, "feet"),
  26267. name: "Dick",
  26268. image: {
  26269. source: "./media/characters/mandarax/dick.svg"
  26270. }
  26271. },
  26272. top: {
  26273. height: math.unit(28, "meters"),
  26274. name: "Top",
  26275. image: {
  26276. source: "./media/characters/mandarax/top.svg"
  26277. }
  26278. },
  26279. },
  26280. [
  26281. {
  26282. name: "Normal",
  26283. height: math.unit(25, "feet"),
  26284. default: true
  26285. },
  26286. ]
  26287. ))
  26288. characterMakers.push(() => makeCharacter(
  26289. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26290. {
  26291. front: {
  26292. height: math.unit(5, "feet"),
  26293. weight: math.unit(90, "lb"),
  26294. name: "Front",
  26295. image: {
  26296. source: "./media/characters/pixil/front.svg",
  26297. extra: 2000 / 1618,
  26298. bottom: 12.3 / 2011
  26299. }
  26300. },
  26301. },
  26302. [
  26303. {
  26304. name: "Normal",
  26305. height: math.unit(5, "feet"),
  26306. default: true
  26307. },
  26308. {
  26309. name: "Megamacro",
  26310. height: math.unit(10, "miles"),
  26311. },
  26312. ]
  26313. ))
  26314. characterMakers.push(() => makeCharacter(
  26315. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26316. {
  26317. front: {
  26318. height: math.unit(7 + 2 / 12, "feet"),
  26319. weight: math.unit(200, "lb"),
  26320. name: "Front",
  26321. image: {
  26322. source: "./media/characters/angel/front.svg",
  26323. extra: 1830 / 1737,
  26324. bottom: 22.6 / 1854,
  26325. }
  26326. },
  26327. },
  26328. [
  26329. {
  26330. name: "Normal",
  26331. height: math.unit(7 + 2 / 12, "feet"),
  26332. default: true
  26333. },
  26334. {
  26335. name: "Macro",
  26336. height: math.unit(1000, "feet")
  26337. },
  26338. {
  26339. name: "Megamacro",
  26340. height: math.unit(2, "miles")
  26341. },
  26342. {
  26343. name: "Gigamacro",
  26344. height: math.unit(20, "earths")
  26345. },
  26346. ]
  26347. ))
  26348. characterMakers.push(() => makeCharacter(
  26349. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26350. {
  26351. front: {
  26352. height: math.unit(5, "feet"),
  26353. weight: math.unit(180, "lb"),
  26354. name: "Front",
  26355. image: {
  26356. source: "./media/characters/mekana/front.svg",
  26357. extra: 1671 / 1605,
  26358. bottom: 3.5 / 1691
  26359. }
  26360. },
  26361. side: {
  26362. height: math.unit(5, "feet"),
  26363. weight: math.unit(180, "lb"),
  26364. name: "Side",
  26365. image: {
  26366. source: "./media/characters/mekana/side.svg",
  26367. extra: 1671 / 1605,
  26368. bottom: 3.5 / 1691
  26369. }
  26370. },
  26371. back: {
  26372. height: math.unit(5, "feet"),
  26373. weight: math.unit(180, "lb"),
  26374. name: "Back",
  26375. image: {
  26376. source: "./media/characters/mekana/back.svg",
  26377. extra: 1671 / 1605,
  26378. bottom: 3.5 / 1691
  26379. }
  26380. },
  26381. },
  26382. [
  26383. {
  26384. name: "Normal",
  26385. height: math.unit(5, "feet"),
  26386. default: true
  26387. },
  26388. ]
  26389. ))
  26390. characterMakers.push(() => makeCharacter(
  26391. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26392. {
  26393. front: {
  26394. height: math.unit(4 + 6 / 12, "feet"),
  26395. weight: math.unit(80, "lb"),
  26396. name: "Front",
  26397. image: {
  26398. source: "./media/characters/pixie/front.svg",
  26399. extra: 1924 / 1825,
  26400. bottom: 22.4 / 1946
  26401. }
  26402. },
  26403. },
  26404. [
  26405. {
  26406. name: "Normal",
  26407. height: math.unit(4 + 6 / 12, "feet"),
  26408. default: true
  26409. },
  26410. {
  26411. name: "Macro",
  26412. height: math.unit(40, "feet")
  26413. },
  26414. ]
  26415. ))
  26416. characterMakers.push(() => makeCharacter(
  26417. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26418. {
  26419. front: {
  26420. height: math.unit(2.1, "meters"),
  26421. weight: math.unit(200, "lb"),
  26422. name: "Front",
  26423. image: {
  26424. source: "./media/characters/the-lascivious/front.svg",
  26425. extra: 1 / 0.893,
  26426. bottom: 3.5 / 573.7
  26427. }
  26428. },
  26429. },
  26430. [
  26431. {
  26432. name: "Human Scale",
  26433. height: math.unit(2.1, "meters")
  26434. },
  26435. {
  26436. name: "Wolxi Scale",
  26437. height: math.unit(46.2, "m"),
  26438. default: true
  26439. },
  26440. {
  26441. name: "Boinker of Buildings",
  26442. height: math.unit(10, "km")
  26443. },
  26444. {
  26445. name: "Shagger of Skyscrapers",
  26446. height: math.unit(40, "km")
  26447. },
  26448. {
  26449. name: "Banger of Boroughs",
  26450. height: math.unit(4000, "km")
  26451. },
  26452. {
  26453. name: "Screwer of States",
  26454. height: math.unit(100000, "km")
  26455. },
  26456. {
  26457. name: "Pounder of Planets",
  26458. height: math.unit(2000000, "km")
  26459. },
  26460. ]
  26461. ))
  26462. characterMakers.push(() => makeCharacter(
  26463. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26464. {
  26465. front: {
  26466. height: math.unit(6, "feet"),
  26467. weight: math.unit(150, "lb"),
  26468. name: "Front",
  26469. image: {
  26470. source: "./media/characters/aj/front.svg",
  26471. extra: 2039 / 1562,
  26472. bottom: 40 / 2079
  26473. }
  26474. },
  26475. },
  26476. [
  26477. {
  26478. name: "Normal",
  26479. height: math.unit(11 + 6 / 12, "feet"),
  26480. default: true
  26481. },
  26482. {
  26483. name: "Megamacro",
  26484. height: math.unit(60, "megameters")
  26485. },
  26486. ]
  26487. ))
  26488. characterMakers.push(() => makeCharacter(
  26489. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26490. {
  26491. side: {
  26492. height: math.unit(31 + 8 / 12, "feet"),
  26493. weight: math.unit(75000, "kg"),
  26494. name: "Side",
  26495. image: {
  26496. source: "./media/characters/koros/side.svg",
  26497. extra: 1442 / 1297,
  26498. bottom: 122.7 / 1562
  26499. }
  26500. },
  26501. dicksKingsCrown: {
  26502. height: math.unit(6, "feet"),
  26503. name: "Dicks (King's Crown)",
  26504. image: {
  26505. source: "./media/characters/koros/dicks-kings-crown.svg"
  26506. }
  26507. },
  26508. dicksTailSet: {
  26509. height: math.unit(3, "feet"),
  26510. name: "Dicks (Tail Set)",
  26511. image: {
  26512. source: "./media/characters/koros/dicks-tail-set.svg"
  26513. }
  26514. },
  26515. dickCumming: {
  26516. height: math.unit(7.98, "feet"),
  26517. name: "Dick (Cumming)",
  26518. image: {
  26519. source: "./media/characters/koros/dick-cumming.svg"
  26520. }
  26521. },
  26522. dicksBack: {
  26523. height: math.unit(5.9, "feet"),
  26524. name: "Dicks (Back)",
  26525. image: {
  26526. source: "./media/characters/koros/dicks-back.svg"
  26527. }
  26528. },
  26529. dicksFront: {
  26530. height: math.unit(3.72, "feet"),
  26531. name: "Dicks (Front)",
  26532. image: {
  26533. source: "./media/characters/koros/dicks-front.svg"
  26534. }
  26535. },
  26536. dicksPeeking: {
  26537. height: math.unit(3.0, "feet"),
  26538. name: "Dicks (Peeking)",
  26539. image: {
  26540. source: "./media/characters/koros/dicks-peeking.svg"
  26541. }
  26542. },
  26543. eye: {
  26544. height: math.unit(1.7, "feet"),
  26545. name: "Eye",
  26546. image: {
  26547. source: "./media/characters/koros/eye.svg"
  26548. }
  26549. },
  26550. headFront: {
  26551. height: math.unit(11.69, "feet"),
  26552. name: "Head (Front)",
  26553. image: {
  26554. source: "./media/characters/koros/head-front.svg"
  26555. }
  26556. },
  26557. headSide: {
  26558. height: math.unit(14, "feet"),
  26559. name: "Head (Side)",
  26560. image: {
  26561. source: "./media/characters/koros/head-side.svg"
  26562. }
  26563. },
  26564. leg: {
  26565. height: math.unit(17, "feet"),
  26566. name: "Leg",
  26567. image: {
  26568. source: "./media/characters/koros/leg.svg"
  26569. }
  26570. },
  26571. mawSide: {
  26572. height: math.unit(12.8, "feet"),
  26573. name: "Maw (Side)",
  26574. image: {
  26575. source: "./media/characters/koros/maw-side.svg"
  26576. }
  26577. },
  26578. mawSpitting: {
  26579. height: math.unit(17, "feet"),
  26580. name: "Maw (Spitting)",
  26581. image: {
  26582. source: "./media/characters/koros/maw-spitting.svg"
  26583. }
  26584. },
  26585. slit: {
  26586. height: math.unit(2.8, "feet"),
  26587. name: "Slit",
  26588. image: {
  26589. source: "./media/characters/koros/slit.svg"
  26590. }
  26591. },
  26592. stomach: {
  26593. height: math.unit(6.8, "feet"),
  26594. preyCapacity: math.unit(20, "people"),
  26595. name: "Stomach",
  26596. image: {
  26597. source: "./media/characters/koros/stomach.svg"
  26598. }
  26599. },
  26600. wingspanBottom: {
  26601. height: math.unit(114, "feet"),
  26602. name: "Wingspan (Bottom)",
  26603. image: {
  26604. source: "./media/characters/koros/wingspan-bottom.svg"
  26605. }
  26606. },
  26607. wingspanTop: {
  26608. height: math.unit(104, "feet"),
  26609. name: "Wingspan (Top)",
  26610. image: {
  26611. source: "./media/characters/koros/wingspan-top.svg"
  26612. }
  26613. },
  26614. },
  26615. [
  26616. {
  26617. name: "Normal",
  26618. height: math.unit(31 + 8 / 12, "feet"),
  26619. default: true
  26620. },
  26621. ]
  26622. ))
  26623. characterMakers.push(() => makeCharacter(
  26624. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26625. {
  26626. front: {
  26627. height: math.unit(18 + 5 / 12, "feet"),
  26628. weight: math.unit(3750, "kg"),
  26629. name: "Front",
  26630. image: {
  26631. source: "./media/characters/vexx/front.svg",
  26632. extra: 426 / 396,
  26633. bottom: 31.5 / 458
  26634. }
  26635. },
  26636. maw: {
  26637. height: math.unit(6, "feet"),
  26638. name: "Maw",
  26639. image: {
  26640. source: "./media/characters/vexx/maw.svg"
  26641. }
  26642. },
  26643. },
  26644. [
  26645. {
  26646. name: "Normal",
  26647. height: math.unit(18 + 5 / 12, "feet"),
  26648. default: true
  26649. },
  26650. ]
  26651. ))
  26652. characterMakers.push(() => makeCharacter(
  26653. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26654. {
  26655. front: {
  26656. height: math.unit(17 + 6 / 12, "feet"),
  26657. weight: math.unit(150, "lb"),
  26658. name: "Front",
  26659. image: {
  26660. source: "./media/characters/baadra/front.svg",
  26661. extra: 1694/1553,
  26662. bottom: 179/1873
  26663. }
  26664. },
  26665. frontAlt: {
  26666. height: math.unit(17 + 6 / 12, "feet"),
  26667. weight: math.unit(150, "lb"),
  26668. name: "Front (Alt)",
  26669. image: {
  26670. source: "./media/characters/baadra/front-alt.svg",
  26671. extra: 3137 / 2890,
  26672. bottom: 168.4 / 3305
  26673. }
  26674. },
  26675. back: {
  26676. height: math.unit(17 + 6 / 12, "feet"),
  26677. weight: math.unit(150, "lb"),
  26678. name: "Back",
  26679. image: {
  26680. source: "./media/characters/baadra/back.svg",
  26681. extra: 3142 / 2890,
  26682. bottom: 220 / 3371
  26683. }
  26684. },
  26685. head: {
  26686. height: math.unit(5.45, "feet"),
  26687. name: "Head",
  26688. image: {
  26689. source: "./media/characters/baadra/head.svg"
  26690. }
  26691. },
  26692. headAngry: {
  26693. height: math.unit(4.95, "feet"),
  26694. name: "Head (Angry)",
  26695. image: {
  26696. source: "./media/characters/baadra/head-angry.svg"
  26697. }
  26698. },
  26699. headOpen: {
  26700. height: math.unit(6, "feet"),
  26701. name: "Head (Open)",
  26702. image: {
  26703. source: "./media/characters/baadra/head-open.svg"
  26704. }
  26705. },
  26706. },
  26707. [
  26708. {
  26709. name: "Normal",
  26710. height: math.unit(17 + 6 / 12, "feet"),
  26711. default: true
  26712. },
  26713. ]
  26714. ))
  26715. characterMakers.push(() => makeCharacter(
  26716. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26717. {
  26718. front: {
  26719. height: math.unit(7 + 3 / 12, "feet"),
  26720. weight: math.unit(180, "lb"),
  26721. name: "Front",
  26722. image: {
  26723. source: "./media/characters/juri/front.svg",
  26724. extra: 1401 / 1237,
  26725. bottom: 18.5 / 1418
  26726. }
  26727. },
  26728. side: {
  26729. height: math.unit(7 + 3 / 12, "feet"),
  26730. weight: math.unit(180, "lb"),
  26731. name: "Side",
  26732. image: {
  26733. source: "./media/characters/juri/side.svg",
  26734. extra: 1424 / 1242,
  26735. bottom: 18.5 / 1447
  26736. }
  26737. },
  26738. sitting: {
  26739. height: math.unit(6, "feet"),
  26740. weight: math.unit(180, "lb"),
  26741. name: "Sitting",
  26742. image: {
  26743. source: "./media/characters/juri/sitting.svg",
  26744. extra: 1270 / 1143,
  26745. bottom: 100 / 1343
  26746. }
  26747. },
  26748. back: {
  26749. height: math.unit(7 + 3 / 12, "feet"),
  26750. weight: math.unit(180, "lb"),
  26751. name: "Back",
  26752. image: {
  26753. source: "./media/characters/juri/back.svg",
  26754. extra: 1377 / 1240,
  26755. bottom: 23.7 / 1405
  26756. }
  26757. },
  26758. maw: {
  26759. height: math.unit(2.8, "feet"),
  26760. name: "Maw",
  26761. image: {
  26762. source: "./media/characters/juri/maw.svg"
  26763. }
  26764. },
  26765. stomach: {
  26766. height: math.unit(0.89, "feet"),
  26767. preyCapacity: math.unit(4, "liters"),
  26768. name: "Stomach",
  26769. image: {
  26770. source: "./media/characters/juri/stomach.svg"
  26771. }
  26772. },
  26773. },
  26774. [
  26775. {
  26776. name: "Normal",
  26777. height: math.unit(7 + 3 / 12, "feet"),
  26778. default: true
  26779. },
  26780. ]
  26781. ))
  26782. characterMakers.push(() => makeCharacter(
  26783. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26784. {
  26785. fox: {
  26786. height: math.unit(5 + 6 / 12, "feet"),
  26787. weight: math.unit(140, "lb"),
  26788. name: "Fox",
  26789. image: {
  26790. source: "./media/characters/maxene-sita/fox.svg",
  26791. extra: 146 / 138,
  26792. bottom: 2.1 / 148.19
  26793. }
  26794. },
  26795. foxLaying: {
  26796. height: math.unit(1.70, "feet"),
  26797. weight: math.unit(140, "lb"),
  26798. name: "Fox (Laying)",
  26799. image: {
  26800. source: "./media/characters/maxene-sita/fox-laying.svg",
  26801. extra: 910 / 572,
  26802. bottom: 71 / 981
  26803. }
  26804. },
  26805. kitsune: {
  26806. height: math.unit(10, "feet"),
  26807. weight: math.unit(800, "lb"),
  26808. name: "Kitsune",
  26809. image: {
  26810. source: "./media/characters/maxene-sita/kitsune.svg",
  26811. extra: 185 / 176,
  26812. bottom: 4.7 / 189.9
  26813. }
  26814. },
  26815. hellhound: {
  26816. height: math.unit(10, "feet"),
  26817. weight: math.unit(700, "lb"),
  26818. name: "Hellhound",
  26819. image: {
  26820. source: "./media/characters/maxene-sita/hellhound.svg",
  26821. extra: 1600 / 1545,
  26822. bottom: 81 / 1681
  26823. }
  26824. },
  26825. },
  26826. [
  26827. {
  26828. name: "Normal",
  26829. height: math.unit(5 + 6 / 12, "feet"),
  26830. default: true
  26831. },
  26832. ]
  26833. ))
  26834. characterMakers.push(() => makeCharacter(
  26835. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26836. {
  26837. front: {
  26838. height: math.unit(3 + 4 / 12, "feet"),
  26839. weight: math.unit(70, "lb"),
  26840. name: "Front",
  26841. image: {
  26842. source: "./media/characters/maia/front.svg",
  26843. extra: 227 / 219.5,
  26844. bottom: 40 / 267
  26845. }
  26846. },
  26847. back: {
  26848. height: math.unit(3 + 4 / 12, "feet"),
  26849. weight: math.unit(70, "lb"),
  26850. name: "Back",
  26851. image: {
  26852. source: "./media/characters/maia/back.svg",
  26853. extra: 237 / 225
  26854. }
  26855. },
  26856. },
  26857. [
  26858. {
  26859. name: "Normal",
  26860. height: math.unit(3 + 4 / 12, "feet"),
  26861. default: true
  26862. },
  26863. ]
  26864. ))
  26865. characterMakers.push(() => makeCharacter(
  26866. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26867. {
  26868. front: {
  26869. height: math.unit(5 + 10 / 12, "feet"),
  26870. weight: math.unit(197, "lb"),
  26871. name: "Front",
  26872. image: {
  26873. source: "./media/characters/jabaro/front.svg",
  26874. extra: 225 / 216,
  26875. bottom: 5.06 / 230
  26876. }
  26877. },
  26878. back: {
  26879. height: math.unit(5 + 10 / 12, "feet"),
  26880. weight: math.unit(197, "lb"),
  26881. name: "Back",
  26882. image: {
  26883. source: "./media/characters/jabaro/back.svg",
  26884. extra: 225 / 219,
  26885. bottom: 1.9 / 227
  26886. }
  26887. },
  26888. },
  26889. [
  26890. {
  26891. name: "Normal",
  26892. height: math.unit(5 + 10 / 12, "feet"),
  26893. default: true
  26894. },
  26895. ]
  26896. ))
  26897. characterMakers.push(() => makeCharacter(
  26898. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26899. {
  26900. front: {
  26901. height: math.unit(5 + 8 / 12, "feet"),
  26902. weight: math.unit(139, "lb"),
  26903. name: "Front",
  26904. image: {
  26905. source: "./media/characters/risa/front.svg",
  26906. extra: 270 / 260,
  26907. bottom: 11.2 / 282
  26908. }
  26909. },
  26910. back: {
  26911. height: math.unit(5 + 8 / 12, "feet"),
  26912. weight: math.unit(139, "lb"),
  26913. name: "Back",
  26914. image: {
  26915. source: "./media/characters/risa/back.svg",
  26916. extra: 264 / 255,
  26917. bottom: 4 / 268
  26918. }
  26919. },
  26920. },
  26921. [
  26922. {
  26923. name: "Normal",
  26924. height: math.unit(5 + 8 / 12, "feet"),
  26925. default: true
  26926. },
  26927. ]
  26928. ))
  26929. characterMakers.push(() => makeCharacter(
  26930. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26931. {
  26932. front: {
  26933. height: math.unit(2 + 11 / 12, "feet"),
  26934. weight: math.unit(30, "lb"),
  26935. name: "Front",
  26936. image: {
  26937. source: "./media/characters/weatley/front.svg",
  26938. bottom: 10.7 / 414,
  26939. extra: 403.5 / 362
  26940. }
  26941. },
  26942. back: {
  26943. height: math.unit(2 + 11 / 12, "feet"),
  26944. weight: math.unit(30, "lb"),
  26945. name: "Back",
  26946. image: {
  26947. source: "./media/characters/weatley/back.svg",
  26948. bottom: 10.7 / 414,
  26949. extra: 403.5 / 362
  26950. }
  26951. },
  26952. },
  26953. [
  26954. {
  26955. name: "Normal",
  26956. height: math.unit(2 + 11 / 12, "feet"),
  26957. default: true
  26958. },
  26959. ]
  26960. ))
  26961. characterMakers.push(() => makeCharacter(
  26962. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26963. {
  26964. front: {
  26965. height: math.unit(5 + 2 / 12, "feet"),
  26966. weight: math.unit(50, "kg"),
  26967. name: "Front",
  26968. image: {
  26969. source: "./media/characters/mercury-crescent/front.svg",
  26970. extra: 1088 / 1033,
  26971. bottom: 18.9 / 1109
  26972. }
  26973. },
  26974. },
  26975. [
  26976. {
  26977. name: "Normal",
  26978. height: math.unit(5 + 2 / 12, "feet"),
  26979. default: true
  26980. },
  26981. ]
  26982. ))
  26983. characterMakers.push(() => makeCharacter(
  26984. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26985. {
  26986. front: {
  26987. height: math.unit(2, "feet"),
  26988. weight: math.unit(15, "kg"),
  26989. name: "Front",
  26990. image: {
  26991. source: "./media/characters/diamond-jones/front.svg",
  26992. extra: 727/723,
  26993. bottom: 46/773
  26994. }
  26995. },
  26996. },
  26997. [
  26998. {
  26999. name: "Normal",
  27000. height: math.unit(2, "feet"),
  27001. default: true
  27002. },
  27003. ]
  27004. ))
  27005. characterMakers.push(() => makeCharacter(
  27006. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27007. {
  27008. front: {
  27009. height: math.unit(3, "feet"),
  27010. weight: math.unit(30, "kg"),
  27011. name: "Front",
  27012. image: {
  27013. source: "./media/characters/sweet-bit/front.svg",
  27014. extra: 675 / 567,
  27015. bottom: 27.7 / 703
  27016. }
  27017. },
  27018. },
  27019. [
  27020. {
  27021. name: "Normal",
  27022. height: math.unit(3, "feet"),
  27023. default: true
  27024. },
  27025. ]
  27026. ))
  27027. characterMakers.push(() => makeCharacter(
  27028. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27029. {
  27030. side: {
  27031. height: math.unit(9.178, "feet"),
  27032. weight: math.unit(500, "lb"),
  27033. name: "Side",
  27034. image: {
  27035. source: "./media/characters/umbrazen/side.svg",
  27036. extra: 1730 / 1473,
  27037. bottom: 34.6 / 1765
  27038. }
  27039. },
  27040. },
  27041. [
  27042. {
  27043. name: "Normal",
  27044. height: math.unit(9.178, "feet"),
  27045. default: true
  27046. },
  27047. ]
  27048. ))
  27049. characterMakers.push(() => makeCharacter(
  27050. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27051. {
  27052. front: {
  27053. height: math.unit(10, "feet"),
  27054. weight: math.unit(750, "lb"),
  27055. name: "Front",
  27056. image: {
  27057. source: "./media/characters/arlist/front.svg",
  27058. extra: 961 / 778,
  27059. bottom: 6.2 / 986
  27060. }
  27061. },
  27062. },
  27063. [
  27064. {
  27065. name: "Normal",
  27066. height: math.unit(10, "feet"),
  27067. default: true
  27068. },
  27069. ]
  27070. ))
  27071. characterMakers.push(() => makeCharacter(
  27072. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27073. {
  27074. front: {
  27075. height: math.unit(5 + 1 / 12, "feet"),
  27076. weight: math.unit(110, "lb"),
  27077. name: "Front",
  27078. image: {
  27079. source: "./media/characters/aradel/front.svg",
  27080. extra: 324 / 303,
  27081. bottom: 3.6 / 329.4
  27082. }
  27083. },
  27084. },
  27085. [
  27086. {
  27087. name: "Normal",
  27088. height: math.unit(5 + 1 / 12, "feet"),
  27089. default: true
  27090. },
  27091. ]
  27092. ))
  27093. characterMakers.push(() => makeCharacter(
  27094. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27095. {
  27096. dressed: {
  27097. height: math.unit(3 + 8 / 12, "feet"),
  27098. weight: math.unit(50, "lb"),
  27099. name: "Dressed",
  27100. image: {
  27101. source: "./media/characters/serryn/dressed.svg",
  27102. extra: 1792 / 1656,
  27103. bottom: 43.5 / 1840
  27104. }
  27105. },
  27106. nude: {
  27107. height: math.unit(3 + 8 / 12, "feet"),
  27108. weight: math.unit(50, "lb"),
  27109. name: "Nude",
  27110. image: {
  27111. source: "./media/characters/serryn/nude.svg",
  27112. extra: 1792 / 1656,
  27113. bottom: 43.5 / 1840
  27114. }
  27115. },
  27116. },
  27117. [
  27118. {
  27119. name: "Normal",
  27120. height: math.unit(3 + 8 / 12, "feet"),
  27121. default: true
  27122. },
  27123. ]
  27124. ))
  27125. characterMakers.push(() => makeCharacter(
  27126. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27127. {
  27128. front: {
  27129. height: math.unit(7 + 10 / 12, "feet"),
  27130. weight: math.unit(255, "lb"),
  27131. name: "Front",
  27132. image: {
  27133. source: "./media/characters/xavier-thyme/front.svg",
  27134. extra: 3733 / 3642,
  27135. bottom: 131 / 3869
  27136. }
  27137. },
  27138. frontRaven: {
  27139. height: math.unit(7 + 10 / 12, "feet"),
  27140. weight: math.unit(255, "lb"),
  27141. name: "Front (Raven)",
  27142. image: {
  27143. source: "./media/characters/xavier-thyme/front-raven.svg",
  27144. extra: 4385 / 3642,
  27145. bottom: 131 / 4517
  27146. }
  27147. },
  27148. },
  27149. [
  27150. {
  27151. name: "Normal",
  27152. height: math.unit(7 + 10 / 12, "feet"),
  27153. default: true
  27154. },
  27155. ]
  27156. ))
  27157. characterMakers.push(() => makeCharacter(
  27158. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27159. {
  27160. front: {
  27161. height: math.unit(1.6, "m"),
  27162. weight: math.unit(50, "kg"),
  27163. name: "Front",
  27164. image: {
  27165. source: "./media/characters/kiki/front.svg",
  27166. extra: 4682 / 3610,
  27167. bottom: 115 / 4777
  27168. }
  27169. },
  27170. },
  27171. [
  27172. {
  27173. name: "Normal",
  27174. height: math.unit(1.6, "meters"),
  27175. default: true
  27176. },
  27177. ]
  27178. ))
  27179. characterMakers.push(() => makeCharacter(
  27180. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27181. {
  27182. front: {
  27183. height: math.unit(50, "m"),
  27184. weight: math.unit(500, "tonnes"),
  27185. name: "Front",
  27186. image: {
  27187. source: "./media/characters/ryoko/front.svg",
  27188. extra: 4632 / 3926,
  27189. bottom: 193 / 4823
  27190. }
  27191. },
  27192. },
  27193. [
  27194. {
  27195. name: "Normal",
  27196. height: math.unit(50, "meters"),
  27197. default: true
  27198. },
  27199. ]
  27200. ))
  27201. characterMakers.push(() => makeCharacter(
  27202. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27203. {
  27204. front: {
  27205. height: math.unit(30, "m"),
  27206. weight: math.unit(22, "tonnes"),
  27207. name: "Front",
  27208. image: {
  27209. source: "./media/characters/elio/front.svg",
  27210. extra: 4582 / 3720,
  27211. bottom: 236 / 4828
  27212. }
  27213. },
  27214. },
  27215. [
  27216. {
  27217. name: "Normal",
  27218. height: math.unit(30, "meters"),
  27219. default: true
  27220. },
  27221. ]
  27222. ))
  27223. characterMakers.push(() => makeCharacter(
  27224. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27225. {
  27226. front: {
  27227. height: math.unit(6 + 3 / 12, "feet"),
  27228. weight: math.unit(120, "lb"),
  27229. name: "Front",
  27230. image: {
  27231. source: "./media/characters/azura/front.svg",
  27232. extra: 1149 / 1135,
  27233. bottom: 45 / 1194
  27234. }
  27235. },
  27236. frontClothed: {
  27237. height: math.unit(6 + 3 / 12, "feet"),
  27238. weight: math.unit(120, "lb"),
  27239. name: "Front (Clothed)",
  27240. image: {
  27241. source: "./media/characters/azura/front-clothed.svg",
  27242. extra: 1149 / 1135,
  27243. bottom: 45 / 1194
  27244. }
  27245. },
  27246. },
  27247. [
  27248. {
  27249. name: "Normal",
  27250. height: math.unit(6 + 3 / 12, "feet"),
  27251. default: true
  27252. },
  27253. {
  27254. name: "Macro",
  27255. height: math.unit(20 + 6 / 12, "feet")
  27256. },
  27257. {
  27258. name: "Megamacro",
  27259. height: math.unit(12, "miles")
  27260. },
  27261. {
  27262. name: "Gigamacro",
  27263. height: math.unit(10000, "miles")
  27264. },
  27265. {
  27266. name: "Teramacro",
  27267. height: math.unit(900000, "miles")
  27268. },
  27269. ]
  27270. ))
  27271. characterMakers.push(() => makeCharacter(
  27272. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27273. {
  27274. front: {
  27275. height: math.unit(12, "feet"),
  27276. weight: math.unit(1, "ton"),
  27277. capacity: math.unit(660000, "gallons"),
  27278. name: "Front",
  27279. image: {
  27280. source: "./media/characters/zeus/front.svg",
  27281. extra: 5005 / 4717,
  27282. bottom: 363 / 5388
  27283. }
  27284. },
  27285. },
  27286. [
  27287. {
  27288. name: "Normal",
  27289. height: math.unit(12, "feet")
  27290. },
  27291. {
  27292. name: "Preferred Size",
  27293. height: math.unit(0.5, "miles"),
  27294. default: true
  27295. },
  27296. {
  27297. name: "Giga Horse",
  27298. height: math.unit(300, "miles")
  27299. },
  27300. {
  27301. name: "Riding Planets",
  27302. height: math.unit(30, "megameters")
  27303. },
  27304. {
  27305. name: "Cosmic Giant",
  27306. height: math.unit(3, "zettameters")
  27307. },
  27308. {
  27309. name: "Breeding God",
  27310. height: math.unit(9.92e22, "yottameters")
  27311. },
  27312. ]
  27313. ))
  27314. characterMakers.push(() => makeCharacter(
  27315. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27316. {
  27317. side: {
  27318. height: math.unit(9, "feet"),
  27319. weight: math.unit(1500, "kg"),
  27320. name: "Side",
  27321. image: {
  27322. source: "./media/characters/fang/side.svg",
  27323. extra: 924 / 866,
  27324. bottom: 47.5 / 972.3
  27325. }
  27326. },
  27327. },
  27328. [
  27329. {
  27330. name: "Normal",
  27331. height: math.unit(9, "feet"),
  27332. default: true
  27333. },
  27334. {
  27335. name: "Macro",
  27336. height: math.unit(75 + 6 / 12, "feet")
  27337. },
  27338. {
  27339. name: "Teramacro",
  27340. height: math.unit(50000, "miles")
  27341. },
  27342. ]
  27343. ))
  27344. characterMakers.push(() => makeCharacter(
  27345. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27346. {
  27347. front: {
  27348. height: math.unit(10, "feet"),
  27349. weight: math.unit(2, "tons"),
  27350. name: "Front",
  27351. image: {
  27352. source: "./media/characters/rekhit/front.svg",
  27353. extra: 2796 / 2590,
  27354. bottom: 225 / 3022
  27355. }
  27356. },
  27357. },
  27358. [
  27359. {
  27360. name: "Normal",
  27361. height: math.unit(10, "feet"),
  27362. default: true
  27363. },
  27364. {
  27365. name: "Macro",
  27366. height: math.unit(500, "feet")
  27367. },
  27368. ]
  27369. ))
  27370. characterMakers.push(() => makeCharacter(
  27371. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27372. {
  27373. front: {
  27374. height: math.unit(7 + 6.451 / 12, "feet"),
  27375. weight: math.unit(310, "lb"),
  27376. name: "Front",
  27377. image: {
  27378. source: "./media/characters/dahlia-verrick/front.svg",
  27379. extra: 1488 / 1365,
  27380. bottom: 6.2 / 1495
  27381. }
  27382. },
  27383. back: {
  27384. height: math.unit(7 + 6.451 / 12, "feet"),
  27385. weight: math.unit(310, "lb"),
  27386. name: "Back",
  27387. image: {
  27388. source: "./media/characters/dahlia-verrick/back.svg",
  27389. extra: 1472 / 1351,
  27390. bottom: 5.28 / 1477
  27391. }
  27392. },
  27393. frontBusiness: {
  27394. height: math.unit(7 + 6.451 / 12, "feet"),
  27395. weight: math.unit(200, "lb"),
  27396. name: "Front (Business)",
  27397. image: {
  27398. source: "./media/characters/dahlia-verrick/front-business.svg",
  27399. extra: 1478 / 1381,
  27400. bottom: 5.5 / 1484
  27401. }
  27402. },
  27403. frontCasual: {
  27404. height: math.unit(7 + 6.451 / 12, "feet"),
  27405. weight: math.unit(200, "lb"),
  27406. name: "Front (Casual)",
  27407. image: {
  27408. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27409. extra: 1478 / 1381,
  27410. bottom: 5.5 / 1484
  27411. }
  27412. },
  27413. },
  27414. [
  27415. {
  27416. name: "Travel-Sized",
  27417. height: math.unit(7.45, "inches")
  27418. },
  27419. {
  27420. name: "Normal",
  27421. height: math.unit(7 + 6.451 / 12, "feet"),
  27422. default: true
  27423. },
  27424. {
  27425. name: "Hitting the Town",
  27426. height: math.unit(37 + 8 / 12, "feet")
  27427. },
  27428. {
  27429. name: "Stomp in the Suburbs",
  27430. height: math.unit(964 + 9.728 / 12, "feet")
  27431. },
  27432. {
  27433. name: "Sit on the City",
  27434. height: math.unit(61747 + 10.592 / 12, "feet")
  27435. },
  27436. {
  27437. name: "Glomp the Globe",
  27438. height: math.unit(252919327 + 4.832 / 12, "feet")
  27439. },
  27440. ]
  27441. ))
  27442. characterMakers.push(() => makeCharacter(
  27443. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27444. {
  27445. front: {
  27446. height: math.unit(6 + 4 / 12, "feet"),
  27447. weight: math.unit(320, "lb"),
  27448. name: "Front",
  27449. image: {
  27450. source: "./media/characters/balina-mahigan/front.svg",
  27451. extra: 447 / 428,
  27452. bottom: 18 / 466
  27453. }
  27454. },
  27455. back: {
  27456. height: math.unit(6 + 4 / 12, "feet"),
  27457. weight: math.unit(320, "lb"),
  27458. name: "Back",
  27459. image: {
  27460. source: "./media/characters/balina-mahigan/back.svg",
  27461. extra: 445 / 428,
  27462. bottom: 4.07 / 448
  27463. }
  27464. },
  27465. arm: {
  27466. height: math.unit(1.88, "feet"),
  27467. name: "Arm",
  27468. image: {
  27469. source: "./media/characters/balina-mahigan/arm.svg"
  27470. }
  27471. },
  27472. backPort: {
  27473. height: math.unit(0.685, "feet"),
  27474. name: "Back Port",
  27475. image: {
  27476. source: "./media/characters/balina-mahigan/back-port.svg"
  27477. }
  27478. },
  27479. hoofpaw: {
  27480. height: math.unit(1.41, "feet"),
  27481. name: "Hoofpaw",
  27482. image: {
  27483. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27484. }
  27485. },
  27486. leftHandBack: {
  27487. height: math.unit(0.938, "feet"),
  27488. name: "Left Hand (Back)",
  27489. image: {
  27490. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27491. }
  27492. },
  27493. leftHandFront: {
  27494. height: math.unit(0.938, "feet"),
  27495. name: "Left Hand (Front)",
  27496. image: {
  27497. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27498. }
  27499. },
  27500. rightHandBack: {
  27501. height: math.unit(0.95, "feet"),
  27502. name: "Right Hand (Back)",
  27503. image: {
  27504. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27505. }
  27506. },
  27507. rightHandFront: {
  27508. height: math.unit(0.95, "feet"),
  27509. name: "Right Hand (Front)",
  27510. image: {
  27511. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27512. }
  27513. },
  27514. },
  27515. [
  27516. {
  27517. name: "Normal",
  27518. height: math.unit(6 + 4 / 12, "feet"),
  27519. default: true
  27520. },
  27521. ]
  27522. ))
  27523. characterMakers.push(() => makeCharacter(
  27524. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27525. {
  27526. front: {
  27527. height: math.unit(6, "feet"),
  27528. weight: math.unit(320, "lb"),
  27529. name: "Front",
  27530. image: {
  27531. source: "./media/characters/balina-mejeri/front.svg",
  27532. extra: 517 / 488,
  27533. bottom: 44.2 / 561
  27534. }
  27535. },
  27536. },
  27537. [
  27538. {
  27539. name: "Normal",
  27540. height: math.unit(6 + 4 / 12, "feet")
  27541. },
  27542. {
  27543. name: "Business",
  27544. height: math.unit(155, "feet"),
  27545. default: true
  27546. },
  27547. ]
  27548. ))
  27549. characterMakers.push(() => makeCharacter(
  27550. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27551. {
  27552. kneeling: {
  27553. height: math.unit(6 + 4 / 12, "feet"),
  27554. weight: math.unit(300 * 20, "lb"),
  27555. name: "Kneeling",
  27556. image: {
  27557. source: "./media/characters/balbarian/kneeling.svg",
  27558. extra: 922 / 862,
  27559. bottom: 42.4 / 965
  27560. }
  27561. },
  27562. },
  27563. [
  27564. {
  27565. name: "Normal",
  27566. height: math.unit(6 + 4 / 12, "feet")
  27567. },
  27568. {
  27569. name: "Treasured",
  27570. height: math.unit(18 + 9 / 12, "feet"),
  27571. default: true
  27572. },
  27573. {
  27574. name: "Macro",
  27575. height: math.unit(900, "feet")
  27576. },
  27577. ]
  27578. ))
  27579. characterMakers.push(() => makeCharacter(
  27580. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27581. {
  27582. front: {
  27583. height: math.unit(6 + 4 / 12, "feet"),
  27584. weight: math.unit(325, "lb"),
  27585. name: "Front",
  27586. image: {
  27587. source: "./media/characters/balina-amarini/front.svg",
  27588. extra: 415 / 403,
  27589. bottom: 19 / 433.4
  27590. }
  27591. },
  27592. back: {
  27593. height: math.unit(6 + 4 / 12, "feet"),
  27594. weight: math.unit(325, "lb"),
  27595. name: "Back",
  27596. image: {
  27597. source: "./media/characters/balina-amarini/back.svg",
  27598. extra: 415 / 403,
  27599. bottom: 13.5 / 432
  27600. }
  27601. },
  27602. overdrive: {
  27603. height: math.unit(6 + 4 / 12, "feet"),
  27604. weight: math.unit(400, "lb"),
  27605. name: "Overdrive",
  27606. image: {
  27607. source: "./media/characters/balina-amarini/overdrive.svg",
  27608. extra: 269 / 259,
  27609. bottom: 12 / 282
  27610. }
  27611. },
  27612. },
  27613. [
  27614. {
  27615. name: "Boom",
  27616. height: math.unit(9 + 10 / 12, "feet"),
  27617. default: true
  27618. },
  27619. {
  27620. name: "Macro",
  27621. height: math.unit(280, "feet")
  27622. },
  27623. ]
  27624. ))
  27625. characterMakers.push(() => makeCharacter(
  27626. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27627. {
  27628. goddess: {
  27629. height: math.unit(600, "feet"),
  27630. weight: math.unit(2000000, "tons"),
  27631. name: "Goddess",
  27632. image: {
  27633. source: "./media/characters/lady-kubwa/goddess.svg",
  27634. extra: 1240.5 / 1223,
  27635. bottom: 22 / 1263
  27636. }
  27637. },
  27638. goddesser: {
  27639. height: math.unit(900, "feet"),
  27640. weight: math.unit(20000000, "lb"),
  27641. name: "Goddess-er",
  27642. image: {
  27643. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27644. extra: 899 / 888,
  27645. bottom: 12.6 / 912
  27646. }
  27647. },
  27648. },
  27649. [
  27650. {
  27651. name: "Macro",
  27652. height: math.unit(600, "feet"),
  27653. default: true
  27654. },
  27655. {
  27656. name: "Megamacro",
  27657. height: math.unit(250, "miles")
  27658. },
  27659. ]
  27660. ))
  27661. characterMakers.push(() => makeCharacter(
  27662. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27663. {
  27664. front: {
  27665. height: math.unit(7 + 7 / 12, "feet"),
  27666. weight: math.unit(250, "lb"),
  27667. name: "Front",
  27668. image: {
  27669. source: "./media/characters/tala-grovehorn/front.svg",
  27670. extra: 2636 / 2525,
  27671. bottom: 147 / 2781
  27672. }
  27673. },
  27674. back: {
  27675. height: math.unit(7 + 7 / 12, "feet"),
  27676. weight: math.unit(250, "lb"),
  27677. name: "Back",
  27678. image: {
  27679. source: "./media/characters/tala-grovehorn/back.svg",
  27680. extra: 2635 / 2539,
  27681. bottom: 100 / 2732.8
  27682. }
  27683. },
  27684. mouth: {
  27685. height: math.unit(1.15, "feet"),
  27686. name: "Mouth",
  27687. image: {
  27688. source: "./media/characters/tala-grovehorn/mouth.svg"
  27689. }
  27690. },
  27691. dick: {
  27692. height: math.unit(2.36, "feet"),
  27693. name: "Dick",
  27694. image: {
  27695. source: "./media/characters/tala-grovehorn/dick.svg"
  27696. }
  27697. },
  27698. slit: {
  27699. height: math.unit(0.61, "feet"),
  27700. name: "Slit",
  27701. image: {
  27702. source: "./media/characters/tala-grovehorn/slit.svg"
  27703. }
  27704. },
  27705. },
  27706. [
  27707. ]
  27708. ))
  27709. characterMakers.push(() => makeCharacter(
  27710. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27711. {
  27712. front: {
  27713. height: math.unit(7 + 7 / 12, "feet"),
  27714. weight: math.unit(225, "lb"),
  27715. name: "Front",
  27716. image: {
  27717. source: "./media/characters/epona/front.svg",
  27718. extra: 2445 / 2290,
  27719. bottom: 251 / 2696
  27720. }
  27721. },
  27722. back: {
  27723. height: math.unit(7 + 7 / 12, "feet"),
  27724. weight: math.unit(225, "lb"),
  27725. name: "Back",
  27726. image: {
  27727. source: "./media/characters/epona/back.svg",
  27728. extra: 2546 / 2408,
  27729. bottom: 44 / 2589
  27730. }
  27731. },
  27732. genitals: {
  27733. height: math.unit(1.5, "feet"),
  27734. name: "Genitals",
  27735. image: {
  27736. source: "./media/characters/epona/genitals.svg"
  27737. }
  27738. },
  27739. },
  27740. [
  27741. {
  27742. name: "Normal",
  27743. height: math.unit(7 + 7 / 12, "feet"),
  27744. default: true
  27745. },
  27746. ]
  27747. ))
  27748. characterMakers.push(() => makeCharacter(
  27749. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27750. {
  27751. front: {
  27752. height: math.unit(7, "feet"),
  27753. weight: math.unit(518, "lb"),
  27754. name: "Front",
  27755. image: {
  27756. source: "./media/characters/avia-bloodbourn/front.svg",
  27757. extra: 1466 / 1350,
  27758. bottom: 65 / 1527
  27759. }
  27760. },
  27761. },
  27762. [
  27763. ]
  27764. ))
  27765. characterMakers.push(() => makeCharacter(
  27766. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27767. {
  27768. front: {
  27769. height: math.unit(9.35, "feet"),
  27770. weight: math.unit(600, "lb"),
  27771. name: "Front",
  27772. image: {
  27773. source: "./media/characters/amera/front.svg",
  27774. extra: 891 / 818,
  27775. bottom: 30 / 922.7
  27776. }
  27777. },
  27778. back: {
  27779. height: math.unit(9.35, "feet"),
  27780. weight: math.unit(600, "lb"),
  27781. name: "Back",
  27782. image: {
  27783. source: "./media/characters/amera/back.svg",
  27784. extra: 876 / 824,
  27785. bottom: 6.8 / 884
  27786. }
  27787. },
  27788. dick: {
  27789. height: math.unit(2.14, "feet"),
  27790. name: "Dick",
  27791. image: {
  27792. source: "./media/characters/amera/dick.svg"
  27793. }
  27794. },
  27795. },
  27796. [
  27797. {
  27798. name: "Normal",
  27799. height: math.unit(9.35, "feet"),
  27800. default: true
  27801. },
  27802. ]
  27803. ))
  27804. characterMakers.push(() => makeCharacter(
  27805. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27806. {
  27807. kneeling: {
  27808. height: math.unit(3 + 4 / 12, "feet"),
  27809. weight: math.unit(90, "lb"),
  27810. name: "Kneeling",
  27811. image: {
  27812. source: "./media/characters/rosewen/kneeling.svg",
  27813. extra: 1835 / 1571,
  27814. bottom: 27.7 / 1862
  27815. }
  27816. },
  27817. },
  27818. [
  27819. {
  27820. name: "Normal",
  27821. height: math.unit(3 + 4 / 12, "feet"),
  27822. default: true
  27823. },
  27824. ]
  27825. ))
  27826. characterMakers.push(() => makeCharacter(
  27827. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27828. {
  27829. front: {
  27830. height: math.unit(5 + 10 / 12, "feet"),
  27831. weight: math.unit(200, "lb"),
  27832. name: "Front",
  27833. image: {
  27834. source: "./media/characters/sabah/front.svg",
  27835. extra: 849 / 763,
  27836. bottom: 33.9 / 881
  27837. }
  27838. },
  27839. },
  27840. [
  27841. {
  27842. name: "Normal",
  27843. height: math.unit(5 + 10 / 12, "feet"),
  27844. default: true
  27845. },
  27846. ]
  27847. ))
  27848. characterMakers.push(() => makeCharacter(
  27849. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27850. {
  27851. front: {
  27852. height: math.unit(3 + 5 / 12, "feet"),
  27853. weight: math.unit(40, "kg"),
  27854. name: "Front",
  27855. image: {
  27856. source: "./media/characters/purple-flame/front.svg",
  27857. extra: 1577 / 1412,
  27858. bottom: 97 / 1694
  27859. }
  27860. },
  27861. frontDressed: {
  27862. height: math.unit(3 + 5 / 12, "feet"),
  27863. weight: math.unit(40, "kg"),
  27864. name: "Front (Dressed)",
  27865. image: {
  27866. source: "./media/characters/purple-flame/front-dressed.svg",
  27867. extra: 1577 / 1412,
  27868. bottom: 97 / 1694
  27869. }
  27870. },
  27871. headphones: {
  27872. height: math.unit(0.85, "feet"),
  27873. name: "Headphones",
  27874. image: {
  27875. source: "./media/characters/purple-flame/headphones.svg"
  27876. }
  27877. },
  27878. },
  27879. [
  27880. {
  27881. name: "Really Small",
  27882. height: math.unit(5, "cm")
  27883. },
  27884. {
  27885. name: "Micro",
  27886. height: math.unit(1 + 5 / 12, "feet")
  27887. },
  27888. {
  27889. name: "Normal",
  27890. height: math.unit(3 + 5 / 12, "feet"),
  27891. default: true
  27892. },
  27893. {
  27894. name: "Minimacro",
  27895. height: math.unit(125, "feet")
  27896. },
  27897. {
  27898. name: "Macro",
  27899. height: math.unit(0.5, "miles")
  27900. },
  27901. {
  27902. name: "Megamacro",
  27903. height: math.unit(50, "miles")
  27904. },
  27905. {
  27906. name: "Gigantic",
  27907. height: math.unit(750, "miles")
  27908. },
  27909. {
  27910. name: "Planetary",
  27911. height: math.unit(15000, "miles")
  27912. },
  27913. ]
  27914. ))
  27915. characterMakers.push(() => makeCharacter(
  27916. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27917. {
  27918. front: {
  27919. height: math.unit(14, "feet"),
  27920. weight: math.unit(959, "lb"),
  27921. name: "Front",
  27922. image: {
  27923. source: "./media/characters/arsenal/front.svg",
  27924. extra: 2357 / 2157,
  27925. bottom: 93 / 2458
  27926. }
  27927. },
  27928. },
  27929. [
  27930. {
  27931. name: "Normal",
  27932. height: math.unit(14, "feet"),
  27933. default: true
  27934. },
  27935. ]
  27936. ))
  27937. characterMakers.push(() => makeCharacter(
  27938. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27939. {
  27940. front: {
  27941. height: math.unit(6, "feet"),
  27942. weight: math.unit(150, "lb"),
  27943. name: "Front",
  27944. image: {
  27945. source: "./media/characters/adira/front.svg",
  27946. extra: 1078 / 1029,
  27947. bottom: 87 / 1166
  27948. }
  27949. },
  27950. },
  27951. [
  27952. {
  27953. name: "Micro",
  27954. height: math.unit(4, "inches"),
  27955. default: true
  27956. },
  27957. {
  27958. name: "Macro",
  27959. height: math.unit(50, "feet")
  27960. },
  27961. ]
  27962. ))
  27963. characterMakers.push(() => makeCharacter(
  27964. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27965. {
  27966. front: {
  27967. height: math.unit(16, "feet"),
  27968. weight: math.unit(1000, "lb"),
  27969. name: "Front",
  27970. image: {
  27971. source: "./media/characters/grim/front.svg",
  27972. extra: 622 / 614,
  27973. bottom: 18.1 / 642
  27974. }
  27975. },
  27976. back: {
  27977. height: math.unit(16, "feet"),
  27978. weight: math.unit(1000, "lb"),
  27979. name: "Back",
  27980. image: {
  27981. source: "./media/characters/grim/back.svg",
  27982. extra: 610.6 / 602,
  27983. bottom: 40.8 / 652
  27984. }
  27985. },
  27986. hunched: {
  27987. height: math.unit(9.75, "feet"),
  27988. weight: math.unit(1000, "lb"),
  27989. name: "Hunched",
  27990. image: {
  27991. source: "./media/characters/grim/hunched.svg",
  27992. extra: 304 / 297,
  27993. bottom: 35.4 / 394
  27994. }
  27995. },
  27996. },
  27997. [
  27998. {
  27999. name: "Normal",
  28000. height: math.unit(16, "feet"),
  28001. default: true
  28002. },
  28003. ]
  28004. ))
  28005. characterMakers.push(() => makeCharacter(
  28006. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28007. {
  28008. front: {
  28009. height: math.unit(2.3, "meters"),
  28010. weight: math.unit(300, "lb"),
  28011. name: "Front",
  28012. image: {
  28013. source: "./media/characters/sinja/front-sfw.svg",
  28014. extra: 1393 / 1294,
  28015. bottom: 70 / 1463
  28016. }
  28017. },
  28018. frontNsfw: {
  28019. height: math.unit(2.3, "meters"),
  28020. weight: math.unit(300, "lb"),
  28021. name: "Front (NSFW)",
  28022. image: {
  28023. source: "./media/characters/sinja/front-nsfw.svg",
  28024. extra: 1393 / 1294,
  28025. bottom: 70 / 1463
  28026. }
  28027. },
  28028. back: {
  28029. height: math.unit(2.3, "meters"),
  28030. weight: math.unit(300, "lb"),
  28031. name: "Back",
  28032. image: {
  28033. source: "./media/characters/sinja/back.svg",
  28034. extra: 1393 / 1294,
  28035. bottom: 70 / 1463
  28036. }
  28037. },
  28038. head: {
  28039. height: math.unit(1.771, "feet"),
  28040. name: "Head",
  28041. image: {
  28042. source: "./media/characters/sinja/head.svg"
  28043. }
  28044. },
  28045. slit: {
  28046. height: math.unit(0.8, "feet"),
  28047. name: "Slit",
  28048. image: {
  28049. source: "./media/characters/sinja/slit.svg"
  28050. }
  28051. },
  28052. },
  28053. [
  28054. {
  28055. name: "Normal",
  28056. height: math.unit(2.3, "meters")
  28057. },
  28058. {
  28059. name: "Macro",
  28060. height: math.unit(91, "meters"),
  28061. default: true
  28062. },
  28063. {
  28064. name: "Megamacro",
  28065. height: math.unit(91440, "meters")
  28066. },
  28067. {
  28068. name: "Gigamacro",
  28069. height: math.unit(60960000, "meters")
  28070. },
  28071. {
  28072. name: "Teramacro",
  28073. height: math.unit(9144000000, "meters")
  28074. },
  28075. ]
  28076. ))
  28077. characterMakers.push(() => makeCharacter(
  28078. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28079. {
  28080. front: {
  28081. height: math.unit(1.7, "meters"),
  28082. weight: math.unit(130, "lb"),
  28083. name: "Front",
  28084. image: {
  28085. source: "./media/characters/kyu/front.svg",
  28086. extra: 415 / 395,
  28087. bottom: 5 / 420
  28088. }
  28089. },
  28090. head: {
  28091. height: math.unit(1.75, "feet"),
  28092. name: "Head",
  28093. image: {
  28094. source: "./media/characters/kyu/head.svg"
  28095. }
  28096. },
  28097. foot: {
  28098. height: math.unit(0.81, "feet"),
  28099. name: "Foot",
  28100. image: {
  28101. source: "./media/characters/kyu/foot.svg"
  28102. }
  28103. },
  28104. },
  28105. [
  28106. {
  28107. name: "Normal",
  28108. height: math.unit(1.7, "meters")
  28109. },
  28110. {
  28111. name: "Macro",
  28112. height: math.unit(131, "feet"),
  28113. default: true
  28114. },
  28115. {
  28116. name: "Megamacro",
  28117. height: math.unit(91440, "meters")
  28118. },
  28119. {
  28120. name: "Gigamacro",
  28121. height: math.unit(60960000, "meters")
  28122. },
  28123. {
  28124. name: "Teramacro",
  28125. height: math.unit(9144000000, "meters")
  28126. },
  28127. ]
  28128. ))
  28129. characterMakers.push(() => makeCharacter(
  28130. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28131. {
  28132. front: {
  28133. height: math.unit(7 + 1 / 12, "feet"),
  28134. weight: math.unit(250, "lb"),
  28135. name: "Front",
  28136. image: {
  28137. source: "./media/characters/joey/front.svg",
  28138. extra: 1791 / 1537,
  28139. bottom: 28 / 1816
  28140. }
  28141. },
  28142. },
  28143. [
  28144. {
  28145. name: "Micro",
  28146. height: math.unit(3, "inches")
  28147. },
  28148. {
  28149. name: "Normal",
  28150. height: math.unit(7 + 1 / 12, "feet"),
  28151. default: true
  28152. },
  28153. ]
  28154. ))
  28155. characterMakers.push(() => makeCharacter(
  28156. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28157. {
  28158. front: {
  28159. height: math.unit(165, "cm"),
  28160. weight: math.unit(140, "lb"),
  28161. name: "Front",
  28162. image: {
  28163. source: "./media/characters/sam-evans/front.svg",
  28164. extra: 3417 / 3230,
  28165. bottom: 41.3 / 3417
  28166. }
  28167. },
  28168. frontSixTails: {
  28169. height: math.unit(165, "cm"),
  28170. weight: math.unit(140, "lb"),
  28171. name: "Front-six-tails",
  28172. image: {
  28173. source: "./media/characters/sam-evans/front-six-tails.svg",
  28174. extra: 3417 / 3230,
  28175. bottom: 41.3 / 3417
  28176. }
  28177. },
  28178. back: {
  28179. height: math.unit(165, "cm"),
  28180. weight: math.unit(140, "lb"),
  28181. name: "Back",
  28182. image: {
  28183. source: "./media/characters/sam-evans/back.svg",
  28184. extra: 3227 / 3032,
  28185. bottom: 6.8 / 3234
  28186. }
  28187. },
  28188. face: {
  28189. height: math.unit(0.68, "feet"),
  28190. name: "Face",
  28191. image: {
  28192. source: "./media/characters/sam-evans/face.svg"
  28193. }
  28194. },
  28195. },
  28196. [
  28197. {
  28198. name: "Normal",
  28199. height: math.unit(165, "cm"),
  28200. default: true
  28201. },
  28202. {
  28203. name: "Macro",
  28204. height: math.unit(100, "meters")
  28205. },
  28206. {
  28207. name: "Macro+",
  28208. height: math.unit(800, "meters")
  28209. },
  28210. {
  28211. name: "Macro++",
  28212. height: math.unit(3, "km")
  28213. },
  28214. {
  28215. name: "Macro+++",
  28216. height: math.unit(30, "km")
  28217. },
  28218. ]
  28219. ))
  28220. characterMakers.push(() => makeCharacter(
  28221. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28222. {
  28223. front: {
  28224. height: math.unit(10, "feet"),
  28225. weight: math.unit(750, "lb"),
  28226. name: "Front",
  28227. image: {
  28228. source: "./media/characters/juliet-a/front.svg",
  28229. extra: 1766 / 1720,
  28230. bottom: 43 / 1809
  28231. }
  28232. },
  28233. back: {
  28234. height: math.unit(10, "feet"),
  28235. weight: math.unit(750, "lb"),
  28236. name: "Back",
  28237. image: {
  28238. source: "./media/characters/juliet-a/back.svg",
  28239. extra: 1781 / 1734,
  28240. bottom: 35 / 1810,
  28241. }
  28242. },
  28243. },
  28244. [
  28245. {
  28246. name: "Normal",
  28247. height: math.unit(10, "feet"),
  28248. default: true
  28249. },
  28250. {
  28251. name: "Dragon Form",
  28252. height: math.unit(250, "feet")
  28253. },
  28254. {
  28255. name: "Macro",
  28256. height: math.unit(1000, "feet")
  28257. },
  28258. {
  28259. name: "Megamacro",
  28260. height: math.unit(10000, "feet")
  28261. }
  28262. ]
  28263. ))
  28264. characterMakers.push(() => makeCharacter(
  28265. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28266. {
  28267. regular: {
  28268. height: math.unit(7 + 3 / 12, "feet"),
  28269. weight: math.unit(260, "lb"),
  28270. name: "Regular",
  28271. image: {
  28272. source: "./media/characters/wild/regular.svg",
  28273. extra: 97.45 / 92,
  28274. bottom: 6.8 / 104.3
  28275. }
  28276. },
  28277. biggums: {
  28278. height: math.unit(8 + 6 / 12, "feet"),
  28279. weight: math.unit(425, "lb"),
  28280. name: "Biggums",
  28281. image: {
  28282. source: "./media/characters/wild/biggums.svg",
  28283. extra: 97.45 / 92,
  28284. bottom: 7.5 / 132.34
  28285. }
  28286. },
  28287. mawRegular: {
  28288. height: math.unit(1.24, "feet"),
  28289. name: "Maw (Regular)",
  28290. image: {
  28291. source: "./media/characters/wild/maw.svg"
  28292. }
  28293. },
  28294. mawBiggums: {
  28295. height: math.unit(1.47, "feet"),
  28296. name: "Maw (Biggums)",
  28297. image: {
  28298. source: "./media/characters/wild/maw.svg"
  28299. }
  28300. },
  28301. },
  28302. [
  28303. {
  28304. name: "Normal",
  28305. height: math.unit(7 + 3 / 12, "feet"),
  28306. default: true
  28307. },
  28308. ]
  28309. ))
  28310. characterMakers.push(() => makeCharacter(
  28311. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28312. {
  28313. front: {
  28314. height: math.unit(2.5, "meters"),
  28315. weight: math.unit(200, "kg"),
  28316. name: "Front",
  28317. image: {
  28318. source: "./media/characters/vidar/front.svg",
  28319. extra: 2994 / 2795,
  28320. bottom: 56 / 3061
  28321. }
  28322. },
  28323. back: {
  28324. height: math.unit(2.5, "meters"),
  28325. weight: math.unit(200, "kg"),
  28326. name: "Back",
  28327. image: {
  28328. source: "./media/characters/vidar/back.svg",
  28329. extra: 3131 / 2928,
  28330. bottom: 13.5 / 3141.5
  28331. }
  28332. },
  28333. feral: {
  28334. height: math.unit(2.5, "meters"),
  28335. weight: math.unit(2000, "kg"),
  28336. name: "Feral",
  28337. image: {
  28338. source: "./media/characters/vidar/feral.svg",
  28339. extra: 2790 / 1765,
  28340. bottom: 6 / 2796
  28341. }
  28342. },
  28343. },
  28344. [
  28345. {
  28346. name: "Normal",
  28347. height: math.unit(2.5, "meters"),
  28348. default: true
  28349. },
  28350. {
  28351. name: "Macro",
  28352. height: math.unit(100, "meters")
  28353. },
  28354. ]
  28355. ))
  28356. characterMakers.push(() => makeCharacter(
  28357. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28358. {
  28359. front: {
  28360. height: math.unit(5 + 9 / 12, "feet"),
  28361. weight: math.unit(120, "lb"),
  28362. name: "Front",
  28363. image: {
  28364. source: "./media/characters/ash/front.svg",
  28365. extra: 2189 / 1961,
  28366. bottom: 5.2 / 2194
  28367. }
  28368. },
  28369. },
  28370. [
  28371. {
  28372. name: "Normal",
  28373. height: math.unit(5 + 9 / 12, "feet"),
  28374. default: true
  28375. },
  28376. ]
  28377. ))
  28378. characterMakers.push(() => makeCharacter(
  28379. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28380. {
  28381. front: {
  28382. height: math.unit(9, "feet"),
  28383. weight: math.unit(10000, "lb"),
  28384. name: "Front",
  28385. image: {
  28386. source: "./media/characters/gygabite/front.svg",
  28387. bottom: 31.7 / 537.8,
  28388. extra: 505 / 370
  28389. }
  28390. },
  28391. },
  28392. [
  28393. {
  28394. name: "Normal",
  28395. height: math.unit(9, "feet"),
  28396. default: true
  28397. },
  28398. ]
  28399. ))
  28400. characterMakers.push(() => makeCharacter(
  28401. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  28402. {
  28403. front: {
  28404. height: math.unit(12, "feet"),
  28405. weight: math.unit(35000, "lb"),
  28406. name: "Front",
  28407. image: {
  28408. source: "./media/characters/p0tat0/front.svg",
  28409. extra: 1065 / 921,
  28410. bottom: 55.7 / 1121.25
  28411. }
  28412. },
  28413. },
  28414. [
  28415. {
  28416. name: "Normal",
  28417. height: math.unit(12, "feet"),
  28418. default: true
  28419. },
  28420. ]
  28421. ))
  28422. characterMakers.push(() => makeCharacter(
  28423. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28424. {
  28425. side: {
  28426. height: math.unit(6.5, "feet"),
  28427. weight: math.unit(800, "lb"),
  28428. name: "Side",
  28429. image: {
  28430. source: "./media/characters/dusk/side.svg",
  28431. extra: 615 / 373,
  28432. bottom: 53 / 664
  28433. }
  28434. },
  28435. sitting: {
  28436. height: math.unit(7, "feet"),
  28437. weight: math.unit(800, "lb"),
  28438. name: "Sitting",
  28439. image: {
  28440. source: "./media/characters/dusk/sitting.svg",
  28441. extra: 753 / 425,
  28442. bottom: 33 / 774
  28443. }
  28444. },
  28445. head: {
  28446. height: math.unit(6.1, "feet"),
  28447. name: "Head",
  28448. image: {
  28449. source: "./media/characters/dusk/head.svg"
  28450. }
  28451. },
  28452. },
  28453. [
  28454. {
  28455. name: "Normal",
  28456. height: math.unit(7, "feet"),
  28457. default: true
  28458. },
  28459. ]
  28460. ))
  28461. characterMakers.push(() => makeCharacter(
  28462. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28463. {
  28464. front: {
  28465. height: math.unit(15, "feet"),
  28466. weight: math.unit(7000, "lb"),
  28467. name: "Front",
  28468. image: {
  28469. source: "./media/characters/jay-direwolf/front.svg",
  28470. extra: 1810 / 1732,
  28471. bottom: 66 / 1892
  28472. }
  28473. },
  28474. },
  28475. [
  28476. {
  28477. name: "Normal",
  28478. height: math.unit(15, "feet"),
  28479. default: true
  28480. },
  28481. ]
  28482. ))
  28483. characterMakers.push(() => makeCharacter(
  28484. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28485. {
  28486. front: {
  28487. height: math.unit(4 + 9 / 12, "feet"),
  28488. weight: math.unit(130, "lb"),
  28489. name: "Front",
  28490. image: {
  28491. source: "./media/characters/anchovie/front.svg",
  28492. extra: 382 / 350,
  28493. bottom: 25 / 409
  28494. }
  28495. },
  28496. back: {
  28497. height: math.unit(4 + 9 / 12, "feet"),
  28498. weight: math.unit(130, "lb"),
  28499. name: "Back",
  28500. image: {
  28501. source: "./media/characters/anchovie/back.svg",
  28502. extra: 385 / 352,
  28503. bottom: 16.6 / 402
  28504. }
  28505. },
  28506. frontDressed: {
  28507. height: math.unit(4 + 9 / 12, "feet"),
  28508. weight: math.unit(130, "lb"),
  28509. name: "Front (Dressed)",
  28510. image: {
  28511. source: "./media/characters/anchovie/front-dressed.svg",
  28512. extra: 382 / 350,
  28513. bottom: 25 / 409
  28514. }
  28515. },
  28516. backDressed: {
  28517. height: math.unit(4 + 9 / 12, "feet"),
  28518. weight: math.unit(130, "lb"),
  28519. name: "Back (Dressed)",
  28520. image: {
  28521. source: "./media/characters/anchovie/back-dressed.svg",
  28522. extra: 385 / 352,
  28523. bottom: 16.6 / 402
  28524. }
  28525. },
  28526. },
  28527. [
  28528. {
  28529. name: "Micro",
  28530. height: math.unit(6.4, "inches")
  28531. },
  28532. {
  28533. name: "Normal",
  28534. height: math.unit(4 + 9 / 12, "feet"),
  28535. default: true
  28536. },
  28537. ]
  28538. ))
  28539. characterMakers.push(() => makeCharacter(
  28540. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28541. {
  28542. front: {
  28543. height: math.unit(2, "meters"),
  28544. weight: math.unit(180, "lb"),
  28545. name: "Front",
  28546. image: {
  28547. source: "./media/characters/acidrenamon/front.svg",
  28548. extra: 987 / 890,
  28549. bottom: 22.8 / 1009
  28550. }
  28551. },
  28552. back: {
  28553. height: math.unit(2, "meters"),
  28554. weight: math.unit(180, "lb"),
  28555. name: "Back",
  28556. image: {
  28557. source: "./media/characters/acidrenamon/back.svg",
  28558. extra: 983 / 891,
  28559. bottom: 8.4 / 992
  28560. }
  28561. },
  28562. head: {
  28563. height: math.unit(1.92, "feet"),
  28564. name: "Head",
  28565. image: {
  28566. source: "./media/characters/acidrenamon/head.svg"
  28567. }
  28568. },
  28569. rump: {
  28570. height: math.unit(1.72, "feet"),
  28571. name: "Rump",
  28572. image: {
  28573. source: "./media/characters/acidrenamon/rump.svg"
  28574. }
  28575. },
  28576. tail: {
  28577. height: math.unit(4.2, "feet"),
  28578. name: "Tail",
  28579. image: {
  28580. source: "./media/characters/acidrenamon/tail.svg"
  28581. }
  28582. },
  28583. },
  28584. [
  28585. {
  28586. name: "Normal",
  28587. height: math.unit(2, "meters"),
  28588. default: true
  28589. },
  28590. {
  28591. name: "Minimacro",
  28592. height: math.unit(7, "meters")
  28593. },
  28594. {
  28595. name: "Macro",
  28596. height: math.unit(200, "meters")
  28597. },
  28598. {
  28599. name: "Gigamacro",
  28600. height: math.unit(0.2, "earths")
  28601. },
  28602. ]
  28603. ))
  28604. characterMakers.push(() => makeCharacter(
  28605. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28606. {
  28607. front: {
  28608. height: math.unit(152, "feet"),
  28609. name: "Front",
  28610. image: {
  28611. source: "./media/characters/kenzie-lee/front.svg",
  28612. extra: 1869/1774,
  28613. bottom: 128/1997
  28614. }
  28615. },
  28616. side: {
  28617. height: math.unit(86, "feet"),
  28618. name: "Side",
  28619. image: {
  28620. source: "./media/characters/kenzie-lee/side.svg",
  28621. extra: 930/815,
  28622. bottom: 177/1107
  28623. }
  28624. },
  28625. paw: {
  28626. height: math.unit(15, "feet"),
  28627. name: "Paw",
  28628. image: {
  28629. source: "./media/characters/kenzie-lee/paw.svg"
  28630. }
  28631. },
  28632. },
  28633. [
  28634. {
  28635. name: "Kenzie Flea",
  28636. height: math.unit(2, "mm"),
  28637. default: true
  28638. },
  28639. {
  28640. name: "Micro",
  28641. height: math.unit(2, "inches")
  28642. },
  28643. {
  28644. name: "Normal",
  28645. height: math.unit(152, "feet")
  28646. },
  28647. {
  28648. name: "Megamacro",
  28649. height: math.unit(7, "miles")
  28650. },
  28651. {
  28652. name: "Gigamacro",
  28653. height: math.unit(8000, "miles")
  28654. },
  28655. ]
  28656. ))
  28657. characterMakers.push(() => makeCharacter(
  28658. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28659. {
  28660. front: {
  28661. height: math.unit(6, "feet"),
  28662. name: "Front",
  28663. image: {
  28664. source: "./media/characters/withers/front.svg",
  28665. extra: 1935/1760,
  28666. bottom: 72/2007
  28667. }
  28668. },
  28669. back: {
  28670. height: math.unit(6, "feet"),
  28671. name: "Back",
  28672. image: {
  28673. source: "./media/characters/withers/back.svg",
  28674. extra: 1944/1792,
  28675. bottom: 12/1956
  28676. }
  28677. },
  28678. dressed: {
  28679. height: math.unit(6, "feet"),
  28680. name: "Dressed",
  28681. image: {
  28682. source: "./media/characters/withers/dressed.svg",
  28683. extra: 1937/1765,
  28684. bottom: 73/2010
  28685. }
  28686. },
  28687. phase1: {
  28688. height: math.unit(1.1, "feet"),
  28689. name: "Phase 1",
  28690. image: {
  28691. source: "./media/characters/withers/phase-1.svg",
  28692. extra: 1885/1232,
  28693. bottom: 0/1885
  28694. }
  28695. },
  28696. phase2: {
  28697. height: math.unit(1.05, "feet"),
  28698. name: "Phase 2",
  28699. image: {
  28700. source: "./media/characters/withers/phase-2.svg",
  28701. extra: 1792/1090,
  28702. bottom: 0/1792
  28703. }
  28704. },
  28705. partyWipe: {
  28706. height: math.unit(1.1, "feet"),
  28707. name: "Party Wipe",
  28708. image: {
  28709. source: "./media/characters/withers/party-wipe.svg",
  28710. extra: 1864/1207,
  28711. bottom: 0/1864
  28712. }
  28713. },
  28714. },
  28715. [
  28716. {
  28717. name: "Macro",
  28718. height: math.unit(167, "feet"),
  28719. default: true
  28720. },
  28721. {
  28722. name: "Megamacro",
  28723. height: math.unit(15, "miles")
  28724. }
  28725. ]
  28726. ))
  28727. characterMakers.push(() => makeCharacter(
  28728. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28729. {
  28730. front: {
  28731. height: math.unit(6 + 7 / 12, "feet"),
  28732. weight: math.unit(250, "lb"),
  28733. name: "Front",
  28734. image: {
  28735. source: "./media/characters/nemoskii/front.svg",
  28736. extra: 2270 / 1734,
  28737. bottom: 86 / 2354
  28738. }
  28739. },
  28740. back: {
  28741. height: math.unit(6 + 7 / 12, "feet"),
  28742. weight: math.unit(250, "lb"),
  28743. name: "Back",
  28744. image: {
  28745. source: "./media/characters/nemoskii/back.svg",
  28746. extra: 1845 / 1788,
  28747. bottom: 10.5 / 1852
  28748. }
  28749. },
  28750. head: {
  28751. height: math.unit(1.31, "feet"),
  28752. name: "Head",
  28753. image: {
  28754. source: "./media/characters/nemoskii/head.svg"
  28755. }
  28756. },
  28757. },
  28758. [
  28759. {
  28760. name: "Micro",
  28761. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28762. },
  28763. {
  28764. name: "Normal",
  28765. height: math.unit(6 + 7 / 12, "feet"),
  28766. default: true
  28767. },
  28768. {
  28769. name: "Macro",
  28770. height: math.unit((6 + 7 / 12) * 150, "feet")
  28771. },
  28772. {
  28773. name: "Macro+",
  28774. height: math.unit((6 + 7 / 12) * 500, "feet")
  28775. },
  28776. {
  28777. name: "Megamacro",
  28778. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28779. },
  28780. ]
  28781. ))
  28782. characterMakers.push(() => makeCharacter(
  28783. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28784. {
  28785. front: {
  28786. height: math.unit(1, "mile"),
  28787. weight: math.unit(265261.9, "lb"),
  28788. name: "Front",
  28789. image: {
  28790. source: "./media/characters/shui/front.svg",
  28791. extra: 1633 / 1564,
  28792. bottom: 91.5 / 1726
  28793. }
  28794. },
  28795. },
  28796. [
  28797. {
  28798. name: "Macro",
  28799. height: math.unit(1, "mile"),
  28800. default: true
  28801. },
  28802. ]
  28803. ))
  28804. characterMakers.push(() => makeCharacter(
  28805. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28806. {
  28807. front: {
  28808. height: math.unit(12 + 6 / 12, "feet"),
  28809. weight: math.unit(1342, "lb"),
  28810. name: "Front",
  28811. image: {
  28812. source: "./media/characters/arokh-takakura/front.svg",
  28813. extra: 1089 / 1043,
  28814. bottom: 77.4 / 1176.7
  28815. }
  28816. },
  28817. back: {
  28818. height: math.unit(12 + 6 / 12, "feet"),
  28819. weight: math.unit(1342, "lb"),
  28820. name: "Back",
  28821. image: {
  28822. source: "./media/characters/arokh-takakura/back.svg",
  28823. extra: 1046 / 1019,
  28824. bottom: 102 / 1150
  28825. }
  28826. },
  28827. },
  28828. [
  28829. {
  28830. name: "Big",
  28831. height: math.unit(12 + 6 / 12, "feet"),
  28832. default: true
  28833. },
  28834. ]
  28835. ))
  28836. characterMakers.push(() => makeCharacter(
  28837. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28838. {
  28839. front: {
  28840. height: math.unit(5 + 6 / 12, "feet"),
  28841. weight: math.unit(150, "lb"),
  28842. name: "Front",
  28843. image: {
  28844. source: "./media/characters/theo/front.svg",
  28845. extra: 1184 / 1131,
  28846. bottom: 7.4 / 1191
  28847. }
  28848. },
  28849. },
  28850. [
  28851. {
  28852. name: "Micro",
  28853. height: math.unit(5, "inches")
  28854. },
  28855. {
  28856. name: "Normal",
  28857. height: math.unit(5 + 6 / 12, "feet"),
  28858. default: true
  28859. },
  28860. ]
  28861. ))
  28862. characterMakers.push(() => makeCharacter(
  28863. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28864. {
  28865. front: {
  28866. height: math.unit(5 + 9 / 12, "feet"),
  28867. weight: math.unit(130, "lb"),
  28868. name: "Front",
  28869. image: {
  28870. source: "./media/characters/cecelia-swift/front.svg",
  28871. extra: 502 / 484,
  28872. bottom: 23 / 523
  28873. }
  28874. },
  28875. back: {
  28876. height: math.unit(5 + 9 / 12, "feet"),
  28877. weight: math.unit(130, "lb"),
  28878. name: "Back",
  28879. image: {
  28880. source: "./media/characters/cecelia-swift/back.svg",
  28881. extra: 499 / 485,
  28882. bottom: 12 / 511
  28883. }
  28884. },
  28885. head: {
  28886. height: math.unit(0.90, "feet"),
  28887. name: "Head",
  28888. image: {
  28889. source: "./media/characters/cecelia-swift/head.svg"
  28890. }
  28891. },
  28892. rump: {
  28893. height: math.unit(1.75, "feet"),
  28894. name: "Rump",
  28895. image: {
  28896. source: "./media/characters/cecelia-swift/rump.svg"
  28897. }
  28898. },
  28899. },
  28900. [
  28901. {
  28902. name: "Normal",
  28903. height: math.unit(5 + 9 / 12, "feet"),
  28904. default: true
  28905. },
  28906. {
  28907. name: "Big",
  28908. height: math.unit(50, "feet")
  28909. },
  28910. {
  28911. name: "Macro",
  28912. height: math.unit(100, "feet")
  28913. },
  28914. {
  28915. name: "Macro+",
  28916. height: math.unit(500, "feet")
  28917. },
  28918. {
  28919. name: "Macro++",
  28920. height: math.unit(1000, "feet")
  28921. },
  28922. ]
  28923. ))
  28924. characterMakers.push(() => makeCharacter(
  28925. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28926. {
  28927. front: {
  28928. height: math.unit(6, "feet"),
  28929. weight: math.unit(150, "lb"),
  28930. name: "Front",
  28931. image: {
  28932. source: "./media/characters/kaunan/front.svg",
  28933. extra: 2890 / 2523,
  28934. bottom: 49 / 2939
  28935. }
  28936. },
  28937. },
  28938. [
  28939. {
  28940. name: "Macro",
  28941. height: math.unit(150, "feet"),
  28942. default: true
  28943. },
  28944. ]
  28945. ))
  28946. characterMakers.push(() => makeCharacter(
  28947. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28948. {
  28949. front: {
  28950. height: math.unit(175, "cm"),
  28951. weight: math.unit(60, "kg"),
  28952. name: "Front",
  28953. image: {
  28954. source: "./media/characters/fei/front.svg",
  28955. extra: 1873/1723,
  28956. bottom: 53/1926
  28957. }
  28958. },
  28959. },
  28960. [
  28961. {
  28962. name: "Mortal",
  28963. height: math.unit(175, "cm")
  28964. },
  28965. {
  28966. name: "Normal",
  28967. height: math.unit(3500, "m"),
  28968. default: true
  28969. },
  28970. {
  28971. name: "Stroll",
  28972. height: math.unit(17.5, "km")
  28973. },
  28974. {
  28975. name: "Showoff",
  28976. height: math.unit(175, "km")
  28977. },
  28978. ]
  28979. ))
  28980. characterMakers.push(() => makeCharacter(
  28981. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28982. {
  28983. front: {
  28984. height: math.unit(7, "feet"),
  28985. weight: math.unit(1000, "kg"),
  28986. name: "Front",
  28987. image: {
  28988. source: "./media/characters/edrax/front.svg",
  28989. extra: 2838 / 2550,
  28990. bottom: 130 / 2968
  28991. }
  28992. },
  28993. },
  28994. [
  28995. {
  28996. name: "Small",
  28997. height: math.unit(7, "feet")
  28998. },
  28999. {
  29000. name: "Normal",
  29001. height: math.unit(1500, "meters")
  29002. },
  29003. {
  29004. name: "Mega",
  29005. height: math.unit(12000000, "km"),
  29006. default: true
  29007. },
  29008. {
  29009. name: "Megamacro",
  29010. height: math.unit(10600000, "lightyears")
  29011. },
  29012. {
  29013. name: "Hypermacro",
  29014. height: math.unit(256, "yottameters")
  29015. },
  29016. ]
  29017. ))
  29018. characterMakers.push(() => makeCharacter(
  29019. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29020. {
  29021. front: {
  29022. height: math.unit(10, "feet"),
  29023. weight: math.unit(750, "lb"),
  29024. name: "Front",
  29025. image: {
  29026. source: "./media/characters/clove/front.svg",
  29027. extra: 1918/1751,
  29028. bottom: 52/1970
  29029. }
  29030. },
  29031. back: {
  29032. height: math.unit(10, "feet"),
  29033. weight: math.unit(750, "lb"),
  29034. name: "Back",
  29035. image: {
  29036. source: "./media/characters/clove/back.svg",
  29037. extra: 1912/1747,
  29038. bottom: 50/1962
  29039. }
  29040. },
  29041. },
  29042. [
  29043. {
  29044. name: "Normal",
  29045. height: math.unit(10, "feet"),
  29046. default: true
  29047. },
  29048. ]
  29049. ))
  29050. characterMakers.push(() => makeCharacter(
  29051. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29052. {
  29053. front: {
  29054. height: math.unit(4, "feet"),
  29055. weight: math.unit(50, "lb"),
  29056. name: "Front",
  29057. image: {
  29058. source: "./media/characters/alex-rabbit/front.svg",
  29059. extra: 507 / 458,
  29060. bottom: 18.5 / 527
  29061. }
  29062. },
  29063. back: {
  29064. height: math.unit(4, "feet"),
  29065. weight: math.unit(50, "lb"),
  29066. name: "Back",
  29067. image: {
  29068. source: "./media/characters/alex-rabbit/back.svg",
  29069. extra: 502 / 460,
  29070. bottom: 18.9 / 521
  29071. }
  29072. },
  29073. },
  29074. [
  29075. {
  29076. name: "Normal",
  29077. height: math.unit(4, "feet"),
  29078. default: true
  29079. },
  29080. ]
  29081. ))
  29082. characterMakers.push(() => makeCharacter(
  29083. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29084. {
  29085. front: {
  29086. height: math.unit(1 + 3 / 12, "feet"),
  29087. weight: math.unit(80, "lb"),
  29088. name: "Front",
  29089. image: {
  29090. source: "./media/characters/zander-rose/front.svg",
  29091. extra: 916 / 797,
  29092. bottom: 17 / 933
  29093. }
  29094. },
  29095. back: {
  29096. height: math.unit(1 + 3 / 12, "feet"),
  29097. weight: math.unit(80, "lb"),
  29098. name: "Back",
  29099. image: {
  29100. source: "./media/characters/zander-rose/back.svg",
  29101. extra: 903 / 779,
  29102. bottom: 31 / 934
  29103. }
  29104. },
  29105. },
  29106. [
  29107. {
  29108. name: "Normal",
  29109. height: math.unit(1 + 3 / 12, "feet"),
  29110. default: true
  29111. },
  29112. ]
  29113. ))
  29114. characterMakers.push(() => makeCharacter(
  29115. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29116. {
  29117. anthro: {
  29118. height: math.unit(6, "feet"),
  29119. weight: math.unit(150, "lb"),
  29120. name: "Anthro",
  29121. image: {
  29122. source: "./media/characters/razz/anthro.svg",
  29123. extra: 1437 / 1343,
  29124. bottom: 48 / 1485
  29125. }
  29126. },
  29127. feral: {
  29128. height: math.unit(6, "feet"),
  29129. weight: math.unit(150, "lb"),
  29130. name: "Feral",
  29131. image: {
  29132. source: "./media/characters/razz/feral.svg",
  29133. extra: 2569 / 1385,
  29134. bottom: 95 / 2664
  29135. }
  29136. },
  29137. },
  29138. [
  29139. {
  29140. name: "Normal",
  29141. height: math.unit(6, "feet"),
  29142. default: true
  29143. },
  29144. ]
  29145. ))
  29146. characterMakers.push(() => makeCharacter(
  29147. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29148. {
  29149. front: {
  29150. height: math.unit(9 + 4 / 12, "feet"),
  29151. weight: math.unit(500, "lb"),
  29152. name: "Front",
  29153. image: {
  29154. source: "./media/characters/morrigan/front.svg",
  29155. extra: 2707 / 2579,
  29156. bottom: 156 / 2863
  29157. }
  29158. },
  29159. },
  29160. [
  29161. {
  29162. name: "Normal",
  29163. height: math.unit(9 + 4 / 12, "feet"),
  29164. default: true
  29165. },
  29166. ]
  29167. ))
  29168. characterMakers.push(() => makeCharacter(
  29169. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29170. {
  29171. front: {
  29172. height: math.unit(5, "stories"),
  29173. weight: math.unit(4000, "lb"),
  29174. name: "Front",
  29175. image: {
  29176. source: "./media/characters/jenene/front.svg",
  29177. extra: 1780 / 1710,
  29178. bottom: 57 / 1837
  29179. }
  29180. },
  29181. },
  29182. [
  29183. {
  29184. name: "Normal",
  29185. height: math.unit(5, "stories"),
  29186. default: true
  29187. },
  29188. ]
  29189. ))
  29190. characterMakers.push(() => makeCharacter(
  29191. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29192. {
  29193. taurSfw: {
  29194. height: math.unit(10, "meters"),
  29195. weight: math.unit(17500, "kg"),
  29196. name: "Taur",
  29197. image: {
  29198. source: "./media/characters/faey/taur-sfw.svg",
  29199. extra: 1200 / 968,
  29200. bottom: 41 / 1241
  29201. }
  29202. },
  29203. chestmaw: {
  29204. height: math.unit(2.01, "meters"),
  29205. name: "Chestmaw",
  29206. image: {
  29207. source: "./media/characters/faey/chestmaw.svg"
  29208. }
  29209. },
  29210. foot: {
  29211. height: math.unit(2.43, "meters"),
  29212. name: "Foot",
  29213. image: {
  29214. source: "./media/characters/faey/foot.svg"
  29215. }
  29216. },
  29217. jaws: {
  29218. height: math.unit(1.66, "meters"),
  29219. name: "Jaws",
  29220. image: {
  29221. source: "./media/characters/faey/jaws.svg"
  29222. }
  29223. },
  29224. tongues: {
  29225. height: math.unit(2.01, "meters"),
  29226. name: "Tongues",
  29227. image: {
  29228. source: "./media/characters/faey/tongues.svg"
  29229. }
  29230. },
  29231. },
  29232. [
  29233. {
  29234. name: "Small",
  29235. height: math.unit(10, "meters"),
  29236. default: true
  29237. },
  29238. {
  29239. name: "Big",
  29240. height: math.unit(500000, "km")
  29241. },
  29242. ]
  29243. ))
  29244. characterMakers.push(() => makeCharacter(
  29245. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29246. {
  29247. front: {
  29248. height: math.unit(7, "feet"),
  29249. weight: math.unit(275, "lb"),
  29250. name: "Front",
  29251. image: {
  29252. source: "./media/characters/roku/front.svg",
  29253. extra: 903 / 878,
  29254. bottom: 37 / 940
  29255. }
  29256. },
  29257. },
  29258. [
  29259. {
  29260. name: "Normal",
  29261. height: math.unit(7, "feet"),
  29262. default: true
  29263. },
  29264. {
  29265. name: "Macro",
  29266. height: math.unit(500, "feet")
  29267. },
  29268. {
  29269. name: "Megamacro",
  29270. height: math.unit(200, "miles")
  29271. },
  29272. ]
  29273. ))
  29274. characterMakers.push(() => makeCharacter(
  29275. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29276. {
  29277. front: {
  29278. height: math.unit(6 + 2 / 12, "feet"),
  29279. weight: math.unit(150, "lb"),
  29280. name: "Front",
  29281. image: {
  29282. source: "./media/characters/lira/front.svg",
  29283. extra: 1727 / 1605,
  29284. bottom: 26 / 1753
  29285. }
  29286. },
  29287. back: {
  29288. height: math.unit(6 + 2 / 12, "feet"),
  29289. weight: math.unit(150, "lb"),
  29290. name: "Back",
  29291. image: {
  29292. source: "./media/characters/lira/back.svg",
  29293. extra: 1713/1621,
  29294. bottom: 20/1733
  29295. }
  29296. },
  29297. hand: {
  29298. height: math.unit(0.75, "feet"),
  29299. name: "Hand",
  29300. image: {
  29301. source: "./media/characters/lira/hand.svg"
  29302. }
  29303. },
  29304. maw: {
  29305. height: math.unit(0.65, "feet"),
  29306. name: "Maw",
  29307. image: {
  29308. source: "./media/characters/lira/maw.svg"
  29309. }
  29310. },
  29311. pawDigi: {
  29312. height: math.unit(1.6, "feet"),
  29313. name: "Paw Digi",
  29314. image: {
  29315. source: "./media/characters/lira/paw-digi.svg"
  29316. }
  29317. },
  29318. pawPlanti: {
  29319. height: math.unit(1.4, "feet"),
  29320. name: "Paw Planti",
  29321. image: {
  29322. source: "./media/characters/lira/paw-planti.svg"
  29323. }
  29324. },
  29325. },
  29326. [
  29327. {
  29328. name: "Normal",
  29329. height: math.unit(6 + 2 / 12, "feet"),
  29330. default: true
  29331. },
  29332. {
  29333. name: "Macro",
  29334. height: math.unit(100, "feet")
  29335. },
  29336. {
  29337. name: "Macro²",
  29338. height: math.unit(1600, "feet")
  29339. },
  29340. {
  29341. name: "Planetary",
  29342. height: math.unit(20, "earths")
  29343. },
  29344. ]
  29345. ))
  29346. characterMakers.push(() => makeCharacter(
  29347. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29348. {
  29349. front: {
  29350. height: math.unit(6, "feet"),
  29351. weight: math.unit(150, "lb"),
  29352. name: "Front",
  29353. image: {
  29354. source: "./media/characters/hadjet/front.svg",
  29355. extra: 1480 / 1346,
  29356. bottom: 26 / 1506
  29357. }
  29358. },
  29359. frontNsfw: {
  29360. height: math.unit(6, "feet"),
  29361. weight: math.unit(150, "lb"),
  29362. name: "Front (NSFW)",
  29363. image: {
  29364. source: "./media/characters/hadjet/front-nsfw.svg",
  29365. extra: 1440 / 1358,
  29366. bottom: 52 / 1492
  29367. }
  29368. },
  29369. },
  29370. [
  29371. {
  29372. name: "Macro",
  29373. height: math.unit(10, "stories"),
  29374. default: true
  29375. },
  29376. {
  29377. name: "Megamacro",
  29378. height: math.unit(1.5, "miles")
  29379. },
  29380. {
  29381. name: "Megamacro+",
  29382. height: math.unit(5, "miles")
  29383. },
  29384. ]
  29385. ))
  29386. characterMakers.push(() => makeCharacter(
  29387. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29388. {
  29389. side: {
  29390. height: math.unit(106, "feet"),
  29391. weight: math.unit(500, "tonnes"),
  29392. name: "Side",
  29393. image: {
  29394. source: "./media/characters/kodran/side.svg",
  29395. extra: 553 / 480,
  29396. bottom: 33 / 586
  29397. }
  29398. },
  29399. front: {
  29400. height: math.unit(132, "feet"),
  29401. weight: math.unit(500, "tonnes"),
  29402. name: "Front",
  29403. image: {
  29404. source: "./media/characters/kodran/front.svg",
  29405. extra: 667 / 643,
  29406. bottom: 42 / 709
  29407. }
  29408. },
  29409. flying: {
  29410. height: math.unit(350, "feet"),
  29411. weight: math.unit(500, "tonnes"),
  29412. name: "Flying",
  29413. image: {
  29414. source: "./media/characters/kodran/flying.svg"
  29415. }
  29416. },
  29417. foot: {
  29418. height: math.unit(33, "feet"),
  29419. name: "Foot",
  29420. image: {
  29421. source: "./media/characters/kodran/foot.svg"
  29422. }
  29423. },
  29424. footFront: {
  29425. height: math.unit(19, "feet"),
  29426. name: "Foot (Front)",
  29427. image: {
  29428. source: "./media/characters/kodran/foot-front.svg",
  29429. extra: 261 / 261,
  29430. bottom: 91 / 352
  29431. }
  29432. },
  29433. headFront: {
  29434. height: math.unit(53, "feet"),
  29435. name: "Head (Front)",
  29436. image: {
  29437. source: "./media/characters/kodran/head-front.svg"
  29438. }
  29439. },
  29440. headSide: {
  29441. height: math.unit(65, "feet"),
  29442. name: "Head (Side)",
  29443. image: {
  29444. source: "./media/characters/kodran/head-side.svg"
  29445. }
  29446. },
  29447. throat: {
  29448. height: math.unit(79, "feet"),
  29449. name: "Throat",
  29450. image: {
  29451. source: "./media/characters/kodran/throat.svg"
  29452. }
  29453. },
  29454. },
  29455. [
  29456. {
  29457. name: "Large",
  29458. height: math.unit(106, "feet"),
  29459. default: true
  29460. },
  29461. ]
  29462. ))
  29463. characterMakers.push(() => makeCharacter(
  29464. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29465. {
  29466. side: {
  29467. height: math.unit(11, "feet"),
  29468. weight: math.unit(150, "lb"),
  29469. name: "Side",
  29470. image: {
  29471. source: "./media/characters/pyxaron/side.svg",
  29472. extra: 305 / 195,
  29473. bottom: 17 / 322
  29474. }
  29475. },
  29476. },
  29477. [
  29478. {
  29479. name: "Normal",
  29480. height: math.unit(11, "feet"),
  29481. default: true
  29482. },
  29483. ]
  29484. ))
  29485. characterMakers.push(() => makeCharacter(
  29486. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29487. {
  29488. front: {
  29489. height: math.unit(6, "feet"),
  29490. weight: math.unit(150, "lb"),
  29491. name: "Front",
  29492. image: {
  29493. source: "./media/characters/meep/front.svg",
  29494. extra: 88 / 80,
  29495. bottom: 6 / 94
  29496. }
  29497. },
  29498. },
  29499. [
  29500. {
  29501. name: "Fun Sized",
  29502. height: math.unit(2, "inches"),
  29503. default: true
  29504. },
  29505. {
  29506. name: "Friend Sized",
  29507. height: math.unit(8, "inches")
  29508. },
  29509. ]
  29510. ))
  29511. characterMakers.push(() => makeCharacter(
  29512. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29513. {
  29514. front: {
  29515. height: math.unit(15, "feet"),
  29516. weight: math.unit(2500, "lb"),
  29517. name: "Front",
  29518. image: {
  29519. source: "./media/characters/holly-rabbit/front.svg",
  29520. extra: 1433 / 1233,
  29521. bottom: 125 / 1558
  29522. }
  29523. },
  29524. dick: {
  29525. height: math.unit(4.6, "feet"),
  29526. name: "Dick",
  29527. image: {
  29528. source: "./media/characters/holly-rabbit/dick.svg"
  29529. }
  29530. },
  29531. },
  29532. [
  29533. {
  29534. name: "Normal",
  29535. height: math.unit(15, "feet"),
  29536. default: true
  29537. },
  29538. {
  29539. name: "Macro",
  29540. height: math.unit(250, "feet")
  29541. },
  29542. {
  29543. name: "Macro+",
  29544. height: math.unit(2500, "feet")
  29545. },
  29546. ]
  29547. ))
  29548. characterMakers.push(() => makeCharacter(
  29549. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29550. {
  29551. front: {
  29552. height: math.unit(3.02, "meters"),
  29553. weight: math.unit(500, "kg"),
  29554. name: "Front",
  29555. image: {
  29556. source: "./media/characters/drena/front.svg",
  29557. extra: 282 / 243,
  29558. bottom: 8 / 290
  29559. }
  29560. },
  29561. side: {
  29562. height: math.unit(3.02, "meters"),
  29563. weight: math.unit(500, "kg"),
  29564. name: "Side",
  29565. image: {
  29566. source: "./media/characters/drena/side.svg",
  29567. extra: 280 / 245,
  29568. bottom: 10 / 290
  29569. }
  29570. },
  29571. back: {
  29572. height: math.unit(3.02, "meters"),
  29573. weight: math.unit(500, "kg"),
  29574. name: "Back",
  29575. image: {
  29576. source: "./media/characters/drena/back.svg",
  29577. extra: 278 / 243,
  29578. bottom: 2 / 280
  29579. }
  29580. },
  29581. foot: {
  29582. height: math.unit(0.75, "meters"),
  29583. name: "Foot",
  29584. image: {
  29585. source: "./media/characters/drena/foot.svg"
  29586. }
  29587. },
  29588. maw: {
  29589. height: math.unit(0.82, "meters"),
  29590. name: "Maw",
  29591. image: {
  29592. source: "./media/characters/drena/maw.svg"
  29593. }
  29594. },
  29595. eating: {
  29596. height: math.unit(0.75, "meters"),
  29597. name: "Eating",
  29598. image: {
  29599. source: "./media/characters/drena/eating.svg"
  29600. }
  29601. },
  29602. rump: {
  29603. height: math.unit(0.93, "meters"),
  29604. name: "Rump",
  29605. image: {
  29606. source: "./media/characters/drena/rump.svg"
  29607. }
  29608. },
  29609. },
  29610. [
  29611. {
  29612. name: "Normal",
  29613. height: math.unit(3.02, "meters"),
  29614. default: true
  29615. },
  29616. ]
  29617. ))
  29618. characterMakers.push(() => makeCharacter(
  29619. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29620. {
  29621. front: {
  29622. height: math.unit(6 + 4 / 12, "feet"),
  29623. weight: math.unit(250, "lb"),
  29624. name: "Front",
  29625. image: {
  29626. source: "./media/characters/remmyzilla/front.svg",
  29627. extra: 4033 / 3588,
  29628. bottom: 123 / 4156
  29629. }
  29630. },
  29631. back: {
  29632. height: math.unit(6 + 4 / 12, "feet"),
  29633. weight: math.unit(250, "lb"),
  29634. name: "Back",
  29635. image: {
  29636. source: "./media/characters/remmyzilla/back.svg",
  29637. extra: 2687 / 2555,
  29638. bottom: 48 / 2735
  29639. }
  29640. },
  29641. paw: {
  29642. height: math.unit(1.73, "feet"),
  29643. name: "Paw",
  29644. image: {
  29645. source: "./media/characters/remmyzilla/paw.svg"
  29646. }
  29647. },
  29648. maw: {
  29649. height: math.unit(1.73, "feet"),
  29650. name: "Maw",
  29651. image: {
  29652. source: "./media/characters/remmyzilla/maw.svg"
  29653. }
  29654. },
  29655. },
  29656. [
  29657. {
  29658. name: "Normal",
  29659. height: math.unit(6 + 4 / 12, "feet")
  29660. },
  29661. {
  29662. name: "Minimacro",
  29663. height: math.unit(12 + 8 / 12, "feet")
  29664. },
  29665. {
  29666. name: "Normal",
  29667. height: math.unit(640, "feet"),
  29668. default: true
  29669. },
  29670. {
  29671. name: "Megamacro",
  29672. height: math.unit(6400, "feet")
  29673. },
  29674. {
  29675. name: "Gigamacro",
  29676. height: math.unit(64000, "miles")
  29677. },
  29678. ]
  29679. ))
  29680. characterMakers.push(() => makeCharacter(
  29681. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29682. {
  29683. front: {
  29684. height: math.unit(2.5, "meters"),
  29685. weight: math.unit(300, "lb"),
  29686. name: "Front",
  29687. image: {
  29688. source: "./media/characters/lawrence/front.svg",
  29689. extra: 357 / 335,
  29690. bottom: 30 / 387
  29691. }
  29692. },
  29693. back: {
  29694. height: math.unit(2.5, "meters"),
  29695. weight: math.unit(300, "lb"),
  29696. name: "Back",
  29697. image: {
  29698. source: "./media/characters/lawrence/back.svg",
  29699. extra: 357 / 338,
  29700. bottom: 16 / 373
  29701. }
  29702. },
  29703. head: {
  29704. height: math.unit(0.9, "meter"),
  29705. name: "Head",
  29706. image: {
  29707. source: "./media/characters/lawrence/head.svg"
  29708. }
  29709. },
  29710. maw: {
  29711. height: math.unit(0.7, "meter"),
  29712. name: "Maw",
  29713. image: {
  29714. source: "./media/characters/lawrence/maw.svg"
  29715. }
  29716. },
  29717. footBottom: {
  29718. height: math.unit(0.5, "meter"),
  29719. name: "Foot (Bottom)",
  29720. image: {
  29721. source: "./media/characters/lawrence/foot-bottom.svg"
  29722. }
  29723. },
  29724. footTop: {
  29725. height: math.unit(0.5, "meter"),
  29726. name: "Foot (Top)",
  29727. image: {
  29728. source: "./media/characters/lawrence/foot-top.svg"
  29729. }
  29730. },
  29731. },
  29732. [
  29733. {
  29734. name: "Normal",
  29735. height: math.unit(2.5, "meters"),
  29736. default: true
  29737. },
  29738. {
  29739. name: "Macro",
  29740. height: math.unit(95, "meters")
  29741. },
  29742. {
  29743. name: "Megamacro",
  29744. height: math.unit(150, "km")
  29745. },
  29746. ]
  29747. ))
  29748. characterMakers.push(() => makeCharacter(
  29749. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29750. {
  29751. front: {
  29752. height: math.unit(4.2, "meters"),
  29753. name: "Front",
  29754. image: {
  29755. source: "./media/characters/sydney/front.svg",
  29756. extra: 1323 / 1277,
  29757. bottom: 111 / 1434
  29758. }
  29759. },
  29760. },
  29761. [
  29762. {
  29763. name: "Normal",
  29764. height: math.unit(4.2, "meters"),
  29765. default: true
  29766. },
  29767. ]
  29768. ))
  29769. characterMakers.push(() => makeCharacter(
  29770. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29771. {
  29772. back: {
  29773. height: math.unit(201, "feet"),
  29774. name: "Back",
  29775. image: {
  29776. source: "./media/characters/jessica/back.svg",
  29777. extra: 273 / 259,
  29778. bottom: 7 / 280
  29779. }
  29780. },
  29781. },
  29782. [
  29783. {
  29784. name: "Normal",
  29785. height: math.unit(201, "feet"),
  29786. default: true
  29787. },
  29788. {
  29789. name: "Megamacro",
  29790. height: math.unit(8, "miles")
  29791. },
  29792. ]
  29793. ))
  29794. characterMakers.push(() => makeCharacter(
  29795. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29796. {
  29797. side: {
  29798. height: math.unit(5.6, "m"),
  29799. weight: math.unit(8000, "kg"),
  29800. name: "Side",
  29801. image: {
  29802. source: "./media/characters/victoria/side.svg",
  29803. extra: 1542/1229,
  29804. bottom: 124/1666
  29805. }
  29806. },
  29807. maw: {
  29808. height: math.unit(7.14, "feet"),
  29809. name: "Maw",
  29810. image: {
  29811. source: "./media/characters/victoria/maw.svg"
  29812. }
  29813. },
  29814. },
  29815. [
  29816. {
  29817. name: "Normal",
  29818. height: math.unit(5.6, "m"),
  29819. default: true
  29820. },
  29821. ]
  29822. ))
  29823. characterMakers.push(() => makeCharacter(
  29824. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29825. {
  29826. front: {
  29827. height: math.unit(5 + 6 / 12, "feet"),
  29828. name: "Front",
  29829. image: {
  29830. source: "./media/characters/cat/front.svg",
  29831. extra: 1449/1295,
  29832. bottom: 34/1483
  29833. },
  29834. form: "cat",
  29835. default: true
  29836. },
  29837. back: {
  29838. height: math.unit(5 + 6 / 12, "feet"),
  29839. name: "Back",
  29840. image: {
  29841. source: "./media/characters/cat/back.svg",
  29842. extra: 1466/1301,
  29843. bottom: 19/1485
  29844. },
  29845. form: "cat"
  29846. },
  29847. taur: {
  29848. height: math.unit(7, "feet"),
  29849. name: "Taur",
  29850. image: {
  29851. source: "./media/characters/cat/taur.svg",
  29852. extra: 1389/1233,
  29853. bottom: 83/1472
  29854. },
  29855. form: "taur",
  29856. default: true
  29857. },
  29858. lucarioFront: {
  29859. height: math.unit(4, "feet"),
  29860. name: "Lucario (Front)",
  29861. image: {
  29862. source: "./media/characters/cat/lucario-front.svg",
  29863. extra: 1149/1019,
  29864. bottom: 84/1233
  29865. },
  29866. form: "lucario",
  29867. default: true
  29868. },
  29869. lucarioBack: {
  29870. height: math.unit(4, "feet"),
  29871. name: "Lucario (Back)",
  29872. image: {
  29873. source: "./media/characters/cat/lucario-back.svg",
  29874. extra: 1190/1059,
  29875. bottom: 33/1223
  29876. },
  29877. form: "lucario"
  29878. },
  29879. megaLucario: {
  29880. height: math.unit(4, "feet"),
  29881. name: "Mega Lucario",
  29882. image: {
  29883. source: "./media/characters/cat/mega-lucario.svg",
  29884. extra: 1515 / 1319,
  29885. bottom: 63 / 1578
  29886. },
  29887. form: "lucario"
  29888. },
  29889. nickit: {
  29890. height: math.unit(2, "feet"),
  29891. name: "Nickit",
  29892. image: {
  29893. source: "./media/characters/cat/nickit.svg",
  29894. extra: 1980 / 1585,
  29895. bottom: 102 / 2082
  29896. },
  29897. form: "nickit",
  29898. default: true
  29899. },
  29900. lopunnyFront: {
  29901. height: math.unit(5, "feet"),
  29902. name: "Lopunny (Front)",
  29903. image: {
  29904. source: "./media/characters/cat/lopunny-front.svg",
  29905. extra: 1782 / 1469,
  29906. bottom: 38 / 1820
  29907. },
  29908. form: "lopunny",
  29909. default: true
  29910. },
  29911. lopunnyBack: {
  29912. height: math.unit(5, "feet"),
  29913. name: "Lopunny (Back)",
  29914. image: {
  29915. source: "./media/characters/cat/lopunny-back.svg",
  29916. extra: 1660 / 1490,
  29917. bottom: 25 / 1685
  29918. },
  29919. form: "lopunny"
  29920. },
  29921. },
  29922. [
  29923. {
  29924. name: "Really small",
  29925. height: math.unit(1, "nm")
  29926. },
  29927. {
  29928. name: "Micro",
  29929. height: math.unit(5, "inches")
  29930. },
  29931. {
  29932. name: "Normal",
  29933. height: math.unit(5 + 6 / 12, "feet"),
  29934. default: true
  29935. },
  29936. {
  29937. name: "Macro",
  29938. height: math.unit(50, "feet")
  29939. },
  29940. {
  29941. name: "Macro+",
  29942. height: math.unit(150, "feet")
  29943. },
  29944. {
  29945. name: "Megamacro",
  29946. height: math.unit(100, "miles")
  29947. },
  29948. ]
  29949. ))
  29950. characterMakers.push(() => makeCharacter(
  29951. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29952. {
  29953. front: {
  29954. height: math.unit(63.4, "meters"),
  29955. weight: math.unit(3.28349e+6, "kilograms"),
  29956. name: "Front",
  29957. image: {
  29958. source: "./media/characters/kirina-violet/front.svg",
  29959. extra: 2812 / 2725,
  29960. bottom: 0 / 2812
  29961. }
  29962. },
  29963. back: {
  29964. height: math.unit(63.4, "meters"),
  29965. weight: math.unit(3.28349e+6, "kilograms"),
  29966. name: "Back",
  29967. image: {
  29968. source: "./media/characters/kirina-violet/back.svg",
  29969. extra: 2812 / 2725,
  29970. bottom: 0 / 2812
  29971. }
  29972. },
  29973. mouth: {
  29974. height: math.unit(4.35, "meters"),
  29975. name: "Mouth",
  29976. image: {
  29977. source: "./media/characters/kirina-violet/mouth.svg"
  29978. }
  29979. },
  29980. paw: {
  29981. height: math.unit(5.6, "meters"),
  29982. name: "Paw",
  29983. image: {
  29984. source: "./media/characters/kirina-violet/paw.svg"
  29985. }
  29986. },
  29987. tail: {
  29988. height: math.unit(18, "meters"),
  29989. name: "Tail",
  29990. image: {
  29991. source: "./media/characters/kirina-violet/tail.svg"
  29992. }
  29993. },
  29994. },
  29995. [
  29996. {
  29997. name: "Macro",
  29998. height: math.unit(63.4, "meters"),
  29999. default: true
  30000. },
  30001. ]
  30002. ))
  30003. characterMakers.push(() => makeCharacter(
  30004. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30005. {
  30006. front: {
  30007. height: math.unit(75, "feet"),
  30008. name: "Front",
  30009. image: {
  30010. source: "./media/characters/cat-gigachu/front.svg",
  30011. extra: 1239/1027,
  30012. bottom: 32/1271
  30013. }
  30014. },
  30015. back: {
  30016. height: math.unit(75, "feet"),
  30017. name: "Back",
  30018. image: {
  30019. source: "./media/characters/cat-gigachu/back.svg",
  30020. extra: 1229/1030,
  30021. bottom: 9/1238
  30022. }
  30023. },
  30024. },
  30025. [
  30026. {
  30027. name: "Dynamax",
  30028. height: math.unit(75, "feet"),
  30029. default: true
  30030. },
  30031. ]
  30032. ))
  30033. characterMakers.push(() => makeCharacter(
  30034. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30035. {
  30036. front: {
  30037. height: math.unit(6, "feet"),
  30038. weight: math.unit(150, "lb"),
  30039. name: "Front",
  30040. image: {
  30041. source: "./media/characters/sfaiyan/front.svg",
  30042. extra: 999 / 978,
  30043. bottom: 5 / 1004
  30044. }
  30045. },
  30046. },
  30047. [
  30048. {
  30049. name: "Normal",
  30050. height: math.unit(1.82, "meters")
  30051. },
  30052. {
  30053. name: "Giant",
  30054. height: math.unit(2.27, "km"),
  30055. default: true
  30056. },
  30057. ]
  30058. ))
  30059. characterMakers.push(() => makeCharacter(
  30060. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30061. {
  30062. front: {
  30063. height: math.unit(179, "cm"),
  30064. weight: math.unit(100, "kg"),
  30065. name: "Front",
  30066. image: {
  30067. source: "./media/characters/raunehkeli/front.svg",
  30068. extra: 1934 / 1926,
  30069. bottom: 0 / 1934
  30070. }
  30071. },
  30072. },
  30073. [
  30074. {
  30075. name: "Normal",
  30076. height: math.unit(179, "cm")
  30077. },
  30078. {
  30079. name: "Maximum",
  30080. height: math.unit(575, "meters"),
  30081. default: true
  30082. },
  30083. ]
  30084. ))
  30085. characterMakers.push(() => makeCharacter(
  30086. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30087. {
  30088. front: {
  30089. height: math.unit(6, "feet"),
  30090. weight: math.unit(150, "lb"),
  30091. name: "Front",
  30092. image: {
  30093. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30094. extra: 2625 / 2518,
  30095. bottom: 60 / 2685
  30096. }
  30097. },
  30098. },
  30099. [
  30100. {
  30101. name: "Normal",
  30102. height: math.unit(6 + 2 / 12, "feet")
  30103. },
  30104. {
  30105. name: "Macro",
  30106. height: math.unit(1180, "feet"),
  30107. default: true
  30108. },
  30109. ]
  30110. ))
  30111. characterMakers.push(() => makeCharacter(
  30112. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30113. {
  30114. front: {
  30115. height: math.unit(5 + 6 / 12, "feet"),
  30116. weight: math.unit(108, "lb"),
  30117. name: "Front",
  30118. image: {
  30119. source: "./media/characters/lilith-zott/front.svg",
  30120. extra: 2510 / 2238,
  30121. bottom: 100 / 2610
  30122. }
  30123. },
  30124. frontDressed: {
  30125. height: math.unit(5 + 6 / 12, "feet"),
  30126. weight: math.unit(108, "lb"),
  30127. name: "Front (Dressed)",
  30128. image: {
  30129. source: "./media/characters/lilith-zott/front-dressed.svg",
  30130. extra: 2510 / 2238,
  30131. bottom: 100 / 2610
  30132. }
  30133. },
  30134. },
  30135. [
  30136. {
  30137. name: "Normal",
  30138. height: math.unit(5 + 6 / 12, "feet")
  30139. },
  30140. {
  30141. name: "Macro",
  30142. height: math.unit(1030, "feet"),
  30143. default: true
  30144. },
  30145. ]
  30146. ))
  30147. characterMakers.push(() => makeCharacter(
  30148. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30149. {
  30150. front: {
  30151. height: math.unit(6, "feet"),
  30152. weight: math.unit(150, "lb"),
  30153. name: "Front",
  30154. image: {
  30155. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30156. extra: 2567 / 2435,
  30157. bottom: 39 / 2606
  30158. }
  30159. },
  30160. frontSuper: {
  30161. height: math.unit(6, "feet"),
  30162. name: "Front (Super)",
  30163. image: {
  30164. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30165. extra: 2567 / 2435,
  30166. bottom: 39 / 2606
  30167. }
  30168. },
  30169. },
  30170. [
  30171. {
  30172. name: "Normal",
  30173. height: math.unit(5 + 10 / 12, "feet")
  30174. },
  30175. {
  30176. name: "Macro",
  30177. height: math.unit(1100, "feet"),
  30178. default: true
  30179. },
  30180. ]
  30181. ))
  30182. characterMakers.push(() => makeCharacter(
  30183. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30184. {
  30185. front: {
  30186. height: math.unit(100, "miles"),
  30187. name: "Front",
  30188. image: {
  30189. source: "./media/characters/sona/front.svg",
  30190. extra: 2433 / 2201,
  30191. bottom: 53 / 2486
  30192. }
  30193. },
  30194. foot: {
  30195. height: math.unit(16.1, "miles"),
  30196. name: "Foot",
  30197. image: {
  30198. source: "./media/characters/sona/foot.svg"
  30199. }
  30200. },
  30201. },
  30202. [
  30203. {
  30204. name: "Macro",
  30205. height: math.unit(100, "miles"),
  30206. default: true
  30207. },
  30208. ]
  30209. ))
  30210. characterMakers.push(() => makeCharacter(
  30211. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30212. {
  30213. front: {
  30214. height: math.unit(6, "feet"),
  30215. weight: math.unit(150, "lb"),
  30216. name: "Front",
  30217. image: {
  30218. source: "./media/characters/bailey/front.svg",
  30219. extra: 1778 / 1724,
  30220. bottom: 30 / 1808
  30221. }
  30222. },
  30223. },
  30224. [
  30225. {
  30226. name: "Micro",
  30227. height: math.unit(4, "inches")
  30228. },
  30229. {
  30230. name: "Normal",
  30231. height: math.unit(5 + 5 / 12, "feet"),
  30232. default: true
  30233. },
  30234. {
  30235. name: "Macro",
  30236. height: math.unit(250, "feet")
  30237. },
  30238. {
  30239. name: "Megamacro",
  30240. height: math.unit(100, "miles")
  30241. },
  30242. ]
  30243. ))
  30244. characterMakers.push(() => makeCharacter(
  30245. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30246. {
  30247. front: {
  30248. height: math.unit(5 + 2 / 12, "feet"),
  30249. weight: math.unit(120, "lb"),
  30250. name: "Front",
  30251. image: {
  30252. source: "./media/characters/snaps/front.svg",
  30253. extra: 2370 / 2177,
  30254. bottom: 48 / 2418
  30255. }
  30256. },
  30257. back: {
  30258. height: math.unit(5 + 2 / 12, "feet"),
  30259. weight: math.unit(120, "lb"),
  30260. name: "Back",
  30261. image: {
  30262. source: "./media/characters/snaps/back.svg",
  30263. extra: 2408 / 2258,
  30264. bottom: 15 / 2423
  30265. }
  30266. },
  30267. },
  30268. [
  30269. {
  30270. name: "Micro",
  30271. height: math.unit(9, "inches")
  30272. },
  30273. {
  30274. name: "Normal",
  30275. height: math.unit(5 + 2 / 12, "feet"),
  30276. default: true
  30277. },
  30278. {
  30279. name: "Mini Macro",
  30280. height: math.unit(10, "feet")
  30281. },
  30282. ]
  30283. ))
  30284. characterMakers.push(() => makeCharacter(
  30285. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30286. {
  30287. front: {
  30288. height: math.unit(1.8, "meters"),
  30289. weight: math.unit(85, "kg"),
  30290. name: "Front",
  30291. image: {
  30292. source: "./media/characters/azteck/front.svg",
  30293. extra: 2815 / 2625,
  30294. bottom: 89 / 2904
  30295. }
  30296. },
  30297. back: {
  30298. height: math.unit(1.8, "meters"),
  30299. weight: math.unit(85, "kg"),
  30300. name: "Back",
  30301. image: {
  30302. source: "./media/characters/azteck/back.svg",
  30303. extra: 2856 / 2648,
  30304. bottom: 85 / 2941
  30305. }
  30306. },
  30307. frontDressed: {
  30308. height: math.unit(1.8, "meters"),
  30309. weight: math.unit(85, "kg"),
  30310. name: "Front (Dressed)",
  30311. image: {
  30312. source: "./media/characters/azteck/front-dressed.svg",
  30313. extra: 2147 / 2003,
  30314. bottom: 68 / 2215
  30315. }
  30316. },
  30317. head: {
  30318. height: math.unit(0.47, "meters"),
  30319. weight: math.unit(85, "kg"),
  30320. name: "Head",
  30321. image: {
  30322. source: "./media/characters/azteck/head.svg"
  30323. }
  30324. },
  30325. },
  30326. [
  30327. {
  30328. name: "Bite sized",
  30329. height: math.unit(16, "cm")
  30330. },
  30331. {
  30332. name: "Normal",
  30333. height: math.unit(1.8, "meters"),
  30334. default: true
  30335. },
  30336. ]
  30337. ))
  30338. characterMakers.push(() => makeCharacter(
  30339. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30340. {
  30341. front: {
  30342. height: math.unit(6, "feet"),
  30343. weight: math.unit(150, "lb"),
  30344. name: "Front",
  30345. image: {
  30346. source: "./media/characters/pidge/front.svg",
  30347. extra: 1936/1820,
  30348. bottom: 0/1936
  30349. }
  30350. },
  30351. back: {
  30352. height: math.unit(6, "feet"),
  30353. weight: math.unit(150, "lb"),
  30354. name: "Back",
  30355. image: {
  30356. source: "./media/characters/pidge/back.svg",
  30357. extra: 1938/1843,
  30358. bottom: 0/1938
  30359. }
  30360. },
  30361. casual: {
  30362. height: math.unit(6, "feet"),
  30363. weight: math.unit(150, "lb"),
  30364. name: "Casual",
  30365. image: {
  30366. source: "./media/characters/pidge/casual.svg",
  30367. extra: 1936/1820,
  30368. bottom: 0/1936
  30369. }
  30370. },
  30371. tech: {
  30372. height: math.unit(6, "feet"),
  30373. weight: math.unit(150, "lb"),
  30374. name: "Tech",
  30375. image: {
  30376. source: "./media/characters/pidge/tech.svg",
  30377. extra: 1802/1682,
  30378. bottom: 0/1802
  30379. }
  30380. },
  30381. head: {
  30382. height: math.unit(1.61, "feet"),
  30383. name: "Head",
  30384. image: {
  30385. source: "./media/characters/pidge/head.svg"
  30386. }
  30387. },
  30388. collar: {
  30389. height: math.unit(0.82, "feet"),
  30390. name: "Collar",
  30391. image: {
  30392. source: "./media/characters/pidge/collar.svg"
  30393. }
  30394. },
  30395. },
  30396. [
  30397. {
  30398. name: "Macro",
  30399. height: math.unit(2, "mile"),
  30400. default: true
  30401. },
  30402. {
  30403. name: "PUPPY",
  30404. height: math.unit(20, "miles")
  30405. },
  30406. ]
  30407. ))
  30408. characterMakers.push(() => makeCharacter(
  30409. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30410. {
  30411. front: {
  30412. height: math.unit(6, "feet"),
  30413. weight: math.unit(150, "lb"),
  30414. name: "Front",
  30415. image: {
  30416. source: "./media/characters/en/front.svg",
  30417. extra: 1697 / 1563,
  30418. bottom: 103 / 1800
  30419. }
  30420. },
  30421. back: {
  30422. height: math.unit(6, "feet"),
  30423. weight: math.unit(150, "lb"),
  30424. name: "Back",
  30425. image: {
  30426. source: "./media/characters/en/back.svg",
  30427. extra: 1700 / 1570,
  30428. bottom: 51 / 1751
  30429. }
  30430. },
  30431. frontDressed: {
  30432. height: math.unit(6, "feet"),
  30433. weight: math.unit(150, "lb"),
  30434. name: "Front (Dressed)",
  30435. image: {
  30436. source: "./media/characters/en/front-dressed.svg",
  30437. extra: 1697 / 1563,
  30438. bottom: 103 / 1800
  30439. }
  30440. },
  30441. backDressed: {
  30442. height: math.unit(6, "feet"),
  30443. weight: math.unit(150, "lb"),
  30444. name: "Back (Dressed)",
  30445. image: {
  30446. source: "./media/characters/en/back-dressed.svg",
  30447. extra: 1700 / 1570,
  30448. bottom: 51 / 1751
  30449. }
  30450. },
  30451. },
  30452. [
  30453. {
  30454. name: "Macro",
  30455. height: math.unit(210, "feet"),
  30456. default: true
  30457. },
  30458. ]
  30459. ))
  30460. characterMakers.push(() => makeCharacter(
  30461. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30462. {
  30463. front: {
  30464. height: math.unit(6, "feet"),
  30465. weight: math.unit(150, "lb"),
  30466. name: "Front",
  30467. image: {
  30468. source: "./media/characters/haze-orris/front.svg",
  30469. extra: 3975 / 3525,
  30470. bottom: 137 / 4112
  30471. }
  30472. },
  30473. },
  30474. [
  30475. {
  30476. name: "Micro",
  30477. height: math.unit(150, "mm"),
  30478. default: true
  30479. },
  30480. ]
  30481. ))
  30482. characterMakers.push(() => makeCharacter(
  30483. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30484. {
  30485. front: {
  30486. height: math.unit(6, "feet"),
  30487. weight: math.unit(150, "lb"),
  30488. name: "Front",
  30489. image: {
  30490. source: "./media/characters/casselene-yaro/front.svg",
  30491. extra: 4721 / 4541,
  30492. bottom: 82 / 4803
  30493. }
  30494. },
  30495. back: {
  30496. height: math.unit(6, "feet"),
  30497. weight: math.unit(150, "lb"),
  30498. name: "Back",
  30499. image: {
  30500. source: "./media/characters/casselene-yaro/back.svg",
  30501. extra: 4569 / 4377,
  30502. bottom: 69 / 4638
  30503. }
  30504. },
  30505. dressed: {
  30506. height: math.unit(6, "feet"),
  30507. weight: math.unit(150, "lb"),
  30508. name: "Dressed",
  30509. image: {
  30510. source: "./media/characters/casselene-yaro/dressed.svg",
  30511. extra: 4721 / 4541,
  30512. bottom: 82 / 4803
  30513. }
  30514. },
  30515. maw: {
  30516. height: math.unit(1, "feet"),
  30517. name: "Maw",
  30518. image: {
  30519. source: "./media/characters/casselene-yaro/maw.svg"
  30520. }
  30521. },
  30522. },
  30523. [
  30524. {
  30525. name: "Macro",
  30526. height: math.unit(190, "feet"),
  30527. default: true
  30528. },
  30529. ]
  30530. ))
  30531. characterMakers.push(() => makeCharacter(
  30532. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30533. {
  30534. front: {
  30535. height: math.unit(10, "feet"),
  30536. weight: math.unit(15015, "lb"),
  30537. name: "Front",
  30538. image: {
  30539. source: "./media/characters/platine/front.svg",
  30540. extra: 1428/1353,
  30541. bottom: 31/1459
  30542. }
  30543. },
  30544. },
  30545. [
  30546. {
  30547. name: "Normal",
  30548. height: math.unit(10, "feet"),
  30549. default: true
  30550. },
  30551. {
  30552. name: "Macro",
  30553. height: math.unit(100, "feet")
  30554. },
  30555. {
  30556. name: "Megamacro",
  30557. height: math.unit(1000, "feet")
  30558. },
  30559. ]
  30560. ))
  30561. characterMakers.push(() => makeCharacter(
  30562. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30563. {
  30564. front: {
  30565. height: math.unit(15 + 5 / 12, "feet"),
  30566. weight: math.unit(4600, "lb"),
  30567. name: "Front",
  30568. image: {
  30569. source: "./media/characters/neapolitan-ananassa/front.svg",
  30570. extra: 2903 / 2736,
  30571. bottom: 0 / 2903
  30572. }
  30573. },
  30574. side: {
  30575. height: math.unit(15 + 5 / 12, "feet"),
  30576. weight: math.unit(4600, "lb"),
  30577. name: "Side",
  30578. image: {
  30579. source: "./media/characters/neapolitan-ananassa/side.svg",
  30580. extra: 2925 / 2719,
  30581. bottom: 0 / 2925
  30582. }
  30583. },
  30584. back: {
  30585. height: math.unit(15 + 5 / 12, "feet"),
  30586. weight: math.unit(4600, "lb"),
  30587. name: "Back",
  30588. image: {
  30589. source: "./media/characters/neapolitan-ananassa/back.svg",
  30590. extra: 2903 / 2736,
  30591. bottom: 0 / 2903
  30592. }
  30593. },
  30594. },
  30595. [
  30596. {
  30597. name: "Normal",
  30598. height: math.unit(15 + 5 / 12, "feet"),
  30599. default: true
  30600. },
  30601. {
  30602. name: "Post-Millenium",
  30603. height: math.unit(35 + 5 / 12, "feet")
  30604. },
  30605. {
  30606. name: "Post-Era",
  30607. height: math.unit(450 + 5 / 12, "feet")
  30608. },
  30609. ]
  30610. ))
  30611. characterMakers.push(() => makeCharacter(
  30612. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30613. {
  30614. front: {
  30615. height: math.unit(300, "meters"),
  30616. weight: math.unit(125000, "tonnes"),
  30617. name: "Front",
  30618. image: {
  30619. source: "./media/characters/pazuzu/front.svg",
  30620. extra: 877 / 794,
  30621. bottom: 47 / 924
  30622. }
  30623. },
  30624. },
  30625. [
  30626. {
  30627. name: "Macro",
  30628. height: math.unit(300, "meters"),
  30629. default: true
  30630. },
  30631. ]
  30632. ))
  30633. characterMakers.push(() => makeCharacter(
  30634. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30635. {
  30636. side: {
  30637. height: math.unit(10 + 7 / 12, "feet"),
  30638. weight: math.unit(2.5, "tons"),
  30639. name: "Side",
  30640. image: {
  30641. source: "./media/characters/aasha/side.svg",
  30642. extra: 1345 / 1245,
  30643. bottom: 111 / 1456
  30644. }
  30645. },
  30646. back: {
  30647. height: math.unit(10 + 7 / 12, "feet"),
  30648. weight: math.unit(2.5, "tons"),
  30649. name: "Back",
  30650. image: {
  30651. source: "./media/characters/aasha/back.svg",
  30652. extra: 1133 / 1057,
  30653. bottom: 257 / 1390
  30654. }
  30655. },
  30656. },
  30657. [
  30658. {
  30659. name: "Normal",
  30660. height: math.unit(10 + 7 / 12, "feet"),
  30661. default: true
  30662. },
  30663. ]
  30664. ))
  30665. characterMakers.push(() => makeCharacter(
  30666. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30667. {
  30668. front: {
  30669. height: math.unit(6 + 3 / 12, "feet"),
  30670. name: "Front",
  30671. image: {
  30672. source: "./media/characters/nevan/front.svg",
  30673. extra: 704 / 704,
  30674. bottom: 28 / 732
  30675. }
  30676. },
  30677. back: {
  30678. height: math.unit(6 + 3 / 12, "feet"),
  30679. name: "Back",
  30680. image: {
  30681. source: "./media/characters/nevan/back.svg",
  30682. extra: 714 / 714,
  30683. bottom: 21 / 735
  30684. }
  30685. },
  30686. frontFlaccid: {
  30687. height: math.unit(6 + 3 / 12, "feet"),
  30688. name: "Front (Flaccid)",
  30689. image: {
  30690. source: "./media/characters/nevan/front-flaccid.svg",
  30691. extra: 704 / 704,
  30692. bottom: 28 / 732
  30693. }
  30694. },
  30695. frontErect: {
  30696. height: math.unit(6 + 3 / 12, "feet"),
  30697. name: "Front (Erect)",
  30698. image: {
  30699. source: "./media/characters/nevan/front-erect.svg",
  30700. extra: 704 / 704,
  30701. bottom: 28 / 732
  30702. }
  30703. },
  30704. backFlaccid: {
  30705. height: math.unit(6 + 3 / 12, "feet"),
  30706. name: "Back (Flaccid)",
  30707. image: {
  30708. source: "./media/characters/nevan/back-flaccid.svg",
  30709. extra: 714 / 714,
  30710. bottom: 21 / 735
  30711. }
  30712. },
  30713. },
  30714. [
  30715. {
  30716. name: "Normal",
  30717. height: math.unit(6 + 3 / 12, "feet"),
  30718. default: true
  30719. },
  30720. ]
  30721. ))
  30722. characterMakers.push(() => makeCharacter(
  30723. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30724. {
  30725. front: {
  30726. height: math.unit(4, "feet"),
  30727. name: "Front",
  30728. image: {
  30729. source: "./media/characters/arhan/front.svg",
  30730. extra: 3368 / 3133,
  30731. bottom: 0 / 3368
  30732. }
  30733. },
  30734. side: {
  30735. height: math.unit(4, "feet"),
  30736. name: "Side",
  30737. image: {
  30738. source: "./media/characters/arhan/side.svg",
  30739. extra: 3347 / 3105,
  30740. bottom: 0 / 3347
  30741. }
  30742. },
  30743. tongue: {
  30744. height: math.unit(1.42, "feet"),
  30745. name: "Tongue",
  30746. image: {
  30747. source: "./media/characters/arhan/tongue.svg"
  30748. }
  30749. },
  30750. head: {
  30751. height: math.unit(0.85, "feet"),
  30752. name: "Head",
  30753. image: {
  30754. source: "./media/characters/arhan/head.svg"
  30755. }
  30756. },
  30757. },
  30758. [
  30759. {
  30760. name: "Normal",
  30761. height: math.unit(4, "feet"),
  30762. default: true
  30763. },
  30764. ]
  30765. ))
  30766. characterMakers.push(() => makeCharacter(
  30767. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30768. {
  30769. front: {
  30770. height: math.unit(5 + 7.5 / 12, "feet"),
  30771. weight: math.unit(120, "lb"),
  30772. name: "Front",
  30773. image: {
  30774. source: "./media/characters/digi-duncan/front.svg",
  30775. extra: 330 / 326,
  30776. bottom: 16 / 346
  30777. }
  30778. },
  30779. side: {
  30780. height: math.unit(5 + 7.5 / 12, "feet"),
  30781. weight: math.unit(120, "lb"),
  30782. name: "Side",
  30783. image: {
  30784. source: "./media/characters/digi-duncan/side.svg",
  30785. extra: 341 / 337,
  30786. bottom: 1 / 342
  30787. }
  30788. },
  30789. back: {
  30790. height: math.unit(5 + 7.5 / 12, "feet"),
  30791. weight: math.unit(120, "lb"),
  30792. name: "Back",
  30793. image: {
  30794. source: "./media/characters/digi-duncan/back.svg",
  30795. extra: 330 / 326,
  30796. bottom: 12 / 342
  30797. }
  30798. },
  30799. },
  30800. [
  30801. {
  30802. name: "Speck",
  30803. height: math.unit(0.25, "mm")
  30804. },
  30805. {
  30806. name: "Micro",
  30807. height: math.unit(5, "mm")
  30808. },
  30809. {
  30810. name: "Tiny",
  30811. height: math.unit(0.5, "inches"),
  30812. default: true
  30813. },
  30814. {
  30815. name: "Human",
  30816. height: math.unit(5 + 7.5 / 12, "feet")
  30817. },
  30818. {
  30819. name: "Minigiant",
  30820. height: math.unit(8 + 5.25, "feet")
  30821. },
  30822. {
  30823. name: "Giant",
  30824. height: math.unit(2000, "feet")
  30825. },
  30826. {
  30827. name: "Mega",
  30828. height: math.unit(371.1, "miles")
  30829. },
  30830. ]
  30831. ))
  30832. characterMakers.push(() => makeCharacter(
  30833. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30834. {
  30835. front: {
  30836. height: math.unit(2, "meters"),
  30837. weight: math.unit(350, "kg"),
  30838. name: "Front",
  30839. image: {
  30840. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30841. extra: 898 / 838,
  30842. bottom: 9 / 907
  30843. }
  30844. },
  30845. },
  30846. [
  30847. {
  30848. name: "Micro",
  30849. height: math.unit(8, "meters")
  30850. },
  30851. {
  30852. name: "Normal",
  30853. height: math.unit(50, "meters"),
  30854. default: true
  30855. },
  30856. {
  30857. name: "Macro",
  30858. height: math.unit(500, "meters")
  30859. },
  30860. ]
  30861. ))
  30862. characterMakers.push(() => makeCharacter(
  30863. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30864. {
  30865. front: {
  30866. height: math.unit(6 + 6 / 12, "feet"),
  30867. name: "Front",
  30868. image: {
  30869. source: "./media/characters/khardesh/front.svg",
  30870. extra: 1788/1596,
  30871. bottom: 66/1854
  30872. }
  30873. },
  30874. back: {
  30875. height: math.unit(6 + 6 / 12, "feet"),
  30876. name: "Back",
  30877. image: {
  30878. source: "./media/characters/khardesh/back.svg",
  30879. extra: 1781/1584,
  30880. bottom: 68/1849
  30881. }
  30882. },
  30883. },
  30884. [
  30885. {
  30886. name: "Normal",
  30887. height: math.unit(6 + 6 / 12, "feet"),
  30888. default: true
  30889. },
  30890. {
  30891. name: "Normal+",
  30892. height: math.unit(4, "meters")
  30893. },
  30894. {
  30895. name: "Macro",
  30896. height: math.unit(50, "meters")
  30897. },
  30898. {
  30899. name: "Macro+",
  30900. height: math.unit(100, "meters")
  30901. },
  30902. {
  30903. name: "Megamacro",
  30904. height: math.unit(20, "km")
  30905. },
  30906. ]
  30907. ))
  30908. characterMakers.push(() => makeCharacter(
  30909. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30910. {
  30911. front: {
  30912. height: math.unit(6, "feet"),
  30913. weight: math.unit(150, "lb"),
  30914. name: "Front",
  30915. image: {
  30916. source: "./media/characters/kosho/front.svg",
  30917. extra: 1847 / 1847,
  30918. bottom: 86 / 1933
  30919. }
  30920. },
  30921. },
  30922. [
  30923. {
  30924. name: "Second-stage micro",
  30925. height: math.unit(0.5, "inches")
  30926. },
  30927. {
  30928. name: "First-stage micro",
  30929. height: math.unit(6, "inches")
  30930. },
  30931. {
  30932. name: "Normal",
  30933. height: math.unit(6, "feet"),
  30934. default: true
  30935. },
  30936. {
  30937. name: "First-stage macro",
  30938. height: math.unit(72, "feet")
  30939. },
  30940. {
  30941. name: "Second-stage macro",
  30942. height: math.unit(864, "feet")
  30943. },
  30944. ]
  30945. ))
  30946. characterMakers.push(() => makeCharacter(
  30947. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30948. {
  30949. normal: {
  30950. height: math.unit(4 + 6 / 12, "feet"),
  30951. name: "Normal",
  30952. image: {
  30953. source: "./media/characters/hydra/normal.svg",
  30954. extra: 2833 / 2634,
  30955. bottom: 68 / 2901
  30956. }
  30957. },
  30958. smol: {
  30959. height: math.unit(0.705, "inches"),
  30960. name: "Smol",
  30961. image: {
  30962. source: "./media/characters/hydra/smol.svg",
  30963. extra: 2715 / 2540,
  30964. bottom: 0 / 2715
  30965. }
  30966. },
  30967. },
  30968. [
  30969. {
  30970. name: "Normal",
  30971. height: math.unit(4 + 6 / 12, "feet"),
  30972. default: true
  30973. }
  30974. ]
  30975. ))
  30976. characterMakers.push(() => makeCharacter(
  30977. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30978. {
  30979. front: {
  30980. height: math.unit(0.6, "cm"),
  30981. name: "Front",
  30982. image: {
  30983. source: "./media/characters/daz/front.svg",
  30984. extra: 1682 / 1164,
  30985. bottom: 42 / 1724
  30986. }
  30987. },
  30988. },
  30989. [
  30990. {
  30991. name: "Normal",
  30992. height: math.unit(0.6, "cm"),
  30993. default: true
  30994. },
  30995. ]
  30996. ))
  30997. characterMakers.push(() => makeCharacter(
  30998. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30999. {
  31000. front: {
  31001. height: math.unit(6, "feet"),
  31002. weight: math.unit(235, "lb"),
  31003. name: "Front",
  31004. image: {
  31005. source: "./media/characters/theo-pangolin/front.svg",
  31006. extra: 1996 / 1969,
  31007. bottom: 115 / 2111
  31008. }
  31009. },
  31010. back: {
  31011. height: math.unit(6, "feet"),
  31012. weight: math.unit(235, "lb"),
  31013. name: "Back",
  31014. image: {
  31015. source: "./media/characters/theo-pangolin/back.svg",
  31016. extra: 1979 / 1979,
  31017. bottom: 40 / 2019
  31018. }
  31019. },
  31020. feral: {
  31021. height: math.unit(2, "feet"),
  31022. weight: math.unit(30, "lb"),
  31023. name: "Feral",
  31024. image: {
  31025. source: "./media/characters/theo-pangolin/feral.svg",
  31026. extra: 803 / 791,
  31027. bottom: 181 / 984
  31028. }
  31029. },
  31030. footFive: {
  31031. height: math.unit(1.43, "feet"),
  31032. name: "Foot (Five Toes)",
  31033. image: {
  31034. source: "./media/characters/theo-pangolin/foot-five.svg"
  31035. }
  31036. },
  31037. footFour: {
  31038. height: math.unit(1.43, "feet"),
  31039. name: "Foot (Four Toes)",
  31040. image: {
  31041. source: "./media/characters/theo-pangolin/foot-four.svg"
  31042. }
  31043. },
  31044. handFour: {
  31045. height: math.unit(0.81, "feet"),
  31046. name: "Hand (Four Fingers)",
  31047. image: {
  31048. source: "./media/characters/theo-pangolin/hand-four.svg"
  31049. }
  31050. },
  31051. handThree: {
  31052. height: math.unit(0.81, "feet"),
  31053. name: "Hand (Three Fingers)",
  31054. image: {
  31055. source: "./media/characters/theo-pangolin/hand-three.svg"
  31056. }
  31057. },
  31058. headFront: {
  31059. height: math.unit(1.37, "feet"),
  31060. name: "Head (Front)",
  31061. image: {
  31062. source: "./media/characters/theo-pangolin/head-front.svg"
  31063. }
  31064. },
  31065. headSide: {
  31066. height: math.unit(1.43, "feet"),
  31067. name: "Head (Side)",
  31068. image: {
  31069. source: "./media/characters/theo-pangolin/head-side.svg"
  31070. }
  31071. },
  31072. tongue: {
  31073. height: math.unit(2.29, "feet"),
  31074. name: "Tongue",
  31075. image: {
  31076. source: "./media/characters/theo-pangolin/tongue.svg"
  31077. }
  31078. },
  31079. },
  31080. [
  31081. {
  31082. name: "Normal",
  31083. height: math.unit(6, "feet")
  31084. },
  31085. {
  31086. name: "Macro",
  31087. height: math.unit(400, "feet"),
  31088. default: true
  31089. },
  31090. ]
  31091. ))
  31092. characterMakers.push(() => makeCharacter(
  31093. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31094. {
  31095. front: {
  31096. height: math.unit(6, "inches"),
  31097. weight: math.unit(0.036, "kg"),
  31098. name: "Front",
  31099. image: {
  31100. source: "./media/characters/renée/front.svg",
  31101. extra: 900 / 886,
  31102. bottom: 8 / 908
  31103. }
  31104. },
  31105. },
  31106. [
  31107. {
  31108. name: "Nano",
  31109. height: math.unit(1, "nm")
  31110. },
  31111. {
  31112. name: "Micro",
  31113. height: math.unit(1, "mm")
  31114. },
  31115. {
  31116. name: "Normal",
  31117. height: math.unit(6, "inches")
  31118. },
  31119. {
  31120. name: "Macro",
  31121. height: math.unit(2000, "feet"),
  31122. default: true
  31123. },
  31124. {
  31125. name: "Megamacro",
  31126. height: math.unit(2, "km")
  31127. },
  31128. {
  31129. name: "Gigamacro",
  31130. height: math.unit(2000, "km")
  31131. },
  31132. {
  31133. name: "Teramacro",
  31134. height: math.unit(250000, "km")
  31135. },
  31136. ]
  31137. ))
  31138. characterMakers.push(() => makeCharacter(
  31139. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31140. {
  31141. front: {
  31142. height: math.unit(4, "meters"),
  31143. weight: math.unit(150, "kg"),
  31144. name: "Front",
  31145. image: {
  31146. source: "./media/characters/caledvwlch/front.svg",
  31147. extra: 1760 / 1551,
  31148. bottom: 28 / 1788
  31149. }
  31150. },
  31151. side: {
  31152. height: math.unit(4, "meters"),
  31153. weight: math.unit(150, "kg"),
  31154. name: "Side",
  31155. image: {
  31156. source: "./media/characters/caledvwlch/side.svg",
  31157. extra: 1605 / 1536,
  31158. bottom: 31 / 1636
  31159. }
  31160. },
  31161. back: {
  31162. height: math.unit(4, "meters"),
  31163. weight: math.unit(150, "kg"),
  31164. name: "Back",
  31165. image: {
  31166. source: "./media/characters/caledvwlch/back.svg",
  31167. extra: 1635 / 1565,
  31168. bottom: 27 / 1662
  31169. }
  31170. },
  31171. },
  31172. [
  31173. {
  31174. name: "\"Incognito\"",
  31175. height: math.unit(4, "meters")
  31176. },
  31177. {
  31178. name: "Small rampage",
  31179. height: math.unit(600, "meters")
  31180. },
  31181. {
  31182. name: "Mega",
  31183. height: math.unit(30, "km")
  31184. },
  31185. {
  31186. name: "Home-size",
  31187. height: math.unit(50, "km"),
  31188. default: true
  31189. },
  31190. {
  31191. name: "Giga",
  31192. height: math.unit(300, "km")
  31193. },
  31194. {
  31195. name: "Lounging",
  31196. height: math.unit(11000, "km")
  31197. },
  31198. {
  31199. name: "Planet snacking",
  31200. height: math.unit(2000000, "km")
  31201. },
  31202. ]
  31203. ))
  31204. characterMakers.push(() => makeCharacter(
  31205. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31206. {
  31207. front: {
  31208. height: math.unit(6, "feet"),
  31209. weight: math.unit(215, "lb"),
  31210. name: "Front",
  31211. image: {
  31212. source: "./media/characters/sapphire-svell/front.svg",
  31213. extra: 495 / 455,
  31214. bottom: 20 / 515
  31215. }
  31216. },
  31217. back: {
  31218. height: math.unit(6, "feet"),
  31219. weight: math.unit(216, "lb"),
  31220. name: "Back",
  31221. image: {
  31222. source: "./media/characters/sapphire-svell/back.svg",
  31223. extra: 497 / 477,
  31224. bottom: 7 / 504
  31225. }
  31226. },
  31227. maw: {
  31228. height: math.unit(1.57, "feet"),
  31229. name: "Maw",
  31230. image: {
  31231. source: "./media/characters/sapphire-svell/maw.svg"
  31232. }
  31233. },
  31234. foot: {
  31235. height: math.unit(1.07, "feet"),
  31236. name: "Foot",
  31237. image: {
  31238. source: "./media/characters/sapphire-svell/foot.svg"
  31239. }
  31240. },
  31241. toering: {
  31242. height: math.unit(1.7, "inch"),
  31243. name: "Toering",
  31244. image: {
  31245. source: "./media/characters/sapphire-svell/toering.svg"
  31246. }
  31247. },
  31248. },
  31249. [
  31250. {
  31251. name: "Normal",
  31252. height: math.unit(300, "feet"),
  31253. default: true
  31254. },
  31255. {
  31256. name: "Augmented",
  31257. height: math.unit(1250, "feet")
  31258. },
  31259. {
  31260. name: "Unleashed",
  31261. height: math.unit(3000, "feet")
  31262. },
  31263. ]
  31264. ))
  31265. characterMakers.push(() => makeCharacter(
  31266. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31267. {
  31268. side: {
  31269. height: math.unit(2 + 3 / 12, "feet"),
  31270. weight: math.unit(110, "lb"),
  31271. name: "Side",
  31272. image: {
  31273. source: "./media/characters/glitch-flux/side.svg",
  31274. extra: 997 / 805,
  31275. bottom: 20 / 1017
  31276. }
  31277. },
  31278. },
  31279. [
  31280. {
  31281. name: "Normal",
  31282. height: math.unit(2 + 3 / 12, "feet"),
  31283. default: true
  31284. },
  31285. ]
  31286. ))
  31287. characterMakers.push(() => makeCharacter(
  31288. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31289. {
  31290. front: {
  31291. height: math.unit(4, "meters"),
  31292. name: "Front",
  31293. image: {
  31294. source: "./media/characters/mid/front.svg",
  31295. extra: 507 / 476,
  31296. bottom: 17 / 524
  31297. }
  31298. },
  31299. back: {
  31300. height: math.unit(4, "meters"),
  31301. name: "Back",
  31302. image: {
  31303. source: "./media/characters/mid/back.svg",
  31304. extra: 519 / 487,
  31305. bottom: 7 / 526
  31306. }
  31307. },
  31308. stuck: {
  31309. height: math.unit(2.2, "meters"),
  31310. name: "Stuck",
  31311. image: {
  31312. source: "./media/characters/mid/stuck.svg",
  31313. extra: 1951 / 1869,
  31314. bottom: 88 / 2039
  31315. }
  31316. }
  31317. },
  31318. [
  31319. {
  31320. name: "Normal",
  31321. height: math.unit(4, "meters"),
  31322. default: true
  31323. },
  31324. {
  31325. name: "Big",
  31326. height: math.unit(10, "meters")
  31327. },
  31328. {
  31329. name: "Macro",
  31330. height: math.unit(800, "meters")
  31331. },
  31332. {
  31333. name: "Megamacro",
  31334. height: math.unit(100, "km")
  31335. },
  31336. {
  31337. name: "Overgrown",
  31338. height: math.unit(1, "parsec")
  31339. },
  31340. ]
  31341. ))
  31342. characterMakers.push(() => makeCharacter(
  31343. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31344. {
  31345. front: {
  31346. height: math.unit(2.5, "meters"),
  31347. weight: math.unit(225, "kg"),
  31348. name: "Front",
  31349. image: {
  31350. source: "./media/characters/iris/front.svg",
  31351. extra: 3348 / 3251,
  31352. bottom: 205 / 3553
  31353. }
  31354. },
  31355. maw: {
  31356. height: math.unit(0.56, "meter"),
  31357. name: "Maw",
  31358. image: {
  31359. source: "./media/characters/iris/maw.svg"
  31360. }
  31361. },
  31362. },
  31363. [
  31364. {
  31365. name: "Mewter cat",
  31366. height: math.unit(1.2, "meters")
  31367. },
  31368. {
  31369. name: "Minimacro",
  31370. height: math.unit(2.5, "meters"),
  31371. default: true
  31372. },
  31373. {
  31374. name: "Macro",
  31375. height: math.unit(180, "meters")
  31376. },
  31377. {
  31378. name: "Megamacro",
  31379. height: math.unit(2746, "meters")
  31380. },
  31381. ]
  31382. ))
  31383. characterMakers.push(() => makeCharacter(
  31384. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31385. {
  31386. front: {
  31387. height: math.unit(6, "feet"),
  31388. weight: math.unit(135, "lb"),
  31389. name: "Front",
  31390. image: {
  31391. source: "./media/characters/axel/front.svg",
  31392. extra: 908 / 908,
  31393. bottom: 58 / 966
  31394. }
  31395. },
  31396. side: {
  31397. height: math.unit(6, "feet"),
  31398. weight: math.unit(135, "lb"),
  31399. name: "Side",
  31400. image: {
  31401. source: "./media/characters/axel/side.svg",
  31402. extra: 958 / 958,
  31403. bottom: 11 / 969
  31404. }
  31405. },
  31406. back: {
  31407. height: math.unit(6, "feet"),
  31408. weight: math.unit(135, "lb"),
  31409. name: "Back",
  31410. image: {
  31411. source: "./media/characters/axel/back.svg",
  31412. extra: 887 / 887,
  31413. bottom: 34 / 921
  31414. }
  31415. },
  31416. head: {
  31417. height: math.unit(1.07, "feet"),
  31418. name: "Head",
  31419. image: {
  31420. source: "./media/characters/axel/head.svg"
  31421. }
  31422. },
  31423. beak: {
  31424. height: math.unit(1.4, "feet"),
  31425. name: "Beak",
  31426. image: {
  31427. source: "./media/characters/axel/beak.svg"
  31428. }
  31429. },
  31430. beakSide: {
  31431. height: math.unit(1.4, "feet"),
  31432. name: "Beak Side",
  31433. image: {
  31434. source: "./media/characters/axel/beak-side.svg"
  31435. }
  31436. },
  31437. sheath: {
  31438. height: math.unit(0.5, "feet"),
  31439. name: "Sheath",
  31440. image: {
  31441. source: "./media/characters/axel/sheath.svg"
  31442. }
  31443. },
  31444. dick: {
  31445. height: math.unit(0.98, "feet"),
  31446. name: "Dick",
  31447. image: {
  31448. source: "./media/characters/axel/dick.svg"
  31449. }
  31450. },
  31451. },
  31452. [
  31453. {
  31454. name: "Macro",
  31455. height: math.unit(68, "meters"),
  31456. default: true
  31457. },
  31458. ]
  31459. ))
  31460. characterMakers.push(() => makeCharacter(
  31461. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31462. {
  31463. front: {
  31464. height: math.unit(3.5, "meters"),
  31465. weight: math.unit(1200, "kg"),
  31466. name: "Front",
  31467. image: {
  31468. source: "./media/characters/joanna/front.svg",
  31469. extra: 1596 / 1488,
  31470. bottom: 29 / 1625
  31471. }
  31472. },
  31473. back: {
  31474. height: math.unit(3.5, "meters"),
  31475. weight: math.unit(1200, "kg"),
  31476. name: "Back",
  31477. image: {
  31478. source: "./media/characters/joanna/back.svg",
  31479. extra: 1594 / 1495,
  31480. bottom: 26 / 1620
  31481. }
  31482. },
  31483. frontShorts: {
  31484. height: math.unit(3.5, "meters"),
  31485. weight: math.unit(1200, "kg"),
  31486. name: "Front (Shorts)",
  31487. image: {
  31488. source: "./media/characters/joanna/front-shorts.svg",
  31489. extra: 1596 / 1488,
  31490. bottom: 29 / 1625
  31491. }
  31492. },
  31493. frontBiker: {
  31494. height: math.unit(3.5, "meters"),
  31495. weight: math.unit(1200, "kg"),
  31496. name: "Front (Biker)",
  31497. image: {
  31498. source: "./media/characters/joanna/front-biker.svg",
  31499. extra: 1596 / 1488,
  31500. bottom: 29 / 1625
  31501. }
  31502. },
  31503. backBiker: {
  31504. height: math.unit(3.5, "meters"),
  31505. weight: math.unit(1200, "kg"),
  31506. name: "Back (Biker)",
  31507. image: {
  31508. source: "./media/characters/joanna/back-biker.svg",
  31509. extra: 1594 / 1495,
  31510. bottom: 88 / 1682
  31511. }
  31512. },
  31513. bikeLeft: {
  31514. height: math.unit(2.4, "meters"),
  31515. weight: math.unit(1600, "kg"),
  31516. name: "Bike (Left)",
  31517. image: {
  31518. source: "./media/characters/joanna/bike-left.svg",
  31519. extra: 720 / 720,
  31520. bottom: 8 / 728
  31521. }
  31522. },
  31523. bikeRight: {
  31524. height: math.unit(2.4, "meters"),
  31525. weight: math.unit(1600, "kg"),
  31526. name: "Bike (Right)",
  31527. image: {
  31528. source: "./media/characters/joanna/bike-right.svg",
  31529. extra: 720 / 720,
  31530. bottom: 8 / 728
  31531. }
  31532. },
  31533. },
  31534. [
  31535. {
  31536. name: "Incognito",
  31537. height: math.unit(3.5, "meters")
  31538. },
  31539. {
  31540. name: "Casual Big",
  31541. height: math.unit(200, "meters")
  31542. },
  31543. {
  31544. name: "Macro",
  31545. height: math.unit(600, "meters")
  31546. },
  31547. {
  31548. name: "Original",
  31549. height: math.unit(20, "km"),
  31550. default: true
  31551. },
  31552. {
  31553. name: "Giga",
  31554. height: math.unit(400, "km")
  31555. },
  31556. {
  31557. name: "Lounging",
  31558. height: math.unit(1500, "km")
  31559. },
  31560. {
  31561. name: "Planetary",
  31562. height: math.unit(200000, "km")
  31563. },
  31564. ]
  31565. ))
  31566. characterMakers.push(() => makeCharacter(
  31567. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31568. {
  31569. front: {
  31570. height: math.unit(6, "feet"),
  31571. weight: math.unit(150, "lb"),
  31572. name: "Front",
  31573. image: {
  31574. source: "./media/characters/hugo-sigil/front.svg",
  31575. extra: 522 / 500,
  31576. bottom: 2 / 524
  31577. }
  31578. },
  31579. back: {
  31580. height: math.unit(6, "feet"),
  31581. weight: math.unit(150, "lb"),
  31582. name: "Back",
  31583. image: {
  31584. source: "./media/characters/hugo-sigil/back.svg",
  31585. extra: 519 / 495,
  31586. bottom: 5 / 524
  31587. }
  31588. },
  31589. maw: {
  31590. height: math.unit(1.4, "feet"),
  31591. weight: math.unit(150, "lb"),
  31592. name: "Maw",
  31593. image: {
  31594. source: "./media/characters/hugo-sigil/maw.svg"
  31595. }
  31596. },
  31597. feet: {
  31598. height: math.unit(1.56, "feet"),
  31599. weight: math.unit(150, "lb"),
  31600. name: "Feet",
  31601. image: {
  31602. source: "./media/characters/hugo-sigil/feet.svg",
  31603. extra: 177 / 177,
  31604. bottom: 12 / 189
  31605. }
  31606. },
  31607. },
  31608. [
  31609. {
  31610. name: "Normal",
  31611. height: math.unit(6, "feet")
  31612. },
  31613. {
  31614. name: "Macro",
  31615. height: math.unit(200, "feet"),
  31616. default: true
  31617. },
  31618. ]
  31619. ))
  31620. characterMakers.push(() => makeCharacter(
  31621. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31622. {
  31623. front: {
  31624. height: math.unit(6, "feet"),
  31625. weight: math.unit(150, "lb"),
  31626. name: "Front",
  31627. image: {
  31628. source: "./media/characters/peri/front.svg",
  31629. extra: 2354 / 2233,
  31630. bottom: 49 / 2403
  31631. }
  31632. },
  31633. },
  31634. [
  31635. {
  31636. name: "Really Small",
  31637. height: math.unit(1, "nm")
  31638. },
  31639. {
  31640. name: "Micro",
  31641. height: math.unit(4, "inches")
  31642. },
  31643. {
  31644. name: "Normal",
  31645. height: math.unit(7, "inches"),
  31646. default: true
  31647. },
  31648. {
  31649. name: "Macro",
  31650. height: math.unit(400, "feet")
  31651. },
  31652. {
  31653. name: "Megamacro",
  31654. height: math.unit(100, "miles")
  31655. },
  31656. ]
  31657. ))
  31658. characterMakers.push(() => makeCharacter(
  31659. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31660. {
  31661. frontSlim: {
  31662. height: math.unit(7, "feet"),
  31663. name: "Front (Slim)",
  31664. image: {
  31665. source: "./media/characters/issilora/front-slim.svg",
  31666. extra: 529 / 449,
  31667. bottom: 53 / 582
  31668. }
  31669. },
  31670. sideSlim: {
  31671. height: math.unit(7, "feet"),
  31672. name: "Side (Slim)",
  31673. image: {
  31674. source: "./media/characters/issilora/side-slim.svg",
  31675. extra: 570 / 480,
  31676. bottom: 30 / 600
  31677. }
  31678. },
  31679. backSlim: {
  31680. height: math.unit(7, "feet"),
  31681. name: "Back (Slim)",
  31682. image: {
  31683. source: "./media/characters/issilora/back-slim.svg",
  31684. extra: 537 / 455,
  31685. bottom: 46 / 583
  31686. }
  31687. },
  31688. frontBuff: {
  31689. height: math.unit(7, "feet"),
  31690. name: "Front (Buff)",
  31691. image: {
  31692. source: "./media/characters/issilora/front-buff.svg",
  31693. extra: 2310 / 2035,
  31694. bottom: 335 / 2645
  31695. }
  31696. },
  31697. head: {
  31698. height: math.unit(1.94, "feet"),
  31699. name: "Head",
  31700. image: {
  31701. source: "./media/characters/issilora/head.svg"
  31702. }
  31703. },
  31704. },
  31705. [
  31706. {
  31707. name: "Minimum",
  31708. height: math.unit(7, "feet")
  31709. },
  31710. {
  31711. name: "Comfortable",
  31712. height: math.unit(17, "feet")
  31713. },
  31714. {
  31715. name: "Fun Size",
  31716. height: math.unit(47, "feet")
  31717. },
  31718. {
  31719. name: "Natural Macro",
  31720. height: math.unit(137, "feet"),
  31721. default: true
  31722. },
  31723. {
  31724. name: "Maximum Kaiju",
  31725. height: math.unit(397, "feet")
  31726. },
  31727. ]
  31728. ))
  31729. characterMakers.push(() => makeCharacter(
  31730. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31731. {
  31732. front: {
  31733. height: math.unit(50 + 9/12, "feet"),
  31734. weight: math.unit(32.8, "tons"),
  31735. name: "Front",
  31736. image: {
  31737. source: "./media/characters/irb'iiritaahn/front.svg",
  31738. extra: 1878/1826,
  31739. bottom: 326/2204
  31740. }
  31741. },
  31742. back: {
  31743. height: math.unit(50 + 9/12, "feet"),
  31744. weight: math.unit(32.8, "tons"),
  31745. name: "Back",
  31746. image: {
  31747. source: "./media/characters/irb'iiritaahn/back.svg",
  31748. extra: 2052/2018,
  31749. bottom: 152/2204
  31750. }
  31751. },
  31752. head: {
  31753. height: math.unit(12.86, "feet"),
  31754. name: "Head",
  31755. image: {
  31756. source: "./media/characters/irb'iiritaahn/head.svg"
  31757. }
  31758. },
  31759. maw: {
  31760. height: math.unit(9.66, "feet"),
  31761. name: "Maw",
  31762. image: {
  31763. source: "./media/characters/irb'iiritaahn/maw.svg"
  31764. }
  31765. },
  31766. frontDick: {
  31767. height: math.unit(8.78461, "feet"),
  31768. name: "Front Dick",
  31769. image: {
  31770. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31771. }
  31772. },
  31773. rearDick: {
  31774. height: math.unit(8.78461, "feet"),
  31775. name: "Rear Dick",
  31776. image: {
  31777. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31778. }
  31779. },
  31780. rearDickUnfolded: {
  31781. height: math.unit(8.78, "feet"),
  31782. name: "Rear Dick (Unfolded)",
  31783. image: {
  31784. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31785. }
  31786. },
  31787. wings: {
  31788. height: math.unit(43, "feet"),
  31789. name: "Wings",
  31790. image: {
  31791. source: "./media/characters/irb'iiritaahn/wings.svg"
  31792. }
  31793. },
  31794. },
  31795. [
  31796. {
  31797. name: "Macro",
  31798. height: math.unit(50 + 9/12, "feet"),
  31799. default: true
  31800. },
  31801. ]
  31802. ))
  31803. characterMakers.push(() => makeCharacter(
  31804. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31805. {
  31806. front: {
  31807. height: math.unit(205, "cm"),
  31808. weight: math.unit(102, "kg"),
  31809. name: "Front",
  31810. image: {
  31811. source: "./media/characters/irbisgreif/front.svg",
  31812. extra: 785/706,
  31813. bottom: 13/798
  31814. }
  31815. },
  31816. back: {
  31817. height: math.unit(205, "cm"),
  31818. weight: math.unit(102, "kg"),
  31819. name: "Back",
  31820. image: {
  31821. source: "./media/characters/irbisgreif/back.svg",
  31822. extra: 713/701,
  31823. bottom: 26/739
  31824. }
  31825. },
  31826. frontDressed: {
  31827. height: math.unit(216, "cm"),
  31828. weight: math.unit(102, "kg"),
  31829. name: "Front-dressed",
  31830. image: {
  31831. source: "./media/characters/irbisgreif/front-dressed.svg",
  31832. extra: 902/776,
  31833. bottom: 14/916
  31834. }
  31835. },
  31836. sideDressed: {
  31837. height: math.unit(195, "cm"),
  31838. weight: math.unit(102, "kg"),
  31839. name: "Side-dressed",
  31840. image: {
  31841. source: "./media/characters/irbisgreif/side-dressed.svg",
  31842. extra: 788/688,
  31843. bottom: 21/809
  31844. }
  31845. },
  31846. backDressed: {
  31847. height: math.unit(216, "cm"),
  31848. weight: math.unit(102, "kg"),
  31849. name: "Back-dressed",
  31850. image: {
  31851. source: "./media/characters/irbisgreif/back-dressed.svg",
  31852. extra: 901/783,
  31853. bottom: 10/911
  31854. }
  31855. },
  31856. dick: {
  31857. height: math.unit(0.49, "feet"),
  31858. name: "Dick",
  31859. image: {
  31860. source: "./media/characters/irbisgreif/dick.svg"
  31861. }
  31862. },
  31863. wingTop: {
  31864. height: math.unit(1.93 , "feet"),
  31865. name: "Wing-top",
  31866. image: {
  31867. source: "./media/characters/irbisgreif/wing-top.svg"
  31868. }
  31869. },
  31870. wingBottom: {
  31871. height: math.unit(1.93 , "feet"),
  31872. name: "Wing-bottom",
  31873. image: {
  31874. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31875. }
  31876. },
  31877. },
  31878. [
  31879. {
  31880. name: "Normal",
  31881. height: math.unit(216, "cm"),
  31882. default: true
  31883. },
  31884. ]
  31885. ))
  31886. characterMakers.push(() => makeCharacter(
  31887. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31888. {
  31889. front: {
  31890. height: math.unit(6, "feet"),
  31891. weight: math.unit(150, "lb"),
  31892. name: "Front",
  31893. image: {
  31894. source: "./media/characters/pride/front.svg",
  31895. extra: 1299/1230,
  31896. bottom: 18/1317
  31897. }
  31898. },
  31899. },
  31900. [
  31901. {
  31902. name: "Normal",
  31903. height: math.unit(7, "feet")
  31904. },
  31905. {
  31906. name: "Mini-macro",
  31907. height: math.unit(11, "feet")
  31908. },
  31909. {
  31910. name: "Macro",
  31911. height: math.unit(15, "meters"),
  31912. default: true
  31913. },
  31914. {
  31915. name: "Macro+",
  31916. height: math.unit(40, "meters")
  31917. },
  31918. ]
  31919. ))
  31920. characterMakers.push(() => makeCharacter(
  31921. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31922. {
  31923. front: {
  31924. height: math.unit(4 + 2 / 12, "feet"),
  31925. weight: math.unit(95, "lb"),
  31926. name: "Front",
  31927. image: {
  31928. source: "./media/characters/vaelophis-nyx/front.svg",
  31929. extra: 2532/2330,
  31930. bottom: 0/2532
  31931. }
  31932. },
  31933. back: {
  31934. height: math.unit(4 + 2 / 12, "feet"),
  31935. weight: math.unit(95, "lb"),
  31936. name: "Back",
  31937. image: {
  31938. source: "./media/characters/vaelophis-nyx/back.svg",
  31939. extra: 2484/2361,
  31940. bottom: 0/2484
  31941. }
  31942. },
  31943. feralSide: {
  31944. height: math.unit(2 + 1/12, "feet"),
  31945. weight: math.unit(20, "lb"),
  31946. name: "Feral (Side)",
  31947. image: {
  31948. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31949. extra: 1721/1581,
  31950. bottom: 70/1791
  31951. }
  31952. },
  31953. feralLazing: {
  31954. height: math.unit(1.08, "feet"),
  31955. weight: math.unit(20, "lb"),
  31956. name: "Feral (Lazing)",
  31957. image: {
  31958. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31959. extra: 822/822,
  31960. bottom: 248/1070
  31961. }
  31962. },
  31963. ear: {
  31964. height: math.unit(0.416, "feet"),
  31965. name: "Ear",
  31966. image: {
  31967. source: "./media/characters/vaelophis-nyx/ear.svg"
  31968. }
  31969. },
  31970. eye: {
  31971. height: math.unit(0.0748, "feet"),
  31972. name: "Eye",
  31973. image: {
  31974. source: "./media/characters/vaelophis-nyx/eye.svg"
  31975. }
  31976. },
  31977. mouth: {
  31978. height: math.unit(0.378, "feet"),
  31979. name: "Mouth",
  31980. image: {
  31981. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31982. }
  31983. },
  31984. spade: {
  31985. height: math.unit(0.55, "feet"),
  31986. name: "Spade",
  31987. image: {
  31988. source: "./media/characters/vaelophis-nyx/spade.svg"
  31989. }
  31990. },
  31991. },
  31992. [
  31993. {
  31994. name: "Normal",
  31995. height: math.unit(4 + 2/12, "feet"),
  31996. default: true
  31997. },
  31998. ]
  31999. ))
  32000. characterMakers.push(() => makeCharacter(
  32001. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32002. {
  32003. front: {
  32004. height: math.unit(7, "feet"),
  32005. weight: math.unit(231, "lb"),
  32006. name: "Front",
  32007. image: {
  32008. source: "./media/characters/flux/front.svg",
  32009. extra: 919/871,
  32010. bottom: 0/919
  32011. }
  32012. },
  32013. back: {
  32014. height: math.unit(7, "feet"),
  32015. weight: math.unit(231, "lb"),
  32016. name: "Back",
  32017. image: {
  32018. source: "./media/characters/flux/back.svg",
  32019. extra: 1040/992,
  32020. bottom: 0/1040
  32021. }
  32022. },
  32023. frontDressed: {
  32024. height: math.unit(7, "feet"),
  32025. weight: math.unit(231, "lb"),
  32026. name: "Front (Dressed)",
  32027. image: {
  32028. source: "./media/characters/flux/front-dressed.svg",
  32029. extra: 919/871,
  32030. bottom: 0/919
  32031. }
  32032. },
  32033. feralSide: {
  32034. height: math.unit(5, "feet"),
  32035. weight: math.unit(150, "lb"),
  32036. name: "Feral (Side)",
  32037. image: {
  32038. source: "./media/characters/flux/feral-side.svg",
  32039. extra: 598/528,
  32040. bottom: 28/626
  32041. }
  32042. },
  32043. head: {
  32044. height: math.unit(1.585, "feet"),
  32045. name: "Head",
  32046. image: {
  32047. source: "./media/characters/flux/head.svg"
  32048. }
  32049. },
  32050. headSide: {
  32051. height: math.unit(1.74, "feet"),
  32052. name: "Head (Side)",
  32053. image: {
  32054. source: "./media/characters/flux/head-side.svg"
  32055. }
  32056. },
  32057. headSideFire: {
  32058. height: math.unit(1.76, "feet"),
  32059. name: "Head (Side, Fire)",
  32060. image: {
  32061. source: "./media/characters/flux/head-side-fire.svg"
  32062. }
  32063. },
  32064. },
  32065. [
  32066. {
  32067. name: "Normal",
  32068. height: math.unit(7, "feet"),
  32069. default: true
  32070. },
  32071. ]
  32072. ))
  32073. characterMakers.push(() => makeCharacter(
  32074. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32075. {
  32076. front: {
  32077. height: math.unit(9, "feet"),
  32078. weight: math.unit(1012, "lb"),
  32079. name: "Front",
  32080. image: {
  32081. source: "./media/characters/ulfra-lupae/front.svg",
  32082. extra: 1083/1011,
  32083. bottom: 67/1150
  32084. }
  32085. },
  32086. },
  32087. [
  32088. {
  32089. name: "Micro",
  32090. height: math.unit(6, "inches")
  32091. },
  32092. {
  32093. name: "Socializing",
  32094. height: math.unit(6 + 5/12, "feet")
  32095. },
  32096. {
  32097. name: "Normal",
  32098. height: math.unit(9, "feet"),
  32099. default: true
  32100. },
  32101. {
  32102. name: "Macro",
  32103. height: math.unit(150, "feet")
  32104. },
  32105. ]
  32106. ))
  32107. characterMakers.push(() => makeCharacter(
  32108. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32109. {
  32110. front: {
  32111. height: math.unit(5 + 2/12, "feet"),
  32112. weight: math.unit(120, "lb"),
  32113. name: "Front",
  32114. image: {
  32115. source: "./media/characters/timber/front.svg",
  32116. extra: 2814/2705,
  32117. bottom: 181/2995
  32118. }
  32119. },
  32120. },
  32121. [
  32122. {
  32123. name: "Normal",
  32124. height: math.unit(5 + 2/12, "feet"),
  32125. default: true
  32126. },
  32127. ]
  32128. ))
  32129. characterMakers.push(() => makeCharacter(
  32130. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32131. {
  32132. front: {
  32133. height: math.unit(9, "feet"),
  32134. name: "Front",
  32135. image: {
  32136. source: "./media/characters/nicki/front.svg",
  32137. extra: 1240/990,
  32138. bottom: 45/1285
  32139. },
  32140. form: "anthro",
  32141. default: true
  32142. },
  32143. side: {
  32144. height: math.unit(9, "feet"),
  32145. name: "Side",
  32146. image: {
  32147. source: "./media/characters/nicki/side.svg",
  32148. extra: 1047/973,
  32149. bottom: 61/1108
  32150. },
  32151. form: "anthro"
  32152. },
  32153. back: {
  32154. height: math.unit(9, "feet"),
  32155. name: "Back",
  32156. image: {
  32157. source: "./media/characters/nicki/back.svg",
  32158. extra: 1006/965,
  32159. bottom: 39/1045
  32160. },
  32161. form: "anthro"
  32162. },
  32163. taur: {
  32164. height: math.unit(15, "feet"),
  32165. name: "Taur",
  32166. image: {
  32167. source: "./media/characters/nicki/taur.svg",
  32168. extra: 1592/1347,
  32169. bottom: 0/1592
  32170. },
  32171. form: "taur",
  32172. default: true
  32173. },
  32174. },
  32175. [
  32176. {
  32177. name: "Normal",
  32178. height: math.unit(9, "feet"),
  32179. form: "anthro",
  32180. default: true
  32181. },
  32182. {
  32183. name: "Normal",
  32184. height: math.unit(15, "feet"),
  32185. form: "taur",
  32186. default: true
  32187. }
  32188. ],
  32189. {
  32190. "anthro": {
  32191. name: "Anthro",
  32192. default: true
  32193. },
  32194. "taur": {
  32195. name: "Taur"
  32196. }
  32197. }
  32198. ))
  32199. characterMakers.push(() => makeCharacter(
  32200. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32201. {
  32202. front: {
  32203. height: math.unit(7 + 10/12, "feet"),
  32204. weight: math.unit(3.5, "tons"),
  32205. name: "Front",
  32206. image: {
  32207. source: "./media/characters/lee/front.svg",
  32208. extra: 1773/1615,
  32209. bottom: 86/1859
  32210. }
  32211. },
  32212. hand: {
  32213. height: math.unit(1.78, "feet"),
  32214. name: "Hand",
  32215. image: {
  32216. source: "./media/characters/lee/hand.svg"
  32217. }
  32218. },
  32219. maw: {
  32220. height: math.unit(1.18, "feet"),
  32221. name: "Maw",
  32222. image: {
  32223. source: "./media/characters/lee/maw.svg"
  32224. }
  32225. },
  32226. },
  32227. [
  32228. {
  32229. name: "Normal",
  32230. height: math.unit(7 + 10/12, "feet"),
  32231. default: true
  32232. },
  32233. ]
  32234. ))
  32235. characterMakers.push(() => makeCharacter(
  32236. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32237. {
  32238. front: {
  32239. height: math.unit(9, "feet"),
  32240. name: "Front",
  32241. image: {
  32242. source: "./media/characters/guti/front.svg",
  32243. extra: 4551/4355,
  32244. bottom: 123/4674
  32245. }
  32246. },
  32247. tongue: {
  32248. height: math.unit(1, "feet"),
  32249. name: "Tongue",
  32250. image: {
  32251. source: "./media/characters/guti/tongue.svg"
  32252. }
  32253. },
  32254. paw: {
  32255. height: math.unit(1.18, "feet"),
  32256. name: "Paw",
  32257. image: {
  32258. source: "./media/characters/guti/paw.svg"
  32259. }
  32260. },
  32261. },
  32262. [
  32263. {
  32264. name: "Normal",
  32265. height: math.unit(9, "feet"),
  32266. default: true
  32267. },
  32268. ]
  32269. ))
  32270. characterMakers.push(() => makeCharacter(
  32271. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32272. {
  32273. side: {
  32274. height: math.unit(5, "meters"),
  32275. name: "Side",
  32276. image: {
  32277. source: "./media/characters/vesper/side.svg",
  32278. extra: 1605/1518,
  32279. bottom: 0/1605
  32280. }
  32281. },
  32282. },
  32283. [
  32284. {
  32285. name: "Small",
  32286. height: math.unit(5, "meters")
  32287. },
  32288. {
  32289. name: "Sage",
  32290. height: math.unit(100, "meters"),
  32291. default: true
  32292. },
  32293. {
  32294. name: "Fun Size",
  32295. height: math.unit(600, "meters")
  32296. },
  32297. {
  32298. name: "Goddess",
  32299. height: math.unit(20000, "km")
  32300. },
  32301. {
  32302. name: "Maximum",
  32303. height: math.unit(5, "galaxies")
  32304. },
  32305. ]
  32306. ))
  32307. characterMakers.push(() => makeCharacter(
  32308. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32309. {
  32310. front: {
  32311. height: math.unit(6 + 3/12, "feet"),
  32312. weight: math.unit(190, "lb"),
  32313. name: "Front",
  32314. image: {
  32315. source: "./media/characters/gawain/front.svg",
  32316. extra: 2222/2139,
  32317. bottom: 90/2312
  32318. }
  32319. },
  32320. back: {
  32321. height: math.unit(6 + 3/12, "feet"),
  32322. weight: math.unit(190, "lb"),
  32323. name: "Back",
  32324. image: {
  32325. source: "./media/characters/gawain/back.svg",
  32326. extra: 2199/2111,
  32327. bottom: 73/2272
  32328. }
  32329. },
  32330. },
  32331. [
  32332. {
  32333. name: "Normal",
  32334. height: math.unit(6 + 3/12, "feet"),
  32335. default: true
  32336. },
  32337. ]
  32338. ))
  32339. characterMakers.push(() => makeCharacter(
  32340. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32341. {
  32342. side: {
  32343. height: math.unit(3.5, "meters"),
  32344. weight: math.unit(16000, "lb"),
  32345. name: "Side",
  32346. image: {
  32347. source: "./media/characters/dascalti/side.svg",
  32348. extra: 392/273,
  32349. bottom: 47/439
  32350. }
  32351. },
  32352. breath: {
  32353. height: math.unit(7.4, "feet"),
  32354. name: "Breath",
  32355. image: {
  32356. source: "./media/characters/dascalti/breath.svg"
  32357. }
  32358. },
  32359. fed: {
  32360. height: math.unit(3.6, "meters"),
  32361. weight: math.unit(16000, "lb"),
  32362. name: "Fed",
  32363. image: {
  32364. source: "./media/characters/dascalti/fed.svg",
  32365. extra: 1419/820,
  32366. bottom: 95/1514
  32367. }
  32368. },
  32369. },
  32370. [
  32371. {
  32372. name: "Normal",
  32373. height: math.unit(3.5, "meters"),
  32374. default: true
  32375. },
  32376. ]
  32377. ))
  32378. characterMakers.push(() => makeCharacter(
  32379. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32380. {
  32381. front: {
  32382. height: math.unit(3 + 5/12, "feet"),
  32383. name: "Front",
  32384. image: {
  32385. source: "./media/characters/mauve/front.svg",
  32386. extra: 1126/1033,
  32387. bottom: 65/1191
  32388. }
  32389. },
  32390. side: {
  32391. height: math.unit(3 + 5/12, "feet"),
  32392. name: "Side",
  32393. image: {
  32394. source: "./media/characters/mauve/side.svg",
  32395. extra: 1089/1001,
  32396. bottom: 29/1118
  32397. }
  32398. },
  32399. back: {
  32400. height: math.unit(3 + 5/12, "feet"),
  32401. name: "Back",
  32402. image: {
  32403. source: "./media/characters/mauve/back.svg",
  32404. extra: 1173/1053,
  32405. bottom: 109/1282
  32406. }
  32407. },
  32408. },
  32409. [
  32410. {
  32411. name: "Normal",
  32412. height: math.unit(3 + 5/12, "feet"),
  32413. default: true
  32414. },
  32415. ]
  32416. ))
  32417. characterMakers.push(() => makeCharacter(
  32418. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32419. {
  32420. front: {
  32421. height: math.unit(6 + 3/12, "feet"),
  32422. weight: math.unit(430, "lb"),
  32423. name: "Front",
  32424. image: {
  32425. source: "./media/characters/carlos/front.svg",
  32426. extra: 1964/1913,
  32427. bottom: 70/2034
  32428. }
  32429. },
  32430. },
  32431. [
  32432. {
  32433. name: "Normal",
  32434. height: math.unit(6 + 3/12, "feet"),
  32435. default: true
  32436. },
  32437. ]
  32438. ))
  32439. characterMakers.push(() => makeCharacter(
  32440. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32441. {
  32442. back: {
  32443. height: math.unit(5 + 10/12, "feet"),
  32444. weight: math.unit(200, "lb"),
  32445. name: "Back",
  32446. image: {
  32447. source: "./media/characters/jax/back.svg",
  32448. extra: 764/739,
  32449. bottom: 25/789
  32450. }
  32451. },
  32452. },
  32453. [
  32454. {
  32455. name: "Normal",
  32456. height: math.unit(5 + 10/12, "feet"),
  32457. default: true
  32458. },
  32459. ]
  32460. ))
  32461. characterMakers.push(() => makeCharacter(
  32462. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32463. {
  32464. front: {
  32465. height: math.unit(8, "feet"),
  32466. weight: math.unit(250, "lb"),
  32467. name: "Front",
  32468. image: {
  32469. source: "./media/characters/eikthynir/front.svg",
  32470. extra: 1332/1166,
  32471. bottom: 82/1414
  32472. }
  32473. },
  32474. back: {
  32475. height: math.unit(8, "feet"),
  32476. weight: math.unit(250, "lb"),
  32477. name: "Back",
  32478. image: {
  32479. source: "./media/characters/eikthynir/back.svg",
  32480. extra: 1342/1190,
  32481. bottom: 19/1361
  32482. }
  32483. },
  32484. dick: {
  32485. height: math.unit(2.35, "feet"),
  32486. name: "Dick",
  32487. image: {
  32488. source: "./media/characters/eikthynir/dick.svg"
  32489. }
  32490. },
  32491. },
  32492. [
  32493. {
  32494. name: "Normal",
  32495. height: math.unit(8, "feet"),
  32496. default: true
  32497. },
  32498. ]
  32499. ))
  32500. characterMakers.push(() => makeCharacter(
  32501. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32502. {
  32503. front: {
  32504. height: math.unit(99, "meters"),
  32505. weight: math.unit(13000, "tons"),
  32506. name: "Front",
  32507. image: {
  32508. source: "./media/characters/zlmos/front.svg",
  32509. extra: 2202/1992,
  32510. bottom: 315/2517
  32511. }
  32512. },
  32513. },
  32514. [
  32515. {
  32516. name: "Macro",
  32517. height: math.unit(99, "meters"),
  32518. default: true
  32519. },
  32520. ]
  32521. ))
  32522. characterMakers.push(() => makeCharacter(
  32523. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32524. {
  32525. front: {
  32526. height: math.unit(6 + 5/12, "feet"),
  32527. name: "Front",
  32528. image: {
  32529. source: "./media/characters/purri/front.svg",
  32530. extra: 1698/1610,
  32531. bottom: 32/1730
  32532. }
  32533. },
  32534. frontAlt: {
  32535. height: math.unit(6 + 5/12, "feet"),
  32536. name: "Front (Alt)",
  32537. image: {
  32538. source: "./media/characters/purri/front-alt.svg",
  32539. extra: 450/420,
  32540. bottom: 26/476
  32541. }
  32542. },
  32543. boots: {
  32544. height: math.unit(5.5, "feet"),
  32545. name: "Boots",
  32546. image: {
  32547. source: "./media/characters/purri/boots.svg",
  32548. extra: 905/853,
  32549. bottom: 18/923
  32550. }
  32551. },
  32552. lying: {
  32553. height: math.unit(2, "feet"),
  32554. name: "Lying",
  32555. image: {
  32556. source: "./media/characters/purri/lying.svg",
  32557. extra: 940/843,
  32558. bottom: 146/1086
  32559. }
  32560. },
  32561. devious: {
  32562. height: math.unit(1.77, "feet"),
  32563. name: "Devious",
  32564. image: {
  32565. source: "./media/characters/purri/devious.svg",
  32566. extra: 1440/1155,
  32567. bottom: 147/1587
  32568. }
  32569. },
  32570. bean: {
  32571. height: math.unit(1.94, "feet"),
  32572. name: "Bean",
  32573. image: {
  32574. source: "./media/characters/purri/bean.svg"
  32575. }
  32576. },
  32577. },
  32578. [
  32579. {
  32580. name: "Micro",
  32581. height: math.unit(1, "mm")
  32582. },
  32583. {
  32584. name: "Normal",
  32585. height: math.unit(6 + 5/12, "feet"),
  32586. default: true
  32587. },
  32588. {
  32589. name: "Macro :3c",
  32590. height: math.unit(2, "miles")
  32591. },
  32592. ]
  32593. ))
  32594. characterMakers.push(() => makeCharacter(
  32595. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32596. {
  32597. front: {
  32598. height: math.unit(6 + 2/12, "feet"),
  32599. weight: math.unit(250, "lb"),
  32600. name: "Front",
  32601. image: {
  32602. source: "./media/characters/moonlight/front.svg",
  32603. extra: 1044/908,
  32604. bottom: 56/1100
  32605. }
  32606. },
  32607. feral: {
  32608. height: math.unit(3 + 1/12, "feet"),
  32609. weight: math.unit(50, "kg"),
  32610. name: "Feral",
  32611. image: {
  32612. source: "./media/characters/moonlight/feral.svg",
  32613. extra: 3705/2791,
  32614. bottom: 145/3850
  32615. }
  32616. },
  32617. paw: {
  32618. height: math.unit(1, "feet"),
  32619. name: "Paw",
  32620. image: {
  32621. source: "./media/characters/moonlight/paw.svg"
  32622. }
  32623. },
  32624. paws: {
  32625. height: math.unit(0.98, "feet"),
  32626. name: "Paws",
  32627. image: {
  32628. source: "./media/characters/moonlight/paws.svg",
  32629. extra: 939/939,
  32630. bottom: 50/989
  32631. }
  32632. },
  32633. mouth: {
  32634. height: math.unit(0.48, "feet"),
  32635. name: "Mouth",
  32636. image: {
  32637. source: "./media/characters/moonlight/mouth.svg"
  32638. }
  32639. },
  32640. dick: {
  32641. height: math.unit(1.46, "feet"),
  32642. name: "Dick",
  32643. image: {
  32644. source: "./media/characters/moonlight/dick.svg"
  32645. }
  32646. },
  32647. },
  32648. [
  32649. {
  32650. name: "Normal",
  32651. height: math.unit(6 + 2/12, "feet"),
  32652. default: true
  32653. },
  32654. {
  32655. name: "Macro",
  32656. height: math.unit(300, "feet")
  32657. },
  32658. {
  32659. name: "Macro+",
  32660. height: math.unit(1, "mile")
  32661. },
  32662. {
  32663. name: "Mt. Moon",
  32664. height: math.unit(5, "miles")
  32665. },
  32666. {
  32667. name: "Megamacro",
  32668. height: math.unit(15, "miles")
  32669. },
  32670. ]
  32671. ))
  32672. characterMakers.push(() => makeCharacter(
  32673. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32674. {
  32675. back: {
  32676. height: math.unit(6, "feet"),
  32677. weight: math.unit(150, "lb"),
  32678. name: "Back",
  32679. image: {
  32680. source: "./media/characters/sylen/back.svg",
  32681. extra: 1335/1273,
  32682. bottom: 107/1442
  32683. }
  32684. },
  32685. },
  32686. [
  32687. {
  32688. name: "Normal",
  32689. height: math.unit(5 + 5/12, "feet")
  32690. },
  32691. {
  32692. name: "Megamacro",
  32693. height: math.unit(3, "miles"),
  32694. default: true
  32695. },
  32696. ]
  32697. ))
  32698. characterMakers.push(() => makeCharacter(
  32699. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32700. {
  32701. front: {
  32702. height: math.unit(6, "feet"),
  32703. weight: math.unit(190, "lb"),
  32704. name: "Front",
  32705. image: {
  32706. source: "./media/characters/huttser/front.svg",
  32707. extra: 1152/1058,
  32708. bottom: 23/1175
  32709. }
  32710. },
  32711. side: {
  32712. height: math.unit(6, "feet"),
  32713. weight: math.unit(190, "lb"),
  32714. name: "Side",
  32715. image: {
  32716. source: "./media/characters/huttser/side.svg",
  32717. extra: 1174/1065,
  32718. bottom: 18/1192
  32719. }
  32720. },
  32721. back: {
  32722. height: math.unit(6, "feet"),
  32723. weight: math.unit(190, "lb"),
  32724. name: "Back",
  32725. image: {
  32726. source: "./media/characters/huttser/back.svg",
  32727. extra: 1158/1056,
  32728. bottom: 12/1170
  32729. }
  32730. },
  32731. },
  32732. [
  32733. ]
  32734. ))
  32735. characterMakers.push(() => makeCharacter(
  32736. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32737. {
  32738. side: {
  32739. height: math.unit(12 + 9/12, "feet"),
  32740. weight: math.unit(15000, "lb"),
  32741. name: "Side",
  32742. image: {
  32743. source: "./media/characters/faan/side.svg",
  32744. extra: 2747/2697,
  32745. bottom: 0/2747
  32746. }
  32747. },
  32748. front: {
  32749. height: math.unit(12 + 9/12, "feet"),
  32750. weight: math.unit(15000, "lb"),
  32751. name: "Front",
  32752. image: {
  32753. source: "./media/characters/faan/front.svg",
  32754. extra: 607/571,
  32755. bottom: 24/631
  32756. }
  32757. },
  32758. head: {
  32759. height: math.unit(2.85, "feet"),
  32760. name: "Head",
  32761. image: {
  32762. source: "./media/characters/faan/head.svg"
  32763. }
  32764. },
  32765. headAlt: {
  32766. height: math.unit(3.13, "feet"),
  32767. name: "Head-alt",
  32768. image: {
  32769. source: "./media/characters/faan/head-alt.svg"
  32770. }
  32771. },
  32772. },
  32773. [
  32774. {
  32775. name: "Normal",
  32776. height: math.unit(12 + 9/12, "feet"),
  32777. default: true
  32778. },
  32779. ]
  32780. ))
  32781. characterMakers.push(() => makeCharacter(
  32782. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32783. {
  32784. front: {
  32785. height: math.unit(6, "feet"),
  32786. weight: math.unit(300, "lb"),
  32787. name: "Front",
  32788. image: {
  32789. source: "./media/characters/tanio/front.svg",
  32790. extra: 711/673,
  32791. bottom: 25/736
  32792. }
  32793. },
  32794. },
  32795. [
  32796. {
  32797. name: "Normal",
  32798. height: math.unit(6, "feet"),
  32799. default: true
  32800. },
  32801. ]
  32802. ))
  32803. characterMakers.push(() => makeCharacter(
  32804. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32805. {
  32806. front: {
  32807. height: math.unit(3, "inches"),
  32808. name: "Front",
  32809. image: {
  32810. source: "./media/characters/noboru/front.svg",
  32811. extra: 1039/932,
  32812. bottom: 18/1057
  32813. }
  32814. },
  32815. },
  32816. [
  32817. {
  32818. name: "Micro",
  32819. height: math.unit(3, "inches"),
  32820. default: true
  32821. },
  32822. ]
  32823. ))
  32824. characterMakers.push(() => makeCharacter(
  32825. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32826. {
  32827. front: {
  32828. height: math.unit(1.85, "meters"),
  32829. weight: math.unit(80, "kg"),
  32830. name: "Front",
  32831. image: {
  32832. source: "./media/characters/daniel-barrett/front.svg",
  32833. extra: 355/337,
  32834. bottom: 9/364
  32835. }
  32836. },
  32837. },
  32838. [
  32839. {
  32840. name: "Pico",
  32841. height: math.unit(0.0433, "mm")
  32842. },
  32843. {
  32844. name: "Nano",
  32845. height: math.unit(1.5, "mm")
  32846. },
  32847. {
  32848. name: "Micro",
  32849. height: math.unit(5.3, "cm"),
  32850. default: true
  32851. },
  32852. {
  32853. name: "Normal",
  32854. height: math.unit(1.85, "meters")
  32855. },
  32856. {
  32857. name: "Macro",
  32858. height: math.unit(64.7, "meters")
  32859. },
  32860. {
  32861. name: "Megamacro",
  32862. height: math.unit(2.26, "km")
  32863. },
  32864. {
  32865. name: "Gigamacro",
  32866. height: math.unit(79, "km")
  32867. },
  32868. {
  32869. name: "Teramacro",
  32870. height: math.unit(2765, "km")
  32871. },
  32872. {
  32873. name: "Petamacro",
  32874. height: math.unit(96678, "km")
  32875. },
  32876. ]
  32877. ))
  32878. characterMakers.push(() => makeCharacter(
  32879. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32880. {
  32881. front: {
  32882. height: math.unit(30, "meters"),
  32883. weight: math.unit(400, "tons"),
  32884. name: "Front",
  32885. image: {
  32886. source: "./media/characters/zeel/front.svg",
  32887. extra: 2599/2599,
  32888. bottom: 226/2825
  32889. }
  32890. },
  32891. },
  32892. [
  32893. {
  32894. name: "Macro",
  32895. height: math.unit(30, "meters"),
  32896. default: true
  32897. },
  32898. ]
  32899. ))
  32900. characterMakers.push(() => makeCharacter(
  32901. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32902. {
  32903. front: {
  32904. height: math.unit(6 + 7/12, "feet"),
  32905. weight: math.unit(210, "lb"),
  32906. name: "Front",
  32907. image: {
  32908. source: "./media/characters/tarn/front.svg",
  32909. extra: 3517/3220,
  32910. bottom: 91/3608
  32911. }
  32912. },
  32913. back: {
  32914. height: math.unit(6 + 7/12, "feet"),
  32915. weight: math.unit(210, "lb"),
  32916. name: "Back",
  32917. image: {
  32918. source: "./media/characters/tarn/back.svg",
  32919. extra: 3566/3241,
  32920. bottom: 34/3600
  32921. }
  32922. },
  32923. dick: {
  32924. height: math.unit(1.65, "feet"),
  32925. name: "Dick",
  32926. image: {
  32927. source: "./media/characters/tarn/dick.svg"
  32928. }
  32929. },
  32930. paw: {
  32931. height: math.unit(1.80, "feet"),
  32932. name: "Paw",
  32933. image: {
  32934. source: "./media/characters/tarn/paw.svg"
  32935. }
  32936. },
  32937. tongue: {
  32938. height: math.unit(0.97, "feet"),
  32939. name: "Tongue",
  32940. image: {
  32941. source: "./media/characters/tarn/tongue.svg"
  32942. }
  32943. },
  32944. },
  32945. [
  32946. {
  32947. name: "Micro",
  32948. height: math.unit(4, "inches")
  32949. },
  32950. {
  32951. name: "Normal",
  32952. height: math.unit(6 + 7/12, "feet"),
  32953. default: true
  32954. },
  32955. {
  32956. name: "Macro",
  32957. height: math.unit(300, "feet")
  32958. },
  32959. ]
  32960. ))
  32961. characterMakers.push(() => makeCharacter(
  32962. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32963. {
  32964. front: {
  32965. height: math.unit(5 + 7/12, "feet"),
  32966. weight: math.unit(80, "kg"),
  32967. name: "Front",
  32968. image: {
  32969. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32970. extra: 3023/2865,
  32971. bottom: 33/3056
  32972. }
  32973. },
  32974. back: {
  32975. height: math.unit(5 + 7/12, "feet"),
  32976. weight: math.unit(80, "kg"),
  32977. name: "Back",
  32978. image: {
  32979. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32980. extra: 3020/2886,
  32981. bottom: 30/3050
  32982. }
  32983. },
  32984. dick: {
  32985. height: math.unit(0.98, "feet"),
  32986. name: "Dick",
  32987. image: {
  32988. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32989. }
  32990. },
  32991. anatomy: {
  32992. height: math.unit(2.86, "feet"),
  32993. name: "Anatomy",
  32994. image: {
  32995. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32996. }
  32997. },
  32998. },
  32999. [
  33000. {
  33001. name: "Really Small",
  33002. height: math.unit(2, "inches")
  33003. },
  33004. {
  33005. name: "Micro",
  33006. height: math.unit(5.583, "inches")
  33007. },
  33008. {
  33009. name: "Normal",
  33010. height: math.unit(5 + 7/12, "feet"),
  33011. default: true
  33012. },
  33013. {
  33014. name: "Macro",
  33015. height: math.unit(67, "feet")
  33016. },
  33017. {
  33018. name: "Megamacro",
  33019. height: math.unit(134, "feet")
  33020. },
  33021. ]
  33022. ))
  33023. characterMakers.push(() => makeCharacter(
  33024. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33025. {
  33026. front: {
  33027. height: math.unit(9, "feet"),
  33028. weight: math.unit(120, "lb"),
  33029. name: "Front",
  33030. image: {
  33031. source: "./media/characters/sally/front.svg",
  33032. extra: 1506/1349,
  33033. bottom: 66/1572
  33034. }
  33035. },
  33036. },
  33037. [
  33038. {
  33039. name: "Normal",
  33040. height: math.unit(9, "feet"),
  33041. default: true
  33042. },
  33043. ]
  33044. ))
  33045. characterMakers.push(() => makeCharacter(
  33046. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33047. {
  33048. front: {
  33049. height: math.unit(8, "feet"),
  33050. weight: math.unit(900, "lb"),
  33051. name: "Front",
  33052. image: {
  33053. source: "./media/characters/owen/front.svg",
  33054. extra: 1761/1657,
  33055. bottom: 74/1835
  33056. }
  33057. },
  33058. side: {
  33059. height: math.unit(8, "feet"),
  33060. weight: math.unit(900, "lb"),
  33061. name: "Side",
  33062. image: {
  33063. source: "./media/characters/owen/side.svg",
  33064. extra: 1797/1734,
  33065. bottom: 30/1827
  33066. }
  33067. },
  33068. back: {
  33069. height: math.unit(8, "feet"),
  33070. weight: math.unit(900, "lb"),
  33071. name: "Back",
  33072. image: {
  33073. source: "./media/characters/owen/back.svg",
  33074. extra: 1796/1706,
  33075. bottom: 59/1855
  33076. }
  33077. },
  33078. maw: {
  33079. height: math.unit(1.76, "feet"),
  33080. name: "Maw",
  33081. image: {
  33082. source: "./media/characters/owen/maw.svg"
  33083. }
  33084. },
  33085. },
  33086. [
  33087. {
  33088. name: "Normal",
  33089. height: math.unit(8, "feet"),
  33090. default: true
  33091. },
  33092. ]
  33093. ))
  33094. characterMakers.push(() => makeCharacter(
  33095. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33096. {
  33097. front: {
  33098. height: math.unit(4, "feet"),
  33099. weight: math.unit(400, "lb"),
  33100. name: "Front",
  33101. image: {
  33102. source: "./media/characters/ryth/front.svg",
  33103. extra: 1920/1748,
  33104. bottom: 42/1962
  33105. }
  33106. },
  33107. back: {
  33108. height: math.unit(4, "feet"),
  33109. weight: math.unit(400, "lb"),
  33110. name: "Back",
  33111. image: {
  33112. source: "./media/characters/ryth/back.svg",
  33113. extra: 1897/1690,
  33114. bottom: 89/1986
  33115. }
  33116. },
  33117. mouth: {
  33118. height: math.unit(1.39, "feet"),
  33119. name: "Mouth",
  33120. image: {
  33121. source: "./media/characters/ryth/mouth.svg"
  33122. }
  33123. },
  33124. tailmaw: {
  33125. height: math.unit(1.23, "feet"),
  33126. name: "Tailmaw",
  33127. image: {
  33128. source: "./media/characters/ryth/tailmaw.svg"
  33129. }
  33130. },
  33131. goia: {
  33132. height: math.unit(4, "meters"),
  33133. weight: math.unit(10800, "lb"),
  33134. name: "Goia",
  33135. image: {
  33136. source: "./media/characters/ryth/goia.svg",
  33137. extra: 745/640,
  33138. bottom: 107/852
  33139. }
  33140. },
  33141. goiaFront: {
  33142. height: math.unit(4, "meters"),
  33143. weight: math.unit(10800, "lb"),
  33144. name: "Goia (Front)",
  33145. image: {
  33146. source: "./media/characters/ryth/goia-front.svg",
  33147. extra: 750/586,
  33148. bottom: 114/864
  33149. }
  33150. },
  33151. goiaMaw: {
  33152. height: math.unit(5.55, "feet"),
  33153. name: "Goia Maw",
  33154. image: {
  33155. source: "./media/characters/ryth/goia-maw.svg"
  33156. }
  33157. },
  33158. goiaForepaw: {
  33159. height: math.unit(3.5, "feet"),
  33160. name: "Goia Forepaw",
  33161. image: {
  33162. source: "./media/characters/ryth/goia-forepaw.svg"
  33163. }
  33164. },
  33165. goiaHindpaw: {
  33166. height: math.unit(5.55, "feet"),
  33167. name: "Goia Hindpaw",
  33168. image: {
  33169. source: "./media/characters/ryth/goia-hindpaw.svg"
  33170. }
  33171. },
  33172. },
  33173. [
  33174. {
  33175. name: "Normal",
  33176. height: math.unit(4, "feet"),
  33177. default: true
  33178. },
  33179. ]
  33180. ))
  33181. characterMakers.push(() => makeCharacter(
  33182. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33183. {
  33184. front: {
  33185. height: math.unit(7, "feet"),
  33186. weight: math.unit(180, "lb"),
  33187. name: "Front",
  33188. image: {
  33189. source: "./media/characters/necrolance/front.svg",
  33190. extra: 1062/947,
  33191. bottom: 41/1103
  33192. }
  33193. },
  33194. back: {
  33195. height: math.unit(7, "feet"),
  33196. weight: math.unit(180, "lb"),
  33197. name: "Back",
  33198. image: {
  33199. source: "./media/characters/necrolance/back.svg",
  33200. extra: 1045/984,
  33201. bottom: 14/1059
  33202. }
  33203. },
  33204. wing: {
  33205. height: math.unit(2.67, "feet"),
  33206. name: "Wing",
  33207. image: {
  33208. source: "./media/characters/necrolance/wing.svg"
  33209. }
  33210. },
  33211. },
  33212. [
  33213. {
  33214. name: "Normal",
  33215. height: math.unit(7, "feet"),
  33216. default: true
  33217. },
  33218. ]
  33219. ))
  33220. characterMakers.push(() => makeCharacter(
  33221. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33222. {
  33223. front: {
  33224. height: math.unit(76, "meters"),
  33225. weight: math.unit(30000, "tons"),
  33226. name: "Front",
  33227. image: {
  33228. source: "./media/characters/tyler/front.svg",
  33229. extra: 1640/1640,
  33230. bottom: 114/1754
  33231. }
  33232. },
  33233. },
  33234. [
  33235. {
  33236. name: "Macro",
  33237. height: math.unit(76, "meters"),
  33238. default: true
  33239. },
  33240. ]
  33241. ))
  33242. characterMakers.push(() => makeCharacter(
  33243. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33244. {
  33245. front: {
  33246. height: math.unit(4 + 11/12, "feet"),
  33247. weight: math.unit(132, "lb"),
  33248. name: "Front",
  33249. image: {
  33250. source: "./media/characters/icey/front.svg",
  33251. extra: 2750/2550,
  33252. bottom: 33/2783
  33253. }
  33254. },
  33255. back: {
  33256. height: math.unit(4 + 11/12, "feet"),
  33257. weight: math.unit(132, "lb"),
  33258. name: "Back",
  33259. image: {
  33260. source: "./media/characters/icey/back.svg",
  33261. extra: 2624/2481,
  33262. bottom: 35/2659
  33263. }
  33264. },
  33265. },
  33266. [
  33267. {
  33268. name: "Normal",
  33269. height: math.unit(4 + 11/12, "feet"),
  33270. default: true
  33271. },
  33272. ]
  33273. ))
  33274. characterMakers.push(() => makeCharacter(
  33275. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33276. {
  33277. front: {
  33278. height: math.unit(100, "feet"),
  33279. weight: math.unit(0, "lb"),
  33280. name: "Front",
  33281. image: {
  33282. source: "./media/characters/smile/front.svg",
  33283. extra: 2983/2912,
  33284. bottom: 162/3145
  33285. }
  33286. },
  33287. back: {
  33288. height: math.unit(100, "feet"),
  33289. weight: math.unit(0, "lb"),
  33290. name: "Back",
  33291. image: {
  33292. source: "./media/characters/smile/back.svg",
  33293. extra: 3143/3031,
  33294. bottom: 91/3234
  33295. }
  33296. },
  33297. head: {
  33298. height: math.unit(26.3, "feet"),
  33299. weight: math.unit(0, "lb"),
  33300. name: "Head",
  33301. image: {
  33302. source: "./media/characters/smile/head.svg"
  33303. }
  33304. },
  33305. collar: {
  33306. height: math.unit(5.3, "feet"),
  33307. weight: math.unit(0, "lb"),
  33308. name: "Collar",
  33309. image: {
  33310. source: "./media/characters/smile/collar.svg"
  33311. }
  33312. },
  33313. },
  33314. [
  33315. {
  33316. name: "Macro",
  33317. height: math.unit(100, "feet"),
  33318. default: true
  33319. },
  33320. ]
  33321. ))
  33322. characterMakers.push(() => makeCharacter(
  33323. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33324. {
  33325. dragon: {
  33326. height: math.unit(26, "feet"),
  33327. weight: math.unit(36, "tons"),
  33328. name: "Dragon",
  33329. image: {
  33330. source: "./media/characters/arimphae/dragon.svg",
  33331. extra: 1574/983,
  33332. bottom: 357/1931
  33333. }
  33334. },
  33335. drake: {
  33336. height: math.unit(9, "feet"),
  33337. weight: math.unit(1.5, "tons"),
  33338. name: "Drake",
  33339. image: {
  33340. source: "./media/characters/arimphae/drake.svg",
  33341. extra: 1120/925,
  33342. bottom: 435/1555
  33343. }
  33344. },
  33345. },
  33346. [
  33347. {
  33348. name: "Small",
  33349. height: math.unit(26*5/9, "feet")
  33350. },
  33351. {
  33352. name: "Normal",
  33353. height: math.unit(26, "feet"),
  33354. default: true
  33355. },
  33356. ]
  33357. ))
  33358. characterMakers.push(() => makeCharacter(
  33359. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33360. {
  33361. front: {
  33362. height: math.unit(8 + 9/12, "feet"),
  33363. name: "Front",
  33364. image: {
  33365. source: "./media/characters/xander/front.svg",
  33366. extra: 1237/974,
  33367. bottom: 94/1331
  33368. }
  33369. },
  33370. },
  33371. [
  33372. {
  33373. name: "Normal",
  33374. height: math.unit(8 + 9/12, "feet"),
  33375. default: true
  33376. },
  33377. {
  33378. name: "Gaze Grabber",
  33379. height: math.unit(13 + 8/12, "feet")
  33380. },
  33381. {
  33382. name: "Jaw Dropper",
  33383. height: math.unit(27, "feet")
  33384. },
  33385. {
  33386. name: "Show Stopper",
  33387. height: math.unit(136, "feet")
  33388. },
  33389. {
  33390. name: "Superstar",
  33391. height: math.unit(1.9e6, "miles")
  33392. },
  33393. ]
  33394. ))
  33395. characterMakers.push(() => makeCharacter(
  33396. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33397. {
  33398. side: {
  33399. height: math.unit(2100, "feet"),
  33400. name: "Side",
  33401. image: {
  33402. source: "./media/characters/osiris/side.svg",
  33403. extra: 1105/939,
  33404. bottom: 167/1272
  33405. }
  33406. },
  33407. },
  33408. [
  33409. {
  33410. name: "Macro",
  33411. height: math.unit(2100, "feet"),
  33412. default: true
  33413. },
  33414. ]
  33415. ))
  33416. characterMakers.push(() => makeCharacter(
  33417. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33418. {
  33419. front: {
  33420. height: math.unit(6 + 8/12, "feet"),
  33421. weight: math.unit(225, "lb"),
  33422. name: "Front",
  33423. image: {
  33424. source: "./media/characters/rhys-londe/front.svg",
  33425. extra: 2258/2141,
  33426. bottom: 188/2446
  33427. }
  33428. },
  33429. back: {
  33430. height: math.unit(6 + 8/12, "feet"),
  33431. weight: math.unit(225, "lb"),
  33432. name: "Back",
  33433. image: {
  33434. source: "./media/characters/rhys-londe/back.svg",
  33435. extra: 2237/2137,
  33436. bottom: 63/2300
  33437. }
  33438. },
  33439. frontNsfw: {
  33440. height: math.unit(6 + 8/12, "feet"),
  33441. weight: math.unit(225, "lb"),
  33442. name: "Front (NSFW)",
  33443. image: {
  33444. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33445. extra: 2258/2141,
  33446. bottom: 188/2446
  33447. }
  33448. },
  33449. backNsfw: {
  33450. height: math.unit(6 + 8/12, "feet"),
  33451. weight: math.unit(225, "lb"),
  33452. name: "Back (NSFW)",
  33453. image: {
  33454. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33455. extra: 2237/2137,
  33456. bottom: 63/2300
  33457. }
  33458. },
  33459. dick: {
  33460. height: math.unit(30, "inches"),
  33461. name: "Dick",
  33462. image: {
  33463. source: "./media/characters/rhys-londe/dick.svg"
  33464. }
  33465. },
  33466. maw: {
  33467. height: math.unit(1.6, "feet"),
  33468. name: "Maw",
  33469. image: {
  33470. source: "./media/characters/rhys-londe/maw.svg"
  33471. }
  33472. },
  33473. },
  33474. [
  33475. {
  33476. name: "Normal",
  33477. height: math.unit(6 + 8/12, "feet"),
  33478. default: true
  33479. },
  33480. ]
  33481. ))
  33482. characterMakers.push(() => makeCharacter(
  33483. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33484. {
  33485. front: {
  33486. height: math.unit(3 + 10/12, "feet"),
  33487. weight: math.unit(90, "lb"),
  33488. name: "Front",
  33489. image: {
  33490. source: "./media/characters/taivas-ensim/front.svg",
  33491. extra: 1327/1216,
  33492. bottom: 96/1423
  33493. }
  33494. },
  33495. back: {
  33496. height: math.unit(3 + 10/12, "feet"),
  33497. weight: math.unit(90, "lb"),
  33498. name: "Back",
  33499. image: {
  33500. source: "./media/characters/taivas-ensim/back.svg",
  33501. extra: 1355/1247,
  33502. bottom: 11/1366
  33503. }
  33504. },
  33505. frontNsfw: {
  33506. height: math.unit(3 + 10/12, "feet"),
  33507. weight: math.unit(90, "lb"),
  33508. name: "Front (NSFW)",
  33509. image: {
  33510. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33511. extra: 1327/1216,
  33512. bottom: 96/1423
  33513. }
  33514. },
  33515. backNsfw: {
  33516. height: math.unit(3 + 10/12, "feet"),
  33517. weight: math.unit(90, "lb"),
  33518. name: "Back (NSFW)",
  33519. image: {
  33520. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33521. extra: 1355/1247,
  33522. bottom: 11/1366
  33523. }
  33524. },
  33525. },
  33526. [
  33527. {
  33528. name: "Normal",
  33529. height: math.unit(3 + 10/12, "feet"),
  33530. default: true
  33531. },
  33532. ]
  33533. ))
  33534. characterMakers.push(() => makeCharacter(
  33535. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33536. {
  33537. front: {
  33538. height: math.unit(9 + 6/12, "feet"),
  33539. weight: math.unit(940, "lb"),
  33540. name: "Front",
  33541. image: {
  33542. source: "./media/characters/byliss/front.svg",
  33543. extra: 1327/1290,
  33544. bottom: 82/1409
  33545. }
  33546. },
  33547. back: {
  33548. height: math.unit(9 + 6/12, "feet"),
  33549. weight: math.unit(940, "lb"),
  33550. name: "Back",
  33551. image: {
  33552. source: "./media/characters/byliss/back.svg",
  33553. extra: 1376/1349,
  33554. bottom: 9/1385
  33555. }
  33556. },
  33557. frontNsfw: {
  33558. height: math.unit(9 + 6/12, "feet"),
  33559. weight: math.unit(940, "lb"),
  33560. name: "Front (NSFW)",
  33561. image: {
  33562. source: "./media/characters/byliss/front-nsfw.svg",
  33563. extra: 1327/1290,
  33564. bottom: 82/1409
  33565. }
  33566. },
  33567. backNsfw: {
  33568. height: math.unit(9 + 6/12, "feet"),
  33569. weight: math.unit(940, "lb"),
  33570. name: "Back (NSFW)",
  33571. image: {
  33572. source: "./media/characters/byliss/back-nsfw.svg",
  33573. extra: 1376/1349,
  33574. bottom: 9/1385
  33575. }
  33576. },
  33577. },
  33578. [
  33579. {
  33580. name: "Normal",
  33581. height: math.unit(9 + 6/12, "feet"),
  33582. default: true
  33583. },
  33584. ]
  33585. ))
  33586. characterMakers.push(() => makeCharacter(
  33587. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33588. {
  33589. front: {
  33590. height: math.unit(5 + 2/12, "feet"),
  33591. weight: math.unit(200, "lb"),
  33592. name: "Front",
  33593. image: {
  33594. source: "./media/characters/noraly/front.svg",
  33595. extra: 4985/4773,
  33596. bottom: 150/5135
  33597. }
  33598. },
  33599. full: {
  33600. height: math.unit(5 + 2/12, "feet"),
  33601. weight: math.unit(164, "lb"),
  33602. name: "Full",
  33603. image: {
  33604. source: "./media/characters/noraly/full.svg",
  33605. extra: 1114/1059,
  33606. bottom: 35/1149
  33607. }
  33608. },
  33609. fuller: {
  33610. height: math.unit(5 + 2/12, "feet"),
  33611. weight: math.unit(230, "lb"),
  33612. name: "Fuller",
  33613. image: {
  33614. source: "./media/characters/noraly/fuller.svg",
  33615. extra: 1114/1059,
  33616. bottom: 35/1149
  33617. }
  33618. },
  33619. fullest: {
  33620. height: math.unit(5 + 2/12, "feet"),
  33621. weight: math.unit(300, "lb"),
  33622. name: "Fullest",
  33623. image: {
  33624. source: "./media/characters/noraly/fullest.svg",
  33625. extra: 1114/1059,
  33626. bottom: 35/1149
  33627. }
  33628. },
  33629. },
  33630. [
  33631. {
  33632. name: "Normal",
  33633. height: math.unit(5 + 2/12, "feet"),
  33634. default: true
  33635. },
  33636. ]
  33637. ))
  33638. characterMakers.push(() => makeCharacter(
  33639. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33640. {
  33641. front: {
  33642. height: math.unit(5 + 2/12, "feet"),
  33643. weight: math.unit(210, "lb"),
  33644. name: "Front",
  33645. image: {
  33646. source: "./media/characters/pera/front.svg",
  33647. extra: 1560/1531,
  33648. bottom: 165/1725
  33649. }
  33650. },
  33651. back: {
  33652. height: math.unit(5 + 2/12, "feet"),
  33653. weight: math.unit(210, "lb"),
  33654. name: "Back",
  33655. image: {
  33656. source: "./media/characters/pera/back.svg",
  33657. extra: 1523/1493,
  33658. bottom: 152/1675
  33659. }
  33660. },
  33661. dick: {
  33662. height: math.unit(2.4, "feet"),
  33663. name: "Dick",
  33664. image: {
  33665. source: "./media/characters/pera/dick.svg"
  33666. }
  33667. },
  33668. },
  33669. [
  33670. {
  33671. name: "Normal",
  33672. height: math.unit(5 + 2/12, "feet"),
  33673. default: true
  33674. },
  33675. ]
  33676. ))
  33677. characterMakers.push(() => makeCharacter(
  33678. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33679. {
  33680. front: {
  33681. height: math.unit(12, "feet"),
  33682. weight: math.unit(3200, "lb"),
  33683. name: "Front",
  33684. image: {
  33685. source: "./media/characters/julian/front.svg",
  33686. extra: 2962/2701,
  33687. bottom: 184/3146
  33688. }
  33689. },
  33690. maw: {
  33691. height: math.unit(5.35, "feet"),
  33692. name: "Maw",
  33693. image: {
  33694. source: "./media/characters/julian/maw.svg"
  33695. }
  33696. },
  33697. paw: {
  33698. height: math.unit(3.07, "feet"),
  33699. name: "Paw",
  33700. image: {
  33701. source: "./media/characters/julian/paw.svg"
  33702. }
  33703. },
  33704. },
  33705. [
  33706. {
  33707. name: "Default",
  33708. height: math.unit(12, "feet"),
  33709. default: true
  33710. },
  33711. {
  33712. name: "Big",
  33713. height: math.unit(50, "feet")
  33714. },
  33715. {
  33716. name: "Really Big",
  33717. height: math.unit(1, "mile")
  33718. },
  33719. {
  33720. name: "Extremely Big",
  33721. height: math.unit(100, "miles")
  33722. },
  33723. {
  33724. name: "Planet Hugger",
  33725. height: math.unit(200, "megameters")
  33726. },
  33727. {
  33728. name: "Unreasonably Big",
  33729. height: math.unit(1e300, "meters")
  33730. },
  33731. ]
  33732. ))
  33733. characterMakers.push(() => makeCharacter(
  33734. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33735. {
  33736. solgooleo: {
  33737. height: math.unit(4, "meters"),
  33738. weight: math.unit(6000*1.5, "kg"),
  33739. volume: math.unit(6000, "liters"),
  33740. name: "Solgooleo",
  33741. image: {
  33742. source: "./media/characters/pi/solgooleo.svg",
  33743. extra: 388/331,
  33744. bottom: 29/417
  33745. }
  33746. },
  33747. },
  33748. [
  33749. {
  33750. name: "Normal",
  33751. height: math.unit(4, "meters"),
  33752. default: true
  33753. },
  33754. ]
  33755. ))
  33756. characterMakers.push(() => makeCharacter(
  33757. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33758. {
  33759. front: {
  33760. height: math.unit(8, "feet"),
  33761. weight: math.unit(4, "tons"),
  33762. name: "Front",
  33763. image: {
  33764. source: "./media/characters/shaun/front.svg",
  33765. extra: 503/495,
  33766. bottom: 20/523
  33767. }
  33768. },
  33769. back: {
  33770. height: math.unit(8, "feet"),
  33771. weight: math.unit(4, "tons"),
  33772. name: "Back",
  33773. image: {
  33774. source: "./media/characters/shaun/back.svg",
  33775. extra: 487/480,
  33776. bottom: 20/507
  33777. }
  33778. },
  33779. },
  33780. [
  33781. {
  33782. name: "Lorg",
  33783. height: math.unit(8, "feet"),
  33784. default: true
  33785. },
  33786. ]
  33787. ))
  33788. characterMakers.push(() => makeCharacter(
  33789. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33790. {
  33791. frontAnthro: {
  33792. height: math.unit(7, "feet"),
  33793. name: "Front",
  33794. image: {
  33795. source: "./media/characters/sini/front-anthro.svg",
  33796. extra: 726/678,
  33797. bottom: 35/761
  33798. },
  33799. form: "anthro",
  33800. default: true
  33801. },
  33802. backAnthro: {
  33803. height: math.unit(7, "feet"),
  33804. name: "Back",
  33805. image: {
  33806. source: "./media/characters/sini/back-anthro.svg",
  33807. extra: 743/701,
  33808. bottom: 12/755
  33809. },
  33810. form: "anthro",
  33811. },
  33812. frontAnthroNsfw: {
  33813. height: math.unit(7, "feet"),
  33814. name: "Front (NSFW)",
  33815. image: {
  33816. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33817. extra: 726/678,
  33818. bottom: 35/761
  33819. },
  33820. form: "anthro"
  33821. },
  33822. backAnthroNsfw: {
  33823. height: math.unit(7, "feet"),
  33824. name: "Back (NSFW)",
  33825. image: {
  33826. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33827. extra: 743/701,
  33828. bottom: 12/755
  33829. },
  33830. form: "anthro",
  33831. },
  33832. mawAnthro: {
  33833. height: math.unit(2.14, "feet"),
  33834. name: "Maw",
  33835. image: {
  33836. source: "./media/characters/sini/maw-anthro.svg"
  33837. },
  33838. form: "anthro"
  33839. },
  33840. dick: {
  33841. height: math.unit(1.45, "feet"),
  33842. name: "Dick",
  33843. image: {
  33844. source: "./media/characters/sini/dick-anthro.svg"
  33845. },
  33846. form: "anthro"
  33847. },
  33848. feral: {
  33849. height: math.unit(16, "feet"),
  33850. name: "Feral",
  33851. image: {
  33852. source: "./media/characters/sini/feral.svg",
  33853. extra: 814/605,
  33854. bottom: 11/825
  33855. },
  33856. form: "feral",
  33857. default: true
  33858. },
  33859. feralNsfw: {
  33860. height: math.unit(16, "feet"),
  33861. name: "Feral (NSFW)",
  33862. image: {
  33863. source: "./media/characters/sini/feral-nsfw.svg",
  33864. extra: 814/605,
  33865. bottom: 11/825
  33866. },
  33867. form: "feral"
  33868. },
  33869. mawFeral: {
  33870. height: math.unit(5.66, "feet"),
  33871. name: "Maw",
  33872. image: {
  33873. source: "./media/characters/sini/maw-feral.svg"
  33874. },
  33875. form: "feral",
  33876. },
  33877. pawFeral: {
  33878. height: math.unit(5.17, "feet"),
  33879. name: "Paw",
  33880. image: {
  33881. source: "./media/characters/sini/paw-feral.svg"
  33882. },
  33883. form: "feral",
  33884. },
  33885. rumpFeral: {
  33886. height: math.unit(13.11, "feet"),
  33887. name: "Rump",
  33888. image: {
  33889. source: "./media/characters/sini/rump-feral.svg"
  33890. },
  33891. form: "feral",
  33892. },
  33893. dickFeral: {
  33894. height: math.unit(1, "feet"),
  33895. name: "Dick",
  33896. image: {
  33897. source: "./media/characters/sini/dick-feral.svg"
  33898. },
  33899. form: "feral",
  33900. },
  33901. eyeFeral: {
  33902. height: math.unit(1.23, "feet"),
  33903. name: "Eye",
  33904. image: {
  33905. source: "./media/characters/sini/eye-feral.svg"
  33906. },
  33907. form: "feral",
  33908. },
  33909. },
  33910. [
  33911. {
  33912. name: "Normal",
  33913. height: math.unit(7, "feet"),
  33914. default: true,
  33915. form: "anthro"
  33916. },
  33917. {
  33918. name: "Normal",
  33919. height: math.unit(16, "feet"),
  33920. default: true,
  33921. form: "feral"
  33922. },
  33923. ],
  33924. {
  33925. "anthro": {
  33926. name: "Anthro",
  33927. default: true
  33928. },
  33929. "feral": {
  33930. name: "Feral",
  33931. }
  33932. }
  33933. ))
  33934. characterMakers.push(() => makeCharacter(
  33935. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33936. {
  33937. side: {
  33938. height: math.unit(47.2, "meters"),
  33939. weight: math.unit(10000, "tons"),
  33940. name: "Side",
  33941. image: {
  33942. source: "./media/characters/raylldo/side.svg",
  33943. extra: 2363/642,
  33944. bottom: 221/2584
  33945. }
  33946. },
  33947. top: {
  33948. height: math.unit(240, "meters"),
  33949. weight: math.unit(10000, "tons"),
  33950. name: "Top",
  33951. image: {
  33952. source: "./media/characters/raylldo/top.svg"
  33953. }
  33954. },
  33955. bottom: {
  33956. height: math.unit(240, "meters"),
  33957. weight: math.unit(10000, "tons"),
  33958. name: "Bottom",
  33959. image: {
  33960. source: "./media/characters/raylldo/bottom.svg"
  33961. }
  33962. },
  33963. head: {
  33964. height: math.unit(38.6, "meters"),
  33965. name: "Head",
  33966. image: {
  33967. source: "./media/characters/raylldo/head.svg",
  33968. extra: 1335/1112,
  33969. bottom: 0/1335
  33970. }
  33971. },
  33972. maw: {
  33973. height: math.unit(16.37, "meters"),
  33974. name: "Maw",
  33975. image: {
  33976. source: "./media/characters/raylldo/maw.svg",
  33977. extra: 883/660,
  33978. bottom: 0/883
  33979. },
  33980. extraAttributes: {
  33981. preyCapacity: {
  33982. name: "Capacity",
  33983. power: 3,
  33984. type: "volume",
  33985. base: math.unit(1000, "people")
  33986. },
  33987. tongueSize: {
  33988. name: "Tongue Size",
  33989. power: 2,
  33990. type: "area",
  33991. base: math.unit(21, "m^2")
  33992. }
  33993. }
  33994. },
  33995. forepaw: {
  33996. height: math.unit(18, "meters"),
  33997. name: "Forepaw",
  33998. image: {
  33999. source: "./media/characters/raylldo/forepaw.svg"
  34000. }
  34001. },
  34002. hindpaw: {
  34003. height: math.unit(23, "meters"),
  34004. name: "Hindpaw",
  34005. image: {
  34006. source: "./media/characters/raylldo/hindpaw.svg"
  34007. }
  34008. },
  34009. genitals: {
  34010. height: math.unit(42, "meters"),
  34011. name: "Genitals",
  34012. image: {
  34013. source: "./media/characters/raylldo/genitals.svg"
  34014. }
  34015. },
  34016. },
  34017. [
  34018. {
  34019. name: "Normal",
  34020. height: math.unit(47.2, "meters"),
  34021. default: true
  34022. },
  34023. ]
  34024. ))
  34025. characterMakers.push(() => makeCharacter(
  34026. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34027. {
  34028. anthroFront: {
  34029. height: math.unit(9, "feet"),
  34030. weight: math.unit(600, "lb"),
  34031. name: "Anthro (Front)",
  34032. image: {
  34033. source: "./media/characters/glint/anthro-front.svg",
  34034. extra: 1097/1018,
  34035. bottom: 28/1125
  34036. }
  34037. },
  34038. anthroBack: {
  34039. height: math.unit(9, "feet"),
  34040. weight: math.unit(600, "lb"),
  34041. name: "Anthro (Back)",
  34042. image: {
  34043. source: "./media/characters/glint/anthro-back.svg",
  34044. extra: 1154/997,
  34045. bottom: 36/1190
  34046. }
  34047. },
  34048. feral: {
  34049. height: math.unit(11, "feet"),
  34050. weight: math.unit(50000, "lb"),
  34051. name: "Feral",
  34052. image: {
  34053. source: "./media/characters/glint/feral.svg",
  34054. extra: 3035/1585,
  34055. bottom: 1169/4204
  34056. }
  34057. },
  34058. dickAnthro: {
  34059. height: math.unit(0.7, "meters"),
  34060. name: "Dick (Anthro)",
  34061. image: {
  34062. source: "./media/characters/glint/dick-anthro.svg"
  34063. }
  34064. },
  34065. dickFeral: {
  34066. height: math.unit(2.65, "meters"),
  34067. name: "Dick (Feral)",
  34068. image: {
  34069. source: "./media/characters/glint/dick-feral.svg"
  34070. }
  34071. },
  34072. slitHidden: {
  34073. height: math.unit(5.85, "meters"),
  34074. name: "Slit (Hidden)",
  34075. image: {
  34076. source: "./media/characters/glint/slit-hidden.svg"
  34077. }
  34078. },
  34079. slitErect: {
  34080. height: math.unit(5.85, "meters"),
  34081. name: "Slit (Erect)",
  34082. image: {
  34083. source: "./media/characters/glint/slit-erect.svg"
  34084. }
  34085. },
  34086. mawAnthro: {
  34087. height: math.unit(0.63, "meters"),
  34088. name: "Maw (Anthro)",
  34089. image: {
  34090. source: "./media/characters/glint/maw.svg"
  34091. }
  34092. },
  34093. mawFeral: {
  34094. height: math.unit(2.89, "meters"),
  34095. name: "Maw (Feral)",
  34096. image: {
  34097. source: "./media/characters/glint/maw.svg"
  34098. }
  34099. },
  34100. },
  34101. [
  34102. {
  34103. name: "Normal",
  34104. height: math.unit(9, "feet"),
  34105. default: true
  34106. },
  34107. ]
  34108. ))
  34109. characterMakers.push(() => makeCharacter(
  34110. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34111. {
  34112. side: {
  34113. height: math.unit(15, "feet"),
  34114. weight: math.unit(5000, "kg"),
  34115. name: "Side",
  34116. image: {
  34117. source: "./media/characters/kairne/side.svg",
  34118. extra: 979/811,
  34119. bottom: 13/992
  34120. }
  34121. },
  34122. front: {
  34123. height: math.unit(15, "feet"),
  34124. weight: math.unit(5000, "kg"),
  34125. name: "Front",
  34126. image: {
  34127. source: "./media/characters/kairne/front.svg",
  34128. extra: 908/814,
  34129. bottom: 26/934
  34130. }
  34131. },
  34132. sideNsfw: {
  34133. height: math.unit(15, "feet"),
  34134. weight: math.unit(5000, "kg"),
  34135. name: "Side (NSFW)",
  34136. image: {
  34137. source: "./media/characters/kairne/side-nsfw.svg",
  34138. extra: 979/811,
  34139. bottom: 13/992
  34140. }
  34141. },
  34142. frontNsfw: {
  34143. height: math.unit(15, "feet"),
  34144. weight: math.unit(5000, "kg"),
  34145. name: "Front (NSFW)",
  34146. image: {
  34147. source: "./media/characters/kairne/front-nsfw.svg",
  34148. extra: 908/814,
  34149. bottom: 26/934
  34150. }
  34151. },
  34152. dickCaged: {
  34153. height: math.unit(0.65, "meters"),
  34154. name: "Dick-caged",
  34155. image: {
  34156. source: "./media/characters/kairne/dick-caged.svg"
  34157. }
  34158. },
  34159. dick: {
  34160. height: math.unit(0.79, "meters"),
  34161. name: "Dick",
  34162. image: {
  34163. source: "./media/characters/kairne/dick.svg"
  34164. }
  34165. },
  34166. genitals: {
  34167. height: math.unit(1.29, "meters"),
  34168. name: "Genitals",
  34169. image: {
  34170. source: "./media/characters/kairne/genitals.svg"
  34171. }
  34172. },
  34173. maw: {
  34174. height: math.unit(1.73, "meters"),
  34175. name: "Maw",
  34176. image: {
  34177. source: "./media/characters/kairne/maw.svg"
  34178. }
  34179. },
  34180. },
  34181. [
  34182. {
  34183. name: "Normal",
  34184. height: math.unit(15, "feet"),
  34185. default: true
  34186. },
  34187. ]
  34188. ))
  34189. characterMakers.push(() => makeCharacter(
  34190. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34191. {
  34192. front: {
  34193. height: math.unit(5 + 8/12, "feet"),
  34194. weight: math.unit(139, "lb"),
  34195. name: "Front",
  34196. image: {
  34197. source: "./media/characters/biscuit-jackal/front.svg",
  34198. extra: 2106/1961,
  34199. bottom: 58/2164
  34200. }
  34201. },
  34202. back: {
  34203. height: math.unit(5 + 8/12, "feet"),
  34204. weight: math.unit(139, "lb"),
  34205. name: "Back",
  34206. image: {
  34207. source: "./media/characters/biscuit-jackal/back.svg",
  34208. extra: 2132/1976,
  34209. bottom: 57/2189
  34210. }
  34211. },
  34212. werejackal: {
  34213. height: math.unit(6 + 3/12, "feet"),
  34214. weight: math.unit(188, "lb"),
  34215. name: "Werejackal",
  34216. image: {
  34217. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34218. extra: 2373/2178,
  34219. bottom: 53/2426
  34220. }
  34221. },
  34222. },
  34223. [
  34224. {
  34225. name: "Normal",
  34226. height: math.unit(5 + 8/12, "feet"),
  34227. default: true
  34228. },
  34229. ]
  34230. ))
  34231. characterMakers.push(() => makeCharacter(
  34232. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34233. {
  34234. front: {
  34235. height: math.unit(140, "cm"),
  34236. weight: math.unit(45, "kg"),
  34237. name: "Front",
  34238. image: {
  34239. source: "./media/characters/tayra-white/front.svg",
  34240. extra: 2229/2192,
  34241. bottom: 75/2304
  34242. }
  34243. },
  34244. },
  34245. [
  34246. {
  34247. name: "Normal",
  34248. height: math.unit(140, "cm"),
  34249. default: true
  34250. },
  34251. ]
  34252. ))
  34253. characterMakers.push(() => makeCharacter(
  34254. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34255. {
  34256. front: {
  34257. height: math.unit(4 + 5/12, "feet"),
  34258. name: "Front",
  34259. image: {
  34260. source: "./media/characters/scoop/front.svg",
  34261. extra: 1257/1136,
  34262. bottom: 69/1326
  34263. }
  34264. },
  34265. back: {
  34266. height: math.unit(4 + 5/12, "feet"),
  34267. name: "Back",
  34268. image: {
  34269. source: "./media/characters/scoop/back.svg",
  34270. extra: 1321/1152,
  34271. bottom: 32/1353
  34272. }
  34273. },
  34274. maw: {
  34275. height: math.unit(0.68, "feet"),
  34276. name: "Maw",
  34277. image: {
  34278. source: "./media/characters/scoop/maw.svg"
  34279. }
  34280. },
  34281. },
  34282. [
  34283. {
  34284. name: "Really Small",
  34285. height: math.unit(1, "mm")
  34286. },
  34287. {
  34288. name: "Micro",
  34289. height: math.unit(1, "inch")
  34290. },
  34291. {
  34292. name: "Normal",
  34293. height: math.unit(4 + 5/12, "feet"),
  34294. default: true
  34295. },
  34296. {
  34297. name: "Macro",
  34298. height: math.unit(200, "feet")
  34299. },
  34300. {
  34301. name: "Megamacro",
  34302. height: math.unit(3240, "feet")
  34303. },
  34304. {
  34305. name: "Teramacro",
  34306. height: math.unit(2500, "miles")
  34307. },
  34308. ]
  34309. ))
  34310. characterMakers.push(() => makeCharacter(
  34311. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34312. {
  34313. front: {
  34314. height: math.unit(15 + 7/12, "feet"),
  34315. weight: math.unit(1150, "tons"),
  34316. name: "Front",
  34317. image: {
  34318. source: "./media/characters/saphinara/front.svg",
  34319. extra: 1837/1643,
  34320. bottom: 84/1921
  34321. },
  34322. form: "normal",
  34323. default: true
  34324. },
  34325. side: {
  34326. height: math.unit(15 + 7/12, "feet"),
  34327. weight: math.unit(1150, "tons"),
  34328. name: "Side",
  34329. image: {
  34330. source: "./media/characters/saphinara/side.svg",
  34331. extra: 605/547,
  34332. bottom: 6/611
  34333. },
  34334. form: "normal"
  34335. },
  34336. back: {
  34337. height: math.unit(15 + 7/12, "feet"),
  34338. weight: math.unit(1150, "tons"),
  34339. name: "Back",
  34340. image: {
  34341. source: "./media/characters/saphinara/back.svg",
  34342. extra: 591/531,
  34343. bottom: 13/604
  34344. },
  34345. form: "normal"
  34346. },
  34347. frontTail: {
  34348. height: math.unit(15 + 7/12, "feet"),
  34349. weight: math.unit(1150, "tons"),
  34350. name: "Front (Full Tail)",
  34351. image: {
  34352. source: "./media/characters/saphinara/front-tail.svg",
  34353. extra: 2256/1630,
  34354. bottom: 261/2517
  34355. },
  34356. form: "normal"
  34357. },
  34358. insides: {
  34359. height: math.unit(11.92, "feet"),
  34360. name: "Insides",
  34361. image: {
  34362. source: "./media/characters/saphinara/insides.svg"
  34363. },
  34364. form: "normal"
  34365. },
  34366. head: {
  34367. height: math.unit(4.17, "feet"),
  34368. name: "Head",
  34369. image: {
  34370. source: "./media/characters/saphinara/head.svg"
  34371. },
  34372. form: "normal"
  34373. },
  34374. tongue: {
  34375. height: math.unit(4.60, "feet"),
  34376. name: "Tongue",
  34377. image: {
  34378. source: "./media/characters/saphinara/tongue.svg"
  34379. },
  34380. form: "normal"
  34381. },
  34382. headEnraged: {
  34383. height: math.unit(5.55, "feet"),
  34384. name: "Head (Enraged)",
  34385. image: {
  34386. source: "./media/characters/saphinara/head-enraged.svg"
  34387. },
  34388. form: "normal"
  34389. },
  34390. wings: {
  34391. height: math.unit(11.95, "feet"),
  34392. name: "Wings",
  34393. image: {
  34394. source: "./media/characters/saphinara/wings.svg"
  34395. },
  34396. form: "normal"
  34397. },
  34398. feathers: {
  34399. height: math.unit(8.92, "feet"),
  34400. name: "Feathers",
  34401. image: {
  34402. source: "./media/characters/saphinara/feathers.svg"
  34403. },
  34404. form: "normal"
  34405. },
  34406. shackles: {
  34407. height: math.unit(2, "feet"),
  34408. name: "Shackles",
  34409. image: {
  34410. source: "./media/characters/saphinara/shackles.svg"
  34411. },
  34412. form: "normal"
  34413. },
  34414. eyes: {
  34415. height: math.unit(1.331, "feet"),
  34416. name: "Eyes",
  34417. image: {
  34418. source: "./media/characters/saphinara/eyes.svg"
  34419. },
  34420. form: "normal"
  34421. },
  34422. eyesEnraged: {
  34423. height: math.unit(1.331, "feet"),
  34424. name: "Eyes (Enraged)",
  34425. image: {
  34426. source: "./media/characters/saphinara/eyes-enraged.svg"
  34427. },
  34428. form: "normal"
  34429. },
  34430. trueFormSide: {
  34431. height: math.unit(200, "feet"),
  34432. weight: math.unit(1e7, "tons"),
  34433. name: "Side",
  34434. image: {
  34435. source: "./media/characters/saphinara/true-form-side.svg",
  34436. extra: 1399/770,
  34437. bottom: 97/1496
  34438. },
  34439. form: "true-form",
  34440. default: true
  34441. },
  34442. trueFormMaw: {
  34443. height: math.unit(71.5, "feet"),
  34444. name: "Maw",
  34445. image: {
  34446. source: "./media/characters/saphinara/true-form-maw.svg",
  34447. extra: 2302/1453,
  34448. bottom: 0/2302
  34449. },
  34450. form: "true-form"
  34451. },
  34452. meowberusSide: {
  34453. height: math.unit(75, "feet"),
  34454. weight: math.unit(180000, "kg"),
  34455. preyCapacity: math.unit(50000, "people"),
  34456. name: "Side",
  34457. image: {
  34458. source: "./media/characters/saphinara/meowberus-side.svg",
  34459. extra: 1400/711,
  34460. bottom: 126/1526
  34461. },
  34462. form: "meowberus",
  34463. extraAttributes: {
  34464. "pawArea": {
  34465. name: "Paw Size",
  34466. power: 2,
  34467. type: "area",
  34468. base: math.unit(35, "m^2")
  34469. }
  34470. }
  34471. },
  34472. },
  34473. [
  34474. {
  34475. name: "Normal",
  34476. height: math.unit(15 + 7/12, "feet"),
  34477. default: true,
  34478. form: "normal"
  34479. },
  34480. {
  34481. name: "Angry",
  34482. height: math.unit(30 + 6/12, "feet"),
  34483. form: "normal"
  34484. },
  34485. {
  34486. name: "Enraged",
  34487. height: math.unit(102 + 1/12, "feet"),
  34488. form: "normal"
  34489. },
  34490. {
  34491. name: "True",
  34492. height: math.unit(200, "feet"),
  34493. default: true,
  34494. form: "true-form"
  34495. },
  34496. {
  34497. name: "Normal",
  34498. height: math.unit(75, "feet"),
  34499. default: true,
  34500. form: "meowberus"
  34501. },
  34502. ],
  34503. {
  34504. "normal": {
  34505. name: "Normal",
  34506. default: true
  34507. },
  34508. "true-form": {
  34509. name: "True Form"
  34510. },
  34511. "meowberus": {
  34512. name: "Meowberus",
  34513. },
  34514. }
  34515. ))
  34516. characterMakers.push(() => makeCharacter(
  34517. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34518. {
  34519. front: {
  34520. height: math.unit(6 + 8/12, "feet"),
  34521. weight: math.unit(300, "lb"),
  34522. name: "Front",
  34523. image: {
  34524. source: "./media/characters/jrain/front.svg",
  34525. extra: 3039/2865,
  34526. bottom: 399/3438
  34527. }
  34528. },
  34529. back: {
  34530. height: math.unit(6 + 8/12, "feet"),
  34531. weight: math.unit(300, "lb"),
  34532. name: "Back",
  34533. image: {
  34534. source: "./media/characters/jrain/back.svg",
  34535. extra: 3089/2938,
  34536. bottom: 172/3261
  34537. }
  34538. },
  34539. head: {
  34540. height: math.unit(2.14, "feet"),
  34541. name: "Head",
  34542. image: {
  34543. source: "./media/characters/jrain/head.svg"
  34544. }
  34545. },
  34546. maw: {
  34547. height: math.unit(1.77, "feet"),
  34548. name: "Maw",
  34549. image: {
  34550. source: "./media/characters/jrain/maw.svg"
  34551. }
  34552. },
  34553. leftHand: {
  34554. height: math.unit(1.1, "feet"),
  34555. name: "Left Hand",
  34556. image: {
  34557. source: "./media/characters/jrain/left-hand.svg"
  34558. }
  34559. },
  34560. rightHand: {
  34561. height: math.unit(1.1, "feet"),
  34562. name: "Right Hand",
  34563. image: {
  34564. source: "./media/characters/jrain/right-hand.svg"
  34565. }
  34566. },
  34567. eye: {
  34568. height: math.unit(0.35, "feet"),
  34569. name: "Eye",
  34570. image: {
  34571. source: "./media/characters/jrain/eye.svg"
  34572. }
  34573. },
  34574. },
  34575. [
  34576. {
  34577. name: "Normal",
  34578. height: math.unit(6 + 8/12, "feet"),
  34579. default: true
  34580. },
  34581. {
  34582. name: "Casually Large",
  34583. height: math.unit(25, "feet")
  34584. },
  34585. {
  34586. name: "Giant",
  34587. height: math.unit(100, "feet")
  34588. },
  34589. {
  34590. name: "Kaiju",
  34591. height: math.unit(300, "feet")
  34592. },
  34593. ]
  34594. ))
  34595. characterMakers.push(() => makeCharacter(
  34596. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34597. {
  34598. dragon: {
  34599. height: math.unit(5, "meters"),
  34600. name: "Dragon",
  34601. image: {
  34602. source: "./media/characters/sabrina/dragon.svg",
  34603. extra: 3670 / 2365,
  34604. bottom: 333 / 4003
  34605. }
  34606. },
  34607. gryphon: {
  34608. height: math.unit(3, "meters"),
  34609. name: "Gryphon",
  34610. image: {
  34611. source: "./media/characters/sabrina/gryphon.svg",
  34612. extra: 1576 / 945,
  34613. bottom: 71 / 1647
  34614. }
  34615. },
  34616. snake: {
  34617. height: math.unit(12, "meters"),
  34618. name: "Snake",
  34619. image: {
  34620. source: "./media/characters/sabrina/snake.svg",
  34621. extra: 1758 / 1320,
  34622. bottom: 186 / 1944
  34623. }
  34624. },
  34625. collar: {
  34626. height: math.unit(1.86, "meters"),
  34627. name: "Collar",
  34628. image: {
  34629. source: "./media/characters/sabrina/collar.svg"
  34630. }
  34631. },
  34632. eye: {
  34633. height: math.unit(0.53, "meters"),
  34634. name: "Eye",
  34635. image: {
  34636. source: "./media/characters/sabrina/eye.svg"
  34637. }
  34638. },
  34639. foot: {
  34640. height: math.unit(1.86, "meters"),
  34641. name: "Foot",
  34642. image: {
  34643. source: "./media/characters/sabrina/foot.svg"
  34644. }
  34645. },
  34646. hand: {
  34647. height: math.unit(1.32, "meters"),
  34648. name: "Hand",
  34649. image: {
  34650. source: "./media/characters/sabrina/hand.svg"
  34651. }
  34652. },
  34653. head: {
  34654. height: math.unit(2.44, "meters"),
  34655. name: "Head",
  34656. image: {
  34657. source: "./media/characters/sabrina/head.svg"
  34658. }
  34659. },
  34660. headAngry: {
  34661. height: math.unit(2.44, "meters"),
  34662. name: "Head (Angry))",
  34663. image: {
  34664. source: "./media/characters/sabrina/head-angry.svg"
  34665. }
  34666. },
  34667. maw: {
  34668. height: math.unit(1.65, "meters"),
  34669. name: "Maw",
  34670. image: {
  34671. source: "./media/characters/sabrina/maw.svg"
  34672. }
  34673. },
  34674. spikes: {
  34675. height: math.unit(1.69, "meters"),
  34676. name: "Spikes",
  34677. image: {
  34678. source: "./media/characters/sabrina/spikes.svg"
  34679. }
  34680. },
  34681. stomach: {
  34682. height: math.unit(1.15, "meters"),
  34683. name: "Stomach",
  34684. image: {
  34685. source: "./media/characters/sabrina/stomach.svg"
  34686. }
  34687. },
  34688. tongue: {
  34689. height: math.unit(1.27, "meters"),
  34690. name: "Tongue",
  34691. image: {
  34692. source: "./media/characters/sabrina/tongue.svg"
  34693. }
  34694. },
  34695. wingDorsal: {
  34696. height: math.unit(4.85, "meters"),
  34697. name: "Wing (Dorsal)",
  34698. image: {
  34699. source: "./media/characters/sabrina/wing-dorsal.svg"
  34700. }
  34701. },
  34702. wingVentral: {
  34703. height: math.unit(4.85, "meters"),
  34704. name: "Wing (Ventral)",
  34705. image: {
  34706. source: "./media/characters/sabrina/wing-ventral.svg"
  34707. }
  34708. },
  34709. },
  34710. [
  34711. {
  34712. name: "Normal",
  34713. height: math.unit(5, "meters"),
  34714. default: true
  34715. },
  34716. ]
  34717. ))
  34718. characterMakers.push(() => makeCharacter(
  34719. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34720. {
  34721. frontMaid: {
  34722. height: math.unit(5 + 5/12, "feet"),
  34723. weight: math.unit(130, "lb"),
  34724. name: "Front (Maid)",
  34725. image: {
  34726. source: "./media/characters/midnight-tales/front-maid.svg",
  34727. extra: 489/454,
  34728. bottom: 61/550
  34729. }
  34730. },
  34731. frontFormal: {
  34732. height: math.unit(5 + 5/12, "feet"),
  34733. weight: math.unit(130, "lb"),
  34734. name: "Front (Formal)",
  34735. image: {
  34736. source: "./media/characters/midnight-tales/front-formal.svg",
  34737. extra: 489/454,
  34738. bottom: 61/550
  34739. }
  34740. },
  34741. back: {
  34742. height: math.unit(5 + 5/12, "feet"),
  34743. weight: math.unit(130, "lb"),
  34744. name: "Back",
  34745. image: {
  34746. source: "./media/characters/midnight-tales/back.svg",
  34747. extra: 498/456,
  34748. bottom: 33/531
  34749. }
  34750. },
  34751. frontBeast: {
  34752. height: math.unit(40, "feet"),
  34753. weight: math.unit(64000, "lb"),
  34754. name: "Front (Beast)",
  34755. image: {
  34756. source: "./media/characters/midnight-tales/front-beast.svg",
  34757. extra: 927/860,
  34758. bottom: 53/980
  34759. }
  34760. },
  34761. backBeast: {
  34762. height: math.unit(40, "feet"),
  34763. weight: math.unit(64000, "lb"),
  34764. name: "Back (Beast)",
  34765. image: {
  34766. source: "./media/characters/midnight-tales/back-beast.svg",
  34767. extra: 929/855,
  34768. bottom: 16/945
  34769. }
  34770. },
  34771. footBeast: {
  34772. height: math.unit(6.7, "feet"),
  34773. name: "Foot (Beast)",
  34774. image: {
  34775. source: "./media/characters/midnight-tales/foot-beast.svg"
  34776. }
  34777. },
  34778. headBeast: {
  34779. height: math.unit(8, "feet"),
  34780. name: "Head (Beast)",
  34781. image: {
  34782. source: "./media/characters/midnight-tales/head-beast.svg"
  34783. }
  34784. },
  34785. },
  34786. [
  34787. {
  34788. name: "Normal",
  34789. height: math.unit(5 + 5 / 12, "feet"),
  34790. default: true
  34791. },
  34792. {
  34793. name: "Macro",
  34794. height: math.unit(25, "feet")
  34795. },
  34796. ]
  34797. ))
  34798. characterMakers.push(() => makeCharacter(
  34799. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34800. {
  34801. front: {
  34802. height: math.unit(5 + 10/12, "feet"),
  34803. name: "Front",
  34804. image: {
  34805. source: "./media/characters/argon/front.svg",
  34806. extra: 2009/1935,
  34807. bottom: 118/2127
  34808. }
  34809. },
  34810. back: {
  34811. height: math.unit(5 + 10/12, "feet"),
  34812. name: "Back",
  34813. image: {
  34814. source: "./media/characters/argon/back.svg",
  34815. extra: 2047/1992,
  34816. bottom: 20/2067
  34817. }
  34818. },
  34819. frontDressed: {
  34820. height: math.unit(5 + 10/12, "feet"),
  34821. name: "Front (Dressed)",
  34822. image: {
  34823. source: "./media/characters/argon/front-dressed.svg",
  34824. extra: 2009/1935,
  34825. bottom: 118/2127
  34826. }
  34827. },
  34828. },
  34829. [
  34830. {
  34831. name: "Normal",
  34832. height: math.unit(5 + 10/12, "feet"),
  34833. default: true
  34834. },
  34835. ]
  34836. ))
  34837. characterMakers.push(() => makeCharacter(
  34838. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34839. {
  34840. front: {
  34841. height: math.unit(8 + 6/12, "feet"),
  34842. weight: math.unit(1150, "lb"),
  34843. name: "Front",
  34844. image: {
  34845. source: "./media/characters/kichi/front.svg",
  34846. extra: 1267/1164,
  34847. bottom: 61/1328
  34848. }
  34849. },
  34850. back: {
  34851. height: math.unit(8 + 6/12, "feet"),
  34852. weight: math.unit(1150, "lb"),
  34853. name: "Back",
  34854. image: {
  34855. source: "./media/characters/kichi/back.svg",
  34856. extra: 1273/1166,
  34857. bottom: 33/1306
  34858. }
  34859. },
  34860. },
  34861. [
  34862. {
  34863. name: "Normal",
  34864. height: math.unit(8 + 6/12, "feet"),
  34865. default: true
  34866. },
  34867. ]
  34868. ))
  34869. characterMakers.push(() => makeCharacter(
  34870. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34871. {
  34872. front: {
  34873. height: math.unit(6, "feet"),
  34874. weight: math.unit(210, "lb"),
  34875. name: "Front",
  34876. image: {
  34877. source: "./media/characters/manetel-greyscale/front.svg",
  34878. extra: 350/312,
  34879. bottom: 8/358
  34880. }
  34881. },
  34882. },
  34883. [
  34884. {
  34885. name: "Micro",
  34886. height: math.unit(2, "inches")
  34887. },
  34888. {
  34889. name: "Normal",
  34890. height: math.unit(6, "feet"),
  34891. default: true
  34892. },
  34893. {
  34894. name: "Minimacro",
  34895. height: math.unit(17, "feet")
  34896. },
  34897. {
  34898. name: "Macro",
  34899. height: math.unit(117, "feet")
  34900. },
  34901. ]
  34902. ))
  34903. characterMakers.push(() => makeCharacter(
  34904. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34905. {
  34906. side: {
  34907. height: math.unit(5 + 1/12, "feet"),
  34908. weight: math.unit(418, "lb"),
  34909. name: "Side",
  34910. image: {
  34911. source: "./media/characters/softpurr/side.svg",
  34912. extra: 1993/1945,
  34913. bottom: 134/2127
  34914. }
  34915. },
  34916. front: {
  34917. height: math.unit(5 + 1/12, "feet"),
  34918. weight: math.unit(418, "lb"),
  34919. name: "Front",
  34920. image: {
  34921. source: "./media/characters/softpurr/front.svg",
  34922. extra: 1950/1856,
  34923. bottom: 174/2124
  34924. }
  34925. },
  34926. paw: {
  34927. height: math.unit(1, "feet"),
  34928. name: "Paw",
  34929. image: {
  34930. source: "./media/characters/softpurr/paw.svg"
  34931. }
  34932. },
  34933. },
  34934. [
  34935. {
  34936. name: "Normal",
  34937. height: math.unit(5 + 1/12, "feet"),
  34938. default: true
  34939. },
  34940. ]
  34941. ))
  34942. characterMakers.push(() => makeCharacter(
  34943. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34944. {
  34945. front: {
  34946. height: math.unit(260, "meters"),
  34947. name: "Front",
  34948. image: {
  34949. source: "./media/characters/anahita/front.svg",
  34950. extra: 665/635,
  34951. bottom: 89/754
  34952. }
  34953. },
  34954. },
  34955. [
  34956. {
  34957. name: "Macro",
  34958. height: math.unit(260, "meters"),
  34959. default: true
  34960. },
  34961. ]
  34962. ))
  34963. characterMakers.push(() => makeCharacter(
  34964. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34965. {
  34966. front: {
  34967. height: math.unit(4 + 10/12, "feet"),
  34968. weight: math.unit(160, "lb"),
  34969. name: "Front",
  34970. image: {
  34971. source: "./media/characters/chip-mouse/front.svg",
  34972. extra: 3528/3408,
  34973. bottom: 0/3528
  34974. }
  34975. },
  34976. frontNsfw: {
  34977. height: math.unit(4 + 10/12, "feet"),
  34978. weight: math.unit(160, "lb"),
  34979. name: "Front (NSFW)",
  34980. image: {
  34981. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34982. extra: 3528/3408,
  34983. bottom: 0/3528
  34984. }
  34985. },
  34986. },
  34987. [
  34988. {
  34989. name: "Normal",
  34990. height: math.unit(4 + 10/12, "feet"),
  34991. default: true
  34992. },
  34993. ]
  34994. ))
  34995. characterMakers.push(() => makeCharacter(
  34996. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34997. {
  34998. side: {
  34999. height: math.unit(10, "feet"),
  35000. weight: math.unit(14000, "lb"),
  35001. name: "Side",
  35002. image: {
  35003. source: "./media/characters/kremm/side.svg",
  35004. extra: 1390/1053,
  35005. bottom: 90/1480
  35006. }
  35007. },
  35008. gut: {
  35009. height: math.unit(5.8, "feet"),
  35010. name: "Gut",
  35011. image: {
  35012. source: "./media/characters/kremm/gut.svg"
  35013. }
  35014. },
  35015. ass: {
  35016. height: math.unit(6.1, "feet"),
  35017. name: "Ass",
  35018. image: {
  35019. source: "./media/characters/kremm/ass.svg"
  35020. }
  35021. },
  35022. jaws: {
  35023. height: math.unit(2.2, "feet"),
  35024. name: "Jaws",
  35025. image: {
  35026. source: "./media/characters/kremm/jaws.svg"
  35027. }
  35028. },
  35029. dick: {
  35030. height: math.unit(4.26, "feet"),
  35031. name: "Dick",
  35032. image: {
  35033. source: "./media/characters/kremm/dick.svg"
  35034. }
  35035. },
  35036. },
  35037. [
  35038. {
  35039. name: "Normal",
  35040. height: math.unit(10, "feet"),
  35041. default: true
  35042. },
  35043. ]
  35044. ))
  35045. characterMakers.push(() => makeCharacter(
  35046. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35047. {
  35048. front: {
  35049. height: math.unit(30, "stories"),
  35050. name: "Front",
  35051. image: {
  35052. source: "./media/characters/kai/front.svg",
  35053. extra: 1892/1718,
  35054. bottom: 162/2054
  35055. }
  35056. },
  35057. },
  35058. [
  35059. {
  35060. name: "Macro",
  35061. height: math.unit(30, "stories"),
  35062. default: true
  35063. },
  35064. ]
  35065. ))
  35066. characterMakers.push(() => makeCharacter(
  35067. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35068. {
  35069. front: {
  35070. height: math.unit(6 + 4/12, "feet"),
  35071. weight: math.unit(145, "lb"),
  35072. name: "Front",
  35073. image: {
  35074. source: "./media/characters/sykes/front.svg",
  35075. extra: 1321 / 1187,
  35076. bottom: 66 / 1387
  35077. }
  35078. },
  35079. back: {
  35080. height: math.unit(6 + 4/12, "feet"),
  35081. weight: math.unit(145, "lb"),
  35082. name: "Back",
  35083. image: {
  35084. source: "./media/characters/sykes/back.svg",
  35085. extra: 1326/1181,
  35086. bottom: 31/1357
  35087. }
  35088. },
  35089. traditionalOutfit: {
  35090. height: math.unit(6 + 4/12, "feet"),
  35091. weight: math.unit(145, "lb"),
  35092. name: "Traditional Outfit",
  35093. image: {
  35094. source: "./media/characters/sykes/traditional-outfit.svg",
  35095. extra: 1321 / 1187,
  35096. bottom: 66 / 1387
  35097. }
  35098. },
  35099. adventureOutfit: {
  35100. height: math.unit(6 + 4/12, "feet"),
  35101. weight: math.unit(145, "lb"),
  35102. name: "Adventure Outfit",
  35103. image: {
  35104. source: "./media/characters/sykes/adventure-outfit.svg",
  35105. extra: 1321 / 1187,
  35106. bottom: 66 / 1387
  35107. }
  35108. },
  35109. handLeft: {
  35110. height: math.unit(0.9, "feet"),
  35111. name: "Hand (Left)",
  35112. image: {
  35113. source: "./media/characters/sykes/hand-left.svg"
  35114. }
  35115. },
  35116. handRight: {
  35117. height: math.unit(0.839, "feet"),
  35118. name: "Hand (Right)",
  35119. image: {
  35120. source: "./media/characters/sykes/hand-right.svg"
  35121. }
  35122. },
  35123. leftFoot: {
  35124. height: math.unit(1.2, "feet"),
  35125. name: "Foot (Left)",
  35126. image: {
  35127. source: "./media/characters/sykes/foot-left.svg"
  35128. }
  35129. },
  35130. rightFoot: {
  35131. height: math.unit(1.2, "feet"),
  35132. name: "Foot (Right)",
  35133. image: {
  35134. source: "./media/characters/sykes/foot-right.svg"
  35135. }
  35136. },
  35137. maw: {
  35138. height: math.unit(1.93, "feet"),
  35139. name: "Maw",
  35140. image: {
  35141. source: "./media/characters/sykes/maw.svg"
  35142. }
  35143. },
  35144. teeth: {
  35145. height: math.unit(0.51, "feet"),
  35146. name: "Teeth",
  35147. image: {
  35148. source: "./media/characters/sykes/teeth.svg"
  35149. }
  35150. },
  35151. tongue: {
  35152. height: math.unit(2.13, "feet"),
  35153. name: "Tongue",
  35154. image: {
  35155. source: "./media/characters/sykes/tongue.svg"
  35156. }
  35157. },
  35158. uvula: {
  35159. height: math.unit(0.16, "feet"),
  35160. name: "Uvula",
  35161. image: {
  35162. source: "./media/characters/sykes/uvula.svg"
  35163. }
  35164. },
  35165. collar: {
  35166. height: math.unit(0.287, "feet"),
  35167. name: "Collar",
  35168. image: {
  35169. source: "./media/characters/sykes/collar.svg"
  35170. }
  35171. },
  35172. tail: {
  35173. height: math.unit(3.8, "feet"),
  35174. name: "Tail",
  35175. image: {
  35176. source: "./media/characters/sykes/tail.svg"
  35177. }
  35178. },
  35179. },
  35180. [
  35181. {
  35182. name: "Shrunken",
  35183. height: math.unit(5, "inches")
  35184. },
  35185. {
  35186. name: "Normal",
  35187. height: math.unit(6 + 4 / 12, "feet"),
  35188. default: true
  35189. },
  35190. {
  35191. name: "Big",
  35192. height: math.unit(15, "feet")
  35193. },
  35194. ]
  35195. ))
  35196. characterMakers.push(() => makeCharacter(
  35197. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35198. {
  35199. front: {
  35200. height: math.unit(5 + 8/12, "feet"),
  35201. weight: math.unit(190, "lb"),
  35202. name: "Front",
  35203. image: {
  35204. source: "./media/characters/oven-otter/front.svg",
  35205. extra: 1809/1740,
  35206. bottom: 181/1990
  35207. }
  35208. },
  35209. back: {
  35210. height: math.unit(5 + 8/12, "feet"),
  35211. weight: math.unit(190, "lb"),
  35212. name: "Back",
  35213. image: {
  35214. source: "./media/characters/oven-otter/back.svg",
  35215. extra: 1709/1635,
  35216. bottom: 118/1827
  35217. }
  35218. },
  35219. hand: {
  35220. height: math.unit(1.07, "feet"),
  35221. name: "Hand",
  35222. image: {
  35223. source: "./media/characters/oven-otter/hand.svg"
  35224. }
  35225. },
  35226. beans: {
  35227. height: math.unit(1.74, "feet"),
  35228. name: "Beans",
  35229. image: {
  35230. source: "./media/characters/oven-otter/beans.svg"
  35231. }
  35232. },
  35233. },
  35234. [
  35235. {
  35236. name: "Micro",
  35237. height: math.unit(0.5, "inches")
  35238. },
  35239. {
  35240. name: "Normal",
  35241. height: math.unit(5 + 8/12, "feet"),
  35242. default: true
  35243. },
  35244. {
  35245. name: "Macro",
  35246. height: math.unit(250, "feet")
  35247. },
  35248. {
  35249. name: "Really High",
  35250. height: math.unit(420, "feet")
  35251. },
  35252. ]
  35253. ))
  35254. characterMakers.push(() => makeCharacter(
  35255. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35256. {
  35257. front: {
  35258. height: math.unit(5, "meters"),
  35259. weight: math.unit(292000000000000, "kg"),
  35260. name: "Front",
  35261. image: {
  35262. source: "./media/characters/devourer/front.svg",
  35263. extra: 1800/1733,
  35264. bottom: 211/2011
  35265. }
  35266. },
  35267. maw: {
  35268. height: math.unit(1.1, "meter"),
  35269. name: "Maw",
  35270. image: {
  35271. source: "./media/characters/devourer/maw.svg"
  35272. }
  35273. },
  35274. },
  35275. [
  35276. {
  35277. name: "Small",
  35278. height: math.unit(3, "meters")
  35279. },
  35280. {
  35281. name: "Large",
  35282. height: math.unit(5, "meters"),
  35283. default: true
  35284. },
  35285. ]
  35286. ))
  35287. characterMakers.push(() => makeCharacter(
  35288. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35289. {
  35290. front: {
  35291. height: math.unit(6, "feet"),
  35292. weight: math.unit(400, "lb"),
  35293. name: "Front",
  35294. image: {
  35295. source: "./media/characters/ellarby/front.svg",
  35296. extra: 1909/1763,
  35297. bottom: 80/1989
  35298. }
  35299. },
  35300. back: {
  35301. height: math.unit(6, "feet"),
  35302. weight: math.unit(400, "lb"),
  35303. name: "Back",
  35304. image: {
  35305. source: "./media/characters/ellarby/back.svg",
  35306. extra: 1914/1784,
  35307. bottom: 172/2086
  35308. }
  35309. },
  35310. },
  35311. [
  35312. {
  35313. name: "Mischief",
  35314. height: math.unit(18, "inches")
  35315. },
  35316. {
  35317. name: "Trouble",
  35318. height: math.unit(12, "feet")
  35319. },
  35320. {
  35321. name: "Havoc",
  35322. height: math.unit(200, "feet"),
  35323. default: true
  35324. },
  35325. {
  35326. name: "Pandemonium",
  35327. height: math.unit(1, "mile")
  35328. },
  35329. {
  35330. name: "Catastrophe",
  35331. height: math.unit(100, "miles")
  35332. },
  35333. ]
  35334. ))
  35335. characterMakers.push(() => makeCharacter(
  35336. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35337. {
  35338. front: {
  35339. height: math.unit(4.7, "meters"),
  35340. weight: math.unit(6500, "kg"),
  35341. name: "Front",
  35342. image: {
  35343. source: "./media/characters/vex/front.svg",
  35344. extra: 1288/1140,
  35345. bottom: 100/1388
  35346. }
  35347. },
  35348. },
  35349. [
  35350. {
  35351. name: "Normal",
  35352. height: math.unit(4.7, "meters"),
  35353. default: true
  35354. },
  35355. ]
  35356. ))
  35357. characterMakers.push(() => makeCharacter(
  35358. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35359. {
  35360. normal: {
  35361. height: math.unit(6, "feet"),
  35362. weight: math.unit(350, "lb"),
  35363. name: "Normal",
  35364. image: {
  35365. source: "./media/characters/teshy/normal.svg",
  35366. extra: 1795/1735,
  35367. bottom: 16/1811
  35368. }
  35369. },
  35370. monsterFront: {
  35371. height: math.unit(12, "feet"),
  35372. weight: math.unit(4700, "lb"),
  35373. name: "Monster (Front)",
  35374. image: {
  35375. source: "./media/characters/teshy/monster-front.svg",
  35376. extra: 2042/2034,
  35377. bottom: 128/2170
  35378. }
  35379. },
  35380. monsterSide: {
  35381. height: math.unit(12, "feet"),
  35382. weight: math.unit(4700, "lb"),
  35383. name: "Monster (Side)",
  35384. image: {
  35385. source: "./media/characters/teshy/monster-side.svg",
  35386. extra: 2067/2056,
  35387. bottom: 70/2137
  35388. }
  35389. },
  35390. monsterBack: {
  35391. height: math.unit(12, "feet"),
  35392. weight: math.unit(4700, "lb"),
  35393. name: "Monster (Back)",
  35394. image: {
  35395. source: "./media/characters/teshy/monster-back.svg",
  35396. extra: 1921/1914,
  35397. bottom: 171/2092
  35398. }
  35399. },
  35400. },
  35401. [
  35402. {
  35403. name: "Normal",
  35404. height: math.unit(6, "feet"),
  35405. default: true
  35406. },
  35407. ]
  35408. ))
  35409. characterMakers.push(() => makeCharacter(
  35410. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35411. {
  35412. front: {
  35413. height: math.unit(6, "feet"),
  35414. name: "Front",
  35415. image: {
  35416. source: "./media/characters/ramey/front.svg",
  35417. extra: 790/787,
  35418. bottom: 27/817
  35419. }
  35420. },
  35421. },
  35422. [
  35423. {
  35424. name: "Normal",
  35425. height: math.unit(6, "feet"),
  35426. default: true
  35427. },
  35428. ]
  35429. ))
  35430. characterMakers.push(() => makeCharacter(
  35431. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35432. {
  35433. front: {
  35434. height: math.unit(5 + 5/12, "feet"),
  35435. weight: math.unit(120, "lb"),
  35436. name: "Front",
  35437. image: {
  35438. source: "./media/characters/phirae/front.svg",
  35439. extra: 2491/2436,
  35440. bottom: 38/2529
  35441. }
  35442. },
  35443. },
  35444. [
  35445. {
  35446. name: "Normal",
  35447. height: math.unit(5 + 5/12, "feet"),
  35448. default: true
  35449. },
  35450. ]
  35451. ))
  35452. characterMakers.push(() => makeCharacter(
  35453. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35454. {
  35455. front: {
  35456. height: math.unit(5 + 3/12, "feet"),
  35457. name: "Front",
  35458. image: {
  35459. source: "./media/characters/stagglas/front.svg",
  35460. extra: 962/882,
  35461. bottom: 53/1015
  35462. }
  35463. },
  35464. feral: {
  35465. height: math.unit(335, "cm"),
  35466. name: "Feral",
  35467. image: {
  35468. source: "./media/characters/stagglas/feral.svg",
  35469. extra: 1732/1090,
  35470. bottom: 48/1780
  35471. }
  35472. },
  35473. },
  35474. [
  35475. {
  35476. name: "Normal",
  35477. height: math.unit(5 + 3/12, "feet"),
  35478. default: true
  35479. },
  35480. ]
  35481. ))
  35482. characterMakers.push(() => makeCharacter(
  35483. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35484. {
  35485. front: {
  35486. height: math.unit(5 + 4/12, "feet"),
  35487. weight: math.unit(145, "lb"),
  35488. name: "Front",
  35489. image: {
  35490. source: "./media/characters/starra/front.svg",
  35491. extra: 1790/1691,
  35492. bottom: 91/1881
  35493. }
  35494. },
  35495. },
  35496. [
  35497. {
  35498. name: "Normal",
  35499. height: math.unit(5 + 4/12, "feet"),
  35500. default: true
  35501. },
  35502. ]
  35503. ))
  35504. characterMakers.push(() => makeCharacter(
  35505. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35506. {
  35507. front: {
  35508. height: math.unit(2.2, "meters"),
  35509. name: "Front",
  35510. image: {
  35511. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35512. extra: 1194/1005,
  35513. bottom: 25/1219
  35514. }
  35515. },
  35516. },
  35517. [
  35518. {
  35519. name: "Normal",
  35520. height: math.unit(2.2, "meters"),
  35521. default: true
  35522. },
  35523. ]
  35524. ))
  35525. characterMakers.push(() => makeCharacter(
  35526. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35527. {
  35528. side: {
  35529. height: math.unit(8 + 2/12, "feet"),
  35530. weight: math.unit(1240, "lb"),
  35531. name: "Side",
  35532. image: {
  35533. source: "./media/characters/mika-valentine/side.svg",
  35534. extra: 2670/2501,
  35535. bottom: 250/2920
  35536. }
  35537. },
  35538. },
  35539. [
  35540. {
  35541. name: "Normal",
  35542. height: math.unit(8 + 2/12, "feet"),
  35543. default: true
  35544. },
  35545. ]
  35546. ))
  35547. characterMakers.push(() => makeCharacter(
  35548. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35549. {
  35550. front: {
  35551. height: math.unit(7 + 2/12, "feet"),
  35552. name: "Front",
  35553. image: {
  35554. source: "./media/characters/xoltol/front.svg",
  35555. extra: 2212/2124,
  35556. bottom: 84/2296
  35557. }
  35558. },
  35559. side: {
  35560. height: math.unit(7 + 2/12, "feet"),
  35561. name: "Side",
  35562. image: {
  35563. source: "./media/characters/xoltol/side.svg",
  35564. extra: 2273/2197,
  35565. bottom: 26/2299
  35566. }
  35567. },
  35568. hand: {
  35569. height: math.unit(2.5, "feet"),
  35570. name: "Hand",
  35571. image: {
  35572. source: "./media/characters/xoltol/hand.svg"
  35573. }
  35574. },
  35575. },
  35576. [
  35577. {
  35578. name: "Small-ish",
  35579. height: math.unit(5 + 11/12, "feet")
  35580. },
  35581. {
  35582. name: "Normal",
  35583. height: math.unit(7 + 2/12, "feet")
  35584. },
  35585. {
  35586. name: "\"Macro\"",
  35587. height: math.unit(14 + 9/12, "feet"),
  35588. default: true
  35589. },
  35590. {
  35591. name: "Alternate Height",
  35592. height: math.unit(20, "feet")
  35593. },
  35594. {
  35595. name: "Actually Macro",
  35596. height: math.unit(100, "feet")
  35597. },
  35598. ]
  35599. ))
  35600. characterMakers.push(() => makeCharacter(
  35601. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35602. {
  35603. front: {
  35604. height: math.unit(5 + 2/12, "feet"),
  35605. name: "Front",
  35606. image: {
  35607. source: "./media/characters/kotetsu-redwood/front.svg",
  35608. extra: 1053/942,
  35609. bottom: 60/1113
  35610. }
  35611. },
  35612. },
  35613. [
  35614. {
  35615. name: "Normal",
  35616. height: math.unit(5 + 2/12, "feet"),
  35617. default: true
  35618. },
  35619. ]
  35620. ))
  35621. characterMakers.push(() => makeCharacter(
  35622. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35623. {
  35624. front: {
  35625. height: math.unit(2.4, "meters"),
  35626. weight: math.unit(125, "kg"),
  35627. name: "Front",
  35628. image: {
  35629. source: "./media/characters/lilith/front.svg",
  35630. extra: 1590/1513,
  35631. bottom: 203/1793
  35632. }
  35633. },
  35634. },
  35635. [
  35636. {
  35637. name: "Humanoid",
  35638. height: math.unit(2.4, "meters")
  35639. },
  35640. {
  35641. name: "Normal",
  35642. height: math.unit(6, "meters"),
  35643. default: true
  35644. },
  35645. {
  35646. name: "Largest",
  35647. height: math.unit(55, "meters")
  35648. },
  35649. ]
  35650. ))
  35651. characterMakers.push(() => makeCharacter(
  35652. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35653. {
  35654. front: {
  35655. height: math.unit(8 + 4/12, "feet"),
  35656. weight: math.unit(535, "lb"),
  35657. name: "Front",
  35658. image: {
  35659. source: "./media/characters/beh'kah-bolger/front.svg",
  35660. extra: 1660/1603,
  35661. bottom: 37/1697
  35662. }
  35663. },
  35664. },
  35665. [
  35666. {
  35667. name: "Normal",
  35668. height: math.unit(8 + 4/12, "feet"),
  35669. default: true
  35670. },
  35671. {
  35672. name: "Kaiju",
  35673. height: math.unit(250, "feet")
  35674. },
  35675. {
  35676. name: "Still Growing",
  35677. height: math.unit(10, "miles")
  35678. },
  35679. {
  35680. name: "Continental",
  35681. height: math.unit(5000, "miles")
  35682. },
  35683. {
  35684. name: "Final Form",
  35685. height: math.unit(2500000, "miles")
  35686. },
  35687. ]
  35688. ))
  35689. characterMakers.push(() => makeCharacter(
  35690. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35691. {
  35692. front: {
  35693. height: math.unit(7 + 2/12, "feet"),
  35694. weight: math.unit(230, "kg"),
  35695. name: "Front",
  35696. image: {
  35697. source: "./media/characters/tatyana-milewska/front.svg",
  35698. extra: 1199/1150,
  35699. bottom: 86/1285
  35700. }
  35701. },
  35702. },
  35703. [
  35704. {
  35705. name: "Normal",
  35706. height: math.unit(7 + 2/12, "feet"),
  35707. default: true
  35708. },
  35709. {
  35710. name: "Big",
  35711. height: math.unit(12, "feet")
  35712. },
  35713. {
  35714. name: "Minimacro",
  35715. height: math.unit(20, "feet")
  35716. },
  35717. {
  35718. name: "Macro",
  35719. height: math.unit(120, "feet")
  35720. },
  35721. ]
  35722. ))
  35723. characterMakers.push(() => makeCharacter(
  35724. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35725. {
  35726. front: {
  35727. height: math.unit(7 + 8/12, "feet"),
  35728. weight: math.unit(152, "kg"),
  35729. name: "Front",
  35730. image: {
  35731. source: "./media/characters/helen-arri/front.svg",
  35732. extra: 440/423,
  35733. bottom: 14/454
  35734. }
  35735. },
  35736. back: {
  35737. height: math.unit(7 + 8/12, "feet"),
  35738. weight: math.unit(152, "kg"),
  35739. name: "Back",
  35740. image: {
  35741. source: "./media/characters/helen-arri/back.svg",
  35742. extra: 443/426,
  35743. bottom: 8/451
  35744. }
  35745. },
  35746. },
  35747. [
  35748. {
  35749. name: "Normal",
  35750. height: math.unit(7 + 8/12, "feet"),
  35751. default: true
  35752. },
  35753. {
  35754. name: "Big",
  35755. height: math.unit(14, "feet")
  35756. },
  35757. {
  35758. name: "Minimacro",
  35759. height: math.unit(24, "feet")
  35760. },
  35761. {
  35762. name: "Macro",
  35763. height: math.unit(140, "feet")
  35764. },
  35765. ]
  35766. ))
  35767. characterMakers.push(() => makeCharacter(
  35768. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35769. {
  35770. front: {
  35771. height: math.unit(6, "meters"),
  35772. name: "Front",
  35773. image: {
  35774. source: "./media/characters/ehanu-rehu/front.svg",
  35775. extra: 1800/1800,
  35776. bottom: 59/1859
  35777. }
  35778. },
  35779. },
  35780. [
  35781. {
  35782. name: "Normal",
  35783. height: math.unit(6, "meters"),
  35784. default: true
  35785. },
  35786. ]
  35787. ))
  35788. characterMakers.push(() => makeCharacter(
  35789. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35790. {
  35791. front: {
  35792. height: math.unit(7 + 3/12, "feet"),
  35793. name: "Front",
  35794. image: {
  35795. source: "./media/characters/renholder/front.svg",
  35796. extra: 3096/2960,
  35797. bottom: 250/3346
  35798. }
  35799. },
  35800. },
  35801. [
  35802. {
  35803. name: "Normal Bat",
  35804. height: math.unit(7 + 3/12, "feet"),
  35805. default: true
  35806. },
  35807. {
  35808. name: "Slightly Tall Bat",
  35809. height: math.unit(100, "feet")
  35810. },
  35811. {
  35812. name: "Big Bat",
  35813. height: math.unit(1000, "feet")
  35814. },
  35815. {
  35816. name: "City-Sized Bat",
  35817. height: math.unit(200000, "feet")
  35818. },
  35819. {
  35820. name: "Bigger Bat",
  35821. height: math.unit(10000, "miles")
  35822. },
  35823. {
  35824. name: "Solar Sized Bat",
  35825. height: math.unit(100, "AU")
  35826. },
  35827. {
  35828. name: "Galactic Bat",
  35829. height: math.unit(200000, "lightyears")
  35830. },
  35831. {
  35832. name: "Universally Known Bat",
  35833. height: math.unit(1, "universe")
  35834. },
  35835. ]
  35836. ))
  35837. characterMakers.push(() => makeCharacter(
  35838. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35839. {
  35840. front: {
  35841. height: math.unit(6 + 11/12, "feet"),
  35842. weight: math.unit(250, "lb"),
  35843. name: "Front",
  35844. image: {
  35845. source: "./media/characters/cookiecat/front.svg",
  35846. extra: 893/827,
  35847. bottom: 14/907
  35848. }
  35849. },
  35850. },
  35851. [
  35852. {
  35853. name: "Micro",
  35854. height: math.unit(3, "inches")
  35855. },
  35856. {
  35857. name: "Normal",
  35858. height: math.unit(6 + 11/12, "feet"),
  35859. default: true
  35860. },
  35861. {
  35862. name: "Macro",
  35863. height: math.unit(100, "feet")
  35864. },
  35865. {
  35866. name: "Macro+",
  35867. height: math.unit(404, "feet")
  35868. },
  35869. {
  35870. name: "Megamacro",
  35871. height: math.unit(165, "miles")
  35872. },
  35873. {
  35874. name: "Planetary",
  35875. height: math.unit(4600, "miles")
  35876. },
  35877. ]
  35878. ))
  35879. characterMakers.push(() => makeCharacter(
  35880. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35881. {
  35882. front: {
  35883. height: math.unit(10 + 3/12, "feet"),
  35884. weight: math.unit(1500, "lb"),
  35885. name: "Front",
  35886. image: {
  35887. source: "./media/characters/tux-kusanagi/front.svg",
  35888. extra: 944/840,
  35889. bottom: 39/983
  35890. }
  35891. },
  35892. back: {
  35893. height: math.unit(10 + 3/12, "feet"),
  35894. weight: math.unit(1500, "lb"),
  35895. name: "Back",
  35896. image: {
  35897. source: "./media/characters/tux-kusanagi/back.svg",
  35898. extra: 941/842,
  35899. bottom: 28/969
  35900. }
  35901. },
  35902. rump: {
  35903. height: math.unit(5.25, "feet"),
  35904. name: "Rump",
  35905. image: {
  35906. source: "./media/characters/tux-kusanagi/rump.svg"
  35907. }
  35908. },
  35909. beak: {
  35910. height: math.unit(1.54, "feet"),
  35911. name: "Beak",
  35912. image: {
  35913. source: "./media/characters/tux-kusanagi/beak.svg"
  35914. }
  35915. },
  35916. },
  35917. [
  35918. {
  35919. name: "Normal",
  35920. height: math.unit(10 + 3/12, "feet"),
  35921. default: true
  35922. },
  35923. ]
  35924. ))
  35925. characterMakers.push(() => makeCharacter(
  35926. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35927. {
  35928. front: {
  35929. height: math.unit(58, "feet"),
  35930. weight: math.unit(200, "tons"),
  35931. name: "Front",
  35932. image: {
  35933. source: "./media/characters/uzarmazari/front.svg",
  35934. extra: 1575/1455,
  35935. bottom: 152/1727
  35936. }
  35937. },
  35938. back: {
  35939. height: math.unit(58, "feet"),
  35940. weight: math.unit(200, "tons"),
  35941. name: "Back",
  35942. image: {
  35943. source: "./media/characters/uzarmazari/back.svg",
  35944. extra: 1585/1510,
  35945. bottom: 157/1742
  35946. }
  35947. },
  35948. head: {
  35949. height: math.unit(26, "feet"),
  35950. name: "Head",
  35951. image: {
  35952. source: "./media/characters/uzarmazari/head.svg"
  35953. }
  35954. },
  35955. },
  35956. [
  35957. {
  35958. name: "Normal",
  35959. height: math.unit(58, "feet"),
  35960. default: true
  35961. },
  35962. ]
  35963. ))
  35964. characterMakers.push(() => makeCharacter(
  35965. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35966. {
  35967. side: {
  35968. height: math.unit(15, "feet"),
  35969. name: "Side",
  35970. image: {
  35971. source: "./media/characters/akitu/side.svg",
  35972. extra: 1421/1321,
  35973. bottom: 157/1578
  35974. }
  35975. },
  35976. front: {
  35977. height: math.unit(15, "feet"),
  35978. name: "Front",
  35979. image: {
  35980. source: "./media/characters/akitu/front.svg",
  35981. extra: 1435/1326,
  35982. bottom: 232/1667
  35983. }
  35984. },
  35985. },
  35986. [
  35987. {
  35988. name: "Normal",
  35989. height: math.unit(15, "feet"),
  35990. default: true
  35991. },
  35992. ]
  35993. ))
  35994. characterMakers.push(() => makeCharacter(
  35995. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35996. {
  35997. front: {
  35998. height: math.unit(10 + 8/12, "feet"),
  35999. name: "Front",
  36000. image: {
  36001. source: "./media/characters/azalie-croixland/front.svg",
  36002. extra: 1972/1856,
  36003. bottom: 31/2003
  36004. }
  36005. },
  36006. },
  36007. [
  36008. {
  36009. name: "Original Height",
  36010. height: math.unit(5 + 4/12, "feet")
  36011. },
  36012. {
  36013. name: "Normal Height",
  36014. height: math.unit(10 + 8/12, "feet"),
  36015. default: true
  36016. },
  36017. ]
  36018. ))
  36019. characterMakers.push(() => makeCharacter(
  36020. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36021. {
  36022. side: {
  36023. height: math.unit(7 + 1/12, "feet"),
  36024. weight: math.unit(245, "lb"),
  36025. name: "Side",
  36026. image: {
  36027. source: "./media/characters/kavus-kazian/side.svg",
  36028. extra: 349/342,
  36029. bottom: 15/364
  36030. }
  36031. },
  36032. },
  36033. [
  36034. {
  36035. name: "Normal",
  36036. height: math.unit(7 + 1/12, "feet"),
  36037. default: true
  36038. },
  36039. ]
  36040. ))
  36041. characterMakers.push(() => makeCharacter(
  36042. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36043. {
  36044. normalFront: {
  36045. height: math.unit(5 + 11/12, "feet"),
  36046. name: "Front",
  36047. image: {
  36048. source: "./media/characters/moonlight-rose/normal-front.svg",
  36049. extra: 1980/1825,
  36050. bottom: 18/1998
  36051. },
  36052. form: "normal",
  36053. default: true
  36054. },
  36055. normalBack: {
  36056. height: math.unit(5 + 11/12, "feet"),
  36057. name: "Back",
  36058. image: {
  36059. source: "./media/characters/moonlight-rose/normal-back.svg",
  36060. extra: 2010/1839,
  36061. bottom: 10/2020
  36062. },
  36063. form: "normal"
  36064. },
  36065. demonFront: {
  36066. height: math.unit(1.5, "earths"),
  36067. name: "Front",
  36068. image: {
  36069. source: "./media/characters/moonlight-rose/demon.svg",
  36070. extra: 1400/1294,
  36071. bottom: 45/1445
  36072. },
  36073. form: "demon",
  36074. default: true
  36075. },
  36076. terraFront: {
  36077. height: math.unit(1.5, "earths"),
  36078. name: "Front",
  36079. image: {
  36080. source: "./media/characters/moonlight-rose/terra.svg"
  36081. },
  36082. form: "terra",
  36083. default: true
  36084. },
  36085. jupiterFront: {
  36086. height: math.unit(69911*2, "km"),
  36087. name: "Front",
  36088. image: {
  36089. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36090. extra: 1367/1286,
  36091. bottom: 55/1422
  36092. },
  36093. form: "jupiter",
  36094. default: true
  36095. },
  36096. neptuneFront: {
  36097. height: math.unit(24622*2, "feet"),
  36098. name: "Front",
  36099. image: {
  36100. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36101. extra: 1851/1712,
  36102. bottom: 0/1851
  36103. },
  36104. form: "neptune",
  36105. default: true
  36106. },
  36107. },
  36108. [
  36109. {
  36110. name: "\"Natural\" Height",
  36111. height: math.unit(5 + 11/12, "feet"),
  36112. form: "normal"
  36113. },
  36114. {
  36115. name: "Smallest comfortable size",
  36116. height: math.unit(40, "meters"),
  36117. form: "normal"
  36118. },
  36119. {
  36120. name: "Common size",
  36121. height: math.unit(50, "km"),
  36122. form: "normal",
  36123. default: true
  36124. },
  36125. {
  36126. name: "Normal",
  36127. height: math.unit(1.5, "earths"),
  36128. form: "demon",
  36129. default: true
  36130. },
  36131. {
  36132. name: "Universal",
  36133. height: math.unit(15, "universes"),
  36134. form: "demon"
  36135. },
  36136. {
  36137. name: "Earth",
  36138. height: math.unit(1.5, "earths"),
  36139. form: "terra",
  36140. default: true
  36141. },
  36142. {
  36143. name: "Super Earth",
  36144. height: math.unit(67.5, "earths"),
  36145. form: "terra"
  36146. },
  36147. {
  36148. name: "Doesn't fit in a solar system...",
  36149. height: math.unit(1, "galaxy"),
  36150. form: "terra"
  36151. },
  36152. {
  36153. name: "Saturn",
  36154. height: math.unit(58232*2, "km"),
  36155. form: "jupiter"
  36156. },
  36157. {
  36158. name: "Jupiter",
  36159. height: math.unit(69911*2, "km"),
  36160. form: "jupiter",
  36161. default: true
  36162. },
  36163. {
  36164. name: "HD 100546 b",
  36165. height: math.unit(482938, "km"),
  36166. form: "jupiter"
  36167. },
  36168. {
  36169. name: "Enceladus",
  36170. height: math.unit(513*2, "km"),
  36171. form: "neptune"
  36172. },
  36173. {
  36174. name: "Europe",
  36175. height: math.unit(1560*2, "km"),
  36176. form: "neptune"
  36177. },
  36178. {
  36179. name: "Neptune",
  36180. height: math.unit(24622*2, "km"),
  36181. form: "neptune",
  36182. default: true
  36183. },
  36184. {
  36185. name: "CoRoT-9b",
  36186. height: math.unit(75067*2, "km"),
  36187. form: "neptune"
  36188. },
  36189. ],
  36190. {
  36191. "normal": {
  36192. name: "Normal",
  36193. default: true
  36194. },
  36195. "demon": {
  36196. name: "Demon"
  36197. },
  36198. "terra": {
  36199. name: "Terra"
  36200. },
  36201. "jupiter": {
  36202. name: "Jupiter"
  36203. },
  36204. "neptune": {
  36205. name: "Neptune"
  36206. }
  36207. }
  36208. ))
  36209. characterMakers.push(() => makeCharacter(
  36210. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36211. {
  36212. front: {
  36213. height: math.unit(16, "feet"),
  36214. weight: math.unit(610, "kg"),
  36215. name: "Front",
  36216. image: {
  36217. source: "./media/characters/huckle/front.svg",
  36218. extra: 1731/1625,
  36219. bottom: 33/1764
  36220. }
  36221. },
  36222. back: {
  36223. height: math.unit(16, "feet"),
  36224. weight: math.unit(610, "kg"),
  36225. name: "Back",
  36226. image: {
  36227. source: "./media/characters/huckle/back.svg",
  36228. extra: 1738/1651,
  36229. bottom: 37/1775
  36230. }
  36231. },
  36232. laughing: {
  36233. height: math.unit(3.75, "feet"),
  36234. name: "Laughing",
  36235. image: {
  36236. source: "./media/characters/huckle/laughing.svg"
  36237. }
  36238. },
  36239. angry: {
  36240. height: math.unit(4.15, "feet"),
  36241. name: "Angry",
  36242. image: {
  36243. source: "./media/characters/huckle/angry.svg"
  36244. }
  36245. },
  36246. },
  36247. [
  36248. {
  36249. name: "Normal",
  36250. height: math.unit(16, "feet"),
  36251. default: true
  36252. },
  36253. {
  36254. name: "Mini Macro",
  36255. height: math.unit(463, "feet")
  36256. },
  36257. {
  36258. name: "Macro",
  36259. height: math.unit(1680, "meters")
  36260. },
  36261. {
  36262. name: "Mega Macro",
  36263. height: math.unit(175, "km")
  36264. },
  36265. {
  36266. name: "Terra Macro",
  36267. height: math.unit(32, "gigameters")
  36268. },
  36269. {
  36270. name: "Multiverse+",
  36271. height: math.unit(2.56e23, "yottameters")
  36272. },
  36273. ]
  36274. ))
  36275. characterMakers.push(() => makeCharacter(
  36276. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36277. {
  36278. front: {
  36279. height: math.unit(6 + 9/12, "feet"),
  36280. weight: math.unit(280, "lb"),
  36281. name: "Front",
  36282. image: {
  36283. source: "./media/characters/candy/front.svg",
  36284. extra: 234/217,
  36285. bottom: 11/245
  36286. }
  36287. },
  36288. },
  36289. [
  36290. {
  36291. name: "Really Small",
  36292. height: math.unit(0.1, "nm")
  36293. },
  36294. {
  36295. name: "Micro",
  36296. height: math.unit(2, "inches")
  36297. },
  36298. {
  36299. name: "Normal",
  36300. height: math.unit(6 + 9/12, "feet"),
  36301. default: true
  36302. },
  36303. {
  36304. name: "Small Macro",
  36305. height: math.unit(69, "feet")
  36306. },
  36307. {
  36308. name: "Macro",
  36309. height: math.unit(160, "feet")
  36310. },
  36311. {
  36312. name: "Megamacro",
  36313. height: math.unit(22000, "miles")
  36314. },
  36315. {
  36316. name: "Gigamacro",
  36317. height: math.unit(50000, "miles")
  36318. },
  36319. ]
  36320. ))
  36321. characterMakers.push(() => makeCharacter(
  36322. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36323. {
  36324. front: {
  36325. height: math.unit(4, "feet"),
  36326. weight: math.unit(90, "lb"),
  36327. name: "Front",
  36328. image: {
  36329. source: "./media/characters/joey-mcdonald/front.svg",
  36330. extra: 1059/852,
  36331. bottom: 33/1092
  36332. }
  36333. },
  36334. back: {
  36335. height: math.unit(4, "feet"),
  36336. weight: math.unit(90, "lb"),
  36337. name: "Back",
  36338. image: {
  36339. source: "./media/characters/joey-mcdonald/back.svg",
  36340. extra: 1077/879,
  36341. bottom: 5/1082
  36342. }
  36343. },
  36344. frontKobold: {
  36345. height: math.unit(4, "feet"),
  36346. weight: math.unit(100, "lb"),
  36347. name: "Front-kobold",
  36348. image: {
  36349. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36350. extra: 1480/1367,
  36351. bottom: 0/1480
  36352. }
  36353. },
  36354. backKobold: {
  36355. height: math.unit(4, "feet"),
  36356. weight: math.unit(100, "lb"),
  36357. name: "Back-kobold",
  36358. image: {
  36359. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36360. extra: 1449/1361,
  36361. bottom: 0/1449
  36362. }
  36363. },
  36364. },
  36365. [
  36366. {
  36367. name: "Normal",
  36368. height: math.unit(4, "feet"),
  36369. default: true
  36370. },
  36371. ]
  36372. ))
  36373. characterMakers.push(() => makeCharacter(
  36374. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36375. {
  36376. front: {
  36377. height: math.unit(12 + 6/12, "feet"),
  36378. name: "Front",
  36379. image: {
  36380. source: "./media/characters/kass-lockheed/front.svg",
  36381. extra: 354/343,
  36382. bottom: 9/363
  36383. }
  36384. },
  36385. back: {
  36386. height: math.unit(12 + 6/12, "feet"),
  36387. name: "Back",
  36388. image: {
  36389. source: "./media/characters/kass-lockheed/back.svg",
  36390. extra: 364/352,
  36391. bottom: 3/367
  36392. }
  36393. },
  36394. dick: {
  36395. height: math.unit(3.12, "feet"),
  36396. name: "Dick",
  36397. image: {
  36398. source: "./media/characters/kass-lockheed/dick.svg"
  36399. }
  36400. },
  36401. head: {
  36402. height: math.unit(2.6, "feet"),
  36403. name: "Head",
  36404. image: {
  36405. source: "./media/characters/kass-lockheed/head.svg"
  36406. }
  36407. },
  36408. bleh: {
  36409. height: math.unit(2.85, "feet"),
  36410. name: "Bleh",
  36411. image: {
  36412. source: "./media/characters/kass-lockheed/bleh.svg"
  36413. }
  36414. },
  36415. smug: {
  36416. height: math.unit(2.85, "feet"),
  36417. name: "Smug",
  36418. image: {
  36419. source: "./media/characters/kass-lockheed/smug.svg"
  36420. }
  36421. },
  36422. },
  36423. [
  36424. {
  36425. name: "Normal",
  36426. height: math.unit(12 + 6/12, "feet"),
  36427. default: true
  36428. },
  36429. ]
  36430. ))
  36431. characterMakers.push(() => makeCharacter(
  36432. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36433. {
  36434. front: {
  36435. height: math.unit(6 + 2/12, "feet"),
  36436. name: "Front",
  36437. image: {
  36438. source: "./media/characters/taylor/front.svg",
  36439. extra: 639/495,
  36440. bottom: 12/651
  36441. }
  36442. },
  36443. },
  36444. [
  36445. {
  36446. name: "Normal",
  36447. height: math.unit(6 + 2/12, "feet"),
  36448. default: true
  36449. },
  36450. {
  36451. name: "Big",
  36452. height: math.unit(15, "feet")
  36453. },
  36454. {
  36455. name: "Lorg",
  36456. height: math.unit(80, "feet")
  36457. },
  36458. {
  36459. name: "Too Lorg",
  36460. height: math.unit(120, "feet")
  36461. },
  36462. ]
  36463. ))
  36464. characterMakers.push(() => makeCharacter(
  36465. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36466. {
  36467. front: {
  36468. height: math.unit(15, "feet"),
  36469. name: "Front",
  36470. image: {
  36471. source: "./media/characters/kaizer/front.svg",
  36472. extra: 1612/1436,
  36473. bottom: 43/1655
  36474. }
  36475. },
  36476. },
  36477. [
  36478. {
  36479. name: "Normal",
  36480. height: math.unit(15, "feet"),
  36481. default: true
  36482. },
  36483. ]
  36484. ))
  36485. characterMakers.push(() => makeCharacter(
  36486. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36487. {
  36488. front: {
  36489. height: math.unit(2, "feet"),
  36490. weight: math.unit(30, "lb"),
  36491. name: "Front",
  36492. image: {
  36493. source: "./media/characters/sandy/front.svg",
  36494. extra: 1439/1307,
  36495. bottom: 194/1633
  36496. }
  36497. },
  36498. },
  36499. [
  36500. {
  36501. name: "Normal",
  36502. height: math.unit(2, "feet"),
  36503. default: true
  36504. },
  36505. ]
  36506. ))
  36507. characterMakers.push(() => makeCharacter(
  36508. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36509. {
  36510. front: {
  36511. height: math.unit(3, "feet"),
  36512. name: "Front",
  36513. image: {
  36514. source: "./media/characters/mellvi/front.svg",
  36515. extra: 1831/1630,
  36516. bottom: 58/1889
  36517. }
  36518. },
  36519. },
  36520. [
  36521. {
  36522. name: "Normal",
  36523. height: math.unit(3, "feet"),
  36524. default: true
  36525. },
  36526. ]
  36527. ))
  36528. characterMakers.push(() => makeCharacter(
  36529. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36530. {
  36531. front: {
  36532. height: math.unit(5 + 11/12, "feet"),
  36533. weight: math.unit(200, "lb"),
  36534. name: "Front",
  36535. image: {
  36536. source: "./media/characters/shirou/front.svg",
  36537. extra: 2491/2383,
  36538. bottom: 189/2680
  36539. }
  36540. },
  36541. back: {
  36542. height: math.unit(5 + 11/12, "feet"),
  36543. weight: math.unit(200, "lb"),
  36544. name: "Back",
  36545. image: {
  36546. source: "./media/characters/shirou/back.svg",
  36547. extra: 2554/2450,
  36548. bottom: 76/2630
  36549. }
  36550. },
  36551. },
  36552. [
  36553. {
  36554. name: "Normal",
  36555. height: math.unit(5 + 11/12, "feet"),
  36556. default: true
  36557. },
  36558. ]
  36559. ))
  36560. characterMakers.push(() => makeCharacter(
  36561. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36562. {
  36563. front: {
  36564. height: math.unit(6 + 3/12, "feet"),
  36565. weight: math.unit(177, "lb"),
  36566. name: "Front",
  36567. image: {
  36568. source: "./media/characters/noryu/front.svg",
  36569. extra: 973/885,
  36570. bottom: 10/983
  36571. }
  36572. },
  36573. },
  36574. [
  36575. {
  36576. name: "Normal",
  36577. height: math.unit(6 + 3/12, "feet"),
  36578. default: true
  36579. },
  36580. ]
  36581. ))
  36582. characterMakers.push(() => makeCharacter(
  36583. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36584. {
  36585. front: {
  36586. height: math.unit(5 + 6/12, "feet"),
  36587. weight: math.unit(170, "lb"),
  36588. name: "Front",
  36589. image: {
  36590. source: "./media/characters/mevolas-rubenido/front.svg",
  36591. extra: 2109/1901,
  36592. bottom: 96/2205
  36593. }
  36594. },
  36595. },
  36596. [
  36597. {
  36598. name: "Normal",
  36599. height: math.unit(5 + 6/12, "feet"),
  36600. default: true
  36601. },
  36602. ]
  36603. ))
  36604. characterMakers.push(() => makeCharacter(
  36605. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36606. {
  36607. front: {
  36608. height: math.unit(100, "feet"),
  36609. name: "Front",
  36610. image: {
  36611. source: "./media/characters/dee/front.svg",
  36612. extra: 2153/2036,
  36613. bottom: 59/2212
  36614. }
  36615. },
  36616. back: {
  36617. height: math.unit(100, "feet"),
  36618. name: "Back",
  36619. image: {
  36620. source: "./media/characters/dee/back.svg",
  36621. extra: 2183/2058,
  36622. bottom: 75/2258
  36623. }
  36624. },
  36625. foot: {
  36626. height: math.unit(19.43, "feet"),
  36627. name: "Foot",
  36628. image: {
  36629. source: "./media/characters/dee/foot.svg"
  36630. }
  36631. },
  36632. hoof: {
  36633. height: math.unit(20.6, "feet"),
  36634. name: "Hoof",
  36635. image: {
  36636. source: "./media/characters/dee/hoof.svg"
  36637. }
  36638. },
  36639. },
  36640. [
  36641. {
  36642. name: "Macro",
  36643. height: math.unit(100, "feet"),
  36644. default: true
  36645. },
  36646. ]
  36647. ))
  36648. characterMakers.push(() => makeCharacter(
  36649. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36650. {
  36651. front: {
  36652. height: math.unit(5 + 6/12, "feet"),
  36653. name: "Front",
  36654. image: {
  36655. source: "./media/characters/teh/front.svg",
  36656. extra: 1002/847,
  36657. bottom: 62/1064
  36658. }
  36659. },
  36660. },
  36661. [
  36662. {
  36663. name: "Normal",
  36664. height: math.unit(5 + 6/12, "feet"),
  36665. default: true
  36666. },
  36667. ]
  36668. ))
  36669. characterMakers.push(() => makeCharacter(
  36670. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36671. {
  36672. side: {
  36673. height: math.unit(6 + 1/12, "feet"),
  36674. weight: math.unit(204, "lb"),
  36675. name: "Side",
  36676. image: {
  36677. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36678. extra: 974/775,
  36679. bottom: 169/1143
  36680. }
  36681. },
  36682. sitting: {
  36683. height: math.unit(6 + 2/12, "feet"),
  36684. weight: math.unit(204, "lb"),
  36685. name: "Sitting",
  36686. image: {
  36687. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36688. extra: 1175/964,
  36689. bottom: 378/1553
  36690. }
  36691. },
  36692. },
  36693. [
  36694. {
  36695. name: "Normal",
  36696. height: math.unit(6 + 1/12, "feet"),
  36697. default: true
  36698. },
  36699. ]
  36700. ))
  36701. characterMakers.push(() => makeCharacter(
  36702. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36703. {
  36704. front: {
  36705. height: math.unit(6, "inches"),
  36706. name: "Front",
  36707. image: {
  36708. source: "./media/characters/tululi/front.svg",
  36709. extra: 1997/1876,
  36710. bottom: 20/2017
  36711. }
  36712. },
  36713. },
  36714. [
  36715. {
  36716. name: "Normal",
  36717. height: math.unit(6, "inches"),
  36718. default: true
  36719. },
  36720. ]
  36721. ))
  36722. characterMakers.push(() => makeCharacter(
  36723. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36724. {
  36725. front: {
  36726. height: math.unit(4 + 1/12, "feet"),
  36727. name: "Front",
  36728. image: {
  36729. source: "./media/characters/star/front.svg",
  36730. extra: 1493/1189,
  36731. bottom: 48/1541
  36732. }
  36733. },
  36734. },
  36735. [
  36736. {
  36737. name: "Normal",
  36738. height: math.unit(4 + 1/12, "feet"),
  36739. default: true
  36740. },
  36741. ]
  36742. ))
  36743. characterMakers.push(() => makeCharacter(
  36744. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36745. {
  36746. front: {
  36747. height: math.unit(6 + 3/12, "feet"),
  36748. name: "Front",
  36749. image: {
  36750. source: "./media/characters/comet/front.svg",
  36751. extra: 1681/1462,
  36752. bottom: 26/1707
  36753. }
  36754. },
  36755. },
  36756. [
  36757. {
  36758. name: "Normal",
  36759. height: math.unit(6 + 3/12, "feet"),
  36760. default: true
  36761. },
  36762. ]
  36763. ))
  36764. characterMakers.push(() => makeCharacter(
  36765. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36766. {
  36767. front: {
  36768. height: math.unit(950, "feet"),
  36769. name: "Front",
  36770. image: {
  36771. source: "./media/characters/vortex/front.svg",
  36772. extra: 1497/1434,
  36773. bottom: 56/1553
  36774. }
  36775. },
  36776. maw: {
  36777. height: math.unit(285, "feet"),
  36778. name: "Maw",
  36779. image: {
  36780. source: "./media/characters/vortex/maw.svg"
  36781. }
  36782. },
  36783. },
  36784. [
  36785. {
  36786. name: "Macro",
  36787. height: math.unit(950, "feet"),
  36788. default: true
  36789. },
  36790. ]
  36791. ))
  36792. characterMakers.push(() => makeCharacter(
  36793. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36794. {
  36795. front: {
  36796. height: math.unit(600, "feet"),
  36797. weight: math.unit(0.02, "grams"),
  36798. name: "Front",
  36799. image: {
  36800. source: "./media/characters/doodle/front.svg",
  36801. extra: 1578/1413,
  36802. bottom: 37/1615
  36803. }
  36804. },
  36805. },
  36806. [
  36807. {
  36808. name: "Macro",
  36809. height: math.unit(600, "feet"),
  36810. default: true
  36811. },
  36812. ]
  36813. ))
  36814. characterMakers.push(() => makeCharacter(
  36815. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36816. {
  36817. front: {
  36818. height: math.unit(6 + 6/12, "feet"),
  36819. name: "Front",
  36820. image: {
  36821. source: "./media/characters/jai/front.svg",
  36822. extra: 1645/1534,
  36823. bottom: 115/1760
  36824. }
  36825. },
  36826. },
  36827. [
  36828. {
  36829. name: "Normal",
  36830. height: math.unit(6 + 6/12, "feet"),
  36831. default: true
  36832. },
  36833. ]
  36834. ))
  36835. characterMakers.push(() => makeCharacter(
  36836. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36837. {
  36838. front: {
  36839. height: math.unit(6 + 8/12, "feet"),
  36840. name: "Front",
  36841. image: {
  36842. source: "./media/characters/pixel/front.svg",
  36843. extra: 1900/1735,
  36844. bottom: 63/1963
  36845. }
  36846. },
  36847. },
  36848. [
  36849. {
  36850. name: "Normal",
  36851. height: math.unit(6 + 8/12, "feet"),
  36852. default: true
  36853. },
  36854. ]
  36855. ))
  36856. characterMakers.push(() => makeCharacter(
  36857. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36858. {
  36859. back: {
  36860. height: math.unit(4 + 1/12, "feet"),
  36861. weight: math.unit(75, "lb"),
  36862. name: "Back",
  36863. image: {
  36864. source: "./media/characters/rhett/back.svg",
  36865. extra: 930/878,
  36866. bottom: 25/955
  36867. }
  36868. },
  36869. front: {
  36870. height: math.unit(4 + 1/12, "feet"),
  36871. weight: math.unit(75, "lb"),
  36872. name: "Front",
  36873. image: {
  36874. source: "./media/characters/rhett/front.svg",
  36875. extra: 1682/1586,
  36876. bottom: 92/1774
  36877. }
  36878. },
  36879. },
  36880. [
  36881. {
  36882. name: "Micro",
  36883. height: math.unit(8, "inches")
  36884. },
  36885. {
  36886. name: "Tiny",
  36887. height: math.unit(2, "feet")
  36888. },
  36889. {
  36890. name: "Normal",
  36891. height: math.unit(4 + 1/12, "feet"),
  36892. default: true
  36893. },
  36894. ]
  36895. ))
  36896. characterMakers.push(() => makeCharacter(
  36897. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36898. {
  36899. front: {
  36900. height: math.unit(3 + 3/12, "feet"),
  36901. name: "Front",
  36902. image: {
  36903. source: "./media/characters/penny/front.svg",
  36904. extra: 1406/1311,
  36905. bottom: 26/1432
  36906. }
  36907. },
  36908. },
  36909. [
  36910. {
  36911. name: "Normal",
  36912. height: math.unit(3 + 3/12, "feet"),
  36913. default: true
  36914. },
  36915. ]
  36916. ))
  36917. characterMakers.push(() => makeCharacter(
  36918. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36919. {
  36920. front: {
  36921. height: math.unit(4 + 11/12, "feet"),
  36922. name: "Front",
  36923. image: {
  36924. source: "./media/characters/monty/front.svg",
  36925. extra: 1479/1209,
  36926. bottom: 0/1479
  36927. }
  36928. },
  36929. },
  36930. [
  36931. {
  36932. name: "Normal",
  36933. height: math.unit(4 + 11/12, "feet"),
  36934. default: true
  36935. },
  36936. ]
  36937. ))
  36938. characterMakers.push(() => makeCharacter(
  36939. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36940. {
  36941. front: {
  36942. height: math.unit(8 + 4/12, "feet"),
  36943. name: "Front",
  36944. image: {
  36945. source: "./media/characters/sterling/front.svg",
  36946. extra: 1420/1236,
  36947. bottom: 27/1447
  36948. }
  36949. },
  36950. },
  36951. [
  36952. {
  36953. name: "Normal",
  36954. height: math.unit(8 + 4/12, "feet"),
  36955. default: true
  36956. },
  36957. ]
  36958. ))
  36959. characterMakers.push(() => makeCharacter(
  36960. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36961. {
  36962. front: {
  36963. height: math.unit(15, "feet"),
  36964. name: "Front",
  36965. image: {
  36966. source: "./media/characters/marble/front.svg",
  36967. extra: 973/937,
  36968. bottom: 32/1005
  36969. }
  36970. },
  36971. },
  36972. [
  36973. {
  36974. name: "Normal",
  36975. height: math.unit(15, "feet"),
  36976. default: true
  36977. },
  36978. ]
  36979. ))
  36980. characterMakers.push(() => makeCharacter(
  36981. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36982. {
  36983. front: {
  36984. height: math.unit(3, "inches"),
  36985. name: "Front",
  36986. image: {
  36987. source: "./media/characters/powder/front.svg",
  36988. extra: 1504/1334,
  36989. bottom: 518/2022
  36990. }
  36991. },
  36992. },
  36993. [
  36994. {
  36995. name: "Normal",
  36996. height: math.unit(3, "inches"),
  36997. default: true
  36998. },
  36999. ]
  37000. ))
  37001. characterMakers.push(() => makeCharacter(
  37002. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37003. {
  37004. front: {
  37005. height: math.unit(4 + 5/12, "feet"),
  37006. name: "Front",
  37007. image: {
  37008. source: "./media/characters/joey-raccoon/front.svg",
  37009. extra: 1273/1197,
  37010. bottom: 0/1273
  37011. }
  37012. },
  37013. },
  37014. [
  37015. {
  37016. name: "Normal",
  37017. height: math.unit(4 + 5/12, "feet"),
  37018. default: true
  37019. },
  37020. ]
  37021. ))
  37022. characterMakers.push(() => makeCharacter(
  37023. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37024. {
  37025. front: {
  37026. height: math.unit(8 + 4/12, "feet"),
  37027. name: "Front",
  37028. image: {
  37029. source: "./media/characters/vick/front.svg",
  37030. extra: 2187/2118,
  37031. bottom: 47/2234
  37032. }
  37033. },
  37034. },
  37035. [
  37036. {
  37037. name: "Normal",
  37038. height: math.unit(8 + 4/12, "feet"),
  37039. default: true
  37040. },
  37041. ]
  37042. ))
  37043. characterMakers.push(() => makeCharacter(
  37044. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37045. {
  37046. front: {
  37047. height: math.unit(5 + 5/12, "feet"),
  37048. name: "Front",
  37049. image: {
  37050. source: "./media/characters/mitsy/front.svg",
  37051. extra: 1842/1695,
  37052. bottom: 0/1842
  37053. }
  37054. },
  37055. },
  37056. [
  37057. {
  37058. name: "Normal",
  37059. height: math.unit(5 + 5/12, "feet"),
  37060. default: true
  37061. },
  37062. ]
  37063. ))
  37064. characterMakers.push(() => makeCharacter(
  37065. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37066. {
  37067. front: {
  37068. height: math.unit(6 + 3/12, "feet"),
  37069. name: "Front",
  37070. image: {
  37071. source: "./media/characters/silvy/front.svg",
  37072. extra: 1995/1836,
  37073. bottom: 225/2220
  37074. }
  37075. },
  37076. },
  37077. [
  37078. {
  37079. name: "Normal",
  37080. height: math.unit(6 + 3/12, "feet"),
  37081. default: true
  37082. },
  37083. ]
  37084. ))
  37085. characterMakers.push(() => makeCharacter(
  37086. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37087. {
  37088. front: {
  37089. height: math.unit(3 + 8/12, "feet"),
  37090. name: "Front",
  37091. image: {
  37092. source: "./media/characters/rodney/front.svg",
  37093. extra: 1956/1747,
  37094. bottom: 31/1987
  37095. }
  37096. },
  37097. frontDressed: {
  37098. height: math.unit(2.9, "feet"),
  37099. name: "Front (Dressed)",
  37100. image: {
  37101. source: "./media/characters/rodney/front-dressed.svg",
  37102. extra: 1382/1241,
  37103. bottom: 385/1767
  37104. }
  37105. },
  37106. },
  37107. [
  37108. {
  37109. name: "Normal",
  37110. height: math.unit(3 + 8/12, "feet"),
  37111. default: true
  37112. },
  37113. ]
  37114. ))
  37115. characterMakers.push(() => makeCharacter(
  37116. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37117. {
  37118. front: {
  37119. height: math.unit(5 + 9/12, "feet"),
  37120. weight: math.unit(194, "lbs"),
  37121. name: "Front",
  37122. image: {
  37123. source: "./media/characters/zakail-sudekai/front.svg",
  37124. extra: 2696/2533,
  37125. bottom: 248/2944
  37126. }
  37127. },
  37128. maw: {
  37129. height: math.unit(1.35, "feet"),
  37130. name: "Maw",
  37131. image: {
  37132. source: "./media/characters/zakail-sudekai/maw.svg"
  37133. }
  37134. },
  37135. },
  37136. [
  37137. {
  37138. name: "Normal",
  37139. height: math.unit(5 + 9/12, "feet"),
  37140. default: true
  37141. },
  37142. ]
  37143. ))
  37144. characterMakers.push(() => makeCharacter(
  37145. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37146. {
  37147. front: {
  37148. height: math.unit(8 + 4/12, "feet"),
  37149. weight: math.unit(1200, "lb"),
  37150. name: "Front",
  37151. image: {
  37152. source: "./media/characters/eleanor/front.svg",
  37153. extra: 1226/1192,
  37154. bottom: 52/1278
  37155. }
  37156. },
  37157. back: {
  37158. height: math.unit(8 + 4/12, "feet"),
  37159. weight: math.unit(1200, "lb"),
  37160. name: "Back",
  37161. image: {
  37162. source: "./media/characters/eleanor/back.svg",
  37163. extra: 1242/1184,
  37164. bottom: 60/1302
  37165. }
  37166. },
  37167. head: {
  37168. height: math.unit(2.62, "feet"),
  37169. name: "Head",
  37170. image: {
  37171. source: "./media/characters/eleanor/head.svg"
  37172. }
  37173. },
  37174. },
  37175. [
  37176. {
  37177. name: "Normal",
  37178. height: math.unit(8 + 4/12, "feet"),
  37179. default: true
  37180. },
  37181. ]
  37182. ))
  37183. characterMakers.push(() => makeCharacter(
  37184. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37185. {
  37186. front: {
  37187. height: math.unit(8 + 4/12, "feet"),
  37188. weight: math.unit(750, "lb"),
  37189. name: "Front",
  37190. image: {
  37191. source: "./media/characters/tanya/front.svg",
  37192. extra: 1749/1615,
  37193. bottom: 33/1782
  37194. }
  37195. },
  37196. },
  37197. [
  37198. {
  37199. name: "Normal",
  37200. height: math.unit(8 + 4/12, "feet"),
  37201. default: true
  37202. },
  37203. ]
  37204. ))
  37205. characterMakers.push(() => makeCharacter(
  37206. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37207. {
  37208. front: {
  37209. height: math.unit(5, "feet"),
  37210. weight: math.unit(225, "lb"),
  37211. name: "Front",
  37212. image: {
  37213. source: "./media/characters/cindy/front.svg",
  37214. extra: 1320/1250,
  37215. bottom: 42/1362
  37216. }
  37217. },
  37218. frontDressed: {
  37219. height: math.unit(5, "feet"),
  37220. weight: math.unit(225, "lb"),
  37221. name: "Front (Dressed)",
  37222. image: {
  37223. source: "./media/characters/cindy/front-dressed.svg",
  37224. extra: 1320/1250,
  37225. bottom: 42/1362
  37226. }
  37227. },
  37228. back: {
  37229. height: math.unit(5, "feet"),
  37230. weight: math.unit(225, "lb"),
  37231. name: "Back",
  37232. image: {
  37233. source: "./media/characters/cindy/back.svg",
  37234. extra: 1384/1346,
  37235. bottom: 14/1398
  37236. }
  37237. },
  37238. },
  37239. [
  37240. {
  37241. name: "Normal",
  37242. height: math.unit(5, "feet"),
  37243. default: true
  37244. },
  37245. ]
  37246. ))
  37247. characterMakers.push(() => makeCharacter(
  37248. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37249. {
  37250. front: {
  37251. height: math.unit(6 + 9/12, "feet"),
  37252. weight: math.unit(440, "lb"),
  37253. name: "Front",
  37254. image: {
  37255. source: "./media/characters/wilbur-owen/front.svg",
  37256. extra: 1575/1448,
  37257. bottom: 72/1647
  37258. }
  37259. },
  37260. back: {
  37261. height: math.unit(6 + 9/12, "feet"),
  37262. weight: math.unit(440, "lb"),
  37263. name: "Back",
  37264. image: {
  37265. source: "./media/characters/wilbur-owen/back.svg",
  37266. extra: 1578/1445,
  37267. bottom: 36/1614
  37268. }
  37269. },
  37270. },
  37271. [
  37272. {
  37273. name: "Normal",
  37274. height: math.unit(6 + 9/12, "feet"),
  37275. default: true
  37276. },
  37277. ]
  37278. ))
  37279. characterMakers.push(() => makeCharacter(
  37280. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37281. {
  37282. front: {
  37283. height: math.unit(6 + 5/12, "feet"),
  37284. weight: math.unit(650, "lb"),
  37285. name: "Front",
  37286. image: {
  37287. source: "./media/characters/keegan/front.svg",
  37288. extra: 2387/2198,
  37289. bottom: 33/2420
  37290. }
  37291. },
  37292. side: {
  37293. height: math.unit(6 + 5/12, "feet"),
  37294. weight: math.unit(650, "lb"),
  37295. name: "Side",
  37296. image: {
  37297. source: "./media/characters/keegan/side.svg",
  37298. extra: 2390/2202,
  37299. bottom: 47/2437
  37300. }
  37301. },
  37302. back: {
  37303. height: math.unit(6 + 5/12, "feet"),
  37304. weight: math.unit(650, "lb"),
  37305. name: "Back",
  37306. image: {
  37307. source: "./media/characters/keegan/back.svg",
  37308. extra: 2418/2268,
  37309. bottom: 15/2433
  37310. }
  37311. },
  37312. frontSfw: {
  37313. height: math.unit(6 + 5/12, "feet"),
  37314. weight: math.unit(650, "lb"),
  37315. name: "Front (SFW)",
  37316. image: {
  37317. source: "./media/characters/keegan/front-sfw.svg",
  37318. extra: 2387/2198,
  37319. bottom: 33/2420
  37320. }
  37321. },
  37322. beans: {
  37323. height: math.unit(1.85, "feet"),
  37324. name: "Beans",
  37325. image: {
  37326. source: "./media/characters/keegan/beans.svg"
  37327. }
  37328. },
  37329. },
  37330. [
  37331. {
  37332. name: "Normal",
  37333. height: math.unit(6 + 5/12, "feet"),
  37334. default: true
  37335. },
  37336. ]
  37337. ))
  37338. characterMakers.push(() => makeCharacter(
  37339. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37340. {
  37341. front: {
  37342. height: math.unit(9, "feet"),
  37343. name: "Front",
  37344. image: {
  37345. source: "./media/characters/colton/front.svg",
  37346. extra: 1589/1326,
  37347. bottom: 139/1728
  37348. }
  37349. },
  37350. },
  37351. [
  37352. {
  37353. name: "Normal",
  37354. height: math.unit(9, "feet"),
  37355. default: true
  37356. },
  37357. ]
  37358. ))
  37359. characterMakers.push(() => makeCharacter(
  37360. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37361. {
  37362. front: {
  37363. height: math.unit(2 + 9/12, "feet"),
  37364. name: "Front",
  37365. image: {
  37366. source: "./media/characters/bora/front.svg",
  37367. extra: 1265/1250,
  37368. bottom: 24/1289
  37369. }
  37370. },
  37371. },
  37372. [
  37373. {
  37374. name: "Normal",
  37375. height: math.unit(2 + 9/12, "feet"),
  37376. default: true
  37377. },
  37378. ]
  37379. ))
  37380. characterMakers.push(() => makeCharacter(
  37381. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37382. {
  37383. front: {
  37384. height: math.unit(8, "feet"),
  37385. name: "Front",
  37386. image: {
  37387. source: "./media/characters/myu-myu/front.svg",
  37388. extra: 1949/1857,
  37389. bottom: 90/2039
  37390. }
  37391. },
  37392. },
  37393. [
  37394. {
  37395. name: "Normal",
  37396. height: math.unit(8, "feet"),
  37397. default: true
  37398. },
  37399. {
  37400. name: "Big",
  37401. height: math.unit(15, "feet")
  37402. },
  37403. {
  37404. name: "BIG",
  37405. height: math.unit(25, "feet")
  37406. },
  37407. ]
  37408. ))
  37409. characterMakers.push(() => makeCharacter(
  37410. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37411. {
  37412. side: {
  37413. height: math.unit(7 + 5/12, "feet"),
  37414. weight: math.unit(2800, "lb"),
  37415. name: "Side",
  37416. image: {
  37417. source: "./media/characters/haloren/side.svg",
  37418. extra: 1793/409,
  37419. bottom: 59/1852
  37420. }
  37421. },
  37422. frontPaw: {
  37423. height: math.unit(2.36, "feet"),
  37424. name: "Front paw",
  37425. image: {
  37426. source: "./media/characters/haloren/front-paw.svg"
  37427. }
  37428. },
  37429. hindPaw: {
  37430. height: math.unit(3.18, "feet"),
  37431. name: "Hind paw",
  37432. image: {
  37433. source: "./media/characters/haloren/hind-paw.svg"
  37434. }
  37435. },
  37436. maw: {
  37437. height: math.unit(5.05, "feet"),
  37438. name: "Maw",
  37439. image: {
  37440. source: "./media/characters/haloren/maw.svg"
  37441. }
  37442. },
  37443. dick: {
  37444. height: math.unit(2.90, "feet"),
  37445. name: "Dick",
  37446. image: {
  37447. source: "./media/characters/haloren/dick.svg"
  37448. }
  37449. },
  37450. },
  37451. [
  37452. {
  37453. name: "Normal",
  37454. height: math.unit(7 + 5/12, "feet"),
  37455. default: true
  37456. },
  37457. {
  37458. name: "Enhanced",
  37459. height: math.unit(14 + 3/12, "feet")
  37460. },
  37461. ]
  37462. ))
  37463. characterMakers.push(() => makeCharacter(
  37464. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37465. {
  37466. front: {
  37467. height: math.unit(171, "cm"),
  37468. name: "Front",
  37469. image: {
  37470. source: "./media/characters/kimmy/front.svg",
  37471. extra: 1491/1435,
  37472. bottom: 53/1544
  37473. }
  37474. },
  37475. },
  37476. [
  37477. {
  37478. name: "Small",
  37479. height: math.unit(9, "cm")
  37480. },
  37481. {
  37482. name: "Normal",
  37483. height: math.unit(171, "cm"),
  37484. default: true
  37485. },
  37486. ]
  37487. ))
  37488. characterMakers.push(() => makeCharacter(
  37489. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37490. {
  37491. front: {
  37492. height: math.unit(8, "feet"),
  37493. weight: math.unit(300, "lb"),
  37494. name: "Front",
  37495. image: {
  37496. source: "./media/characters/galeboomer/front.svg",
  37497. extra: 4651/4415,
  37498. bottom: 162/4813
  37499. }
  37500. },
  37501. back: {
  37502. height: math.unit(8, "feet"),
  37503. weight: math.unit(300, "lb"),
  37504. name: "Back",
  37505. image: {
  37506. source: "./media/characters/galeboomer/back.svg",
  37507. extra: 4544/4314,
  37508. bottom: 16/4560
  37509. }
  37510. },
  37511. frontAlt: {
  37512. height: math.unit(8, "feet"),
  37513. weight: math.unit(300, "lb"),
  37514. name: "Front (Alt)",
  37515. image: {
  37516. source: "./media/characters/galeboomer/front-alt.svg",
  37517. extra: 4458/4228,
  37518. bottom: 68/4526
  37519. }
  37520. },
  37521. maw: {
  37522. height: math.unit(1.2, "feet"),
  37523. name: "Maw",
  37524. image: {
  37525. source: "./media/characters/galeboomer/maw.svg"
  37526. }
  37527. },
  37528. },
  37529. [
  37530. {
  37531. name: "Normal",
  37532. height: math.unit(8, "feet"),
  37533. default: true
  37534. },
  37535. ]
  37536. ))
  37537. characterMakers.push(() => makeCharacter(
  37538. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37539. {
  37540. front: {
  37541. height: math.unit(5 + 9/12, "feet"),
  37542. weight: math.unit(120, "lb"),
  37543. name: "Front",
  37544. image: {
  37545. source: "./media/characters/chyr/front.svg",
  37546. extra: 1323/1254,
  37547. bottom: 63/1386
  37548. }
  37549. },
  37550. back: {
  37551. height: math.unit(5 + 9/12, "feet"),
  37552. weight: math.unit(120, "lb"),
  37553. name: "Back",
  37554. image: {
  37555. source: "./media/characters/chyr/back.svg",
  37556. extra: 1323/1252,
  37557. bottom: 48/1371
  37558. }
  37559. },
  37560. },
  37561. [
  37562. {
  37563. name: "Normal",
  37564. height: math.unit(5 + 9/12, "feet"),
  37565. default: true
  37566. },
  37567. ]
  37568. ))
  37569. characterMakers.push(() => makeCharacter(
  37570. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37571. {
  37572. front: {
  37573. height: math.unit(7, "feet"),
  37574. weight: math.unit(310, "lb"),
  37575. name: "Front",
  37576. image: {
  37577. source: "./media/characters/solarus/front.svg",
  37578. extra: 2415/2021,
  37579. bottom: 103/2518
  37580. }
  37581. },
  37582. back: {
  37583. height: math.unit(7, "feet"),
  37584. weight: math.unit(310, "lb"),
  37585. name: "Back",
  37586. image: {
  37587. source: "./media/characters/solarus/back.svg",
  37588. extra: 2463/2089,
  37589. bottom: 79/2542
  37590. }
  37591. },
  37592. },
  37593. [
  37594. {
  37595. name: "Normal",
  37596. height: math.unit(7, "feet"),
  37597. default: true
  37598. },
  37599. ]
  37600. ))
  37601. characterMakers.push(() => makeCharacter(
  37602. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37603. {
  37604. front: {
  37605. height: math.unit(16, "feet"),
  37606. name: "Front",
  37607. image: {
  37608. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37609. extra: 1844/1780,
  37610. bottom: 58/1902
  37611. }
  37612. },
  37613. winterCoat: {
  37614. height: math.unit(16, "feet"),
  37615. name: "Winter Coat",
  37616. image: {
  37617. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37618. extra: 1807/1775,
  37619. bottom: 69/1876
  37620. }
  37621. },
  37622. },
  37623. [
  37624. {
  37625. name: "Normal",
  37626. height: math.unit(16, "feet"),
  37627. default: true
  37628. },
  37629. {
  37630. name: "Chicago Size",
  37631. height: math.unit(560, "feet")
  37632. },
  37633. ]
  37634. ))
  37635. characterMakers.push(() => makeCharacter(
  37636. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37637. {
  37638. front: {
  37639. height: math.unit(11 + 6/12, "feet"),
  37640. weight: math.unit(1366, "lb"),
  37641. name: "Front",
  37642. image: {
  37643. source: "./media/characters/lexor/front.svg",
  37644. extra: 1560/1481,
  37645. bottom: 211/1771
  37646. }
  37647. },
  37648. back: {
  37649. height: math.unit(11 + 6/12, "feet"),
  37650. weight: math.unit(1366, "lb"),
  37651. name: "Back",
  37652. image: {
  37653. source: "./media/characters/lexor/back.svg",
  37654. extra: 1614/1533,
  37655. bottom: 76/1690
  37656. }
  37657. },
  37658. maw: {
  37659. height: math.unit(3, "feet"),
  37660. name: "Maw",
  37661. image: {
  37662. source: "./media/characters/lexor/maw.svg"
  37663. }
  37664. },
  37665. dick: {
  37666. height: math.unit(2.59, "feet"),
  37667. name: "Dick",
  37668. image: {
  37669. source: "./media/characters/lexor/dick.svg"
  37670. }
  37671. },
  37672. },
  37673. [
  37674. {
  37675. name: "Normal",
  37676. height: math.unit(11 + 6/12, "feet"),
  37677. default: true
  37678. },
  37679. ]
  37680. ))
  37681. characterMakers.push(() => makeCharacter(
  37682. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37683. {
  37684. front: {
  37685. height: math.unit(5 + 8/12, "feet"),
  37686. name: "Front",
  37687. image: {
  37688. source: "./media/characters/magnum/front.svg",
  37689. extra: 942/855,
  37690. bottom: 26/968
  37691. }
  37692. },
  37693. },
  37694. [
  37695. {
  37696. name: "Normal",
  37697. height: math.unit(5 + 8/12, "feet"),
  37698. default: true
  37699. },
  37700. ]
  37701. ))
  37702. characterMakers.push(() => makeCharacter(
  37703. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37704. {
  37705. front: {
  37706. height: math.unit(18 + 4/12, "feet"),
  37707. weight: math.unit(1500, "kg"),
  37708. name: "Front",
  37709. image: {
  37710. source: "./media/characters/solas-sharpsman/front.svg",
  37711. extra: 1698/1589,
  37712. bottom: 0/1698
  37713. }
  37714. },
  37715. },
  37716. [
  37717. {
  37718. name: "Normal",
  37719. height: math.unit(18 + 4/12, "feet"),
  37720. default: true
  37721. },
  37722. ]
  37723. ))
  37724. characterMakers.push(() => makeCharacter(
  37725. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37726. {
  37727. front: {
  37728. height: math.unit(5 + 5/12, "feet"),
  37729. weight: math.unit(180, "lb"),
  37730. name: "Front",
  37731. image: {
  37732. source: "./media/characters/october/front.svg",
  37733. extra: 1800/1650,
  37734. bottom: 0/1800
  37735. }
  37736. },
  37737. frontNsfw: {
  37738. height: math.unit(5 + 5/12, "feet"),
  37739. weight: math.unit(180, "lb"),
  37740. name: "Front (NSFW)",
  37741. image: {
  37742. source: "./media/characters/october/front-nsfw.svg",
  37743. extra: 1392/1307,
  37744. bottom: 42/1434
  37745. }
  37746. },
  37747. },
  37748. [
  37749. {
  37750. name: "Normal",
  37751. height: math.unit(5 + 5/12, "feet"),
  37752. default: true
  37753. },
  37754. ]
  37755. ))
  37756. characterMakers.push(() => makeCharacter(
  37757. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37758. {
  37759. front: {
  37760. height: math.unit(8 + 6/12, "feet"),
  37761. name: "Front",
  37762. image: {
  37763. source: "./media/characters/essynkardi/front.svg",
  37764. extra: 1914/1846,
  37765. bottom: 22/1936
  37766. }
  37767. },
  37768. },
  37769. [
  37770. {
  37771. name: "Normal",
  37772. height: math.unit(8 + 6/12, "feet"),
  37773. default: true
  37774. },
  37775. ]
  37776. ))
  37777. characterMakers.push(() => makeCharacter(
  37778. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37779. {
  37780. front: {
  37781. height: math.unit(6 + 6/12, "feet"),
  37782. weight: math.unit(7, "lb"),
  37783. name: "Front",
  37784. image: {
  37785. source: "./media/characters/icky/front.svg",
  37786. extra: 813/782,
  37787. bottom: 66/879
  37788. }
  37789. },
  37790. back: {
  37791. height: math.unit(6 + 6/12, "feet"),
  37792. weight: math.unit(7, "lb"),
  37793. name: "Back",
  37794. image: {
  37795. source: "./media/characters/icky/back.svg",
  37796. extra: 754/735,
  37797. bottom: 56/810
  37798. }
  37799. },
  37800. },
  37801. [
  37802. {
  37803. name: "Normal",
  37804. height: math.unit(6 + 6/12, "feet"),
  37805. default: true
  37806. },
  37807. ]
  37808. ))
  37809. characterMakers.push(() => makeCharacter(
  37810. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37811. {
  37812. front: {
  37813. height: math.unit(15, "feet"),
  37814. name: "Front",
  37815. image: {
  37816. source: "./media/characters/rojas/front.svg",
  37817. extra: 1462/1408,
  37818. bottom: 95/1557
  37819. }
  37820. },
  37821. back: {
  37822. height: math.unit(15, "feet"),
  37823. name: "Back",
  37824. image: {
  37825. source: "./media/characters/rojas/back.svg",
  37826. extra: 1023/954,
  37827. bottom: 28/1051
  37828. }
  37829. },
  37830. },
  37831. [
  37832. {
  37833. name: "Normal",
  37834. height: math.unit(15, "feet"),
  37835. default: true
  37836. },
  37837. ]
  37838. ))
  37839. characterMakers.push(() => makeCharacter(
  37840. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37841. {
  37842. frontHuman: {
  37843. height: math.unit(5 + 7/12, "feet"),
  37844. name: "Front (Human)",
  37845. image: {
  37846. source: "./media/characters/alek-dryagan/front-human.svg",
  37847. extra: 1687/1667,
  37848. bottom: 69/1756
  37849. }
  37850. },
  37851. backHuman: {
  37852. height: math.unit(5 + 7/12, "feet"),
  37853. name: "Back (Human)",
  37854. image: {
  37855. source: "./media/characters/alek-dryagan/back-human.svg",
  37856. extra: 1670/1649,
  37857. bottom: 65/1735
  37858. }
  37859. },
  37860. frontDemi: {
  37861. height: math.unit(65, "feet"),
  37862. name: "Front (Demi)",
  37863. image: {
  37864. source: "./media/characters/alek-dryagan/front-demi.svg",
  37865. extra: 1669/1642,
  37866. bottom: 49/1718
  37867. }
  37868. },
  37869. backDemi: {
  37870. height: math.unit(65, "feet"),
  37871. name: "Back (Demi)",
  37872. image: {
  37873. source: "./media/characters/alek-dryagan/back-demi.svg",
  37874. extra: 1658/1637,
  37875. bottom: 40/1698
  37876. }
  37877. },
  37878. mawHuman: {
  37879. height: math.unit(0.3, "feet"),
  37880. name: "Maw (Human)",
  37881. image: {
  37882. source: "./media/characters/alek-dryagan/maw-human.svg"
  37883. }
  37884. },
  37885. mawDemi: {
  37886. height: math.unit(3.8, "feet"),
  37887. name: "Maw (Demi)",
  37888. image: {
  37889. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37890. }
  37891. },
  37892. },
  37893. [
  37894. {
  37895. name: "Normal",
  37896. height: math.unit(5 + 7/12, "feet"),
  37897. default: true
  37898. },
  37899. ]
  37900. ))
  37901. characterMakers.push(() => makeCharacter(
  37902. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37903. {
  37904. frontHuman: {
  37905. height: math.unit(5 + 2/12, "feet"),
  37906. name: "Front (Human)",
  37907. image: {
  37908. source: "./media/characters/gen/front-human.svg",
  37909. extra: 1627/1538,
  37910. bottom: 71/1698
  37911. }
  37912. },
  37913. backHuman: {
  37914. height: math.unit(5 + 2/12, "feet"),
  37915. name: "Back (Human)",
  37916. image: {
  37917. source: "./media/characters/gen/back-human.svg",
  37918. extra: 1638/1548,
  37919. bottom: 69/1707
  37920. }
  37921. },
  37922. frontDemi: {
  37923. height: math.unit(5 + 2/12, "feet"),
  37924. name: "Front (Demi)",
  37925. image: {
  37926. source: "./media/characters/gen/front-demi.svg",
  37927. extra: 1627/1538,
  37928. bottom: 71/1698
  37929. }
  37930. },
  37931. backDemi: {
  37932. height: math.unit(5 + 2/12, "feet"),
  37933. name: "Back (Demi)",
  37934. image: {
  37935. source: "./media/characters/gen/back-demi.svg",
  37936. extra: 1638/1548,
  37937. bottom: 69/1707
  37938. }
  37939. },
  37940. },
  37941. [
  37942. {
  37943. name: "Normal",
  37944. height: math.unit(5 + 2/12, "feet"),
  37945. default: true
  37946. },
  37947. ]
  37948. ))
  37949. characterMakers.push(() => makeCharacter(
  37950. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37951. {
  37952. frontImp: {
  37953. height: math.unit(1 + 11/12, "feet"),
  37954. name: "Front (Imp)",
  37955. image: {
  37956. source: "./media/characters/max-kobold/front-imp.svg",
  37957. extra: 1238/1134,
  37958. bottom: 81/1319
  37959. }
  37960. },
  37961. backImp: {
  37962. height: math.unit(1 + 11/12, "feet"),
  37963. name: "Back (Imp)",
  37964. image: {
  37965. source: "./media/characters/max-kobold/back-imp.svg",
  37966. extra: 1334/1175,
  37967. bottom: 34/1368
  37968. }
  37969. },
  37970. frontDemi: {
  37971. height: math.unit(5 + 9/12, "feet"),
  37972. name: "Front (Demi)",
  37973. image: {
  37974. source: "./media/characters/max-kobold/front-demi.svg",
  37975. extra: 1715/1685,
  37976. bottom: 54/1769
  37977. }
  37978. },
  37979. backDemi: {
  37980. height: math.unit(5 + 9/12, "feet"),
  37981. name: "Back (Demi)",
  37982. image: {
  37983. source: "./media/characters/max-kobold/back-demi.svg",
  37984. extra: 1752/1729,
  37985. bottom: 41/1793
  37986. }
  37987. },
  37988. handImp: {
  37989. height: math.unit(0.45, "feet"),
  37990. name: "Hand (Imp)",
  37991. image: {
  37992. source: "./media/characters/max-kobold/hand.svg"
  37993. }
  37994. },
  37995. pawImp: {
  37996. height: math.unit(0.46, "feet"),
  37997. name: "Paw (Imp)",
  37998. image: {
  37999. source: "./media/characters/max-kobold/paw.svg"
  38000. }
  38001. },
  38002. handDemi: {
  38003. height: math.unit(0.80, "feet"),
  38004. name: "Hand (Demi)",
  38005. image: {
  38006. source: "./media/characters/max-kobold/hand.svg"
  38007. }
  38008. },
  38009. pawDemi: {
  38010. height: math.unit(1.1, "feet"),
  38011. name: "Paw (Demi)",
  38012. image: {
  38013. source: "./media/characters/max-kobold/paw.svg"
  38014. }
  38015. },
  38016. headImp: {
  38017. height: math.unit(1.33, "feet"),
  38018. name: "Head (Imp)",
  38019. image: {
  38020. source: "./media/characters/max-kobold/head-imp.svg"
  38021. }
  38022. },
  38023. mawImp: {
  38024. height: math.unit(0.75, "feet"),
  38025. name: "Maw (Imp)",
  38026. image: {
  38027. source: "./media/characters/max-kobold/maw-imp.svg"
  38028. }
  38029. },
  38030. mawDemi: {
  38031. height: math.unit(0.42, "feet"),
  38032. name: "Maw (Demi)",
  38033. image: {
  38034. source: "./media/characters/max-kobold/maw-demi.svg"
  38035. }
  38036. },
  38037. },
  38038. [
  38039. {
  38040. name: "Normal",
  38041. height: math.unit(1 + 11/12, "feet"),
  38042. default: true
  38043. },
  38044. ]
  38045. ))
  38046. characterMakers.push(() => makeCharacter(
  38047. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38048. {
  38049. front: {
  38050. height: math.unit(7 + 5/12, "feet"),
  38051. name: "Front",
  38052. image: {
  38053. source: "./media/characters/carbon/front.svg",
  38054. extra: 1754/1689,
  38055. bottom: 65/1819
  38056. }
  38057. },
  38058. back: {
  38059. height: math.unit(7 + 5/12, "feet"),
  38060. name: "Back",
  38061. image: {
  38062. source: "./media/characters/carbon/back.svg",
  38063. extra: 1762/1695,
  38064. bottom: 24/1786
  38065. }
  38066. },
  38067. frontGigantamax: {
  38068. height: math.unit(150, "feet"),
  38069. name: "Front (Gigantamax)",
  38070. image: {
  38071. source: "./media/characters/carbon/front-gigantamax.svg",
  38072. extra: 1826/1669,
  38073. bottom: 59/1885
  38074. }
  38075. },
  38076. backGigantamax: {
  38077. height: math.unit(150, "feet"),
  38078. name: "Back (Gigantamax)",
  38079. image: {
  38080. source: "./media/characters/carbon/back-gigantamax.svg",
  38081. extra: 1796/1653,
  38082. bottom: 53/1849
  38083. }
  38084. },
  38085. maw: {
  38086. height: math.unit(0.48, "feet"),
  38087. name: "Maw",
  38088. image: {
  38089. source: "./media/characters/carbon/maw.svg"
  38090. }
  38091. },
  38092. mawGigantamax: {
  38093. height: math.unit(7.5, "feet"),
  38094. name: "Maw (Gigantamax)",
  38095. image: {
  38096. source: "./media/characters/carbon/maw-gigantamax.svg"
  38097. }
  38098. },
  38099. },
  38100. [
  38101. {
  38102. name: "Normal",
  38103. height: math.unit(7 + 5/12, "feet"),
  38104. default: true
  38105. },
  38106. ]
  38107. ))
  38108. characterMakers.push(() => makeCharacter(
  38109. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38110. {
  38111. front: {
  38112. height: math.unit(6, "feet"),
  38113. name: "Front",
  38114. image: {
  38115. source: "./media/characters/maverick/front.svg",
  38116. extra: 1672/1661,
  38117. bottom: 85/1757
  38118. }
  38119. },
  38120. back: {
  38121. height: math.unit(6, "feet"),
  38122. name: "Back",
  38123. image: {
  38124. source: "./media/characters/maverick/back.svg",
  38125. extra: 1642/1631,
  38126. bottom: 38/1680
  38127. }
  38128. },
  38129. },
  38130. [
  38131. {
  38132. name: "Normal",
  38133. height: math.unit(6, "feet"),
  38134. default: true
  38135. },
  38136. ]
  38137. ))
  38138. characterMakers.push(() => makeCharacter(
  38139. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38140. {
  38141. front: {
  38142. height: math.unit(15, "feet"),
  38143. weight: math.unit(615, "lb"),
  38144. name: "Front",
  38145. image: {
  38146. source: "./media/characters/grockle/front.svg",
  38147. extra: 1535/1427,
  38148. bottom: 56/1591
  38149. }
  38150. },
  38151. },
  38152. [
  38153. {
  38154. name: "Normal",
  38155. height: math.unit(15, "feet"),
  38156. default: true
  38157. },
  38158. {
  38159. name: "Large",
  38160. height: math.unit(150, "feet")
  38161. },
  38162. {
  38163. name: "Macro",
  38164. height: math.unit(1876, "feet")
  38165. },
  38166. {
  38167. name: "Mega Macro",
  38168. height: math.unit(121940, "feet")
  38169. },
  38170. {
  38171. name: "Giga Macro",
  38172. height: math.unit(750, "km")
  38173. },
  38174. {
  38175. name: "Tera Macro",
  38176. height: math.unit(750000, "km")
  38177. },
  38178. {
  38179. name: "Galactic",
  38180. height: math.unit(1.4e5, "km")
  38181. },
  38182. {
  38183. name: "Godlike",
  38184. height: math.unit(9.8e280, "galaxies")
  38185. },
  38186. ]
  38187. ))
  38188. characterMakers.push(() => makeCharacter(
  38189. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38190. {
  38191. front: {
  38192. height: math.unit(11, "meters"),
  38193. weight: math.unit(20, "tonnes"),
  38194. name: "Front",
  38195. image: {
  38196. source: "./media/characters/alistair/front.svg",
  38197. extra: 1265/1009,
  38198. bottom: 93/1358
  38199. }
  38200. },
  38201. },
  38202. [
  38203. {
  38204. name: "Normal",
  38205. height: math.unit(11, "meters"),
  38206. default: true
  38207. },
  38208. ]
  38209. ))
  38210. characterMakers.push(() => makeCharacter(
  38211. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38212. {
  38213. front: {
  38214. height: math.unit(5 + 8/12, "feet"),
  38215. name: "Front",
  38216. image: {
  38217. source: "./media/characters/haruka/front.svg",
  38218. extra: 2012/1952,
  38219. bottom: 0/2012
  38220. }
  38221. },
  38222. },
  38223. [
  38224. {
  38225. name: "Normal",
  38226. height: math.unit(5 + 8/12, "feet"),
  38227. default: true
  38228. },
  38229. ]
  38230. ))
  38231. characterMakers.push(() => makeCharacter(
  38232. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38233. {
  38234. back: {
  38235. height: math.unit(9, "feet"),
  38236. name: "Back",
  38237. image: {
  38238. source: "./media/characters/vivian-sylveon/back.svg",
  38239. extra: 1853/1714,
  38240. bottom: 0/1853
  38241. }
  38242. },
  38243. },
  38244. [
  38245. {
  38246. name: "Normal",
  38247. height: math.unit(9, "feet"),
  38248. default: true
  38249. },
  38250. {
  38251. name: "Macro",
  38252. height: math.unit(500, "feet")
  38253. },
  38254. {
  38255. name: "Megamacro",
  38256. height: math.unit(600, "miles")
  38257. },
  38258. {
  38259. name: "Gigamacro",
  38260. height: math.unit(30000, "miles")
  38261. },
  38262. ]
  38263. ))
  38264. characterMakers.push(() => makeCharacter(
  38265. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38266. {
  38267. anthro: {
  38268. height: math.unit(5 + 10/12, "feet"),
  38269. weight: math.unit(100, "lb"),
  38270. name: "Anthro",
  38271. image: {
  38272. source: "./media/characters/daiki/anthro.svg",
  38273. extra: 1115/1027,
  38274. bottom: 69/1184
  38275. }
  38276. },
  38277. feral: {
  38278. height: math.unit(200, "feet"),
  38279. name: "Feral",
  38280. image: {
  38281. source: "./media/characters/daiki/feral.svg",
  38282. extra: 1256/313,
  38283. bottom: 39/1295
  38284. }
  38285. },
  38286. feralHead: {
  38287. height: math.unit(171, "feet"),
  38288. name: "Feral Head",
  38289. image: {
  38290. source: "./media/characters/daiki/feral-head.svg"
  38291. }
  38292. },
  38293. manaDragon: {
  38294. height: math.unit(170, "meters"),
  38295. name: "Mana-dragon",
  38296. image: {
  38297. source: "./media/characters/daiki/mana-dragon.svg",
  38298. extra: 763/420,
  38299. bottom: 97/860
  38300. }
  38301. },
  38302. },
  38303. [
  38304. {
  38305. name: "Normal",
  38306. height: math.unit(5 + 10/12, "feet"),
  38307. default: true
  38308. },
  38309. ]
  38310. ))
  38311. characterMakers.push(() => makeCharacter(
  38312. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38313. {
  38314. fullyEquippedFront: {
  38315. height: math.unit(3 + 1/12, "feet"),
  38316. weight: math.unit(24, "lb"),
  38317. name: "Fully Equipped (Front)",
  38318. image: {
  38319. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38320. extra: 687/605,
  38321. bottom: 18/705
  38322. }
  38323. },
  38324. fullyEquippedBack: {
  38325. height: math.unit(3 + 1/12, "feet"),
  38326. weight: math.unit(24, "lb"),
  38327. name: "Fully Equipped (Back)",
  38328. image: {
  38329. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38330. extra: 689/590,
  38331. bottom: 18/707
  38332. }
  38333. },
  38334. dailyWear: {
  38335. height: math.unit(3 + 1/12, "feet"),
  38336. weight: math.unit(24, "lb"),
  38337. name: "Daily Wear",
  38338. image: {
  38339. source: "./media/characters/tea-spot/daily-wear.svg",
  38340. extra: 701/620,
  38341. bottom: 21/722
  38342. }
  38343. },
  38344. maidWork: {
  38345. height: math.unit(3 + 1/12, "feet"),
  38346. weight: math.unit(24, "lb"),
  38347. name: "Maid Work",
  38348. image: {
  38349. source: "./media/characters/tea-spot/maid-work.svg",
  38350. extra: 693/609,
  38351. bottom: 15/708
  38352. }
  38353. },
  38354. },
  38355. [
  38356. {
  38357. name: "Normal",
  38358. height: math.unit(3 + 1/12, "feet"),
  38359. default: true
  38360. },
  38361. ]
  38362. ))
  38363. characterMakers.push(() => makeCharacter(
  38364. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38365. {
  38366. front: {
  38367. height: math.unit(175, "cm"),
  38368. weight: math.unit(75, "kg"),
  38369. name: "Front",
  38370. image: {
  38371. source: "./media/characters/chee/front.svg",
  38372. extra: 1796/1740,
  38373. bottom: 40/1836
  38374. }
  38375. },
  38376. },
  38377. [
  38378. {
  38379. name: "Micro-Micro",
  38380. height: math.unit(1, "nm")
  38381. },
  38382. {
  38383. name: "Micro-erst",
  38384. height: math.unit(1, "micrometer")
  38385. },
  38386. {
  38387. name: "Micro-er",
  38388. height: math.unit(1, "cm")
  38389. },
  38390. {
  38391. name: "Normal",
  38392. height: math.unit(175, "cm"),
  38393. default: true
  38394. },
  38395. {
  38396. name: "Macro",
  38397. height: math.unit(100, "m")
  38398. },
  38399. {
  38400. name: "Macro-er",
  38401. height: math.unit(1, "km")
  38402. },
  38403. {
  38404. name: "Macro-erst",
  38405. height: math.unit(10, "km")
  38406. },
  38407. {
  38408. name: "Macro-Macro",
  38409. height: math.unit(100, "km")
  38410. },
  38411. ]
  38412. ))
  38413. characterMakers.push(() => makeCharacter(
  38414. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38415. {
  38416. front: {
  38417. height: math.unit(11 + 9/12, "feet"),
  38418. weight: math.unit(935, "lb"),
  38419. name: "Front",
  38420. image: {
  38421. source: "./media/characters/kingsley/front.svg",
  38422. extra: 1803/1674,
  38423. bottom: 127/1930
  38424. }
  38425. },
  38426. frontNude: {
  38427. height: math.unit(11 + 9/12, "feet"),
  38428. weight: math.unit(935, "lb"),
  38429. name: "Front (Nude)",
  38430. image: {
  38431. source: "./media/characters/kingsley/front-nude.svg",
  38432. extra: 1803/1674,
  38433. bottom: 127/1930
  38434. }
  38435. },
  38436. },
  38437. [
  38438. {
  38439. name: "Normal",
  38440. height: math.unit(11 + 9/12, "feet"),
  38441. default: true
  38442. },
  38443. ]
  38444. ))
  38445. characterMakers.push(() => makeCharacter(
  38446. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38447. {
  38448. side: {
  38449. height: math.unit(9, "feet"),
  38450. name: "Side",
  38451. image: {
  38452. source: "./media/characters/rymel/side.svg",
  38453. extra: 792/469,
  38454. bottom: 121/913
  38455. }
  38456. },
  38457. maw: {
  38458. height: math.unit(2.4, "meters"),
  38459. name: "Maw",
  38460. image: {
  38461. source: "./media/characters/rymel/maw.svg"
  38462. }
  38463. },
  38464. },
  38465. [
  38466. {
  38467. name: "House Drake",
  38468. height: math.unit(2, "feet")
  38469. },
  38470. {
  38471. name: "Reduced",
  38472. height: math.unit(4.5, "feet")
  38473. },
  38474. {
  38475. name: "Normal",
  38476. height: math.unit(9, "feet"),
  38477. default: true
  38478. },
  38479. ]
  38480. ))
  38481. characterMakers.push(() => makeCharacter(
  38482. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38483. {
  38484. front: {
  38485. height: math.unit(1.74, "meters"),
  38486. weight: math.unit(55, "kg"),
  38487. name: "Front",
  38488. image: {
  38489. source: "./media/characters/rubus/front.svg",
  38490. extra: 1894/1742,
  38491. bottom: 44/1938
  38492. }
  38493. },
  38494. },
  38495. [
  38496. {
  38497. name: "Normal",
  38498. height: math.unit(1.74, "meters"),
  38499. default: true
  38500. },
  38501. ]
  38502. ))
  38503. characterMakers.push(() => makeCharacter(
  38504. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38505. {
  38506. front: {
  38507. height: math.unit(5 + 2/12, "feet"),
  38508. weight: math.unit(112, "lb"),
  38509. name: "Front",
  38510. image: {
  38511. source: "./media/characters/cassie-kingston/front.svg",
  38512. extra: 1438/1390,
  38513. bottom: 47/1485
  38514. }
  38515. },
  38516. },
  38517. [
  38518. {
  38519. name: "Normal",
  38520. height: math.unit(5 + 2/12, "feet"),
  38521. default: true
  38522. },
  38523. {
  38524. name: "Macro",
  38525. height: math.unit(128, "feet")
  38526. },
  38527. {
  38528. name: "Megamacro",
  38529. height: math.unit(2.56, "miles")
  38530. },
  38531. ]
  38532. ))
  38533. characterMakers.push(() => makeCharacter(
  38534. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38535. {
  38536. front: {
  38537. height: math.unit(7, "feet"),
  38538. name: "Front",
  38539. image: {
  38540. source: "./media/characters/fox/front.svg",
  38541. extra: 1798/1703,
  38542. bottom: 55/1853
  38543. }
  38544. },
  38545. back: {
  38546. height: math.unit(7, "feet"),
  38547. name: "Back",
  38548. image: {
  38549. source: "./media/characters/fox/back.svg",
  38550. extra: 1748/1649,
  38551. bottom: 32/1780
  38552. }
  38553. },
  38554. head: {
  38555. height: math.unit(1.95, "feet"),
  38556. name: "Head",
  38557. image: {
  38558. source: "./media/characters/fox/head.svg"
  38559. }
  38560. },
  38561. dick: {
  38562. height: math.unit(1.33, "feet"),
  38563. name: "Dick",
  38564. image: {
  38565. source: "./media/characters/fox/dick.svg"
  38566. }
  38567. },
  38568. foot: {
  38569. height: math.unit(1, "feet"),
  38570. name: "Foot",
  38571. image: {
  38572. source: "./media/characters/fox/foot.svg"
  38573. }
  38574. },
  38575. paw: {
  38576. height: math.unit(0.92, "feet"),
  38577. name: "Paw",
  38578. image: {
  38579. source: "./media/characters/fox/paw.svg"
  38580. }
  38581. },
  38582. },
  38583. [
  38584. {
  38585. name: "Small",
  38586. height: math.unit(3, "inches")
  38587. },
  38588. {
  38589. name: "\"Realistic\"",
  38590. height: math.unit(7, "feet")
  38591. },
  38592. {
  38593. name: "Normal",
  38594. height: math.unit(150, "feet"),
  38595. default: true
  38596. },
  38597. {
  38598. name: "BIG",
  38599. height: math.unit(1200, "feet")
  38600. },
  38601. {
  38602. name: "👀",
  38603. height: math.unit(5, "miles")
  38604. },
  38605. {
  38606. name: "👀👀👀",
  38607. height: math.unit(64, "miles")
  38608. },
  38609. ]
  38610. ))
  38611. characterMakers.push(() => makeCharacter(
  38612. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38613. {
  38614. front: {
  38615. height: math.unit(625, "feet"),
  38616. name: "Front",
  38617. image: {
  38618. source: "./media/characters/asonja-rossa/front.svg",
  38619. extra: 1833/1686,
  38620. bottom: 24/1857
  38621. }
  38622. },
  38623. back: {
  38624. height: math.unit(625, "feet"),
  38625. name: "Back",
  38626. image: {
  38627. source: "./media/characters/asonja-rossa/back.svg",
  38628. extra: 1852/1753,
  38629. bottom: 26/1878
  38630. }
  38631. },
  38632. },
  38633. [
  38634. {
  38635. name: "Macro",
  38636. height: math.unit(625, "feet"),
  38637. default: true
  38638. },
  38639. ]
  38640. ))
  38641. characterMakers.push(() => makeCharacter(
  38642. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38643. {
  38644. side: {
  38645. height: math.unit(8, "feet"),
  38646. name: "Side",
  38647. image: {
  38648. source: "./media/characters/rezukii/side.svg",
  38649. extra: 979/542,
  38650. bottom: 87/1066
  38651. }
  38652. },
  38653. sitting: {
  38654. height: math.unit(14.6, "feet"),
  38655. name: "Sitting",
  38656. image: {
  38657. source: "./media/characters/rezukii/sitting.svg",
  38658. extra: 1023/813,
  38659. bottom: 45/1068
  38660. }
  38661. },
  38662. },
  38663. [
  38664. {
  38665. name: "Tiny",
  38666. height: math.unit(2, "feet")
  38667. },
  38668. {
  38669. name: "Smol",
  38670. height: math.unit(4, "feet")
  38671. },
  38672. {
  38673. name: "Normal",
  38674. height: math.unit(8, "feet"),
  38675. default: true
  38676. },
  38677. {
  38678. name: "Big",
  38679. height: math.unit(12, "feet")
  38680. },
  38681. {
  38682. name: "Macro",
  38683. height: math.unit(30, "feet")
  38684. },
  38685. ]
  38686. ))
  38687. characterMakers.push(() => makeCharacter(
  38688. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38689. {
  38690. front: {
  38691. height: math.unit(14, "feet"),
  38692. weight: math.unit(9.5, "tonnes"),
  38693. name: "Front",
  38694. image: {
  38695. source: "./media/characters/dawnheart/front.svg",
  38696. extra: 2792/2675,
  38697. bottom: 64/2856
  38698. }
  38699. },
  38700. },
  38701. [
  38702. {
  38703. name: "Normal",
  38704. height: math.unit(14, "feet"),
  38705. default: true
  38706. },
  38707. ]
  38708. ))
  38709. characterMakers.push(() => makeCharacter(
  38710. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38711. {
  38712. front: {
  38713. height: math.unit(1.7, "m"),
  38714. name: "Front",
  38715. image: {
  38716. source: "./media/characters/gladi/front.svg",
  38717. extra: 1460/1362,
  38718. bottom: 19/1479
  38719. }
  38720. },
  38721. back: {
  38722. height: math.unit(1.7, "m"),
  38723. name: "Back",
  38724. image: {
  38725. source: "./media/characters/gladi/back.svg",
  38726. extra: 1459/1357,
  38727. bottom: 12/1471
  38728. }
  38729. },
  38730. feral: {
  38731. height: math.unit(2.05, "m"),
  38732. name: "Feral",
  38733. image: {
  38734. source: "./media/characters/gladi/feral.svg",
  38735. extra: 821/557,
  38736. bottom: 91/912
  38737. }
  38738. },
  38739. },
  38740. [
  38741. {
  38742. name: "Shortest",
  38743. height: math.unit(70, "cm")
  38744. },
  38745. {
  38746. name: "Normal",
  38747. height: math.unit(1.7, "m")
  38748. },
  38749. {
  38750. name: "Macro",
  38751. height: math.unit(10, "m"),
  38752. default: true
  38753. },
  38754. {
  38755. name: "Tallest",
  38756. height: math.unit(200, "m")
  38757. },
  38758. ]
  38759. ))
  38760. characterMakers.push(() => makeCharacter(
  38761. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38762. {
  38763. front: {
  38764. height: math.unit(5 + 7/12, "feet"),
  38765. weight: math.unit(2, "tons"),
  38766. name: "Front",
  38767. image: {
  38768. source: "./media/characters/erdno/front.svg",
  38769. extra: 1234/1129,
  38770. bottom: 35/1269
  38771. }
  38772. },
  38773. angled: {
  38774. height: math.unit(5 + 7/12, "feet"),
  38775. weight: math.unit(2, "tons"),
  38776. name: "Angled",
  38777. image: {
  38778. source: "./media/characters/erdno/angled.svg",
  38779. extra: 1185/1139,
  38780. bottom: 36/1221
  38781. }
  38782. },
  38783. side: {
  38784. height: math.unit(5 + 7/12, "feet"),
  38785. weight: math.unit(2, "tons"),
  38786. name: "Side",
  38787. image: {
  38788. source: "./media/characters/erdno/side.svg",
  38789. extra: 1191/1144,
  38790. bottom: 40/1231
  38791. }
  38792. },
  38793. back: {
  38794. height: math.unit(5 + 7/12, "feet"),
  38795. weight: math.unit(2, "tons"),
  38796. name: "Back",
  38797. image: {
  38798. source: "./media/characters/erdno/back.svg",
  38799. extra: 1202/1146,
  38800. bottom: 17/1219
  38801. }
  38802. },
  38803. frontNsfw: {
  38804. height: math.unit(5 + 7/12, "feet"),
  38805. weight: math.unit(2, "tons"),
  38806. name: "Front (NSFW)",
  38807. image: {
  38808. source: "./media/characters/erdno/front-nsfw.svg",
  38809. extra: 1234/1129,
  38810. bottom: 35/1269
  38811. }
  38812. },
  38813. angledNsfw: {
  38814. height: math.unit(5 + 7/12, "feet"),
  38815. weight: math.unit(2, "tons"),
  38816. name: "Angled (NSFW)",
  38817. image: {
  38818. source: "./media/characters/erdno/angled-nsfw.svg",
  38819. extra: 1185/1139,
  38820. bottom: 36/1221
  38821. }
  38822. },
  38823. sideNsfw: {
  38824. height: math.unit(5 + 7/12, "feet"),
  38825. weight: math.unit(2, "tons"),
  38826. name: "Side (NSFW)",
  38827. image: {
  38828. source: "./media/characters/erdno/side-nsfw.svg",
  38829. extra: 1191/1144,
  38830. bottom: 40/1231
  38831. }
  38832. },
  38833. backNsfw: {
  38834. height: math.unit(5 + 7/12, "feet"),
  38835. weight: math.unit(2, "tons"),
  38836. name: "Back (NSFW)",
  38837. image: {
  38838. source: "./media/characters/erdno/back-nsfw.svg",
  38839. extra: 1202/1146,
  38840. bottom: 17/1219
  38841. }
  38842. },
  38843. frontHyper: {
  38844. height: math.unit(5 + 7/12, "feet"),
  38845. weight: math.unit(2, "tons"),
  38846. name: "Front (Hyper)",
  38847. image: {
  38848. source: "./media/characters/erdno/front-hyper.svg",
  38849. extra: 1298/1136,
  38850. bottom: 35/1333
  38851. }
  38852. },
  38853. },
  38854. [
  38855. {
  38856. name: "Normal",
  38857. height: math.unit(5 + 7/12, "feet"),
  38858. default: true
  38859. },
  38860. {
  38861. name: "Big",
  38862. height: math.unit(5.7, "meters")
  38863. },
  38864. {
  38865. name: "Macro",
  38866. height: math.unit(5.7, "kilometers")
  38867. },
  38868. {
  38869. name: "Megamacro",
  38870. height: math.unit(5.7, "earths")
  38871. },
  38872. ]
  38873. ))
  38874. characterMakers.push(() => makeCharacter(
  38875. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38876. {
  38877. front: {
  38878. height: math.unit(5 + 10/12, "feet"),
  38879. weight: math.unit(150, "lb"),
  38880. name: "Front",
  38881. image: {
  38882. source: "./media/characters/jamie/front.svg",
  38883. extra: 1908/1768,
  38884. bottom: 19/1927
  38885. }
  38886. },
  38887. },
  38888. [
  38889. {
  38890. name: "Minimum",
  38891. height: math.unit(2, "cm")
  38892. },
  38893. {
  38894. name: "Micro",
  38895. height: math.unit(3, "inches")
  38896. },
  38897. {
  38898. name: "Normal",
  38899. height: math.unit(5 + 10/12, "feet"),
  38900. default: true
  38901. },
  38902. {
  38903. name: "Macro",
  38904. height: math.unit(150, "feet")
  38905. },
  38906. {
  38907. name: "Megamacro",
  38908. height: math.unit(10000, "m")
  38909. },
  38910. ]
  38911. ))
  38912. characterMakers.push(() => makeCharacter(
  38913. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38914. {
  38915. front: {
  38916. height: math.unit(2, "meters"),
  38917. weight: math.unit(100, "kg"),
  38918. name: "Front",
  38919. image: {
  38920. source: "./media/characters/shiron/front.svg",
  38921. extra: 2103/1985,
  38922. bottom: 98/2201
  38923. }
  38924. },
  38925. back: {
  38926. height: math.unit(2, "meters"),
  38927. weight: math.unit(100, "kg"),
  38928. name: "Back",
  38929. image: {
  38930. source: "./media/characters/shiron/back.svg",
  38931. extra: 2110/2015,
  38932. bottom: 89/2199
  38933. }
  38934. },
  38935. hand: {
  38936. height: math.unit(0.96, "feet"),
  38937. name: "Hand",
  38938. image: {
  38939. source: "./media/characters/shiron/hand.svg"
  38940. }
  38941. },
  38942. foot: {
  38943. height: math.unit(1.464, "feet"),
  38944. name: "Foot",
  38945. image: {
  38946. source: "./media/characters/shiron/foot.svg"
  38947. }
  38948. },
  38949. },
  38950. [
  38951. {
  38952. name: "Normal",
  38953. height: math.unit(2, "meters")
  38954. },
  38955. {
  38956. name: "Macro",
  38957. height: math.unit(500, "meters"),
  38958. default: true
  38959. },
  38960. {
  38961. name: "Megamacro",
  38962. height: math.unit(20, "km")
  38963. },
  38964. ]
  38965. ))
  38966. characterMakers.push(() => makeCharacter(
  38967. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38968. {
  38969. front: {
  38970. height: math.unit(6, "feet"),
  38971. name: "Front",
  38972. image: {
  38973. source: "./media/characters/sam/front.svg",
  38974. extra: 849/826,
  38975. bottom: 19/868
  38976. }
  38977. },
  38978. },
  38979. [
  38980. {
  38981. name: "Normal",
  38982. height: math.unit(6, "feet"),
  38983. default: true
  38984. },
  38985. ]
  38986. ))
  38987. characterMakers.push(() => makeCharacter(
  38988. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38989. {
  38990. front: {
  38991. height: math.unit(8 + 4/12, "feet"),
  38992. weight: math.unit(122, "kg"),
  38993. name: "Front",
  38994. image: {
  38995. source: "./media/characters/namori-kurogawa/front.svg",
  38996. extra: 1894/1576,
  38997. bottom: 34/1928
  38998. }
  38999. },
  39000. },
  39001. [
  39002. {
  39003. name: "Normal",
  39004. height: math.unit(8 + 4/12, "feet"),
  39005. default: true
  39006. },
  39007. ]
  39008. ))
  39009. characterMakers.push(() => makeCharacter(
  39010. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39011. {
  39012. front: {
  39013. height: math.unit(9, "feet"),
  39014. weight: math.unit(621, "lb"),
  39015. name: "Front",
  39016. image: {
  39017. source: "./media/characters/unmru/front.svg",
  39018. extra: 1853/1747,
  39019. bottom: 73/1926
  39020. }
  39021. },
  39022. side: {
  39023. height: math.unit(9, "feet"),
  39024. weight: math.unit(621, "lb"),
  39025. name: "Side",
  39026. image: {
  39027. source: "./media/characters/unmru/side.svg",
  39028. extra: 1781/1671,
  39029. bottom: 127/1908
  39030. }
  39031. },
  39032. back: {
  39033. height: math.unit(9, "feet"),
  39034. weight: math.unit(621, "lb"),
  39035. name: "Back",
  39036. image: {
  39037. source: "./media/characters/unmru/back.svg",
  39038. extra: 1894/1765,
  39039. bottom: 75/1969
  39040. }
  39041. },
  39042. dick: {
  39043. height: math.unit(3, "feet"),
  39044. weight: math.unit(35, "lb"),
  39045. name: "Dick",
  39046. image: {
  39047. source: "./media/characters/unmru/dick.svg"
  39048. }
  39049. },
  39050. },
  39051. [
  39052. {
  39053. name: "Normal",
  39054. height: math.unit(9, "feet")
  39055. },
  39056. {
  39057. name: "Natural",
  39058. height: math.unit(27, "feet"),
  39059. default: true
  39060. },
  39061. {
  39062. name: "Giant",
  39063. height: math.unit(90, "feet")
  39064. },
  39065. {
  39066. name: "Kaiju",
  39067. height: math.unit(270, "feet")
  39068. },
  39069. {
  39070. name: "Macro",
  39071. height: math.unit(900, "feet")
  39072. },
  39073. {
  39074. name: "Macro+",
  39075. height: math.unit(2700, "feet")
  39076. },
  39077. {
  39078. name: "Megamacro",
  39079. height: math.unit(9000, "feet")
  39080. },
  39081. {
  39082. name: "City-Crushing",
  39083. height: math.unit(27000, "feet")
  39084. },
  39085. {
  39086. name: "Mountain-Mashing",
  39087. height: math.unit(90000, "feet")
  39088. },
  39089. {
  39090. name: "Earth-Eclipsing",
  39091. height: math.unit(2.7e8, "feet")
  39092. },
  39093. {
  39094. name: "Sol-Swallowing",
  39095. height: math.unit(9e10, "feet")
  39096. },
  39097. {
  39098. name: "Majoris-Munching",
  39099. height: math.unit(2.7e13, "feet")
  39100. },
  39101. ]
  39102. ))
  39103. characterMakers.push(() => makeCharacter(
  39104. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39105. {
  39106. front: {
  39107. height: math.unit(1, "inch"),
  39108. name: "Front",
  39109. image: {
  39110. source: "./media/characters/squeaks-mouse/front.svg",
  39111. extra: 352/308,
  39112. bottom: 25/377
  39113. }
  39114. },
  39115. },
  39116. [
  39117. {
  39118. name: "Micro",
  39119. height: math.unit(1, "inch"),
  39120. default: true
  39121. },
  39122. ]
  39123. ))
  39124. characterMakers.push(() => makeCharacter(
  39125. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39126. {
  39127. side: {
  39128. height: math.unit(35, "feet"),
  39129. name: "Side",
  39130. image: {
  39131. source: "./media/characters/sayko/side.svg",
  39132. extra: 1697/1021,
  39133. bottom: 82/1779
  39134. }
  39135. },
  39136. head: {
  39137. height: math.unit(16, "feet"),
  39138. name: "Head",
  39139. image: {
  39140. source: "./media/characters/sayko/head.svg"
  39141. }
  39142. },
  39143. forepaw: {
  39144. height: math.unit(7.85, "feet"),
  39145. name: "Forepaw",
  39146. image: {
  39147. source: "./media/characters/sayko/forepaw.svg"
  39148. }
  39149. },
  39150. hindpaw: {
  39151. height: math.unit(8.8, "feet"),
  39152. name: "Hindpaw",
  39153. image: {
  39154. source: "./media/characters/sayko/hindpaw.svg"
  39155. }
  39156. },
  39157. },
  39158. [
  39159. {
  39160. name: "Normal",
  39161. height: math.unit(35, "feet"),
  39162. default: true
  39163. },
  39164. {
  39165. name: "Colossus",
  39166. height: math.unit(100, "meters")
  39167. },
  39168. {
  39169. name: "\"Small\" Deity",
  39170. height: math.unit(1, "km")
  39171. },
  39172. {
  39173. name: "\"Large\" Deity",
  39174. height: math.unit(15, "km")
  39175. },
  39176. ]
  39177. ))
  39178. characterMakers.push(() => makeCharacter(
  39179. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39180. {
  39181. front: {
  39182. height: math.unit(6, "feet"),
  39183. weight: math.unit(250, "lb"),
  39184. name: "Front",
  39185. image: {
  39186. source: "./media/characters/mukiro/front.svg",
  39187. extra: 1368/1310,
  39188. bottom: 34/1402
  39189. }
  39190. },
  39191. },
  39192. [
  39193. {
  39194. name: "Normal",
  39195. height: math.unit(6, "feet"),
  39196. default: true
  39197. },
  39198. ]
  39199. ))
  39200. characterMakers.push(() => makeCharacter(
  39201. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39202. {
  39203. front: {
  39204. height: math.unit(12 + 4/12, "feet"),
  39205. name: "Front",
  39206. image: {
  39207. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39208. extra: 1346/1311,
  39209. bottom: 65/1411
  39210. }
  39211. },
  39212. },
  39213. [
  39214. {
  39215. name: "Base",
  39216. height: math.unit(12 + 4/12, "feet"),
  39217. default: true
  39218. },
  39219. {
  39220. name: "Macro",
  39221. height: math.unit(150, "feet")
  39222. },
  39223. {
  39224. name: "Mega",
  39225. height: math.unit(2, "miles")
  39226. },
  39227. {
  39228. name: "Demi God",
  39229. height: math.unit(4, "AU")
  39230. },
  39231. {
  39232. name: "God Size",
  39233. height: math.unit(1, "universe")
  39234. },
  39235. ]
  39236. ))
  39237. characterMakers.push(() => makeCharacter(
  39238. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39239. {
  39240. front: {
  39241. height: math.unit(3 + 3/12, "feet"),
  39242. weight: math.unit(88, "lb"),
  39243. name: "Front",
  39244. image: {
  39245. source: "./media/characters/trey/front.svg",
  39246. extra: 1815/1509,
  39247. bottom: 60/1875
  39248. }
  39249. },
  39250. },
  39251. [
  39252. {
  39253. name: "Normal",
  39254. height: math.unit(3 + 3/12, "feet"),
  39255. default: true
  39256. },
  39257. ]
  39258. ))
  39259. characterMakers.push(() => makeCharacter(
  39260. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39261. {
  39262. front: {
  39263. height: math.unit(4, "meters"),
  39264. name: "Front",
  39265. image: {
  39266. source: "./media/characters/adelonda/front.svg",
  39267. extra: 1077/982,
  39268. bottom: 39/1116
  39269. }
  39270. },
  39271. back: {
  39272. height: math.unit(4, "meters"),
  39273. name: "Back",
  39274. image: {
  39275. source: "./media/characters/adelonda/back.svg",
  39276. extra: 1105/1003,
  39277. bottom: 25/1130
  39278. }
  39279. },
  39280. feral: {
  39281. height: math.unit(40/1.5, "meters"),
  39282. name: "Feral",
  39283. image: {
  39284. source: "./media/characters/adelonda/feral.svg",
  39285. extra: 597/271,
  39286. bottom: 387/984
  39287. }
  39288. },
  39289. },
  39290. [
  39291. {
  39292. name: "Normal",
  39293. height: math.unit(4, "meters"),
  39294. default: true
  39295. },
  39296. ]
  39297. ))
  39298. characterMakers.push(() => makeCharacter(
  39299. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39300. {
  39301. front: {
  39302. height: math.unit(8 + 4/12, "feet"),
  39303. weight: math.unit(670, "lb"),
  39304. name: "Front",
  39305. image: {
  39306. source: "./media/characters/acadiel/front.svg",
  39307. extra: 1901/1595,
  39308. bottom: 142/2043
  39309. }
  39310. },
  39311. },
  39312. [
  39313. {
  39314. name: "Normal",
  39315. height: math.unit(8 + 4/12, "feet"),
  39316. default: true
  39317. },
  39318. {
  39319. name: "Macro",
  39320. height: math.unit(200, "feet")
  39321. },
  39322. ]
  39323. ))
  39324. characterMakers.push(() => makeCharacter(
  39325. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39326. {
  39327. front: {
  39328. height: math.unit(6 + 2/12, "feet"),
  39329. weight: math.unit(185, "lb"),
  39330. name: "Front",
  39331. image: {
  39332. source: "./media/characters/kayne-ein/front.svg",
  39333. extra: 1780/1560,
  39334. bottom: 81/1861
  39335. }
  39336. },
  39337. },
  39338. [
  39339. {
  39340. name: "Normal",
  39341. height: math.unit(6 + 2/12, "feet"),
  39342. default: true
  39343. },
  39344. {
  39345. name: "Transformation Stage",
  39346. height: math.unit(15, "feet")
  39347. },
  39348. {
  39349. name: "Macro",
  39350. height: math.unit(150, "feet")
  39351. },
  39352. {
  39353. name: "Earth's Shadow",
  39354. height: math.unit(6200, "miles")
  39355. },
  39356. {
  39357. name: "Universal Demon",
  39358. height: math.unit(28e9, "parsecs")
  39359. },
  39360. {
  39361. name: "Multiverse God",
  39362. height: math.unit(3, "multiverses")
  39363. },
  39364. ]
  39365. ))
  39366. characterMakers.push(() => makeCharacter(
  39367. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39368. {
  39369. front: {
  39370. height: math.unit(5 + 5/12, "feet"),
  39371. name: "Front",
  39372. image: {
  39373. source: "./media/characters/fawn/front.svg",
  39374. extra: 1873/1731,
  39375. bottom: 95/1968
  39376. }
  39377. },
  39378. back: {
  39379. height: math.unit(5 + 5/12, "feet"),
  39380. name: "Back",
  39381. image: {
  39382. source: "./media/characters/fawn/back.svg",
  39383. extra: 1813/1700,
  39384. bottom: 14/1827
  39385. }
  39386. },
  39387. hoof: {
  39388. height: math.unit(1.45, "feet"),
  39389. name: "Hoof",
  39390. image: {
  39391. source: "./media/characters/fawn/hoof.svg"
  39392. }
  39393. },
  39394. },
  39395. [
  39396. {
  39397. name: "Normal",
  39398. height: math.unit(5 + 5/12, "feet"),
  39399. default: true
  39400. },
  39401. ]
  39402. ))
  39403. characterMakers.push(() => makeCharacter(
  39404. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39405. {
  39406. front: {
  39407. height: math.unit(2 + 5/12, "feet"),
  39408. name: "Front",
  39409. image: {
  39410. source: "./media/characters/orion/front.svg",
  39411. extra: 1366/1304,
  39412. bottom: 43/1409
  39413. }
  39414. },
  39415. paw: {
  39416. height: math.unit(0.52, "feet"),
  39417. name: "Paw",
  39418. image: {
  39419. source: "./media/characters/orion/paw.svg"
  39420. }
  39421. },
  39422. },
  39423. [
  39424. {
  39425. name: "Normal",
  39426. height: math.unit(2 + 5/12, "feet"),
  39427. default: true
  39428. },
  39429. ]
  39430. ))
  39431. characterMakers.push(() => makeCharacter(
  39432. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39433. {
  39434. front: {
  39435. height: math.unit(5 + 10/12, "feet"),
  39436. name: "Front",
  39437. image: {
  39438. source: "./media/characters/vera/front.svg",
  39439. extra: 1680/1575,
  39440. bottom: 49/1729
  39441. }
  39442. },
  39443. back: {
  39444. height: math.unit(5 + 10/12, "feet"),
  39445. name: "Back",
  39446. image: {
  39447. source: "./media/characters/vera/back.svg",
  39448. extra: 1700/1588,
  39449. bottom: 18/1718
  39450. }
  39451. },
  39452. arcanine: {
  39453. height: math.unit(6 + 8/12, "feet"),
  39454. name: "Arcanine",
  39455. image: {
  39456. source: "./media/characters/vera/arcanine.svg",
  39457. extra: 1590/1511,
  39458. bottom: 71/1661
  39459. }
  39460. },
  39461. maw: {
  39462. height: math.unit(0.82, "feet"),
  39463. name: "Maw",
  39464. image: {
  39465. source: "./media/characters/vera/maw.svg"
  39466. }
  39467. },
  39468. mawArcanine: {
  39469. height: math.unit(0.97, "feet"),
  39470. name: "Maw (Arcanine)",
  39471. image: {
  39472. source: "./media/characters/vera/maw-arcanine.svg"
  39473. }
  39474. },
  39475. paw: {
  39476. height: math.unit(0.75, "feet"),
  39477. name: "Paw",
  39478. image: {
  39479. source: "./media/characters/vera/paw.svg"
  39480. }
  39481. },
  39482. pawprint: {
  39483. height: math.unit(0.52, "feet"),
  39484. name: "Pawprint",
  39485. image: {
  39486. source: "./media/characters/vera/pawprint.svg"
  39487. }
  39488. },
  39489. },
  39490. [
  39491. {
  39492. name: "Normal",
  39493. height: math.unit(5 + 10/12, "feet"),
  39494. default: true
  39495. },
  39496. {
  39497. name: "Macro",
  39498. height: math.unit(75, "feet")
  39499. },
  39500. ]
  39501. ))
  39502. characterMakers.push(() => makeCharacter(
  39503. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39504. {
  39505. front: {
  39506. height: math.unit(4, "feet"),
  39507. weight: math.unit(40, "lb"),
  39508. name: "Front",
  39509. image: {
  39510. source: "./media/characters/orvan-rabbit/front.svg",
  39511. extra: 1896/1642,
  39512. bottom: 29/1925
  39513. }
  39514. },
  39515. },
  39516. [
  39517. {
  39518. name: "Normal",
  39519. height: math.unit(4, "feet"),
  39520. default: true
  39521. },
  39522. ]
  39523. ))
  39524. characterMakers.push(() => makeCharacter(
  39525. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39526. {
  39527. front: {
  39528. height: math.unit(6, "feet"),
  39529. weight: math.unit(168, "lb"),
  39530. name: "Front",
  39531. image: {
  39532. source: "./media/characters/lisa/front.svg",
  39533. extra: 2065/1867,
  39534. bottom: 46/2111
  39535. }
  39536. },
  39537. back: {
  39538. height: math.unit(6, "feet"),
  39539. weight: math.unit(168, "lb"),
  39540. name: "Back",
  39541. image: {
  39542. source: "./media/characters/lisa/back.svg",
  39543. extra: 1982/1838,
  39544. bottom: 29/2011
  39545. }
  39546. },
  39547. maw: {
  39548. height: math.unit(0.81, "feet"),
  39549. name: "Maw",
  39550. image: {
  39551. source: "./media/characters/lisa/maw.svg"
  39552. }
  39553. },
  39554. paw: {
  39555. height: math.unit(0.9, "feet"),
  39556. name: "Paw",
  39557. image: {
  39558. source: "./media/characters/lisa/paw.svg"
  39559. }
  39560. },
  39561. caribousune: {
  39562. height: math.unit(7 + 2/12, "feet"),
  39563. weight: math.unit(268, "lb"),
  39564. name: "Caribousune",
  39565. image: {
  39566. source: "./media/characters/lisa/caribousune.svg",
  39567. extra: 1843/1633,
  39568. bottom: 29/1872
  39569. }
  39570. },
  39571. frontCaribousune: {
  39572. height: math.unit(7 + 2/12, "feet"),
  39573. weight: math.unit(268, "lb"),
  39574. name: "Front (Caribousune)",
  39575. image: {
  39576. source: "./media/characters/lisa/front-caribousune.svg",
  39577. extra: 1818/1638,
  39578. bottom: 52/1870
  39579. }
  39580. },
  39581. sideCaribousune: {
  39582. height: math.unit(7 + 2/12, "feet"),
  39583. weight: math.unit(268, "lb"),
  39584. name: "Side (Caribousune)",
  39585. image: {
  39586. source: "./media/characters/lisa/side-caribousune.svg",
  39587. extra: 1851/1635,
  39588. bottom: 16/1867
  39589. }
  39590. },
  39591. backCaribousune: {
  39592. height: math.unit(7 + 2/12, "feet"),
  39593. weight: math.unit(268, "lb"),
  39594. name: "Back (Caribousune)",
  39595. image: {
  39596. source: "./media/characters/lisa/back-caribousune.svg",
  39597. extra: 1801/1604,
  39598. bottom: 44/1845
  39599. }
  39600. },
  39601. caribou: {
  39602. height: math.unit(7 + 2/12, "feet"),
  39603. weight: math.unit(268, "lb"),
  39604. name: "Caribou",
  39605. image: {
  39606. source: "./media/characters/lisa/caribou.svg",
  39607. extra: 1843/1633,
  39608. bottom: 29/1872
  39609. }
  39610. },
  39611. frontCaribou: {
  39612. height: math.unit(7 + 2/12, "feet"),
  39613. weight: math.unit(268, "lb"),
  39614. name: "Front (Caribou)",
  39615. image: {
  39616. source: "./media/characters/lisa/front-caribou.svg",
  39617. extra: 1818/1638,
  39618. bottom: 52/1870
  39619. }
  39620. },
  39621. sideCaribou: {
  39622. height: math.unit(7 + 2/12, "feet"),
  39623. weight: math.unit(268, "lb"),
  39624. name: "Side (Caribou)",
  39625. image: {
  39626. source: "./media/characters/lisa/side-caribou.svg",
  39627. extra: 1851/1635,
  39628. bottom: 16/1867
  39629. }
  39630. },
  39631. backCaribou: {
  39632. height: math.unit(7 + 2/12, "feet"),
  39633. weight: math.unit(268, "lb"),
  39634. name: "Back (Caribou)",
  39635. image: {
  39636. source: "./media/characters/lisa/back-caribou.svg",
  39637. extra: 1801/1604,
  39638. bottom: 44/1845
  39639. }
  39640. },
  39641. mawCaribou: {
  39642. height: math.unit(1.45, "feet"),
  39643. name: "Maw (Caribou)",
  39644. image: {
  39645. source: "./media/characters/lisa/maw-caribou.svg"
  39646. }
  39647. },
  39648. mawCaribousune: {
  39649. height: math.unit(1.45, "feet"),
  39650. name: "Maw (Caribousune)",
  39651. image: {
  39652. source: "./media/characters/lisa/maw-caribousune.svg"
  39653. }
  39654. },
  39655. pawCaribousune: {
  39656. height: math.unit(1.61, "feet"),
  39657. name: "Paw (Caribou)",
  39658. image: {
  39659. source: "./media/characters/lisa/paw-caribousune.svg"
  39660. }
  39661. },
  39662. },
  39663. [
  39664. {
  39665. name: "Normal",
  39666. height: math.unit(6, "feet")
  39667. },
  39668. {
  39669. name: "God Size",
  39670. height: math.unit(72, "feet"),
  39671. default: true
  39672. },
  39673. {
  39674. name: "Towering",
  39675. height: math.unit(288, "feet")
  39676. },
  39677. {
  39678. name: "City Size",
  39679. height: math.unit(48384, "feet")
  39680. },
  39681. {
  39682. name: "Continental",
  39683. height: math.unit(4200, "miles")
  39684. },
  39685. {
  39686. name: "Planet Eater",
  39687. height: math.unit(42, "earths")
  39688. },
  39689. {
  39690. name: "Star Swallower",
  39691. height: math.unit(42, "solarradii")
  39692. },
  39693. {
  39694. name: "System Swallower",
  39695. height: math.unit(84000, "AU")
  39696. },
  39697. {
  39698. name: "Galaxy Gobbler",
  39699. height: math.unit(42, "galaxies")
  39700. },
  39701. {
  39702. name: "Universe Devourer",
  39703. height: math.unit(42, "universes")
  39704. },
  39705. {
  39706. name: "Multiverse Muncher",
  39707. height: math.unit(42, "multiverses")
  39708. },
  39709. ]
  39710. ))
  39711. characterMakers.push(() => makeCharacter(
  39712. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39713. {
  39714. front: {
  39715. height: math.unit(36, "feet"),
  39716. name: "Front",
  39717. image: {
  39718. source: "./media/characters/shadow-rat/front.svg",
  39719. extra: 1845/1758,
  39720. bottom: 83/1928
  39721. }
  39722. },
  39723. },
  39724. [
  39725. {
  39726. name: "Macro",
  39727. height: math.unit(36, "feet"),
  39728. default: true
  39729. },
  39730. ]
  39731. ))
  39732. characterMakers.push(() => makeCharacter(
  39733. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39734. {
  39735. side: {
  39736. height: math.unit(8, "feet"),
  39737. weight: math.unit(2630, "lb"),
  39738. name: "Side",
  39739. image: {
  39740. source: "./media/characters/torallia/side.svg",
  39741. extra: 2164/2021,
  39742. bottom: 371/2535
  39743. }
  39744. },
  39745. },
  39746. [
  39747. {
  39748. name: "Mortal Interaction",
  39749. height: math.unit(8, "feet")
  39750. },
  39751. {
  39752. name: "Natural",
  39753. height: math.unit(24, "feet"),
  39754. default: true
  39755. },
  39756. {
  39757. name: "Giant",
  39758. height: math.unit(80, "feet")
  39759. },
  39760. {
  39761. name: "Kaiju",
  39762. height: math.unit(240, "feet")
  39763. },
  39764. {
  39765. name: "Macro",
  39766. height: math.unit(800, "feet")
  39767. },
  39768. {
  39769. name: "Macro+",
  39770. height: math.unit(2400, "feet")
  39771. },
  39772. {
  39773. name: "Macro++",
  39774. height: math.unit(8000, "feet")
  39775. },
  39776. {
  39777. name: "City-Crushing",
  39778. height: math.unit(24000, "feet")
  39779. },
  39780. {
  39781. name: "Mountain-Mashing",
  39782. height: math.unit(80000, "feet")
  39783. },
  39784. {
  39785. name: "District Demolisher",
  39786. height: math.unit(240000, "feet")
  39787. },
  39788. {
  39789. name: "Tri-County Terror",
  39790. height: math.unit(800000, "feet")
  39791. },
  39792. {
  39793. name: "State Smasher",
  39794. height: math.unit(2.4e6, "feet")
  39795. },
  39796. {
  39797. name: "Nation Nemesis",
  39798. height: math.unit(8e6, "feet")
  39799. },
  39800. {
  39801. name: "Continent Cracker",
  39802. height: math.unit(2.4e7, "feet")
  39803. },
  39804. {
  39805. name: "Planet-Pillaging",
  39806. height: math.unit(8e7, "feet")
  39807. },
  39808. {
  39809. name: "Earth-Eclipsing",
  39810. height: math.unit(2.4e8, "feet")
  39811. },
  39812. {
  39813. name: "Jovian-Jostling",
  39814. height: math.unit(8e8, "feet")
  39815. },
  39816. {
  39817. name: "Gas Giant Gulper",
  39818. height: math.unit(2.4e9, "feet")
  39819. },
  39820. {
  39821. name: "Astral Annihilator",
  39822. height: math.unit(8e9, "feet")
  39823. },
  39824. {
  39825. name: "Celestial Conqueror",
  39826. height: math.unit(2.4e10, "feet")
  39827. },
  39828. {
  39829. name: "Sol-Swallowing",
  39830. height: math.unit(8e10, "feet")
  39831. },
  39832. {
  39833. name: "Hunter of the Heavens",
  39834. height: math.unit(2.4e13, "feet")
  39835. },
  39836. ]
  39837. ))
  39838. characterMakers.push(() => makeCharacter(
  39839. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39840. {
  39841. front: {
  39842. height: math.unit(6 + 8/12, "feet"),
  39843. weight: math.unit(250, "kilograms"),
  39844. volume: math.unit(28, "liters"),
  39845. name: "Front",
  39846. image: {
  39847. source: "./media/characters/rebecca-pawlson/front.svg",
  39848. extra: 1737/1596,
  39849. bottom: 107/1844
  39850. }
  39851. },
  39852. back: {
  39853. height: math.unit(6 + 8/12, "feet"),
  39854. weight: math.unit(250, "kilograms"),
  39855. volume: math.unit(28, "liters"),
  39856. name: "Back",
  39857. image: {
  39858. source: "./media/characters/rebecca-pawlson/back.svg",
  39859. extra: 1702/1523,
  39860. bottom: 86/1788
  39861. }
  39862. },
  39863. },
  39864. [
  39865. {
  39866. name: "Normal",
  39867. height: math.unit(6 + 8/12, "feet")
  39868. },
  39869. {
  39870. name: "Mini Macro",
  39871. height: math.unit(10, "feet"),
  39872. default: true
  39873. },
  39874. {
  39875. name: "Macro",
  39876. height: math.unit(100, "feet")
  39877. },
  39878. {
  39879. name: "Mega Macro",
  39880. height: math.unit(2500, "feet")
  39881. },
  39882. {
  39883. name: "Giga Macro",
  39884. height: math.unit(50, "miles")
  39885. },
  39886. ]
  39887. ))
  39888. characterMakers.push(() => makeCharacter(
  39889. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39890. {
  39891. front: {
  39892. height: math.unit(7 + 6/12, "feet"),
  39893. weight: math.unit(600, "lb"),
  39894. name: "Front",
  39895. image: {
  39896. source: "./media/characters/moxie-nova/front.svg",
  39897. extra: 1734/1652,
  39898. bottom: 41/1775
  39899. }
  39900. },
  39901. },
  39902. [
  39903. {
  39904. name: "Normal",
  39905. height: math.unit(7 + 6/12, "feet"),
  39906. default: true
  39907. },
  39908. ]
  39909. ))
  39910. characterMakers.push(() => makeCharacter(
  39911. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39912. {
  39913. goat: {
  39914. height: math.unit(4, "feet"),
  39915. weight: math.unit(180, "lb"),
  39916. name: "Goat",
  39917. image: {
  39918. source: "./media/characters/tiffany/goat.svg",
  39919. extra: 1845/1595,
  39920. bottom: 106/1951
  39921. }
  39922. },
  39923. front: {
  39924. height: math.unit(5, "feet"),
  39925. weight: math.unit(150, "lb"),
  39926. name: "Foxcoon",
  39927. image: {
  39928. source: "./media/characters/tiffany/foxcoon.svg",
  39929. extra: 1941/1845,
  39930. bottom: 58/1999
  39931. }
  39932. },
  39933. },
  39934. [
  39935. {
  39936. name: "Normal",
  39937. height: math.unit(5, "feet"),
  39938. default: true
  39939. },
  39940. ]
  39941. ))
  39942. characterMakers.push(() => makeCharacter(
  39943. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39944. {
  39945. front: {
  39946. height: math.unit(8, "feet"),
  39947. weight: math.unit(300, "lb"),
  39948. name: "Front",
  39949. image: {
  39950. source: "./media/characters/raxinath/front.svg",
  39951. extra: 1407/1309,
  39952. bottom: 39/1446
  39953. }
  39954. },
  39955. back: {
  39956. height: math.unit(8, "feet"),
  39957. weight: math.unit(300, "lb"),
  39958. name: "Back",
  39959. image: {
  39960. source: "./media/characters/raxinath/back.svg",
  39961. extra: 1405/1315,
  39962. bottom: 9/1414
  39963. }
  39964. },
  39965. },
  39966. [
  39967. {
  39968. name: "Speck",
  39969. height: math.unit(0.5, "nm")
  39970. },
  39971. {
  39972. name: "Micro",
  39973. height: math.unit(3, "inches")
  39974. },
  39975. {
  39976. name: "Kobold",
  39977. height: math.unit(3, "feet")
  39978. },
  39979. {
  39980. name: "Normal",
  39981. height: math.unit(8, "feet"),
  39982. default: true
  39983. },
  39984. {
  39985. name: "Giant",
  39986. height: math.unit(50, "feet")
  39987. },
  39988. {
  39989. name: "Macro",
  39990. height: math.unit(1000, "feet")
  39991. },
  39992. {
  39993. name: "Megamacro",
  39994. height: math.unit(1, "mile")
  39995. },
  39996. ]
  39997. ))
  39998. characterMakers.push(() => makeCharacter(
  39999. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40000. {
  40001. front: {
  40002. height: math.unit(10, "feet"),
  40003. weight: math.unit(1442, "lb"),
  40004. name: "Front",
  40005. image: {
  40006. source: "./media/characters/mal-dragon/front.svg",
  40007. extra: 1515/1444,
  40008. bottom: 113/1628
  40009. }
  40010. },
  40011. back: {
  40012. height: math.unit(10, "feet"),
  40013. weight: math.unit(1442, "lb"),
  40014. name: "Back",
  40015. image: {
  40016. source: "./media/characters/mal-dragon/back.svg",
  40017. extra: 1527/1434,
  40018. bottom: 25/1552
  40019. }
  40020. },
  40021. },
  40022. [
  40023. {
  40024. name: "Mortal Interaction",
  40025. height: math.unit(10, "feet"),
  40026. default: true
  40027. },
  40028. {
  40029. name: "Large",
  40030. height: math.unit(30, "feet")
  40031. },
  40032. {
  40033. name: "Kaiju",
  40034. height: math.unit(300, "feet")
  40035. },
  40036. {
  40037. name: "Megamacro",
  40038. height: math.unit(10000, "feet")
  40039. },
  40040. {
  40041. name: "Continent Cracker",
  40042. height: math.unit(30000000, "feet")
  40043. },
  40044. {
  40045. name: "Sol-Swallowing",
  40046. height: math.unit(1e11, "feet")
  40047. },
  40048. {
  40049. name: "Light Universal",
  40050. height: math.unit(5, "universes")
  40051. },
  40052. {
  40053. name: "Universe Atoms",
  40054. height: math.unit(1.829e9, "universes")
  40055. },
  40056. {
  40057. name: "Light Multiversal",
  40058. height: math.unit(5, "multiverses")
  40059. },
  40060. {
  40061. name: "Multiverse Atoms",
  40062. height: math.unit(1.829e9, "multiverses")
  40063. },
  40064. {
  40065. name: "Fabric of Time",
  40066. height: math.unit(1e262, "multiverses")
  40067. },
  40068. ]
  40069. ))
  40070. characterMakers.push(() => makeCharacter(
  40071. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40072. {
  40073. front: {
  40074. height: math.unit(9, "feet"),
  40075. weight: math.unit(1050, "lb"),
  40076. name: "Front",
  40077. image: {
  40078. source: "./media/characters/tabitha/front.svg",
  40079. extra: 2083/1994,
  40080. bottom: 68/2151
  40081. }
  40082. },
  40083. },
  40084. [
  40085. {
  40086. name: "Baseline",
  40087. height: math.unit(9, "feet"),
  40088. default: true
  40089. },
  40090. {
  40091. name: "Giant",
  40092. height: math.unit(90, "feet")
  40093. },
  40094. {
  40095. name: "Macro",
  40096. height: math.unit(900, "feet")
  40097. },
  40098. {
  40099. name: "Megamacro",
  40100. height: math.unit(9000, "feet")
  40101. },
  40102. {
  40103. name: "City-Crushing",
  40104. height: math.unit(27000, "feet")
  40105. },
  40106. {
  40107. name: "Mountain-Mashing",
  40108. height: math.unit(90000, "feet")
  40109. },
  40110. {
  40111. name: "Nation Nemesis",
  40112. height: math.unit(9e6, "feet")
  40113. },
  40114. {
  40115. name: "Continent Cracker",
  40116. height: math.unit(27e6, "feet")
  40117. },
  40118. {
  40119. name: "Earth-Eclipsing",
  40120. height: math.unit(2.7e8, "feet")
  40121. },
  40122. {
  40123. name: "Gas Giant Gulper",
  40124. height: math.unit(2.7e9, "feet")
  40125. },
  40126. {
  40127. name: "Sol-Swallowing",
  40128. height: math.unit(9e10, "feet")
  40129. },
  40130. {
  40131. name: "Galaxy Gulper",
  40132. height: math.unit(9, "galaxies")
  40133. },
  40134. {
  40135. name: "Cosmos Churner",
  40136. height: math.unit(9, "universes")
  40137. },
  40138. ]
  40139. ))
  40140. characterMakers.push(() => makeCharacter(
  40141. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40142. {
  40143. front: {
  40144. height: math.unit(160, "cm"),
  40145. weight: math.unit(55, "kg"),
  40146. name: "Front",
  40147. image: {
  40148. source: "./media/characters/tow/front.svg",
  40149. extra: 1751/1722,
  40150. bottom: 74/1825
  40151. }
  40152. },
  40153. },
  40154. [
  40155. {
  40156. name: "Norm",
  40157. height: math.unit(160, "cm")
  40158. },
  40159. {
  40160. name: "Casual",
  40161. height: math.unit(3200, "m"),
  40162. default: true
  40163. },
  40164. {
  40165. name: "Show-Off",
  40166. height: math.unit(160, "km")
  40167. },
  40168. ]
  40169. ))
  40170. characterMakers.push(() => makeCharacter(
  40171. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40172. {
  40173. front: {
  40174. height: math.unit(7 + 11/12, "feet"),
  40175. weight: math.unit(342.8, "lb"),
  40176. name: "Front",
  40177. image: {
  40178. source: "./media/characters/vivian-orca-dragon/front.svg",
  40179. extra: 1890/1865,
  40180. bottom: 28/1918
  40181. }
  40182. },
  40183. },
  40184. [
  40185. {
  40186. name: "Micro",
  40187. height: math.unit(5, "inches")
  40188. },
  40189. {
  40190. name: "Normal",
  40191. height: math.unit(7 + 11/12, "feet"),
  40192. default: true
  40193. },
  40194. {
  40195. name: "Macro",
  40196. height: math.unit(395 + 7/12, "feet")
  40197. },
  40198. ]
  40199. ))
  40200. characterMakers.push(() => makeCharacter(
  40201. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40202. {
  40203. side: {
  40204. height: math.unit(10, "feet"),
  40205. weight: math.unit(1442, "lb"),
  40206. name: "Side",
  40207. image: {
  40208. source: "./media/characters/lotherakon/side.svg",
  40209. extra: 1604/1497,
  40210. bottom: 89/1693
  40211. }
  40212. },
  40213. },
  40214. [
  40215. {
  40216. name: "Mortal Interaction",
  40217. height: math.unit(10, "feet")
  40218. },
  40219. {
  40220. name: "Large",
  40221. height: math.unit(30, "feet"),
  40222. default: true
  40223. },
  40224. {
  40225. name: "Giant",
  40226. height: math.unit(100, "feet")
  40227. },
  40228. {
  40229. name: "Kaiju",
  40230. height: math.unit(300, "feet")
  40231. },
  40232. {
  40233. name: "Macro",
  40234. height: math.unit(1000, "feet")
  40235. },
  40236. {
  40237. name: "Macro+",
  40238. height: math.unit(3000, "feet")
  40239. },
  40240. {
  40241. name: "Megamacro",
  40242. height: math.unit(10000, "feet")
  40243. },
  40244. {
  40245. name: "City-Crushing",
  40246. height: math.unit(30000, "feet")
  40247. },
  40248. {
  40249. name: "Continent Cracker",
  40250. height: math.unit(30e6, "feet")
  40251. },
  40252. {
  40253. name: "Earth Eclipsing",
  40254. height: math.unit(3e8, "feet")
  40255. },
  40256. {
  40257. name: "Gas Giant Gulper",
  40258. height: math.unit(3e9, "feet")
  40259. },
  40260. {
  40261. name: "Sol-Swallowing",
  40262. height: math.unit(1e11, "feet")
  40263. },
  40264. {
  40265. name: "System Swallower",
  40266. height: math.unit(3e14, "feet")
  40267. },
  40268. {
  40269. name: "Galaxy Gulper",
  40270. height: math.unit(10, "galaxies")
  40271. },
  40272. {
  40273. name: "Light Universal",
  40274. height: math.unit(5, "universes")
  40275. },
  40276. {
  40277. name: "Universe Palm",
  40278. height: math.unit(20, "universes")
  40279. },
  40280. {
  40281. name: "Light Multiversal",
  40282. height: math.unit(5, "multiverses")
  40283. },
  40284. {
  40285. name: "Multiverse Palm",
  40286. height: math.unit(20, "multiverses")
  40287. },
  40288. {
  40289. name: "Inferno Incarnate",
  40290. height: math.unit(1e7, "multiverses")
  40291. },
  40292. ]
  40293. ))
  40294. characterMakers.push(() => makeCharacter(
  40295. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40296. {
  40297. front: {
  40298. height: math.unit(8, "feet"),
  40299. weight: math.unit(1200, "lb"),
  40300. name: "Front",
  40301. image: {
  40302. source: "./media/characters/malithee/front.svg",
  40303. extra: 1675/1640,
  40304. bottom: 162/1837
  40305. }
  40306. },
  40307. },
  40308. [
  40309. {
  40310. name: "Mortal Interaction",
  40311. height: math.unit(8, "feet"),
  40312. default: true
  40313. },
  40314. {
  40315. name: "Large",
  40316. height: math.unit(24, "feet")
  40317. },
  40318. {
  40319. name: "Kaiju",
  40320. height: math.unit(240, "feet")
  40321. },
  40322. {
  40323. name: "Megamacro",
  40324. height: math.unit(8000, "feet")
  40325. },
  40326. {
  40327. name: "Continent Cracker",
  40328. height: math.unit(24e6, "feet")
  40329. },
  40330. {
  40331. name: "Earth-Eclipsing",
  40332. height: math.unit(2.4e8, "feet")
  40333. },
  40334. {
  40335. name: "Sol-Swallowing",
  40336. height: math.unit(8e10, "feet")
  40337. },
  40338. {
  40339. name: "Galaxy Gulper",
  40340. height: math.unit(8, "galaxies")
  40341. },
  40342. {
  40343. name: "Light Universal",
  40344. height: math.unit(4, "universes")
  40345. },
  40346. {
  40347. name: "Universe Atoms",
  40348. height: math.unit(1.829e9, "universes")
  40349. },
  40350. {
  40351. name: "Light Multiversal",
  40352. height: math.unit(4, "multiverses")
  40353. },
  40354. {
  40355. name: "Multiverse Atoms",
  40356. height: math.unit(1.829e9, "multiverses")
  40357. },
  40358. {
  40359. name: "Nigh-Omnipresence",
  40360. height: math.unit(8e261, "multiverses")
  40361. },
  40362. ]
  40363. ))
  40364. characterMakers.push(() => makeCharacter(
  40365. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40366. {
  40367. front: {
  40368. height: math.unit(10, "feet"),
  40369. weight: math.unit(1500, "lb"),
  40370. name: "Front",
  40371. image: {
  40372. source: "./media/characters/miles-thestia/front.svg",
  40373. extra: 1812/1727,
  40374. bottom: 86/1898
  40375. }
  40376. },
  40377. back: {
  40378. height: math.unit(10, "feet"),
  40379. weight: math.unit(1500, "lb"),
  40380. name: "Back",
  40381. image: {
  40382. source: "./media/characters/miles-thestia/back.svg",
  40383. extra: 1799/1690,
  40384. bottom: 47/1846
  40385. }
  40386. },
  40387. frontNsfw: {
  40388. height: math.unit(10, "feet"),
  40389. weight: math.unit(1500, "lb"),
  40390. name: "Front (NSFW)",
  40391. image: {
  40392. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40393. extra: 1812/1727,
  40394. bottom: 86/1898
  40395. }
  40396. },
  40397. },
  40398. [
  40399. {
  40400. name: "Mini-Macro",
  40401. height: math.unit(10, "feet"),
  40402. default: true
  40403. },
  40404. ]
  40405. ))
  40406. characterMakers.push(() => makeCharacter(
  40407. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40408. {
  40409. front: {
  40410. height: math.unit(25, "feet"),
  40411. name: "Front",
  40412. image: {
  40413. source: "./media/characters/titan-s-wulf/front.svg",
  40414. extra: 1560/1484,
  40415. bottom: 76/1636
  40416. }
  40417. },
  40418. },
  40419. [
  40420. {
  40421. name: "Smallest",
  40422. height: math.unit(25, "feet"),
  40423. default: true
  40424. },
  40425. {
  40426. name: "Normal",
  40427. height: math.unit(200, "feet")
  40428. },
  40429. {
  40430. name: "Macro",
  40431. height: math.unit(200000, "feet")
  40432. },
  40433. {
  40434. name: "Multiversal Original",
  40435. height: math.unit(10000, "multiverses")
  40436. },
  40437. ]
  40438. ))
  40439. characterMakers.push(() => makeCharacter(
  40440. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40441. {
  40442. front: {
  40443. height: math.unit(8, "feet"),
  40444. weight: math.unit(553, "lb"),
  40445. name: "Front",
  40446. image: {
  40447. source: "./media/characters/tawendeh/front.svg",
  40448. extra: 2365/2268,
  40449. bottom: 83/2448
  40450. }
  40451. },
  40452. frontClothed: {
  40453. height: math.unit(8, "feet"),
  40454. weight: math.unit(553, "lb"),
  40455. name: "Front (Clothed)",
  40456. image: {
  40457. source: "./media/characters/tawendeh/front-clothed.svg",
  40458. extra: 2365/2268,
  40459. bottom: 83/2448
  40460. }
  40461. },
  40462. back: {
  40463. height: math.unit(8, "feet"),
  40464. weight: math.unit(553, "lb"),
  40465. name: "Back",
  40466. image: {
  40467. source: "./media/characters/tawendeh/back.svg",
  40468. extra: 2397/2294,
  40469. bottom: 42/2439
  40470. }
  40471. },
  40472. },
  40473. [
  40474. {
  40475. name: "Mortal Interaction",
  40476. height: math.unit(8, "feet"),
  40477. default: true
  40478. },
  40479. {
  40480. name: "Giant",
  40481. height: math.unit(80, "feet")
  40482. },
  40483. {
  40484. name: "Macro",
  40485. height: math.unit(800, "feet")
  40486. },
  40487. {
  40488. name: "Megamacro",
  40489. height: math.unit(8000, "feet")
  40490. },
  40491. {
  40492. name: "City-Crushing",
  40493. height: math.unit(24000, "feet")
  40494. },
  40495. {
  40496. name: "Mountain-Mashing",
  40497. height: math.unit(80000, "feet")
  40498. },
  40499. {
  40500. name: "Nation Nemesis",
  40501. height: math.unit(8e6, "feet")
  40502. },
  40503. {
  40504. name: "Continent Cracker",
  40505. height: math.unit(24e6, "feet")
  40506. },
  40507. {
  40508. name: "Earth-Eclipsing",
  40509. height: math.unit(2.4e8, "feet")
  40510. },
  40511. {
  40512. name: "Gas Giant Gulper",
  40513. height: math.unit(2.4e9, "feet")
  40514. },
  40515. {
  40516. name: "Sol-Swallowing",
  40517. height: math.unit(8e10, "feet")
  40518. },
  40519. {
  40520. name: "Galaxy Gulper",
  40521. height: math.unit(8, "galaxies")
  40522. },
  40523. {
  40524. name: "Cosmos Churner",
  40525. height: math.unit(8, "universes")
  40526. },
  40527. {
  40528. name: "Omnipotent Otter",
  40529. height: math.unit(80, "universes")
  40530. },
  40531. ]
  40532. ))
  40533. characterMakers.push(() => makeCharacter(
  40534. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40535. {
  40536. front: {
  40537. height: math.unit(2.6, "meters"),
  40538. weight: math.unit(900, "kg"),
  40539. name: "Front",
  40540. image: {
  40541. source: "./media/characters/neesha/front.svg",
  40542. extra: 1803/1653,
  40543. bottom: 128/1931
  40544. }
  40545. },
  40546. },
  40547. [
  40548. {
  40549. name: "Normal",
  40550. height: math.unit(2.6, "meters"),
  40551. default: true
  40552. },
  40553. {
  40554. name: "Macro",
  40555. height: math.unit(50, "meters")
  40556. },
  40557. ]
  40558. ))
  40559. characterMakers.push(() => makeCharacter(
  40560. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40561. {
  40562. front: {
  40563. height: math.unit(5, "feet"),
  40564. weight: math.unit(185, "lb"),
  40565. name: "Front",
  40566. image: {
  40567. source: "./media/characters/kyera/front.svg",
  40568. extra: 1875/1790,
  40569. bottom: 96/1971
  40570. }
  40571. },
  40572. },
  40573. [
  40574. {
  40575. name: "Normal",
  40576. height: math.unit(5, "feet"),
  40577. default: true
  40578. },
  40579. ]
  40580. ))
  40581. characterMakers.push(() => makeCharacter(
  40582. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40583. {
  40584. front: {
  40585. height: math.unit(7 + 6/12, "feet"),
  40586. weight: math.unit(540, "lb"),
  40587. name: "Front",
  40588. image: {
  40589. source: "./media/characters/yuko/front.svg",
  40590. extra: 1282/1222,
  40591. bottom: 101/1383
  40592. }
  40593. },
  40594. frontClothed: {
  40595. height: math.unit(7 + 6/12, "feet"),
  40596. weight: math.unit(540, "lb"),
  40597. name: "Front (Clothed)",
  40598. image: {
  40599. source: "./media/characters/yuko/front-clothed.svg",
  40600. extra: 1282/1222,
  40601. bottom: 101/1383
  40602. }
  40603. },
  40604. },
  40605. [
  40606. {
  40607. name: "Normal",
  40608. height: math.unit(7 + 6/12, "feet"),
  40609. default: true
  40610. },
  40611. {
  40612. name: "Macro",
  40613. height: math.unit(26 + 9/12, "feet")
  40614. },
  40615. {
  40616. name: "Megamacro",
  40617. height: math.unit(300, "feet")
  40618. },
  40619. {
  40620. name: "Gigamacro",
  40621. height: math.unit(5000, "feet")
  40622. },
  40623. {
  40624. name: "Planetary",
  40625. height: math.unit(10000, "miles")
  40626. },
  40627. ]
  40628. ))
  40629. characterMakers.push(() => makeCharacter(
  40630. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40631. {
  40632. front: {
  40633. height: math.unit(8 + 2/12, "feet"),
  40634. weight: math.unit(600, "lb"),
  40635. name: "Front",
  40636. image: {
  40637. source: "./media/characters/deam-nitrel/front.svg",
  40638. extra: 1308/1234,
  40639. bottom: 125/1433
  40640. }
  40641. },
  40642. },
  40643. [
  40644. {
  40645. name: "Normal",
  40646. height: math.unit(8 + 2/12, "feet"),
  40647. default: true
  40648. },
  40649. ]
  40650. ))
  40651. characterMakers.push(() => makeCharacter(
  40652. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40653. {
  40654. front: {
  40655. height: math.unit(6.1, "feet"),
  40656. weight: math.unit(180, "lb"),
  40657. name: "Front",
  40658. image: {
  40659. source: "./media/characters/skyress/front.svg",
  40660. extra: 1045/915,
  40661. bottom: 28/1073
  40662. }
  40663. },
  40664. maw: {
  40665. height: math.unit(1, "feet"),
  40666. name: "Maw",
  40667. image: {
  40668. source: "./media/characters/skyress/maw.svg"
  40669. }
  40670. },
  40671. },
  40672. [
  40673. {
  40674. name: "Normal",
  40675. height: math.unit(6.1, "feet"),
  40676. default: true
  40677. },
  40678. {
  40679. name: "Macro",
  40680. height: math.unit(200, "feet")
  40681. },
  40682. ]
  40683. ))
  40684. characterMakers.push(() => makeCharacter(
  40685. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40686. {
  40687. front: {
  40688. height: math.unit(4 + 2/12, "feet"),
  40689. weight: math.unit(40, "kg"),
  40690. name: "Front",
  40691. image: {
  40692. source: "./media/characters/amethyst-jones/front.svg",
  40693. extra: 1220/1150,
  40694. bottom: 101/1321
  40695. }
  40696. },
  40697. },
  40698. [
  40699. {
  40700. name: "Normal",
  40701. height: math.unit(4 + 2/12, "feet"),
  40702. default: true
  40703. },
  40704. ]
  40705. ))
  40706. characterMakers.push(() => makeCharacter(
  40707. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40708. {
  40709. front: {
  40710. height: math.unit(1.7, "m"),
  40711. weight: math.unit(135, "lb"),
  40712. name: "Front",
  40713. image: {
  40714. source: "./media/characters/jade/front.svg",
  40715. extra: 1818/1767,
  40716. bottom: 32/1850
  40717. }
  40718. },
  40719. back: {
  40720. height: math.unit(1.7, "m"),
  40721. weight: math.unit(135, "lb"),
  40722. name: "Back",
  40723. image: {
  40724. source: "./media/characters/jade/back.svg",
  40725. extra: 1869/1809,
  40726. bottom: 35/1904
  40727. }
  40728. },
  40729. hand: {
  40730. height: math.unit(0.24, "m"),
  40731. name: "Hand",
  40732. image: {
  40733. source: "./media/characters/jade/hand.svg"
  40734. }
  40735. },
  40736. foot: {
  40737. height: math.unit(0.263, "m"),
  40738. name: "Foot",
  40739. image: {
  40740. source: "./media/characters/jade/foot.svg"
  40741. }
  40742. },
  40743. dick: {
  40744. height: math.unit(0.47, "m"),
  40745. name: "Dick",
  40746. image: {
  40747. source: "./media/characters/jade/dick.svg"
  40748. }
  40749. },
  40750. },
  40751. [
  40752. {
  40753. name: "Micro",
  40754. height: math.unit(22, "cm")
  40755. },
  40756. {
  40757. name: "Normal",
  40758. height: math.unit(1.7, "m"),
  40759. default: true
  40760. },
  40761. {
  40762. name: "Macro",
  40763. height: math.unit(152, "m")
  40764. },
  40765. ]
  40766. ))
  40767. characterMakers.push(() => makeCharacter(
  40768. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40769. {
  40770. front: {
  40771. height: math.unit(100, "miles"),
  40772. weight: math.unit(20000, "tons"),
  40773. name: "Front",
  40774. image: {
  40775. source: "./media/characters/cookie/front.svg",
  40776. extra: 1125/1070,
  40777. bottom: 30/1155
  40778. }
  40779. },
  40780. },
  40781. [
  40782. {
  40783. name: "Big",
  40784. height: math.unit(50, "feet")
  40785. },
  40786. {
  40787. name: "Macro",
  40788. height: math.unit(100, "miles"),
  40789. default: true
  40790. },
  40791. {
  40792. name: "Megamacro",
  40793. height: math.unit(90000, "miles")
  40794. },
  40795. ]
  40796. ))
  40797. characterMakers.push(() => makeCharacter(
  40798. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40799. {
  40800. front: {
  40801. height: math.unit(6, "feet"),
  40802. weight: math.unit(145, "lb"),
  40803. name: "Front",
  40804. image: {
  40805. source: "./media/characters/farzian/front.svg",
  40806. extra: 1902/1693,
  40807. bottom: 108/2010
  40808. }
  40809. },
  40810. },
  40811. [
  40812. {
  40813. name: "Macro",
  40814. height: math.unit(500, "feet"),
  40815. default: true
  40816. },
  40817. ]
  40818. ))
  40819. characterMakers.push(() => makeCharacter(
  40820. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40821. {
  40822. front: {
  40823. height: math.unit(3 + 6/12, "feet"),
  40824. weight: math.unit(50, "lb"),
  40825. name: "Front",
  40826. image: {
  40827. source: "./media/characters/kimberly-tilson/front.svg",
  40828. extra: 1400/1322,
  40829. bottom: 36/1436
  40830. }
  40831. },
  40832. back: {
  40833. height: math.unit(3 + 6/12, "feet"),
  40834. weight: math.unit(50, "lb"),
  40835. name: "Back",
  40836. image: {
  40837. source: "./media/characters/kimberly-tilson/back.svg",
  40838. extra: 1370/1307,
  40839. bottom: 20/1390
  40840. }
  40841. },
  40842. },
  40843. [
  40844. {
  40845. name: "Normal",
  40846. height: math.unit(3 + 6/12, "feet"),
  40847. default: true
  40848. },
  40849. ]
  40850. ))
  40851. characterMakers.push(() => makeCharacter(
  40852. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40853. {
  40854. front: {
  40855. height: math.unit(1148, "feet"),
  40856. weight: math.unit(34057, "lb"),
  40857. name: "Front",
  40858. image: {
  40859. source: "./media/characters/harthos/front.svg",
  40860. extra: 1391/1339,
  40861. bottom: 13/1404
  40862. }
  40863. },
  40864. },
  40865. [
  40866. {
  40867. name: "Macro",
  40868. height: math.unit(1148, "feet"),
  40869. default: true
  40870. },
  40871. ]
  40872. ))
  40873. characterMakers.push(() => makeCharacter(
  40874. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40875. {
  40876. front: {
  40877. height: math.unit(15, "feet"),
  40878. name: "Front",
  40879. image: {
  40880. source: "./media/characters/hypatia/front.svg",
  40881. extra: 1653/1591,
  40882. bottom: 79/1732
  40883. }
  40884. },
  40885. },
  40886. [
  40887. {
  40888. name: "Normal",
  40889. height: math.unit(15, "feet")
  40890. },
  40891. {
  40892. name: "Small",
  40893. height: math.unit(300, "feet")
  40894. },
  40895. {
  40896. name: "Macro",
  40897. height: math.unit(2500, "feet"),
  40898. default: true
  40899. },
  40900. {
  40901. name: "Mega Macro",
  40902. height: math.unit(1500, "miles")
  40903. },
  40904. {
  40905. name: "Giga Macro",
  40906. height: math.unit(1.5e6, "miles")
  40907. },
  40908. ]
  40909. ))
  40910. characterMakers.push(() => makeCharacter(
  40911. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40912. {
  40913. front: {
  40914. height: math.unit(6, "feet"),
  40915. weight: math.unit(200, "lb"),
  40916. name: "Front",
  40917. image: {
  40918. source: "./media/characters/wulver/front.svg",
  40919. extra: 1724/1632,
  40920. bottom: 130/1854
  40921. }
  40922. },
  40923. frontNsfw: {
  40924. height: math.unit(6, "feet"),
  40925. weight: math.unit(200, "lb"),
  40926. name: "Front (NSFW)",
  40927. image: {
  40928. source: "./media/characters/wulver/front-nsfw.svg",
  40929. extra: 1724/1632,
  40930. bottom: 130/1854
  40931. }
  40932. },
  40933. },
  40934. [
  40935. {
  40936. name: "Human-Sized",
  40937. height: math.unit(6, "feet")
  40938. },
  40939. {
  40940. name: "Normal",
  40941. height: math.unit(4, "meters"),
  40942. default: true
  40943. },
  40944. {
  40945. name: "Large",
  40946. height: math.unit(6, "m")
  40947. },
  40948. ]
  40949. ))
  40950. characterMakers.push(() => makeCharacter(
  40951. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40952. {
  40953. front: {
  40954. height: math.unit(7, "feet"),
  40955. name: "Front",
  40956. image: {
  40957. source: "./media/characters/maru/front.svg",
  40958. extra: 1595/1570,
  40959. bottom: 0/1595
  40960. }
  40961. },
  40962. },
  40963. [
  40964. {
  40965. name: "Normal",
  40966. height: math.unit(7, "feet"),
  40967. default: true
  40968. },
  40969. {
  40970. name: "Macro",
  40971. height: math.unit(700, "feet")
  40972. },
  40973. {
  40974. name: "Mega Macro",
  40975. height: math.unit(25, "miles")
  40976. },
  40977. ]
  40978. ))
  40979. characterMakers.push(() => makeCharacter(
  40980. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40981. {
  40982. front: {
  40983. height: math.unit(6, "feet"),
  40984. weight: math.unit(170, "lb"),
  40985. name: "Front",
  40986. image: {
  40987. source: "./media/characters/xenon/front.svg",
  40988. extra: 1376/1305,
  40989. bottom: 56/1432
  40990. }
  40991. },
  40992. back: {
  40993. height: math.unit(6, "feet"),
  40994. weight: math.unit(170, "lb"),
  40995. name: "Back",
  40996. image: {
  40997. source: "./media/characters/xenon/back.svg",
  40998. extra: 1328/1259,
  40999. bottom: 95/1423
  41000. }
  41001. },
  41002. maw: {
  41003. height: math.unit(0.52, "feet"),
  41004. name: "Maw",
  41005. image: {
  41006. source: "./media/characters/xenon/maw.svg"
  41007. }
  41008. },
  41009. hand: {
  41010. height: math.unit(0.82, "feet"),
  41011. name: "Hand",
  41012. image: {
  41013. source: "./media/characters/xenon/hand.svg"
  41014. }
  41015. },
  41016. foot: {
  41017. height: math.unit(1.13, "feet"),
  41018. name: "Foot",
  41019. image: {
  41020. source: "./media/characters/xenon/foot.svg"
  41021. }
  41022. },
  41023. },
  41024. [
  41025. {
  41026. name: "Micro",
  41027. height: math.unit(0.8, "inches")
  41028. },
  41029. {
  41030. name: "Normal",
  41031. height: math.unit(6, "feet")
  41032. },
  41033. {
  41034. name: "Macro",
  41035. height: math.unit(50, "feet"),
  41036. default: true
  41037. },
  41038. {
  41039. name: "Macro+",
  41040. height: math.unit(250, "feet")
  41041. },
  41042. {
  41043. name: "Megamacro",
  41044. height: math.unit(1500, "feet")
  41045. },
  41046. ]
  41047. ))
  41048. characterMakers.push(() => makeCharacter(
  41049. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41050. {
  41051. front: {
  41052. height: math.unit(7 + 5/12, "feet"),
  41053. name: "Front",
  41054. image: {
  41055. source: "./media/characters/zane/front.svg",
  41056. extra: 1260/1203,
  41057. bottom: 94/1354
  41058. }
  41059. },
  41060. back: {
  41061. height: math.unit(5.05, "feet"),
  41062. name: "Back",
  41063. image: {
  41064. source: "./media/characters/zane/back.svg",
  41065. extra: 893/829,
  41066. bottom: 30/923
  41067. }
  41068. },
  41069. werewolf: {
  41070. height: math.unit(11, "feet"),
  41071. name: "Werewolf",
  41072. image: {
  41073. source: "./media/characters/zane/werewolf.svg",
  41074. extra: 1383/1323,
  41075. bottom: 89/1472
  41076. }
  41077. },
  41078. foot: {
  41079. height: math.unit(1.46, "feet"),
  41080. name: "Foot",
  41081. image: {
  41082. source: "./media/characters/zane/foot.svg"
  41083. }
  41084. },
  41085. footFront: {
  41086. height: math.unit(0.784, "feet"),
  41087. name: "Foot (Front)",
  41088. image: {
  41089. source: "./media/characters/zane/foot-front.svg"
  41090. }
  41091. },
  41092. dick: {
  41093. height: math.unit(1.95, "feet"),
  41094. name: "Dick",
  41095. image: {
  41096. source: "./media/characters/zane/dick.svg"
  41097. }
  41098. },
  41099. dickWerewolf: {
  41100. height: math.unit(3.77, "feet"),
  41101. name: "Dick (Werewolf)",
  41102. image: {
  41103. source: "./media/characters/zane/dick.svg"
  41104. }
  41105. },
  41106. },
  41107. [
  41108. {
  41109. name: "Normal",
  41110. height: math.unit(7 + 5/12, "feet"),
  41111. default: true
  41112. },
  41113. ]
  41114. ))
  41115. characterMakers.push(() => makeCharacter(
  41116. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41117. {
  41118. front: {
  41119. height: math.unit(6 + 2/12, "feet"),
  41120. weight: math.unit(284, "lb"),
  41121. name: "Front",
  41122. image: {
  41123. source: "./media/characters/benni-desparque/front.svg",
  41124. extra: 1353/1126,
  41125. bottom: 69/1422
  41126. }
  41127. },
  41128. },
  41129. [
  41130. {
  41131. name: "Civilian",
  41132. height: math.unit(6 + 2/12, "feet")
  41133. },
  41134. {
  41135. name: "Normal",
  41136. height: math.unit(98, "feet"),
  41137. default: true
  41138. },
  41139. {
  41140. name: "Kaiju Fighter",
  41141. height: math.unit(268, "feet")
  41142. },
  41143. ]
  41144. ))
  41145. characterMakers.push(() => makeCharacter(
  41146. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41147. {
  41148. front: {
  41149. height: math.unit(5, "feet"),
  41150. weight: math.unit(105, "lb"),
  41151. name: "Front",
  41152. image: {
  41153. source: "./media/characters/maxine/front.svg",
  41154. extra: 1386/1250,
  41155. bottom: 71/1457
  41156. }
  41157. },
  41158. },
  41159. [
  41160. {
  41161. name: "Normal",
  41162. height: math.unit(5, "feet"),
  41163. default: true
  41164. },
  41165. ]
  41166. ))
  41167. characterMakers.push(() => makeCharacter(
  41168. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41169. {
  41170. front: {
  41171. height: math.unit(11 + 7/12, "feet"),
  41172. weight: math.unit(9576, "lb"),
  41173. name: "Front",
  41174. image: {
  41175. source: "./media/characters/scaly/front.svg",
  41176. extra: 888/867,
  41177. bottom: 36/924
  41178. }
  41179. },
  41180. },
  41181. [
  41182. {
  41183. name: "Normal",
  41184. height: math.unit(11 + 7/12, "feet"),
  41185. default: true
  41186. },
  41187. ]
  41188. ))
  41189. characterMakers.push(() => makeCharacter(
  41190. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41191. {
  41192. front: {
  41193. height: math.unit(6 + 3/12, "feet"),
  41194. name: "Front",
  41195. image: {
  41196. source: "./media/characters/saelria/front.svg",
  41197. extra: 1243/1138,
  41198. bottom: 46/1289
  41199. }
  41200. },
  41201. },
  41202. [
  41203. {
  41204. name: "Micro",
  41205. height: math.unit(6, "inches"),
  41206. },
  41207. {
  41208. name: "Normal",
  41209. height: math.unit(6 + 3/12, "feet"),
  41210. default: true
  41211. },
  41212. {
  41213. name: "Macro",
  41214. height: math.unit(25, "feet")
  41215. },
  41216. ]
  41217. ))
  41218. characterMakers.push(() => makeCharacter(
  41219. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41220. {
  41221. front: {
  41222. height: math.unit(80, "meters"),
  41223. weight: math.unit(7000, "tonnes"),
  41224. name: "Front",
  41225. image: {
  41226. source: "./media/characters/tef/front.svg",
  41227. extra: 2036/1991,
  41228. bottom: 54/2090
  41229. }
  41230. },
  41231. back: {
  41232. height: math.unit(80, "meters"),
  41233. weight: math.unit(7000, "tonnes"),
  41234. name: "Back",
  41235. image: {
  41236. source: "./media/characters/tef/back.svg",
  41237. extra: 2036/1991,
  41238. bottom: 54/2090
  41239. }
  41240. },
  41241. },
  41242. [
  41243. {
  41244. name: "Macro",
  41245. height: math.unit(80, "meters"),
  41246. default: true
  41247. },
  41248. ]
  41249. ))
  41250. characterMakers.push(() => makeCharacter(
  41251. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41252. {
  41253. front: {
  41254. height: math.unit(13, "feet"),
  41255. weight: math.unit(6, "tons"),
  41256. name: "Front",
  41257. image: {
  41258. source: "./media/characters/rover/front.svg",
  41259. extra: 1233/1156,
  41260. bottom: 50/1283
  41261. }
  41262. },
  41263. back: {
  41264. height: math.unit(13, "feet"),
  41265. weight: math.unit(6, "tons"),
  41266. name: "Back",
  41267. image: {
  41268. source: "./media/characters/rover/back.svg",
  41269. extra: 1327/1258,
  41270. bottom: 39/1366
  41271. }
  41272. },
  41273. },
  41274. [
  41275. {
  41276. name: "Normal",
  41277. height: math.unit(13, "feet"),
  41278. default: true
  41279. },
  41280. {
  41281. name: "Macro",
  41282. height: math.unit(1300, "feet")
  41283. },
  41284. {
  41285. name: "Megamacro",
  41286. height: math.unit(1300, "miles")
  41287. },
  41288. {
  41289. name: "Gigamacro",
  41290. height: math.unit(1300000, "miles")
  41291. },
  41292. ]
  41293. ))
  41294. characterMakers.push(() => makeCharacter(
  41295. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41296. {
  41297. front: {
  41298. height: math.unit(6, "feet"),
  41299. weight: math.unit(150, "lb"),
  41300. name: "Front",
  41301. image: {
  41302. source: "./media/characters/ariz/front.svg",
  41303. extra: 1401/1346,
  41304. bottom: 5/1406
  41305. }
  41306. },
  41307. },
  41308. [
  41309. {
  41310. name: "Normal",
  41311. height: math.unit(10, "feet"),
  41312. default: true
  41313. },
  41314. ]
  41315. ))
  41316. characterMakers.push(() => makeCharacter(
  41317. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41318. {
  41319. front: {
  41320. height: math.unit(6, "feet"),
  41321. weight: math.unit(140, "lb"),
  41322. name: "Front",
  41323. image: {
  41324. source: "./media/characters/sigrun/front.svg",
  41325. extra: 1418/1359,
  41326. bottom: 27/1445
  41327. }
  41328. },
  41329. },
  41330. [
  41331. {
  41332. name: "Macro",
  41333. height: math.unit(35, "feet"),
  41334. default: true
  41335. },
  41336. ]
  41337. ))
  41338. characterMakers.push(() => makeCharacter(
  41339. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41340. {
  41341. front: {
  41342. height: math.unit(6, "feet"),
  41343. weight: math.unit(150, "lb"),
  41344. name: "Front",
  41345. image: {
  41346. source: "./media/characters/numin/front.svg",
  41347. extra: 1433/1388,
  41348. bottom: 12/1445
  41349. }
  41350. },
  41351. },
  41352. [
  41353. {
  41354. name: "Macro",
  41355. height: math.unit(21.5, "km"),
  41356. default: true
  41357. },
  41358. ]
  41359. ))
  41360. characterMakers.push(() => makeCharacter(
  41361. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41362. {
  41363. front: {
  41364. height: math.unit(6, "feet"),
  41365. weight: math.unit(463, "lb"),
  41366. name: "Front",
  41367. image: {
  41368. source: "./media/characters/melwa/front.svg",
  41369. extra: 1307/1248,
  41370. bottom: 93/1400
  41371. }
  41372. },
  41373. },
  41374. [
  41375. {
  41376. name: "Macro",
  41377. height: math.unit(50, "meters"),
  41378. default: true
  41379. },
  41380. ]
  41381. ))
  41382. characterMakers.push(() => makeCharacter(
  41383. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41384. {
  41385. front: {
  41386. height: math.unit(325, "feet"),
  41387. name: "Front",
  41388. image: {
  41389. source: "./media/characters/zorkaiju/front.svg",
  41390. extra: 1955/1814,
  41391. bottom: 40/1995
  41392. }
  41393. },
  41394. frontExtended: {
  41395. height: math.unit(325, "feet"),
  41396. name: "Front (Extended)",
  41397. image: {
  41398. source: "./media/characters/zorkaiju/front-extended.svg",
  41399. extra: 1955/1814,
  41400. bottom: 40/1995
  41401. }
  41402. },
  41403. side: {
  41404. height: math.unit(325, "feet"),
  41405. name: "Side",
  41406. image: {
  41407. source: "./media/characters/zorkaiju/side.svg",
  41408. extra: 1495/1396,
  41409. bottom: 17/1512
  41410. }
  41411. },
  41412. sideExtended: {
  41413. height: math.unit(325, "feet"),
  41414. name: "Side (Extended)",
  41415. image: {
  41416. source: "./media/characters/zorkaiju/side-extended.svg",
  41417. extra: 1495/1396,
  41418. bottom: 17/1512
  41419. }
  41420. },
  41421. back: {
  41422. height: math.unit(325, "feet"),
  41423. name: "Back",
  41424. image: {
  41425. source: "./media/characters/zorkaiju/back.svg",
  41426. extra: 1959/1821,
  41427. bottom: 31/1990
  41428. }
  41429. },
  41430. backExtended: {
  41431. height: math.unit(325, "feet"),
  41432. name: "Back (Extended)",
  41433. image: {
  41434. source: "./media/characters/zorkaiju/back-extended.svg",
  41435. extra: 1959/1821,
  41436. bottom: 31/1990
  41437. }
  41438. },
  41439. hand: {
  41440. height: math.unit(58.4, "feet"),
  41441. name: "Hand",
  41442. image: {
  41443. source: "./media/characters/zorkaiju/hand.svg"
  41444. }
  41445. },
  41446. handExtended: {
  41447. height: math.unit(61.4, "feet"),
  41448. name: "Hand (Extended)",
  41449. image: {
  41450. source: "./media/characters/zorkaiju/hand-extended.svg"
  41451. }
  41452. },
  41453. foot: {
  41454. height: math.unit(95, "feet"),
  41455. name: "Foot",
  41456. image: {
  41457. source: "./media/characters/zorkaiju/foot.svg"
  41458. }
  41459. },
  41460. leftArm: {
  41461. height: math.unit(59, "feet"),
  41462. name: "Left Arm",
  41463. image: {
  41464. source: "./media/characters/zorkaiju/left-arm.svg"
  41465. }
  41466. },
  41467. rightArm: {
  41468. height: math.unit(59, "feet"),
  41469. name: "Right Arm",
  41470. image: {
  41471. source: "./media/characters/zorkaiju/right-arm.svg"
  41472. }
  41473. },
  41474. tail: {
  41475. height: math.unit(104, "feet"),
  41476. name: "Tail",
  41477. image: {
  41478. source: "./media/characters/zorkaiju/tail.svg"
  41479. }
  41480. },
  41481. tailExtended: {
  41482. height: math.unit(104, "feet"),
  41483. name: "Tail (Extended)",
  41484. image: {
  41485. source: "./media/characters/zorkaiju/tail-extended.svg"
  41486. }
  41487. },
  41488. tailBottom: {
  41489. height: math.unit(104, "feet"),
  41490. name: "Tail Bottom",
  41491. image: {
  41492. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41493. }
  41494. },
  41495. crystal: {
  41496. height: math.unit(27.54, "feet"),
  41497. name: "Crystal",
  41498. image: {
  41499. source: "./media/characters/zorkaiju/crystal.svg"
  41500. }
  41501. },
  41502. },
  41503. [
  41504. {
  41505. name: "Kaiju",
  41506. height: math.unit(325, "feet"),
  41507. default: true
  41508. },
  41509. ]
  41510. ))
  41511. characterMakers.push(() => makeCharacter(
  41512. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41513. {
  41514. front: {
  41515. height: math.unit(6 + 1/12, "feet"),
  41516. weight: math.unit(115, "lb"),
  41517. name: "Front",
  41518. image: {
  41519. source: "./media/characters/bailey-belfry/front.svg",
  41520. extra: 1240/1121,
  41521. bottom: 101/1341
  41522. }
  41523. },
  41524. },
  41525. [
  41526. {
  41527. name: "Normal",
  41528. height: math.unit(6 + 1/12, "feet"),
  41529. default: true
  41530. },
  41531. ]
  41532. ))
  41533. characterMakers.push(() => makeCharacter(
  41534. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41535. {
  41536. side: {
  41537. height: math.unit(4, "meters"),
  41538. weight: math.unit(250, "kg"),
  41539. name: "Side",
  41540. image: {
  41541. source: "./media/characters/blacky/side.svg",
  41542. extra: 1027/919,
  41543. bottom: 43/1070
  41544. }
  41545. },
  41546. maw: {
  41547. height: math.unit(1, "meters"),
  41548. name: "Maw",
  41549. image: {
  41550. source: "./media/characters/blacky/maw.svg"
  41551. }
  41552. },
  41553. paw: {
  41554. height: math.unit(1, "meters"),
  41555. name: "Paw",
  41556. image: {
  41557. source: "./media/characters/blacky/paw.svg"
  41558. }
  41559. },
  41560. },
  41561. [
  41562. {
  41563. name: "Normal",
  41564. height: math.unit(4, "meters"),
  41565. default: true
  41566. },
  41567. ]
  41568. ))
  41569. characterMakers.push(() => makeCharacter(
  41570. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41571. {
  41572. front: {
  41573. height: math.unit(170, "cm"),
  41574. weight: math.unit(66, "kg"),
  41575. name: "Front",
  41576. image: {
  41577. source: "./media/characters/thux-ei/front.svg",
  41578. extra: 1109/1011,
  41579. bottom: 8/1117
  41580. }
  41581. },
  41582. },
  41583. [
  41584. {
  41585. name: "Normal",
  41586. height: math.unit(170, "cm"),
  41587. default: true
  41588. },
  41589. ]
  41590. ))
  41591. characterMakers.push(() => makeCharacter(
  41592. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41593. {
  41594. front: {
  41595. height: math.unit(5, "feet"),
  41596. weight: math.unit(120, "lb"),
  41597. name: "Front",
  41598. image: {
  41599. source: "./media/characters/roxanne-voltaire/front.svg",
  41600. extra: 1901/1779,
  41601. bottom: 53/1954
  41602. }
  41603. },
  41604. },
  41605. [
  41606. {
  41607. name: "Normal",
  41608. height: math.unit(5, "feet"),
  41609. default: true
  41610. },
  41611. {
  41612. name: "Giant",
  41613. height: math.unit(50, "feet")
  41614. },
  41615. {
  41616. name: "Titan",
  41617. height: math.unit(500, "feet")
  41618. },
  41619. {
  41620. name: "Macro",
  41621. height: math.unit(5000, "feet")
  41622. },
  41623. {
  41624. name: "Megamacro",
  41625. height: math.unit(50000, "feet")
  41626. },
  41627. {
  41628. name: "Gigamacro",
  41629. height: math.unit(500000, "feet")
  41630. },
  41631. {
  41632. name: "Teramacro",
  41633. height: math.unit(5e6, "feet")
  41634. },
  41635. ]
  41636. ))
  41637. characterMakers.push(() => makeCharacter(
  41638. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41639. {
  41640. front: {
  41641. height: math.unit(6 + 2/12, "feet"),
  41642. name: "Front",
  41643. image: {
  41644. source: "./media/characters/squeaks/front.svg",
  41645. extra: 1823/1768,
  41646. bottom: 138/1961
  41647. }
  41648. },
  41649. },
  41650. [
  41651. {
  41652. name: "Micro",
  41653. height: math.unit(0.5, "inches")
  41654. },
  41655. {
  41656. name: "Normal",
  41657. height: math.unit(6 + 2/12, "feet"),
  41658. default: true
  41659. },
  41660. {
  41661. name: "Macro",
  41662. height: math.unit(600, "feet")
  41663. },
  41664. ]
  41665. ))
  41666. characterMakers.push(() => makeCharacter(
  41667. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41668. {
  41669. front: {
  41670. height: math.unit(1.72, "meters"),
  41671. name: "Front",
  41672. image: {
  41673. source: "./media/characters/archinger/front.svg",
  41674. extra: 1861/1675,
  41675. bottom: 125/1986
  41676. }
  41677. },
  41678. back: {
  41679. height: math.unit(1.72, "meters"),
  41680. name: "Back",
  41681. image: {
  41682. source: "./media/characters/archinger/back.svg",
  41683. extra: 1844/1701,
  41684. bottom: 104/1948
  41685. }
  41686. },
  41687. cock: {
  41688. height: math.unit(0.59, "feet"),
  41689. name: "Cock",
  41690. image: {
  41691. source: "./media/characters/archinger/cock.svg"
  41692. }
  41693. },
  41694. },
  41695. [
  41696. {
  41697. name: "Normal",
  41698. height: math.unit(1.72, "meters"),
  41699. default: true
  41700. },
  41701. {
  41702. name: "Macro",
  41703. height: math.unit(84, "meters")
  41704. },
  41705. {
  41706. name: "Macro+",
  41707. height: math.unit(112, "meters")
  41708. },
  41709. {
  41710. name: "Macro++",
  41711. height: math.unit(960, "meters")
  41712. },
  41713. {
  41714. name: "Macro+++",
  41715. height: math.unit(4, "km")
  41716. },
  41717. {
  41718. name: "Macro++++",
  41719. height: math.unit(48, "km")
  41720. },
  41721. {
  41722. name: "Macro+++++",
  41723. height: math.unit(4500, "km")
  41724. },
  41725. ]
  41726. ))
  41727. characterMakers.push(() => makeCharacter(
  41728. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41729. {
  41730. front: {
  41731. height: math.unit(5 + 5/12, "feet"),
  41732. name: "Front",
  41733. image: {
  41734. source: "./media/characters/alsnapz/front.svg",
  41735. extra: 1157/1065,
  41736. bottom: 42/1199
  41737. }
  41738. },
  41739. },
  41740. [
  41741. {
  41742. name: "Normal",
  41743. height: math.unit(5 + 5/12, "feet"),
  41744. default: true
  41745. },
  41746. ]
  41747. ))
  41748. characterMakers.push(() => makeCharacter(
  41749. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41750. {
  41751. side: {
  41752. height: math.unit(3.2, "earths"),
  41753. name: "Side",
  41754. image: {
  41755. source: "./media/characters/mag/side.svg",
  41756. extra: 1331/1008,
  41757. bottom: 52/1383
  41758. }
  41759. },
  41760. wing: {
  41761. height: math.unit(1.94, "earths"),
  41762. name: "Wing",
  41763. image: {
  41764. source: "./media/characters/mag/wing.svg"
  41765. }
  41766. },
  41767. dick: {
  41768. height: math.unit(1.8, "earths"),
  41769. name: "Dick",
  41770. image: {
  41771. source: "./media/characters/mag/dick.svg"
  41772. }
  41773. },
  41774. ass: {
  41775. height: math.unit(1.33, "earths"),
  41776. name: "Ass",
  41777. image: {
  41778. source: "./media/characters/mag/ass.svg"
  41779. }
  41780. },
  41781. head: {
  41782. height: math.unit(1.1, "earths"),
  41783. name: "Head",
  41784. image: {
  41785. source: "./media/characters/mag/head.svg"
  41786. }
  41787. },
  41788. maw: {
  41789. height: math.unit(1.62, "earths"),
  41790. name: "Maw",
  41791. image: {
  41792. source: "./media/characters/mag/maw.svg"
  41793. }
  41794. },
  41795. },
  41796. [
  41797. {
  41798. name: "Small",
  41799. height: math.unit(162, "feet")
  41800. },
  41801. {
  41802. name: "Normal",
  41803. height: math.unit(3.2, "earths"),
  41804. default: true
  41805. },
  41806. ]
  41807. ))
  41808. characterMakers.push(() => makeCharacter(
  41809. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41810. {
  41811. front: {
  41812. height: math.unit(512, "feet"),
  41813. weight: math.unit(63509, "tonnes"),
  41814. name: "Front",
  41815. image: {
  41816. source: "./media/characters/vorrel-harroc/front.svg",
  41817. extra: 1075/1063,
  41818. bottom: 62/1137
  41819. }
  41820. },
  41821. },
  41822. [
  41823. {
  41824. name: "Normal",
  41825. height: math.unit(10, "feet")
  41826. },
  41827. {
  41828. name: "Macro",
  41829. height: math.unit(512, "feet"),
  41830. default: true
  41831. },
  41832. {
  41833. name: "Megamacro",
  41834. height: math.unit(256, "miles")
  41835. },
  41836. {
  41837. name: "Gigamacro",
  41838. height: math.unit(4096, "miles")
  41839. },
  41840. ]
  41841. ))
  41842. characterMakers.push(() => makeCharacter(
  41843. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41844. {
  41845. side: {
  41846. height: math.unit(50, "feet"),
  41847. name: "Side",
  41848. image: {
  41849. source: "./media/characters/froimar/side.svg",
  41850. extra: 855/638,
  41851. bottom: 99/954
  41852. }
  41853. },
  41854. },
  41855. [
  41856. {
  41857. name: "Macro",
  41858. height: math.unit(50, "feet"),
  41859. default: true
  41860. },
  41861. ]
  41862. ))
  41863. characterMakers.push(() => makeCharacter(
  41864. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41865. {
  41866. front: {
  41867. height: math.unit(210, "miles"),
  41868. name: "Front",
  41869. image: {
  41870. source: "./media/characters/timothy/front.svg",
  41871. extra: 1007/943,
  41872. bottom: 62/1069
  41873. }
  41874. },
  41875. frontSkirt: {
  41876. height: math.unit(210, "miles"),
  41877. name: "Front (Skirt)",
  41878. image: {
  41879. source: "./media/characters/timothy/front-skirt.svg",
  41880. extra: 1007/943,
  41881. bottom: 62/1069
  41882. }
  41883. },
  41884. frontCoat: {
  41885. height: math.unit(210, "miles"),
  41886. name: "Front (Coat)",
  41887. image: {
  41888. source: "./media/characters/timothy/front-coat.svg",
  41889. extra: 1007/943,
  41890. bottom: 62/1069
  41891. }
  41892. },
  41893. },
  41894. [
  41895. {
  41896. name: "Macro",
  41897. height: math.unit(210, "miles"),
  41898. default: true
  41899. },
  41900. {
  41901. name: "Megamacro",
  41902. height: math.unit(210000, "miles")
  41903. },
  41904. ]
  41905. ))
  41906. characterMakers.push(() => makeCharacter(
  41907. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41908. {
  41909. front: {
  41910. height: math.unit(188, "feet"),
  41911. name: "Front",
  41912. image: {
  41913. source: "./media/characters/pyotr/front.svg",
  41914. extra: 1912/1826,
  41915. bottom: 18/1930
  41916. }
  41917. },
  41918. },
  41919. [
  41920. {
  41921. name: "Macro",
  41922. height: math.unit(188, "feet"),
  41923. default: true
  41924. },
  41925. {
  41926. name: "Megamacro",
  41927. height: math.unit(8, "miles")
  41928. },
  41929. ]
  41930. ))
  41931. characterMakers.push(() => makeCharacter(
  41932. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41933. {
  41934. side: {
  41935. height: math.unit(10, "feet"),
  41936. weight: math.unit(4500, "lb"),
  41937. name: "Side",
  41938. image: {
  41939. source: "./media/characters/ackart/side.svg",
  41940. extra: 1776/1668,
  41941. bottom: 116/1892
  41942. }
  41943. },
  41944. },
  41945. [
  41946. {
  41947. name: "Normal",
  41948. height: math.unit(10, "feet"),
  41949. default: true
  41950. },
  41951. ]
  41952. ))
  41953. characterMakers.push(() => makeCharacter(
  41954. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41955. {
  41956. side: {
  41957. height: math.unit(21, "feet"),
  41958. name: "Side",
  41959. image: {
  41960. source: "./media/characters/nolow/side.svg",
  41961. extra: 1484/1434,
  41962. bottom: 85/1569
  41963. }
  41964. },
  41965. sideErect: {
  41966. height: math.unit(21, "feet"),
  41967. name: "Side-erect",
  41968. image: {
  41969. source: "./media/characters/nolow/side-erect.svg",
  41970. extra: 1484/1434,
  41971. bottom: 85/1569
  41972. }
  41973. },
  41974. },
  41975. [
  41976. {
  41977. name: "Regular",
  41978. height: math.unit(12, "feet")
  41979. },
  41980. {
  41981. name: "Big Chee",
  41982. height: math.unit(21, "feet"),
  41983. default: true
  41984. },
  41985. ]
  41986. ))
  41987. characterMakers.push(() => makeCharacter(
  41988. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41989. {
  41990. front: {
  41991. height: math.unit(7, "feet"),
  41992. weight: math.unit(250, "lb"),
  41993. name: "Front",
  41994. image: {
  41995. source: "./media/characters/nines/front.svg",
  41996. extra: 1741/1607,
  41997. bottom: 41/1782
  41998. }
  41999. },
  42000. side: {
  42001. height: math.unit(7, "feet"),
  42002. weight: math.unit(250, "lb"),
  42003. name: "Side",
  42004. image: {
  42005. source: "./media/characters/nines/side.svg",
  42006. extra: 1854/1735,
  42007. bottom: 93/1947
  42008. }
  42009. },
  42010. back: {
  42011. height: math.unit(7, "feet"),
  42012. weight: math.unit(250, "lb"),
  42013. name: "Back",
  42014. image: {
  42015. source: "./media/characters/nines/back.svg",
  42016. extra: 1748/1615,
  42017. bottom: 20/1768
  42018. }
  42019. },
  42020. },
  42021. [
  42022. {
  42023. name: "Megamacro",
  42024. height: math.unit(99, "km"),
  42025. default: true
  42026. },
  42027. ]
  42028. ))
  42029. characterMakers.push(() => makeCharacter(
  42030. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42031. {
  42032. front: {
  42033. height: math.unit(5 + 10/12, "feet"),
  42034. weight: math.unit(210, "lb"),
  42035. name: "Front",
  42036. image: {
  42037. source: "./media/characters/zenith/front.svg",
  42038. extra: 1531/1452,
  42039. bottom: 198/1729
  42040. }
  42041. },
  42042. back: {
  42043. height: math.unit(5 + 10/12, "feet"),
  42044. weight: math.unit(210, "lb"),
  42045. name: "Back",
  42046. image: {
  42047. source: "./media/characters/zenith/back.svg",
  42048. extra: 1571/1487,
  42049. bottom: 75/1646
  42050. }
  42051. },
  42052. },
  42053. [
  42054. {
  42055. name: "Normal",
  42056. height: math.unit(5 + 10/12, "feet"),
  42057. default: true
  42058. }
  42059. ]
  42060. ))
  42061. characterMakers.push(() => makeCharacter(
  42062. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42063. {
  42064. front: {
  42065. height: math.unit(4, "feet"),
  42066. weight: math.unit(60, "lb"),
  42067. name: "Front",
  42068. image: {
  42069. source: "./media/characters/jasper/front.svg",
  42070. extra: 1450/1379,
  42071. bottom: 19/1469
  42072. }
  42073. },
  42074. },
  42075. [
  42076. {
  42077. name: "Normal",
  42078. height: math.unit(4, "feet"),
  42079. default: true
  42080. },
  42081. ]
  42082. ))
  42083. characterMakers.push(() => makeCharacter(
  42084. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42085. {
  42086. front: {
  42087. height: math.unit(6 + 5/12, "feet"),
  42088. weight: math.unit(290, "lb"),
  42089. name: "Front",
  42090. image: {
  42091. source: "./media/characters/tiberius-thyben/front.svg",
  42092. extra: 757/739,
  42093. bottom: 39/796
  42094. }
  42095. },
  42096. },
  42097. [
  42098. {
  42099. name: "Micro",
  42100. height: math.unit(1.5, "inches")
  42101. },
  42102. {
  42103. name: "Normal",
  42104. height: math.unit(6 + 5/12, "feet"),
  42105. default: true
  42106. },
  42107. {
  42108. name: "Macro",
  42109. height: math.unit(300, "feet")
  42110. },
  42111. ]
  42112. ))
  42113. characterMakers.push(() => makeCharacter(
  42114. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42115. {
  42116. front: {
  42117. height: math.unit(5 + 6/12, "feet"),
  42118. weight: math.unit(60, "kg"),
  42119. name: "Front",
  42120. image: {
  42121. source: "./media/characters/sabre/front.svg",
  42122. extra: 738/671,
  42123. bottom: 27/765
  42124. }
  42125. },
  42126. },
  42127. [
  42128. {
  42129. name: "Teeny",
  42130. height: math.unit(2, "inches")
  42131. },
  42132. {
  42133. name: "Smol",
  42134. height: math.unit(8, "inches")
  42135. },
  42136. {
  42137. name: "Normal",
  42138. height: math.unit(5 + 6/12, "feet"),
  42139. default: true
  42140. },
  42141. {
  42142. name: "Mini-Macro",
  42143. height: math.unit(15, "feet")
  42144. },
  42145. {
  42146. name: "Macro",
  42147. height: math.unit(50, "feet")
  42148. },
  42149. ]
  42150. ))
  42151. characterMakers.push(() => makeCharacter(
  42152. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42153. {
  42154. front: {
  42155. height: math.unit(6 + 4/12, "feet"),
  42156. weight: math.unit(170, "lb"),
  42157. name: "Front",
  42158. image: {
  42159. source: "./media/characters/charlie/front.svg",
  42160. extra: 1348/1228,
  42161. bottom: 15/1363
  42162. }
  42163. },
  42164. },
  42165. [
  42166. {
  42167. name: "Macro",
  42168. height: math.unit(1700, "meters"),
  42169. default: true
  42170. },
  42171. {
  42172. name: "MegaMacro",
  42173. height: math.unit(20400, "meters")
  42174. },
  42175. ]
  42176. ))
  42177. characterMakers.push(() => makeCharacter(
  42178. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42179. {
  42180. front: {
  42181. height: math.unit(6 + 3/12, "feet"),
  42182. weight: math.unit(185, "lb"),
  42183. name: "Front",
  42184. image: {
  42185. source: "./media/characters/susan-grant/front.svg",
  42186. extra: 1351/1327,
  42187. bottom: 26/1377
  42188. }
  42189. },
  42190. },
  42191. [
  42192. {
  42193. name: "Normal",
  42194. height: math.unit(6 + 3/12, "feet"),
  42195. default: true
  42196. },
  42197. {
  42198. name: "Macro",
  42199. height: math.unit(225, "feet")
  42200. },
  42201. {
  42202. name: "Macro+",
  42203. height: math.unit(900, "feet")
  42204. },
  42205. {
  42206. name: "MegaMacro",
  42207. height: math.unit(14400, "feet")
  42208. },
  42209. ]
  42210. ))
  42211. characterMakers.push(() => makeCharacter(
  42212. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42213. {
  42214. front: {
  42215. height: math.unit(5 + 4/12, "feet"),
  42216. weight: math.unit(110, "lb"),
  42217. name: "Front",
  42218. image: {
  42219. source: "./media/characters/axel-isanov/front.svg",
  42220. extra: 1096/1065,
  42221. bottom: 13/1109
  42222. }
  42223. },
  42224. },
  42225. [
  42226. {
  42227. name: "Normal",
  42228. height: math.unit(5 + 4/12, "feet"),
  42229. default: true
  42230. },
  42231. ]
  42232. ))
  42233. characterMakers.push(() => makeCharacter(
  42234. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42235. {
  42236. front: {
  42237. height: math.unit(9, "feet"),
  42238. weight: math.unit(467, "lb"),
  42239. name: "Front",
  42240. image: {
  42241. source: "./media/characters/necahual/front.svg",
  42242. extra: 920/873,
  42243. bottom: 26/946
  42244. }
  42245. },
  42246. back: {
  42247. height: math.unit(9, "feet"),
  42248. weight: math.unit(467, "lb"),
  42249. name: "Back",
  42250. image: {
  42251. source: "./media/characters/necahual/back.svg",
  42252. extra: 930/884,
  42253. bottom: 16/946
  42254. }
  42255. },
  42256. frontUnderwear: {
  42257. height: math.unit(9, "feet"),
  42258. weight: math.unit(467, "lb"),
  42259. name: "Front (Underwear)",
  42260. image: {
  42261. source: "./media/characters/necahual/front-underwear.svg",
  42262. extra: 920/873,
  42263. bottom: 26/946
  42264. }
  42265. },
  42266. frontDressed: {
  42267. height: math.unit(9, "feet"),
  42268. weight: math.unit(467, "lb"),
  42269. name: "Front (Dressed)",
  42270. image: {
  42271. source: "./media/characters/necahual/front-dressed.svg",
  42272. extra: 920/873,
  42273. bottom: 26/946
  42274. }
  42275. },
  42276. },
  42277. [
  42278. {
  42279. name: "Comprsesed",
  42280. height: math.unit(9, "feet")
  42281. },
  42282. {
  42283. name: "Natural",
  42284. height: math.unit(15, "feet"),
  42285. default: true
  42286. },
  42287. {
  42288. name: "Boosted",
  42289. height: math.unit(50, "feet")
  42290. },
  42291. {
  42292. name: "Boosted+",
  42293. height: math.unit(150, "feet")
  42294. },
  42295. {
  42296. name: "Max",
  42297. height: math.unit(500, "feet")
  42298. },
  42299. ]
  42300. ))
  42301. characterMakers.push(() => makeCharacter(
  42302. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42303. {
  42304. front: {
  42305. height: math.unit(22 + 1/12, "feet"),
  42306. weight: math.unit(3200, "lb"),
  42307. name: "Front",
  42308. image: {
  42309. source: "./media/characters/theo-acacia/front.svg",
  42310. extra: 1796/1741,
  42311. bottom: 83/1879
  42312. }
  42313. },
  42314. frontUnderwear: {
  42315. height: math.unit(22 + 1/12, "feet"),
  42316. weight: math.unit(3200, "lb"),
  42317. name: "Front (Underwear)",
  42318. image: {
  42319. source: "./media/characters/theo-acacia/front-underwear.svg",
  42320. extra: 1796/1741,
  42321. bottom: 83/1879
  42322. }
  42323. },
  42324. frontNude: {
  42325. height: math.unit(22 + 1/12, "feet"),
  42326. weight: math.unit(3200, "lb"),
  42327. name: "Front (Nude)",
  42328. image: {
  42329. source: "./media/characters/theo-acacia/front-nude.svg",
  42330. extra: 1796/1741,
  42331. bottom: 83/1879
  42332. }
  42333. },
  42334. },
  42335. [
  42336. {
  42337. name: "Normal",
  42338. height: math.unit(22 + 1/12, "feet"),
  42339. default: true
  42340. },
  42341. ]
  42342. ))
  42343. characterMakers.push(() => makeCharacter(
  42344. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42345. {
  42346. front: {
  42347. height: math.unit(20, "feet"),
  42348. name: "Front",
  42349. image: {
  42350. source: "./media/characters/astra/front.svg",
  42351. extra: 1850/1714,
  42352. bottom: 106/1956
  42353. }
  42354. },
  42355. frontUndressed: {
  42356. height: math.unit(20, "feet"),
  42357. name: "Front (Undressed)",
  42358. image: {
  42359. source: "./media/characters/astra/front-undressed.svg",
  42360. extra: 1926/1749,
  42361. bottom: 0/1926
  42362. }
  42363. },
  42364. hand: {
  42365. height: math.unit(1.53, "feet"),
  42366. name: "Hand",
  42367. image: {
  42368. source: "./media/characters/astra/hand.svg"
  42369. }
  42370. },
  42371. paw: {
  42372. height: math.unit(1.53, "feet"),
  42373. name: "Paw",
  42374. image: {
  42375. source: "./media/characters/astra/paw.svg"
  42376. }
  42377. },
  42378. },
  42379. [
  42380. {
  42381. name: "Smallest",
  42382. height: math.unit(20, "feet")
  42383. },
  42384. {
  42385. name: "Normal",
  42386. height: math.unit(1e9, "miles"),
  42387. default: true
  42388. },
  42389. {
  42390. name: "Larger",
  42391. height: math.unit(5, "multiverses")
  42392. },
  42393. {
  42394. name: "Largest",
  42395. height: math.unit(1e9, "multiverses")
  42396. },
  42397. ]
  42398. ))
  42399. characterMakers.push(() => makeCharacter(
  42400. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42401. {
  42402. front: {
  42403. height: math.unit(8, "feet"),
  42404. name: "Front",
  42405. image: {
  42406. source: "./media/characters/breanna/front.svg",
  42407. extra: 1912/1632,
  42408. bottom: 33/1945
  42409. }
  42410. },
  42411. },
  42412. [
  42413. {
  42414. name: "Smallest",
  42415. height: math.unit(8, "feet")
  42416. },
  42417. {
  42418. name: "Normal",
  42419. height: math.unit(1, "mile"),
  42420. default: true
  42421. },
  42422. {
  42423. name: "Maximum",
  42424. height: math.unit(1500000000000, "lightyears")
  42425. },
  42426. ]
  42427. ))
  42428. characterMakers.push(() => makeCharacter(
  42429. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42430. {
  42431. front: {
  42432. height: math.unit(5 + 11/12, "feet"),
  42433. weight: math.unit(155, "lb"),
  42434. name: "Front",
  42435. image: {
  42436. source: "./media/characters/cai/front.svg",
  42437. extra: 1823/1702,
  42438. bottom: 32/1855
  42439. }
  42440. },
  42441. back: {
  42442. height: math.unit(5 + 11/12, "feet"),
  42443. weight: math.unit(155, "lb"),
  42444. name: "Back",
  42445. image: {
  42446. source: "./media/characters/cai/back.svg",
  42447. extra: 1809/1708,
  42448. bottom: 31/1840
  42449. }
  42450. },
  42451. },
  42452. [
  42453. {
  42454. name: "Normal",
  42455. height: math.unit(5 + 11/12, "feet"),
  42456. default: true
  42457. },
  42458. {
  42459. name: "Big",
  42460. height: math.unit(15, "feet")
  42461. },
  42462. {
  42463. name: "Macro",
  42464. height: math.unit(200, "feet")
  42465. },
  42466. ]
  42467. ))
  42468. characterMakers.push(() => makeCharacter(
  42469. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42470. {
  42471. front: {
  42472. height: math.unit(5 + 6/12, "feet"),
  42473. weight: math.unit(160, "lb"),
  42474. name: "Front",
  42475. image: {
  42476. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42477. extra: 1227/1174,
  42478. bottom: 37/1264
  42479. }
  42480. },
  42481. },
  42482. [
  42483. {
  42484. name: "Macro",
  42485. height: math.unit(444, "meters"),
  42486. default: true
  42487. },
  42488. ]
  42489. ))
  42490. characterMakers.push(() => makeCharacter(
  42491. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42492. {
  42493. front: {
  42494. height: math.unit(18 + 7/12, "feet"),
  42495. name: "Front",
  42496. image: {
  42497. source: "./media/characters/rex/front.svg",
  42498. extra: 1941/1807,
  42499. bottom: 66/2007
  42500. }
  42501. },
  42502. back: {
  42503. height: math.unit(18 + 7/12, "feet"),
  42504. name: "Back",
  42505. image: {
  42506. source: "./media/characters/rex/back.svg",
  42507. extra: 1937/1822,
  42508. bottom: 42/1979
  42509. }
  42510. },
  42511. boot: {
  42512. height: math.unit(3.45, "feet"),
  42513. name: "Boot",
  42514. image: {
  42515. source: "./media/characters/rex/boot.svg"
  42516. }
  42517. },
  42518. paw: {
  42519. height: math.unit(4.17, "feet"),
  42520. name: "Paw",
  42521. image: {
  42522. source: "./media/characters/rex/paw.svg"
  42523. }
  42524. },
  42525. head: {
  42526. height: math.unit(6.728, "feet"),
  42527. name: "Head",
  42528. image: {
  42529. source: "./media/characters/rex/head.svg"
  42530. }
  42531. },
  42532. },
  42533. [
  42534. {
  42535. name: "Nano",
  42536. height: math.unit(18 + 7/12, "feet")
  42537. },
  42538. {
  42539. name: "Micro",
  42540. height: math.unit(1.5, "megameters")
  42541. },
  42542. {
  42543. name: "Normal",
  42544. height: math.unit(440, "megameters"),
  42545. default: true
  42546. },
  42547. {
  42548. name: "Macro",
  42549. height: math.unit(2.5, "gigameters")
  42550. },
  42551. {
  42552. name: "Gigamacro",
  42553. height: math.unit(2, "galaxies")
  42554. },
  42555. ]
  42556. ))
  42557. characterMakers.push(() => makeCharacter(
  42558. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42559. {
  42560. side: {
  42561. height: math.unit(32, "feet"),
  42562. weight: math.unit(250000, "lb"),
  42563. name: "Side",
  42564. image: {
  42565. source: "./media/characters/silverwing/side.svg",
  42566. extra: 1100/1019,
  42567. bottom: 204/1304
  42568. }
  42569. },
  42570. },
  42571. [
  42572. {
  42573. name: "Normal",
  42574. height: math.unit(32, "feet"),
  42575. default: true
  42576. },
  42577. ]
  42578. ))
  42579. characterMakers.push(() => makeCharacter(
  42580. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42581. {
  42582. front: {
  42583. height: math.unit(6 + 6/12, "feet"),
  42584. weight: math.unit(350, "lb"),
  42585. name: "Front",
  42586. image: {
  42587. source: "./media/characters/tristan-hawthorne/front.svg",
  42588. extra: 1159/1124,
  42589. bottom: 37/1196
  42590. },
  42591. form: "labrador",
  42592. default: true
  42593. },
  42594. skunkFront: {
  42595. height: math.unit(4 + 6/12, "feet"),
  42596. weight: math.unit(120, "lb"),
  42597. name: "Front",
  42598. image: {
  42599. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42600. extra: 1609/1551,
  42601. bottom: 169/1778
  42602. },
  42603. form: "skunk",
  42604. default: true
  42605. },
  42606. },
  42607. [
  42608. {
  42609. name: "Normal",
  42610. height: math.unit(6 + 6/12, "feet"),
  42611. form: "labrador",
  42612. default: true
  42613. },
  42614. {
  42615. name: "Normal",
  42616. height: math.unit(4 + 6/12, "feet"),
  42617. form: "skunk",
  42618. default: true
  42619. },
  42620. ],
  42621. {
  42622. "labrador": {
  42623. name: "Labrador",
  42624. default: true
  42625. },
  42626. "skunk": {
  42627. name: "Skunk"
  42628. }
  42629. }
  42630. ))
  42631. characterMakers.push(() => makeCharacter(
  42632. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42633. {
  42634. front: {
  42635. height: math.unit(5 + 11/12, "feet"),
  42636. weight: math.unit(190, "lb"),
  42637. name: "Front",
  42638. image: {
  42639. source: "./media/characters/mizu/front.svg",
  42640. extra: 1988/1788,
  42641. bottom: 14/2002
  42642. }
  42643. },
  42644. },
  42645. [
  42646. {
  42647. name: "Normal",
  42648. height: math.unit(5 + 11/12, "feet"),
  42649. default: true
  42650. },
  42651. ]
  42652. ))
  42653. characterMakers.push(() => makeCharacter(
  42654. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42655. {
  42656. front: {
  42657. height: math.unit(1.7, "feet"),
  42658. weight: math.unit(50, "lb"),
  42659. name: "Front",
  42660. image: {
  42661. source: "./media/characters/dechroma/front.svg",
  42662. extra: 1095/859,
  42663. bottom: 64/1159
  42664. }
  42665. },
  42666. },
  42667. [
  42668. {
  42669. name: "Normal",
  42670. height: math.unit(1.7, "feet"),
  42671. default: true
  42672. },
  42673. ]
  42674. ))
  42675. characterMakers.push(() => makeCharacter(
  42676. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42677. {
  42678. side: {
  42679. height: math.unit(30, "feet"),
  42680. name: "Side",
  42681. image: {
  42682. source: "./media/characters/veluren-thanazel/side.svg",
  42683. extra: 1611/633,
  42684. bottom: 118/1729
  42685. }
  42686. },
  42687. front: {
  42688. height: math.unit(30, "feet"),
  42689. name: "Front",
  42690. image: {
  42691. source: "./media/characters/veluren-thanazel/front.svg",
  42692. extra: 1486/636,
  42693. bottom: 238/1724
  42694. }
  42695. },
  42696. head: {
  42697. height: math.unit(21.4, "feet"),
  42698. name: "Head",
  42699. image: {
  42700. source: "./media/characters/veluren-thanazel/head.svg"
  42701. }
  42702. },
  42703. genitals: {
  42704. height: math.unit(19.4, "feet"),
  42705. name: "Genitals",
  42706. image: {
  42707. source: "./media/characters/veluren-thanazel/genitals.svg"
  42708. }
  42709. },
  42710. },
  42711. [
  42712. {
  42713. name: "Social",
  42714. height: math.unit(6, "feet")
  42715. },
  42716. {
  42717. name: "Play",
  42718. height: math.unit(12, "feet")
  42719. },
  42720. {
  42721. name: "True",
  42722. height: math.unit(30, "feet"),
  42723. default: true
  42724. },
  42725. ]
  42726. ))
  42727. characterMakers.push(() => makeCharacter(
  42728. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42729. {
  42730. front: {
  42731. height: math.unit(7 + 6/12, "feet"),
  42732. weight: math.unit(500, "kg"),
  42733. name: "Front",
  42734. image: {
  42735. source: "./media/characters/arcturas/front.svg",
  42736. extra: 1700/1500,
  42737. bottom: 145/1845
  42738. }
  42739. },
  42740. },
  42741. [
  42742. {
  42743. name: "Normal",
  42744. height: math.unit(7 + 6/12, "feet"),
  42745. default: true
  42746. },
  42747. ]
  42748. ))
  42749. characterMakers.push(() => makeCharacter(
  42750. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42751. {
  42752. side: {
  42753. height: math.unit(6, "feet"),
  42754. weight: math.unit(2, "tons"),
  42755. name: "Side",
  42756. image: {
  42757. source: "./media/characters/vitaen/side.svg",
  42758. extra: 1157/617,
  42759. bottom: 122/1279
  42760. }
  42761. },
  42762. },
  42763. [
  42764. {
  42765. name: "Normal",
  42766. height: math.unit(6, "feet"),
  42767. default: true
  42768. },
  42769. ]
  42770. ))
  42771. characterMakers.push(() => makeCharacter(
  42772. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42773. {
  42774. front: {
  42775. height: math.unit(19, "feet"),
  42776. name: "Front",
  42777. image: {
  42778. source: "./media/characters/fia-dreamweaver/front.svg",
  42779. extra: 1630/1504,
  42780. bottom: 25/1655
  42781. }
  42782. },
  42783. },
  42784. [
  42785. {
  42786. name: "Normal",
  42787. height: math.unit(19, "feet"),
  42788. default: true
  42789. },
  42790. ]
  42791. ))
  42792. characterMakers.push(() => makeCharacter(
  42793. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42794. {
  42795. front: {
  42796. height: math.unit(5 + 4/12, "feet"),
  42797. name: "Front",
  42798. image: {
  42799. source: "./media/characters/artan/front.svg",
  42800. extra: 1618/1535,
  42801. bottom: 46/1664
  42802. }
  42803. },
  42804. back: {
  42805. height: math.unit(5 + 4/12, "feet"),
  42806. name: "Back",
  42807. image: {
  42808. source: "./media/characters/artan/back.svg",
  42809. extra: 1618/1543,
  42810. bottom: 31/1649
  42811. }
  42812. },
  42813. },
  42814. [
  42815. {
  42816. name: "Normal",
  42817. height: math.unit(5 + 4/12, "feet"),
  42818. default: true
  42819. },
  42820. ]
  42821. ))
  42822. characterMakers.push(() => makeCharacter(
  42823. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42824. {
  42825. side: {
  42826. height: math.unit(182, "cm"),
  42827. weight: math.unit(1000, "lb"),
  42828. name: "Side",
  42829. image: {
  42830. source: "./media/characters/silver-dragon/side.svg",
  42831. extra: 710/287,
  42832. bottom: 88/798
  42833. }
  42834. },
  42835. },
  42836. [
  42837. {
  42838. name: "Normal",
  42839. height: math.unit(182, "cm"),
  42840. default: true
  42841. },
  42842. ]
  42843. ))
  42844. characterMakers.push(() => makeCharacter(
  42845. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42846. {
  42847. side: {
  42848. height: math.unit(6 + 6/12, "feet"),
  42849. weight: math.unit(1.5, "tons"),
  42850. name: "Side",
  42851. image: {
  42852. source: "./media/characters/zephyr/side.svg",
  42853. extra: 1433/586,
  42854. bottom: 109/1542
  42855. }
  42856. },
  42857. },
  42858. [
  42859. {
  42860. name: "Normal",
  42861. height: math.unit(6 + 6/12, "feet"),
  42862. default: true
  42863. },
  42864. ]
  42865. ))
  42866. characterMakers.push(() => makeCharacter(
  42867. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42868. {
  42869. side: {
  42870. height: math.unit(1, "feet"),
  42871. name: "Side",
  42872. image: {
  42873. source: "./media/characters/vixye/side.svg",
  42874. extra: 632/541,
  42875. bottom: 0/632
  42876. }
  42877. },
  42878. },
  42879. [
  42880. {
  42881. name: "Normal",
  42882. height: math.unit(1, "feet"),
  42883. default: true
  42884. },
  42885. {
  42886. name: "True",
  42887. height: math.unit(1e15, "multiverses")
  42888. },
  42889. ]
  42890. ))
  42891. characterMakers.push(() => makeCharacter(
  42892. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42893. {
  42894. front: {
  42895. height: math.unit(8 + 2/12, "feet"),
  42896. weight: math.unit(650, "lb"),
  42897. name: "Front",
  42898. image: {
  42899. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42900. extra: 1174/1137,
  42901. bottom: 82/1256
  42902. }
  42903. },
  42904. back: {
  42905. height: math.unit(8 + 2/12, "feet"),
  42906. weight: math.unit(650, "lb"),
  42907. name: "Back",
  42908. image: {
  42909. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42910. extra: 1204/1157,
  42911. bottom: 46/1250
  42912. }
  42913. },
  42914. },
  42915. [
  42916. {
  42917. name: "Wildform",
  42918. height: math.unit(8 + 2/12, "feet"),
  42919. default: true
  42920. },
  42921. ]
  42922. ))
  42923. characterMakers.push(() => makeCharacter(
  42924. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42925. {
  42926. front: {
  42927. height: math.unit(18, "feet"),
  42928. name: "Front",
  42929. image: {
  42930. source: "./media/characters/cyphin/front.svg",
  42931. extra: 970/886,
  42932. bottom: 42/1012
  42933. }
  42934. },
  42935. back: {
  42936. height: math.unit(18, "feet"),
  42937. name: "Back",
  42938. image: {
  42939. source: "./media/characters/cyphin/back.svg",
  42940. extra: 1009/894,
  42941. bottom: 24/1033
  42942. }
  42943. },
  42944. head: {
  42945. height: math.unit(5.05, "feet"),
  42946. name: "Head",
  42947. image: {
  42948. source: "./media/characters/cyphin/head.svg"
  42949. }
  42950. },
  42951. tailbud: {
  42952. height: math.unit(5, "feet"),
  42953. name: "Tailbud",
  42954. image: {
  42955. source: "./media/characters/cyphin/tailbud.svg"
  42956. }
  42957. },
  42958. },
  42959. [
  42960. ]
  42961. ))
  42962. characterMakers.push(() => makeCharacter(
  42963. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42964. {
  42965. side: {
  42966. height: math.unit(10, "feet"),
  42967. weight: math.unit(6, "tons"),
  42968. name: "Side",
  42969. image: {
  42970. source: "./media/characters/raijin/side.svg",
  42971. extra: 1529/613,
  42972. bottom: 337/1866
  42973. }
  42974. },
  42975. },
  42976. [
  42977. {
  42978. name: "Normal",
  42979. height: math.unit(10, "feet"),
  42980. default: true
  42981. },
  42982. ]
  42983. ))
  42984. characterMakers.push(() => makeCharacter(
  42985. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42986. {
  42987. side: {
  42988. height: math.unit(9, "feet"),
  42989. name: "Side",
  42990. image: {
  42991. source: "./media/characters/nilghais/side.svg",
  42992. extra: 1047/744,
  42993. bottom: 91/1138
  42994. }
  42995. },
  42996. head: {
  42997. height: math.unit(3.14, "feet"),
  42998. name: "Head",
  42999. image: {
  43000. source: "./media/characters/nilghais/head.svg"
  43001. }
  43002. },
  43003. mouth: {
  43004. height: math.unit(4.6, "feet"),
  43005. name: "Mouth",
  43006. image: {
  43007. source: "./media/characters/nilghais/mouth.svg"
  43008. }
  43009. },
  43010. wings: {
  43011. height: math.unit(24, "feet"),
  43012. name: "Wings",
  43013. image: {
  43014. source: "./media/characters/nilghais/wings.svg"
  43015. }
  43016. },
  43017. ass: {
  43018. height: math.unit(6.12, "feet"),
  43019. name: "Ass",
  43020. image: {
  43021. source: "./media/characters/nilghais/ass.svg"
  43022. }
  43023. },
  43024. },
  43025. [
  43026. {
  43027. name: "Normal",
  43028. height: math.unit(9, "feet"),
  43029. default: true
  43030. },
  43031. ]
  43032. ))
  43033. characterMakers.push(() => makeCharacter(
  43034. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43035. {
  43036. regular: {
  43037. height: math.unit(16 + 2/12, "feet"),
  43038. weight: math.unit(2300, "lb"),
  43039. name: "Regular",
  43040. image: {
  43041. source: "./media/characters/zolgar/regular.svg",
  43042. extra: 1246/1004,
  43043. bottom: 124/1370
  43044. }
  43045. },
  43046. boxers: {
  43047. height: math.unit(16 + 2/12, "feet"),
  43048. weight: math.unit(2300, "lb"),
  43049. name: "Boxers",
  43050. image: {
  43051. source: "./media/characters/zolgar/boxers.svg",
  43052. extra: 1246/1004,
  43053. bottom: 124/1370
  43054. }
  43055. },
  43056. armored: {
  43057. height: math.unit(16 + 2/12, "feet"),
  43058. weight: math.unit(2300, "lb"),
  43059. name: "Armored",
  43060. image: {
  43061. source: "./media/characters/zolgar/armored.svg",
  43062. extra: 1246/1004,
  43063. bottom: 124/1370
  43064. }
  43065. },
  43066. goth: {
  43067. height: math.unit(16 + 2/12, "feet"),
  43068. weight: math.unit(2300, "lb"),
  43069. name: "Goth",
  43070. image: {
  43071. source: "./media/characters/zolgar/goth.svg",
  43072. extra: 1246/1004,
  43073. bottom: 124/1370
  43074. }
  43075. },
  43076. },
  43077. [
  43078. {
  43079. name: "Shrunken Down",
  43080. height: math.unit(9 + 2/12, "feet")
  43081. },
  43082. {
  43083. name: "Normal",
  43084. height: math.unit(16 + 2/12, "feet"),
  43085. default: true
  43086. },
  43087. ]
  43088. ))
  43089. characterMakers.push(() => makeCharacter(
  43090. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43091. {
  43092. front: {
  43093. height: math.unit(6, "feet"),
  43094. weight: math.unit(168, "lb"),
  43095. name: "Front",
  43096. image: {
  43097. source: "./media/characters/luca/front.svg",
  43098. extra: 841/667,
  43099. bottom: 102/943
  43100. }
  43101. },
  43102. },
  43103. [
  43104. {
  43105. name: "Normal",
  43106. height: math.unit(6, "feet"),
  43107. default: true
  43108. },
  43109. ]
  43110. ))
  43111. characterMakers.push(() => makeCharacter(
  43112. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43113. {
  43114. side: {
  43115. height: math.unit(7 + 3/12, "feet"),
  43116. weight: math.unit(312, "lb"),
  43117. name: "Side",
  43118. image: {
  43119. source: "./media/characters/zezo/side.svg",
  43120. extra: 1192/1067,
  43121. bottom: 63/1255
  43122. }
  43123. },
  43124. },
  43125. [
  43126. {
  43127. name: "Normal",
  43128. height: math.unit(7 + 3/12, "feet"),
  43129. default: true
  43130. },
  43131. ]
  43132. ))
  43133. characterMakers.push(() => makeCharacter(
  43134. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43135. {
  43136. front: {
  43137. height: math.unit(5 + 5/12, "feet"),
  43138. weight: math.unit(170, "lb"),
  43139. name: "Front",
  43140. image: {
  43141. source: "./media/characters/mayso/front.svg",
  43142. extra: 1215/1108,
  43143. bottom: 16/1231
  43144. }
  43145. },
  43146. },
  43147. [
  43148. {
  43149. name: "Normal",
  43150. height: math.unit(5 + 5/12, "feet"),
  43151. default: true
  43152. },
  43153. ]
  43154. ))
  43155. characterMakers.push(() => makeCharacter(
  43156. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43157. {
  43158. front: {
  43159. height: math.unit(4 + 3/12, "feet"),
  43160. weight: math.unit(80, "lb"),
  43161. name: "Front",
  43162. image: {
  43163. source: "./media/characters/hess/front.svg",
  43164. extra: 1200/1123,
  43165. bottom: 16/1216
  43166. }
  43167. },
  43168. },
  43169. [
  43170. {
  43171. name: "Normal",
  43172. height: math.unit(4 + 3/12, "feet"),
  43173. default: true
  43174. },
  43175. ]
  43176. ))
  43177. characterMakers.push(() => makeCharacter(
  43178. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43179. {
  43180. front: {
  43181. height: math.unit(1.9, "meters"),
  43182. name: "Front",
  43183. image: {
  43184. source: "./media/characters/ashgar/front.svg",
  43185. extra: 1177/1146,
  43186. bottom: 99/1276
  43187. }
  43188. },
  43189. back: {
  43190. height: math.unit(1.9, "meters"),
  43191. name: "Back",
  43192. image: {
  43193. source: "./media/characters/ashgar/back.svg",
  43194. extra: 1201/1183,
  43195. bottom: 53/1254
  43196. }
  43197. },
  43198. feral: {
  43199. height: math.unit(1.4, "meters"),
  43200. name: "Feral",
  43201. image: {
  43202. source: "./media/characters/ashgar/feral.svg",
  43203. extra: 370/345,
  43204. bottom: 45/415
  43205. }
  43206. },
  43207. },
  43208. [
  43209. {
  43210. name: "Normal",
  43211. height: math.unit(1.9, "meters"),
  43212. default: true
  43213. },
  43214. ]
  43215. ))
  43216. characterMakers.push(() => makeCharacter(
  43217. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43218. {
  43219. regular: {
  43220. height: math.unit(6, "feet"),
  43221. weight: math.unit(220, "lb"),
  43222. name: "Regular",
  43223. image: {
  43224. source: "./media/characters/phillip/regular.svg",
  43225. extra: 1373/1277,
  43226. bottom: 75/1448
  43227. }
  43228. },
  43229. dressed: {
  43230. height: math.unit(6, "feet"),
  43231. weight: math.unit(220, "lb"),
  43232. name: "Dressed",
  43233. image: {
  43234. source: "./media/characters/phillip/dressed.svg",
  43235. extra: 1373/1277,
  43236. bottom: 75/1448
  43237. }
  43238. },
  43239. paw: {
  43240. height: math.unit(1.44, "feet"),
  43241. name: "Paw",
  43242. image: {
  43243. source: "./media/characters/phillip/paw.svg"
  43244. }
  43245. },
  43246. },
  43247. [
  43248. {
  43249. name: "Normal",
  43250. height: math.unit(6, "feet"),
  43251. default: true
  43252. },
  43253. ]
  43254. ))
  43255. characterMakers.push(() => makeCharacter(
  43256. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43257. {
  43258. side: {
  43259. height: math.unit(42, "feet"),
  43260. name: "Side",
  43261. image: {
  43262. source: "./media/characters/uvula/side.svg",
  43263. extra: 683/586,
  43264. bottom: 60/743
  43265. }
  43266. },
  43267. front: {
  43268. height: math.unit(42, "feet"),
  43269. name: "Front",
  43270. image: {
  43271. source: "./media/characters/uvula/front.svg",
  43272. extra: 705/613,
  43273. bottom: 54/759
  43274. }
  43275. },
  43276. maw: {
  43277. height: math.unit(23.5, "feet"),
  43278. name: "Maw",
  43279. image: {
  43280. source: "./media/characters/uvula/maw.svg"
  43281. }
  43282. },
  43283. },
  43284. [
  43285. {
  43286. name: "Original Size",
  43287. height: math.unit(14, "inches")
  43288. },
  43289. {
  43290. name: "Human Size",
  43291. height: math.unit(6, "feet")
  43292. },
  43293. {
  43294. name: "Big",
  43295. height: math.unit(42, "feet"),
  43296. default: true
  43297. },
  43298. {
  43299. name: "Bigger",
  43300. height: math.unit(100, "feet")
  43301. },
  43302. ]
  43303. ))
  43304. characterMakers.push(() => makeCharacter(
  43305. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43306. {
  43307. front: {
  43308. height: math.unit(5 + 11/12, "feet"),
  43309. name: "Front",
  43310. image: {
  43311. source: "./media/characters/lannah/front.svg",
  43312. extra: 1208/1113,
  43313. bottom: 97/1305
  43314. }
  43315. },
  43316. },
  43317. [
  43318. {
  43319. name: "Normal",
  43320. height: math.unit(5 + 11/12, "feet"),
  43321. default: true
  43322. },
  43323. ]
  43324. ))
  43325. characterMakers.push(() => makeCharacter(
  43326. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43327. {
  43328. front: {
  43329. height: math.unit(6 + 3/12, "feet"),
  43330. weight: math.unit(3.5, "tons"),
  43331. name: "Front",
  43332. image: {
  43333. source: "./media/characters/emberflame/front.svg",
  43334. extra: 1198/672,
  43335. bottom: 82/1280
  43336. }
  43337. },
  43338. side: {
  43339. height: math.unit(6 + 3/12, "feet"),
  43340. weight: math.unit(3.5, "tons"),
  43341. name: "Side",
  43342. image: {
  43343. source: "./media/characters/emberflame/side.svg",
  43344. extra: 938/527,
  43345. bottom: 56/994
  43346. }
  43347. },
  43348. },
  43349. [
  43350. {
  43351. name: "Normal",
  43352. height: math.unit(6 + 3/12, "feet"),
  43353. default: true
  43354. },
  43355. ]
  43356. ))
  43357. characterMakers.push(() => makeCharacter(
  43358. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43359. {
  43360. side: {
  43361. height: math.unit(17.5, "feet"),
  43362. weight: math.unit(35, "tons"),
  43363. name: "Side",
  43364. image: {
  43365. source: "./media/characters/sophie-ambrose/side.svg",
  43366. extra: 1573/1242,
  43367. bottom: 71/1644
  43368. }
  43369. },
  43370. maw: {
  43371. height: math.unit(7.4, "feet"),
  43372. name: "Maw",
  43373. image: {
  43374. source: "./media/characters/sophie-ambrose/maw.svg"
  43375. }
  43376. },
  43377. },
  43378. [
  43379. {
  43380. name: "Normal",
  43381. height: math.unit(17.5, "feet"),
  43382. default: true
  43383. },
  43384. ]
  43385. ))
  43386. characterMakers.push(() => makeCharacter(
  43387. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43388. {
  43389. front: {
  43390. height: math.unit(280, "feet"),
  43391. weight: math.unit(550, "tons"),
  43392. name: "Front",
  43393. image: {
  43394. source: "./media/characters/king-mugi/front.svg",
  43395. extra: 1102/947,
  43396. bottom: 104/1206
  43397. }
  43398. },
  43399. },
  43400. [
  43401. {
  43402. name: "King Mugi",
  43403. height: math.unit(280, "feet"),
  43404. default: true
  43405. },
  43406. ]
  43407. ))
  43408. characterMakers.push(() => makeCharacter(
  43409. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43410. {
  43411. front: {
  43412. height: math.unit(64, "meters"),
  43413. name: "Front",
  43414. image: {
  43415. source: "./media/characters/nova-fox/front.svg",
  43416. extra: 1310/1246,
  43417. bottom: 65/1375
  43418. }
  43419. },
  43420. },
  43421. [
  43422. {
  43423. name: "Macro",
  43424. height: math.unit(64, "meters"),
  43425. default: true
  43426. },
  43427. ]
  43428. ))
  43429. characterMakers.push(() => makeCharacter(
  43430. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43431. {
  43432. front: {
  43433. height: math.unit(6 + 3/12, "feet"),
  43434. weight: math.unit(170, "lb"),
  43435. name: "Front",
  43436. image: {
  43437. source: "./media/characters/sam-bat/front.svg",
  43438. extra: 1601/1411,
  43439. bottom: 125/1726
  43440. }
  43441. },
  43442. back: {
  43443. height: math.unit(6 + 3/12, "feet"),
  43444. weight: math.unit(170, "lb"),
  43445. name: "Back",
  43446. image: {
  43447. source: "./media/characters/sam-bat/back.svg",
  43448. extra: 1577/1405,
  43449. bottom: 58/1635
  43450. }
  43451. },
  43452. },
  43453. [
  43454. {
  43455. name: "Normal",
  43456. height: math.unit(6 + 3/12, "feet"),
  43457. default: true
  43458. },
  43459. ]
  43460. ))
  43461. characterMakers.push(() => makeCharacter(
  43462. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43463. {
  43464. front: {
  43465. height: math.unit(59, "feet"),
  43466. weight: math.unit(40000, "lb"),
  43467. name: "Front",
  43468. image: {
  43469. source: "./media/characters/inari/front.svg",
  43470. extra: 1884/1350,
  43471. bottom: 95/1979
  43472. }
  43473. },
  43474. },
  43475. [
  43476. {
  43477. name: "Gigantamax",
  43478. height: math.unit(59, "feet"),
  43479. default: true
  43480. },
  43481. ]
  43482. ))
  43483. characterMakers.push(() => makeCharacter(
  43484. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43485. {
  43486. front: {
  43487. height: math.unit(5 + 8/12, "feet"),
  43488. name: "Front",
  43489. image: {
  43490. source: "./media/characters/elizabeth/front.svg",
  43491. extra: 1395/1298,
  43492. bottom: 54/1449
  43493. }
  43494. },
  43495. mouth: {
  43496. height: math.unit(1.97, "feet"),
  43497. name: "Mouth",
  43498. image: {
  43499. source: "./media/characters/elizabeth/mouth.svg"
  43500. }
  43501. },
  43502. foot: {
  43503. height: math.unit(1.17, "feet"),
  43504. name: "Foot",
  43505. image: {
  43506. source: "./media/characters/elizabeth/foot.svg"
  43507. }
  43508. },
  43509. },
  43510. [
  43511. {
  43512. name: "Normal",
  43513. height: math.unit(5 + 8/12, "feet"),
  43514. default: true
  43515. },
  43516. {
  43517. name: "Minimacro",
  43518. height: math.unit(18, "feet")
  43519. },
  43520. {
  43521. name: "Macro",
  43522. height: math.unit(180, "feet")
  43523. },
  43524. ]
  43525. ))
  43526. characterMakers.push(() => makeCharacter(
  43527. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43528. {
  43529. front: {
  43530. height: math.unit(5 + 2/12, "feet"),
  43531. name: "Front",
  43532. image: {
  43533. source: "./media/characters/october-gossamer/front.svg",
  43534. extra: 505/454,
  43535. bottom: 7/512
  43536. }
  43537. },
  43538. back: {
  43539. height: math.unit(5 + 2/12, "feet"),
  43540. name: "Back",
  43541. image: {
  43542. source: "./media/characters/october-gossamer/back.svg",
  43543. extra: 501/454,
  43544. bottom: 11/512
  43545. }
  43546. },
  43547. },
  43548. [
  43549. {
  43550. name: "Normal",
  43551. height: math.unit(5 + 2/12, "feet"),
  43552. default: true
  43553. },
  43554. ]
  43555. ))
  43556. characterMakers.push(() => makeCharacter(
  43557. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43558. {
  43559. front: {
  43560. height: math.unit(5, "feet"),
  43561. name: "Front",
  43562. image: {
  43563. source: "./media/characters/epiglottis/front.svg",
  43564. extra: 923/849,
  43565. bottom: 17/940
  43566. }
  43567. },
  43568. },
  43569. [
  43570. {
  43571. name: "Original Size",
  43572. height: math.unit(10, "inches")
  43573. },
  43574. {
  43575. name: "Human Size",
  43576. height: math.unit(5, "feet"),
  43577. default: true
  43578. },
  43579. {
  43580. name: "Big",
  43581. height: math.unit(25, "feet")
  43582. },
  43583. {
  43584. name: "Bigger",
  43585. height: math.unit(50, "feet")
  43586. },
  43587. {
  43588. name: "oh lawd",
  43589. height: math.unit(75, "feet")
  43590. },
  43591. ]
  43592. ))
  43593. characterMakers.push(() => makeCharacter(
  43594. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43595. {
  43596. front: {
  43597. height: math.unit(2 + 4/12, "feet"),
  43598. weight: math.unit(60, "lb"),
  43599. name: "Front",
  43600. image: {
  43601. source: "./media/characters/lerm/front.svg",
  43602. extra: 796/790,
  43603. bottom: 79/875
  43604. }
  43605. },
  43606. },
  43607. [
  43608. {
  43609. name: "Normal",
  43610. height: math.unit(2 + 4/12, "feet"),
  43611. default: true
  43612. },
  43613. ]
  43614. ))
  43615. characterMakers.push(() => makeCharacter(
  43616. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43617. {
  43618. front: {
  43619. height: math.unit(5.5, "feet"),
  43620. weight: math.unit(130, "lb"),
  43621. name: "Front",
  43622. image: {
  43623. source: "./media/characters/xena-nebadon/front.svg",
  43624. extra: 1828/1730,
  43625. bottom: 79/1907
  43626. }
  43627. },
  43628. },
  43629. [
  43630. {
  43631. name: "Tiny Puppy",
  43632. height: math.unit(3, "inches")
  43633. },
  43634. {
  43635. name: "Normal",
  43636. height: math.unit(5.5, "feet"),
  43637. default: true
  43638. },
  43639. {
  43640. name: "Lotta Lady",
  43641. height: math.unit(12, "feet")
  43642. },
  43643. {
  43644. name: "Pretty Big",
  43645. height: math.unit(100, "feet")
  43646. },
  43647. {
  43648. name: "Big",
  43649. height: math.unit(500, "feet")
  43650. },
  43651. {
  43652. name: "Skyscraper Toys",
  43653. height: math.unit(2500, "feet")
  43654. },
  43655. {
  43656. name: "Plane Catcher",
  43657. height: math.unit(8, "miles")
  43658. },
  43659. {
  43660. name: "Planet Toys",
  43661. height: math.unit(15, "earths")
  43662. },
  43663. {
  43664. name: "Stardust",
  43665. height: math.unit(0.25, "galaxies")
  43666. },
  43667. {
  43668. name: "Snacks",
  43669. height: math.unit(70, "universes")
  43670. },
  43671. ]
  43672. ))
  43673. characterMakers.push(() => makeCharacter(
  43674. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43675. {
  43676. front: {
  43677. height: math.unit(1.6, "meters"),
  43678. weight: math.unit(60, "kg"),
  43679. name: "Front",
  43680. image: {
  43681. source: "./media/characters/bounty/front.svg",
  43682. extra: 1426/1308,
  43683. bottom: 15/1441
  43684. }
  43685. },
  43686. back: {
  43687. height: math.unit(1.6, "meters"),
  43688. weight: math.unit(60, "kg"),
  43689. name: "Back",
  43690. image: {
  43691. source: "./media/characters/bounty/back.svg",
  43692. extra: 1417/1307,
  43693. bottom: 8/1425
  43694. }
  43695. },
  43696. },
  43697. [
  43698. {
  43699. name: "Normal",
  43700. height: math.unit(1.6, "meters"),
  43701. default: true
  43702. },
  43703. {
  43704. name: "Macro",
  43705. height: math.unit(300, "meters")
  43706. },
  43707. ]
  43708. ))
  43709. characterMakers.push(() => makeCharacter(
  43710. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43711. {
  43712. front: {
  43713. height: math.unit(2 + 8/12, "feet"),
  43714. weight: math.unit(15, "lb"),
  43715. name: "Front",
  43716. image: {
  43717. source: "./media/characters/mochi/front.svg",
  43718. extra: 1022/852,
  43719. bottom: 435/1457
  43720. }
  43721. },
  43722. back: {
  43723. height: math.unit(2 + 8/12, "feet"),
  43724. weight: math.unit(15, "lb"),
  43725. name: "Back",
  43726. image: {
  43727. source: "./media/characters/mochi/back.svg",
  43728. extra: 1335/1119,
  43729. bottom: 39/1374
  43730. }
  43731. },
  43732. bird: {
  43733. height: math.unit(2 + 8/12, "feet"),
  43734. weight: math.unit(15, "lb"),
  43735. name: "Bird",
  43736. image: {
  43737. source: "./media/characters/mochi/bird.svg",
  43738. extra: 1251/1113,
  43739. bottom: 178/1429
  43740. }
  43741. },
  43742. kaiju: {
  43743. height: math.unit(154, "feet"),
  43744. weight: math.unit(1e7, "lb"),
  43745. name: "Kaiju",
  43746. image: {
  43747. source: "./media/characters/mochi/kaiju.svg",
  43748. extra: 460/324,
  43749. bottom: 40/500
  43750. }
  43751. },
  43752. head: {
  43753. height: math.unit(1.21, "feet"),
  43754. name: "Head",
  43755. image: {
  43756. source: "./media/characters/mochi/head.svg"
  43757. }
  43758. },
  43759. alternateTail: {
  43760. height: math.unit(2 + 8/12, "feet"),
  43761. weight: math.unit(45, "lb"),
  43762. name: "Alternate Tail",
  43763. image: {
  43764. source: "./media/characters/mochi/alternate-tail.svg",
  43765. extra: 139/76,
  43766. bottom: 45/184
  43767. }
  43768. },
  43769. },
  43770. [
  43771. {
  43772. name: "Micro",
  43773. height: math.unit(2, "inches")
  43774. },
  43775. {
  43776. name: "Normal",
  43777. height: math.unit(2 + 8/12, "feet"),
  43778. default: true
  43779. },
  43780. {
  43781. name: "Macro",
  43782. height: math.unit(106, "feet")
  43783. },
  43784. ]
  43785. ))
  43786. characterMakers.push(() => makeCharacter(
  43787. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43788. {
  43789. front: {
  43790. height: math.unit(5.67, "feet"),
  43791. weight: math.unit(135, "lb"),
  43792. name: "Front",
  43793. image: {
  43794. source: "./media/characters/sarel/front.svg",
  43795. extra: 865/788,
  43796. bottom: 97/962
  43797. }
  43798. },
  43799. back: {
  43800. height: math.unit(5.67, "feet"),
  43801. weight: math.unit(135, "lb"),
  43802. name: "Back",
  43803. image: {
  43804. source: "./media/characters/sarel/back.svg",
  43805. extra: 857/777,
  43806. bottom: 32/889
  43807. }
  43808. },
  43809. chozoan: {
  43810. height: math.unit(5.67, "feet"),
  43811. weight: math.unit(135, "lb"),
  43812. name: "Chozoan",
  43813. image: {
  43814. source: "./media/characters/sarel/chozoan.svg",
  43815. extra: 865/788,
  43816. bottom: 97/962
  43817. }
  43818. },
  43819. current: {
  43820. height: math.unit(5.67, "feet"),
  43821. weight: math.unit(135, "lb"),
  43822. name: "Current",
  43823. image: {
  43824. source: "./media/characters/sarel/current.svg",
  43825. extra: 865/788,
  43826. bottom: 97/962
  43827. }
  43828. },
  43829. head: {
  43830. height: math.unit(1.77, "feet"),
  43831. name: "Head",
  43832. image: {
  43833. source: "./media/characters/sarel/head.svg"
  43834. }
  43835. },
  43836. claws: {
  43837. height: math.unit(1.8, "feet"),
  43838. name: "Claws",
  43839. image: {
  43840. source: "./media/characters/sarel/claws.svg"
  43841. }
  43842. },
  43843. clawsAlt: {
  43844. height: math.unit(1.8, "feet"),
  43845. name: "Claws-alt",
  43846. image: {
  43847. source: "./media/characters/sarel/claws-alt.svg"
  43848. }
  43849. },
  43850. },
  43851. [
  43852. {
  43853. name: "Normal",
  43854. height: math.unit(5.67, "feet"),
  43855. default: true
  43856. },
  43857. ]
  43858. ))
  43859. characterMakers.push(() => makeCharacter(
  43860. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43861. {
  43862. front: {
  43863. height: math.unit(5500, "feet"),
  43864. name: "Front",
  43865. image: {
  43866. source: "./media/characters/alyonia/front.svg",
  43867. extra: 1200/1135,
  43868. bottom: 29/1229
  43869. }
  43870. },
  43871. back: {
  43872. height: math.unit(5500, "feet"),
  43873. name: "Back",
  43874. image: {
  43875. source: "./media/characters/alyonia/back.svg",
  43876. extra: 1205/1138,
  43877. bottom: 10/1215
  43878. }
  43879. },
  43880. },
  43881. [
  43882. {
  43883. name: "Small",
  43884. height: math.unit(10, "feet")
  43885. },
  43886. {
  43887. name: "Macro",
  43888. height: math.unit(500, "feet")
  43889. },
  43890. {
  43891. name: "Mega Macro",
  43892. height: math.unit(5500, "feet"),
  43893. default: true
  43894. },
  43895. {
  43896. name: "Mega Macro+",
  43897. height: math.unit(500000, "feet")
  43898. },
  43899. {
  43900. name: "Giga Macro",
  43901. height: math.unit(3000, "miles")
  43902. },
  43903. {
  43904. name: "Tera Macro",
  43905. height: math.unit(2.8e6, "miles")
  43906. },
  43907. {
  43908. name: "Galactic",
  43909. height: math.unit(120000, "lightyears")
  43910. },
  43911. ]
  43912. ))
  43913. characterMakers.push(() => makeCharacter(
  43914. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43915. {
  43916. werewolf: {
  43917. height: math.unit(8, "feet"),
  43918. weight: math.unit(425, "lb"),
  43919. name: "Werewolf",
  43920. image: {
  43921. source: "./media/characters/autumn/werewolf.svg",
  43922. extra: 2154/2031,
  43923. bottom: 160/2314
  43924. }
  43925. },
  43926. human: {
  43927. height: math.unit(5 + 8/12, "feet"),
  43928. weight: math.unit(150, "lb"),
  43929. name: "Human",
  43930. image: {
  43931. source: "./media/characters/autumn/human.svg",
  43932. extra: 1200/1149,
  43933. bottom: 30/1230
  43934. }
  43935. },
  43936. },
  43937. [
  43938. {
  43939. name: "Normal",
  43940. height: math.unit(8, "feet"),
  43941. default: true
  43942. },
  43943. ]
  43944. ))
  43945. characterMakers.push(() => makeCharacter(
  43946. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43947. {
  43948. front: {
  43949. height: math.unit(8 + 5/12, "feet"),
  43950. weight: math.unit(825, "lb"),
  43951. name: "Front",
  43952. image: {
  43953. source: "./media/characters/cobalt-charizard/front.svg",
  43954. extra: 1268/1155,
  43955. bottom: 122/1390
  43956. }
  43957. },
  43958. side: {
  43959. height: math.unit(8 + 5/12, "feet"),
  43960. weight: math.unit(825, "lb"),
  43961. name: "Side",
  43962. image: {
  43963. source: "./media/characters/cobalt-charizard/side.svg",
  43964. extra: 1348/1257,
  43965. bottom: 58/1406
  43966. }
  43967. },
  43968. gMax: {
  43969. height: math.unit(134 + 11/12, "feet"),
  43970. name: "G-Max",
  43971. image: {
  43972. source: "./media/characters/cobalt-charizard/g-max.svg",
  43973. extra: 1835/1541,
  43974. bottom: 151/1986
  43975. }
  43976. },
  43977. },
  43978. [
  43979. {
  43980. name: "Normal",
  43981. height: math.unit(8 + 5/12, "feet"),
  43982. default: true
  43983. },
  43984. ]
  43985. ))
  43986. characterMakers.push(() => makeCharacter(
  43987. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43988. {
  43989. front: {
  43990. height: math.unit(6 + 3/12, "feet"),
  43991. weight: math.unit(210, "lb"),
  43992. name: "Front",
  43993. image: {
  43994. source: "./media/characters/stella/front.svg",
  43995. extra: 3549/3335,
  43996. bottom: 51/3600
  43997. }
  43998. },
  43999. },
  44000. [
  44001. {
  44002. name: "Normal",
  44003. height: math.unit(6 + 3/12, "feet"),
  44004. default: true
  44005. },
  44006. ]
  44007. ))
  44008. characterMakers.push(() => makeCharacter(
  44009. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44010. {
  44011. front: {
  44012. height: math.unit(5, "feet"),
  44013. weight: math.unit(90, "lb"),
  44014. name: "Front",
  44015. image: {
  44016. source: "./media/characters/riley-bishop/front.svg",
  44017. extra: 1450/1428,
  44018. bottom: 152/1602
  44019. }
  44020. },
  44021. },
  44022. [
  44023. {
  44024. name: "Normal",
  44025. height: math.unit(5, "feet"),
  44026. default: true
  44027. },
  44028. ]
  44029. ))
  44030. characterMakers.push(() => makeCharacter(
  44031. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44032. {
  44033. side: {
  44034. height: math.unit(8 + 2/12, "feet"),
  44035. weight: math.unit(500, "kg"),
  44036. name: "Side",
  44037. image: {
  44038. source: "./media/characters/theo-arcanine/side.svg",
  44039. extra: 1342/1074,
  44040. bottom: 111/1453
  44041. }
  44042. },
  44043. },
  44044. [
  44045. {
  44046. name: "Normal",
  44047. height: math.unit(8 + 2/12, "feet"),
  44048. default: true
  44049. },
  44050. ]
  44051. ))
  44052. characterMakers.push(() => makeCharacter(
  44053. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44054. {
  44055. front: {
  44056. height: math.unit(4, "feet"),
  44057. name: "Front",
  44058. image: {
  44059. source: "./media/characters/kali/front.svg",
  44060. extra: 1921/1357,
  44061. bottom: 70/1991
  44062. }
  44063. },
  44064. },
  44065. [
  44066. {
  44067. name: "Normal",
  44068. height: math.unit(4, "feet"),
  44069. default: true
  44070. },
  44071. {
  44072. name: "Macro",
  44073. height: math.unit(32, "meters")
  44074. },
  44075. {
  44076. name: "Macro+",
  44077. height: math.unit(150, "meters")
  44078. },
  44079. {
  44080. name: "Megamacro",
  44081. height: math.unit(7500, "meters")
  44082. },
  44083. {
  44084. name: "Megamacro+",
  44085. height: math.unit(80, "kilometers")
  44086. },
  44087. ]
  44088. ))
  44089. characterMakers.push(() => makeCharacter(
  44090. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44091. {
  44092. side: {
  44093. height: math.unit(5 + 11/12, "feet"),
  44094. weight: math.unit(236, "lb"),
  44095. name: "Side",
  44096. image: {
  44097. source: "./media/characters/gapp/side.svg",
  44098. extra: 775/340,
  44099. bottom: 58/833
  44100. }
  44101. },
  44102. mouth: {
  44103. height: math.unit(2.98, "feet"),
  44104. name: "Mouth",
  44105. image: {
  44106. source: "./media/characters/gapp/mouth.svg"
  44107. }
  44108. },
  44109. },
  44110. [
  44111. {
  44112. name: "Normal",
  44113. height: math.unit(5 + 1/12, "feet"),
  44114. default: true
  44115. },
  44116. ]
  44117. ))
  44118. characterMakers.push(() => makeCharacter(
  44119. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44120. {
  44121. front: {
  44122. height: math.unit(6, "feet"),
  44123. name: "Front",
  44124. image: {
  44125. source: "./media/characters/persephone/front.svg",
  44126. extra: 1895/1717,
  44127. bottom: 96/1991
  44128. }
  44129. },
  44130. back: {
  44131. height: math.unit(6, "feet"),
  44132. name: "Back",
  44133. image: {
  44134. source: "./media/characters/persephone/back.svg",
  44135. extra: 1868/1679,
  44136. bottom: 26/1894
  44137. }
  44138. },
  44139. casual: {
  44140. height: math.unit(6, "feet"),
  44141. name: "Casual",
  44142. image: {
  44143. source: "./media/characters/persephone/casual.svg",
  44144. extra: 1713/1541,
  44145. bottom: 76/1789
  44146. }
  44147. },
  44148. },
  44149. [
  44150. {
  44151. name: "Human Size",
  44152. height: math.unit(6, "feet")
  44153. },
  44154. {
  44155. name: "Big Steppy",
  44156. height: math.unit(600, "meters"),
  44157. default: true
  44158. },
  44159. {
  44160. name: "Galaxy Brain",
  44161. height: math.unit(1, "zettameter")
  44162. },
  44163. ]
  44164. ))
  44165. characterMakers.push(() => makeCharacter(
  44166. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44167. {
  44168. front: {
  44169. height: math.unit(1.85, "meters"),
  44170. name: "Front",
  44171. image: {
  44172. source: "./media/characters/riley-foxthing/front.svg",
  44173. extra: 1495/1354,
  44174. bottom: 122/1617
  44175. }
  44176. },
  44177. frontAlt: {
  44178. height: math.unit(1.85, "meters"),
  44179. name: "Front (Alt)",
  44180. image: {
  44181. source: "./media/characters/riley-foxthing/front-alt.svg",
  44182. extra: 1572/1389,
  44183. bottom: 116/1688
  44184. }
  44185. },
  44186. },
  44187. [
  44188. {
  44189. name: "Normal Sized",
  44190. height: math.unit(1.85, "meters"),
  44191. default: true
  44192. },
  44193. {
  44194. name: "Quite Sizable",
  44195. height: math.unit(5, "meters")
  44196. },
  44197. {
  44198. name: "Rather Large",
  44199. height: math.unit(20, "meters")
  44200. },
  44201. {
  44202. name: "Macro",
  44203. height: math.unit(450, "meters")
  44204. },
  44205. {
  44206. name: "Giga",
  44207. height: math.unit(5, "km")
  44208. },
  44209. ]
  44210. ))
  44211. characterMakers.push(() => makeCharacter(
  44212. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44213. {
  44214. front: {
  44215. height: math.unit(6, "feet"),
  44216. weight: math.unit(200, "lb"),
  44217. name: "Front",
  44218. image: {
  44219. source: "./media/characters/blizzard/front.svg",
  44220. extra: 1136/990,
  44221. bottom: 136/1272
  44222. }
  44223. },
  44224. back: {
  44225. height: math.unit(6, "feet"),
  44226. weight: math.unit(200, "lb"),
  44227. name: "Back",
  44228. image: {
  44229. source: "./media/characters/blizzard/back.svg",
  44230. extra: 1175/1034,
  44231. bottom: 97/1272
  44232. }
  44233. },
  44234. sitting: {
  44235. height: math.unit(3.725, "feet"),
  44236. weight: math.unit(200, "lb"),
  44237. name: "Sitting",
  44238. image: {
  44239. source: "./media/characters/blizzard/sitting.svg",
  44240. extra: 581/485,
  44241. bottom: 90/671
  44242. }
  44243. },
  44244. frontWizard: {
  44245. height: math.unit(7.9, "feet"),
  44246. weight: math.unit(200, "lb"),
  44247. name: "Front (Wizard)",
  44248. image: {
  44249. source: "./media/characters/blizzard/front-wizard.svg"
  44250. }
  44251. },
  44252. backWizard: {
  44253. height: math.unit(7.9, "feet"),
  44254. weight: math.unit(200, "lb"),
  44255. name: "Back (Wizard)",
  44256. image: {
  44257. source: "./media/characters/blizzard/back-wizard.svg"
  44258. }
  44259. },
  44260. frontNsfw: {
  44261. height: math.unit(6, "feet"),
  44262. weight: math.unit(200, "lb"),
  44263. name: "Front (NSFW)",
  44264. image: {
  44265. source: "./media/characters/blizzard/front-nsfw.svg",
  44266. extra: 1136/990,
  44267. bottom: 136/1272
  44268. }
  44269. },
  44270. backNsfw: {
  44271. height: math.unit(6, "feet"),
  44272. weight: math.unit(200, "lb"),
  44273. name: "Back (NSFW)",
  44274. image: {
  44275. source: "./media/characters/blizzard/back-nsfw.svg",
  44276. extra: 1175/1034,
  44277. bottom: 97/1272
  44278. }
  44279. },
  44280. sittingNsfw: {
  44281. height: math.unit(3.725, "feet"),
  44282. weight: math.unit(200, "lb"),
  44283. name: "Sitting (NSFW)",
  44284. image: {
  44285. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44286. extra: 581/485,
  44287. bottom: 90/671
  44288. }
  44289. },
  44290. wizardFrontNsfw: {
  44291. height: math.unit(7.9, "feet"),
  44292. weight: math.unit(200, "lb"),
  44293. name: "Wizard (Front, NSFW)",
  44294. image: {
  44295. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44296. }
  44297. },
  44298. },
  44299. [
  44300. {
  44301. name: "Normal",
  44302. height: math.unit(6, "feet"),
  44303. default: true
  44304. },
  44305. ]
  44306. ))
  44307. characterMakers.push(() => makeCharacter(
  44308. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44309. {
  44310. front: {
  44311. height: math.unit(5 + 2/12, "feet"),
  44312. name: "Front",
  44313. image: {
  44314. source: "./media/characters/lumi/front.svg",
  44315. extra: 1328/1268,
  44316. bottom: 103/1431
  44317. }
  44318. },
  44319. back: {
  44320. height: math.unit(5 + 2/12, "feet"),
  44321. name: "Back",
  44322. image: {
  44323. source: "./media/characters/lumi/back.svg",
  44324. extra: 1381/1327,
  44325. bottom: 43/1424
  44326. }
  44327. },
  44328. },
  44329. [
  44330. {
  44331. name: "Normal",
  44332. height: math.unit(5 + 2/12, "feet"),
  44333. default: true
  44334. },
  44335. ]
  44336. ))
  44337. characterMakers.push(() => makeCharacter(
  44338. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44339. {
  44340. front: {
  44341. height: math.unit(5 + 9/12, "feet"),
  44342. name: "Front",
  44343. image: {
  44344. source: "./media/characters/aliya-cotton/front.svg",
  44345. extra: 577/564,
  44346. bottom: 29/606
  44347. }
  44348. },
  44349. },
  44350. [
  44351. {
  44352. name: "Normal",
  44353. height: math.unit(5 + 9/12, "feet"),
  44354. default: true
  44355. },
  44356. ]
  44357. ))
  44358. characterMakers.push(() => makeCharacter(
  44359. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44360. {
  44361. front: {
  44362. height: math.unit(2.7, "meters"),
  44363. weight: math.unit(25000, "lb"),
  44364. name: "Front",
  44365. image: {
  44366. source: "./media/characters/noah-luxray/front.svg",
  44367. extra: 1644/825,
  44368. bottom: 339/1983
  44369. }
  44370. },
  44371. side: {
  44372. height: math.unit(2.97, "meters"),
  44373. weight: math.unit(25000, "lb"),
  44374. name: "Side",
  44375. image: {
  44376. source: "./media/characters/noah-luxray/side.svg",
  44377. extra: 1319/650,
  44378. bottom: 163/1482
  44379. }
  44380. },
  44381. dick: {
  44382. height: math.unit(7.4, "feet"),
  44383. weight: math.unit(2500, "lb"),
  44384. name: "Dick",
  44385. image: {
  44386. source: "./media/characters/noah-luxray/dick.svg"
  44387. }
  44388. },
  44389. dickAlt: {
  44390. height: math.unit(10.83, "feet"),
  44391. weight: math.unit(2500, "lb"),
  44392. name: "Dick-alt",
  44393. image: {
  44394. source: "./media/characters/noah-luxray/dick-alt.svg"
  44395. }
  44396. },
  44397. },
  44398. [
  44399. {
  44400. name: "BIG",
  44401. height: math.unit(2.7, "meters"),
  44402. default: true
  44403. },
  44404. ]
  44405. ))
  44406. characterMakers.push(() => makeCharacter(
  44407. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44408. {
  44409. standing: {
  44410. height: math.unit(183, "cm"),
  44411. weight: math.unit(68, "kg"),
  44412. name: "Standing",
  44413. image: {
  44414. source: "./media/characters/arion/standing.svg",
  44415. extra: 1869/1807,
  44416. bottom: 93/1962
  44417. }
  44418. },
  44419. reclining: {
  44420. height: math.unit(70.5, "cm"),
  44421. weight: math.unit(68, "lb"),
  44422. name: "Reclining",
  44423. image: {
  44424. source: "./media/characters/arion/reclining.svg",
  44425. extra: 937/870,
  44426. bottom: 63/1000
  44427. }
  44428. },
  44429. },
  44430. [
  44431. {
  44432. name: "Colossus Size, Low",
  44433. height: math.unit(33, "meters"),
  44434. default: true
  44435. },
  44436. {
  44437. name: "Colossus Size, Mid",
  44438. height: math.unit(52, "meters")
  44439. },
  44440. {
  44441. name: "Colossus Size, High",
  44442. height: math.unit(60, "meters")
  44443. },
  44444. {
  44445. name: "Titan Size, Low",
  44446. height: math.unit(91, "meters"),
  44447. },
  44448. {
  44449. name: "Titan Size, Mid",
  44450. height: math.unit(122, "meters")
  44451. },
  44452. {
  44453. name: "Titan Size, High",
  44454. height: math.unit(162, "meters")
  44455. },
  44456. ]
  44457. ))
  44458. characterMakers.push(() => makeCharacter(
  44459. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44460. {
  44461. front: {
  44462. height: math.unit(53, "meters"),
  44463. name: "Front",
  44464. image: {
  44465. source: "./media/characters/stellar-marbey/front.svg",
  44466. extra: 1913/1805,
  44467. bottom: 92/2005
  44468. }
  44469. },
  44470. back: {
  44471. height: math.unit(53, "meters"),
  44472. name: "Back",
  44473. image: {
  44474. source: "./media/characters/stellar-marbey/back.svg",
  44475. extra: 1960/1851,
  44476. bottom: 28/1988
  44477. }
  44478. },
  44479. mouth: {
  44480. height: math.unit(3.5, "meters"),
  44481. name: "Mouth",
  44482. image: {
  44483. source: "./media/characters/stellar-marbey/mouth.svg"
  44484. }
  44485. },
  44486. },
  44487. [
  44488. {
  44489. name: "Macro",
  44490. height: math.unit(53, "meters"),
  44491. default: true
  44492. },
  44493. ]
  44494. ))
  44495. characterMakers.push(() => makeCharacter(
  44496. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44497. {
  44498. front: {
  44499. height: math.unit(8 + 1/12, "feet"),
  44500. weight: math.unit(233, "lb"),
  44501. name: "Front",
  44502. image: {
  44503. source: "./media/characters/matsu/front.svg",
  44504. extra: 832/772,
  44505. bottom: 40/872
  44506. }
  44507. },
  44508. back: {
  44509. height: math.unit(8 + 1/12, "feet"),
  44510. weight: math.unit(233, "lb"),
  44511. name: "Back",
  44512. image: {
  44513. source: "./media/characters/matsu/back.svg",
  44514. extra: 839/780,
  44515. bottom: 47/886
  44516. }
  44517. },
  44518. },
  44519. [
  44520. {
  44521. name: "Normal",
  44522. height: math.unit(8 + 1/12, "feet"),
  44523. default: true
  44524. },
  44525. ]
  44526. ))
  44527. characterMakers.push(() => makeCharacter(
  44528. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44529. {
  44530. front: {
  44531. height: math.unit(4, "feet"),
  44532. weight: math.unit(148, "lb"),
  44533. name: "Front",
  44534. image: {
  44535. source: "./media/characters/thiz/front.svg",
  44536. extra: 1913/1748,
  44537. bottom: 62/1975
  44538. }
  44539. },
  44540. },
  44541. [
  44542. {
  44543. name: "Normal",
  44544. height: math.unit(4, "feet"),
  44545. default: true
  44546. },
  44547. ]
  44548. ))
  44549. characterMakers.push(() => makeCharacter(
  44550. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44551. {
  44552. front: {
  44553. height: math.unit(7 + 6/12, "feet"),
  44554. weight: math.unit(267, "lb"),
  44555. name: "Front",
  44556. image: {
  44557. source: "./media/characters/marcel/front.svg",
  44558. extra: 1221/1096,
  44559. bottom: 76/1297
  44560. }
  44561. },
  44562. },
  44563. [
  44564. {
  44565. name: "Normal",
  44566. height: math.unit(7 + 6/12, "feet"),
  44567. default: true
  44568. },
  44569. ]
  44570. ))
  44571. characterMakers.push(() => makeCharacter(
  44572. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44573. {
  44574. side: {
  44575. height: math.unit(42, "meters"),
  44576. name: "Side",
  44577. image: {
  44578. source: "./media/characters/flake/side.svg",
  44579. extra: 1525/1306,
  44580. bottom: 209/1734
  44581. }
  44582. },
  44583. },
  44584. [
  44585. {
  44586. name: "Normal",
  44587. height: math.unit(42, "meters"),
  44588. default: true
  44589. },
  44590. ]
  44591. ))
  44592. characterMakers.push(() => makeCharacter(
  44593. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44594. {
  44595. dressed: {
  44596. height: math.unit(6 + 4/12, "feet"),
  44597. weight: math.unit(520, "lb"),
  44598. name: "Dressed",
  44599. image: {
  44600. source: "./media/characters/someonne/dressed.svg",
  44601. extra: 1020/1010,
  44602. bottom: 178/1198
  44603. }
  44604. },
  44605. undressed: {
  44606. height: math.unit(6 + 4/12, "feet"),
  44607. weight: math.unit(520, "lb"),
  44608. name: "Undressed",
  44609. image: {
  44610. source: "./media/characters/someonne/undressed.svg",
  44611. extra: 1019/1014,
  44612. bottom: 169/1188
  44613. }
  44614. },
  44615. },
  44616. [
  44617. {
  44618. name: "Normal",
  44619. height: math.unit(6 + 4/12, "feet"),
  44620. default: true
  44621. },
  44622. ]
  44623. ))
  44624. characterMakers.push(() => makeCharacter(
  44625. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44626. {
  44627. front: {
  44628. height: math.unit(3, "feet"),
  44629. weight: math.unit(30, "lb"),
  44630. name: "Front",
  44631. image: {
  44632. source: "./media/characters/till/front.svg",
  44633. extra: 892/823,
  44634. bottom: 55/947
  44635. }
  44636. },
  44637. },
  44638. [
  44639. {
  44640. name: "Normal",
  44641. height: math.unit(3, "feet"),
  44642. default: true
  44643. },
  44644. ]
  44645. ))
  44646. characterMakers.push(() => makeCharacter(
  44647. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44648. {
  44649. front: {
  44650. height: math.unit(9 + 8/12, "feet"),
  44651. weight: math.unit(800, "lb"),
  44652. name: "Front",
  44653. image: {
  44654. source: "./media/characters/sydney-heki/front.svg",
  44655. extra: 1360/1300,
  44656. bottom: 22/1382
  44657. }
  44658. },
  44659. back: {
  44660. height: math.unit(9 + 8/12, "feet"),
  44661. weight: math.unit(800, "lb"),
  44662. name: "Back",
  44663. image: {
  44664. source: "./media/characters/sydney-heki/back.svg",
  44665. extra: 1356/1293,
  44666. bottom: 12/1368
  44667. }
  44668. },
  44669. frontDressed: {
  44670. height: math.unit(9 + 8/12, "feet"),
  44671. weight: math.unit(800, "lb"),
  44672. name: "Front-dressed",
  44673. image: {
  44674. source: "./media/characters/sydney-heki/front-dressed.svg",
  44675. extra: 1360/1300,
  44676. bottom: 22/1382
  44677. }
  44678. },
  44679. },
  44680. [
  44681. {
  44682. name: "Normal",
  44683. height: math.unit(9 + 8/12, "feet"),
  44684. default: true
  44685. },
  44686. {
  44687. name: "Macro",
  44688. height: math.unit(500, "feet")
  44689. },
  44690. {
  44691. name: "Megamacro",
  44692. height: math.unit(3.6, "miles")
  44693. },
  44694. ]
  44695. ))
  44696. characterMakers.push(() => makeCharacter(
  44697. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44698. {
  44699. front: {
  44700. height: math.unit(200, "cm"),
  44701. weight: math.unit(250, "lb"),
  44702. name: "Front",
  44703. image: {
  44704. source: "./media/characters/fowler-karlsson/front.svg",
  44705. extra: 897/845,
  44706. bottom: 123/1020
  44707. }
  44708. },
  44709. back: {
  44710. height: math.unit(200, "cm"),
  44711. weight: math.unit(250, "lb"),
  44712. name: "Back",
  44713. image: {
  44714. source: "./media/characters/fowler-karlsson/back.svg",
  44715. extra: 999/944,
  44716. bottom: 26/1025
  44717. }
  44718. },
  44719. dick: {
  44720. height: math.unit(1.92, "feet"),
  44721. weight: math.unit(150, "lb"),
  44722. name: "Dick",
  44723. image: {
  44724. source: "./media/characters/fowler-karlsson/dick.svg"
  44725. }
  44726. },
  44727. },
  44728. [
  44729. {
  44730. name: "Normal",
  44731. height: math.unit(200, "cm"),
  44732. default: true
  44733. },
  44734. {
  44735. name: "Smaller Macro",
  44736. height: math.unit(90, "m")
  44737. },
  44738. {
  44739. name: "Macro",
  44740. height: math.unit(150, "m")
  44741. },
  44742. {
  44743. name: "Bigger Macro",
  44744. height: math.unit(300, "m")
  44745. },
  44746. ]
  44747. ))
  44748. characterMakers.push(() => makeCharacter(
  44749. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44750. {
  44751. side: {
  44752. height: math.unit(8 + 2/12, "feet"),
  44753. weight: math.unit(1, "tonne"),
  44754. name: "Side",
  44755. image: {
  44756. source: "./media/characters/rylide/side.svg",
  44757. extra: 1318/1034,
  44758. bottom: 106/1424
  44759. }
  44760. },
  44761. sitting: {
  44762. height: math.unit(303, "cm"),
  44763. weight: math.unit(1, "tonne"),
  44764. name: "Sitting",
  44765. image: {
  44766. source: "./media/characters/rylide/sitting.svg",
  44767. extra: 1303/1103,
  44768. bottom: 36/1339
  44769. }
  44770. },
  44771. },
  44772. [
  44773. {
  44774. name: "Normal",
  44775. height: math.unit(8 + 2/12, "feet"),
  44776. default: true
  44777. },
  44778. ]
  44779. ))
  44780. characterMakers.push(() => makeCharacter(
  44781. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44782. {
  44783. front: {
  44784. height: math.unit(5 + 10/12, "feet"),
  44785. weight: math.unit(160, "lb"),
  44786. name: "Front",
  44787. image: {
  44788. source: "./media/characters/pudask/front.svg",
  44789. extra: 1616/1590,
  44790. bottom: 161/1777
  44791. }
  44792. },
  44793. },
  44794. [
  44795. {
  44796. name: "Ferret Height",
  44797. height: math.unit(2 + 5/12, "feet")
  44798. },
  44799. {
  44800. name: "Canon Height",
  44801. height: math.unit(5 + 10/12, "feet"),
  44802. default: true
  44803. },
  44804. ]
  44805. ))
  44806. characterMakers.push(() => makeCharacter(
  44807. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44808. {
  44809. front: {
  44810. height: math.unit(3 + 6/12, "feet"),
  44811. weight: math.unit(60, "lb"),
  44812. name: "Front",
  44813. image: {
  44814. source: "./media/characters/ramita/front.svg",
  44815. extra: 1402/1232,
  44816. bottom: 62/1464
  44817. }
  44818. },
  44819. dressed: {
  44820. height: math.unit(3 + 6/12, "feet"),
  44821. weight: math.unit(60, "lb"),
  44822. name: "Dressed",
  44823. image: {
  44824. source: "./media/characters/ramita/dressed.svg",
  44825. extra: 1534/1249,
  44826. bottom: 50/1584
  44827. }
  44828. },
  44829. },
  44830. [
  44831. {
  44832. name: "Normal",
  44833. height: math.unit(3 + 6/12, "feet"),
  44834. default: true
  44835. },
  44836. ]
  44837. ))
  44838. characterMakers.push(() => makeCharacter(
  44839. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44840. {
  44841. front: {
  44842. height: math.unit(8, "feet"),
  44843. name: "Front",
  44844. image: {
  44845. source: "./media/characters/ark/front.svg",
  44846. extra: 772/693,
  44847. bottom: 45/817
  44848. }
  44849. },
  44850. },
  44851. [
  44852. {
  44853. name: "Normal",
  44854. height: math.unit(8, "feet"),
  44855. default: true
  44856. },
  44857. ]
  44858. ))
  44859. characterMakers.push(() => makeCharacter(
  44860. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44861. {
  44862. front: {
  44863. height: math.unit(6, "feet"),
  44864. weight: math.unit(250, "lb"),
  44865. volume: math.unit(5/8, "gallons"),
  44866. name: "Front",
  44867. image: {
  44868. source: "./media/characters/ludwig-horn/front.svg",
  44869. extra: 1782/1635,
  44870. bottom: 96/1878
  44871. }
  44872. },
  44873. back: {
  44874. height: math.unit(6, "feet"),
  44875. weight: math.unit(250, "lb"),
  44876. volume: math.unit(5/8, "gallons"),
  44877. name: "Back",
  44878. image: {
  44879. source: "./media/characters/ludwig-horn/back.svg",
  44880. extra: 1874/1729,
  44881. bottom: 27/1901
  44882. }
  44883. },
  44884. dick: {
  44885. height: math.unit(1.05, "feet"),
  44886. weight: math.unit(15, "lb"),
  44887. volume: math.unit(5/8, "gallons"),
  44888. name: "Dick",
  44889. image: {
  44890. source: "./media/characters/ludwig-horn/dick.svg"
  44891. }
  44892. },
  44893. },
  44894. [
  44895. {
  44896. name: "Small",
  44897. height: math.unit(6, "feet")
  44898. },
  44899. {
  44900. name: "Typical",
  44901. height: math.unit(12, "feet"),
  44902. default: true
  44903. },
  44904. {
  44905. name: "Building",
  44906. height: math.unit(80, "feet")
  44907. },
  44908. {
  44909. name: "Town",
  44910. height: math.unit(800, "feet")
  44911. },
  44912. {
  44913. name: "Kingdom",
  44914. height: math.unit(80000, "feet")
  44915. },
  44916. {
  44917. name: "Planet",
  44918. height: math.unit(8000000, "feet")
  44919. },
  44920. {
  44921. name: "Universe",
  44922. height: math.unit(8000000000, "feet")
  44923. },
  44924. {
  44925. name: "Transcended",
  44926. height: math.unit(8e27, "feet")
  44927. },
  44928. ]
  44929. ))
  44930. characterMakers.push(() => makeCharacter(
  44931. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44932. {
  44933. front: {
  44934. height: math.unit(5, "feet"),
  44935. weight: math.unit(50, "kg"),
  44936. name: "Front",
  44937. image: {
  44938. source: "./media/characters/biot-avery/front.svg",
  44939. extra: 1295/1232,
  44940. bottom: 86/1381
  44941. }
  44942. },
  44943. },
  44944. [
  44945. {
  44946. name: "Normal",
  44947. height: math.unit(5, "feet"),
  44948. default: true
  44949. },
  44950. ]
  44951. ))
  44952. characterMakers.push(() => makeCharacter(
  44953. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44954. {
  44955. front: {
  44956. height: math.unit(6, "feet"),
  44957. name: "Front",
  44958. image: {
  44959. source: "./media/characters/kitsune-kiro/front.svg",
  44960. extra: 1270/1158,
  44961. bottom: 42/1312
  44962. }
  44963. },
  44964. frontAlt: {
  44965. height: math.unit(6, "feet"),
  44966. name: "Front-alt",
  44967. image: {
  44968. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44969. extra: 1130/1081,
  44970. bottom: 36/1166
  44971. }
  44972. },
  44973. },
  44974. [
  44975. {
  44976. name: "Smol",
  44977. height: math.unit(3, "feet")
  44978. },
  44979. {
  44980. name: "Normal",
  44981. height: math.unit(6, "feet"),
  44982. default: true
  44983. },
  44984. ]
  44985. ))
  44986. characterMakers.push(() => makeCharacter(
  44987. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44988. {
  44989. front: {
  44990. height: math.unit(6, "feet"),
  44991. weight: math.unit(125, "lb"),
  44992. name: "Front",
  44993. image: {
  44994. source: "./media/characters/jack-thatcher/front.svg",
  44995. extra: 1474/1370,
  44996. bottom: 26/1500
  44997. }
  44998. },
  44999. back: {
  45000. height: math.unit(6, "feet"),
  45001. weight: math.unit(125, "lb"),
  45002. name: "Back",
  45003. image: {
  45004. source: "./media/characters/jack-thatcher/back.svg",
  45005. extra: 1489/1384,
  45006. bottom: 18/1507
  45007. }
  45008. },
  45009. },
  45010. [
  45011. {
  45012. name: "Normal",
  45013. height: math.unit(6, "feet"),
  45014. default: true
  45015. },
  45016. {
  45017. name: "Macro",
  45018. height: math.unit(75, "feet")
  45019. },
  45020. {
  45021. name: "Macro-er",
  45022. height: math.unit(250, "feet")
  45023. },
  45024. ]
  45025. ))
  45026. characterMakers.push(() => makeCharacter(
  45027. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45028. {
  45029. front: {
  45030. height: math.unit(7, "feet"),
  45031. weight: math.unit(110, "kg"),
  45032. name: "Front",
  45033. image: {
  45034. source: "./media/characters/max-hyper/front.svg",
  45035. extra: 1969/1881,
  45036. bottom: 49/2018
  45037. }
  45038. },
  45039. },
  45040. [
  45041. {
  45042. name: "Normal",
  45043. height: math.unit(7, "feet"),
  45044. default: true
  45045. },
  45046. ]
  45047. ))
  45048. characterMakers.push(() => makeCharacter(
  45049. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45050. {
  45051. front: {
  45052. height: math.unit(5 + 5/12, "feet"),
  45053. weight: math.unit(160, "lb"),
  45054. name: "Front",
  45055. image: {
  45056. source: "./media/characters/spook/front.svg",
  45057. extra: 794/791,
  45058. bottom: 54/848
  45059. }
  45060. },
  45061. back: {
  45062. height: math.unit(5 + 5/12, "feet"),
  45063. weight: math.unit(160, "lb"),
  45064. name: "Back",
  45065. image: {
  45066. source: "./media/characters/spook/back.svg",
  45067. extra: 812/798,
  45068. bottom: 32/844
  45069. }
  45070. },
  45071. },
  45072. [
  45073. {
  45074. name: "Normal",
  45075. height: math.unit(5 + 5/12, "feet"),
  45076. default: true
  45077. },
  45078. ]
  45079. ))
  45080. characterMakers.push(() => makeCharacter(
  45081. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45082. {
  45083. front: {
  45084. height: math.unit(18, "feet"),
  45085. name: "Front",
  45086. image: {
  45087. source: "./media/characters/xeaduulix/front.svg",
  45088. extra: 1380/1166,
  45089. bottom: 110/1490
  45090. }
  45091. },
  45092. back: {
  45093. height: math.unit(18, "feet"),
  45094. name: "Back",
  45095. image: {
  45096. source: "./media/characters/xeaduulix/back.svg",
  45097. extra: 1592/1170,
  45098. bottom: 128/1720
  45099. }
  45100. },
  45101. frontNsfw: {
  45102. height: math.unit(18, "feet"),
  45103. name: "Front (NSFW)",
  45104. image: {
  45105. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45106. extra: 1380/1166,
  45107. bottom: 110/1490
  45108. }
  45109. },
  45110. backNsfw: {
  45111. height: math.unit(18, "feet"),
  45112. name: "Back (NSFW)",
  45113. image: {
  45114. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45115. extra: 1592/1170,
  45116. bottom: 128/1720
  45117. }
  45118. },
  45119. },
  45120. [
  45121. {
  45122. name: "Normal",
  45123. height: math.unit(18, "feet"),
  45124. default: true
  45125. },
  45126. ]
  45127. ))
  45128. characterMakers.push(() => makeCharacter(
  45129. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45130. {
  45131. spreadWings: {
  45132. height: math.unit(20, "feet"),
  45133. name: "Spread Wings",
  45134. image: {
  45135. source: "./media/characters/fledge/spread-wings.svg",
  45136. extra: 693/635,
  45137. bottom: 26/719
  45138. }
  45139. },
  45140. front: {
  45141. height: math.unit(20, "feet"),
  45142. name: "Front",
  45143. image: {
  45144. source: "./media/characters/fledge/front.svg",
  45145. extra: 684/637,
  45146. bottom: 18/702
  45147. }
  45148. },
  45149. frontAlt: {
  45150. height: math.unit(20, "feet"),
  45151. name: "Front (Alt)",
  45152. image: {
  45153. source: "./media/characters/fledge/front-alt.svg",
  45154. extra: 708/664,
  45155. bottom: 13/721
  45156. }
  45157. },
  45158. back: {
  45159. height: math.unit(20, "feet"),
  45160. name: "Back",
  45161. image: {
  45162. source: "./media/characters/fledge/back.svg",
  45163. extra: 718/634,
  45164. bottom: 22/740
  45165. }
  45166. },
  45167. head: {
  45168. height: math.unit(5.55, "feet"),
  45169. name: "Head",
  45170. image: {
  45171. source: "./media/characters/fledge/head.svg"
  45172. }
  45173. },
  45174. headAlt: {
  45175. height: math.unit(5.1, "feet"),
  45176. name: "Head (Alt)",
  45177. image: {
  45178. source: "./media/characters/fledge/head-alt.svg"
  45179. }
  45180. },
  45181. },
  45182. [
  45183. {
  45184. name: "Small",
  45185. height: math.unit(6 + 2/12, "feet")
  45186. },
  45187. {
  45188. name: "Big",
  45189. height: math.unit(20, "feet"),
  45190. default: true
  45191. },
  45192. {
  45193. name: "Giant",
  45194. height: math.unit(100, "feet")
  45195. },
  45196. {
  45197. name: "Macro",
  45198. height: math.unit(200, "feet")
  45199. },
  45200. ]
  45201. ))
  45202. characterMakers.push(() => makeCharacter(
  45203. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45204. {
  45205. front: {
  45206. height: math.unit(1, "meter"),
  45207. name: "Front",
  45208. image: {
  45209. source: "./media/characters/atlas-morenai/front.svg",
  45210. extra: 1275/1043,
  45211. bottom: 19/1294
  45212. }
  45213. },
  45214. back: {
  45215. height: math.unit(1, "meter"),
  45216. name: "Back",
  45217. image: {
  45218. source: "./media/characters/atlas-morenai/back.svg",
  45219. extra: 1141/1001,
  45220. bottom: 25/1166
  45221. }
  45222. },
  45223. },
  45224. [
  45225. {
  45226. name: "Normal",
  45227. height: math.unit(1, "meter"),
  45228. default: true
  45229. },
  45230. {
  45231. name: "Magic-Infused",
  45232. height: math.unit(5, "meters")
  45233. },
  45234. ]
  45235. ))
  45236. characterMakers.push(() => makeCharacter(
  45237. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45238. {
  45239. front: {
  45240. height: math.unit(5, "meters"),
  45241. name: "Front",
  45242. image: {
  45243. source: "./media/characters/cintia/front.svg",
  45244. extra: 1312/1228,
  45245. bottom: 38/1350
  45246. }
  45247. },
  45248. back: {
  45249. height: math.unit(5, "meters"),
  45250. name: "Back",
  45251. image: {
  45252. source: "./media/characters/cintia/back.svg",
  45253. extra: 1260/1166,
  45254. bottom: 98/1358
  45255. }
  45256. },
  45257. frontDick: {
  45258. height: math.unit(5, "meters"),
  45259. name: "Front (Dick)",
  45260. image: {
  45261. source: "./media/characters/cintia/front-dick.svg",
  45262. extra: 1312/1228,
  45263. bottom: 38/1350
  45264. }
  45265. },
  45266. backDick: {
  45267. height: math.unit(5, "meters"),
  45268. name: "Back (Dick)",
  45269. image: {
  45270. source: "./media/characters/cintia/back-dick.svg",
  45271. extra: 1260/1166,
  45272. bottom: 98/1358
  45273. }
  45274. },
  45275. bust: {
  45276. height: math.unit(1.97, "meters"),
  45277. name: "Bust",
  45278. image: {
  45279. source: "./media/characters/cintia/bust.svg",
  45280. extra: 617/565,
  45281. bottom: 0/617
  45282. }
  45283. },
  45284. },
  45285. [
  45286. {
  45287. name: "Normal",
  45288. height: math.unit(5, "meters"),
  45289. default: true
  45290. },
  45291. ]
  45292. ))
  45293. characterMakers.push(() => makeCharacter(
  45294. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45295. {
  45296. side: {
  45297. height: math.unit(100, "feet"),
  45298. name: "Side",
  45299. image: {
  45300. source: "./media/characters/denora/side.svg",
  45301. extra: 875/803,
  45302. bottom: 9/884
  45303. }
  45304. },
  45305. },
  45306. [
  45307. {
  45308. name: "Standard",
  45309. height: math.unit(100, "feet"),
  45310. default: true
  45311. },
  45312. {
  45313. name: "Grand",
  45314. height: math.unit(1000, "feet")
  45315. },
  45316. {
  45317. name: "Conquering",
  45318. height: math.unit(10000, "feet")
  45319. },
  45320. ]
  45321. ))
  45322. characterMakers.push(() => makeCharacter(
  45323. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45324. {
  45325. dressed: {
  45326. height: math.unit(8 + 5/12, "feet"),
  45327. weight: math.unit(700, "lb"),
  45328. name: "Dressed",
  45329. image: {
  45330. source: "./media/characters/kiva/dressed.svg",
  45331. extra: 1102/1055,
  45332. bottom: 60/1162
  45333. }
  45334. },
  45335. nude: {
  45336. height: math.unit(8 + 5/12, "feet"),
  45337. weight: math.unit(700, "lb"),
  45338. name: "Nude",
  45339. image: {
  45340. source: "./media/characters/kiva/nude.svg",
  45341. extra: 1102/1055,
  45342. bottom: 60/1162
  45343. }
  45344. },
  45345. },
  45346. [
  45347. {
  45348. name: "Base Height",
  45349. height: math.unit(8 + 5/12, "feet"),
  45350. default: true
  45351. },
  45352. {
  45353. name: "Macro",
  45354. height: math.unit(100, "feet")
  45355. },
  45356. {
  45357. name: "Max",
  45358. height: math.unit(3280, "feet")
  45359. },
  45360. ]
  45361. ))
  45362. characterMakers.push(() => makeCharacter(
  45363. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45364. {
  45365. front: {
  45366. height: math.unit(6 + 8/12, "feet"),
  45367. weight: math.unit(250, "lb"),
  45368. name: "Front",
  45369. image: {
  45370. source: "./media/characters/ztragon/front.svg",
  45371. extra: 1825/1684,
  45372. bottom: 98/1923
  45373. }
  45374. },
  45375. },
  45376. [
  45377. {
  45378. name: "Normal",
  45379. height: math.unit(6 + 8/12, "feet"),
  45380. default: true
  45381. },
  45382. {
  45383. name: "Macro",
  45384. height: math.unit(80, "feet")
  45385. },
  45386. ]
  45387. ))
  45388. characterMakers.push(() => makeCharacter(
  45389. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45390. {
  45391. front: {
  45392. height: math.unit(10.4, "feet"),
  45393. weight: math.unit(2, "tons"),
  45394. name: "Front",
  45395. image: {
  45396. source: "./media/characters/yesenia/front.svg",
  45397. extra: 1479/1474,
  45398. bottom: 233/1712
  45399. }
  45400. },
  45401. },
  45402. [
  45403. {
  45404. name: "Normal",
  45405. height: math.unit(10.4, "feet"),
  45406. default: true
  45407. },
  45408. ]
  45409. ))
  45410. characterMakers.push(() => makeCharacter(
  45411. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45412. {
  45413. normal: {
  45414. height: math.unit(6 + 1/12, "feet"),
  45415. weight: math.unit(180, "lb"),
  45416. name: "Normal",
  45417. image: {
  45418. source: "./media/characters/leanne-lycheborne/normal.svg",
  45419. extra: 1748/1660,
  45420. bottom: 98/1846
  45421. }
  45422. },
  45423. were: {
  45424. height: math.unit(12, "feet"),
  45425. weight: math.unit(1600, "lb"),
  45426. name: "Were",
  45427. image: {
  45428. source: "./media/characters/leanne-lycheborne/were.svg",
  45429. extra: 1485/1432,
  45430. bottom: 66/1551
  45431. }
  45432. },
  45433. },
  45434. [
  45435. {
  45436. name: "Normal",
  45437. height: math.unit(6 + 1/12, "feet"),
  45438. default: true
  45439. },
  45440. ]
  45441. ))
  45442. characterMakers.push(() => makeCharacter(
  45443. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45444. {
  45445. side: {
  45446. height: math.unit(13, "feet"),
  45447. name: "Side",
  45448. image: {
  45449. source: "./media/characters/kira-tyler/side.svg",
  45450. extra: 693/393,
  45451. bottom: 58/751
  45452. }
  45453. },
  45454. },
  45455. [
  45456. {
  45457. name: "Normal",
  45458. height: math.unit(13, "feet"),
  45459. default: true
  45460. },
  45461. ]
  45462. ))
  45463. characterMakers.push(() => makeCharacter(
  45464. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45465. {
  45466. front: {
  45467. height: math.unit(10.3, "feet"),
  45468. weight: math.unit(150, "lb"),
  45469. name: "Front",
  45470. image: {
  45471. source: "./media/characters/blaze/front.svg",
  45472. extra: 1378/1286,
  45473. bottom: 172/1550
  45474. }
  45475. },
  45476. },
  45477. [
  45478. {
  45479. name: "Normal",
  45480. height: math.unit(10.3, "feet"),
  45481. default: true
  45482. },
  45483. ]
  45484. ))
  45485. characterMakers.push(() => makeCharacter(
  45486. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45487. {
  45488. side: {
  45489. height: math.unit(2, "meters"),
  45490. weight: math.unit(400, "kg"),
  45491. name: "Side",
  45492. image: {
  45493. source: "./media/characters/anu/side.svg",
  45494. extra: 506/394,
  45495. bottom: 18/524
  45496. }
  45497. },
  45498. },
  45499. [
  45500. {
  45501. name: "Humanoid",
  45502. height: math.unit(2, "meters")
  45503. },
  45504. {
  45505. name: "Normal",
  45506. height: math.unit(5, "meters"),
  45507. default: true
  45508. },
  45509. ]
  45510. ))
  45511. characterMakers.push(() => makeCharacter(
  45512. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45513. {
  45514. front: {
  45515. height: math.unit(5 + 5/12, "feet"),
  45516. weight: math.unit(170, "lb"),
  45517. name: "Front",
  45518. image: {
  45519. source: "./media/characters/synx-the-lynx/front.svg",
  45520. extra: 1893/1745,
  45521. bottom: 17/1910
  45522. }
  45523. },
  45524. side: {
  45525. height: math.unit(5 + 5/12, "feet"),
  45526. weight: math.unit(170, "lb"),
  45527. name: "Side",
  45528. image: {
  45529. source: "./media/characters/synx-the-lynx/side.svg",
  45530. extra: 1884/1740,
  45531. bottom: 39/1923
  45532. }
  45533. },
  45534. back: {
  45535. height: math.unit(5 + 5/12, "feet"),
  45536. weight: math.unit(170, "lb"),
  45537. name: "Back",
  45538. image: {
  45539. source: "./media/characters/synx-the-lynx/back.svg",
  45540. extra: 1903/1755,
  45541. bottom: 14/1917
  45542. }
  45543. },
  45544. },
  45545. [
  45546. {
  45547. name: "Normal",
  45548. height: math.unit(5 + 5/12, "feet"),
  45549. default: true
  45550. },
  45551. ]
  45552. ))
  45553. characterMakers.push(() => makeCharacter(
  45554. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45555. {
  45556. back: {
  45557. height: math.unit(15, "feet"),
  45558. name: "Back",
  45559. image: {
  45560. source: "./media/characters/nadezda-fex/back.svg",
  45561. extra: 1695/1481,
  45562. bottom: 25/1720
  45563. }
  45564. },
  45565. },
  45566. [
  45567. {
  45568. name: "Normal",
  45569. height: math.unit(15, "feet"),
  45570. default: true
  45571. },
  45572. {
  45573. name: "Macro",
  45574. height: math.unit(2.5, "miles")
  45575. },
  45576. {
  45577. name: "Goddess",
  45578. height: math.unit(2, "multiverses")
  45579. },
  45580. ]
  45581. ))
  45582. characterMakers.push(() => makeCharacter(
  45583. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45584. {
  45585. front: {
  45586. height: math.unit(216, "cm"),
  45587. name: "Front",
  45588. image: {
  45589. source: "./media/characters/lev/front.svg",
  45590. extra: 1728/1670,
  45591. bottom: 82/1810
  45592. }
  45593. },
  45594. back: {
  45595. height: math.unit(216, "cm"),
  45596. name: "Back",
  45597. image: {
  45598. source: "./media/characters/lev/back.svg",
  45599. extra: 1738/1675,
  45600. bottom: 24/1762
  45601. }
  45602. },
  45603. dressed: {
  45604. height: math.unit(216, "cm"),
  45605. name: "Dressed",
  45606. image: {
  45607. source: "./media/characters/lev/dressed.svg",
  45608. extra: 1397/1351,
  45609. bottom: 73/1470
  45610. }
  45611. },
  45612. head: {
  45613. height: math.unit(0.51, "meter"),
  45614. name: "Head",
  45615. image: {
  45616. source: "./media/characters/lev/head.svg"
  45617. }
  45618. },
  45619. },
  45620. [
  45621. {
  45622. name: "Normal",
  45623. height: math.unit(216, "cm"),
  45624. default: true
  45625. },
  45626. {
  45627. name: "Relatively Macro",
  45628. height: math.unit(80, "meters")
  45629. },
  45630. {
  45631. name: "Megamacro",
  45632. height: math.unit(21600, "meters")
  45633. },
  45634. {
  45635. name: "Megamacro+",
  45636. height: math.unit(64800, "meters")
  45637. },
  45638. ]
  45639. ))
  45640. characterMakers.push(() => makeCharacter(
  45641. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45642. {
  45643. front: {
  45644. height: math.unit(2, "meters"),
  45645. weight: math.unit(80, "kg"),
  45646. name: "Front",
  45647. image: {
  45648. source: "./media/characters/moka/front.svg",
  45649. extra: 1337/1255,
  45650. bottom: 58/1395
  45651. }
  45652. },
  45653. },
  45654. [
  45655. {
  45656. name: "Micro",
  45657. height: math.unit(15, "cm")
  45658. },
  45659. {
  45660. name: "Normal",
  45661. height: math.unit(2, "meters"),
  45662. default: true
  45663. },
  45664. {
  45665. name: "Macro",
  45666. height: math.unit(20, "meters"),
  45667. },
  45668. ]
  45669. ))
  45670. characterMakers.push(() => makeCharacter(
  45671. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45672. {
  45673. front: {
  45674. height: math.unit(9, "feet"),
  45675. weight: math.unit(240, "lb"),
  45676. name: "Front",
  45677. image: {
  45678. source: "./media/characters/kuzco/front.svg",
  45679. extra: 1593/1487,
  45680. bottom: 32/1625
  45681. }
  45682. },
  45683. side: {
  45684. height: math.unit(9, "feet"),
  45685. weight: math.unit(240, "lb"),
  45686. name: "Side",
  45687. image: {
  45688. source: "./media/characters/kuzco/side.svg",
  45689. extra: 1575/1485,
  45690. bottom: 30/1605
  45691. }
  45692. },
  45693. back: {
  45694. height: math.unit(9, "feet"),
  45695. weight: math.unit(240, "lb"),
  45696. name: "Back",
  45697. image: {
  45698. source: "./media/characters/kuzco/back.svg",
  45699. extra: 1603/1514,
  45700. bottom: 14/1617
  45701. }
  45702. },
  45703. },
  45704. [
  45705. {
  45706. name: "Normal",
  45707. height: math.unit(9, "feet"),
  45708. default: true
  45709. },
  45710. ]
  45711. ))
  45712. characterMakers.push(() => makeCharacter(
  45713. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45714. {
  45715. side: {
  45716. height: math.unit(2, "meters"),
  45717. weight: math.unit(300, "kg"),
  45718. name: "Side",
  45719. image: {
  45720. source: "./media/characters/ceruleus/side.svg",
  45721. extra: 1068/974,
  45722. bottom: 126/1194
  45723. }
  45724. },
  45725. },
  45726. [
  45727. {
  45728. name: "Normal",
  45729. height: math.unit(16, "meters"),
  45730. default: true
  45731. },
  45732. ]
  45733. ))
  45734. characterMakers.push(() => makeCharacter(
  45735. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45736. {
  45737. front: {
  45738. height: math.unit(9, "feet"),
  45739. weight: math.unit(500, "kg"),
  45740. name: "Front",
  45741. image: {
  45742. source: "./media/characters/acouya/front.svg",
  45743. extra: 1660/1473,
  45744. bottom: 28/1688
  45745. }
  45746. },
  45747. },
  45748. [
  45749. {
  45750. name: "Normal",
  45751. height: math.unit(9, "feet"),
  45752. default: true
  45753. },
  45754. ]
  45755. ))
  45756. characterMakers.push(() => makeCharacter(
  45757. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45758. {
  45759. front: {
  45760. height: math.unit(5 + 6/12, "feet"),
  45761. weight: math.unit(195, "lb"),
  45762. name: "Front",
  45763. image: {
  45764. source: "./media/characters/vant/front.svg",
  45765. extra: 1396/1320,
  45766. bottom: 20/1416
  45767. }
  45768. },
  45769. back: {
  45770. height: math.unit(5 + 6/12, "feet"),
  45771. weight: math.unit(195, "lb"),
  45772. name: "Back",
  45773. image: {
  45774. source: "./media/characters/vant/back.svg",
  45775. extra: 1396/1320,
  45776. bottom: 20/1416
  45777. }
  45778. },
  45779. maw: {
  45780. height: math.unit(0.75, "feet"),
  45781. name: "Maw",
  45782. image: {
  45783. source: "./media/characters/vant/maw.svg"
  45784. }
  45785. },
  45786. paw: {
  45787. height: math.unit(1.07, "feet"),
  45788. name: "Paw",
  45789. image: {
  45790. source: "./media/characters/vant/paw.svg"
  45791. }
  45792. },
  45793. },
  45794. [
  45795. {
  45796. name: "Micro",
  45797. height: math.unit(0.25, "inches")
  45798. },
  45799. {
  45800. name: "Normal",
  45801. height: math.unit(5 + 6/12, "feet"),
  45802. default: true
  45803. },
  45804. {
  45805. name: "Macro",
  45806. height: math.unit(75, "feet")
  45807. },
  45808. ]
  45809. ))
  45810. characterMakers.push(() => makeCharacter(
  45811. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45812. {
  45813. front: {
  45814. height: math.unit(30, "meters"),
  45815. weight: math.unit(363, "tons"),
  45816. name: "Front",
  45817. image: {
  45818. source: "./media/characters/ahra/front.svg",
  45819. extra: 1914/1814,
  45820. bottom: 46/1960
  45821. }
  45822. },
  45823. },
  45824. [
  45825. {
  45826. name: "Macro",
  45827. height: math.unit(30, "meters"),
  45828. default: true
  45829. },
  45830. ]
  45831. ))
  45832. characterMakers.push(() => makeCharacter(
  45833. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45834. {
  45835. undressed: {
  45836. height: math.unit(2, "m"),
  45837. weight: math.unit(250, "kg"),
  45838. name: "Undressed",
  45839. image: {
  45840. source: "./media/characters/coriander/undressed.svg",
  45841. extra: 1757/1606,
  45842. bottom: 107/1864
  45843. }
  45844. },
  45845. dressed: {
  45846. height: math.unit(2, "m"),
  45847. weight: math.unit(250, "kg"),
  45848. name: "Dressed",
  45849. image: {
  45850. source: "./media/characters/coriander/dressed.svg",
  45851. extra: 1757/1606,
  45852. bottom: 107/1864
  45853. }
  45854. },
  45855. },
  45856. [
  45857. {
  45858. name: "Normal",
  45859. height: math.unit(4, "meters"),
  45860. default: true
  45861. },
  45862. {
  45863. name: "XL",
  45864. height: math.unit(6, "meters")
  45865. },
  45866. {
  45867. name: "XXL",
  45868. height: math.unit(8, "meters")
  45869. },
  45870. ]
  45871. ))
  45872. characterMakers.push(() => makeCharacter(
  45873. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45874. {
  45875. front: {
  45876. height: math.unit(6, "feet"),
  45877. name: "Front",
  45878. image: {
  45879. source: "./media/characters/syrinx/front.svg",
  45880. extra: 1557/1259,
  45881. bottom: 171/1728
  45882. }
  45883. },
  45884. },
  45885. [
  45886. {
  45887. name: "Normal",
  45888. height: math.unit(6 + 3/12, "feet"),
  45889. default: true
  45890. },
  45891. ]
  45892. ))
  45893. characterMakers.push(() => makeCharacter(
  45894. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45895. {
  45896. front: {
  45897. height: math.unit(11 + 6/12, "feet"),
  45898. weight: math.unit(1.5, "tons"),
  45899. name: "Front",
  45900. image: {
  45901. source: "./media/characters/bor/front.svg",
  45902. extra: 1189/1109,
  45903. bottom: 170/1359
  45904. }
  45905. },
  45906. },
  45907. [
  45908. {
  45909. name: "Normal",
  45910. height: math.unit(11 + 6/12, "feet"),
  45911. default: true
  45912. },
  45913. {
  45914. name: "Macro",
  45915. height: math.unit(32 + 9/12, "feet")
  45916. },
  45917. ]
  45918. ))
  45919. characterMakers.push(() => makeCharacter(
  45920. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45921. {
  45922. anthro: {
  45923. height: math.unit(9, "feet"),
  45924. weight: math.unit(2076, "lb"),
  45925. name: "Anthro",
  45926. image: {
  45927. source: "./media/characters/abacus/anthro.svg",
  45928. extra: 1540/1494,
  45929. bottom: 233/1773
  45930. }
  45931. },
  45932. pigeon: {
  45933. height: math.unit(1, "feet"),
  45934. name: "Pigeon",
  45935. image: {
  45936. source: "./media/characters/abacus/pigeon.svg",
  45937. extra: 528/525,
  45938. bottom: 46/574
  45939. }
  45940. },
  45941. },
  45942. [
  45943. {
  45944. name: "Normal",
  45945. height: math.unit(9, "feet"),
  45946. default: true
  45947. },
  45948. ]
  45949. ))
  45950. characterMakers.push(() => makeCharacter(
  45951. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45952. {
  45953. side: {
  45954. height: math.unit(6, "feet"),
  45955. name: "Side",
  45956. image: {
  45957. source: "./media/characters/delkhan/side.svg",
  45958. extra: 1884/1786,
  45959. bottom: 308/2192
  45960. }
  45961. },
  45962. head: {
  45963. height: math.unit(3.38, "feet"),
  45964. name: "Head",
  45965. image: {
  45966. source: "./media/characters/delkhan/head.svg"
  45967. }
  45968. },
  45969. },
  45970. [
  45971. {
  45972. name: "Normal",
  45973. height: math.unit(72, "feet"),
  45974. default: true
  45975. },
  45976. {
  45977. name: "Giant",
  45978. height: math.unit(172, "feet")
  45979. },
  45980. ]
  45981. ))
  45982. characterMakers.push(() => makeCharacter(
  45983. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45984. {
  45985. standing: {
  45986. height: math.unit(6, "feet"),
  45987. name: "Standing",
  45988. image: {
  45989. source: "./media/characters/euchidat/standing.svg",
  45990. extra: 1612/1553,
  45991. bottom: 116/1728
  45992. }
  45993. },
  45994. leaning: {
  45995. height: math.unit(6, "feet"),
  45996. name: "Leaning",
  45997. image: {
  45998. source: "./media/characters/euchidat/leaning.svg",
  45999. extra: 1719/1674,
  46000. bottom: 27/1746
  46001. }
  46002. },
  46003. },
  46004. [
  46005. {
  46006. name: "Normal",
  46007. height: math.unit(175, "feet"),
  46008. default: true
  46009. },
  46010. {
  46011. name: "Megamacro",
  46012. height: math.unit(190, "miles")
  46013. },
  46014. {
  46015. name: "Gigamacro",
  46016. height: math.unit(190000, "miles")
  46017. },
  46018. ]
  46019. ))
  46020. characterMakers.push(() => makeCharacter(
  46021. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46022. {
  46023. front: {
  46024. height: math.unit(6, "feet"),
  46025. weight: math.unit(150, "lb"),
  46026. name: "Front",
  46027. image: {
  46028. source: "./media/characters/rebecca-stack/front.svg",
  46029. extra: 1256/1201,
  46030. bottom: 18/1274
  46031. }
  46032. },
  46033. },
  46034. [
  46035. {
  46036. name: "Normal",
  46037. height: math.unit(5 + 8/12, "feet"),
  46038. default: true
  46039. },
  46040. {
  46041. name: "Demolitionist",
  46042. height: math.unit(200, "feet")
  46043. },
  46044. {
  46045. name: "Out of Control",
  46046. height: math.unit(2, "miles")
  46047. },
  46048. {
  46049. name: "Giga",
  46050. height: math.unit(7200, "miles")
  46051. },
  46052. ]
  46053. ))
  46054. characterMakers.push(() => makeCharacter(
  46055. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46056. {
  46057. front: {
  46058. height: math.unit(6, "feet"),
  46059. weight: math.unit(150, "lb"),
  46060. name: "Front",
  46061. image: {
  46062. source: "./media/characters/jenny-cartwright/front.svg",
  46063. extra: 1384/1376,
  46064. bottom: 58/1442
  46065. }
  46066. },
  46067. },
  46068. [
  46069. {
  46070. name: "Normal",
  46071. height: math.unit(6 + 7/12, "feet"),
  46072. default: true
  46073. },
  46074. {
  46075. name: "Librarian",
  46076. height: math.unit(55, "feet")
  46077. },
  46078. {
  46079. name: "Sightseer",
  46080. height: math.unit(50, "miles")
  46081. },
  46082. {
  46083. name: "Giga",
  46084. height: math.unit(30000, "miles")
  46085. },
  46086. ]
  46087. ))
  46088. characterMakers.push(() => makeCharacter(
  46089. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46090. {
  46091. nude: {
  46092. height: math.unit(8, "feet"),
  46093. weight: math.unit(225, "lb"),
  46094. name: "Nude",
  46095. image: {
  46096. source: "./media/characters/marvy/nude.svg",
  46097. extra: 1900/1683,
  46098. bottom: 89/1989
  46099. }
  46100. },
  46101. dressed: {
  46102. height: math.unit(8, "feet"),
  46103. weight: math.unit(225, "lb"),
  46104. name: "Dressed",
  46105. image: {
  46106. source: "./media/characters/marvy/dressed.svg",
  46107. extra: 1900/1683,
  46108. bottom: 89/1989
  46109. }
  46110. },
  46111. head: {
  46112. height: math.unit(2.85, "feet"),
  46113. name: "Head",
  46114. image: {
  46115. source: "./media/characters/marvy/head.svg"
  46116. }
  46117. },
  46118. },
  46119. [
  46120. {
  46121. name: "Normal",
  46122. height: math.unit(8, "feet"),
  46123. default: true
  46124. },
  46125. ]
  46126. ))
  46127. characterMakers.push(() => makeCharacter(
  46128. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46129. {
  46130. front: {
  46131. height: math.unit(8, "feet"),
  46132. weight: math.unit(250, "lb"),
  46133. name: "Front",
  46134. image: {
  46135. source: "./media/characters/leah/front.svg",
  46136. extra: 1257/1149,
  46137. bottom: 109/1366
  46138. }
  46139. },
  46140. },
  46141. [
  46142. {
  46143. name: "Normal",
  46144. height: math.unit(8, "feet"),
  46145. default: true
  46146. },
  46147. {
  46148. name: "Minimacro",
  46149. height: math.unit(40, "feet")
  46150. },
  46151. {
  46152. name: "Macro",
  46153. height: math.unit(124, "feet")
  46154. },
  46155. {
  46156. name: "Megamacro",
  46157. height: math.unit(850, "feet")
  46158. },
  46159. ]
  46160. ))
  46161. characterMakers.push(() => makeCharacter(
  46162. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46163. {
  46164. side: {
  46165. height: math.unit(13 + 6/12, "feet"),
  46166. weight: math.unit(3200, "lb"),
  46167. name: "Side",
  46168. image: {
  46169. source: "./media/characters/alvir/side.svg",
  46170. extra: 896/589,
  46171. bottom: 26/922
  46172. }
  46173. },
  46174. },
  46175. [
  46176. {
  46177. name: "Normal",
  46178. height: math.unit(13 + 6/12, "feet"),
  46179. default: true
  46180. },
  46181. ]
  46182. ))
  46183. characterMakers.push(() => makeCharacter(
  46184. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46185. {
  46186. front: {
  46187. height: math.unit(5 + 4/12, "feet"),
  46188. weight: math.unit(236, "lb"),
  46189. name: "Front",
  46190. image: {
  46191. source: "./media/characters/zaina-khalil/front.svg",
  46192. extra: 1533/1485,
  46193. bottom: 94/1627
  46194. }
  46195. },
  46196. side: {
  46197. height: math.unit(5 + 4/12, "feet"),
  46198. weight: math.unit(236, "lb"),
  46199. name: "Side",
  46200. image: {
  46201. source: "./media/characters/zaina-khalil/side.svg",
  46202. extra: 1537/1498,
  46203. bottom: 66/1603
  46204. }
  46205. },
  46206. back: {
  46207. height: math.unit(5 + 4/12, "feet"),
  46208. weight: math.unit(236, "lb"),
  46209. name: "Back",
  46210. image: {
  46211. source: "./media/characters/zaina-khalil/back.svg",
  46212. extra: 1546/1494,
  46213. bottom: 89/1635
  46214. }
  46215. },
  46216. },
  46217. [
  46218. {
  46219. name: "Normal",
  46220. height: math.unit(5 + 4/12, "feet"),
  46221. default: true
  46222. },
  46223. ]
  46224. ))
  46225. characterMakers.push(() => makeCharacter(
  46226. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46227. {
  46228. side: {
  46229. height: math.unit(12, "feet"),
  46230. weight: math.unit(4000, "lb"),
  46231. name: "Side",
  46232. image: {
  46233. source: "./media/characters/terry/side.svg",
  46234. extra: 1518/1439,
  46235. bottom: 149/1667
  46236. }
  46237. },
  46238. },
  46239. [
  46240. {
  46241. name: "Normal",
  46242. height: math.unit(12, "feet"),
  46243. default: true
  46244. },
  46245. ]
  46246. ))
  46247. characterMakers.push(() => makeCharacter(
  46248. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46249. {
  46250. front: {
  46251. height: math.unit(12, "feet"),
  46252. weight: math.unit(1500, "lb"),
  46253. name: "Front",
  46254. image: {
  46255. source: "./media/characters/kahea/front.svg",
  46256. extra: 1722/1617,
  46257. bottom: 179/1901
  46258. }
  46259. },
  46260. },
  46261. [
  46262. {
  46263. name: "Normal",
  46264. height: math.unit(12, "feet"),
  46265. default: true
  46266. },
  46267. ]
  46268. ))
  46269. characterMakers.push(() => makeCharacter(
  46270. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46271. {
  46272. demonFront: {
  46273. height: math.unit(36, "feet"),
  46274. name: "Front",
  46275. image: {
  46276. source: "./media/characters/alex-xuria/demon-front.svg",
  46277. extra: 1705/1673,
  46278. bottom: 198/1903
  46279. },
  46280. form: "demon",
  46281. default: true
  46282. },
  46283. demonBack: {
  46284. height: math.unit(36, "feet"),
  46285. name: "Back",
  46286. image: {
  46287. source: "./media/characters/alex-xuria/demon-back.svg",
  46288. extra: 1725/1693,
  46289. bottom: 70/1795
  46290. },
  46291. form: "demon"
  46292. },
  46293. demonHead: {
  46294. height: math.unit(2.14, "meters"),
  46295. name: "Head",
  46296. image: {
  46297. source: "./media/characters/alex-xuria/demon-head.svg"
  46298. },
  46299. form: "demon"
  46300. },
  46301. demonHand: {
  46302. height: math.unit(1.61, "meters"),
  46303. name: "Hand",
  46304. image: {
  46305. source: "./media/characters/alex-xuria/demon-hand.svg"
  46306. },
  46307. form: "demon"
  46308. },
  46309. demonPaw: {
  46310. height: math.unit(1.35, "meters"),
  46311. name: "Paw",
  46312. image: {
  46313. source: "./media/characters/alex-xuria/demon-paw.svg"
  46314. },
  46315. form: "demon"
  46316. },
  46317. demonFoot: {
  46318. height: math.unit(2.2, "meters"),
  46319. name: "Foot",
  46320. image: {
  46321. source: "./media/characters/alex-xuria/demon-foot.svg"
  46322. },
  46323. form: "demon"
  46324. },
  46325. demonCock: {
  46326. height: math.unit(1.74, "meters"),
  46327. name: "Cock",
  46328. image: {
  46329. source: "./media/characters/alex-xuria/demon-cock.svg"
  46330. },
  46331. form: "demon"
  46332. },
  46333. demonTailClosed: {
  46334. height: math.unit(1.47, "meters"),
  46335. name: "Tail (Closed)",
  46336. image: {
  46337. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46338. },
  46339. form: "demon"
  46340. },
  46341. demonTailOpen: {
  46342. height: math.unit(2.85, "meters"),
  46343. name: "Tail (Open)",
  46344. image: {
  46345. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46346. },
  46347. form: "demon"
  46348. },
  46349. incubusFront: {
  46350. height: math.unit(12, "feet"),
  46351. name: "Front",
  46352. image: {
  46353. source: "./media/characters/alex-xuria/incubus-front.svg",
  46354. extra: 1754/1677,
  46355. bottom: 125/1879
  46356. },
  46357. form: "incubus",
  46358. default: true
  46359. },
  46360. incubusBack: {
  46361. height: math.unit(12, "feet"),
  46362. name: "Back",
  46363. image: {
  46364. source: "./media/characters/alex-xuria/incubus-back.svg",
  46365. extra: 1702/1647,
  46366. bottom: 30/1732
  46367. },
  46368. form: "incubus"
  46369. },
  46370. incubusHead: {
  46371. height: math.unit(3.45, "feet"),
  46372. name: "Head",
  46373. image: {
  46374. source: "./media/characters/alex-xuria/incubus-head.svg"
  46375. },
  46376. form: "incubus"
  46377. },
  46378. rabbitFront: {
  46379. height: math.unit(6, "feet"),
  46380. name: "Front",
  46381. image: {
  46382. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46383. extra: 1369/1349,
  46384. bottom: 45/1414
  46385. },
  46386. form: "rabbit",
  46387. default: true
  46388. },
  46389. rabbitSide: {
  46390. height: math.unit(6, "feet"),
  46391. name: "Side",
  46392. image: {
  46393. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46394. extra: 1370/1356,
  46395. bottom: 37/1407
  46396. },
  46397. form: "rabbit"
  46398. },
  46399. rabbitBack: {
  46400. height: math.unit(6, "feet"),
  46401. name: "Back",
  46402. image: {
  46403. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46404. extra: 1375/1358,
  46405. bottom: 43/1418
  46406. },
  46407. form: "rabbit"
  46408. },
  46409. },
  46410. [
  46411. {
  46412. name: "Normal",
  46413. height: math.unit(6, "feet"),
  46414. default: true,
  46415. form: "rabbit"
  46416. },
  46417. {
  46418. name: "Incubus",
  46419. height: math.unit(12, "feet"),
  46420. default: true,
  46421. form: "incubus"
  46422. },
  46423. {
  46424. name: "Demon",
  46425. height: math.unit(36, "feet"),
  46426. default: true,
  46427. form: "demon"
  46428. }
  46429. ],
  46430. {
  46431. "demon": {
  46432. name: "Demon",
  46433. default: true
  46434. },
  46435. "incubus": {
  46436. name: "Incubus",
  46437. },
  46438. "rabbit": {
  46439. name: "Rabbit"
  46440. }
  46441. }
  46442. ))
  46443. characterMakers.push(() => makeCharacter(
  46444. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46445. {
  46446. front: {
  46447. height: math.unit(7 + 5/12, "feet"),
  46448. weight: math.unit(510, "lb"),
  46449. name: "Front",
  46450. image: {
  46451. source: "./media/characters/syrup/front.svg",
  46452. extra: 932/916,
  46453. bottom: 26/958
  46454. }
  46455. },
  46456. },
  46457. [
  46458. {
  46459. name: "Normal",
  46460. height: math.unit(7 + 5/12, "feet"),
  46461. default: true
  46462. },
  46463. {
  46464. name: "Big",
  46465. height: math.unit(50, "feet")
  46466. },
  46467. {
  46468. name: "Macro",
  46469. height: math.unit(300, "feet")
  46470. },
  46471. {
  46472. name: "Megamacro",
  46473. height: math.unit(1, "mile")
  46474. },
  46475. ]
  46476. ))
  46477. characterMakers.push(() => makeCharacter(
  46478. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46479. {
  46480. front: {
  46481. height: math.unit(6 + 9/12, "feet"),
  46482. name: "Front",
  46483. image: {
  46484. source: "./media/characters/zeimne/front.svg",
  46485. extra: 1969/1806,
  46486. bottom: 53/2022
  46487. }
  46488. },
  46489. },
  46490. [
  46491. {
  46492. name: "Normal",
  46493. height: math.unit(6 + 9/12, "feet"),
  46494. default: true
  46495. },
  46496. {
  46497. name: "Giant",
  46498. height: math.unit(550, "feet")
  46499. },
  46500. {
  46501. name: "Mega",
  46502. height: math.unit(3, "miles")
  46503. },
  46504. {
  46505. name: "Giga",
  46506. height: math.unit(250, "miles")
  46507. },
  46508. {
  46509. name: "Tera",
  46510. height: math.unit(1, "AU")
  46511. },
  46512. ]
  46513. ))
  46514. characterMakers.push(() => makeCharacter(
  46515. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46516. {
  46517. front: {
  46518. height: math.unit(5 + 2/12, "feet"),
  46519. name: "Front",
  46520. image: {
  46521. source: "./media/characters/grar/front.svg",
  46522. extra: 1331/1119,
  46523. bottom: 60/1391
  46524. }
  46525. },
  46526. back: {
  46527. height: math.unit(5 + 2/12, "feet"),
  46528. name: "Back",
  46529. image: {
  46530. source: "./media/characters/grar/back.svg",
  46531. extra: 1385/1169,
  46532. bottom: 23/1408
  46533. }
  46534. },
  46535. },
  46536. [
  46537. {
  46538. name: "Normal",
  46539. height: math.unit(5 + 2/12, "feet"),
  46540. default: true
  46541. },
  46542. ]
  46543. ))
  46544. characterMakers.push(() => makeCharacter(
  46545. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46546. {
  46547. front: {
  46548. height: math.unit(13 + 7/12, "feet"),
  46549. weight: math.unit(2200, "lb"),
  46550. name: "Front",
  46551. image: {
  46552. source: "./media/characters/endraya/front.svg",
  46553. extra: 1289/1215,
  46554. bottom: 50/1339
  46555. }
  46556. },
  46557. nude: {
  46558. height: math.unit(13 + 7/12, "feet"),
  46559. weight: math.unit(2200, "lb"),
  46560. name: "Nude",
  46561. image: {
  46562. source: "./media/characters/endraya/nude.svg",
  46563. extra: 1247/1171,
  46564. bottom: 40/1287
  46565. }
  46566. },
  46567. head: {
  46568. height: math.unit(2.6, "feet"),
  46569. name: "Head",
  46570. image: {
  46571. source: "./media/characters/endraya/head.svg"
  46572. }
  46573. },
  46574. slit: {
  46575. height: math.unit(3.4, "feet"),
  46576. name: "Slit",
  46577. image: {
  46578. source: "./media/characters/endraya/slit.svg"
  46579. }
  46580. },
  46581. },
  46582. [
  46583. {
  46584. name: "Normal",
  46585. height: math.unit(13 + 7/12, "feet"),
  46586. default: true
  46587. },
  46588. {
  46589. name: "Macro",
  46590. height: math.unit(200, "feet")
  46591. },
  46592. ]
  46593. ))
  46594. characterMakers.push(() => makeCharacter(
  46595. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46596. {
  46597. front: {
  46598. height: math.unit(1.81, "meters"),
  46599. weight: math.unit(69, "kg"),
  46600. name: "Front",
  46601. image: {
  46602. source: "./media/characters/rodryana/front.svg",
  46603. extra: 2002/1921,
  46604. bottom: 53/2055
  46605. }
  46606. },
  46607. back: {
  46608. height: math.unit(1.81, "meters"),
  46609. weight: math.unit(69, "kg"),
  46610. name: "Back",
  46611. image: {
  46612. source: "./media/characters/rodryana/back.svg",
  46613. extra: 1993/1926,
  46614. bottom: 48/2041
  46615. }
  46616. },
  46617. maw: {
  46618. height: math.unit(0.19769417475, "meters"),
  46619. name: "Maw",
  46620. image: {
  46621. source: "./media/characters/rodryana/maw.svg"
  46622. }
  46623. },
  46624. slit: {
  46625. height: math.unit(0.31631067961, "meters"),
  46626. name: "Slit",
  46627. image: {
  46628. source: "./media/characters/rodryana/slit.svg"
  46629. }
  46630. },
  46631. },
  46632. [
  46633. {
  46634. name: "Normal",
  46635. height: math.unit(1.81, "meters")
  46636. },
  46637. {
  46638. name: "Mini Macro",
  46639. height: math.unit(181, "meters")
  46640. },
  46641. {
  46642. name: "Macro",
  46643. height: math.unit(452, "meters"),
  46644. default: true
  46645. },
  46646. {
  46647. name: "Mega Macro",
  46648. height: math.unit(1.375, "km")
  46649. },
  46650. {
  46651. name: "Giga Macro",
  46652. height: math.unit(13.575, "km")
  46653. },
  46654. ]
  46655. ))
  46656. characterMakers.push(() => makeCharacter(
  46657. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46658. {
  46659. front: {
  46660. height: math.unit(6, "feet"),
  46661. weight: math.unit(1000, "lb"),
  46662. name: "Front",
  46663. image: {
  46664. source: "./media/characters/asaya/front.svg",
  46665. extra: 1460/1200,
  46666. bottom: 71/1531
  46667. }
  46668. },
  46669. },
  46670. [
  46671. {
  46672. name: "Normal",
  46673. height: math.unit(8, "km"),
  46674. default: true
  46675. },
  46676. ]
  46677. ))
  46678. characterMakers.push(() => makeCharacter(
  46679. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46680. {
  46681. front: {
  46682. height: math.unit(3.5, "meters"),
  46683. name: "Front",
  46684. image: {
  46685. source: "./media/characters/sarzu-and-israz/front.svg",
  46686. extra: 1570/1558,
  46687. bottom: 150/1720
  46688. },
  46689. },
  46690. back: {
  46691. height: math.unit(3.5, "meters"),
  46692. name: "Back",
  46693. image: {
  46694. source: "./media/characters/sarzu-and-israz/back.svg",
  46695. extra: 1523/1509,
  46696. bottom: 132/1655
  46697. },
  46698. },
  46699. frontFemale: {
  46700. height: math.unit(3.5, "meters"),
  46701. name: "Front (Female)",
  46702. image: {
  46703. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46704. extra: 1570/1558,
  46705. bottom: 150/1720
  46706. },
  46707. },
  46708. frontHerm: {
  46709. height: math.unit(3.5, "meters"),
  46710. name: "Front (Herm)",
  46711. image: {
  46712. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46713. extra: 1570/1558,
  46714. bottom: 150/1720
  46715. },
  46716. },
  46717. },
  46718. [
  46719. {
  46720. name: "Normal",
  46721. height: math.unit(3.5, "meters"),
  46722. default: true,
  46723. },
  46724. {
  46725. name: "Macro",
  46726. height: math.unit(65.5, "meters"),
  46727. },
  46728. ],
  46729. ))
  46730. characterMakers.push(() => makeCharacter(
  46731. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46732. {
  46733. front: {
  46734. height: math.unit(6, "feet"),
  46735. weight: math.unit(250, "lb"),
  46736. name: "Front",
  46737. image: {
  46738. source: "./media/characters/zenimma/front.svg",
  46739. extra: 1346/1320,
  46740. bottom: 58/1404
  46741. }
  46742. },
  46743. back: {
  46744. height: math.unit(6, "feet"),
  46745. weight: math.unit(250, "lb"),
  46746. name: "Back",
  46747. image: {
  46748. source: "./media/characters/zenimma/back.svg",
  46749. extra: 1324/1308,
  46750. bottom: 44/1368
  46751. }
  46752. },
  46753. dick: {
  46754. height: math.unit(1.44, "feet"),
  46755. name: "Dick",
  46756. image: {
  46757. source: "./media/characters/zenimma/dick.svg"
  46758. }
  46759. },
  46760. },
  46761. [
  46762. {
  46763. name: "Canon Height",
  46764. height: math.unit(66, "miles"),
  46765. default: true
  46766. },
  46767. ]
  46768. ))
  46769. characterMakers.push(() => makeCharacter(
  46770. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46771. {
  46772. nude: {
  46773. height: math.unit(6, "feet"),
  46774. weight: math.unit(150, "lb"),
  46775. name: "Nude",
  46776. image: {
  46777. source: "./media/characters/shavon/nude.svg",
  46778. extra: 1242/1096,
  46779. bottom: 98/1340
  46780. }
  46781. },
  46782. dressed: {
  46783. height: math.unit(6, "feet"),
  46784. weight: math.unit(150, "lb"),
  46785. name: "Dressed",
  46786. image: {
  46787. source: "./media/characters/shavon/dressed.svg",
  46788. extra: 1242/1096,
  46789. bottom: 98/1340
  46790. }
  46791. },
  46792. },
  46793. [
  46794. {
  46795. name: "Macro",
  46796. height: math.unit(255, "feet"),
  46797. default: true
  46798. },
  46799. ]
  46800. ))
  46801. characterMakers.push(() => makeCharacter(
  46802. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46803. {
  46804. front: {
  46805. height: math.unit(6, "feet"),
  46806. name: "Front",
  46807. image: {
  46808. source: "./media/characters/steph/front.svg",
  46809. extra: 1430/1330,
  46810. bottom: 54/1484
  46811. }
  46812. },
  46813. },
  46814. [
  46815. {
  46816. name: "Normal",
  46817. height: math.unit(6, "feet"),
  46818. default: true
  46819. },
  46820. ]
  46821. ))
  46822. characterMakers.push(() => makeCharacter(
  46823. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46824. {
  46825. front: {
  46826. height: math.unit(9, "feet"),
  46827. weight: math.unit(400, "lb"),
  46828. name: "Front",
  46829. image: {
  46830. source: "./media/characters/kil'aman/front.svg",
  46831. extra: 1210/1159,
  46832. bottom: 109/1319
  46833. }
  46834. },
  46835. head: {
  46836. height: math.unit(2.14, "feet"),
  46837. name: "Head",
  46838. image: {
  46839. source: "./media/characters/kil'aman/head.svg"
  46840. }
  46841. },
  46842. maw: {
  46843. height: math.unit(1.21, "feet"),
  46844. name: "Maw",
  46845. image: {
  46846. source: "./media/characters/kil'aman/maw.svg"
  46847. }
  46848. },
  46849. foot: {
  46850. height: math.unit(1.7, "feet"),
  46851. name: "Foot",
  46852. image: {
  46853. source: "./media/characters/kil'aman/foot.svg"
  46854. }
  46855. },
  46856. dick: {
  46857. height: math.unit(2.1, "feet"),
  46858. name: "Dick",
  46859. image: {
  46860. source: "./media/characters/kil'aman/dick.svg"
  46861. }
  46862. },
  46863. },
  46864. [
  46865. {
  46866. name: "Normal",
  46867. height: math.unit(9, "feet")
  46868. },
  46869. {
  46870. name: "Canon Height",
  46871. height: math.unit(10, "miles"),
  46872. default: true
  46873. },
  46874. {
  46875. name: "Maximum",
  46876. height: math.unit(6e9, "miles")
  46877. },
  46878. ]
  46879. ))
  46880. characterMakers.push(() => makeCharacter(
  46881. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46882. {
  46883. front: {
  46884. height: math.unit(90, "feet"),
  46885. weight: math.unit(675000, "lb"),
  46886. name: "Front",
  46887. image: {
  46888. source: "./media/characters/qadan/front.svg",
  46889. extra: 1012/1004,
  46890. bottom: 78/1090
  46891. }
  46892. },
  46893. back: {
  46894. height: math.unit(90, "feet"),
  46895. weight: math.unit(675000, "lb"),
  46896. name: "Back",
  46897. image: {
  46898. source: "./media/characters/qadan/back.svg",
  46899. extra: 1042/1031,
  46900. bottom: 55/1097
  46901. }
  46902. },
  46903. armored: {
  46904. height: math.unit(90, "feet"),
  46905. weight: math.unit(675000, "lb"),
  46906. name: "Armored",
  46907. image: {
  46908. source: "./media/characters/qadan/armored.svg",
  46909. extra: 1047/1037,
  46910. bottom: 48/1095
  46911. }
  46912. },
  46913. },
  46914. [
  46915. {
  46916. name: "Normal",
  46917. height: math.unit(90, "feet"),
  46918. default: true
  46919. },
  46920. ]
  46921. ))
  46922. characterMakers.push(() => makeCharacter(
  46923. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46924. {
  46925. front: {
  46926. height: math.unit(6, "feet"),
  46927. weight: math.unit(225, "lb"),
  46928. name: "Front",
  46929. image: {
  46930. source: "./media/characters/brooke/front.svg",
  46931. extra: 1050/1010,
  46932. bottom: 66/1116
  46933. }
  46934. },
  46935. back: {
  46936. height: math.unit(6, "feet"),
  46937. weight: math.unit(225, "lb"),
  46938. name: "Back",
  46939. image: {
  46940. source: "./media/characters/brooke/back.svg",
  46941. extra: 1053/1013,
  46942. bottom: 41/1094
  46943. }
  46944. },
  46945. dressed: {
  46946. height: math.unit(6, "feet"),
  46947. weight: math.unit(225, "lb"),
  46948. name: "Dressed",
  46949. image: {
  46950. source: "./media/characters/brooke/dressed.svg",
  46951. extra: 1050/1010,
  46952. bottom: 66/1116
  46953. }
  46954. },
  46955. },
  46956. [
  46957. {
  46958. name: "Canon Height",
  46959. height: math.unit(500, "miles"),
  46960. default: true
  46961. },
  46962. ]
  46963. ))
  46964. characterMakers.push(() => makeCharacter(
  46965. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46966. {
  46967. front: {
  46968. height: math.unit(6 + 2/12, "feet"),
  46969. weight: math.unit(210, "lb"),
  46970. name: "Front",
  46971. image: {
  46972. source: "./media/characters/wubs/front.svg",
  46973. extra: 1345/1325,
  46974. bottom: 70/1415
  46975. }
  46976. },
  46977. back: {
  46978. height: math.unit(6 + 2/12, "feet"),
  46979. weight: math.unit(210, "lb"),
  46980. name: "Back",
  46981. image: {
  46982. source: "./media/characters/wubs/back.svg",
  46983. extra: 1296/1275,
  46984. bottom: 58/1354
  46985. }
  46986. },
  46987. },
  46988. [
  46989. {
  46990. name: "Normal",
  46991. height: math.unit(6 + 2/12, "feet"),
  46992. default: true
  46993. },
  46994. {
  46995. name: "Macro",
  46996. height: math.unit(1000, "feet")
  46997. },
  46998. {
  46999. name: "Megamacro",
  47000. height: math.unit(1, "mile")
  47001. },
  47002. ]
  47003. ))
  47004. characterMakers.push(() => makeCharacter(
  47005. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47006. {
  47007. front: {
  47008. height: math.unit(4, "feet"),
  47009. weight: math.unit(120, "lb"),
  47010. name: "Front",
  47011. image: {
  47012. source: "./media/characters/blue/front.svg",
  47013. extra: 1636/1525,
  47014. bottom: 43/1679
  47015. }
  47016. },
  47017. back: {
  47018. height: math.unit(4, "feet"),
  47019. weight: math.unit(120, "lb"),
  47020. name: "Back",
  47021. image: {
  47022. source: "./media/characters/blue/back.svg",
  47023. extra: 1660/1560,
  47024. bottom: 57/1717
  47025. }
  47026. },
  47027. paws: {
  47028. height: math.unit(0.826, "feet"),
  47029. name: "Paws",
  47030. image: {
  47031. source: "./media/characters/blue/paws.svg"
  47032. }
  47033. },
  47034. },
  47035. [
  47036. {
  47037. name: "Micro",
  47038. height: math.unit(3, "inches")
  47039. },
  47040. {
  47041. name: "Normal",
  47042. height: math.unit(4, "feet"),
  47043. default: true
  47044. },
  47045. {
  47046. name: "Femenine Form",
  47047. height: math.unit(14, "feet")
  47048. },
  47049. {
  47050. name: "Werebat Form",
  47051. height: math.unit(18, "feet")
  47052. },
  47053. ]
  47054. ))
  47055. characterMakers.push(() => makeCharacter(
  47056. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47057. {
  47058. female: {
  47059. height: math.unit(7 + 4/12, "feet"),
  47060. weight: math.unit(243, "lb"),
  47061. name: "Female",
  47062. image: {
  47063. source: "./media/characters/kaya/female.svg",
  47064. extra: 975/898,
  47065. bottom: 34/1009
  47066. }
  47067. },
  47068. herm: {
  47069. height: math.unit(7 + 4/12, "feet"),
  47070. weight: math.unit(243, "lb"),
  47071. name: "Herm",
  47072. image: {
  47073. source: "./media/characters/kaya/herm.svg",
  47074. extra: 975/898,
  47075. bottom: 34/1009
  47076. }
  47077. },
  47078. },
  47079. [
  47080. {
  47081. name: "Normal",
  47082. height: math.unit(7 + 4/12, "feet"),
  47083. default: true
  47084. },
  47085. ]
  47086. ))
  47087. characterMakers.push(() => makeCharacter(
  47088. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47089. {
  47090. female: {
  47091. height: math.unit(9 + 4/12, "feet"),
  47092. weight: math.unit(398, "lb"),
  47093. name: "Female",
  47094. image: {
  47095. source: "./media/characters/kassandra/female.svg",
  47096. extra: 908/839,
  47097. bottom: 61/969
  47098. }
  47099. },
  47100. intersex: {
  47101. height: math.unit(9 + 4/12, "feet"),
  47102. weight: math.unit(398, "lb"),
  47103. name: "Intersex",
  47104. image: {
  47105. source: "./media/characters/kassandra/intersex.svg",
  47106. extra: 908/839,
  47107. bottom: 61/969
  47108. }
  47109. },
  47110. },
  47111. [
  47112. {
  47113. name: "Normal",
  47114. height: math.unit(9 + 4/12, "feet"),
  47115. default: true
  47116. },
  47117. ]
  47118. ))
  47119. characterMakers.push(() => makeCharacter(
  47120. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47121. {
  47122. front: {
  47123. height: math.unit(3, "meters"),
  47124. name: "Front",
  47125. image: {
  47126. source: "./media/characters/amy/front.svg",
  47127. extra: 1380/1343,
  47128. bottom: 70/1450
  47129. }
  47130. },
  47131. back: {
  47132. height: math.unit(3, "meters"),
  47133. name: "Back",
  47134. image: {
  47135. source: "./media/characters/amy/back.svg",
  47136. extra: 1380/1347,
  47137. bottom: 66/1446
  47138. }
  47139. },
  47140. },
  47141. [
  47142. {
  47143. name: "Normal",
  47144. height: math.unit(3, "meters"),
  47145. default: true
  47146. },
  47147. ]
  47148. ))
  47149. characterMakers.push(() => makeCharacter(
  47150. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47151. {
  47152. side: {
  47153. height: math.unit(47, "cm"),
  47154. weight: math.unit(10.8, "kg"),
  47155. name: "Side",
  47156. image: {
  47157. source: "./media/characters/alphaschakal/side.svg",
  47158. extra: 1058/568,
  47159. bottom: 62/1120
  47160. }
  47161. },
  47162. back: {
  47163. height: math.unit(78, "cm"),
  47164. weight: math.unit(10.8, "kg"),
  47165. name: "Back",
  47166. image: {
  47167. source: "./media/characters/alphaschakal/back.svg",
  47168. extra: 1102/942,
  47169. bottom: 185/1287
  47170. }
  47171. },
  47172. head: {
  47173. height: math.unit(28, "cm"),
  47174. name: "Head",
  47175. image: {
  47176. source: "./media/characters/alphaschakal/head.svg",
  47177. extra: 696/508,
  47178. bottom: 0/696
  47179. }
  47180. },
  47181. paw: {
  47182. height: math.unit(16, "cm"),
  47183. name: "Paw",
  47184. image: {
  47185. source: "./media/characters/alphaschakal/paw.svg"
  47186. }
  47187. },
  47188. },
  47189. [
  47190. {
  47191. name: "Normal",
  47192. height: math.unit(47, "cm"),
  47193. default: true
  47194. },
  47195. {
  47196. name: "Macro",
  47197. height: math.unit(340, "cm")
  47198. },
  47199. ]
  47200. ))
  47201. characterMakers.push(() => makeCharacter(
  47202. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47203. {
  47204. front: {
  47205. height: math.unit(36, "earths"),
  47206. name: "Front",
  47207. image: {
  47208. source: "./media/characters/ecobyss/front.svg",
  47209. extra: 1282/1215,
  47210. bottom: 11/1293
  47211. }
  47212. },
  47213. back: {
  47214. height: math.unit(36, "earths"),
  47215. name: "Back",
  47216. image: {
  47217. source: "./media/characters/ecobyss/back.svg",
  47218. extra: 1291/1222,
  47219. bottom: 8/1299
  47220. }
  47221. },
  47222. },
  47223. [
  47224. {
  47225. name: "Normal",
  47226. height: math.unit(36, "earths"),
  47227. default: true
  47228. },
  47229. ]
  47230. ))
  47231. characterMakers.push(() => makeCharacter(
  47232. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47233. {
  47234. front: {
  47235. height: math.unit(12, "feet"),
  47236. name: "Front",
  47237. image: {
  47238. source: "./media/characters/vasuk/front.svg",
  47239. extra: 1326/1207,
  47240. bottom: 64/1390
  47241. }
  47242. },
  47243. },
  47244. [
  47245. {
  47246. name: "Normal",
  47247. height: math.unit(12, "feet"),
  47248. default: true
  47249. },
  47250. ]
  47251. ))
  47252. characterMakers.push(() => makeCharacter(
  47253. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47254. {
  47255. side: {
  47256. height: math.unit(100, "feet"),
  47257. name: "Side",
  47258. image: {
  47259. source: "./media/characters/linneaus/side.svg",
  47260. extra: 987/807,
  47261. bottom: 47/1034
  47262. }
  47263. },
  47264. },
  47265. [
  47266. {
  47267. name: "Macro",
  47268. height: math.unit(100, "feet"),
  47269. default: true
  47270. },
  47271. ]
  47272. ))
  47273. characterMakers.push(() => makeCharacter(
  47274. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47275. {
  47276. front: {
  47277. height: math.unit(8, "feet"),
  47278. weight: math.unit(1200, "lb"),
  47279. name: "Front",
  47280. image: {
  47281. source: "./media/characters/nyterious-daligdig/front.svg",
  47282. extra: 1284/1094,
  47283. bottom: 84/1368
  47284. }
  47285. },
  47286. back: {
  47287. height: math.unit(8, "feet"),
  47288. weight: math.unit(1200, "lb"),
  47289. name: "Back",
  47290. image: {
  47291. source: "./media/characters/nyterious-daligdig/back.svg",
  47292. extra: 1301/1121,
  47293. bottom: 129/1430
  47294. }
  47295. },
  47296. mouth: {
  47297. height: math.unit(1.464, "feet"),
  47298. name: "Mouth",
  47299. image: {
  47300. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47301. }
  47302. },
  47303. },
  47304. [
  47305. {
  47306. name: "Small",
  47307. height: math.unit(8, "feet"),
  47308. default: true
  47309. },
  47310. {
  47311. name: "Normal",
  47312. height: math.unit(15, "feet")
  47313. },
  47314. {
  47315. name: "Macro",
  47316. height: math.unit(90, "feet")
  47317. },
  47318. ]
  47319. ))
  47320. characterMakers.push(() => makeCharacter(
  47321. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47322. {
  47323. front: {
  47324. height: math.unit(7 + 4/12, "feet"),
  47325. weight: math.unit(252, "lb"),
  47326. name: "Front",
  47327. image: {
  47328. source: "./media/characters/bandel/front.svg",
  47329. extra: 1946/1775,
  47330. bottom: 26/1972
  47331. }
  47332. },
  47333. back: {
  47334. height: math.unit(7 + 4/12, "feet"),
  47335. weight: math.unit(252, "lb"),
  47336. name: "Back",
  47337. image: {
  47338. source: "./media/characters/bandel/back.svg",
  47339. extra: 1940/1770,
  47340. bottom: 25/1965
  47341. }
  47342. },
  47343. maw: {
  47344. height: math.unit(2.15, "feet"),
  47345. name: "Maw",
  47346. image: {
  47347. source: "./media/characters/bandel/maw.svg"
  47348. }
  47349. },
  47350. stomach: {
  47351. height: math.unit(1.95, "feet"),
  47352. name: "Stomach",
  47353. image: {
  47354. source: "./media/characters/bandel/stomach.svg"
  47355. }
  47356. },
  47357. },
  47358. [
  47359. {
  47360. name: "Normal",
  47361. height: math.unit(7 + 4/12, "feet"),
  47362. default: true
  47363. },
  47364. ]
  47365. ))
  47366. characterMakers.push(() => makeCharacter(
  47367. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47368. {
  47369. front: {
  47370. height: math.unit(10 + 5/12, "feet"),
  47371. weight: math.unit(773.5, "kg"),
  47372. name: "Front",
  47373. image: {
  47374. source: "./media/characters/zed/front.svg",
  47375. extra: 987/941,
  47376. bottom: 52/1039
  47377. }
  47378. },
  47379. },
  47380. [
  47381. {
  47382. name: "Short",
  47383. height: math.unit(5 + 4/12, "feet")
  47384. },
  47385. {
  47386. name: "Average",
  47387. height: math.unit(10 + 5/12, "feet"),
  47388. default: true
  47389. },
  47390. {
  47391. name: "Mini-Macro",
  47392. height: math.unit(24 + 9/12, "feet")
  47393. },
  47394. {
  47395. name: "Macro",
  47396. height: math.unit(249, "feet")
  47397. },
  47398. {
  47399. name: "Mega-Macro",
  47400. height: math.unit(12490, "feet")
  47401. },
  47402. {
  47403. name: "Giga-Macro",
  47404. height: math.unit(24.9, "miles")
  47405. },
  47406. {
  47407. name: "Tera-Macro",
  47408. height: math.unit(24900, "miles")
  47409. },
  47410. {
  47411. name: "Cosmic Scale",
  47412. height: math.unit(38.9, "lightyears")
  47413. },
  47414. {
  47415. name: "Universal Scale",
  47416. height: math.unit(138e12, "lightyears")
  47417. },
  47418. ]
  47419. ))
  47420. characterMakers.push(() => makeCharacter(
  47421. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47422. {
  47423. front: {
  47424. height: math.unit(1561, "inches"),
  47425. name: "Front",
  47426. image: {
  47427. source: "./media/characters/ivan/front.svg",
  47428. extra: 1126/1071,
  47429. bottom: 26/1152
  47430. }
  47431. },
  47432. back: {
  47433. height: math.unit(1561, "inches"),
  47434. name: "Back",
  47435. image: {
  47436. source: "./media/characters/ivan/back.svg",
  47437. extra: 1134/1079,
  47438. bottom: 30/1164
  47439. }
  47440. },
  47441. },
  47442. [
  47443. {
  47444. name: "Normal",
  47445. height: math.unit(1561, "inches"),
  47446. default: true
  47447. },
  47448. ]
  47449. ))
  47450. characterMakers.push(() => makeCharacter(
  47451. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47452. {
  47453. front: {
  47454. height: math.unit(5 + 7/12, "feet"),
  47455. weight: math.unit(150, "lb"),
  47456. name: "Front",
  47457. image: {
  47458. source: "./media/characters/robin-arctic-hare/front.svg",
  47459. extra: 1148/974,
  47460. bottom: 20/1168
  47461. }
  47462. },
  47463. },
  47464. [
  47465. {
  47466. name: "Normal",
  47467. height: math.unit(5 + 7/12, "feet"),
  47468. default: true
  47469. },
  47470. ]
  47471. ))
  47472. characterMakers.push(() => makeCharacter(
  47473. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47474. {
  47475. side: {
  47476. height: math.unit(5, "feet"),
  47477. name: "Side",
  47478. image: {
  47479. source: "./media/characters/birch/side.svg",
  47480. extra: 985/796,
  47481. bottom: 111/1096
  47482. }
  47483. },
  47484. },
  47485. [
  47486. {
  47487. name: "Normal",
  47488. height: math.unit(5, "feet"),
  47489. default: true
  47490. },
  47491. ]
  47492. ))
  47493. characterMakers.push(() => makeCharacter(
  47494. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47495. {
  47496. front: {
  47497. height: math.unit(4, "feet"),
  47498. name: "Front",
  47499. image: {
  47500. source: "./media/characters/rasp/front.svg",
  47501. extra: 561/478,
  47502. bottom: 74/635
  47503. }
  47504. },
  47505. },
  47506. [
  47507. {
  47508. name: "Normal",
  47509. height: math.unit(4, "feet"),
  47510. default: true
  47511. },
  47512. ]
  47513. ))
  47514. characterMakers.push(() => makeCharacter(
  47515. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47516. {
  47517. front: {
  47518. height: math.unit(4 + 6/12, "feet"),
  47519. name: "Front",
  47520. image: {
  47521. source: "./media/characters/agatha/front.svg",
  47522. extra: 947/933,
  47523. bottom: 42/989
  47524. }
  47525. },
  47526. back: {
  47527. height: math.unit(4 + 6/12, "feet"),
  47528. name: "Back",
  47529. image: {
  47530. source: "./media/characters/agatha/back.svg",
  47531. extra: 935/922,
  47532. bottom: 48/983
  47533. }
  47534. },
  47535. },
  47536. [
  47537. {
  47538. name: "Normal",
  47539. height: math.unit(4 + 6 /12, "feet"),
  47540. default: true
  47541. },
  47542. {
  47543. name: "Max Size",
  47544. height: math.unit(500, "feet")
  47545. },
  47546. ]
  47547. ))
  47548. characterMakers.push(() => makeCharacter(
  47549. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47550. {
  47551. side: {
  47552. height: math.unit(30, "feet"),
  47553. name: "Side",
  47554. image: {
  47555. source: "./media/characters/roggy/side.svg",
  47556. extra: 909/643,
  47557. bottom: 63/972
  47558. }
  47559. },
  47560. lounging: {
  47561. height: math.unit(20, "feet"),
  47562. name: "Lounging",
  47563. image: {
  47564. source: "./media/characters/roggy/lounging.svg",
  47565. extra: 643/479,
  47566. bottom: 145/788
  47567. }
  47568. },
  47569. handpaw: {
  47570. height: math.unit(13.1, "feet"),
  47571. name: "Handpaw",
  47572. image: {
  47573. source: "./media/characters/roggy/handpaw.svg"
  47574. }
  47575. },
  47576. footpaw: {
  47577. height: math.unit(15.8, "feet"),
  47578. name: "Footpaw",
  47579. image: {
  47580. source: "./media/characters/roggy/footpaw.svg"
  47581. }
  47582. },
  47583. },
  47584. [
  47585. {
  47586. name: "Menacing",
  47587. height: math.unit(30, "feet"),
  47588. default: true
  47589. },
  47590. ]
  47591. ))
  47592. characterMakers.push(() => makeCharacter(
  47593. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47594. {
  47595. front: {
  47596. height: math.unit(5 + 7/12, "feet"),
  47597. weight: math.unit(135, "lb"),
  47598. name: "Front",
  47599. image: {
  47600. source: "./media/characters/naomi/front.svg",
  47601. extra: 1209/1154,
  47602. bottom: 129/1338
  47603. }
  47604. },
  47605. back: {
  47606. height: math.unit(5 + 7/12, "feet"),
  47607. weight: math.unit(135, "lb"),
  47608. name: "Back",
  47609. image: {
  47610. source: "./media/characters/naomi/back.svg",
  47611. extra: 1252/1190,
  47612. bottom: 23/1275
  47613. }
  47614. },
  47615. },
  47616. [
  47617. {
  47618. name: "Normal",
  47619. height: math.unit(5 + 7 /12, "feet"),
  47620. default: true
  47621. },
  47622. ]
  47623. ))
  47624. characterMakers.push(() => makeCharacter(
  47625. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47626. {
  47627. side: {
  47628. height: math.unit(35, "meters"),
  47629. name: "Side",
  47630. image: {
  47631. source: "./media/characters/kimpi/side.svg",
  47632. extra: 419/382,
  47633. bottom: 63/482
  47634. }
  47635. },
  47636. hand: {
  47637. height: math.unit(8.96, "meters"),
  47638. name: "Hand",
  47639. image: {
  47640. source: "./media/characters/kimpi/hand.svg"
  47641. }
  47642. },
  47643. },
  47644. [
  47645. {
  47646. name: "Normal",
  47647. height: math.unit(35, "meters"),
  47648. default: true
  47649. },
  47650. ]
  47651. ))
  47652. characterMakers.push(() => makeCharacter(
  47653. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47654. {
  47655. front: {
  47656. height: math.unit(4 + 4/12, "feet"),
  47657. name: "Front",
  47658. image: {
  47659. source: "./media/characters/pepper-purrloin/front.svg",
  47660. extra: 1141/1024,
  47661. bottom: 21/1162
  47662. }
  47663. },
  47664. },
  47665. [
  47666. {
  47667. name: "Normal",
  47668. height: math.unit(4 + 4/12, "feet"),
  47669. default: true
  47670. },
  47671. ]
  47672. ))
  47673. characterMakers.push(() => makeCharacter(
  47674. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47675. {
  47676. front: {
  47677. height: math.unit(6 + 2/12, "feet"),
  47678. name: "Front",
  47679. image: {
  47680. source: "./media/characters/raphael/front.svg",
  47681. extra: 1101/962,
  47682. bottom: 59/1160
  47683. }
  47684. },
  47685. },
  47686. [
  47687. {
  47688. name: "Normal",
  47689. height: math.unit(6 + 2/12, "feet"),
  47690. default: true
  47691. },
  47692. ]
  47693. ))
  47694. characterMakers.push(() => makeCharacter(
  47695. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47696. {
  47697. front: {
  47698. height: math.unit(6, "feet"),
  47699. weight: math.unit(150, "lb"),
  47700. name: "Front",
  47701. image: {
  47702. source: "./media/characters/victor-williams/front.svg",
  47703. extra: 1894/1825,
  47704. bottom: 67/1961
  47705. }
  47706. },
  47707. },
  47708. [
  47709. {
  47710. name: "Normal",
  47711. height: math.unit(6, "feet"),
  47712. default: true
  47713. },
  47714. ]
  47715. ))
  47716. characterMakers.push(() => makeCharacter(
  47717. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47718. {
  47719. front: {
  47720. height: math.unit(5 + 8/12, "feet"),
  47721. weight: math.unit(150, "lb"),
  47722. name: "Front",
  47723. image: {
  47724. source: "./media/characters/rachel/front.svg",
  47725. extra: 1902/1787,
  47726. bottom: 46/1948
  47727. }
  47728. },
  47729. },
  47730. [
  47731. {
  47732. name: "Base Height",
  47733. height: math.unit(5 + 8/12, "feet"),
  47734. default: true
  47735. },
  47736. {
  47737. name: "Macro",
  47738. height: math.unit(200, "feet")
  47739. },
  47740. {
  47741. name: "Mega Macro",
  47742. height: math.unit(1, "mile")
  47743. },
  47744. {
  47745. name: "Giga Macro",
  47746. height: math.unit(1500, "miles")
  47747. },
  47748. {
  47749. name: "Tera Macro",
  47750. height: math.unit(8000, "miles")
  47751. },
  47752. {
  47753. name: "Tera Macro+",
  47754. height: math.unit(2e5, "miles")
  47755. },
  47756. ]
  47757. ))
  47758. characterMakers.push(() => makeCharacter(
  47759. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47760. {
  47761. front: {
  47762. height: math.unit(6.5, "feet"),
  47763. name: "Front",
  47764. image: {
  47765. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47766. extra: 860/819,
  47767. bottom: 307/1167
  47768. }
  47769. },
  47770. back: {
  47771. height: math.unit(6.5, "feet"),
  47772. name: "Back",
  47773. image: {
  47774. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47775. extra: 880/837,
  47776. bottom: 395/1275
  47777. }
  47778. },
  47779. sleeping: {
  47780. height: math.unit(2.79, "feet"),
  47781. name: "Sleeping",
  47782. image: {
  47783. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47784. extra: 465/383,
  47785. bottom: 263/728
  47786. }
  47787. },
  47788. maw: {
  47789. height: math.unit(2.52, "feet"),
  47790. name: "Maw",
  47791. image: {
  47792. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47793. }
  47794. },
  47795. },
  47796. [
  47797. {
  47798. name: "Normal",
  47799. height: math.unit(6.5, "feet"),
  47800. default: true
  47801. },
  47802. ]
  47803. ))
  47804. characterMakers.push(() => makeCharacter(
  47805. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47806. {
  47807. front: {
  47808. height: math.unit(5, "feet"),
  47809. name: "Front",
  47810. image: {
  47811. source: "./media/characters/nova-nerium/front.svg",
  47812. extra: 1548/1392,
  47813. bottom: 374/1922
  47814. }
  47815. },
  47816. back: {
  47817. height: math.unit(5, "feet"),
  47818. name: "Back",
  47819. image: {
  47820. source: "./media/characters/nova-nerium/back.svg",
  47821. extra: 1658/1468,
  47822. bottom: 257/1915
  47823. }
  47824. },
  47825. },
  47826. [
  47827. {
  47828. name: "Normal",
  47829. height: math.unit(5, "feet"),
  47830. default: true
  47831. },
  47832. ]
  47833. ))
  47834. characterMakers.push(() => makeCharacter(
  47835. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47836. {
  47837. front: {
  47838. height: math.unit(5 + 4/12, "feet"),
  47839. name: "Front",
  47840. image: {
  47841. source: "./media/characters/ashe-pyriph/front.svg",
  47842. extra: 1935/1747,
  47843. bottom: 60/1995
  47844. }
  47845. },
  47846. },
  47847. [
  47848. {
  47849. name: "Normal",
  47850. height: math.unit(5 + 4/12, "feet"),
  47851. default: true
  47852. },
  47853. ]
  47854. ))
  47855. characterMakers.push(() => makeCharacter(
  47856. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47857. {
  47858. front: {
  47859. height: math.unit(8.7, "feet"),
  47860. name: "Front",
  47861. image: {
  47862. source: "./media/characters/flicker-wisp/front.svg",
  47863. extra: 1835/1613,
  47864. bottom: 449/2284
  47865. }
  47866. },
  47867. side: {
  47868. height: math.unit(8.7, "feet"),
  47869. name: "Side",
  47870. image: {
  47871. source: "./media/characters/flicker-wisp/side.svg",
  47872. extra: 1841/1642,
  47873. bottom: 336/2177
  47874. },
  47875. default: true
  47876. },
  47877. maw: {
  47878. height: math.unit(3.35, "feet"),
  47879. name: "Maw",
  47880. image: {
  47881. source: "./media/characters/flicker-wisp/maw.svg",
  47882. extra: 2338/1506,
  47883. bottom: 0/2338
  47884. }
  47885. },
  47886. ovipositor: {
  47887. height: math.unit(4.95, "feet"),
  47888. name: "Ovipositor",
  47889. image: {
  47890. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47891. }
  47892. },
  47893. egg: {
  47894. height: math.unit(0.385, "feet"),
  47895. weight: math.unit(2, "lb"),
  47896. name: "Egg",
  47897. image: {
  47898. source: "./media/characters/flicker-wisp/egg.svg"
  47899. }
  47900. },
  47901. },
  47902. [
  47903. {
  47904. name: "Normal",
  47905. height: math.unit(8.7, "feet"),
  47906. default: true
  47907. },
  47908. ]
  47909. ))
  47910. characterMakers.push(() => makeCharacter(
  47911. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  47912. {
  47913. side: {
  47914. height: math.unit(11, "feet"),
  47915. name: "Side",
  47916. image: {
  47917. source: "./media/characters/faefnul/side.svg",
  47918. extra: 1100/1007,
  47919. bottom: 0/1100
  47920. }
  47921. },
  47922. },
  47923. [
  47924. {
  47925. name: "Normal",
  47926. height: math.unit(11, "feet"),
  47927. default: true
  47928. },
  47929. ]
  47930. ))
  47931. characterMakers.push(() => makeCharacter(
  47932. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  47933. {
  47934. front: {
  47935. height: math.unit(6 + 2/12, "feet"),
  47936. name: "Front",
  47937. image: {
  47938. source: "./media/characters/shady/front.svg",
  47939. extra: 502/461,
  47940. bottom: 9/511
  47941. }
  47942. },
  47943. kneeling: {
  47944. height: math.unit(4.6, "feet"),
  47945. name: "Kneeling",
  47946. image: {
  47947. source: "./media/characters/shady/kneeling.svg",
  47948. extra: 1328/1219,
  47949. bottom: 117/1445
  47950. }
  47951. },
  47952. maw: {
  47953. height: math.unit(2, "feet"),
  47954. name: "Maw",
  47955. image: {
  47956. source: "./media/characters/shady/maw.svg"
  47957. }
  47958. },
  47959. },
  47960. [
  47961. {
  47962. name: "Nano",
  47963. height: math.unit(1, "mm")
  47964. },
  47965. {
  47966. name: "Micro",
  47967. height: math.unit(12, "mm")
  47968. },
  47969. {
  47970. name: "Tiny",
  47971. height: math.unit(3, "inches")
  47972. },
  47973. {
  47974. name: "Normal",
  47975. height: math.unit(6 + 2/12, "feet"),
  47976. default: true
  47977. },
  47978. {
  47979. name: "Big",
  47980. height: math.unit(15, "feet")
  47981. },
  47982. {
  47983. name: "Macro",
  47984. height: math.unit(150, "feet")
  47985. },
  47986. {
  47987. name: "Titanic",
  47988. height: math.unit(500, "feet")
  47989. },
  47990. ]
  47991. ))
  47992. characterMakers.push(() => makeCharacter(
  47993. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  47994. {
  47995. front: {
  47996. height: math.unit(12, "feet"),
  47997. name: "Front",
  47998. image: {
  47999. source: "./media/characters/fenrir/front.svg",
  48000. extra: 968/875,
  48001. bottom: 22/990
  48002. }
  48003. },
  48004. },
  48005. [
  48006. {
  48007. name: "Big",
  48008. height: math.unit(12, "feet"),
  48009. default: true
  48010. },
  48011. ]
  48012. ))
  48013. characterMakers.push(() => makeCharacter(
  48014. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48015. {
  48016. front: {
  48017. height: math.unit(5 + 4/12, "feet"),
  48018. name: "Front",
  48019. image: {
  48020. source: "./media/characters/makar/front.svg",
  48021. extra: 1181/1112,
  48022. bottom: 78/1259
  48023. }
  48024. },
  48025. },
  48026. [
  48027. {
  48028. name: "Normal",
  48029. height: math.unit(5 + 4/12, "feet"),
  48030. default: true
  48031. },
  48032. ]
  48033. ))
  48034. characterMakers.push(() => makeCharacter(
  48035. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48036. {
  48037. front: {
  48038. height: math.unit(5 + 7/12, "feet"),
  48039. name: "Front",
  48040. image: {
  48041. source: "./media/characters/callow/front.svg",
  48042. extra: 1482/1304,
  48043. bottom: 23/1505
  48044. }
  48045. },
  48046. back: {
  48047. height: math.unit(5 + 7/12, "feet"),
  48048. name: "Back",
  48049. image: {
  48050. source: "./media/characters/callow/back.svg",
  48051. extra: 1484/1296,
  48052. bottom: 25/1509
  48053. }
  48054. },
  48055. },
  48056. [
  48057. {
  48058. name: "Micro",
  48059. height: math.unit(3, "inches"),
  48060. default: true
  48061. },
  48062. {
  48063. name: "Normal",
  48064. height: math.unit(5 + 7/12, "feet")
  48065. },
  48066. ]
  48067. ))
  48068. characterMakers.push(() => makeCharacter(
  48069. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48070. {
  48071. front: {
  48072. height: math.unit(6 + 2/12, "feet"),
  48073. name: "Front",
  48074. image: {
  48075. source: "./media/characters/natel/front.svg",
  48076. extra: 1833/1692,
  48077. bottom: 166/1999
  48078. }
  48079. },
  48080. },
  48081. [
  48082. {
  48083. name: "Normal",
  48084. height: math.unit(6 + 2/12, "feet"),
  48085. default: true
  48086. },
  48087. ]
  48088. ))
  48089. characterMakers.push(() => makeCharacter(
  48090. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48091. {
  48092. front: {
  48093. height: math.unit(1.75, "meters"),
  48094. name: "Front",
  48095. image: {
  48096. source: "./media/characters/misu/front.svg",
  48097. extra: 1690/1558,
  48098. bottom: 234/1924
  48099. }
  48100. },
  48101. back: {
  48102. height: math.unit(1.75, "meters"),
  48103. name: "Back",
  48104. image: {
  48105. source: "./media/characters/misu/back.svg",
  48106. extra: 1762/1618,
  48107. bottom: 146/1908
  48108. }
  48109. },
  48110. frontNude: {
  48111. height: math.unit(1.75, "meters"),
  48112. name: "Front (Nude)",
  48113. image: {
  48114. source: "./media/characters/misu/front-nude.svg",
  48115. extra: 1690/1558,
  48116. bottom: 234/1924
  48117. }
  48118. },
  48119. backNude: {
  48120. height: math.unit(1.75, "meters"),
  48121. name: "Back (Nude)",
  48122. image: {
  48123. source: "./media/characters/misu/back-nude.svg",
  48124. extra: 1762/1618,
  48125. bottom: 146/1908
  48126. }
  48127. },
  48128. frontErect: {
  48129. height: math.unit(1.75, "meters"),
  48130. name: "Front (Erect)",
  48131. image: {
  48132. source: "./media/characters/misu/front-erect.svg",
  48133. extra: 1690/1558,
  48134. bottom: 234/1924
  48135. }
  48136. },
  48137. maw: {
  48138. height: math.unit(0.47, "meters"),
  48139. name: "Maw",
  48140. image: {
  48141. source: "./media/characters/misu/maw.svg"
  48142. }
  48143. },
  48144. head: {
  48145. height: math.unit(0.35, "meters"),
  48146. name: "Head",
  48147. image: {
  48148. source: "./media/characters/misu/head.svg"
  48149. }
  48150. },
  48151. rear: {
  48152. height: math.unit(0.47, "meters"),
  48153. name: "Rear",
  48154. image: {
  48155. source: "./media/characters/misu/rear.svg"
  48156. }
  48157. },
  48158. },
  48159. [
  48160. {
  48161. name: "Normal",
  48162. height: math.unit(1.75, "meters")
  48163. },
  48164. {
  48165. name: "Not good for the people",
  48166. height: math.unit(42, "meters")
  48167. },
  48168. {
  48169. name: "Not good for the neighborhood",
  48170. height: math.unit(135, "meters")
  48171. },
  48172. {
  48173. name: "Bit bigger problem",
  48174. height: math.unit(380, "meters"),
  48175. default: true
  48176. },
  48177. {
  48178. name: "Not good for the city",
  48179. height: math.unit(1.5, "km")
  48180. },
  48181. {
  48182. name: "Not good for the county",
  48183. height: math.unit(5.5, "km")
  48184. },
  48185. {
  48186. name: "Not good for the state",
  48187. height: math.unit(25, "km")
  48188. },
  48189. {
  48190. name: "Not good for the country",
  48191. height: math.unit(125, "km")
  48192. },
  48193. {
  48194. name: "Not good for the continent",
  48195. height: math.unit(2100, "km")
  48196. },
  48197. {
  48198. name: "Not good for the planet",
  48199. height: math.unit(35000, "km")
  48200. },
  48201. {
  48202. name: "Just no",
  48203. height: math.unit(8.5e18, "km")
  48204. },
  48205. ]
  48206. ))
  48207. characterMakers.push(() => makeCharacter(
  48208. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48209. {
  48210. front: {
  48211. height: math.unit(6.5, "feet"),
  48212. name: "Front",
  48213. image: {
  48214. source: "./media/characters/poppy/front.svg",
  48215. extra: 1878/1812,
  48216. bottom: 43/1921
  48217. }
  48218. },
  48219. feet: {
  48220. height: math.unit(1.06, "feet"),
  48221. name: "Feet",
  48222. image: {
  48223. source: "./media/characters/poppy/feet.svg",
  48224. extra: 1083/1083,
  48225. bottom: 87/1170
  48226. }
  48227. },
  48228. },
  48229. [
  48230. {
  48231. name: "Human",
  48232. height: math.unit(6.5, "feet")
  48233. },
  48234. {
  48235. name: "Default",
  48236. height: math.unit(300, "feet"),
  48237. default: true
  48238. },
  48239. {
  48240. name: "Huge",
  48241. height: math.unit(850, "feet")
  48242. },
  48243. {
  48244. name: "Mega",
  48245. height: math.unit(8000, "feet")
  48246. },
  48247. {
  48248. name: "Giga",
  48249. height: math.unit(300, "miles")
  48250. },
  48251. ]
  48252. ))
  48253. characterMakers.push(() => makeCharacter(
  48254. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48255. {
  48256. bipedal: {
  48257. height: math.unit(7, "feet"),
  48258. name: "Bipedal",
  48259. image: {
  48260. source: "./media/characters/zener/bipedal.svg",
  48261. extra: 874/805,
  48262. bottom: 109/983
  48263. }
  48264. },
  48265. quadrupedal: {
  48266. height: math.unit(4.64, "feet"),
  48267. name: "Quadrupedal",
  48268. image: {
  48269. source: "./media/characters/zener/quadrupedal.svg",
  48270. extra: 638/507,
  48271. bottom: 190/828
  48272. }
  48273. },
  48274. cock: {
  48275. height: math.unit(18, "inches"),
  48276. name: "Cock",
  48277. image: {
  48278. source: "./media/characters/zener/cock.svg"
  48279. }
  48280. },
  48281. },
  48282. [
  48283. {
  48284. name: "Normal",
  48285. height: math.unit(7, "feet"),
  48286. default: true
  48287. },
  48288. ]
  48289. ))
  48290. characterMakers.push(() => makeCharacter(
  48291. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48292. {
  48293. nude: {
  48294. height: math.unit(5 + 6/12, "feet"),
  48295. name: "Nude",
  48296. image: {
  48297. source: "./media/characters/charlie-dog/nude.svg",
  48298. extra: 768/734,
  48299. bottom: 26/794
  48300. }
  48301. },
  48302. dressed: {
  48303. height: math.unit(5 + 6/12, "feet"),
  48304. name: "Dressed",
  48305. image: {
  48306. source: "./media/characters/charlie-dog/dressed.svg",
  48307. extra: 768/734,
  48308. bottom: 26/794
  48309. }
  48310. },
  48311. },
  48312. [
  48313. {
  48314. name: "Normal",
  48315. height: math.unit(5 + 6/12, "feet"),
  48316. default: true
  48317. },
  48318. ]
  48319. ))
  48320. characterMakers.push(() => makeCharacter(
  48321. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48322. {
  48323. front: {
  48324. height: math.unit(6 + 4/12, "feet"),
  48325. name: "Front",
  48326. image: {
  48327. source: "./media/characters/ir'istrasz/front.svg",
  48328. extra: 1014/977,
  48329. bottom: 65/1079
  48330. }
  48331. },
  48332. back: {
  48333. height: math.unit(6 + 4/12, "feet"),
  48334. name: "Back",
  48335. image: {
  48336. source: "./media/characters/ir'istrasz/back.svg",
  48337. extra: 1024/992,
  48338. bottom: 34/1058
  48339. }
  48340. },
  48341. },
  48342. [
  48343. {
  48344. name: "Normal",
  48345. height: math.unit(6 + 4/12, "feet"),
  48346. default: true
  48347. },
  48348. ]
  48349. ))
  48350. characterMakers.push(() => makeCharacter(
  48351. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48352. {
  48353. front: {
  48354. height: math.unit(5 + 8/12, "feet"),
  48355. name: "Front",
  48356. image: {
  48357. source: "./media/characters/dee-ditto/front.svg",
  48358. extra: 1874/1785,
  48359. bottom: 68/1942
  48360. }
  48361. },
  48362. back: {
  48363. height: math.unit(5 + 8/12, "feet"),
  48364. name: "Back",
  48365. image: {
  48366. source: "./media/characters/dee-ditto/back.svg",
  48367. extra: 1870/1783,
  48368. bottom: 77/1947
  48369. }
  48370. },
  48371. },
  48372. [
  48373. {
  48374. name: "Normal",
  48375. height: math.unit(5 + 8/12, "feet"),
  48376. default: true
  48377. },
  48378. ]
  48379. ))
  48380. characterMakers.push(() => makeCharacter(
  48381. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48382. {
  48383. front: {
  48384. height: math.unit(7 + 6/12, "feet"),
  48385. name: "Front",
  48386. image: {
  48387. source: "./media/characters/fey/front.svg",
  48388. extra: 995/979,
  48389. bottom: 30/1025
  48390. }
  48391. },
  48392. back: {
  48393. height: math.unit(7 + 6/12, "feet"),
  48394. name: "Back",
  48395. image: {
  48396. source: "./media/characters/fey/back.svg",
  48397. extra: 1079/1008,
  48398. bottom: 5/1084
  48399. }
  48400. },
  48401. dressed: {
  48402. height: math.unit(7 + 6/12, "feet"),
  48403. name: "Dressed",
  48404. image: {
  48405. source: "./media/characters/fey/dressed.svg",
  48406. extra: 995/979,
  48407. bottom: 30/1025
  48408. }
  48409. },
  48410. },
  48411. [
  48412. {
  48413. name: "Normal",
  48414. height: math.unit(7 + 6/12, "feet"),
  48415. default: true
  48416. },
  48417. ]
  48418. ))
  48419. characterMakers.push(() => makeCharacter(
  48420. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48421. {
  48422. standing: {
  48423. height: math.unit(17, "feet"),
  48424. name: "Standing",
  48425. image: {
  48426. source: "./media/characters/aster/standing.svg",
  48427. extra: 1798/1598,
  48428. bottom: 117/1915
  48429. }
  48430. },
  48431. },
  48432. [
  48433. {
  48434. name: "Normal",
  48435. height: math.unit(17, "feet"),
  48436. default: true
  48437. },
  48438. {
  48439. name: "Homewrecker",
  48440. height: math.unit(95, "feet")
  48441. },
  48442. {
  48443. name: "Planet Devourer",
  48444. height: math.unit(1008000, "miles")
  48445. },
  48446. ]
  48447. ))
  48448. characterMakers.push(() => makeCharacter(
  48449. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48450. {
  48451. front: {
  48452. height: math.unit(6 + 5/12, "feet"),
  48453. weight: math.unit(265, "lb"),
  48454. name: "Front",
  48455. image: {
  48456. source: "./media/characters/devon-childs/front.svg",
  48457. extra: 1795/1721,
  48458. bottom: 41/1836
  48459. }
  48460. },
  48461. side: {
  48462. height: math.unit(6 + 5/12, "feet"),
  48463. weight: math.unit(265, "lb"),
  48464. name: "Side",
  48465. image: {
  48466. source: "./media/characters/devon-childs/side.svg",
  48467. extra: 1812/1738,
  48468. bottom: 30/1842
  48469. }
  48470. },
  48471. back: {
  48472. height: math.unit(6 + 5/12, "feet"),
  48473. weight: math.unit(265, "lb"),
  48474. name: "Back",
  48475. image: {
  48476. source: "./media/characters/devon-childs/back.svg",
  48477. extra: 1808/1735,
  48478. bottom: 23/1831
  48479. }
  48480. },
  48481. hand: {
  48482. height: math.unit(1.464, "feet"),
  48483. name: "Hand",
  48484. image: {
  48485. source: "./media/characters/devon-childs/hand.svg"
  48486. }
  48487. },
  48488. foot: {
  48489. height: math.unit(1.6, "feet"),
  48490. name: "Foot",
  48491. image: {
  48492. source: "./media/characters/devon-childs/foot.svg"
  48493. }
  48494. },
  48495. },
  48496. [
  48497. {
  48498. name: "Micro",
  48499. height: math.unit(7, "cm")
  48500. },
  48501. {
  48502. name: "Normal",
  48503. height: math.unit(6 + 5/12, "feet"),
  48504. default: true
  48505. },
  48506. {
  48507. name: "Macro",
  48508. height: math.unit(154, "feet")
  48509. },
  48510. ]
  48511. ))
  48512. characterMakers.push(() => makeCharacter(
  48513. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48514. {
  48515. front: {
  48516. height: math.unit(6, "feet"),
  48517. weight: math.unit(180, "lb"),
  48518. name: "Front",
  48519. image: {
  48520. source: "./media/characters/lydemox-vir/front.svg",
  48521. extra: 1632/1435,
  48522. bottom: 58/1690
  48523. }
  48524. },
  48525. frontSFW: {
  48526. height: math.unit(6, "feet"),
  48527. weight: math.unit(180, "lb"),
  48528. name: "Front (SFW)",
  48529. image: {
  48530. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48531. extra: 1632/1435,
  48532. bottom: 58/1690
  48533. }
  48534. },
  48535. back: {
  48536. height: math.unit(6, "feet"),
  48537. weight: math.unit(180, "lb"),
  48538. name: "Back",
  48539. image: {
  48540. source: "./media/characters/lydemox-vir/back.svg",
  48541. extra: 1593/1408,
  48542. bottom: 31/1624
  48543. }
  48544. },
  48545. paw: {
  48546. height: math.unit(1.85, "feet"),
  48547. name: "Paw",
  48548. image: {
  48549. source: "./media/characters/lydemox-vir/paw.svg"
  48550. }
  48551. },
  48552. dick: {
  48553. height: math.unit(1.8, "feet"),
  48554. name: "Dick",
  48555. image: {
  48556. source: "./media/characters/lydemox-vir/dick.svg"
  48557. }
  48558. },
  48559. },
  48560. [
  48561. {
  48562. name: "Macro",
  48563. height: math.unit(100, "feet"),
  48564. default: true
  48565. },
  48566. {
  48567. name: "Teramacro",
  48568. height: math.unit(1, "earth")
  48569. },
  48570. {
  48571. name: "Planetary",
  48572. height: math.unit(20, "earths")
  48573. },
  48574. ]
  48575. ))
  48576. characterMakers.push(() => makeCharacter(
  48577. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48578. {
  48579. front: {
  48580. height: math.unit(15 + 8/12, "feet"),
  48581. weight: math.unit(1237, "kg"),
  48582. name: "Front",
  48583. image: {
  48584. source: "./media/characters/mia/front.svg",
  48585. extra: 1573/1446,
  48586. bottom: 58/1631
  48587. }
  48588. },
  48589. },
  48590. [
  48591. {
  48592. name: "Small",
  48593. height: math.unit(9 + 5/12, "feet")
  48594. },
  48595. {
  48596. name: "Normal",
  48597. height: math.unit(15 + 8/12, "feet"),
  48598. default: true
  48599. },
  48600. ]
  48601. ))
  48602. characterMakers.push(() => makeCharacter(
  48603. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48604. {
  48605. front: {
  48606. height: math.unit(10 + 6/12, "feet"),
  48607. weight: math.unit(1.3, "tons"),
  48608. name: "Front",
  48609. image: {
  48610. source: "./media/characters/mr-graves/front.svg",
  48611. extra: 1779/1695,
  48612. bottom: 198/1977
  48613. }
  48614. },
  48615. },
  48616. [
  48617. {
  48618. name: "Normal",
  48619. height: math.unit(10 + 6 /12, "feet"),
  48620. default: true
  48621. },
  48622. ]
  48623. ))
  48624. characterMakers.push(() => makeCharacter(
  48625. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48626. {
  48627. dressedFront: {
  48628. height: math.unit(5 + 8/12, "feet"),
  48629. weight: math.unit(125, "lb"),
  48630. name: "Dressed (Front)",
  48631. image: {
  48632. source: "./media/characters/jess/dressed-front.svg",
  48633. extra: 1176/1152,
  48634. bottom: 42/1218
  48635. }
  48636. },
  48637. dressedSide: {
  48638. height: math.unit(5 + 8/12, "feet"),
  48639. weight: math.unit(125, "lb"),
  48640. name: "Dressed (Side)",
  48641. image: {
  48642. source: "./media/characters/jess/dressed-side.svg",
  48643. extra: 1204/1190,
  48644. bottom: 6/1210
  48645. }
  48646. },
  48647. nudeFront: {
  48648. height: math.unit(5 + 8/12, "feet"),
  48649. weight: math.unit(125, "lb"),
  48650. name: "Nude (Front)",
  48651. image: {
  48652. source: "./media/characters/jess/nude-front.svg",
  48653. extra: 1176/1152,
  48654. bottom: 42/1218
  48655. }
  48656. },
  48657. nudeSide: {
  48658. height: math.unit(5 + 8/12, "feet"),
  48659. weight: math.unit(125, "lb"),
  48660. name: "Nude (Side)",
  48661. image: {
  48662. source: "./media/characters/jess/nude-side.svg",
  48663. extra: 1204/1190,
  48664. bottom: 6/1210
  48665. }
  48666. },
  48667. organsFront: {
  48668. height: math.unit(2.83799342105, "feet"),
  48669. name: "Organs (Front)",
  48670. image: {
  48671. source: "./media/characters/jess/organs-front.svg"
  48672. }
  48673. },
  48674. organsSide: {
  48675. height: math.unit(2.64225290474, "feet"),
  48676. name: "Organs (Side)",
  48677. image: {
  48678. source: "./media/characters/jess/organs-side.svg"
  48679. }
  48680. },
  48681. digestiveTractFront: {
  48682. height: math.unit(2.8106580871, "feet"),
  48683. name: "Digestive Tract (Front)",
  48684. image: {
  48685. source: "./media/characters/jess/digestive-tract-front.svg"
  48686. }
  48687. },
  48688. digestiveTractSide: {
  48689. height: math.unit(2.54365045014, "feet"),
  48690. name: "Digestive Tract (Side)",
  48691. image: {
  48692. source: "./media/characters/jess/digestive-tract-side.svg"
  48693. }
  48694. },
  48695. respiratorySystemFront: {
  48696. height: math.unit(1.11196233456, "feet"),
  48697. name: "Respiratory System (Front)",
  48698. image: {
  48699. source: "./media/characters/jess/respiratory-system-front.svg"
  48700. }
  48701. },
  48702. respiratorySystemSide: {
  48703. height: math.unit(0.89327966297, "feet"),
  48704. name: "Respiratory System (Side)",
  48705. image: {
  48706. source: "./media/characters/jess/respiratory-system-side.svg"
  48707. }
  48708. },
  48709. urinaryTractFront: {
  48710. height: math.unit(1.16126356186, "feet"),
  48711. name: "Urinary Tract (Front)",
  48712. image: {
  48713. source: "./media/characters/jess/urinary-tract-front.svg"
  48714. }
  48715. },
  48716. urinaryTractSide: {
  48717. height: math.unit(1.20910039627, "feet"),
  48718. name: "Urinary Tract (Side)",
  48719. image: {
  48720. source: "./media/characters/jess/urinary-tract-side.svg"
  48721. }
  48722. },
  48723. reproductiveOrgansFront: {
  48724. height: math.unit(0.48422591566, "feet"),
  48725. name: "Reproductive Organs (Front)",
  48726. image: {
  48727. source: "./media/characters/jess/reproductive-organs-front.svg"
  48728. }
  48729. },
  48730. reproductiveOrgansSide: {
  48731. height: math.unit(0.61553314481, "feet"),
  48732. name: "Reproductive Organs (Side)",
  48733. image: {
  48734. source: "./media/characters/jess/reproductive-organs-side.svg"
  48735. }
  48736. },
  48737. breastsFront: {
  48738. height: math.unit(0.47690395121, "feet"),
  48739. name: "Breasts (Front)",
  48740. image: {
  48741. source: "./media/characters/jess/breasts-front.svg"
  48742. }
  48743. },
  48744. breastsSide: {
  48745. height: math.unit(0.30556998307, "feet"),
  48746. name: "Breasts (Side)",
  48747. image: {
  48748. source: "./media/characters/jess/breasts-side.svg"
  48749. }
  48750. },
  48751. heartFront: {
  48752. height: math.unit(0.53011022622, "feet"),
  48753. name: "Heart (Front)",
  48754. image: {
  48755. source: "./media/characters/jess/heart-front.svg"
  48756. }
  48757. },
  48758. heartSide: {
  48759. height: math.unit(0.51790695213, "feet"),
  48760. name: "Heart (Side)",
  48761. image: {
  48762. source: "./media/characters/jess/heart-side.svg"
  48763. }
  48764. },
  48765. earsAndNoseFront: {
  48766. height: math.unit(0.29385483995, "feet"),
  48767. name: "Ears and Nose (Front)",
  48768. image: {
  48769. source: "./media/characters/jess/ears-and-nose-front.svg"
  48770. }
  48771. },
  48772. earsAndNoseSide: {
  48773. height: math.unit(0.18109658741, "feet"),
  48774. name: "Ears and Nose (Side)",
  48775. image: {
  48776. source: "./media/characters/jess/ears-and-nose-side.svg"
  48777. }
  48778. },
  48779. },
  48780. [
  48781. {
  48782. name: "Normal",
  48783. height: math.unit(5 + 8/12, "feet"),
  48784. default: true
  48785. },
  48786. ]
  48787. ))
  48788. characterMakers.push(() => makeCharacter(
  48789. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  48790. {
  48791. front: {
  48792. height: math.unit(6, "feet"),
  48793. weight: math.unit(6.64467e-7, "grams"),
  48794. name: "Front",
  48795. image: {
  48796. source: "./media/characters/wimpering/front.svg",
  48797. extra: 597/587,
  48798. bottom: 34/631
  48799. }
  48800. },
  48801. },
  48802. [
  48803. {
  48804. name: "Micro",
  48805. height: math.unit(0.4, "mm"),
  48806. default: true
  48807. },
  48808. ]
  48809. ))
  48810. characterMakers.push(() => makeCharacter(
  48811. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  48812. {
  48813. front: {
  48814. height: math.unit(5 + 2/12, "feet"),
  48815. weight: math.unit(110, "lb"),
  48816. name: "Front",
  48817. image: {
  48818. source: "./media/characters/keltre/front.svg",
  48819. extra: 1099/1057,
  48820. bottom: 22/1121
  48821. }
  48822. },
  48823. back: {
  48824. height: math.unit(5 + 2/12, "feet"),
  48825. weight: math.unit(110, "lb"),
  48826. name: "Back",
  48827. image: {
  48828. source: "./media/characters/keltre/back.svg",
  48829. extra: 1095/1053,
  48830. bottom: 17/1112
  48831. }
  48832. },
  48833. dressed: {
  48834. height: math.unit(5 + 2/12, "feet"),
  48835. weight: math.unit(110, "lb"),
  48836. name: "Dressed",
  48837. image: {
  48838. source: "./media/characters/keltre/dressed.svg",
  48839. extra: 1099/1057,
  48840. bottom: 22/1121
  48841. }
  48842. },
  48843. winter: {
  48844. height: math.unit(5 + 2/12, "feet"),
  48845. weight: math.unit(110, "lb"),
  48846. name: "Winter",
  48847. image: {
  48848. source: "./media/characters/keltre/winter.svg",
  48849. extra: 1099/1057,
  48850. bottom: 22/1121
  48851. }
  48852. },
  48853. head: {
  48854. height: math.unit(1.61 * 0.86, "feet"),
  48855. name: "Head",
  48856. image: {
  48857. source: "./media/characters/keltre/head.svg",
  48858. extra: 534/421,
  48859. bottom: 0/534
  48860. }
  48861. },
  48862. hand: {
  48863. height: math.unit(1.3 * 0.86, "feet"),
  48864. name: "Hand",
  48865. image: {
  48866. source: "./media/characters/keltre/hand.svg"
  48867. }
  48868. },
  48869. foot: {
  48870. height: math.unit(1.8 * 0.86, "feet"),
  48871. name: "Foot",
  48872. image: {
  48873. source: "./media/characters/keltre/foot.svg"
  48874. }
  48875. },
  48876. },
  48877. [
  48878. {
  48879. name: "Fine",
  48880. height: math.unit(1, "inch")
  48881. },
  48882. {
  48883. name: "Dimnutive",
  48884. height: math.unit(4, "inches")
  48885. },
  48886. {
  48887. name: "Tiny",
  48888. height: math.unit(1, "foot")
  48889. },
  48890. {
  48891. name: "Small",
  48892. height: math.unit(3, "feet")
  48893. },
  48894. {
  48895. name: "Normal",
  48896. height: math.unit(5 + 2/12, "feet"),
  48897. default: true
  48898. },
  48899. ]
  48900. ))
  48901. characterMakers.push(() => makeCharacter(
  48902. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  48903. {
  48904. front: {
  48905. height: math.unit(6 + 2/12, "feet"),
  48906. name: "Front",
  48907. image: {
  48908. source: "./media/characters/nox/front.svg",
  48909. extra: 1917/1830,
  48910. bottom: 74/1991
  48911. }
  48912. },
  48913. back: {
  48914. height: math.unit(6 + 2/12, "feet"),
  48915. name: "Back",
  48916. image: {
  48917. source: "./media/characters/nox/back.svg",
  48918. extra: 1896/1815,
  48919. bottom: 21/1917
  48920. }
  48921. },
  48922. head: {
  48923. height: math.unit(1.1, "feet"),
  48924. name: "Head",
  48925. image: {
  48926. source: "./media/characters/nox/head.svg",
  48927. extra: 874/704,
  48928. bottom: 0/874
  48929. }
  48930. },
  48931. tattoo: {
  48932. height: math.unit(0.729, "feet"),
  48933. name: "Tattoo",
  48934. image: {
  48935. source: "./media/characters/nox/tattoo.svg"
  48936. }
  48937. },
  48938. },
  48939. [
  48940. {
  48941. name: "Normal",
  48942. height: math.unit(6 + 2/12, "feet")
  48943. },
  48944. {
  48945. name: "Gigamacro",
  48946. height: math.unit(2, "earths"),
  48947. default: true
  48948. },
  48949. {
  48950. name: "Cosmic",
  48951. height: math.unit(867, "yottameters")
  48952. },
  48953. ]
  48954. ))
  48955. characterMakers.push(() => makeCharacter(
  48956. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  48957. {
  48958. front: {
  48959. height: math.unit(6, "feet"),
  48960. weight: math.unit(150, "lb"),
  48961. name: "Front",
  48962. image: {
  48963. source: "./media/characters/caspian/front.svg",
  48964. extra: 1443/1359,
  48965. bottom: 0/1443
  48966. }
  48967. },
  48968. back: {
  48969. height: math.unit(6, "feet"),
  48970. weight: math.unit(150, "lb"),
  48971. name: "Back",
  48972. image: {
  48973. source: "./media/characters/caspian/back.svg",
  48974. extra: 1379/1309,
  48975. bottom: 0/1379
  48976. }
  48977. },
  48978. head: {
  48979. height: math.unit(0.9, "feet"),
  48980. name: "Head",
  48981. image: {
  48982. source: "./media/characters/caspian/head.svg",
  48983. extra: 692/492,
  48984. bottom: 0/692
  48985. }
  48986. },
  48987. headAlt: {
  48988. height: math.unit(0.95, "feet"),
  48989. name: "Head (Alt)",
  48990. image: {
  48991. source: "./media/characters/caspian/head-alt.svg",
  48992. extra: 668/508,
  48993. bottom: 0/668
  48994. }
  48995. },
  48996. hand: {
  48997. height: math.unit(0.8, "feet"),
  48998. name: "Hand",
  48999. image: {
  49000. source: "./media/characters/caspian/hand.svg"
  49001. }
  49002. },
  49003. paw: {
  49004. height: math.unit(0.95, "feet"),
  49005. name: "Paw",
  49006. image: {
  49007. source: "./media/characters/caspian/paw.svg"
  49008. }
  49009. },
  49010. },
  49011. [
  49012. {
  49013. name: "Normal",
  49014. height: math.unit(162, "feet"),
  49015. default: true
  49016. },
  49017. ]
  49018. ))
  49019. characterMakers.push(() => makeCharacter(
  49020. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49021. {
  49022. front: {
  49023. height: math.unit(6, "feet"),
  49024. name: "Front",
  49025. image: {
  49026. source: "./media/characters/myra-aisling/front.svg",
  49027. extra: 1268/1166,
  49028. bottom: 73/1341
  49029. }
  49030. },
  49031. back: {
  49032. height: math.unit(6, "feet"),
  49033. name: "Back",
  49034. image: {
  49035. source: "./media/characters/myra-aisling/back.svg",
  49036. extra: 1249/1149,
  49037. bottom: 79/1328
  49038. }
  49039. },
  49040. dressed: {
  49041. height: math.unit(6, "feet"),
  49042. name: "Dressed",
  49043. image: {
  49044. source: "./media/characters/myra-aisling/dressed.svg",
  49045. extra: 1290/1189,
  49046. bottom: 47/1337
  49047. }
  49048. },
  49049. hand: {
  49050. height: math.unit(1.1, "feet"),
  49051. name: "Hand",
  49052. image: {
  49053. source: "./media/characters/myra-aisling/hand.svg"
  49054. }
  49055. },
  49056. paw: {
  49057. height: math.unit(1.23, "feet"),
  49058. name: "Paw",
  49059. image: {
  49060. source: "./media/characters/myra-aisling/paw.svg"
  49061. }
  49062. },
  49063. },
  49064. [
  49065. {
  49066. name: "Normal",
  49067. height: math.unit(160, "feet"),
  49068. default: true
  49069. },
  49070. ]
  49071. ))
  49072. characterMakers.push(() => makeCharacter(
  49073. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49074. {
  49075. front: {
  49076. height: math.unit(6, "feet"),
  49077. name: "Front",
  49078. image: {
  49079. source: "./media/characters/tenley-sidero/front.svg",
  49080. extra: 1365/1276,
  49081. bottom: 47/1412
  49082. }
  49083. },
  49084. back: {
  49085. height: math.unit(6, "feet"),
  49086. name: "Back",
  49087. image: {
  49088. source: "./media/characters/tenley-sidero/back.svg",
  49089. extra: 1383/1283,
  49090. bottom: 35/1418
  49091. }
  49092. },
  49093. dressed: {
  49094. height: math.unit(6, "feet"),
  49095. name: "Dressed",
  49096. image: {
  49097. source: "./media/characters/tenley-sidero/dressed.svg",
  49098. extra: 1364/1275,
  49099. bottom: 42/1406
  49100. }
  49101. },
  49102. head: {
  49103. height: math.unit(1.47, "feet"),
  49104. name: "Head",
  49105. image: {
  49106. source: "./media/characters/tenley-sidero/head.svg",
  49107. extra: 610/490,
  49108. bottom: 0/610
  49109. }
  49110. },
  49111. },
  49112. [
  49113. {
  49114. name: "Normal",
  49115. height: math.unit(154, "feet"),
  49116. default: true
  49117. },
  49118. ]
  49119. ))
  49120. characterMakers.push(() => makeCharacter(
  49121. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49122. {
  49123. front: {
  49124. height: math.unit(5, "inches"),
  49125. name: "Front",
  49126. image: {
  49127. source: "./media/characters/mallory/front.svg",
  49128. extra: 1919/1678,
  49129. bottom: 29/1948
  49130. }
  49131. },
  49132. hand: {
  49133. height: math.unit(0.73, "inches"),
  49134. name: "Hand",
  49135. image: {
  49136. source: "./media/characters/mallory/hand.svg"
  49137. }
  49138. },
  49139. paw: {
  49140. height: math.unit(0.68, "inches"),
  49141. name: "Paw",
  49142. image: {
  49143. source: "./media/characters/mallory/paw.svg"
  49144. }
  49145. },
  49146. },
  49147. [
  49148. {
  49149. name: "Small",
  49150. height: math.unit(5, "inches"),
  49151. default: true
  49152. },
  49153. ]
  49154. ))
  49155. characterMakers.push(() => makeCharacter(
  49156. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49157. {
  49158. naked: {
  49159. height: math.unit(6, "feet"),
  49160. name: "Naked",
  49161. image: {
  49162. source: "./media/characters/mab/naked.svg",
  49163. extra: 1855/1757,
  49164. bottom: 208/2063
  49165. }
  49166. },
  49167. outside: {
  49168. height: math.unit(6, "feet"),
  49169. name: "Outside",
  49170. image: {
  49171. source: "./media/characters/mab/outside.svg",
  49172. extra: 1855/1757,
  49173. bottom: 208/2063
  49174. }
  49175. },
  49176. party: {
  49177. height: math.unit(6, "feet"),
  49178. name: "Party",
  49179. image: {
  49180. source: "./media/characters/mab/party.svg",
  49181. extra: 1855/1757,
  49182. bottom: 208/2063
  49183. }
  49184. },
  49185. },
  49186. [
  49187. {
  49188. name: "Normal",
  49189. height: math.unit(165, "feet"),
  49190. default: true
  49191. },
  49192. ]
  49193. ))
  49194. characterMakers.push(() => makeCharacter(
  49195. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49196. {
  49197. front: {
  49198. height: math.unit(12, "feet"),
  49199. weight: math.unit(4000, "lb"),
  49200. name: "Front",
  49201. image: {
  49202. source: "./media/characters/winter/front.svg",
  49203. extra: 1286/943,
  49204. bottom: 112/1398
  49205. }
  49206. },
  49207. frontNsfw: {
  49208. height: math.unit(12, "feet"),
  49209. weight: math.unit(4000, "lb"),
  49210. name: "Front (NSFW)",
  49211. image: {
  49212. source: "./media/characters/winter/front-nsfw.svg",
  49213. extra: 1286/943,
  49214. bottom: 112/1398
  49215. }
  49216. },
  49217. dick: {
  49218. height: math.unit(3.79, "feet"),
  49219. name: "Dick",
  49220. image: {
  49221. source: "./media/characters/winter/dick.svg"
  49222. }
  49223. },
  49224. },
  49225. [
  49226. {
  49227. name: "Big",
  49228. height: math.unit(12, "feet"),
  49229. default: true
  49230. },
  49231. ]
  49232. ))
  49233. characterMakers.push(() => makeCharacter(
  49234. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49235. {
  49236. front: {
  49237. height: math.unit(4.1, "inches"),
  49238. name: "Front",
  49239. image: {
  49240. source: "./media/characters/alto/front.svg",
  49241. extra: 736/627,
  49242. bottom: 90/826
  49243. }
  49244. },
  49245. },
  49246. [
  49247. {
  49248. name: "Normal",
  49249. height: math.unit(4.1, "inches"),
  49250. default: true
  49251. },
  49252. ]
  49253. ))
  49254. characterMakers.push(() => makeCharacter(
  49255. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49256. {
  49257. sitting: {
  49258. height: math.unit(3, "feet"),
  49259. name: "Sitting",
  49260. image: {
  49261. source: "./media/characters/ratstrid-v/sitting.svg",
  49262. extra: 355/310,
  49263. bottom: 136/491
  49264. }
  49265. },
  49266. },
  49267. [
  49268. {
  49269. name: "Normal",
  49270. height: math.unit(3, "feet"),
  49271. default: true
  49272. },
  49273. ]
  49274. ))
  49275. characterMakers.push(() => makeCharacter(
  49276. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49277. {
  49278. back: {
  49279. height: math.unit(6, "feet"),
  49280. weight: math.unit(350, "lb"),
  49281. name: "Back",
  49282. image: {
  49283. source: "./media/characters/siz/back.svg",
  49284. extra: 1449/1274,
  49285. bottom: 13/1462
  49286. }
  49287. },
  49288. },
  49289. [
  49290. {
  49291. name: "Over-Overcompressed",
  49292. height: math.unit(8, "feet")
  49293. },
  49294. {
  49295. name: "Overcompressed",
  49296. height: math.unit(32, "feet")
  49297. },
  49298. {
  49299. name: "Compressed",
  49300. height: math.unit(128, "feet"),
  49301. default: true
  49302. },
  49303. {
  49304. name: "Half-Compressed",
  49305. height: math.unit(512, "feet")
  49306. },
  49307. {
  49308. name: "Quarter-Compressed",
  49309. height: math.unit(2048, "feet")
  49310. },
  49311. {
  49312. name: "Uncompressed?",
  49313. height: math.unit(8192, "feet")
  49314. },
  49315. ]
  49316. ))
  49317. characterMakers.push(() => makeCharacter(
  49318. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49319. {
  49320. front: {
  49321. height: math.unit(5 + 9/12, "feet"),
  49322. weight: math.unit(150, "lb"),
  49323. name: "Front",
  49324. image: {
  49325. source: "./media/characters/ven/front.svg",
  49326. extra: 1372/1320,
  49327. bottom: 73/1445
  49328. }
  49329. },
  49330. side: {
  49331. height: math.unit(5 + 9/12, "feet"),
  49332. weight: math.unit(1150, "lb"),
  49333. name: "Side",
  49334. image: {
  49335. source: "./media/characters/ven/side.svg",
  49336. extra: 1119/1070,
  49337. bottom: 42/1161
  49338. },
  49339. default: true
  49340. },
  49341. },
  49342. [
  49343. {
  49344. name: "Normal",
  49345. height: math.unit(5 + 9/12, "feet"),
  49346. default: true
  49347. },
  49348. ]
  49349. ))
  49350. characterMakers.push(() => makeCharacter(
  49351. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49352. {
  49353. front: {
  49354. height: math.unit(12, "feet"),
  49355. weight: math.unit(1000, "kg"),
  49356. name: "Front",
  49357. image: {
  49358. source: "./media/characters/maple/front.svg",
  49359. extra: 1193/1081,
  49360. bottom: 22/1215
  49361. }
  49362. },
  49363. },
  49364. [
  49365. {
  49366. name: "Compressed",
  49367. height: math.unit(7, "feet")
  49368. },
  49369. {
  49370. name: "Normal",
  49371. height: math.unit(12, "feet"),
  49372. default: true
  49373. },
  49374. ]
  49375. ))
  49376. characterMakers.push(() => makeCharacter(
  49377. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49378. {
  49379. front: {
  49380. height: math.unit(9, "feet"),
  49381. weight: math.unit(1500, "lb"),
  49382. name: "Front",
  49383. image: {
  49384. source: "./media/characters/nora/front.svg",
  49385. extra: 1348/1286,
  49386. bottom: 218/1566
  49387. }
  49388. },
  49389. erect: {
  49390. height: math.unit(9, "feet"),
  49391. weight: math.unit(11500, "lb"),
  49392. name: "Erect",
  49393. image: {
  49394. source: "./media/characters/nora/erect.svg",
  49395. extra: 1488/1433,
  49396. bottom: 133/1621
  49397. }
  49398. },
  49399. },
  49400. [
  49401. {
  49402. name: "Normal",
  49403. height: math.unit(9, "feet"),
  49404. default: true
  49405. },
  49406. ]
  49407. ))
  49408. characterMakers.push(() => makeCharacter(
  49409. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49410. {
  49411. front: {
  49412. height: math.unit(25, "feet"),
  49413. weight: math.unit(27500, "lb"),
  49414. name: "Front",
  49415. image: {
  49416. source: "./media/characters/north-caudin/front.svg",
  49417. extra: 1184/1082,
  49418. bottom: 23/1207
  49419. }
  49420. },
  49421. },
  49422. [
  49423. {
  49424. name: "Compressed",
  49425. height: math.unit(10, "feet")
  49426. },
  49427. {
  49428. name: "Normal",
  49429. height: math.unit(25, "feet"),
  49430. default: true
  49431. },
  49432. ]
  49433. ))
  49434. characterMakers.push(() => makeCharacter(
  49435. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49436. {
  49437. front: {
  49438. height: math.unit(9, "feet"),
  49439. weight: math.unit(1250, "lb"),
  49440. name: "Front",
  49441. image: {
  49442. source: "./media/characters/merrian/front.svg",
  49443. extra: 2393/2304,
  49444. bottom: 40/2433
  49445. }
  49446. },
  49447. },
  49448. [
  49449. {
  49450. name: "Normal",
  49451. height: math.unit(9, "feet"),
  49452. default: true
  49453. },
  49454. ]
  49455. ))
  49456. characterMakers.push(() => makeCharacter(
  49457. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49458. {
  49459. front: {
  49460. height: math.unit(9, "feet"),
  49461. weight: math.unit(1000, "lb"),
  49462. name: "Front",
  49463. image: {
  49464. source: "./media/characters/hazel/front.svg",
  49465. extra: 2351/2298,
  49466. bottom: 38/2389
  49467. }
  49468. },
  49469. },
  49470. [
  49471. {
  49472. name: "Normal",
  49473. height: math.unit(9, "feet"),
  49474. default: true
  49475. },
  49476. ]
  49477. ))
  49478. characterMakers.push(() => makeCharacter(
  49479. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49480. {
  49481. front: {
  49482. height: math.unit(13, "feet"),
  49483. weight: math.unit(3200, "lb"),
  49484. name: "Front",
  49485. image: {
  49486. source: "./media/characters/emma/front.svg",
  49487. extra: 2263/2029,
  49488. bottom: 68/2331
  49489. }
  49490. },
  49491. },
  49492. [
  49493. {
  49494. name: "Normal",
  49495. height: math.unit(13, "feet"),
  49496. default: true
  49497. },
  49498. ]
  49499. ))
  49500. characterMakers.push(() => makeCharacter(
  49501. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  49502. {
  49503. front: {
  49504. height: math.unit(11 + 9/12, "feet"),
  49505. weight: math.unit(2500, "lb"),
  49506. name: "Front",
  49507. image: {
  49508. source: "./media/characters/ilumina/front.svg",
  49509. extra: 2248/2209,
  49510. bottom: 164/2412
  49511. }
  49512. },
  49513. },
  49514. [
  49515. {
  49516. name: "Normal",
  49517. height: math.unit(11 + 9/12, "feet"),
  49518. default: true
  49519. },
  49520. ]
  49521. ))
  49522. characterMakers.push(() => makeCharacter(
  49523. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  49524. {
  49525. front: {
  49526. height: math.unit(8 + 10/12, "feet"),
  49527. weight: math.unit(1350, "lb"),
  49528. name: "Front",
  49529. image: {
  49530. source: "./media/characters/moonshine/front.svg",
  49531. extra: 2395/2288,
  49532. bottom: 40/2435
  49533. }
  49534. },
  49535. },
  49536. [
  49537. {
  49538. name: "Normal",
  49539. height: math.unit(8 + 10/12, "feet"),
  49540. default: true
  49541. },
  49542. ]
  49543. ))
  49544. characterMakers.push(() => makeCharacter(
  49545. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  49546. {
  49547. front: {
  49548. height: math.unit(14, "feet"),
  49549. weight: math.unit(3400, "lb"),
  49550. name: "Front",
  49551. image: {
  49552. source: "./media/characters/aletia/front.svg",
  49553. extra: 1185/1052,
  49554. bottom: 21/1206
  49555. }
  49556. },
  49557. },
  49558. [
  49559. {
  49560. name: "Compressed",
  49561. height: math.unit(8, "feet")
  49562. },
  49563. {
  49564. name: "Normal",
  49565. height: math.unit(14, "feet"),
  49566. default: true
  49567. },
  49568. ]
  49569. ))
  49570. characterMakers.push(() => makeCharacter(
  49571. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  49572. {
  49573. front: {
  49574. height: math.unit(17, "feet"),
  49575. weight: math.unit(6500, "lb"),
  49576. name: "Front",
  49577. image: {
  49578. source: "./media/characters/deidra/front.svg",
  49579. extra: 1201/1081,
  49580. bottom: 16/1217
  49581. }
  49582. },
  49583. },
  49584. [
  49585. {
  49586. name: "Compressed",
  49587. height: math.unit(9 + 6/12, "feet")
  49588. },
  49589. {
  49590. name: "Normal",
  49591. height: math.unit(17, "feet"),
  49592. default: true
  49593. },
  49594. ]
  49595. ))
  49596. characterMakers.push(() => makeCharacter(
  49597. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  49598. {
  49599. front: {
  49600. height: math.unit(7 + 4/12, "feet"),
  49601. weight: math.unit(280, "lb"),
  49602. name: "Front",
  49603. image: {
  49604. source: "./media/characters/freki-yrmori/front.svg",
  49605. extra: 1286/1182,
  49606. bottom: 29/1315
  49607. }
  49608. },
  49609. maw: {
  49610. height: math.unit(0.9, "feet"),
  49611. name: "Maw",
  49612. image: {
  49613. source: "./media/characters/freki-yrmori/maw.svg"
  49614. }
  49615. },
  49616. },
  49617. [
  49618. {
  49619. name: "Normal",
  49620. height: math.unit(7 + 4/12, "feet"),
  49621. default: true
  49622. },
  49623. {
  49624. name: "Macro",
  49625. height: math.unit(38.5, "meters")
  49626. },
  49627. ]
  49628. ))
  49629. characterMakers.push(() => makeCharacter(
  49630. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  49631. {
  49632. side: {
  49633. height: math.unit(47.2, "meters"),
  49634. weight: math.unit(10000, "tons"),
  49635. name: "Side",
  49636. image: {
  49637. source: "./media/characters/aetherios/side.svg",
  49638. extra: 2363/642,
  49639. bottom: 221/2584
  49640. }
  49641. },
  49642. top: {
  49643. height: math.unit(240, "meters"),
  49644. weight: math.unit(10000, "tons"),
  49645. name: "Top",
  49646. image: {
  49647. source: "./media/characters/aetherios/top.svg"
  49648. }
  49649. },
  49650. bottom: {
  49651. height: math.unit(240, "meters"),
  49652. weight: math.unit(10000, "tons"),
  49653. name: "Bottom",
  49654. image: {
  49655. source: "./media/characters/aetherios/bottom.svg"
  49656. }
  49657. },
  49658. head: {
  49659. height: math.unit(38.6, "meters"),
  49660. name: "Head",
  49661. image: {
  49662. source: "./media/characters/aetherios/head.svg",
  49663. extra: 1335/1112,
  49664. bottom: 0/1335
  49665. }
  49666. },
  49667. front: {
  49668. height: math.unit(29, "meters"),
  49669. name: "Front",
  49670. image: {
  49671. source: "./media/characters/aetherios/front.svg",
  49672. extra: 1266/953,
  49673. bottom: 158/1424
  49674. }
  49675. },
  49676. maw: {
  49677. height: math.unit(16.37, "meters"),
  49678. name: "Maw",
  49679. image: {
  49680. source: "./media/characters/aetherios/maw.svg",
  49681. extra: 748/637,
  49682. bottom: 0/748
  49683. },
  49684. extraAttributes: {
  49685. preyCapacity: {
  49686. name: "Capacity",
  49687. power: 3,
  49688. type: "volume",
  49689. base: math.unit(1000, "people")
  49690. },
  49691. tongueSize: {
  49692. name: "Tongue Size",
  49693. power: 2,
  49694. type: "area",
  49695. base: math.unit(21, "m^2")
  49696. }
  49697. }
  49698. },
  49699. forepaw: {
  49700. height: math.unit(18, "meters"),
  49701. name: "Forepaw",
  49702. image: {
  49703. source: "./media/characters/aetherios/forepaw.svg"
  49704. }
  49705. },
  49706. hindpaw: {
  49707. height: math.unit(23, "meters"),
  49708. name: "Hindpaw",
  49709. image: {
  49710. source: "./media/characters/aetherios/hindpaw.svg"
  49711. }
  49712. },
  49713. genitals: {
  49714. height: math.unit(42, "meters"),
  49715. name: "Genitals",
  49716. image: {
  49717. source: "./media/characters/aetherios/genitals.svg"
  49718. }
  49719. },
  49720. },
  49721. [
  49722. {
  49723. name: "Normal",
  49724. height: math.unit(47.2, "meters"),
  49725. default: true
  49726. },
  49727. {
  49728. name: "Macro",
  49729. height: math.unit(160, "meters")
  49730. },
  49731. {
  49732. name: "Mega",
  49733. height: math.unit(1.87, "km")
  49734. },
  49735. {
  49736. name: "Giga",
  49737. height: math.unit(40000, "km")
  49738. },
  49739. {
  49740. name: "Stellar",
  49741. height: math.unit(158000000, "km")
  49742. },
  49743. {
  49744. name: "Cosmic",
  49745. height: math.unit(9.46e12, "km")
  49746. },
  49747. ]
  49748. ))
  49749. characterMakers.push(() => makeCharacter(
  49750. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  49751. {
  49752. front: {
  49753. height: math.unit(5 + 4/12, "feet"),
  49754. weight: math.unit(80, "lb"),
  49755. name: "Front",
  49756. image: {
  49757. source: "./media/characters/mizu-gieeg/front.svg",
  49758. extra: 850/709,
  49759. bottom: 52/902
  49760. }
  49761. },
  49762. back: {
  49763. height: math.unit(5 + 4/12, "feet"),
  49764. weight: math.unit(80, "lb"),
  49765. name: "Back",
  49766. image: {
  49767. source: "./media/characters/mizu-gieeg/back.svg",
  49768. extra: 882/745,
  49769. bottom: 25/907
  49770. }
  49771. },
  49772. },
  49773. [
  49774. {
  49775. name: "Normal",
  49776. height: math.unit(5 + 4/12, "feet"),
  49777. default: true
  49778. },
  49779. ]
  49780. ))
  49781. characterMakers.push(() => makeCharacter(
  49782. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  49783. {
  49784. front: {
  49785. height: math.unit(6, "feet"),
  49786. name: "Front",
  49787. image: {
  49788. source: "./media/characters/roselle-st-papier/front.svg",
  49789. extra: 1430/1280,
  49790. bottom: 37/1467
  49791. }
  49792. },
  49793. back: {
  49794. height: math.unit(6, "feet"),
  49795. name: "Back",
  49796. image: {
  49797. source: "./media/characters/roselle-st-papier/back.svg",
  49798. extra: 1491/1296,
  49799. bottom: 23/1514
  49800. }
  49801. },
  49802. ear: {
  49803. height: math.unit(1.26, "feet"),
  49804. name: "Ear",
  49805. image: {
  49806. source: "./media/characters/roselle-st-papier/ear.svg"
  49807. }
  49808. },
  49809. },
  49810. [
  49811. {
  49812. name: "Normal",
  49813. height: math.unit(150, "feet"),
  49814. default: true
  49815. },
  49816. ]
  49817. ))
  49818. characterMakers.push(() => makeCharacter(
  49819. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  49820. {
  49821. front: {
  49822. height: math.unit(1, "inches"),
  49823. name: "Front",
  49824. image: {
  49825. source: "./media/characters/valargent/front.svg",
  49826. extra: 1825/1694,
  49827. bottom: 62/1887
  49828. }
  49829. },
  49830. back: {
  49831. height: math.unit(1, "inches"),
  49832. name: "Back",
  49833. image: {
  49834. source: "./media/characters/valargent/back.svg",
  49835. extra: 1775/1682,
  49836. bottom: 88/1863
  49837. }
  49838. },
  49839. },
  49840. [
  49841. {
  49842. name: "Micro",
  49843. height: math.unit(1, "inch"),
  49844. default: true
  49845. },
  49846. ]
  49847. ))
  49848. characterMakers.push(() => makeCharacter(
  49849. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  49850. {
  49851. front: {
  49852. height: math.unit(3.4, "meters"),
  49853. name: "Front",
  49854. image: {
  49855. source: "./media/characters/zarina/front.svg",
  49856. extra: 1733/1425,
  49857. bottom: 93/1826
  49858. }
  49859. },
  49860. squatting: {
  49861. height: math.unit(2.14, "meters"),
  49862. name: "Squatting",
  49863. image: {
  49864. source: "./media/characters/zarina/squatting.svg",
  49865. extra: 1073/788,
  49866. bottom: 63/1136
  49867. }
  49868. },
  49869. back: {
  49870. height: math.unit(2.14, "meters"),
  49871. name: "Back",
  49872. image: {
  49873. source: "./media/characters/zarina/back.svg",
  49874. extra: 1128/885,
  49875. bottom: 0/1128
  49876. }
  49877. },
  49878. },
  49879. [
  49880. {
  49881. name: "Normal",
  49882. height: math.unit(3.4, "meters"),
  49883. default: true
  49884. },
  49885. {
  49886. name: "Big",
  49887. height: math.unit(5, "meters")
  49888. },
  49889. {
  49890. name: "Macro",
  49891. height: math.unit(110, "meters")
  49892. },
  49893. ]
  49894. ))
  49895. characterMakers.push(() => makeCharacter(
  49896. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  49897. {
  49898. front: {
  49899. height: math.unit(7, "feet"),
  49900. name: "Front",
  49901. image: {
  49902. source: "./media/characters/ventus-astro-fox/front.svg",
  49903. extra: 1792/1623,
  49904. bottom: 28/1820
  49905. }
  49906. },
  49907. back: {
  49908. height: math.unit(7, "feet"),
  49909. name: "Back",
  49910. image: {
  49911. source: "./media/characters/ventus-astro-fox/back.svg",
  49912. extra: 1789/1620,
  49913. bottom: 31/1820
  49914. }
  49915. },
  49916. outfit: {
  49917. height: math.unit(7, "feet"),
  49918. name: "Outfit",
  49919. image: {
  49920. source: "./media/characters/ventus-astro-fox/outfit.svg",
  49921. extra: 1054/925,
  49922. bottom: 15/1069
  49923. }
  49924. },
  49925. head: {
  49926. height: math.unit(1.12, "feet"),
  49927. name: "Head",
  49928. image: {
  49929. source: "./media/characters/ventus-astro-fox/head.svg",
  49930. extra: 866/504,
  49931. bottom: 0/866
  49932. }
  49933. },
  49934. hand: {
  49935. height: math.unit(1, "feet"),
  49936. name: "Hand",
  49937. image: {
  49938. source: "./media/characters/ventus-astro-fox/hand.svg"
  49939. }
  49940. },
  49941. paw: {
  49942. height: math.unit(1.5, "feet"),
  49943. name: "Paw",
  49944. image: {
  49945. source: "./media/characters/ventus-astro-fox/paw.svg"
  49946. }
  49947. },
  49948. },
  49949. [
  49950. {
  49951. name: "Normal",
  49952. height: math.unit(7, "feet"),
  49953. default: true
  49954. },
  49955. {
  49956. name: "Macro",
  49957. height: math.unit(200, "feet")
  49958. },
  49959. {
  49960. name: "Cosmic",
  49961. height: math.unit(3, "universes")
  49962. },
  49963. ]
  49964. ))
  49965. characterMakers.push(() => makeCharacter(
  49966. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  49967. {
  49968. front: {
  49969. height: math.unit(3, "meters"),
  49970. weight: math.unit(7000, "lb"),
  49971. name: "Front",
  49972. image: {
  49973. source: "./media/characters/core-t/front.svg",
  49974. extra: 5729/4941,
  49975. bottom: 1129/6858
  49976. }
  49977. },
  49978. },
  49979. [
  49980. {
  49981. name: "Big",
  49982. height: math.unit(3, "meters"),
  49983. default: true
  49984. },
  49985. ]
  49986. ))
  49987. characterMakers.push(() => makeCharacter(
  49988. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  49989. {
  49990. normal: {
  49991. height: math.unit(6 + 6/12, "feet"),
  49992. weight: math.unit(275, "lb"),
  49993. name: "Front",
  49994. image: {
  49995. source: "./media/characters/cadbunny/normal.svg",
  49996. extra: 1129/947,
  49997. bottom: 93/1222
  49998. },
  49999. default: true,
  50000. form: "normal"
  50001. },
  50002. gigantamax: {
  50003. height: math.unit(26, "feet"),
  50004. weight: math.unit(16000, "lb"),
  50005. name: "Front",
  50006. image: {
  50007. source: "./media/characters/cadbunny/gigantamax.svg",
  50008. extra: 1133/944,
  50009. bottom: 90/1223
  50010. },
  50011. default: true,
  50012. form: "gigantamax"
  50013. },
  50014. },
  50015. [
  50016. {
  50017. name: "Normal",
  50018. height: math.unit(6 + 6/12, "feet"),
  50019. default: true,
  50020. form: "normal"
  50021. },
  50022. {
  50023. name: "Small",
  50024. height: math.unit(26, "feet"),
  50025. default: true,
  50026. form: "gigantamax"
  50027. },
  50028. {
  50029. name: "Large",
  50030. height: math.unit(78, "feet"),
  50031. form: "gigantamax"
  50032. },
  50033. ],
  50034. {
  50035. "normal": {
  50036. name: "Normal",
  50037. default: true
  50038. },
  50039. "gigantamax": {
  50040. name: "Gigantamax"
  50041. }
  50042. }
  50043. ))
  50044. characterMakers.push(() => makeCharacter(
  50045. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50046. {
  50047. anthroFront: {
  50048. height: math.unit(8, "feet"),
  50049. weight: math.unit(300, "lb"),
  50050. name: "Front",
  50051. image: {
  50052. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50053. extra: 1272/1176,
  50054. bottom: 53/1325
  50055. },
  50056. form: "anthro",
  50057. default: true
  50058. },
  50059. feralSide: {
  50060. height: math.unit(4, "feet"),
  50061. weight: math.unit(250, "lb"),
  50062. name: "Side",
  50063. image: {
  50064. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50065. extra: 731/621,
  50066. bottom: 0/731
  50067. },
  50068. form: "feral",
  50069. default: true
  50070. },
  50071. },
  50072. [
  50073. {
  50074. name: "Regular",
  50075. height: math.unit(8, "feet"),
  50076. form: "anthro"
  50077. },
  50078. {
  50079. name: "Macro",
  50080. height: math.unit(250, "feet"),
  50081. form: "anthro",
  50082. default: true
  50083. },
  50084. {
  50085. name: "Regular",
  50086. height: math.unit(4, "feet"),
  50087. form: "feral"
  50088. },
  50089. {
  50090. name: "Macro",
  50091. height: math.unit(125, "feet"),
  50092. form: "feral",
  50093. default: true
  50094. },
  50095. ],
  50096. {
  50097. "anthro": {
  50098. name: "Anthro",
  50099. default: true
  50100. },
  50101. "feral": {
  50102. name: "Feral",
  50103. },
  50104. }
  50105. ))
  50106. characterMakers.push(() => makeCharacter(
  50107. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50108. {
  50109. front: {
  50110. height: math.unit(11 + 10/12, "feet"),
  50111. weight: math.unit(1587, "kg"),
  50112. name: "Front",
  50113. image: {
  50114. source: "./media/characters/maple-javira-dragon/front.svg",
  50115. extra: 1136/744,
  50116. bottom: 73/1209
  50117. }
  50118. },
  50119. side: {
  50120. height: math.unit(11 + 10/12, "feet"),
  50121. weight: math.unit(1587, "kg"),
  50122. name: "Side",
  50123. image: {
  50124. source: "./media/characters/maple-javira-dragon/side.svg",
  50125. extra: 712/505,
  50126. bottom: 17/729
  50127. }
  50128. },
  50129. head: {
  50130. height: math.unit(8.05, "feet"),
  50131. name: "Head",
  50132. image: {
  50133. source: "./media/characters/maple-javira-dragon/head.svg",
  50134. extra: 1420/1344,
  50135. bottom: 0/1420
  50136. }
  50137. },
  50138. },
  50139. [
  50140. {
  50141. name: "Normal",
  50142. height: math.unit(11 + 10/12, "feet"),
  50143. default: true
  50144. },
  50145. ]
  50146. ))
  50147. characterMakers.push(() => makeCharacter(
  50148. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50149. {
  50150. front: {
  50151. height: math.unit(117, "cm"),
  50152. weight: math.unit(50, "kg"),
  50153. name: "Front",
  50154. image: {
  50155. source: "./media/characters/sonia-wyverntail/front.svg",
  50156. extra: 708/592,
  50157. bottom: 25/733
  50158. }
  50159. },
  50160. },
  50161. [
  50162. {
  50163. name: "Normal",
  50164. height: math.unit(117, "cm"),
  50165. default: true
  50166. },
  50167. ]
  50168. ))
  50169. characterMakers.push(() => makeCharacter(
  50170. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50171. {
  50172. front: {
  50173. height: math.unit(6 + 5/12, "feet"),
  50174. name: "Front",
  50175. image: {
  50176. source: "./media/characters/micah/front.svg",
  50177. extra: 1758/1546,
  50178. bottom: 214/1972
  50179. }
  50180. },
  50181. },
  50182. [
  50183. {
  50184. name: "Normal",
  50185. height: math.unit(6 + 5/12, "feet"),
  50186. default: true
  50187. },
  50188. ]
  50189. ))
  50190. characterMakers.push(() => makeCharacter(
  50191. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50192. {
  50193. front: {
  50194. height: math.unit(5 + 10/12, "feet"),
  50195. weight: math.unit(220, "lb"),
  50196. name: "Front",
  50197. image: {
  50198. source: "./media/characters/zarya/front.svg",
  50199. extra: 593/572,
  50200. bottom: 50/643
  50201. }
  50202. },
  50203. back: {
  50204. height: math.unit(5 + 10/12, "feet"),
  50205. weight: math.unit(220, "lb"),
  50206. name: "Back",
  50207. image: {
  50208. source: "./media/characters/zarya/back.svg",
  50209. extra: 603/582,
  50210. bottom: 38/641
  50211. }
  50212. },
  50213. },
  50214. [
  50215. {
  50216. name: "Normal",
  50217. height: math.unit(5 + 10/12, "feet"),
  50218. default: true
  50219. },
  50220. ]
  50221. ))
  50222. characterMakers.push(() => makeCharacter(
  50223. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50224. {
  50225. front: {
  50226. height: math.unit(7.5, "feet"),
  50227. name: "Front",
  50228. image: {
  50229. source: "./media/characters/sven-hatisson/front.svg",
  50230. extra: 917/857,
  50231. bottom: 42/959
  50232. }
  50233. },
  50234. back: {
  50235. height: math.unit(7.5, "feet"),
  50236. name: "Back",
  50237. image: {
  50238. source: "./media/characters/sven-hatisson/back.svg",
  50239. extra: 903/856,
  50240. bottom: 15/918
  50241. }
  50242. },
  50243. },
  50244. [
  50245. {
  50246. name: "Base Height",
  50247. height: math.unit(7.5, "feet")
  50248. },
  50249. {
  50250. name: "Usual Height",
  50251. height: math.unit(13.5, "feet"),
  50252. default: true
  50253. },
  50254. {
  50255. name: "Smaller Macro",
  50256. height: math.unit(85, "feet")
  50257. },
  50258. {
  50259. name: "Moderate Macro",
  50260. height: math.unit(320, "feet")
  50261. },
  50262. {
  50263. name: "Large Macro",
  50264. height: math.unit(1000, "feet")
  50265. },
  50266. {
  50267. name: "Largest Size",
  50268. height: math.unit(2, "miles")
  50269. },
  50270. ]
  50271. ))
  50272. characterMakers.push(() => makeCharacter(
  50273. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50274. {
  50275. side: {
  50276. height: math.unit(1.8, "meters"),
  50277. weight: math.unit(275, "kg"),
  50278. name: "Side",
  50279. image: {
  50280. source: "./media/characters/terra/side.svg",
  50281. extra: 1273/1147,
  50282. bottom: 0/1273
  50283. }
  50284. },
  50285. },
  50286. [
  50287. {
  50288. name: "Normal",
  50289. height: math.unit(16.2, "meters"),
  50290. default: true
  50291. },
  50292. ]
  50293. ))
  50294. characterMakers.push(() => makeCharacter(
  50295. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50296. {
  50297. borzoiFront: {
  50298. height: math.unit(6 + 9/12, "feet"),
  50299. name: "Front",
  50300. image: {
  50301. source: "./media/characters/rae/borzoi-front.svg",
  50302. extra: 1161/1098,
  50303. bottom: 31/1192
  50304. },
  50305. form: "borzoi",
  50306. default: true
  50307. },
  50308. werewolfFront: {
  50309. height: math.unit(8 + 7/12, "feet"),
  50310. name: "Front",
  50311. image: {
  50312. source: "./media/characters/rae/werewolf-front.svg",
  50313. extra: 1411/1334,
  50314. bottom: 127/1538
  50315. },
  50316. form: "werewolf",
  50317. default: true
  50318. },
  50319. },
  50320. [
  50321. {
  50322. name: "Normal",
  50323. height: math.unit(6 + 9/12, "feet"),
  50324. default: true,
  50325. form: "borzoi"
  50326. },
  50327. {
  50328. name: "Normal",
  50329. height: math.unit(8 + 7/12, "feet"),
  50330. default: true,
  50331. form: "werewolf"
  50332. },
  50333. ],
  50334. {
  50335. "borzoi": {
  50336. name: "Borzoi",
  50337. default: true
  50338. },
  50339. "werewolf": {
  50340. name: "Werewolf",
  50341. },
  50342. }
  50343. ))
  50344. characterMakers.push(() => makeCharacter(
  50345. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50346. {
  50347. front: {
  50348. height: math.unit(8 + 7/12, "feet"),
  50349. weight: math.unit(482, "lb"),
  50350. name: "Front",
  50351. image: {
  50352. source: "./media/characters/kit/front.svg",
  50353. extra: 1247/1103,
  50354. bottom: 41/1288
  50355. }
  50356. },
  50357. back: {
  50358. height: math.unit(8 + 7/12, "feet"),
  50359. weight: math.unit(482, "lb"),
  50360. name: "Back",
  50361. image: {
  50362. source: "./media/characters/kit/back.svg",
  50363. extra: 1252/1123,
  50364. bottom: 21/1273
  50365. }
  50366. },
  50367. paw: {
  50368. height: math.unit(1.46, "feet"),
  50369. name: "Paw",
  50370. image: {
  50371. source: "./media/characters/kit/paw.svg"
  50372. }
  50373. },
  50374. },
  50375. [
  50376. {
  50377. name: "Normal",
  50378. height: math.unit(8 + 7/12, "feet"),
  50379. default: true
  50380. },
  50381. {
  50382. name: "Tall",
  50383. height: math.unit(7.8, "meters")
  50384. },
  50385. {
  50386. name: "Very Tall",
  50387. height: math.unit(17.9, "meters")
  50388. },
  50389. {
  50390. name: "Semi-Macro",
  50391. height: math.unit(45.8, "meters")
  50392. },
  50393. {
  50394. name: "Macro",
  50395. height: math.unit(86.1, "meters")
  50396. },
  50397. {
  50398. name: "Godlike",
  50399. height: math.unit(749.9, "meters")
  50400. },
  50401. {
  50402. name: "Second Form",
  50403. height: math.unit(92183.9, "meters")
  50404. },
  50405. {
  50406. name: "Third Form",
  50407. height: math.unit(164665.7, "meters")
  50408. },
  50409. {
  50410. name: "Fourth Form",
  50411. height: math.unit(745112.2, "meters")
  50412. },
  50413. {
  50414. name: "Final Form",
  50415. height: math.unit(9.14e144, "meters")
  50416. },
  50417. ]
  50418. ))
  50419. characterMakers.push(() => makeCharacter(
  50420. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  50421. {
  50422. side: {
  50423. height: math.unit(0.6, "meters"),
  50424. weight: math.unit(24, "kg"),
  50425. name: "Side",
  50426. image: {
  50427. source: "./media/characters/celeste/side.svg",
  50428. extra: 810/517,
  50429. bottom: 53/863
  50430. }
  50431. },
  50432. },
  50433. [
  50434. {
  50435. name: "Velociraptor",
  50436. height: math.unit(0.6, "meters"),
  50437. default: true
  50438. },
  50439. {
  50440. name: "Utahraptor",
  50441. height: math.unit(1.8, "meters")
  50442. },
  50443. {
  50444. name: "Gallimimus",
  50445. height: math.unit(4.0, "meters")
  50446. },
  50447. {
  50448. name: "Large",
  50449. height: math.unit(20, "meters")
  50450. },
  50451. {
  50452. name: "Planetary",
  50453. height: math.unit(50, "megameters")
  50454. },
  50455. {
  50456. name: "Stellar",
  50457. height: math.unit(1.5, "gigameters")
  50458. },
  50459. {
  50460. name: "Galactic",
  50461. height: math.unit(100, "exameters")
  50462. },
  50463. ]
  50464. ))
  50465. characterMakers.push(() => makeCharacter(
  50466. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  50467. {
  50468. front: {
  50469. height: math.unit(6, "feet"),
  50470. weight: math.unit(210, "lb"),
  50471. name: "Front",
  50472. image: {
  50473. source: "./media/characters/glacia/front.svg",
  50474. extra: 958/901,
  50475. bottom: 45/1003
  50476. }
  50477. },
  50478. },
  50479. [
  50480. {
  50481. name: "Macro",
  50482. height: math.unit(1000, "meters"),
  50483. default: true
  50484. },
  50485. ]
  50486. ))
  50487. characterMakers.push(() => makeCharacter(
  50488. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  50489. {
  50490. front: {
  50491. height: math.unit(4, "meters"),
  50492. name: "Front",
  50493. image: {
  50494. source: "./media/characters/giri/front.svg",
  50495. extra: 966/894,
  50496. bottom: 21/987
  50497. }
  50498. },
  50499. },
  50500. [
  50501. {
  50502. name: "Normal",
  50503. height: math.unit(4, "meters"),
  50504. default: true
  50505. },
  50506. ]
  50507. ))
  50508. characterMakers.push(() => makeCharacter(
  50509. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  50510. {
  50511. back: {
  50512. height: math.unit(4, "feet"),
  50513. weight: math.unit(37, "lb"),
  50514. name: "Back",
  50515. image: {
  50516. source: "./media/characters/tin/back.svg",
  50517. extra: 845/780,
  50518. bottom: 28/873
  50519. }
  50520. },
  50521. },
  50522. [
  50523. {
  50524. name: "Normal",
  50525. height: math.unit(4, "feet"),
  50526. default: true
  50527. },
  50528. ]
  50529. ))
  50530. characterMakers.push(() => makeCharacter(
  50531. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  50532. {
  50533. front: {
  50534. height: math.unit(25, "feet"),
  50535. name: "Front",
  50536. image: {
  50537. source: "./media/characters/cadenza-vivace/front.svg",
  50538. extra: 1842/1578,
  50539. bottom: 30/1872
  50540. }
  50541. },
  50542. },
  50543. [
  50544. {
  50545. name: "Macro",
  50546. height: math.unit(25, "feet"),
  50547. default: true
  50548. },
  50549. ]
  50550. ))
  50551. //characters
  50552. function makeCharacters() {
  50553. const results = [];
  50554. characterMakers.forEach(character => {
  50555. results.push(character());
  50556. });
  50557. return results;
  50558. }