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.
 
 
 

53462 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. "corvid"
  158. ]
  159. },
  160. wolf: {
  161. name: "Wolf",
  162. parents: [
  163. "mammal"
  164. ]
  165. },
  166. coyote: {
  167. name: "Coyote",
  168. parents: [
  169. "mammal"
  170. ]
  171. },
  172. raccoon: {
  173. name: "Raccoon",
  174. parents: [
  175. "mammal"
  176. ]
  177. },
  178. weasel: {
  179. name: "Weasel",
  180. parents: [
  181. "mustelid"
  182. ]
  183. },
  184. "red-panda": {
  185. name: "Red Panda",
  186. parents: [
  187. "mammal"
  188. ]
  189. },
  190. dolphin: {
  191. name: "Dolphin",
  192. parents: [
  193. "mammal"
  194. ]
  195. },
  196. "african-wild-dog": {
  197. name: "African Wild Dog",
  198. parents: [
  199. "canine"
  200. ]
  201. },
  202. "hyena": {
  203. name: "Hyena",
  204. parents: [
  205. "feliform"
  206. ]
  207. },
  208. "carbuncle": {
  209. name: "Carbuncle",
  210. parents: [
  211. "animal"
  212. ]
  213. },
  214. bat: {
  215. name: "Bat",
  216. parents: [
  217. "mammal"
  218. ]
  219. },
  220. "leaf-nosed-bat": {
  221. name: "Leaf-Nosed Bat",
  222. parents: [
  223. "bat"
  224. ]
  225. },
  226. "fish": {
  227. name: "Fish",
  228. parents: [
  229. "animal"
  230. ]
  231. },
  232. "ram": {
  233. name: "Ram",
  234. parents: [
  235. "mammal"
  236. ]
  237. },
  238. "demon": {
  239. name: "Demon",
  240. parents: [
  241. "supernatural"
  242. ]
  243. },
  244. "cougar": {
  245. name: "Cougar",
  246. parents: [
  247. "cat"
  248. ]
  249. },
  250. "goat": {
  251. name: "Goat",
  252. parents: [
  253. "mammal"
  254. ]
  255. },
  256. "lion": {
  257. name: "Lion",
  258. parents: [
  259. "cat"
  260. ]
  261. },
  262. "harpy-eager": {
  263. name: "Harpy Eagle",
  264. parents: [
  265. "avian"
  266. ]
  267. },
  268. "deer": {
  269. name: "Deer",
  270. parents: [
  271. "mammal"
  272. ]
  273. },
  274. "phoenix": {
  275. name: "Phoenix",
  276. parents: [
  277. "avian"
  278. ]
  279. },
  280. "aeromorph": {
  281. name: "Aeromorph",
  282. parents: [
  283. "machine"
  284. ]
  285. },
  286. "machine": {
  287. name: "Machine",
  288. },
  289. "android": {
  290. name: "Android",
  291. parents: [
  292. "machine"
  293. ]
  294. },
  295. "jackal": {
  296. name: "Jackal",
  297. parents: [
  298. "canine"
  299. ]
  300. },
  301. "corvid": {
  302. name: "Corvid",
  303. parents: [
  304. "passerine"
  305. ]
  306. },
  307. "pharaoh-hound": {
  308. name: "Pharaoh Hound",
  309. parents: [
  310. "dog"
  311. ]
  312. },
  313. "skunk": {
  314. name: "Skunk",
  315. parents: [
  316. "mammal"
  317. ]
  318. },
  319. "shark": {
  320. name: "Shark",
  321. parents: [
  322. "fish"
  323. ]
  324. },
  325. "black-panther": {
  326. name: "Black Panther",
  327. parents: [
  328. "cat"
  329. ]
  330. },
  331. "umbra": {
  332. name: "Umbra",
  333. parents: [
  334. "animal"
  335. ]
  336. },
  337. "raven": {
  338. name: "Raven",
  339. parents: [
  340. "corvid"
  341. ]
  342. },
  343. "snow-leopard": {
  344. name: "Snow Leopard",
  345. parents: [
  346. "cat"
  347. ]
  348. },
  349. "barbary-lion": {
  350. name: "Barbary Lion",
  351. parents: [
  352. "lion"
  353. ]
  354. },
  355. "dra'gal": {
  356. name: "Dra'Gal",
  357. parents: [
  358. "mammal"
  359. ]
  360. },
  361. "german-shepherd": {
  362. name: "German Shepherd",
  363. parents: [
  364. "dog"
  365. ]
  366. },
  367. "bayleef": {
  368. name: "Bayleef",
  369. parents: [
  370. "pokemon",
  371. "plant",
  372. "animal"
  373. ]
  374. },
  375. "mouse": {
  376. name: "Mouse",
  377. parents: [
  378. "rodent"
  379. ]
  380. },
  381. "rat": {
  382. name: "Rat",
  383. parents: [
  384. "mammal"
  385. ]
  386. },
  387. "hoshiko-beast": {
  388. name: "Hoshiko Beast",
  389. parents: ["animal"]
  390. },
  391. "snow-jugani": {
  392. name: "Snow Jugani",
  393. parents: ["cat"]
  394. },
  395. "patamon": {
  396. name: "Patamon",
  397. parents: ["digimon", "guinea-pig"]
  398. },
  399. "digimon": {
  400. name: "Digimon",
  401. },
  402. "jugani": {
  403. name: "Jugani",
  404. parents: ["cat"]
  405. },
  406. "luxray": {
  407. name: "Luxray",
  408. parents: ["pokemon", "lion"]
  409. },
  410. "mech": {
  411. name: "Mech",
  412. parents: ["machine"]
  413. },
  414. "zoid": {
  415. name: "Zoid",
  416. parents: ["mech"]
  417. },
  418. "monster": {
  419. name: "Monster",
  420. parents: ["animal"]
  421. },
  422. "foo-dog": {
  423. name: "Foo Dog",
  424. parents: ["mammal"]
  425. },
  426. "elephant": {
  427. name: "Elephant",
  428. parents: ["mammal"]
  429. },
  430. "eagle": {
  431. name: "Eagle",
  432. parents: ["bird-of-prey"]
  433. },
  434. "cow": {
  435. name: "Cow",
  436. parents: ["mammal"]
  437. },
  438. "crocodile": {
  439. name: "Crocodile",
  440. parents: ["reptile"]
  441. },
  442. "borzoi": {
  443. name: "Borzoi",
  444. parents: ["dog"]
  445. },
  446. "snake": {
  447. name: "Snake",
  448. parents: ["reptile"]
  449. },
  450. "horned-bush-viper": {
  451. name: "Horned Bush Viper",
  452. parents: ["viper"]
  453. },
  454. "cobra": {
  455. name: "Cobra",
  456. parents: ["snake"]
  457. },
  458. "harpy-eagle": {
  459. name: "Harpy Eagle",
  460. parents: ["eagle"]
  461. },
  462. "raptor": {
  463. name: "Raptor",
  464. parents: ["dinosaur"]
  465. },
  466. "dinosaur": {
  467. name: "Dinosaur",
  468. parents: ["reptile"]
  469. },
  470. "veilhound": {
  471. name: "Veilhound",
  472. parents: ["hellhound"]
  473. },
  474. "hellhound": {
  475. name: "Hellhound",
  476. parents: ["canine", "demon"]
  477. },
  478. "insect": {
  479. name: "Insect",
  480. parents: ["animal"]
  481. },
  482. "beetle": {
  483. name: "Beetle",
  484. parents: ["insect"]
  485. },
  486. "moth": {
  487. name: "Moth",
  488. parents: ["insect"]
  489. },
  490. "eastern-dragon": {
  491. name: "Eastern Dragon",
  492. parents: ["dragon"]
  493. },
  494. "jaguar": {
  495. name: "Jaguar",
  496. parents: ["cat"]
  497. },
  498. "horse": {
  499. name: "Horse",
  500. parents: ["mammal"]
  501. },
  502. "sergal": {
  503. name: "Sergal",
  504. parents: ["mammal", "avian", "vilous"]
  505. },
  506. "gryphon": {
  507. name: "Gryphon",
  508. parents: ["lion", "eagle"]
  509. },
  510. "robot": {
  511. name: "Robot",
  512. parents: ["machine"]
  513. },
  514. "medihound": {
  515. name: "Medihound",
  516. parents: ["robot", "dog"]
  517. },
  518. "sylveon": {
  519. name: "Sylveon",
  520. parents: ["pokemon"]
  521. },
  522. "catgirl": {
  523. name: "Catgirl",
  524. parents: ["mammal"]
  525. },
  526. "cowgirl": {
  527. name: "Cowgirl",
  528. parents: ["mammal"]
  529. },
  530. "pony": {
  531. name: "Pony",
  532. parents: ["horse"]
  533. },
  534. "rabbit": {
  535. name: "Rabbit",
  536. parents: ["leporidae"]
  537. },
  538. "fennec-fox": {
  539. name: "Fennec Fox",
  540. parents: ["fox"]
  541. },
  542. "azodian": {
  543. name: "Azodian",
  544. parents: ["mouse"]
  545. },
  546. "shiba-inu": {
  547. name: "Shiba Inu",
  548. parents: ["dog"]
  549. },
  550. "changeling": {
  551. name: "Changeling",
  552. parents: ["insect"]
  553. },
  554. "cheetah": {
  555. name: "Cheetah",
  556. parents: ["cat"]
  557. },
  558. "golden-jackal": {
  559. name: "Golden Jackal",
  560. parents: ["jackal"]
  561. },
  562. "manectric": {
  563. name: "Manectric",
  564. parents: ["pokemon", "wolf"]
  565. },
  566. "rat": {
  567. name: "Rat",
  568. parents: ["rodent"]
  569. },
  570. "rodent": {
  571. name: "Rodent",
  572. parents: ["mammal"]
  573. },
  574. "octocoon": {
  575. name: "Octocoon",
  576. parents: ["raccoon", "octopus"]
  577. },
  578. "octopus": {
  579. name: "Octopus",
  580. parents: ["fish"]
  581. },
  582. "werewolf": {
  583. name: "Werewolf",
  584. parents: ["wolf", "werebeast"]
  585. },
  586. "werebeast": {
  587. name: "Werebeast",
  588. parents: ["monster"]
  589. },
  590. "meerkat": {
  591. name: "Meerkat",
  592. parents: ["mammal"]
  593. },
  594. "human": {
  595. name: "Human",
  596. parents: ["mammal"]
  597. },
  598. "geth": {
  599. name: "Geth",
  600. parents: ["android"]
  601. },
  602. "husky": {
  603. name: "Husky",
  604. parents: ["dog"]
  605. },
  606. "long-eared-bat": {
  607. name: "Long Eared Bat",
  608. parents: ["bat"]
  609. },
  610. "lizard": {
  611. name: "Lizard",
  612. parents: ["reptile"]
  613. },
  614. "salamander": {
  615. name: "Salamander",
  616. parents: ["lizard"]
  617. },
  618. "chameleon": {
  619. name: "Chameleon",
  620. parents: ["lizard"]
  621. },
  622. "gecko": {
  623. name: "Gecko",
  624. parents: ["lizard"]
  625. },
  626. "kobold": {
  627. name: "Kobold",
  628. parents: ["reptile"]
  629. },
  630. "charizard": {
  631. name: "Charizard",
  632. parents: ["pokemon", "dragon"]
  633. },
  634. "lugia": {
  635. name: "Lugia",
  636. parents: ["pokemon", "avian"]
  637. },
  638. "cerberus": {
  639. name: "Cerberus",
  640. parents: ["dog"]
  641. },
  642. "tyrantrum": {
  643. name: "Tyrantrum",
  644. parents: ["pokemon"]
  645. },
  646. "lemur": {
  647. name: "Lemur",
  648. parents: ["mammal"]
  649. },
  650. "kelpie": {
  651. name: "Kelpie",
  652. parents: ["horse", "monster"]
  653. },
  654. "labrador": {
  655. name: "Labrador",
  656. parents: ["dog"]
  657. },
  658. "sylveon": {
  659. name: "Sylveon",
  660. parents: ["eeveelution"]
  661. },
  662. "eeveelution": {
  663. name: "Eeveelution",
  664. parents: ["pokemon", "cat"]
  665. },
  666. "polar-bear": {
  667. name: "Polar Bear",
  668. parents: ["bear"]
  669. },
  670. "bear": {
  671. name: "Bear",
  672. parents: ["mammal"]
  673. },
  674. "absol": {
  675. name: "Absol",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "wolver": {
  679. name: "Wolver",
  680. parents: ["mammal"]
  681. },
  682. "rottweiler": {
  683. name: "Rottweiler",
  684. parents: ["dog"]
  685. },
  686. "zebra": {
  687. name: "Zebra",
  688. parents: ["horse"]
  689. },
  690. "yoshi": {
  691. name: "Yoshi",
  692. parents: ["lizard"]
  693. },
  694. "lynx": {
  695. name: "Lynx",
  696. parents: ["cat"]
  697. },
  698. "unknown": {
  699. name: "Unknown",
  700. parents: []
  701. },
  702. "thylacine": {
  703. name: "Thylacine",
  704. parents: ["mammal"]
  705. },
  706. "gabumon": {
  707. name: "Gabumon",
  708. parents: ["digimon"]
  709. },
  710. "border-collie": {
  711. name: "Border Collie",
  712. parents: ["dog"]
  713. },
  714. "imp": {
  715. name: "Imp",
  716. parents: ["demon"]
  717. },
  718. "kangaroo": {
  719. name: "Kangaroo",
  720. parents: ["marsupial"]
  721. },
  722. "renamon": {
  723. name: "Renamon",
  724. parents: ["digimon", "fox"]
  725. },
  726. "candy-orca-dragon": {
  727. name: "Candy Orca Dragon",
  728. parents: ["fish", "dragon", "candy"]
  729. },
  730. "sabertooth-tiger": {
  731. name: "Sabertooth Tiger",
  732. parents: ["cat"]
  733. },
  734. "espurr": {
  735. name: "Espurr",
  736. parents: ["pokemon", "cat"]
  737. },
  738. "otter": {
  739. name: "Otter",
  740. parents: ["mustelid"]
  741. },
  742. "elemental": {
  743. name: "Elemental",
  744. parents: ["mammal"]
  745. },
  746. "mew": {
  747. name: "Mew",
  748. parents: ["pokemon"]
  749. },
  750. "goodra": {
  751. name: "Goodra",
  752. parents: ["pokemon"]
  753. },
  754. "fairy": {
  755. name: "Fairy",
  756. parents: ["magical"]
  757. },
  758. "typhlosion": {
  759. name: "Typhlosion",
  760. parents: ["pokemon"]
  761. },
  762. "magical": {
  763. name: "Magical",
  764. parents: []
  765. },
  766. "xenomorph": {
  767. name: "Xenomorph",
  768. parents: ["monster", "alien"]
  769. },
  770. "charr": {
  771. name: "Charr",
  772. parents: ["cat"]
  773. },
  774. "siberian-husky": {
  775. name: "Siberian Husky",
  776. parents: ["husky"]
  777. },
  778. "alligator": {
  779. name: "Alligator",
  780. parents: ["reptile"]
  781. },
  782. "bernese-mountain-dog": {
  783. name: "Bernese Mountain Dog",
  784. parents: ["dog"]
  785. },
  786. "reshiram": {
  787. name: "Reshiram",
  788. parents: ["pokemon", "dragon"]
  789. },
  790. "grizzly-bear": {
  791. name: "Grizzly Bear",
  792. parents: ["bear"]
  793. },
  794. "water-monitor": {
  795. name: "Water Monitor",
  796. parents: ["lizard"]
  797. },
  798. "banchofossa": {
  799. name: "Banchofossa",
  800. parents: ["mammal"]
  801. },
  802. "kirin": {
  803. name: "Kirin",
  804. parents: ["monster"]
  805. },
  806. "quilava": {
  807. name: "Quilava",
  808. parents: ["pokemon"]
  809. },
  810. "seviper": {
  811. name: "Seviper",
  812. parents: ["pokemon", "viper"]
  813. },
  814. "flying-fox": {
  815. name: "Flying Fox",
  816. parents: ["bat"]
  817. },
  818. "keynain": {
  819. name: "Keynain",
  820. parents: ["avian"]
  821. },
  822. "lucario": {
  823. name: "Lucario",
  824. parents: ["pokemon", "jackal"]
  825. },
  826. "siamese-cat": {
  827. name: "Siamese Cat",
  828. parents: ["cat"]
  829. },
  830. "spider": {
  831. name: "Spider",
  832. parents: ["insect"]
  833. },
  834. "samurott": {
  835. name: "Samurott",
  836. parents: ["pokemon", "otter"]
  837. },
  838. "megalodon": {
  839. name: "Megalodon",
  840. parents: ["shark"]
  841. },
  842. "unicorn": {
  843. name: "Unicorn",
  844. parents: ["horse"]
  845. },
  846. "greninja": {
  847. name: "Greninja",
  848. parents: ["pokemon", "frog"]
  849. },
  850. "water-dragon": {
  851. name: "Water Dragon",
  852. parents: ["dragon"]
  853. },
  854. "cross-fox": {
  855. name: "Cross Fox",
  856. parents: ["fox"]
  857. },
  858. "synth": {
  859. name: "Synth",
  860. parents: ["machine"]
  861. },
  862. "construct": {
  863. name: "Construct",
  864. parents: []
  865. },
  866. "mexican-wolf": {
  867. name: "Mexican Wolf",
  868. parents: ["wolf"]
  869. },
  870. "leopard": {
  871. name: "Leopard",
  872. parents: ["cat"]
  873. },
  874. "pig": {
  875. name: "Pig",
  876. parents: ["mammal"]
  877. },
  878. "ampharos": {
  879. name: "Ampharos",
  880. parents: ["pokemon", "sheep"]
  881. },
  882. "orca": {
  883. name: "Orca",
  884. parents: ["fish"]
  885. },
  886. "lycanroc": {
  887. name: "Lycanroc",
  888. parents: ["pokemon", "wolf"]
  889. },
  890. "surkanu": {
  891. name: "Surkanu",
  892. parents: ["monster"]
  893. },
  894. "seal": {
  895. name: "Seal",
  896. parents: ["mammal"]
  897. },
  898. "keldeo": {
  899. name: "Keldeo",
  900. parents: ["pokemon"]
  901. },
  902. "great-dane": {
  903. name: "Great Dane",
  904. parents: ["dog"]
  905. },
  906. "black-backed-jackal": {
  907. name: "Black Backed Jackal",
  908. parents: ["jackal"]
  909. },
  910. "sheep": {
  911. name: "Sheep",
  912. parents: ["mammal"]
  913. },
  914. "leopard-seal": {
  915. name: "Leopard Seal",
  916. parents: ["seal"]
  917. },
  918. "zoroark": {
  919. name: "Zoroark",
  920. parents: ["pokemon", "fox"]
  921. },
  922. "maned-wolf": {
  923. name: "Maned Wolf",
  924. parents: ["canine"]
  925. },
  926. "dracha": {
  927. name: "Dracha",
  928. parents: ["dragon"]
  929. },
  930. "wolxi": {
  931. name: "Wolxi",
  932. parents: ["mammal", "alien"]
  933. },
  934. "dratini": {
  935. name: "Dratini",
  936. parents: ["pokemon", "dragon"]
  937. },
  938. "skaven": {
  939. name: "Skaven",
  940. parents: ["rat"]
  941. },
  942. "mongoose": {
  943. name: "Mongoose",
  944. parents: ["mammal"]
  945. },
  946. "lopunny": {
  947. name: "Lopunny",
  948. parents: ["pokemon", "rabbit"]
  949. },
  950. "feraligatr": {
  951. name: "Feraligatr",
  952. parents: ["pokemon", "alligator"]
  953. },
  954. "houndoom": {
  955. name: "Houndoom",
  956. parents: ["pokemon", "dog"]
  957. },
  958. "protogen": {
  959. name: "Protogen",
  960. parents: ["machine"]
  961. },
  962. "saint-bernard": {
  963. name: "Saint Bernard",
  964. parents: ["dog"]
  965. },
  966. "crow": {
  967. name: "Crow",
  968. parents: ["corvid"]
  969. },
  970. "delphox": {
  971. name: "Delphox",
  972. parents: ["pokemon", "fox"]
  973. },
  974. "moose": {
  975. name: "Moose",
  976. parents: ["mammal"]
  977. },
  978. "joraxian": {
  979. name: "Joraxian",
  980. parents: ["monster", "canine", "demon"]
  981. },
  982. "nimbat": {
  983. name: "Nimbat",
  984. parents: ["mammal"]
  985. },
  986. "aardwolf": {
  987. name: "Aardwolf",
  988. parents: ["canine"]
  989. },
  990. "fluudrani": {
  991. name: "Fluudrani",
  992. parents: ["animal"]
  993. },
  994. "arcanine": {
  995. name: "Arcanine",
  996. parents: ["pokemon", "dog"]
  997. },
  998. "inteleon": {
  999. name: "Inteleon",
  1000. parents: ["pokemon", "fish"]
  1001. },
  1002. "ninetales": {
  1003. name: "Ninetales",
  1004. parents: ["pokemon", "kitsune"]
  1005. },
  1006. "tigrex": {
  1007. name: "Tigrex",
  1008. parents: ["tiger"]
  1009. },
  1010. "zorua": {
  1011. name: "Zorua",
  1012. parents: ["pokemon", "fox"]
  1013. },
  1014. "vulpix": {
  1015. name: "Vulpix",
  1016. parents: ["pokemon", "fox"]
  1017. },
  1018. "barghest": {
  1019. name: "Barghest",
  1020. parents: ["monster"]
  1021. },
  1022. "gray-wolf": {
  1023. name: "Gray Wolf",
  1024. parents: ["wolf"]
  1025. },
  1026. "ruppells-fox": {
  1027. name: "Rüppell's Fox",
  1028. parents: ["fox"]
  1029. },
  1030. "bull-terrier": {
  1031. name: "Bull Terrier",
  1032. parents: ["dog"]
  1033. },
  1034. "european-honey-buzzard": {
  1035. name: "European Honey Buzzard",
  1036. parents: ["avian"]
  1037. },
  1038. "t-rex": {
  1039. name: "Tyrannosaurus Rex",
  1040. parents: ["dinosaur"]
  1041. },
  1042. "mactarian": {
  1043. name: "Mactarian",
  1044. parents: ["shark", "monster"]
  1045. },
  1046. "mewtwo-y": {
  1047. name: "Mewtwo Y",
  1048. parents: ["mewtwo"]
  1049. },
  1050. "mewtwo": {
  1051. name: "Mewtwo",
  1052. parents: ["pokemon"]
  1053. },
  1054. "eevee": {
  1055. name: "Eevee",
  1056. parents: ["eeveelution"]
  1057. },
  1058. "mienshao": {
  1059. name: "Mienshao",
  1060. parents: ["pokemon"]
  1061. },
  1062. "sugar-glider": {
  1063. name: "Sugar Glider",
  1064. parents: ["opossum"]
  1065. },
  1066. "spectral-bat": {
  1067. name: "Spectral Bat",
  1068. parents: ["bat"]
  1069. },
  1070. "scolipede": {
  1071. name: "Scolipede",
  1072. parents: ["pokemon", "insect"]
  1073. },
  1074. "jackalope": {
  1075. name: "Jackalope",
  1076. parents: ["rabbit", "antelope"]
  1077. },
  1078. "caracal": {
  1079. name: "Caracal",
  1080. parents: ["cat"]
  1081. },
  1082. "stoat": {
  1083. name: "Stoat",
  1084. parents: ["mammal"]
  1085. },
  1086. "african-golden-cat": {
  1087. name: "African Golden Cat",
  1088. parents: ["cat"]
  1089. },
  1090. "gigantosaurus": {
  1091. name: "Gigantosaurus",
  1092. parents: ["dinosaur"]
  1093. },
  1094. "zorgoia": {
  1095. name: "Zorgoia",
  1096. parents: ["mammal"]
  1097. },
  1098. "monitor-lizard": {
  1099. name: "Monitor Lizard",
  1100. parents: ["lizard"]
  1101. },
  1102. "ziralkia": {
  1103. name: "Ziralkia",
  1104. parents: ["mammal"]
  1105. },
  1106. "kiiasi": {
  1107. name: "Kiiasi",
  1108. parents: ["animal"]
  1109. },
  1110. "synx": {
  1111. name: "Synx",
  1112. parents: ["monster"]
  1113. },
  1114. "panther": {
  1115. name: "Panther",
  1116. parents: ["cat"]
  1117. },
  1118. "azumarill": {
  1119. name: "Azumarill",
  1120. parents: ["pokemon"]
  1121. },
  1122. "river-snaptail": {
  1123. name: "River Snaptail",
  1124. parents: ["otter", "crocodile"]
  1125. },
  1126. "great-blue-heron": {
  1127. name: "Great Blue Heron",
  1128. parents: ["avian"]
  1129. },
  1130. "smeargle": {
  1131. name: "Smeargle",
  1132. parents: ["pokemon"]
  1133. },
  1134. "vendeilen": {
  1135. name: "Vendeilen",
  1136. parents: ["monster"]
  1137. },
  1138. "ventura": {
  1139. name: "Ventura",
  1140. parents: ["canine"]
  1141. },
  1142. "clouded-leopard": {
  1143. name: "Clouded Leopard",
  1144. parents: ["leopard"]
  1145. },
  1146. "argonian": {
  1147. name: "Argonian",
  1148. parents: ["lizard"]
  1149. },
  1150. "salazzle": {
  1151. name: "Salazzle",
  1152. parents: ["pokemon", "lizard"]
  1153. },
  1154. "je-stoff-drachen": {
  1155. name: "Je-Stoff Drachen",
  1156. parents: ["dragon"]
  1157. },
  1158. "finnish-spitz-dog": {
  1159. name: "Finnish Spitz Dog",
  1160. parents: ["dog"]
  1161. },
  1162. "gray-fox": {
  1163. name: "Gray Fox",
  1164. parents: ["fox"]
  1165. },
  1166. "opossum": {
  1167. name: "Opossum",
  1168. parents: ["mammal"]
  1169. },
  1170. "antelope": {
  1171. name: "Antelope",
  1172. parents: ["mammal"]
  1173. },
  1174. "weavile": {
  1175. name: "Weavile",
  1176. parents: ["pokemon"]
  1177. },
  1178. "pikachu": {
  1179. name: "Pikachu",
  1180. parents: ["pokemon", "mouse"]
  1181. },
  1182. "grovyle": {
  1183. name: "Grovyle",
  1184. parents: ["pokemon", "plant"]
  1185. },
  1186. "sthara": {
  1187. name: "Sthara",
  1188. parents: ["snow-leopard", "reptile"]
  1189. },
  1190. "star-warrior": {
  1191. name: "Star Warrior",
  1192. parents: ["magical"]
  1193. },
  1194. "dragonoid": {
  1195. name: "Dragonoid",
  1196. parents: ["dragon"]
  1197. },
  1198. "suicune": {
  1199. name: "Suicune",
  1200. parents: ["pokemon"]
  1201. },
  1202. "vole": {
  1203. name: "Vole",
  1204. parents: ["mammal"]
  1205. },
  1206. "blaziken": {
  1207. name: "Blaziken",
  1208. parents: ["pokemon", "avian"]
  1209. },
  1210. "buizel": {
  1211. name: "Buizel",
  1212. parents: ["pokemon", "fish"]
  1213. },
  1214. "floatzel": {
  1215. name: "Floatzel",
  1216. parents: ["pokemon", "fish"]
  1217. },
  1218. "umok": {
  1219. name: "Umok",
  1220. parents: ["avian"]
  1221. },
  1222. "sea-monster": {
  1223. name: "Sea Monster",
  1224. parents: ["monster", "fish"]
  1225. },
  1226. "egyptian-vulture": {
  1227. name: "Egyptian Vulture",
  1228. parents: ["avian"]
  1229. },
  1230. "doberman": {
  1231. name: "Doberman",
  1232. parents: ["dog"]
  1233. },
  1234. "zangoose": {
  1235. name: "Zangoose",
  1236. parents: ["pokemon", "mongoose"]
  1237. },
  1238. "mongoose": {
  1239. name: "Mongoose",
  1240. parents: ["mammal"]
  1241. },
  1242. "wickerbeast": {
  1243. name: "Wickerbeast",
  1244. parents: ["monster"]
  1245. },
  1246. "zenari": {
  1247. name: "Zenari",
  1248. parents: ["lizard"]
  1249. },
  1250. "plant": {
  1251. name: "Plant",
  1252. parents: []
  1253. },
  1254. "raskatox": {
  1255. name: "Raskatox",
  1256. parents: ["raccoon", "skunk", "cat", "fox"]
  1257. },
  1258. "mikromare": {
  1259. name: "mikromare",
  1260. parents: ["alien"]
  1261. },
  1262. "alien": {
  1263. name: "Alien",
  1264. parents: ["animal"]
  1265. },
  1266. "deity": {
  1267. name: "Deity",
  1268. parents: []
  1269. },
  1270. "skarlan": {
  1271. name: "Skarlan",
  1272. parents: ["slug", "dragon"]
  1273. },
  1274. "slug": {
  1275. name: "Slug",
  1276. parents: ["mollusk"]
  1277. },
  1278. "mollusk": {
  1279. name: "Mollusk",
  1280. parents: ["animal"]
  1281. },
  1282. "chimera": {
  1283. name: "Chimera",
  1284. parents: ["monster"]
  1285. },
  1286. "gestalt": {
  1287. name: "Gestalt",
  1288. parents: ["construct"]
  1289. },
  1290. "mimic": {
  1291. name: "Mimic",
  1292. parents: ["monster"]
  1293. },
  1294. "calico-rat": {
  1295. name: "Calico Rat",
  1296. parents: ["rat"]
  1297. },
  1298. "panda": {
  1299. name: "Panda",
  1300. parents: ["mammal"]
  1301. },
  1302. "oni": {
  1303. name: "Oni",
  1304. parents: ["monster"]
  1305. },
  1306. "pegasus": {
  1307. name: "Pegasus",
  1308. parents: ["horse"]
  1309. },
  1310. "vulpera": {
  1311. name: "Vulpera",
  1312. parents: ["fennec-fox"]
  1313. },
  1314. "ceratosaurus": {
  1315. name: "Ceratosaurus",
  1316. parents: ["dinosaur"]
  1317. },
  1318. "nykur": {
  1319. name: "Nykur",
  1320. parents: ["horse", "monster"]
  1321. },
  1322. "giraffe": {
  1323. name: "Giraffe",
  1324. parents: ["mammal"]
  1325. },
  1326. "tauren": {
  1327. name: "Tauren",
  1328. parents: ["cow"]
  1329. },
  1330. "draconi": {
  1331. name: "Draconi",
  1332. parents: ["alien", "cat", "cyborg"]
  1333. },
  1334. "dire-wolf": {
  1335. name: "Dire Wolf",
  1336. parents: ["wolf"]
  1337. },
  1338. "ferromorph": {
  1339. name: "Ferromorph",
  1340. parents: ["construct"]
  1341. },
  1342. "meowth": {
  1343. name: "Meowth",
  1344. parents: ["cat", "pokemon"]
  1345. },
  1346. "pavodragon": {
  1347. name: "Pavodragon",
  1348. parents: ["dragon"]
  1349. },
  1350. "aaltranae": {
  1351. name: "Aaltranae",
  1352. parents: ["dragon"]
  1353. },
  1354. "cyborg": {
  1355. name: "Cyborg",
  1356. parents: ["machine"]
  1357. },
  1358. "draptor": {
  1359. name: "Draptor",
  1360. parents: ["dragon"]
  1361. },
  1362. "candy": {
  1363. name: "Candy",
  1364. parents: []
  1365. },
  1366. "drenath": {
  1367. name: "Drenath",
  1368. parents: ["dragon", "snake", "rabbit"]
  1369. },
  1370. "coyju": {
  1371. name: "Coyju",
  1372. parents: ["coyote", "kaiju"]
  1373. },
  1374. "kaiju": {
  1375. name: "Kaiju",
  1376. parents: ["monster"]
  1377. },
  1378. "nickit": {
  1379. name: "Nickit",
  1380. parents: ["pokemon", "cat"]
  1381. },
  1382. "lopunny": {
  1383. name: "Lopunny",
  1384. parents: ["pokemon", "rabbit"]
  1385. },
  1386. "korean-jindo-dog": {
  1387. name: "Korean Jindo Dog",
  1388. parents: ["dog"]
  1389. },
  1390. "naga": {
  1391. name: "Naga",
  1392. parents: ["snake", "monster"]
  1393. },
  1394. "undead": {
  1395. name: "Undead",
  1396. parents: ["monster"]
  1397. },
  1398. "whale": {
  1399. name: "Whale",
  1400. parents: ["fish"]
  1401. },
  1402. "gelato-bee": {
  1403. name: "Gelato Bee",
  1404. parents: ["bee"]
  1405. },
  1406. "bee": {
  1407. name: "Bee",
  1408. parents: ["insect"]
  1409. },
  1410. "gardevoir": {
  1411. name: "Gardevoir",
  1412. parents: ["pokemon"]
  1413. },
  1414. "ant": {
  1415. name: "Ant",
  1416. parents: ["insect"]
  1417. },
  1418. "frog": {
  1419. name: "Frog",
  1420. parents: ["amphibian"]
  1421. },
  1422. "amphibian": {
  1423. name: "Amphibian",
  1424. parents: ["animal"]
  1425. },
  1426. "pangolin": {
  1427. name: "Pangolin",
  1428. parents: ["mammal"]
  1429. },
  1430. "uragi'viidorn": {
  1431. name: "Uragi'viidorn",
  1432. parents: ["avian", "bear"]
  1433. },
  1434. "gryphdelphais": {
  1435. name: "Gryphdelphais",
  1436. parents: ["dolphin", "gryphon"]
  1437. },
  1438. "plush": {
  1439. name: "Plush",
  1440. parents: ["construct"]
  1441. },
  1442. "draiger": {
  1443. name: "Draiger",
  1444. parents: ["dragon","tiger"]
  1445. },
  1446. "foxsky": {
  1447. name: "Foxsky",
  1448. parents: ["fox", "husky"]
  1449. },
  1450. "umbreon": {
  1451. name: "Umbreon",
  1452. parents: ["eeveelution"]
  1453. },
  1454. "slime-dragon": {
  1455. name: "Slime Dragon",
  1456. parents: ["dragon", "goo"]
  1457. },
  1458. "enderman": {
  1459. name: "Enderman",
  1460. parents: ["monster"]
  1461. },
  1462. "gremlin": {
  1463. name: "Gremlin",
  1464. parents: ["monster"]
  1465. },
  1466. "dragonsune": {
  1467. name: "Dragonsune",
  1468. parents: ["dragon", "kitsune"]
  1469. },
  1470. "ghost": {
  1471. name: "Ghost",
  1472. parents: ["supernatural"]
  1473. },
  1474. "false-vampire-bat": {
  1475. name: "False Vampire Bat",
  1476. parents: ["bat"]
  1477. },
  1478. "succubus": {
  1479. name: "Succubus",
  1480. parents: ["demon"]
  1481. },
  1482. "mia": {
  1483. name: "Mia",
  1484. parents: ["canine"]
  1485. },
  1486. "rainbow": {
  1487. name: "Rainbow",
  1488. parents: ["monster"]
  1489. },
  1490. "solgaleo": {
  1491. name: "Solgaleo",
  1492. parents: ["pokemon"]
  1493. },
  1494. "lucent-nargacuga": {
  1495. name: "Lucent Nargacuga",
  1496. parents: ["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: ["bird-of-prey"]
  1765. },
  1766. "avali": {
  1767. name: "Avali",
  1768. parents: ["avian", "alien"]
  1769. },
  1770. "arctic-fox": {
  1771. name: "Arctic Fox",
  1772. parents: ["fox"]
  1773. },
  1774. "snow-tiger": {
  1775. name: "Snow Tiger",
  1776. parents: ["tiger"]
  1777. },
  1778. "marble-fox": {
  1779. name: "Marble Fox",
  1780. parents: ["fox"]
  1781. },
  1782. "king-wickerbeast": {
  1783. name: "King Wickerbeast",
  1784. parents: ["wickerbeast"]
  1785. },
  1786. "wickerbeast": {
  1787. name: "Wickerbeast",
  1788. parents: ["mammal"]
  1789. },
  1790. "european-polecat": {
  1791. name: "European Polecat",
  1792. parents: ["mustelid"]
  1793. },
  1794. "teshari": {
  1795. name: "Teshari",
  1796. parents: ["avian", "raptor"]
  1797. },
  1798. "alicorn": {
  1799. name: "Alicorn",
  1800. parents: ["horse"]
  1801. },
  1802. "atlas-moth": {
  1803. name: "Atlas Moth",
  1804. parents: ["moth"]
  1805. },
  1806. "owlbear": {
  1807. name: "Owlbear",
  1808. parents: ["owl", "bear", "monster"]
  1809. },
  1810. "owl": {
  1811. name: "Owl",
  1812. parents: ["avian"]
  1813. },
  1814. "silvertongue": {
  1815. name: "Silvertongue",
  1816. parents: ["reptile"]
  1817. },
  1818. "ahuizotl": {
  1819. name: "Ahuizotl",
  1820. parents: ["monster"]
  1821. },
  1822. "ender-dragon": {
  1823. name: "Ender Dragon",
  1824. parents: ["dragon"]
  1825. },
  1826. "bruhathkayosaurus": {
  1827. name: "Bruhathkayosaurus",
  1828. parents: ["sauropod"]
  1829. },
  1830. "sauropod": {
  1831. name: "Sauropod",
  1832. parents: ["dinosaur"]
  1833. },
  1834. "black-sable-antelope": {
  1835. name: "Black Sable Antelope",
  1836. parents: ["antelope"]
  1837. },
  1838. "slime": {
  1839. name: "Slime",
  1840. parents: ["goo"]
  1841. },
  1842. "utahraptor": {
  1843. name: "Utahraptor",
  1844. parents: ["raptor"]
  1845. },
  1846. "indian-giant-squirrel": {
  1847. name: "Indian Giant Squirrel",
  1848. parents: ["squirrel"]
  1849. },
  1850. "golden-retriever": {
  1851. name: "Golden Retriever",
  1852. parents: ["dog"]
  1853. },
  1854. "triceratops": {
  1855. name: "Triceratops",
  1856. parents: ["dinosaur"]
  1857. },
  1858. "drake": {
  1859. name: "Drake",
  1860. parents: ["dragon"]
  1861. },
  1862. "okapi": {
  1863. name: "Okapi",
  1864. parents: ["giraffe"]
  1865. },
  1866. "arctic-hare": {
  1867. name: "Arctic Hare",
  1868. parents: ["hare"]
  1869. },
  1870. "hare": {
  1871. name: "Hare",
  1872. parents: ["leporidae"]
  1873. },
  1874. "leporidae": {
  1875. name: "Leporidae",
  1876. parents: ["mammal"]
  1877. },
  1878. "leopard-gecko": {
  1879. name: "Leopard Gecko",
  1880. parents: ["gecko"]
  1881. },
  1882. "dreamspawn": {
  1883. name: "Dreamspawn",
  1884. parents: ["illusion"]
  1885. },
  1886. "illusion": {
  1887. name: "Illusion",
  1888. parents: []
  1889. },
  1890. "purrloin": {
  1891. name: "Purrloin",
  1892. parents: ["cat", "pokemon"]
  1893. },
  1894. "noivern": {
  1895. name: "Noivern",
  1896. parents: ["bat", "dragon", "pokemon"]
  1897. },
  1898. "hedgehog": {
  1899. name: "Hedgehog",
  1900. parents: ["mammal"]
  1901. },
  1902. "liger": {
  1903. name: "Liger",
  1904. parents: ["lion", "tiger", "hybrid"]
  1905. },
  1906. "hybrid": {
  1907. name: "Hybrid",
  1908. parents: []
  1909. },
  1910. "drider": {
  1911. name: "Drider",
  1912. parents: ["spider"]
  1913. },
  1914. "sabresune": {
  1915. name: "Sabresune",
  1916. parents: ["kitsune", "sabertooth-tiger"]
  1917. },
  1918. "ditto": {
  1919. name: "Ditto",
  1920. parents: ["pokemon", "goo"]
  1921. },
  1922. "amogus": {
  1923. name: "Amogus",
  1924. parents: ["deity"]
  1925. },
  1926. "ferret": {
  1927. name: "Ferret",
  1928. parents: ["mustelid"]
  1929. },
  1930. "guinea-pig": {
  1931. name: "Guinea Pig",
  1932. parents: ["rodent"]
  1933. },
  1934. "viper": {
  1935. name: "Viper",
  1936. parents: ["snake"]
  1937. },
  1938. "cinderace": {
  1939. name: "Cinderace",
  1940. parents: ["pokemon", "rabbit"]
  1941. },
  1942. "caudin": {
  1943. name: "Caudin",
  1944. parents: ["dragon"]
  1945. },
  1946. "red-winged-blackbird": {
  1947. name: "Red-Winged Blackbird",
  1948. parents: ["avian"]
  1949. },
  1950. "hooded-wheater": {
  1951. name: "Hooded Wheater",
  1952. parents: ["passerine"]
  1953. },
  1954. "passerine": {
  1955. name: "Passerine",
  1956. parents: ["avian"]
  1957. },
  1958. "gieeg": {
  1959. name: "Gieeg",
  1960. parents: ["alien"]
  1961. },
  1962. "ringtail": {
  1963. name: "Ringtail",
  1964. parents: ["raccoon"]
  1965. },
  1966. "hisuian-zoroark": {
  1967. name: "Hisuian Zoroark",
  1968. parents: ["zoroark", "hisuian"]
  1969. },
  1970. "hisuian": {
  1971. name: "Hisuian",
  1972. parents: ["regional-pokemon"]
  1973. },
  1974. "regional-pokemon": {
  1975. name: "Regional Pokemon",
  1976. parents: ["pokemon"]
  1977. },
  1978. "cybeast": {
  1979. name: "Cybeast",
  1980. parents: ["computer-virus"]
  1981. },
  1982. "javira-dragon": {
  1983. name: "Javira Dragon",
  1984. parents: ["dragon"]
  1985. },
  1986. "koopew": {
  1987. name: "Koopew",
  1988. parents: ["dragon", "alien"]
  1989. },
  1990. "nevrean": {
  1991. name: "Nevrean",
  1992. parents: ["avian", "vilous"]
  1993. },
  1994. "vilous": {
  1995. name: "Vilous Species",
  1996. parents: []
  1997. },
  1998. "titanoboa": {
  1999. name: "Titanoboa",
  2000. parents: ["snake"]
  2001. },
  2002. "raichu": {
  2003. name: "Raichu",
  2004. parents: ["pikachu"]
  2005. },
  2006. "taur": {
  2007. name: "Taur",
  2008. parents: []
  2009. },
  2010. "continental-giant-rabbit": {
  2011. name: "Continental Giant Rabbit",
  2012. parents: ["rabbit"]
  2013. },
  2014. "demigryph": {
  2015. name: "Demigryph",
  2016. parents: ["lion", "eagle"]
  2017. },
  2018. "bald-eagle": {
  2019. name: "Bald Eagle",
  2020. parents: ["eagle"]
  2021. },
  2022. "kestrel": {
  2023. name: "Kestrel",
  2024. parents: ["falcon"]
  2025. },
  2026. "mockingbird": {
  2027. name: "Mockingbird",
  2028. parents: ["songbird"]
  2029. },
  2030. "songbird": {
  2031. name: "Songbird",
  2032. parents: ["avian"]
  2033. },
  2034. "bird-of-prey": {
  2035. name: "Bird of Prey",
  2036. parents: ["avian"]
  2037. },
  2038. "marowak": {
  2039. name: "Marowak",
  2040. parents: ["pokemon", "reptile"]
  2041. },
  2042. "joltik": {
  2043. name: "Joltik",
  2044. parents: ["pokemon", "insect"]
  2045. },
  2046. }
  2047. //species
  2048. function getSpeciesInfo(speciesList) {
  2049. let result = new Set();
  2050. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2051. result.add(entry)
  2052. });
  2053. return Array.from(result);
  2054. };
  2055. function getSpeciesInfoHelper(species) {
  2056. if (!speciesData[species]) {
  2057. console.warn(species + " doesn't exist");
  2058. return [];
  2059. }
  2060. if (speciesData[species].parents) {
  2061. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2062. } else {
  2063. return [species];
  2064. }
  2065. }
  2066. characterMakers.push(() => makeCharacter(
  2067. {
  2068. name: "Fen",
  2069. species: ["crux"],
  2070. description: {
  2071. title: "Bio",
  2072. text: "Very furry. Sheds on everything."
  2073. },
  2074. tags: [
  2075. "anthro",
  2076. "goo"
  2077. ]
  2078. },
  2079. {
  2080. front: {
  2081. height: math.unit(12, "feet"),
  2082. weight: math.unit(2400, "lb"),
  2083. name: "Front",
  2084. image: {
  2085. source: "./media/characters/fen/front.svg",
  2086. extra: 1804/1562,
  2087. bottom: 205/2009
  2088. },
  2089. extraAttributes: {
  2090. pawSize: {
  2091. name: "Paw Size",
  2092. power: 2,
  2093. type: "area",
  2094. base: math.unit(0.35, "m^2")
  2095. }
  2096. }
  2097. },
  2098. diving: {
  2099. height: math.unit(4.9, "meters"),
  2100. weight: math.unit(2400, "lb"),
  2101. name: "Diving",
  2102. image: {
  2103. source: "./media/characters/fen/diving.svg"
  2104. }
  2105. },
  2106. goo: {
  2107. height: math.unit(12, "feet"),
  2108. weight: math.unit(3600, "lb"),
  2109. volume: math.unit(1000, "liters"),
  2110. preyCapacity: math.unit(6, "people"),
  2111. name: "Goo",
  2112. image: {
  2113. source: "./media/characters/fen/goo.svg",
  2114. extra: 1307/1071,
  2115. bottom: 134/1441
  2116. }
  2117. },
  2118. maw: {
  2119. height: math.unit(5.03, "feet"),
  2120. name: "Maw",
  2121. image: {
  2122. source: "./media/characters/fen/maw.svg"
  2123. }
  2124. },
  2125. gooCeiling: {
  2126. height: math.unit(6.6, "feet"),
  2127. weight: math.unit(3000, "lb"),
  2128. volume: math.unit(1000, "liters"),
  2129. preyCapacity: math.unit(6, "people"),
  2130. name: "Goo (Ceiling)",
  2131. image: {
  2132. source: "./media/characters/fen/goo-ceiling.svg"
  2133. }
  2134. },
  2135. paw: {
  2136. height: math.unit(3.77, "feet"),
  2137. name: "Paw",
  2138. image: {
  2139. source: "./media/characters/fen/paw.svg"
  2140. },
  2141. extraAttributes: {
  2142. "toeSize": {
  2143. name: "Toe Size",
  2144. power: 2,
  2145. type: "area",
  2146. base: math.unit(0.02875, "m^2")
  2147. },
  2148. "pawSize": {
  2149. name: "Paw Size",
  2150. power: 2,
  2151. type: "area",
  2152. base: math.unit(0.378, "m^2")
  2153. },
  2154. }
  2155. },
  2156. tail: {
  2157. height: math.unit(12.1, "feet"),
  2158. name: "Tail",
  2159. image: {
  2160. source: "./media/characters/fen/tail.svg"
  2161. }
  2162. },
  2163. tailFull: {
  2164. height: math.unit(12.1, "feet"),
  2165. name: "Full Tail",
  2166. image: {
  2167. source: "./media/characters/fen/tail-full.svg"
  2168. }
  2169. },
  2170. back: {
  2171. height: math.unit(12, "feet"),
  2172. weight: math.unit(2400, "lb"),
  2173. name: "Back",
  2174. image: {
  2175. source: "./media/characters/fen/back.svg",
  2176. },
  2177. info: {
  2178. description: {
  2179. mode: "append",
  2180. text: "\n\nHe is not currently looking at you."
  2181. }
  2182. }
  2183. },
  2184. full: {
  2185. height: math.unit(1.85, "meter"),
  2186. weight: math.unit(3200, "lb"),
  2187. name: "Full",
  2188. image: {
  2189. source: "./media/characters/fen/full.svg",
  2190. extra: 1133/859,
  2191. bottom: 145/1278
  2192. },
  2193. info: {
  2194. description: {
  2195. mode: "append",
  2196. text: "\n\nMunch."
  2197. }
  2198. }
  2199. },
  2200. gooLounging: {
  2201. height: math.unit(4.53, "feet"),
  2202. weight: math.unit(3000, "lb"),
  2203. preyCapacity: math.unit(6, "people"),
  2204. name: "Goo (Lounging)",
  2205. image: {
  2206. source: "./media/characters/fen/goo-lounging.svg",
  2207. bottom: 116 / 613
  2208. }
  2209. },
  2210. lounging: {
  2211. height: math.unit(10.52, "feet"),
  2212. weight: math.unit(2400, "lb"),
  2213. name: "Lounging",
  2214. image: {
  2215. source: "./media/characters/fen/lounging.svg"
  2216. }
  2217. },
  2218. },
  2219. [
  2220. {
  2221. name: "Small",
  2222. height: math.unit(2.2428, "meter")
  2223. },
  2224. {
  2225. name: "Normal",
  2226. height: math.unit(12, "feet"),
  2227. default: true,
  2228. },
  2229. {
  2230. name: "Big",
  2231. height: math.unit(20, "feet")
  2232. },
  2233. {
  2234. name: "Minimacro",
  2235. height: math.unit(40, "feet"),
  2236. info: {
  2237. description: {
  2238. mode: "append",
  2239. text: "\n\nTOO DAMN BIG"
  2240. }
  2241. }
  2242. },
  2243. {
  2244. name: "Macro",
  2245. height: math.unit(100, "feet"),
  2246. info: {
  2247. description: {
  2248. mode: "append",
  2249. text: "\n\nTOO DAMN BIG"
  2250. }
  2251. }
  2252. },
  2253. {
  2254. name: "Megamacro",
  2255. height: math.unit(2, "miles")
  2256. },
  2257. {
  2258. name: "Gigamacro",
  2259. height: math.unit(10, "earths")
  2260. },
  2261. ]
  2262. ))
  2263. characterMakers.push(() => makeCharacter(
  2264. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2265. {
  2266. front: {
  2267. height: math.unit(183, "cm"),
  2268. weight: math.unit(80, "kg"),
  2269. name: "Front",
  2270. image: {
  2271. source: "./media/characters/sofia-fluttertail/front.svg",
  2272. bottom: 0.01,
  2273. extra: 2154 / 2081
  2274. }
  2275. },
  2276. frontAlt: {
  2277. height: math.unit(183, "cm"),
  2278. weight: math.unit(80, "kg"),
  2279. name: "Front (alt)",
  2280. image: {
  2281. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2282. }
  2283. },
  2284. back: {
  2285. height: math.unit(183, "cm"),
  2286. weight: math.unit(80, "kg"),
  2287. name: "Back",
  2288. image: {
  2289. source: "./media/characters/sofia-fluttertail/back.svg"
  2290. }
  2291. },
  2292. kneeling: {
  2293. height: math.unit(125, "cm"),
  2294. weight: math.unit(80, "kg"),
  2295. name: "Kneeling",
  2296. image: {
  2297. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2298. extra: 1033 / 977,
  2299. bottom: 23.7 / 1057
  2300. }
  2301. },
  2302. maw: {
  2303. height: math.unit(183 / 5, "cm"),
  2304. name: "Maw",
  2305. image: {
  2306. source: "./media/characters/sofia-fluttertail/maw.svg"
  2307. }
  2308. },
  2309. mawcloseup: {
  2310. height: math.unit(183 / 5 * 0.41, "cm"),
  2311. name: "Maw (Closeup)",
  2312. image: {
  2313. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2314. }
  2315. },
  2316. paws: {
  2317. height: math.unit(1.17, "feet"),
  2318. name: "Paws",
  2319. image: {
  2320. source: "./media/characters/sofia-fluttertail/paws.svg",
  2321. extra: 851 / 851,
  2322. bottom: 17 / 868
  2323. }
  2324. },
  2325. },
  2326. [
  2327. {
  2328. name: "Normal",
  2329. height: math.unit(1.83, "meter")
  2330. },
  2331. {
  2332. name: "Size Thief",
  2333. height: math.unit(18, "feet")
  2334. },
  2335. {
  2336. name: "50 Foot Collie",
  2337. height: math.unit(50, "feet")
  2338. },
  2339. {
  2340. name: "Macro",
  2341. height: math.unit(96, "feet"),
  2342. default: true
  2343. },
  2344. {
  2345. name: "Megamerger",
  2346. height: math.unit(650, "feet")
  2347. },
  2348. ]
  2349. ))
  2350. characterMakers.push(() => makeCharacter(
  2351. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2352. {
  2353. front: {
  2354. height: math.unit(7, "feet"),
  2355. weight: math.unit(100, "kg"),
  2356. name: "Front",
  2357. image: {
  2358. source: "./media/characters/march/front.svg",
  2359. extra: 1992/1851,
  2360. bottom: 39/2031
  2361. }
  2362. },
  2363. foot: {
  2364. height: math.unit(0.9, "feet"),
  2365. name: "Foot",
  2366. image: {
  2367. source: "./media/characters/march/foot.svg"
  2368. }
  2369. },
  2370. },
  2371. [
  2372. {
  2373. name: "Normal",
  2374. height: math.unit(7.9, "feet")
  2375. },
  2376. {
  2377. name: "Macro",
  2378. height: math.unit(220, "meters")
  2379. },
  2380. {
  2381. name: "Megamacro",
  2382. height: math.unit(2.98, "km"),
  2383. default: true
  2384. },
  2385. {
  2386. name: "Gigamacro",
  2387. height: math.unit(15963, "km")
  2388. },
  2389. {
  2390. name: "Teramacro",
  2391. height: math.unit(2980000000, "km")
  2392. },
  2393. {
  2394. name: "Examacro",
  2395. height: math.unit(250, "parsecs")
  2396. },
  2397. ]
  2398. ))
  2399. characterMakers.push(() => makeCharacter(
  2400. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2401. {
  2402. front: {
  2403. height: math.unit(6, "feet"),
  2404. weight: math.unit(60, "kg"),
  2405. name: "Front",
  2406. image: {
  2407. source: "./media/characters/noir/front.svg",
  2408. extra: 1,
  2409. bottom: 0.032
  2410. }
  2411. },
  2412. },
  2413. [
  2414. {
  2415. name: "Normal",
  2416. height: math.unit(6.6, "feet")
  2417. },
  2418. {
  2419. name: "Macro",
  2420. height: math.unit(500, "feet")
  2421. },
  2422. {
  2423. name: "Megamacro",
  2424. height: math.unit(2.5, "km"),
  2425. default: true
  2426. },
  2427. {
  2428. name: "Gigamacro",
  2429. height: math.unit(22500, "km")
  2430. },
  2431. {
  2432. name: "Teramacro",
  2433. height: math.unit(2500000000, "km")
  2434. },
  2435. {
  2436. name: "Examacro",
  2437. height: math.unit(200, "parsecs")
  2438. },
  2439. ]
  2440. ))
  2441. characterMakers.push(() => makeCharacter(
  2442. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2443. {
  2444. front: {
  2445. height: math.unit(7, "feet"),
  2446. weight: math.unit(100, "kg"),
  2447. name: "Front",
  2448. image: {
  2449. source: "./media/characters/okuri/front.svg",
  2450. extra: 739/665,
  2451. bottom: 39/778
  2452. }
  2453. },
  2454. back: {
  2455. height: math.unit(7, "feet"),
  2456. weight: math.unit(100, "kg"),
  2457. name: "Back",
  2458. image: {
  2459. source: "./media/characters/okuri/back.svg",
  2460. extra: 734/653,
  2461. bottom: 13/747
  2462. }
  2463. },
  2464. sitting: {
  2465. height: math.unit(2.95, "feet"),
  2466. weight: math.unit(100, "kg"),
  2467. name: "Sitting",
  2468. image: {
  2469. source: "./media/characters/okuri/sitting.svg",
  2470. extra: 370/318,
  2471. bottom: 99/469
  2472. }
  2473. },
  2474. },
  2475. [
  2476. {
  2477. name: "Smallest",
  2478. height: math.unit(5 + 2/12, "feet")
  2479. },
  2480. {
  2481. name: "Smaller",
  2482. height: math.unit(300, "feet")
  2483. },
  2484. {
  2485. name: "Small",
  2486. height: math.unit(1000, "feet")
  2487. },
  2488. {
  2489. name: "Macro",
  2490. height: math.unit(1, "mile")
  2491. },
  2492. {
  2493. name: "Mega Macro (Small)",
  2494. height: math.unit(20, "km")
  2495. },
  2496. {
  2497. name: "Mega Macro (Large)",
  2498. height: math.unit(600, "km")
  2499. },
  2500. {
  2501. name: "Giga Macro",
  2502. height: math.unit(10000, "km")
  2503. },
  2504. {
  2505. name: "Normal",
  2506. height: math.unit(577560, "km"),
  2507. default: true
  2508. },
  2509. {
  2510. name: "Large",
  2511. height: math.unit(4, "galaxies")
  2512. },
  2513. {
  2514. name: "Largest",
  2515. height: math.unit(15, "multiverses")
  2516. },
  2517. ]
  2518. ))
  2519. characterMakers.push(() => makeCharacter(
  2520. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2521. {
  2522. front: {
  2523. height: math.unit(7, "feet"),
  2524. weight: math.unit(100, "kg"),
  2525. name: "Front",
  2526. image: {
  2527. source: "./media/characters/manny/front.svg",
  2528. extra: 1,
  2529. bottom: 0.06
  2530. }
  2531. },
  2532. back: {
  2533. height: math.unit(7, "feet"),
  2534. weight: math.unit(100, "kg"),
  2535. name: "Back",
  2536. image: {
  2537. source: "./media/characters/manny/back.svg",
  2538. extra: 1,
  2539. bottom: 0.014
  2540. }
  2541. },
  2542. },
  2543. [
  2544. {
  2545. name: "Normal",
  2546. height: math.unit(7, "feet"),
  2547. },
  2548. {
  2549. name: "Macro",
  2550. height: math.unit(78, "feet"),
  2551. default: true
  2552. },
  2553. {
  2554. name: "Macro+",
  2555. height: math.unit(300, "meters")
  2556. },
  2557. {
  2558. name: "Macro++",
  2559. height: math.unit(2400, "meters")
  2560. },
  2561. {
  2562. name: "Megamacro",
  2563. height: math.unit(5167, "meters")
  2564. },
  2565. {
  2566. name: "Gigamacro",
  2567. height: math.unit(41769, "miles")
  2568. },
  2569. ]
  2570. ))
  2571. characterMakers.push(() => makeCharacter(
  2572. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2573. {
  2574. front: {
  2575. height: math.unit(7, "feet"),
  2576. weight: math.unit(100, "kg"),
  2577. name: "Front",
  2578. image: {
  2579. source: "./media/characters/adake/front-1.svg"
  2580. }
  2581. },
  2582. frontAlt: {
  2583. height: math.unit(7, "feet"),
  2584. weight: math.unit(100, "kg"),
  2585. name: "Front (Alt)",
  2586. image: {
  2587. source: "./media/characters/adake/front-2.svg",
  2588. extra: 1,
  2589. bottom: 0.01
  2590. }
  2591. },
  2592. back: {
  2593. height: math.unit(7, "feet"),
  2594. weight: math.unit(100, "kg"),
  2595. name: "Back",
  2596. image: {
  2597. source: "./media/characters/adake/back.svg",
  2598. }
  2599. },
  2600. kneel: {
  2601. height: math.unit(5.385, "feet"),
  2602. weight: math.unit(100, "kg"),
  2603. name: "Kneeling",
  2604. image: {
  2605. source: "./media/characters/adake/kneel.svg",
  2606. bottom: 0.052
  2607. }
  2608. },
  2609. },
  2610. [
  2611. {
  2612. name: "Normal",
  2613. height: math.unit(7, "feet"),
  2614. },
  2615. {
  2616. name: "Macro",
  2617. height: math.unit(78, "feet"),
  2618. default: true
  2619. },
  2620. {
  2621. name: "Macro+",
  2622. height: math.unit(300, "meters")
  2623. },
  2624. {
  2625. name: "Macro++",
  2626. height: math.unit(2400, "meters")
  2627. },
  2628. {
  2629. name: "Megamacro",
  2630. height: math.unit(5167, "meters")
  2631. },
  2632. {
  2633. name: "Gigamacro",
  2634. height: math.unit(41769, "miles")
  2635. },
  2636. ]
  2637. ))
  2638. characterMakers.push(() => makeCharacter(
  2639. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2640. {
  2641. front: {
  2642. height: math.unit(1.65, "meters"),
  2643. weight: math.unit(50, "kg"),
  2644. name: "Front",
  2645. image: {
  2646. source: "./media/characters/elijah/front.svg",
  2647. extra: 858 / 830,
  2648. bottom: 95.5 / 953.8559
  2649. }
  2650. },
  2651. back: {
  2652. height: math.unit(1.65, "meters"),
  2653. weight: math.unit(50, "kg"),
  2654. name: "Back",
  2655. image: {
  2656. source: "./media/characters/elijah/back.svg",
  2657. extra: 895 / 850,
  2658. bottom: 5.3 / 897.956
  2659. }
  2660. },
  2661. frontNsfw: {
  2662. height: math.unit(1.65, "meters"),
  2663. weight: math.unit(50, "kg"),
  2664. name: "Front (NSFW)",
  2665. image: {
  2666. source: "./media/characters/elijah/front-nsfw.svg",
  2667. extra: 858 / 830,
  2668. bottom: 95.5 / 953.8559
  2669. }
  2670. },
  2671. backNsfw: {
  2672. height: math.unit(1.65, "meters"),
  2673. weight: math.unit(50, "kg"),
  2674. name: "Back (NSFW)",
  2675. image: {
  2676. source: "./media/characters/elijah/back-nsfw.svg",
  2677. extra: 895 / 850,
  2678. bottom: 5.3 / 897.956
  2679. }
  2680. },
  2681. dick: {
  2682. height: math.unit(1, "feet"),
  2683. name: "Dick",
  2684. image: {
  2685. source: "./media/characters/elijah/dick.svg"
  2686. }
  2687. },
  2688. beakOpen: {
  2689. height: math.unit(1.25, "feet"),
  2690. name: "Beak (Open)",
  2691. image: {
  2692. source: "./media/characters/elijah/beak-open.svg"
  2693. }
  2694. },
  2695. beakShut: {
  2696. height: math.unit(1.25, "feet"),
  2697. name: "Beak (Shut)",
  2698. image: {
  2699. source: "./media/characters/elijah/beak-shut.svg"
  2700. }
  2701. },
  2702. footFlexing: {
  2703. height: math.unit(1.61, "feet"),
  2704. name: "Foot (Flexing)",
  2705. image: {
  2706. source: "./media/characters/elijah/foot-flexing.svg"
  2707. }
  2708. },
  2709. footStepping: {
  2710. height: math.unit(1.44, "feet"),
  2711. name: "Foot (Stepping)",
  2712. image: {
  2713. source: "./media/characters/elijah/foot-stepping.svg"
  2714. }
  2715. },
  2716. plantigradeLeg: {
  2717. height: math.unit(2.34, "feet"),
  2718. name: "Plantigrade Leg",
  2719. image: {
  2720. source: "./media/characters/elijah/plantigrade-leg.svg"
  2721. }
  2722. },
  2723. plantigradeFootLeft: {
  2724. height: math.unit(0.9, "feet"),
  2725. name: "Plantigrade Foot (Left)",
  2726. image: {
  2727. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2728. }
  2729. },
  2730. plantigradeFootRight: {
  2731. height: math.unit(0.9, "feet"),
  2732. name: "Plantigrade Foot (Right)",
  2733. image: {
  2734. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2735. }
  2736. },
  2737. },
  2738. [
  2739. {
  2740. name: "Normal",
  2741. height: math.unit(1.65, "meters")
  2742. },
  2743. {
  2744. name: "Macro",
  2745. height: math.unit(55, "meters"),
  2746. default: true
  2747. },
  2748. {
  2749. name: "Macro+",
  2750. height: math.unit(105, "meters")
  2751. },
  2752. ]
  2753. ))
  2754. characterMakers.push(() => makeCharacter(
  2755. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2756. {
  2757. front: {
  2758. height: math.unit(7 + 2/12, "feet"),
  2759. weight: math.unit(320, "kg"),
  2760. name: "Front",
  2761. image: {
  2762. source: "./media/characters/rai/front.svg",
  2763. extra: 1802/1696,
  2764. bottom: 68/1870
  2765. }
  2766. },
  2767. frontDressed: {
  2768. height: math.unit(7 + 2/12, "feet"),
  2769. weight: math.unit(320, "kg"),
  2770. name: "Front (Dressed)",
  2771. image: {
  2772. source: "./media/characters/rai/front-dressed.svg",
  2773. extra: 1802/1696,
  2774. bottom: 68/1870
  2775. }
  2776. },
  2777. side: {
  2778. height: math.unit(7 + 2/12, "feet"),
  2779. weight: math.unit(320, "kg"),
  2780. name: "Side",
  2781. image: {
  2782. source: "./media/characters/rai/side.svg",
  2783. extra: 1789/1710,
  2784. bottom: 115/1904
  2785. }
  2786. },
  2787. back: {
  2788. height: math.unit(7 + 2/12, "feet"),
  2789. weight: math.unit(320, "kg"),
  2790. name: "Back",
  2791. image: {
  2792. source: "./media/characters/rai/back.svg",
  2793. extra: 1770/1707,
  2794. bottom: 28/1798
  2795. }
  2796. },
  2797. feral: {
  2798. height: math.unit(9.5, "feet"),
  2799. weight: math.unit(640, "kg"),
  2800. name: "Feral",
  2801. image: {
  2802. source: "./media/characters/rai/feral.svg",
  2803. extra: 945/553,
  2804. bottom: 176/1121
  2805. }
  2806. },
  2807. dragon: {
  2808. height: math.unit(23, "feet"),
  2809. weight: math.unit(50000, "lb"),
  2810. name: "Dragon",
  2811. image: {
  2812. source: "./media/characters/rai/dragon.svg",
  2813. extra: 2498 / 2030,
  2814. bottom: 85.2 / 2584
  2815. }
  2816. },
  2817. maw: {
  2818. height: math.unit(1.69, "feet"),
  2819. name: "Maw",
  2820. image: {
  2821. source: "./media/characters/rai/maw.svg"
  2822. }
  2823. },
  2824. },
  2825. [
  2826. {
  2827. name: "Normal",
  2828. height: math.unit(7 + 2/12, "feet")
  2829. },
  2830. {
  2831. name: "Big",
  2832. height: math.unit(11, "feet")
  2833. },
  2834. {
  2835. name: "Macro",
  2836. height: math.unit(302, "feet"),
  2837. default: true
  2838. },
  2839. ]
  2840. ))
  2841. characterMakers.push(() => makeCharacter(
  2842. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2843. {
  2844. frontDressed: {
  2845. height: math.unit(216, "feet"),
  2846. weight: math.unit(7000000, "lb"),
  2847. name: "Front (Dressed)",
  2848. image: {
  2849. source: "./media/characters/jazzy/front-dressed.svg",
  2850. extra: 2738 / 2651,
  2851. bottom: 41.8 / 2786
  2852. }
  2853. },
  2854. backDressed: {
  2855. height: math.unit(216, "feet"),
  2856. weight: math.unit(7000000, "lb"),
  2857. name: "Back (Dressed)",
  2858. image: {
  2859. source: "./media/characters/jazzy/back-dressed.svg",
  2860. extra: 2775 / 2673,
  2861. bottom: 36.8 / 2817
  2862. }
  2863. },
  2864. front: {
  2865. height: math.unit(216, "feet"),
  2866. weight: math.unit(7000000, "lb"),
  2867. name: "Front",
  2868. image: {
  2869. source: "./media/characters/jazzy/front.svg",
  2870. extra: 2738 / 2651,
  2871. bottom: 41.8 / 2786
  2872. }
  2873. },
  2874. back: {
  2875. height: math.unit(216, "feet"),
  2876. weight: math.unit(7000000, "lb"),
  2877. name: "Back",
  2878. image: {
  2879. source: "./media/characters/jazzy/back.svg",
  2880. extra: 2775 / 2673,
  2881. bottom: 36.8 / 2817
  2882. }
  2883. },
  2884. maw: {
  2885. height: math.unit(20, "feet"),
  2886. name: "Maw",
  2887. image: {
  2888. source: "./media/characters/jazzy/maw.svg"
  2889. }
  2890. },
  2891. paws: {
  2892. height: math.unit(27.5, "feet"),
  2893. name: "Paws",
  2894. image: {
  2895. source: "./media/characters/jazzy/paws.svg"
  2896. }
  2897. },
  2898. eye: {
  2899. height: math.unit(4.4, "feet"),
  2900. name: "Eye",
  2901. image: {
  2902. source: "./media/characters/jazzy/eye.svg"
  2903. }
  2904. },
  2905. droneOffense: {
  2906. height: math.unit(9.5, "inches"),
  2907. name: "Drone (Offense)",
  2908. image: {
  2909. source: "./media/characters/jazzy/drone-offense.svg"
  2910. }
  2911. },
  2912. droneRecon: {
  2913. height: math.unit(9.5, "inches"),
  2914. name: "Drone (Recon)",
  2915. image: {
  2916. source: "./media/characters/jazzy/drone-recon.svg"
  2917. }
  2918. },
  2919. droneDefense: {
  2920. height: math.unit(9.5, "inches"),
  2921. name: "Drone (Defense)",
  2922. image: {
  2923. source: "./media/characters/jazzy/drone-defense.svg"
  2924. }
  2925. },
  2926. },
  2927. [
  2928. {
  2929. name: "Macro",
  2930. height: math.unit(216, "feet"),
  2931. default: true
  2932. },
  2933. ]
  2934. ))
  2935. characterMakers.push(() => makeCharacter(
  2936. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2937. {
  2938. front: {
  2939. height: math.unit(9 + 6/12, "feet"),
  2940. weight: math.unit(700, "lb"),
  2941. name: "Front",
  2942. image: {
  2943. source: "./media/characters/flamm/front.svg",
  2944. extra: 1751/1632,
  2945. bottom: 46/1797
  2946. }
  2947. },
  2948. buff: {
  2949. height: math.unit(9 + 6/12, "feet"),
  2950. weight: math.unit(950, "lb"),
  2951. name: "Buff",
  2952. image: {
  2953. source: "./media/characters/flamm/buff.svg",
  2954. extra: 3018/2874,
  2955. bottom: 221/3239
  2956. }
  2957. },
  2958. },
  2959. [
  2960. {
  2961. name: "Normal",
  2962. height: math.unit(9.5, "feet")
  2963. },
  2964. {
  2965. name: "Macro",
  2966. height: math.unit(200, "feet"),
  2967. default: true
  2968. },
  2969. ]
  2970. ))
  2971. characterMakers.push(() => makeCharacter(
  2972. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2973. {
  2974. front: {
  2975. height: math.unit(5 + 3/12, "feet"),
  2976. weight: math.unit(60, "kg"),
  2977. name: "Front",
  2978. image: {
  2979. source: "./media/characters/zephiro/front.svg",
  2980. extra: 2309 / 2162,
  2981. bottom: 0.069
  2982. }
  2983. },
  2984. side: {
  2985. height: math.unit(5 + 3/12, "feet"),
  2986. weight: math.unit(60, "kg"),
  2987. name: "Side",
  2988. image: {
  2989. source: "./media/characters/zephiro/side.svg",
  2990. extra: 2403 / 2279,
  2991. bottom: 0.015
  2992. }
  2993. },
  2994. back: {
  2995. height: math.unit(5 + 3/12, "feet"),
  2996. weight: math.unit(60, "kg"),
  2997. name: "Back",
  2998. image: {
  2999. source: "./media/characters/zephiro/back.svg",
  3000. extra: 2373 / 2244,
  3001. bottom: 0.013
  3002. }
  3003. },
  3004. hand: {
  3005. height: math.unit(0.68, "feet"),
  3006. name: "Hand",
  3007. image: {
  3008. source: "./media/characters/zephiro/hand.svg"
  3009. }
  3010. },
  3011. paw: {
  3012. height: math.unit(1, "feet"),
  3013. name: "Paw",
  3014. image: {
  3015. source: "./media/characters/zephiro/paw.svg"
  3016. }
  3017. },
  3018. beans: {
  3019. height: math.unit(0.93, "feet"),
  3020. name: "Beans",
  3021. image: {
  3022. source: "./media/characters/zephiro/beans.svg"
  3023. }
  3024. },
  3025. },
  3026. [
  3027. {
  3028. name: "Micro",
  3029. height: math.unit(3, "inches")
  3030. },
  3031. {
  3032. name: "Normal",
  3033. height: math.unit(5 + 3 / 12, "feet"),
  3034. default: true
  3035. },
  3036. {
  3037. name: "Macro",
  3038. height: math.unit(118, "feet")
  3039. },
  3040. ]
  3041. ))
  3042. characterMakers.push(() => makeCharacter(
  3043. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3044. {
  3045. front: {
  3046. height: math.unit(5, "feet"),
  3047. weight: math.unit(90, "kg"),
  3048. name: "Front",
  3049. image: {
  3050. source: "./media/characters/fory/front.svg",
  3051. extra: 2862 / 2674,
  3052. bottom: 180 / 3043.8
  3053. }
  3054. },
  3055. back: {
  3056. height: math.unit(5, "feet"),
  3057. weight: math.unit(90, "kg"),
  3058. name: "Back",
  3059. image: {
  3060. source: "./media/characters/fory/back.svg",
  3061. extra: 2962 / 2791,
  3062. bottom: 106 / 3071.8
  3063. }
  3064. },
  3065. foot: {
  3066. height: math.unit(2.14, "feet"),
  3067. name: "Foot",
  3068. image: {
  3069. source: "./media/characters/fory/foot.svg"
  3070. }
  3071. },
  3072. },
  3073. [
  3074. {
  3075. name: "Normal",
  3076. height: math.unit(5, "feet")
  3077. },
  3078. {
  3079. name: "Macro",
  3080. height: math.unit(50, "feet"),
  3081. default: true
  3082. },
  3083. {
  3084. name: "Megamacro",
  3085. height: math.unit(10, "miles")
  3086. },
  3087. {
  3088. name: "Gigamacro",
  3089. height: math.unit(5, "earths")
  3090. },
  3091. ]
  3092. ))
  3093. characterMakers.push(() => makeCharacter(
  3094. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3095. {
  3096. front: {
  3097. height: math.unit(7, "feet"),
  3098. weight: math.unit(90, "kg"),
  3099. name: "Front",
  3100. image: {
  3101. source: "./media/characters/kurrikage/front.svg",
  3102. extra: 1845/1733,
  3103. bottom: 119/1964
  3104. }
  3105. },
  3106. back: {
  3107. height: math.unit(7, "feet"),
  3108. weight: math.unit(90, "kg"),
  3109. name: "Back",
  3110. image: {
  3111. source: "./media/characters/kurrikage/back.svg",
  3112. extra: 1790/1677,
  3113. bottom: 61/1851
  3114. }
  3115. },
  3116. dressed: {
  3117. height: math.unit(7, "feet"),
  3118. weight: math.unit(90, "kg"),
  3119. name: "Dressed",
  3120. image: {
  3121. source: "./media/characters/kurrikage/dressed.svg",
  3122. extra: 1845/1733,
  3123. bottom: 119/1964
  3124. }
  3125. },
  3126. foot: {
  3127. height: math.unit(1.5, "feet"),
  3128. name: "Foot",
  3129. image: {
  3130. source: "./media/characters/kurrikage/foot.svg"
  3131. }
  3132. },
  3133. staff: {
  3134. height: math.unit(6.7, "feet"),
  3135. name: "Staff",
  3136. image: {
  3137. source: "./media/characters/kurrikage/staff.svg"
  3138. }
  3139. },
  3140. peek: {
  3141. height: math.unit(1.05, "feet"),
  3142. name: "Peeking",
  3143. image: {
  3144. source: "./media/characters/kurrikage/peek.svg",
  3145. bottom: 0.08
  3146. }
  3147. },
  3148. },
  3149. [
  3150. {
  3151. name: "Normal",
  3152. height: math.unit(12, "feet"),
  3153. default: true
  3154. },
  3155. {
  3156. name: "Big",
  3157. height: math.unit(20, "feet")
  3158. },
  3159. {
  3160. name: "Macro",
  3161. height: math.unit(500, "feet")
  3162. },
  3163. {
  3164. name: "Megamacro",
  3165. height: math.unit(20, "miles")
  3166. },
  3167. ]
  3168. ))
  3169. characterMakers.push(() => makeCharacter(
  3170. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3171. {
  3172. front: {
  3173. height: math.unit(6, "feet"),
  3174. weight: math.unit(75, "kg"),
  3175. name: "Front",
  3176. image: {
  3177. source: "./media/characters/shingo/front.svg",
  3178. extra: 1900/1825,
  3179. bottom: 82/1982
  3180. }
  3181. },
  3182. side: {
  3183. height: math.unit(6, "feet"),
  3184. weight: math.unit(75, "kg"),
  3185. name: "Side",
  3186. image: {
  3187. source: "./media/characters/shingo/side.svg",
  3188. extra: 1930/1865,
  3189. bottom: 16/1946
  3190. }
  3191. },
  3192. back: {
  3193. height: math.unit(6, "feet"),
  3194. weight: math.unit(75, "kg"),
  3195. name: "Back",
  3196. image: {
  3197. source: "./media/characters/shingo/back.svg",
  3198. extra: 1922/1852,
  3199. bottom: 16/1938
  3200. }
  3201. },
  3202. frontDressed: {
  3203. height: math.unit(6, "feet"),
  3204. weight: math.unit(150, "lb"),
  3205. name: "Front-dressed",
  3206. image: {
  3207. source: "./media/characters/shingo/front-dressed.svg",
  3208. extra: 1900/1825,
  3209. bottom: 82/1982
  3210. }
  3211. },
  3212. paw: {
  3213. height: math.unit(1.29, "feet"),
  3214. name: "Paw",
  3215. image: {
  3216. source: "./media/characters/shingo/paw.svg"
  3217. }
  3218. },
  3219. hand: {
  3220. height: math.unit(1.07, "feet"),
  3221. name: "Hand",
  3222. image: {
  3223. source: "./media/characters/shingo/hand.svg"
  3224. }
  3225. },
  3226. frontAlt: {
  3227. height: math.unit(6, "feet"),
  3228. weight: math.unit(75, "kg"),
  3229. name: "Front (Alt)",
  3230. image: {
  3231. source: "./media/characters/shingo/front-alt.svg",
  3232. extra: 3511 / 3338,
  3233. bottom: 0.005
  3234. }
  3235. },
  3236. frontAlt2: {
  3237. height: math.unit(6, "feet"),
  3238. weight: math.unit(75, "kg"),
  3239. name: "Front (Alt 2)",
  3240. image: {
  3241. source: "./media/characters/shingo/front-alt-2.svg",
  3242. extra: 706/681,
  3243. bottom: 11/717
  3244. }
  3245. },
  3246. pawAlt: {
  3247. height: math.unit(1, "feet"),
  3248. name: "Paw (Alt)",
  3249. image: {
  3250. source: "./media/characters/shingo/paw-alt.svg"
  3251. }
  3252. },
  3253. },
  3254. [
  3255. {
  3256. name: "Micro",
  3257. height: math.unit(4, "inches")
  3258. },
  3259. {
  3260. name: "Normal",
  3261. height: math.unit(6, "feet"),
  3262. default: true
  3263. },
  3264. {
  3265. name: "Macro",
  3266. height: math.unit(108, "feet")
  3267. },
  3268. {
  3269. name: "Macro+",
  3270. height: math.unit(1500, "feet")
  3271. },
  3272. ]
  3273. ))
  3274. characterMakers.push(() => makeCharacter(
  3275. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3276. {
  3277. side: {
  3278. height: math.unit(6, "feet"),
  3279. weight: math.unit(75, "kg"),
  3280. name: "Side",
  3281. image: {
  3282. source: "./media/characters/aigey/side.svg"
  3283. }
  3284. },
  3285. },
  3286. [
  3287. {
  3288. name: "Macro",
  3289. height: math.unit(200, "feet"),
  3290. default: true
  3291. },
  3292. {
  3293. name: "Megamacro",
  3294. height: math.unit(100, "miles")
  3295. },
  3296. ]
  3297. )
  3298. )
  3299. characterMakers.push(() => makeCharacter(
  3300. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3301. {
  3302. front: {
  3303. height: math.unit(5 + 5 / 12, "feet"),
  3304. weight: math.unit(75, "kg"),
  3305. name: "Front",
  3306. image: {
  3307. source: "./media/characters/natasha/front.svg",
  3308. extra: 859 / 824,
  3309. bottom: 23 / 879.6
  3310. }
  3311. },
  3312. frontNsfw: {
  3313. height: math.unit(5 + 5 / 12, "feet"),
  3314. weight: math.unit(75, "kg"),
  3315. name: "Front (NSFW)",
  3316. image: {
  3317. source: "./media/characters/natasha/front-nsfw.svg",
  3318. extra: 859 / 824,
  3319. bottom: 23 / 879.6
  3320. }
  3321. },
  3322. frontErect: {
  3323. height: math.unit(5 + 5 / 12, "feet"),
  3324. weight: math.unit(75, "kg"),
  3325. name: "Front (Erect)",
  3326. image: {
  3327. source: "./media/characters/natasha/front-erect.svg",
  3328. extra: 859 / 824,
  3329. bottom: 23 / 879.6
  3330. }
  3331. },
  3332. back: {
  3333. height: math.unit(5 + 5 / 12, "feet"),
  3334. weight: math.unit(75, "kg"),
  3335. name: "Back",
  3336. image: {
  3337. source: "./media/characters/natasha/back.svg",
  3338. extra: 887.9 / 852.6,
  3339. bottom: 9.7 / 896.4
  3340. }
  3341. },
  3342. backAlt: {
  3343. height: math.unit(5 + 5 / 12, "feet"),
  3344. weight: math.unit(75, "kg"),
  3345. name: "Back (Alt)",
  3346. image: {
  3347. source: "./media/characters/natasha/back-alt.svg",
  3348. extra: 1236.7 / 1192,
  3349. bottom: 22.3 / 1258.2
  3350. }
  3351. },
  3352. dick: {
  3353. height: math.unit(1.772, "feet"),
  3354. name: "Dick",
  3355. image: {
  3356. source: "./media/characters/natasha/dick.svg"
  3357. }
  3358. },
  3359. paw: {
  3360. height: math.unit(0.250, "meters"),
  3361. name: "Paw",
  3362. image: {
  3363. source: "./media/characters/natasha/paw.svg"
  3364. },
  3365. extraAttributes: {
  3366. "toeSize": {
  3367. name: "Toe Size",
  3368. power: 2,
  3369. type: "area",
  3370. base: math.unit(0.0024, "m^2")
  3371. },
  3372. "padSize": {
  3373. name: "Pad Size",
  3374. power: 2,
  3375. type: "area",
  3376. base: math.unit(0.00889, "m^2")
  3377. },
  3378. "pawSize": {
  3379. name: "Paw Size",
  3380. power: 2,
  3381. type: "area",
  3382. base: math.unit(0.023667, "m^2")
  3383. },
  3384. }
  3385. },
  3386. },
  3387. [
  3388. {
  3389. name: "Shortstack",
  3390. height: math.unit(3, "feet"),
  3391. default: true
  3392. },
  3393. {
  3394. name: "Normal",
  3395. height: math.unit(5 + 5 / 12, "feet")
  3396. },
  3397. {
  3398. name: "Large",
  3399. height: math.unit(12, "feet")
  3400. },
  3401. {
  3402. name: "Macro",
  3403. height: math.unit(100, "feet")
  3404. },
  3405. {
  3406. name: "Macro+",
  3407. height: math.unit(260, "feet")
  3408. },
  3409. {
  3410. name: "Macro++",
  3411. height: math.unit(1, "mile")
  3412. },
  3413. ]
  3414. ))
  3415. characterMakers.push(() => makeCharacter(
  3416. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3417. {
  3418. front: {
  3419. height: math.unit(6, "feet"),
  3420. weight: math.unit(75, "kg"),
  3421. name: "Front",
  3422. image: {
  3423. source: "./media/characters/malik/front.svg",
  3424. extra: 1750/1561,
  3425. bottom: 80/1830
  3426. },
  3427. extraAttributes: {
  3428. "toeSize": {
  3429. name: "Toe Size",
  3430. power: 2,
  3431. type: "area",
  3432. base: math.unit(0.0159, "m^2")
  3433. },
  3434. "pawSize": {
  3435. name: "Paw Size",
  3436. power: 2,
  3437. type: "area",
  3438. base: math.unit(0.09834, "m^2")
  3439. },
  3440. }
  3441. },
  3442. side: {
  3443. height: math.unit(6, "feet"),
  3444. weight: math.unit(75, "kg"),
  3445. name: "Side",
  3446. image: {
  3447. source: "./media/characters/malik/side.svg",
  3448. extra: 1802/1685,
  3449. bottom: 42/1844
  3450. },
  3451. extraAttributes: {
  3452. "toeSize": {
  3453. name: "Toe Size",
  3454. power: 2,
  3455. type: "area",
  3456. base: math.unit(0.0159, "m^2")
  3457. },
  3458. "pawSize": {
  3459. name: "Paw Size",
  3460. power: 2,
  3461. type: "area",
  3462. base: math.unit(0.09834, "m^2")
  3463. },
  3464. }
  3465. },
  3466. back: {
  3467. height: math.unit(6, "feet"),
  3468. weight: math.unit(75, "kg"),
  3469. name: "Back",
  3470. image: {
  3471. source: "./media/characters/malik/back.svg",
  3472. extra: 1803/1607,
  3473. bottom: 33/1836
  3474. },
  3475. extraAttributes: {
  3476. "toeSize": {
  3477. name: "Toe Size",
  3478. power: 2,
  3479. type: "area",
  3480. base: math.unit(0.0159, "m^2")
  3481. },
  3482. "pawSize": {
  3483. name: "Paw Size",
  3484. power: 2,
  3485. type: "area",
  3486. base: math.unit(0.09834, "m^2")
  3487. },
  3488. }
  3489. },
  3490. },
  3491. [
  3492. {
  3493. name: "Macro",
  3494. height: math.unit(156, "feet"),
  3495. default: true
  3496. },
  3497. {
  3498. name: "Macro+",
  3499. height: math.unit(1188, "feet")
  3500. },
  3501. ]
  3502. ))
  3503. characterMakers.push(() => makeCharacter(
  3504. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3505. {
  3506. front: {
  3507. height: math.unit(6, "feet"),
  3508. weight: math.unit(75, "kg"),
  3509. name: "Front",
  3510. image: {
  3511. source: "./media/characters/sefer/front.svg",
  3512. extra: 848 / 659,
  3513. bottom: 28.3 / 876.442
  3514. }
  3515. },
  3516. back: {
  3517. height: math.unit(6, "feet"),
  3518. weight: math.unit(75, "kg"),
  3519. name: "Back",
  3520. image: {
  3521. source: "./media/characters/sefer/back.svg",
  3522. extra: 864 / 695,
  3523. bottom: 10 / 871
  3524. }
  3525. },
  3526. frontDressed: {
  3527. height: math.unit(6, "feet"),
  3528. weight: math.unit(75, "kg"),
  3529. name: "Front (Dressed)",
  3530. image: {
  3531. source: "./media/characters/sefer/front-dressed.svg",
  3532. extra: 839 / 653,
  3533. bottom: 37.6 / 878
  3534. }
  3535. },
  3536. },
  3537. [
  3538. {
  3539. name: "Normal",
  3540. height: math.unit(6, "feet"),
  3541. default: true
  3542. },
  3543. ]
  3544. ))
  3545. characterMakers.push(() => makeCharacter(
  3546. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3547. {
  3548. body: {
  3549. height: math.unit(2.2428, "meter"),
  3550. weight: math.unit(124.738, "kg"),
  3551. name: "Body",
  3552. image: {
  3553. extra: 1225 / 1050,
  3554. source: "./media/characters/north/front.svg"
  3555. }
  3556. }
  3557. },
  3558. [
  3559. {
  3560. name: "Micro",
  3561. height: math.unit(4, "inches")
  3562. },
  3563. {
  3564. name: "Macro",
  3565. height: math.unit(63, "meters")
  3566. },
  3567. {
  3568. name: "Megamacro",
  3569. height: math.unit(101, "miles"),
  3570. default: true
  3571. }
  3572. ]
  3573. ))
  3574. characterMakers.push(() => makeCharacter(
  3575. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3576. {
  3577. angled: {
  3578. height: math.unit(4, "meter"),
  3579. weight: math.unit(150, "kg"),
  3580. name: "Angled",
  3581. image: {
  3582. source: "./media/characters/talan/angled-sfw.svg",
  3583. bottom: 29 / 3734
  3584. }
  3585. },
  3586. angledNsfw: {
  3587. height: math.unit(4, "meter"),
  3588. weight: math.unit(150, "kg"),
  3589. name: "Angled (NSFW)",
  3590. image: {
  3591. source: "./media/characters/talan/angled-nsfw.svg",
  3592. bottom: 29 / 3734
  3593. }
  3594. },
  3595. frontNsfw: {
  3596. height: math.unit(4, "meter"),
  3597. weight: math.unit(150, "kg"),
  3598. name: "Front (NSFW)",
  3599. image: {
  3600. source: "./media/characters/talan/front-nsfw.svg",
  3601. bottom: 29 / 3734
  3602. }
  3603. },
  3604. sideNsfw: {
  3605. height: math.unit(4, "meter"),
  3606. weight: math.unit(150, "kg"),
  3607. name: "Side (NSFW)",
  3608. image: {
  3609. source: "./media/characters/talan/side-nsfw.svg",
  3610. bottom: 29 / 3734
  3611. }
  3612. },
  3613. back: {
  3614. height: math.unit(4, "meter"),
  3615. weight: math.unit(150, "kg"),
  3616. name: "Back",
  3617. image: {
  3618. source: "./media/characters/talan/back.svg"
  3619. }
  3620. },
  3621. dickBottom: {
  3622. height: math.unit(0.621, "meter"),
  3623. name: "Dick (Bottom)",
  3624. image: {
  3625. source: "./media/characters/talan/dick-bottom.svg"
  3626. }
  3627. },
  3628. dickTop: {
  3629. height: math.unit(0.621, "meter"),
  3630. name: "Dick (Top)",
  3631. image: {
  3632. source: "./media/characters/talan/dick-top.svg"
  3633. }
  3634. },
  3635. dickSide: {
  3636. height: math.unit(0.305, "meter"),
  3637. name: "Dick (Side)",
  3638. image: {
  3639. source: "./media/characters/talan/dick-side.svg"
  3640. }
  3641. },
  3642. dickFront: {
  3643. height: math.unit(0.305, "meter"),
  3644. name: "Dick (Front)",
  3645. image: {
  3646. source: "./media/characters/talan/dick-front.svg"
  3647. }
  3648. },
  3649. },
  3650. [
  3651. {
  3652. name: "Normal",
  3653. height: math.unit(4, "meters")
  3654. },
  3655. {
  3656. name: "Macro",
  3657. height: math.unit(100, "meters")
  3658. },
  3659. {
  3660. name: "Megamacro",
  3661. height: math.unit(2, "miles"),
  3662. default: true
  3663. },
  3664. {
  3665. name: "Gigamacro",
  3666. height: math.unit(5000, "miles")
  3667. },
  3668. {
  3669. name: "Teramacro",
  3670. height: math.unit(100, "parsecs")
  3671. }
  3672. ]
  3673. ))
  3674. characterMakers.push(() => makeCharacter(
  3675. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3676. {
  3677. front: {
  3678. height: math.unit(2, "meter"),
  3679. weight: math.unit(90, "kg"),
  3680. name: "Front",
  3681. image: {
  3682. source: "./media/characters/gael'rathus/front.svg"
  3683. }
  3684. },
  3685. frontAlt: {
  3686. height: math.unit(2, "meter"),
  3687. weight: math.unit(90, "kg"),
  3688. name: "Front (alt)",
  3689. image: {
  3690. source: "./media/characters/gael'rathus/front-alt.svg"
  3691. }
  3692. },
  3693. frontAlt2: {
  3694. height: math.unit(2, "meter"),
  3695. weight: math.unit(90, "kg"),
  3696. name: "Front (alt 2)",
  3697. image: {
  3698. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3699. }
  3700. }
  3701. },
  3702. [
  3703. {
  3704. name: "Normal",
  3705. height: math.unit(9, "feet"),
  3706. default: true
  3707. },
  3708. {
  3709. name: "Large",
  3710. height: math.unit(25, "feet")
  3711. },
  3712. {
  3713. name: "Macro",
  3714. height: math.unit(0.25, "miles")
  3715. },
  3716. {
  3717. name: "Megamacro",
  3718. height: math.unit(10, "miles")
  3719. }
  3720. ]
  3721. ))
  3722. characterMakers.push(() => makeCharacter(
  3723. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3724. {
  3725. side: {
  3726. height: math.unit(2, "meter"),
  3727. weight: math.unit(140, "kg"),
  3728. name: "Side",
  3729. image: {
  3730. source: "./media/characters/sosha/side.svg",
  3731. extra: 1170/1006,
  3732. bottom: 94/1264
  3733. }
  3734. },
  3735. maw: {
  3736. height: math.unit(2.87, "feet"),
  3737. name: "Maw",
  3738. image: {
  3739. source: "./media/characters/sosha/maw.svg",
  3740. extra: 966/865,
  3741. bottom: 0/966
  3742. }
  3743. },
  3744. cooch: {
  3745. height: math.unit(5.6, "feet"),
  3746. name: "Cooch",
  3747. image: {
  3748. source: "./media/characters/sosha/cooch.svg"
  3749. }
  3750. },
  3751. },
  3752. [
  3753. {
  3754. name: "Normal",
  3755. height: math.unit(12, "feet"),
  3756. default: true
  3757. }
  3758. ]
  3759. ))
  3760. characterMakers.push(() => makeCharacter(
  3761. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3762. {
  3763. side: {
  3764. height: math.unit(5 + 5 / 12, "feet"),
  3765. weight: math.unit(170, "kg"),
  3766. name: "Side",
  3767. image: {
  3768. source: "./media/characters/runnola/side.svg",
  3769. extra: 741 / 448,
  3770. bottom: 0.05
  3771. }
  3772. },
  3773. },
  3774. [
  3775. {
  3776. name: "Small",
  3777. height: math.unit(3, "feet")
  3778. },
  3779. {
  3780. name: "Normal",
  3781. height: math.unit(5 + 5 / 12, "feet"),
  3782. default: true
  3783. },
  3784. {
  3785. name: "Big",
  3786. height: math.unit(10, "feet")
  3787. },
  3788. ]
  3789. ))
  3790. characterMakers.push(() => makeCharacter(
  3791. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3792. {
  3793. front: {
  3794. height: math.unit(2, "meter"),
  3795. weight: math.unit(50, "kg"),
  3796. name: "Front",
  3797. image: {
  3798. source: "./media/characters/kurribird/front.svg",
  3799. bottom: 0.015
  3800. }
  3801. },
  3802. frontAlt: {
  3803. height: math.unit(1.5, "meter"),
  3804. weight: math.unit(50, "kg"),
  3805. name: "Front (Alt)",
  3806. image: {
  3807. source: "./media/characters/kurribird/front-alt.svg",
  3808. extra: 1.45
  3809. }
  3810. },
  3811. },
  3812. [
  3813. {
  3814. name: "Normal",
  3815. height: math.unit(7, "feet")
  3816. },
  3817. {
  3818. name: "Big",
  3819. height: math.unit(12, "feet"),
  3820. default: true
  3821. },
  3822. {
  3823. name: "Macro",
  3824. height: math.unit(1500, "feet")
  3825. },
  3826. {
  3827. name: "Megamacro",
  3828. height: math.unit(2, "miles")
  3829. }
  3830. ]
  3831. ))
  3832. characterMakers.push(() => makeCharacter(
  3833. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3834. {
  3835. front: {
  3836. height: math.unit(2, "meter"),
  3837. weight: math.unit(80, "kg"),
  3838. name: "Front",
  3839. image: {
  3840. source: "./media/characters/elbial/front.svg",
  3841. extra: 1643 / 1556,
  3842. bottom: 60.2 / 1696
  3843. }
  3844. },
  3845. side: {
  3846. height: math.unit(2, "meter"),
  3847. weight: math.unit(80, "kg"),
  3848. name: "Side",
  3849. image: {
  3850. source: "./media/characters/elbial/side.svg",
  3851. extra: 1601/1528,
  3852. bottom: 97/1698
  3853. }
  3854. },
  3855. back: {
  3856. height: math.unit(2, "meter"),
  3857. weight: math.unit(80, "kg"),
  3858. name: "Back",
  3859. image: {
  3860. source: "./media/characters/elbial/back.svg",
  3861. extra: 1653/1569,
  3862. bottom: 20/1673
  3863. }
  3864. },
  3865. frontDressed: {
  3866. height: math.unit(2, "meter"),
  3867. weight: math.unit(80, "kg"),
  3868. name: "Front (Dressed)",
  3869. image: {
  3870. source: "./media/characters/elbial/front-dressed.svg",
  3871. extra: 1638/1569,
  3872. bottom: 70/1708
  3873. }
  3874. },
  3875. genitals: {
  3876. height: math.unit(2 / 3.367, "meter"),
  3877. name: "Genitals",
  3878. image: {
  3879. source: "./media/characters/elbial/genitals.svg"
  3880. }
  3881. },
  3882. },
  3883. [
  3884. {
  3885. name: "Large",
  3886. height: math.unit(100, "feet")
  3887. },
  3888. {
  3889. name: "Macro",
  3890. height: math.unit(500, "feet"),
  3891. default: true
  3892. },
  3893. {
  3894. name: "Megamacro",
  3895. height: math.unit(10, "miles")
  3896. },
  3897. {
  3898. name: "Gigamacro",
  3899. height: math.unit(25000, "miles")
  3900. },
  3901. {
  3902. name: "Full-Size",
  3903. height: math.unit(8000000, "gigaparsecs")
  3904. }
  3905. ]
  3906. ))
  3907. characterMakers.push(() => makeCharacter(
  3908. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3909. {
  3910. front: {
  3911. height: math.unit(2, "meter"),
  3912. weight: math.unit(60, "kg"),
  3913. name: "Front",
  3914. image: {
  3915. source: "./media/characters/noah/front.svg"
  3916. }
  3917. },
  3918. talons: {
  3919. height: math.unit(0.315, "meter"),
  3920. name: "Talons",
  3921. image: {
  3922. source: "./media/characters/noah/talons.svg"
  3923. }
  3924. }
  3925. },
  3926. [
  3927. {
  3928. name: "Large",
  3929. height: math.unit(50, "feet")
  3930. },
  3931. {
  3932. name: "Macro",
  3933. height: math.unit(750, "feet"),
  3934. default: true
  3935. },
  3936. {
  3937. name: "Megamacro",
  3938. height: math.unit(50, "miles")
  3939. },
  3940. {
  3941. name: "Gigamacro",
  3942. height: math.unit(100000, "miles")
  3943. },
  3944. {
  3945. name: "Full-Size",
  3946. height: math.unit(3000000000, "miles")
  3947. }
  3948. ]
  3949. ))
  3950. characterMakers.push(() => makeCharacter(
  3951. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3952. {
  3953. front: {
  3954. height: math.unit(2, "meter"),
  3955. weight: math.unit(80, "kg"),
  3956. name: "Front",
  3957. image: {
  3958. source: "./media/characters/natalya/front.svg"
  3959. }
  3960. },
  3961. back: {
  3962. height: math.unit(2, "meter"),
  3963. weight: math.unit(80, "kg"),
  3964. name: "Back",
  3965. image: {
  3966. source: "./media/characters/natalya/back.svg"
  3967. }
  3968. }
  3969. },
  3970. [
  3971. {
  3972. name: "Normal",
  3973. height: math.unit(150, "feet"),
  3974. default: true
  3975. },
  3976. {
  3977. name: "Megamacro",
  3978. height: math.unit(5, "miles")
  3979. },
  3980. {
  3981. name: "Full-Size",
  3982. height: math.unit(600, "kiloparsecs")
  3983. }
  3984. ]
  3985. ))
  3986. characterMakers.push(() => makeCharacter(
  3987. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3988. {
  3989. front: {
  3990. height: math.unit(2, "meter"),
  3991. weight: math.unit(50, "kg"),
  3992. name: "Front",
  3993. image: {
  3994. source: "./media/characters/erestrebah/front.svg",
  3995. extra: 1262/1162,
  3996. bottom: 96/1358
  3997. }
  3998. },
  3999. back: {
  4000. height: math.unit(2, "meter"),
  4001. weight: math.unit(50, "kg"),
  4002. name: "Back",
  4003. image: {
  4004. source: "./media/characters/erestrebah/back.svg",
  4005. extra: 1257/1139,
  4006. bottom: 13/1270
  4007. }
  4008. },
  4009. wing: {
  4010. height: math.unit(2, "meter"),
  4011. weight: math.unit(50, "kg"),
  4012. name: "Wing",
  4013. image: {
  4014. source: "./media/characters/erestrebah/wing.svg",
  4015. extra: 1262/1162,
  4016. bottom: 96/1358
  4017. }
  4018. },
  4019. mouth: {
  4020. height: math.unit(0.39, "feet"),
  4021. name: "Mouth",
  4022. image: {
  4023. source: "./media/characters/erestrebah/mouth.svg"
  4024. }
  4025. }
  4026. },
  4027. [
  4028. {
  4029. name: "Normal",
  4030. height: math.unit(10, "feet")
  4031. },
  4032. {
  4033. name: "Large",
  4034. height: math.unit(50, "feet"),
  4035. default: true
  4036. },
  4037. {
  4038. name: "Macro",
  4039. height: math.unit(300, "feet")
  4040. },
  4041. {
  4042. name: "Macro+",
  4043. height: math.unit(750, "feet")
  4044. },
  4045. {
  4046. name: "Megamacro",
  4047. height: math.unit(3, "miles")
  4048. }
  4049. ]
  4050. ))
  4051. characterMakers.push(() => makeCharacter(
  4052. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4053. {
  4054. front: {
  4055. height: math.unit(2, "meter"),
  4056. weight: math.unit(80, "kg"),
  4057. name: "Front",
  4058. image: {
  4059. source: "./media/characters/jennifer/front.svg",
  4060. bottom: 0.11,
  4061. extra: 1.16
  4062. }
  4063. },
  4064. frontAlt: {
  4065. height: math.unit(2, "meter"),
  4066. weight: math.unit(80, "kg"),
  4067. name: "Front (Alt)",
  4068. image: {
  4069. source: "./media/characters/jennifer/front-alt.svg"
  4070. }
  4071. }
  4072. },
  4073. [
  4074. {
  4075. name: "Canon Height",
  4076. height: math.unit(120, "feet"),
  4077. default: true
  4078. },
  4079. {
  4080. name: "Macro+",
  4081. height: math.unit(300, "feet")
  4082. },
  4083. {
  4084. name: "Megamacro",
  4085. height: math.unit(20000, "feet")
  4086. }
  4087. ]
  4088. ))
  4089. characterMakers.push(() => makeCharacter(
  4090. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4091. {
  4092. front: {
  4093. height: math.unit(2, "meter"),
  4094. weight: math.unit(50, "kg"),
  4095. name: "Front",
  4096. image: {
  4097. source: "./media/characters/kalista/front.svg",
  4098. extra: 1314/1145,
  4099. bottom: 101/1415
  4100. }
  4101. },
  4102. back: {
  4103. height: math.unit(2, "meter"),
  4104. weight: math.unit(50, "kg"),
  4105. name: "Back",
  4106. image: {
  4107. source: "./media/characters/kalista/back.svg",
  4108. extra: 1366 / 1156,
  4109. bottom: 33.9 / 1362.78
  4110. }
  4111. }
  4112. },
  4113. [
  4114. {
  4115. name: "Uncomfortably Small",
  4116. height: math.unit(10, "feet")
  4117. },
  4118. {
  4119. name: "Small",
  4120. height: math.unit(30, "feet")
  4121. },
  4122. {
  4123. name: "Macro",
  4124. height: math.unit(100, "feet"),
  4125. default: true
  4126. },
  4127. {
  4128. name: "Macro+",
  4129. height: math.unit(2000, "feet")
  4130. },
  4131. {
  4132. name: "True Form",
  4133. height: math.unit(8924, "miles")
  4134. }
  4135. ]
  4136. ))
  4137. characterMakers.push(() => makeCharacter(
  4138. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4139. {
  4140. front: {
  4141. height: math.unit(2, "meter"),
  4142. weight: math.unit(120, "kg"),
  4143. name: "Front",
  4144. image: {
  4145. source: "./media/characters/ggv/front.svg"
  4146. }
  4147. },
  4148. side: {
  4149. height: math.unit(2, "meter"),
  4150. weight: math.unit(120, "kg"),
  4151. name: "Side",
  4152. image: {
  4153. source: "./media/characters/ggv/side.svg"
  4154. }
  4155. }
  4156. },
  4157. [
  4158. {
  4159. name: "Extremely Puny",
  4160. height: math.unit(9 + 5 / 12, "feet")
  4161. },
  4162. {
  4163. name: "Horribly Small",
  4164. height: math.unit(47.7, "miles"),
  4165. default: true
  4166. },
  4167. {
  4168. name: "Reasonably Sized",
  4169. height: math.unit(25000, "parsecs")
  4170. },
  4171. {
  4172. name: "Slightly Uncompressed",
  4173. height: math.unit(7.77e31, "parsecs")
  4174. },
  4175. {
  4176. name: "Omniversal",
  4177. height: math.unit(1e300, "meters")
  4178. },
  4179. ]
  4180. ))
  4181. characterMakers.push(() => makeCharacter(
  4182. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4183. {
  4184. front: {
  4185. height: math.unit(2, "meter"),
  4186. weight: math.unit(75, "lb"),
  4187. name: "Front",
  4188. image: {
  4189. source: "./media/characters/napalm/front.svg"
  4190. }
  4191. },
  4192. back: {
  4193. height: math.unit(2, "meter"),
  4194. weight: math.unit(75, "lb"),
  4195. name: "Back",
  4196. image: {
  4197. source: "./media/characters/napalm/back.svg"
  4198. }
  4199. }
  4200. },
  4201. [
  4202. {
  4203. name: "Standard",
  4204. height: math.unit(55, "feet"),
  4205. default: true
  4206. }
  4207. ]
  4208. ))
  4209. characterMakers.push(() => makeCharacter(
  4210. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4211. {
  4212. front: {
  4213. height: math.unit(7 + 5 / 6, "feet"),
  4214. weight: math.unit(325, "lb"),
  4215. name: "Front",
  4216. image: {
  4217. source: "./media/characters/asana/front.svg",
  4218. extra: 1133 / 1060,
  4219. bottom: 15.2 / 1148.6
  4220. }
  4221. },
  4222. back: {
  4223. height: math.unit(7 + 5 / 6, "feet"),
  4224. weight: math.unit(325, "lb"),
  4225. name: "Back",
  4226. image: {
  4227. source: "./media/characters/asana/back.svg",
  4228. extra: 1114 / 1043,
  4229. bottom: 5 / 1120
  4230. }
  4231. },
  4232. dressedDark: {
  4233. height: math.unit(7 + 5 / 6, "feet"),
  4234. weight: math.unit(325, "lb"),
  4235. name: "Dressed (Dark)",
  4236. image: {
  4237. source: "./media/characters/asana/dressed-dark.svg",
  4238. extra: 1133 / 1060,
  4239. bottom: 15.2 / 1148.6
  4240. }
  4241. },
  4242. dressedLight: {
  4243. height: math.unit(7 + 5 / 6, "feet"),
  4244. weight: math.unit(325, "lb"),
  4245. name: "Dressed (Light)",
  4246. image: {
  4247. source: "./media/characters/asana/dressed-light.svg",
  4248. extra: 1133 / 1060,
  4249. bottom: 15.2 / 1148.6
  4250. }
  4251. },
  4252. },
  4253. [
  4254. {
  4255. name: "Standard",
  4256. height: math.unit(7 + 5 / 6, "feet"),
  4257. default: true
  4258. },
  4259. {
  4260. name: "Large",
  4261. height: math.unit(10, "meters")
  4262. },
  4263. {
  4264. name: "Macro",
  4265. height: math.unit(2500, "meters")
  4266. },
  4267. {
  4268. name: "Megamacro",
  4269. height: math.unit(5e6, "meters")
  4270. },
  4271. {
  4272. name: "Examacro",
  4273. height: math.unit(5e12, "lightyears")
  4274. },
  4275. {
  4276. name: "Max Size",
  4277. height: math.unit(1e31, "lightyears")
  4278. }
  4279. ]
  4280. ))
  4281. characterMakers.push(() => makeCharacter(
  4282. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4283. {
  4284. front: {
  4285. height: math.unit(2, "meter"),
  4286. weight: math.unit(60, "kg"),
  4287. name: "Front",
  4288. image: {
  4289. source: "./media/characters/ebony/front.svg",
  4290. bottom: 0.03,
  4291. extra: 1045 / 810 + 0.03
  4292. }
  4293. },
  4294. side: {
  4295. height: math.unit(2, "meter"),
  4296. weight: math.unit(60, "kg"),
  4297. name: "Side",
  4298. image: {
  4299. source: "./media/characters/ebony/side.svg",
  4300. bottom: 0.03,
  4301. extra: 1045 / 810 + 0.03
  4302. }
  4303. },
  4304. back: {
  4305. height: math.unit(2, "meter"),
  4306. weight: math.unit(60, "kg"),
  4307. name: "Back",
  4308. image: {
  4309. source: "./media/characters/ebony/back.svg",
  4310. bottom: 0.01,
  4311. extra: 1045 / 810 + 0.01
  4312. }
  4313. },
  4314. },
  4315. [
  4316. // TODO check why I did this lol
  4317. {
  4318. name: "Standard",
  4319. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4320. default: true
  4321. },
  4322. {
  4323. name: "Macro",
  4324. height: math.unit(200, "feet")
  4325. },
  4326. {
  4327. name: "Gigamacro",
  4328. height: math.unit(13000, "km")
  4329. }
  4330. ]
  4331. ))
  4332. characterMakers.push(() => makeCharacter(
  4333. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4334. {
  4335. front: {
  4336. height: math.unit(6, "feet"),
  4337. weight: math.unit(175, "lb"),
  4338. name: "Front",
  4339. image: {
  4340. source: "./media/characters/mountain/front.svg",
  4341. extra: 972 / 955,
  4342. bottom: 64 / 1036.6
  4343. }
  4344. },
  4345. back: {
  4346. height: math.unit(6, "feet"),
  4347. weight: math.unit(175, "lb"),
  4348. name: "Back",
  4349. image: {
  4350. source: "./media/characters/mountain/back.svg",
  4351. extra: 970 / 950,
  4352. bottom: 28.25 / 999
  4353. }
  4354. },
  4355. },
  4356. [
  4357. {
  4358. name: "Large",
  4359. height: math.unit(20, "meters")
  4360. },
  4361. {
  4362. name: "Macro",
  4363. height: math.unit(300, "meters")
  4364. },
  4365. {
  4366. name: "Gigamacro",
  4367. height: math.unit(10000, "km"),
  4368. default: true
  4369. },
  4370. {
  4371. name: "Examacro",
  4372. height: math.unit(10e9, "lightyears")
  4373. }
  4374. ]
  4375. ))
  4376. characterMakers.push(() => makeCharacter(
  4377. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4378. {
  4379. front: {
  4380. height: math.unit(8, "feet"),
  4381. weight: math.unit(500, "lb"),
  4382. name: "Front",
  4383. image: {
  4384. source: "./media/characters/rick/front.svg"
  4385. }
  4386. }
  4387. },
  4388. [
  4389. {
  4390. name: "Normal",
  4391. height: math.unit(8, "feet"),
  4392. default: true
  4393. },
  4394. {
  4395. name: "Macro",
  4396. height: math.unit(5, "km")
  4397. }
  4398. ]
  4399. ))
  4400. characterMakers.push(() => makeCharacter(
  4401. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4402. {
  4403. front: {
  4404. height: math.unit(8, "feet"),
  4405. weight: math.unit(120, "lb"),
  4406. name: "Front",
  4407. image: {
  4408. source: "./media/characters/ona/front.svg"
  4409. }
  4410. },
  4411. frontAlt: {
  4412. height: math.unit(8, "feet"),
  4413. weight: math.unit(120, "lb"),
  4414. name: "Front (Alt)",
  4415. image: {
  4416. source: "./media/characters/ona/front-alt.svg"
  4417. }
  4418. },
  4419. back: {
  4420. height: math.unit(8, "feet"),
  4421. weight: math.unit(120, "lb"),
  4422. name: "Back",
  4423. image: {
  4424. source: "./media/characters/ona/back.svg"
  4425. }
  4426. },
  4427. foot: {
  4428. height: math.unit(1.1, "feet"),
  4429. name: "Foot",
  4430. image: {
  4431. source: "./media/characters/ona/foot.svg"
  4432. }
  4433. }
  4434. },
  4435. [
  4436. {
  4437. name: "Megamacro",
  4438. height: math.unit(70, "km"),
  4439. default: true
  4440. },
  4441. {
  4442. name: "Gigamacro",
  4443. height: math.unit(681818, "miles")
  4444. },
  4445. {
  4446. name: "Examacro",
  4447. height: math.unit(3800000, "lightyears")
  4448. },
  4449. ]
  4450. ))
  4451. characterMakers.push(() => makeCharacter(
  4452. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4453. {
  4454. front: {
  4455. height: math.unit(12, "feet"),
  4456. weight: math.unit(3000, "lb"),
  4457. name: "Front",
  4458. image: {
  4459. source: "./media/characters/mech/front.svg",
  4460. extra: 2900 / 2770,
  4461. bottom: 110 / 3010
  4462. }
  4463. },
  4464. back: {
  4465. height: math.unit(12, "feet"),
  4466. weight: math.unit(3000, "lb"),
  4467. name: "Back",
  4468. image: {
  4469. source: "./media/characters/mech/back.svg",
  4470. extra: 3011 / 2890,
  4471. bottom: 94 / 3105
  4472. }
  4473. },
  4474. maw: {
  4475. height: math.unit(3.07, "feet"),
  4476. name: "Maw",
  4477. image: {
  4478. source: "./media/characters/mech/maw.svg"
  4479. }
  4480. },
  4481. head: {
  4482. height: math.unit(3.07, "feet"),
  4483. name: "Head",
  4484. image: {
  4485. source: "./media/characters/mech/head.svg"
  4486. }
  4487. },
  4488. dick: {
  4489. height: math.unit(1.43, "feet"),
  4490. name: "Dick",
  4491. image: {
  4492. source: "./media/characters/mech/dick.svg"
  4493. }
  4494. },
  4495. },
  4496. [
  4497. {
  4498. name: "Normal",
  4499. height: math.unit(12, "feet")
  4500. },
  4501. {
  4502. name: "Macro",
  4503. height: math.unit(300, "feet"),
  4504. default: true
  4505. },
  4506. {
  4507. name: "Macro+",
  4508. height: math.unit(1500, "feet")
  4509. },
  4510. ]
  4511. ))
  4512. characterMakers.push(() => makeCharacter(
  4513. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4514. {
  4515. front: {
  4516. height: math.unit(1.3, "meter"),
  4517. weight: math.unit(30, "kg"),
  4518. name: "Front",
  4519. image: {
  4520. source: "./media/characters/gregory/front.svg",
  4521. }
  4522. }
  4523. },
  4524. [
  4525. {
  4526. name: "Normal",
  4527. height: math.unit(1.3, "meter"),
  4528. default: true
  4529. },
  4530. {
  4531. name: "Macro",
  4532. height: math.unit(20, "meter")
  4533. }
  4534. ]
  4535. ))
  4536. characterMakers.push(() => makeCharacter(
  4537. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4538. {
  4539. front: {
  4540. height: math.unit(2.8, "meter"),
  4541. weight: math.unit(200, "kg"),
  4542. name: "Front",
  4543. image: {
  4544. source: "./media/characters/elory/front.svg",
  4545. }
  4546. }
  4547. },
  4548. [
  4549. {
  4550. name: "Normal",
  4551. height: math.unit(2.8, "meter"),
  4552. default: true
  4553. },
  4554. {
  4555. name: "Macro",
  4556. height: math.unit(38, "meter")
  4557. }
  4558. ]
  4559. ))
  4560. characterMakers.push(() => makeCharacter(
  4561. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4562. {
  4563. front: {
  4564. height: math.unit(470, "feet"),
  4565. weight: math.unit(924, "tons"),
  4566. name: "Front",
  4567. image: {
  4568. source: "./media/characters/angelpatamon/front.svg",
  4569. }
  4570. }
  4571. },
  4572. [
  4573. {
  4574. name: "Normal",
  4575. height: math.unit(470, "feet"),
  4576. default: true
  4577. },
  4578. {
  4579. name: "Deity Size I",
  4580. height: math.unit(28651.2, "km")
  4581. },
  4582. {
  4583. name: "Deity Size II",
  4584. height: math.unit(171907.2, "km")
  4585. }
  4586. ]
  4587. ))
  4588. characterMakers.push(() => makeCharacter(
  4589. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4590. {
  4591. side: {
  4592. height: math.unit(7.2, "meter"),
  4593. weight: math.unit(8.2, "tons"),
  4594. name: "Side",
  4595. image: {
  4596. source: "./media/characters/cryae/side.svg",
  4597. extra: 3500 / 1500
  4598. }
  4599. }
  4600. },
  4601. [
  4602. {
  4603. name: "Normal",
  4604. height: math.unit(7.2, "meter"),
  4605. default: true
  4606. }
  4607. ]
  4608. ))
  4609. characterMakers.push(() => makeCharacter(
  4610. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4611. {
  4612. front: {
  4613. height: math.unit(6, "feet"),
  4614. weight: math.unit(175, "lb"),
  4615. name: "Front",
  4616. image: {
  4617. source: "./media/characters/xera/front.svg",
  4618. extra: 2377 / 1972,
  4619. bottom: 75.5 / 2452
  4620. }
  4621. },
  4622. side: {
  4623. height: math.unit(6, "feet"),
  4624. weight: math.unit(175, "lb"),
  4625. name: "Side",
  4626. image: {
  4627. source: "./media/characters/xera/side.svg",
  4628. extra: 2345 / 2019,
  4629. bottom: 39.7 / 2384
  4630. }
  4631. },
  4632. back: {
  4633. height: math.unit(6, "feet"),
  4634. weight: math.unit(175, "lb"),
  4635. name: "Back",
  4636. image: {
  4637. source: "./media/characters/xera/back.svg",
  4638. extra: 2095 / 1984,
  4639. bottom: 67 / 2166
  4640. }
  4641. },
  4642. },
  4643. [
  4644. {
  4645. name: "Small",
  4646. height: math.unit(10, "feet")
  4647. },
  4648. {
  4649. name: "Macro",
  4650. height: math.unit(500, "meters"),
  4651. default: true
  4652. },
  4653. {
  4654. name: "Macro+",
  4655. height: math.unit(10, "km")
  4656. },
  4657. {
  4658. name: "Gigamacro",
  4659. height: math.unit(25000, "km")
  4660. },
  4661. {
  4662. name: "Teramacro",
  4663. height: math.unit(3e6, "km")
  4664. }
  4665. ]
  4666. ))
  4667. characterMakers.push(() => makeCharacter(
  4668. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4669. {
  4670. front: {
  4671. height: math.unit(6, "feet"),
  4672. weight: math.unit(175, "lb"),
  4673. name: "Front",
  4674. image: {
  4675. source: "./media/characters/nebula/front.svg",
  4676. extra: 2566 / 2362,
  4677. bottom: 81 / 2644
  4678. }
  4679. }
  4680. },
  4681. [
  4682. {
  4683. name: "Small",
  4684. height: math.unit(4.5, "meters")
  4685. },
  4686. {
  4687. name: "Macro",
  4688. height: math.unit(1500, "meters"),
  4689. default: true
  4690. },
  4691. {
  4692. name: "Megamacro",
  4693. height: math.unit(150, "km")
  4694. },
  4695. {
  4696. name: "Gigamacro",
  4697. height: math.unit(27000, "km")
  4698. }
  4699. ]
  4700. ))
  4701. characterMakers.push(() => makeCharacter(
  4702. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4703. {
  4704. front: {
  4705. height: math.unit(6, "feet"),
  4706. weight: math.unit(225, "lb"),
  4707. name: "Front",
  4708. image: {
  4709. source: "./media/characters/abysgar/front.svg",
  4710. extra: 1739/1614,
  4711. bottom: 71/1810
  4712. }
  4713. },
  4714. frontNsfw: {
  4715. height: math.unit(6, "feet"),
  4716. weight: math.unit(225, "lb"),
  4717. name: "Front (NSFW)",
  4718. image: {
  4719. source: "./media/characters/abysgar/front-nsfw.svg",
  4720. extra: 1739/1614,
  4721. bottom: 71/1810
  4722. }
  4723. },
  4724. back: {
  4725. height: math.unit(4.6, "feet"),
  4726. weight: math.unit(225, "lb"),
  4727. name: "Back",
  4728. image: {
  4729. source: "./media/characters/abysgar/back.svg",
  4730. extra: 1384/1327,
  4731. bottom: 0/1384
  4732. }
  4733. },
  4734. head: {
  4735. height: math.unit(1.25, "feet"),
  4736. name: "Head",
  4737. image: {
  4738. source: "./media/characters/abysgar/head.svg",
  4739. extra: 669/569,
  4740. bottom: 0/669
  4741. }
  4742. },
  4743. },
  4744. [
  4745. {
  4746. name: "Small",
  4747. height: math.unit(4.5, "meters")
  4748. },
  4749. {
  4750. name: "Macro",
  4751. height: math.unit(1250, "meters"),
  4752. default: true
  4753. },
  4754. {
  4755. name: "Megamacro",
  4756. height: math.unit(125, "km")
  4757. },
  4758. {
  4759. name: "Gigamacro",
  4760. height: math.unit(26000, "km")
  4761. }
  4762. ]
  4763. ))
  4764. characterMakers.push(() => makeCharacter(
  4765. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4766. {
  4767. front: {
  4768. height: math.unit(6, "feet"),
  4769. weight: math.unit(180, "lb"),
  4770. name: "Front",
  4771. image: {
  4772. source: "./media/characters/yakuz/front.svg"
  4773. }
  4774. }
  4775. },
  4776. [
  4777. {
  4778. name: "Small",
  4779. height: math.unit(5, "meters")
  4780. },
  4781. {
  4782. name: "Macro",
  4783. height: math.unit(1500, "meters"),
  4784. default: true
  4785. },
  4786. {
  4787. name: "Megamacro",
  4788. height: math.unit(200, "km")
  4789. },
  4790. {
  4791. name: "Gigamacro",
  4792. height: math.unit(100000, "km")
  4793. }
  4794. ]
  4795. ))
  4796. characterMakers.push(() => makeCharacter(
  4797. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4798. {
  4799. front: {
  4800. height: math.unit(6, "feet"),
  4801. weight: math.unit(175, "lb"),
  4802. name: "Front",
  4803. image: {
  4804. source: "./media/characters/mirova/front.svg",
  4805. extra: 3334 / 3071,
  4806. bottom: 42 / 3375.6
  4807. }
  4808. }
  4809. },
  4810. [
  4811. {
  4812. name: "Small",
  4813. height: math.unit(5, "meters")
  4814. },
  4815. {
  4816. name: "Macro",
  4817. height: math.unit(900, "meters"),
  4818. default: true
  4819. },
  4820. {
  4821. name: "Megamacro",
  4822. height: math.unit(135, "km")
  4823. },
  4824. {
  4825. name: "Gigamacro",
  4826. height: math.unit(20000, "km")
  4827. }
  4828. ]
  4829. ))
  4830. characterMakers.push(() => makeCharacter(
  4831. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4832. {
  4833. side: {
  4834. height: math.unit(28.35, "feet"),
  4835. weight: math.unit(99.75, "tons"),
  4836. name: "Side",
  4837. image: {
  4838. source: "./media/characters/asana-mech/side.svg",
  4839. extra: 923 / 699,
  4840. bottom: 50 / 975
  4841. }
  4842. },
  4843. chaingun: {
  4844. height: math.unit(7, "feet"),
  4845. weight: math.unit(2400, "lb"),
  4846. name: "Chaingun",
  4847. image: {
  4848. source: "./media/characters/asana-mech/chaingun.svg"
  4849. }
  4850. },
  4851. laser: {
  4852. height: math.unit(7.12, "feet"),
  4853. weight: math.unit(2000, "lb"),
  4854. name: "Laser",
  4855. image: {
  4856. source: "./media/characters/asana-mech/laser.svg"
  4857. }
  4858. },
  4859. },
  4860. [
  4861. {
  4862. name: "Normal",
  4863. height: math.unit(28.35, "feet"),
  4864. default: true
  4865. },
  4866. {
  4867. name: "Macro",
  4868. height: math.unit(2500, "feet")
  4869. },
  4870. {
  4871. name: "Megamacro",
  4872. height: math.unit(25, "miles")
  4873. },
  4874. {
  4875. name: "Examacro",
  4876. height: math.unit(6e8, "lightyears")
  4877. },
  4878. ]
  4879. ))
  4880. characterMakers.push(() => makeCharacter(
  4881. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4882. {
  4883. front: {
  4884. height: math.unit(5, "meters"),
  4885. weight: math.unit(1000, "kg"),
  4886. name: "Front",
  4887. image: {
  4888. source: "./media/characters/asche/front.svg",
  4889. extra: 1258 / 1190,
  4890. bottom: 47 / 1305
  4891. }
  4892. },
  4893. frontUnderwear: {
  4894. height: math.unit(5, "meters"),
  4895. weight: math.unit(1000, "kg"),
  4896. name: "Front (Underwear)",
  4897. image: {
  4898. source: "./media/characters/asche/front-underwear.svg",
  4899. extra: 1258 / 1190,
  4900. bottom: 47 / 1305
  4901. }
  4902. },
  4903. frontDressed: {
  4904. height: math.unit(5, "meters"),
  4905. weight: math.unit(1000, "kg"),
  4906. name: "Front (Dressed)",
  4907. image: {
  4908. source: "./media/characters/asche/front-dressed.svg",
  4909. extra: 1258 / 1190,
  4910. bottom: 47 / 1305
  4911. }
  4912. },
  4913. frontArmor: {
  4914. height: math.unit(5, "meters"),
  4915. weight: math.unit(1000, "kg"),
  4916. name: "Front (Armored)",
  4917. image: {
  4918. source: "./media/characters/asche/front-armored.svg",
  4919. extra: 1374 / 1308,
  4920. bottom: 23 / 1397
  4921. }
  4922. },
  4923. mp724: {
  4924. height: math.unit(0.96, "meters"),
  4925. weight: math.unit(38, "kg"),
  4926. name: "H&K MP724",
  4927. image: {
  4928. source: "./media/characters/asche/h&k-mp724.svg"
  4929. }
  4930. },
  4931. side: {
  4932. height: math.unit(5, "meters"),
  4933. weight: math.unit(1000, "kg"),
  4934. name: "Side",
  4935. image: {
  4936. source: "./media/characters/asche/side.svg",
  4937. extra: 1717 / 1609,
  4938. bottom: 0.005
  4939. }
  4940. },
  4941. back: {
  4942. height: math.unit(5, "meters"),
  4943. weight: math.unit(1000, "kg"),
  4944. name: "Back",
  4945. image: {
  4946. source: "./media/characters/asche/back.svg",
  4947. extra: 1570 / 1501
  4948. }
  4949. },
  4950. },
  4951. [
  4952. {
  4953. name: "DEFCON 5",
  4954. height: math.unit(5, "meters")
  4955. },
  4956. {
  4957. name: "DEFCON 4",
  4958. height: math.unit(500, "meters"),
  4959. default: true
  4960. },
  4961. {
  4962. name: "DEFCON 3",
  4963. height: math.unit(5, "km")
  4964. },
  4965. {
  4966. name: "DEFCON 2",
  4967. height: math.unit(500, "km")
  4968. },
  4969. {
  4970. name: "DEFCON 1",
  4971. height: math.unit(500000, "km")
  4972. },
  4973. {
  4974. name: "DEFCON 0",
  4975. height: math.unit(3, "gigaparsecs")
  4976. },
  4977. ]
  4978. ))
  4979. characterMakers.push(() => makeCharacter(
  4980. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4981. {
  4982. front: {
  4983. height: math.unit(2, "meters"),
  4984. weight: math.unit(76, "kg"),
  4985. name: "Front",
  4986. image: {
  4987. source: "./media/characters/gale/front.svg"
  4988. }
  4989. },
  4990. frontAlt1: {
  4991. height: math.unit(2, "meters"),
  4992. weight: math.unit(76, "kg"),
  4993. name: "Front (Alt 1)",
  4994. image: {
  4995. source: "./media/characters/gale/front-alt-1.svg"
  4996. }
  4997. },
  4998. frontAlt2: {
  4999. height: math.unit(2, "meters"),
  5000. weight: math.unit(76, "kg"),
  5001. name: "Front (Alt 2)",
  5002. image: {
  5003. source: "./media/characters/gale/front-alt-2.svg"
  5004. }
  5005. },
  5006. },
  5007. [
  5008. {
  5009. name: "Normal",
  5010. height: math.unit(7, "feet")
  5011. },
  5012. {
  5013. name: "Macro",
  5014. height: math.unit(150, "feet"),
  5015. default: true
  5016. },
  5017. {
  5018. name: "Macro+",
  5019. height: math.unit(300, "feet")
  5020. },
  5021. ]
  5022. ))
  5023. characterMakers.push(() => makeCharacter(
  5024. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5025. {
  5026. front: {
  5027. height: math.unit(5 + 10/12, "feet"),
  5028. weight: math.unit(67, "kg"),
  5029. name: "Front",
  5030. image: {
  5031. source: "./media/characters/draylen/front.svg",
  5032. extra: 832/777,
  5033. bottom: 85/917
  5034. }
  5035. }
  5036. },
  5037. [
  5038. {
  5039. name: "Normal",
  5040. height: math.unit(5 + 10/12, "feet")
  5041. },
  5042. {
  5043. name: "Macro",
  5044. height: math.unit(150, "feet"),
  5045. default: true
  5046. }
  5047. ]
  5048. ))
  5049. characterMakers.push(() => makeCharacter(
  5050. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5051. {
  5052. front: {
  5053. height: math.unit(7 + 9 / 12, "feet"),
  5054. weight: math.unit(379, "lbs"),
  5055. name: "Front",
  5056. image: {
  5057. source: "./media/characters/chez/front.svg"
  5058. }
  5059. },
  5060. side: {
  5061. height: math.unit(7 + 9 / 12, "feet"),
  5062. weight: math.unit(379, "lbs"),
  5063. name: "Side",
  5064. image: {
  5065. source: "./media/characters/chez/side.svg"
  5066. }
  5067. }
  5068. },
  5069. [
  5070. {
  5071. name: "Normal",
  5072. height: math.unit(7 + 9 / 12, "feet"),
  5073. default: true
  5074. },
  5075. {
  5076. name: "God King",
  5077. height: math.unit(9750000, "meters")
  5078. }
  5079. ]
  5080. ))
  5081. characterMakers.push(() => makeCharacter(
  5082. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5083. {
  5084. front: {
  5085. height: math.unit(6, "feet"),
  5086. weight: math.unit(275, "lbs"),
  5087. name: "Front",
  5088. image: {
  5089. source: "./media/characters/kaylum/front.svg",
  5090. bottom: 0.01,
  5091. extra: 1166 / 1031
  5092. }
  5093. },
  5094. frontWingless: {
  5095. height: math.unit(6, "feet"),
  5096. weight: math.unit(275, "lbs"),
  5097. name: "Front (Wingless)",
  5098. image: {
  5099. source: "./media/characters/kaylum/front-wingless.svg",
  5100. bottom: 0.01,
  5101. extra: 1117 / 1031
  5102. }
  5103. }
  5104. },
  5105. [
  5106. {
  5107. name: "Normal",
  5108. height: math.unit(3.05, "meters")
  5109. },
  5110. {
  5111. name: "Master",
  5112. height: math.unit(5.5, "meters")
  5113. },
  5114. {
  5115. name: "Rampage",
  5116. height: math.unit(19, "meters")
  5117. },
  5118. {
  5119. name: "Macro Lite",
  5120. height: math.unit(37, "meters")
  5121. },
  5122. {
  5123. name: "Hyper Predator",
  5124. height: math.unit(61, "meters")
  5125. },
  5126. {
  5127. name: "Macro",
  5128. height: math.unit(138, "meters"),
  5129. default: true
  5130. }
  5131. ]
  5132. ))
  5133. characterMakers.push(() => makeCharacter(
  5134. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5135. {
  5136. front: {
  5137. height: math.unit(5 + 5 / 12, "feet"),
  5138. weight: math.unit(120, "lbs"),
  5139. name: "Front",
  5140. image: {
  5141. source: "./media/characters/geta/front.svg",
  5142. extra: 1003/933,
  5143. bottom: 21/1024
  5144. }
  5145. },
  5146. paw: {
  5147. height: math.unit(0.35, "feet"),
  5148. name: "Paw",
  5149. image: {
  5150. source: "./media/characters/geta/paw.svg"
  5151. }
  5152. },
  5153. },
  5154. [
  5155. {
  5156. name: "Micro",
  5157. height: math.unit(3, "inches"),
  5158. default: true
  5159. },
  5160. {
  5161. name: "Normal",
  5162. height: math.unit(5 + 5 / 12, "feet")
  5163. }
  5164. ]
  5165. ))
  5166. characterMakers.push(() => makeCharacter(
  5167. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5168. {
  5169. front: {
  5170. height: math.unit(6, "feet"),
  5171. weight: math.unit(300, "lbs"),
  5172. name: "Front",
  5173. image: {
  5174. source: "./media/characters/tyrnn/front.svg"
  5175. }
  5176. }
  5177. },
  5178. [
  5179. {
  5180. name: "Main Height",
  5181. height: math.unit(355, "feet"),
  5182. default: true
  5183. },
  5184. {
  5185. name: "Fave. Height",
  5186. height: math.unit(2400, "feet")
  5187. }
  5188. ]
  5189. ))
  5190. characterMakers.push(() => makeCharacter(
  5191. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5192. {
  5193. front: {
  5194. height: math.unit(6, "feet"),
  5195. weight: math.unit(300, "lbs"),
  5196. name: "Front",
  5197. image: {
  5198. source: "./media/characters/appledectomy/front.svg"
  5199. }
  5200. }
  5201. },
  5202. [
  5203. {
  5204. name: "Macro",
  5205. height: math.unit(2500, "feet")
  5206. },
  5207. {
  5208. name: "Megamacro",
  5209. height: math.unit(50, "miles"),
  5210. default: true
  5211. },
  5212. {
  5213. name: "Gigamacro",
  5214. height: math.unit(5000, "miles")
  5215. },
  5216. {
  5217. name: "Teramacro",
  5218. height: math.unit(250000, "miles")
  5219. },
  5220. ]
  5221. ))
  5222. characterMakers.push(() => makeCharacter(
  5223. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5224. {
  5225. front: {
  5226. height: math.unit(6, "feet"),
  5227. weight: math.unit(200, "lbs"),
  5228. name: "Front",
  5229. image: {
  5230. source: "./media/characters/vulpes/front.svg",
  5231. extra: 573 / 543,
  5232. bottom: 0.033
  5233. }
  5234. },
  5235. side: {
  5236. height: math.unit(6, "feet"),
  5237. weight: math.unit(200, "lbs"),
  5238. name: "Side",
  5239. image: {
  5240. source: "./media/characters/vulpes/side.svg",
  5241. extra: 577 / 549,
  5242. bottom: 11 / 588
  5243. }
  5244. },
  5245. back: {
  5246. height: math.unit(6, "feet"),
  5247. weight: math.unit(200, "lbs"),
  5248. name: "Back",
  5249. image: {
  5250. source: "./media/characters/vulpes/back.svg",
  5251. extra: 573 / 549,
  5252. bottom: 20 / 593
  5253. }
  5254. },
  5255. feet: {
  5256. height: math.unit(1.276, "feet"),
  5257. name: "Feet",
  5258. image: {
  5259. source: "./media/characters/vulpes/feet.svg"
  5260. }
  5261. },
  5262. maw: {
  5263. height: math.unit(1.18, "feet"),
  5264. name: "Maw",
  5265. image: {
  5266. source: "./media/characters/vulpes/maw.svg"
  5267. }
  5268. },
  5269. },
  5270. [
  5271. {
  5272. name: "Micro",
  5273. height: math.unit(2, "inches")
  5274. },
  5275. {
  5276. name: "Normal",
  5277. height: math.unit(6.3, "feet")
  5278. },
  5279. {
  5280. name: "Macro",
  5281. height: math.unit(850, "feet")
  5282. },
  5283. {
  5284. name: "Megamacro",
  5285. height: math.unit(7500, "feet"),
  5286. default: true
  5287. },
  5288. {
  5289. name: "Gigamacro",
  5290. height: math.unit(570000, "miles")
  5291. }
  5292. ]
  5293. ))
  5294. characterMakers.push(() => makeCharacter(
  5295. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5296. {
  5297. front: {
  5298. height: math.unit(6, "feet"),
  5299. weight: math.unit(210, "lbs"),
  5300. name: "Front",
  5301. image: {
  5302. source: "./media/characters/rain-fallen/front.svg"
  5303. }
  5304. },
  5305. side: {
  5306. height: math.unit(6, "feet"),
  5307. weight: math.unit(210, "lbs"),
  5308. name: "Side",
  5309. image: {
  5310. source: "./media/characters/rain-fallen/side.svg"
  5311. }
  5312. },
  5313. back: {
  5314. height: math.unit(6, "feet"),
  5315. weight: math.unit(210, "lbs"),
  5316. name: "Back",
  5317. image: {
  5318. source: "./media/characters/rain-fallen/back.svg"
  5319. }
  5320. },
  5321. feral: {
  5322. height: math.unit(9, "feet"),
  5323. weight: math.unit(700, "lbs"),
  5324. name: "Feral",
  5325. image: {
  5326. source: "./media/characters/rain-fallen/feral.svg"
  5327. }
  5328. },
  5329. },
  5330. [
  5331. {
  5332. name: "Meddling with Mortals",
  5333. height: math.unit(8 + 8/12, "feet")
  5334. },
  5335. {
  5336. name: "Normal",
  5337. height: math.unit(5, "meter")
  5338. },
  5339. {
  5340. name: "Macro",
  5341. height: math.unit(150, "meter"),
  5342. default: true
  5343. },
  5344. {
  5345. name: "Megamacro",
  5346. height: math.unit(278e6, "meter")
  5347. },
  5348. {
  5349. name: "Gigamacro",
  5350. height: math.unit(2e9, "meter")
  5351. },
  5352. {
  5353. name: "Teramacro",
  5354. height: math.unit(8e12, "meter")
  5355. },
  5356. {
  5357. name: "Devourer",
  5358. height: math.unit(14, "zettameters")
  5359. },
  5360. {
  5361. name: "Scarlet King",
  5362. height: math.unit(18, "yottameters")
  5363. },
  5364. {
  5365. name: "Void",
  5366. height: math.unit(1e88, "yottameters")
  5367. }
  5368. ]
  5369. ))
  5370. characterMakers.push(() => makeCharacter(
  5371. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5372. {
  5373. standing: {
  5374. height: math.unit(6, "feet"),
  5375. weight: math.unit(180, "lbs"),
  5376. name: "Standing",
  5377. image: {
  5378. source: "./media/characters/zaakira/standing.svg",
  5379. extra: 1599/1504,
  5380. bottom: 39/1638
  5381. }
  5382. },
  5383. laying: {
  5384. height: math.unit(3.3, "feet"),
  5385. weight: math.unit(180, "lbs"),
  5386. name: "Laying",
  5387. image: {
  5388. source: "./media/characters/zaakira/laying.svg"
  5389. }
  5390. },
  5391. },
  5392. [
  5393. {
  5394. name: "Normal",
  5395. height: math.unit(12, "feet")
  5396. },
  5397. {
  5398. name: "Macro",
  5399. height: math.unit(279, "feet"),
  5400. default: true
  5401. }
  5402. ]
  5403. ))
  5404. characterMakers.push(() => makeCharacter(
  5405. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5406. {
  5407. femSfw: {
  5408. height: math.unit(8, "feet"),
  5409. weight: math.unit(350, "lb"),
  5410. name: "Fem",
  5411. image: {
  5412. source: "./media/characters/sigvald/fem-sfw.svg",
  5413. extra: 182 / 164,
  5414. bottom: 8.7 / 190.5
  5415. }
  5416. },
  5417. femNsfw: {
  5418. height: math.unit(8, "feet"),
  5419. weight: math.unit(350, "lb"),
  5420. name: "Fem (NSFW)",
  5421. image: {
  5422. source: "./media/characters/sigvald/fem-nsfw.svg",
  5423. extra: 182 / 164,
  5424. bottom: 8.7 / 190.5
  5425. }
  5426. },
  5427. maleNsfw: {
  5428. height: math.unit(8, "feet"),
  5429. weight: math.unit(350, "lb"),
  5430. name: "Male (NSFW)",
  5431. image: {
  5432. source: "./media/characters/sigvald/male-nsfw.svg",
  5433. extra: 182 / 164,
  5434. bottom: 8.7 / 190.5
  5435. }
  5436. },
  5437. hermNsfw: {
  5438. height: math.unit(8, "feet"),
  5439. weight: math.unit(350, "lb"),
  5440. name: "Herm (NSFW)",
  5441. image: {
  5442. source: "./media/characters/sigvald/herm-nsfw.svg",
  5443. extra: 182 / 164,
  5444. bottom: 8.7 / 190.5
  5445. }
  5446. },
  5447. dick: {
  5448. height: math.unit(2.36, "feet"),
  5449. name: "Dick",
  5450. image: {
  5451. source: "./media/characters/sigvald/dick.svg"
  5452. }
  5453. },
  5454. eye: {
  5455. height: math.unit(0.31, "feet"),
  5456. name: "Eye",
  5457. image: {
  5458. source: "./media/characters/sigvald/eye.svg"
  5459. }
  5460. },
  5461. mouth: {
  5462. height: math.unit(0.92, "feet"),
  5463. name: "Mouth",
  5464. image: {
  5465. source: "./media/characters/sigvald/mouth.svg"
  5466. }
  5467. },
  5468. paws: {
  5469. height: math.unit(2.2, "feet"),
  5470. name: "Paws",
  5471. image: {
  5472. source: "./media/characters/sigvald/paws.svg"
  5473. }
  5474. }
  5475. },
  5476. [
  5477. {
  5478. name: "Normal",
  5479. height: math.unit(8, "feet")
  5480. },
  5481. {
  5482. name: "Large",
  5483. height: math.unit(12, "feet")
  5484. },
  5485. {
  5486. name: "Larger",
  5487. height: math.unit(20, "feet")
  5488. },
  5489. {
  5490. name: "Macro",
  5491. height: math.unit(150, "feet")
  5492. },
  5493. {
  5494. name: "Macro+",
  5495. height: math.unit(200, "feet"),
  5496. default: true
  5497. },
  5498. ]
  5499. ))
  5500. characterMakers.push(() => makeCharacter(
  5501. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5502. {
  5503. side: {
  5504. height: math.unit(12, "feet"),
  5505. weight: math.unit(2000, "kg"),
  5506. name: "Side",
  5507. image: {
  5508. source: "./media/characters/scott/side.svg",
  5509. extra: 754 / 724,
  5510. bottom: 0.069
  5511. }
  5512. },
  5513. upright: {
  5514. height: math.unit(12, "feet"),
  5515. weight: math.unit(2000, "kg"),
  5516. name: "Upright",
  5517. image: {
  5518. source: "./media/characters/scott/upright.svg",
  5519. extra: 3881 / 3722,
  5520. bottom: 0.05
  5521. }
  5522. },
  5523. },
  5524. [
  5525. {
  5526. name: "Normal",
  5527. height: math.unit(12, "feet"),
  5528. default: true
  5529. },
  5530. ]
  5531. ))
  5532. characterMakers.push(() => makeCharacter(
  5533. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5534. {
  5535. side: {
  5536. height: math.unit(8, "meters"),
  5537. weight: math.unit(84755, "lbs"),
  5538. name: "Side",
  5539. image: {
  5540. source: "./media/characters/tobias/side.svg",
  5541. extra: 1474 / 1096,
  5542. bottom: 38.9 / 1513.1235
  5543. }
  5544. },
  5545. },
  5546. [
  5547. {
  5548. name: "Normal",
  5549. height: math.unit(8, "meters"),
  5550. default: true
  5551. },
  5552. ]
  5553. ))
  5554. characterMakers.push(() => makeCharacter(
  5555. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5556. {
  5557. front: {
  5558. height: math.unit(5.5, "feet"),
  5559. weight: math.unit(400, "lbs"),
  5560. name: "Front",
  5561. image: {
  5562. source: "./media/characters/kieran/front.svg",
  5563. extra: 2694 / 2364,
  5564. bottom: 217 / 2908
  5565. }
  5566. },
  5567. side: {
  5568. height: math.unit(5.5, "feet"),
  5569. weight: math.unit(400, "lbs"),
  5570. name: "Side",
  5571. image: {
  5572. source: "./media/characters/kieran/side.svg",
  5573. extra: 875 / 777,
  5574. bottom: 84.6 / 959
  5575. }
  5576. },
  5577. },
  5578. [
  5579. {
  5580. name: "Normal",
  5581. height: math.unit(5.5, "feet"),
  5582. default: true
  5583. },
  5584. ]
  5585. ))
  5586. characterMakers.push(() => makeCharacter(
  5587. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5588. {
  5589. side: {
  5590. height: math.unit(2, "meters"),
  5591. weight: math.unit(70, "kg"),
  5592. name: "Side",
  5593. image: {
  5594. source: "./media/characters/sanya/side.svg",
  5595. bottom: 0.02,
  5596. extra: 1.02
  5597. }
  5598. },
  5599. },
  5600. [
  5601. {
  5602. name: "Small",
  5603. height: math.unit(2, "meters")
  5604. },
  5605. {
  5606. name: "Normal",
  5607. height: math.unit(3, "meters")
  5608. },
  5609. {
  5610. name: "Macro",
  5611. height: math.unit(16, "meters"),
  5612. default: true
  5613. },
  5614. ]
  5615. ))
  5616. characterMakers.push(() => makeCharacter(
  5617. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5618. {
  5619. front: {
  5620. height: math.unit(2, "meters"),
  5621. weight: math.unit(120, "kg"),
  5622. name: "Front",
  5623. image: {
  5624. source: "./media/characters/miranda/front.svg",
  5625. extra: 195 / 185,
  5626. bottom: 10.9 / 206.5
  5627. }
  5628. },
  5629. back: {
  5630. height: math.unit(2, "meters"),
  5631. weight: math.unit(120, "kg"),
  5632. name: "Back",
  5633. image: {
  5634. source: "./media/characters/miranda/back.svg",
  5635. extra: 201 / 193,
  5636. bottom: 2.3 / 203.7
  5637. }
  5638. },
  5639. },
  5640. [
  5641. {
  5642. name: "Normal",
  5643. height: math.unit(10, "feet"),
  5644. default: true
  5645. }
  5646. ]
  5647. ))
  5648. characterMakers.push(() => makeCharacter(
  5649. { name: "James", species: ["deer"], tags: ["anthro"] },
  5650. {
  5651. side: {
  5652. height: math.unit(2, "meters"),
  5653. weight: math.unit(100, "kg"),
  5654. name: "Front",
  5655. image: {
  5656. source: "./media/characters/james/front.svg",
  5657. extra: 10 / 8.5
  5658. }
  5659. },
  5660. },
  5661. [
  5662. {
  5663. name: "Normal",
  5664. height: math.unit(8.5, "feet"),
  5665. default: true
  5666. }
  5667. ]
  5668. ))
  5669. characterMakers.push(() => makeCharacter(
  5670. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5671. {
  5672. side: {
  5673. height: math.unit(9.5, "feet"),
  5674. weight: math.unit(2500, "lbs"),
  5675. name: "Side",
  5676. image: {
  5677. source: "./media/characters/heather/side.svg"
  5678. }
  5679. },
  5680. },
  5681. [
  5682. {
  5683. name: "Normal",
  5684. height: math.unit(9.5, "feet"),
  5685. default: true
  5686. }
  5687. ]
  5688. ))
  5689. characterMakers.push(() => makeCharacter(
  5690. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5691. {
  5692. side: {
  5693. height: math.unit(6.5, "feet"),
  5694. weight: math.unit(400, "lbs"),
  5695. name: "Side",
  5696. image: {
  5697. source: "./media/characters/lukas/side.svg",
  5698. extra: 7.25 / 6.5
  5699. }
  5700. },
  5701. },
  5702. [
  5703. {
  5704. name: "Normal",
  5705. height: math.unit(6.5, "feet"),
  5706. default: true
  5707. }
  5708. ]
  5709. ))
  5710. characterMakers.push(() => makeCharacter(
  5711. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5712. {
  5713. side: {
  5714. height: math.unit(5, "feet"),
  5715. weight: math.unit(3000, "lbs"),
  5716. name: "Side",
  5717. image: {
  5718. source: "./media/characters/louise/side.svg"
  5719. }
  5720. },
  5721. },
  5722. [
  5723. {
  5724. name: "Normal",
  5725. height: math.unit(5, "feet"),
  5726. default: true
  5727. }
  5728. ]
  5729. ))
  5730. characterMakers.push(() => makeCharacter(
  5731. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5732. {
  5733. side: {
  5734. height: math.unit(6, "feet"),
  5735. weight: math.unit(150, "lbs"),
  5736. name: "Side",
  5737. image: {
  5738. source: "./media/characters/ramona/side.svg",
  5739. extra: 871/854,
  5740. bottom: 41/912
  5741. }
  5742. },
  5743. },
  5744. [
  5745. {
  5746. name: "Normal",
  5747. height: math.unit(6 + 4/12, "feet")
  5748. },
  5749. {
  5750. name: "Minimacro",
  5751. height: math.unit(5.3, "meters"),
  5752. default: true
  5753. },
  5754. {
  5755. name: "Macro",
  5756. height: math.unit(20, "stories")
  5757. },
  5758. {
  5759. name: "Macro+",
  5760. height: math.unit(50, "stories")
  5761. },
  5762. ]
  5763. ))
  5764. characterMakers.push(() => makeCharacter(
  5765. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5766. {
  5767. standing: {
  5768. height: math.unit(5.75, "feet"),
  5769. weight: math.unit(160, "lbs"),
  5770. name: "Standing",
  5771. image: {
  5772. source: "./media/characters/deerpuff/standing.svg",
  5773. extra: 682 / 624
  5774. }
  5775. },
  5776. sitting: {
  5777. height: math.unit(5.75 / 1.79, "feet"),
  5778. weight: math.unit(160, "lbs"),
  5779. name: "Sitting",
  5780. image: {
  5781. source: "./media/characters/deerpuff/sitting.svg",
  5782. bottom: 44 / 400,
  5783. extra: 1
  5784. }
  5785. },
  5786. taurLaying: {
  5787. height: math.unit(6, "feet"),
  5788. weight: math.unit(400, "lbs"),
  5789. name: "Taur (Laying)",
  5790. image: {
  5791. source: "./media/characters/deerpuff/taur-laying.svg"
  5792. }
  5793. },
  5794. },
  5795. [
  5796. {
  5797. name: "Puffball",
  5798. height: math.unit(6, "inches")
  5799. },
  5800. {
  5801. name: "Normalpuff",
  5802. height: math.unit(5.75, "feet")
  5803. },
  5804. {
  5805. name: "Macropuff",
  5806. height: math.unit(1500, "feet"),
  5807. default: true
  5808. },
  5809. {
  5810. name: "Megapuff",
  5811. height: math.unit(500, "miles")
  5812. },
  5813. {
  5814. name: "Gigapuff",
  5815. height: math.unit(250000, "miles")
  5816. },
  5817. {
  5818. name: "Omegapuff",
  5819. height: math.unit(1000, "lightyears")
  5820. },
  5821. ]
  5822. ))
  5823. characterMakers.push(() => makeCharacter(
  5824. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5825. {
  5826. stomping: {
  5827. height: math.unit(6, "feet"),
  5828. weight: math.unit(170, "lbs"),
  5829. name: "Stomping",
  5830. image: {
  5831. source: "./media/characters/vivian/stomping.svg"
  5832. }
  5833. },
  5834. sitting: {
  5835. height: math.unit(6 / 1.75, "feet"),
  5836. weight: math.unit(170, "lbs"),
  5837. name: "Sitting",
  5838. image: {
  5839. source: "./media/characters/vivian/sitting.svg",
  5840. bottom: 1 / 6.4,
  5841. extra: 1,
  5842. }
  5843. },
  5844. },
  5845. [
  5846. {
  5847. name: "Normal",
  5848. height: math.unit(7, "feet"),
  5849. default: true
  5850. },
  5851. {
  5852. name: "Macro",
  5853. height: math.unit(10, "stories")
  5854. },
  5855. {
  5856. name: "Macro+",
  5857. height: math.unit(30, "stories")
  5858. },
  5859. {
  5860. name: "Megamacro",
  5861. height: math.unit(10, "miles")
  5862. },
  5863. {
  5864. name: "Megamacro+",
  5865. height: math.unit(2750000, "meters")
  5866. },
  5867. ]
  5868. ))
  5869. characterMakers.push(() => makeCharacter(
  5870. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5871. {
  5872. front: {
  5873. height: math.unit(6, "feet"),
  5874. weight: math.unit(160, "lbs"),
  5875. name: "Front",
  5876. image: {
  5877. source: "./media/characters/prince/front.svg",
  5878. extra: 3400 / 3000
  5879. }
  5880. },
  5881. jumping: {
  5882. height: math.unit(6, "feet"),
  5883. weight: math.unit(160, "lbs"),
  5884. name: "Jumping",
  5885. image: {
  5886. source: "./media/characters/prince/jump.svg",
  5887. extra: 2555 / 2134
  5888. }
  5889. },
  5890. },
  5891. [
  5892. {
  5893. name: "Normal",
  5894. height: math.unit(7.75, "feet"),
  5895. default: true
  5896. },
  5897. {
  5898. name: "Not cute",
  5899. height: math.unit(17, "feet")
  5900. },
  5901. {
  5902. name: "I said NOT",
  5903. height: math.unit(91, "feet")
  5904. },
  5905. {
  5906. name: "Please stop",
  5907. height: math.unit(560, "feet")
  5908. },
  5909. {
  5910. name: "What have you done",
  5911. height: math.unit(2200, "feet")
  5912. },
  5913. {
  5914. name: "Deer God",
  5915. height: math.unit(3.6, "miles")
  5916. },
  5917. ]
  5918. ))
  5919. characterMakers.push(() => makeCharacter(
  5920. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5921. {
  5922. standing: {
  5923. height: math.unit(6, "feet"),
  5924. weight: math.unit(300, "lbs"),
  5925. name: "Standing",
  5926. image: {
  5927. source: "./media/characters/psymon/standing.svg",
  5928. extra: 1888 / 1810,
  5929. bottom: 0.05
  5930. }
  5931. },
  5932. slithering: {
  5933. height: math.unit(6, "feet"),
  5934. weight: math.unit(300, "lbs"),
  5935. name: "Slithering",
  5936. image: {
  5937. source: "./media/characters/psymon/slithering.svg",
  5938. extra: 1330 / 1224
  5939. }
  5940. },
  5941. slitheringAlt: {
  5942. height: math.unit(6, "feet"),
  5943. weight: math.unit(300, "lbs"),
  5944. name: "Slithering (Alt)",
  5945. image: {
  5946. source: "./media/characters/psymon/slithering-alt.svg",
  5947. extra: 1330 / 1224
  5948. }
  5949. },
  5950. },
  5951. [
  5952. {
  5953. name: "Normal",
  5954. height: math.unit(11.25, "feet"),
  5955. default: true
  5956. },
  5957. {
  5958. name: "Large",
  5959. height: math.unit(27, "feet")
  5960. },
  5961. {
  5962. name: "Giant",
  5963. height: math.unit(87, "feet")
  5964. },
  5965. {
  5966. name: "Macro",
  5967. height: math.unit(365, "feet")
  5968. },
  5969. {
  5970. name: "Megamacro",
  5971. height: math.unit(3, "miles")
  5972. },
  5973. {
  5974. name: "World Serpent",
  5975. height: math.unit(8000, "miles")
  5976. },
  5977. ]
  5978. ))
  5979. characterMakers.push(() => makeCharacter(
  5980. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5981. {
  5982. front: {
  5983. height: math.unit(6, "feet"),
  5984. weight: math.unit(180, "lbs"),
  5985. name: "Front",
  5986. image: {
  5987. source: "./media/characters/daimos/front.svg",
  5988. extra: 4160 / 3897,
  5989. bottom: 0.021
  5990. }
  5991. }
  5992. },
  5993. [
  5994. {
  5995. name: "Normal",
  5996. height: math.unit(8, "feet"),
  5997. default: true
  5998. },
  5999. {
  6000. name: "Big Dog",
  6001. height: math.unit(22, "feet")
  6002. },
  6003. {
  6004. name: "Macro",
  6005. height: math.unit(127, "feet")
  6006. },
  6007. {
  6008. name: "Megamacro",
  6009. height: math.unit(3600, "feet")
  6010. },
  6011. ]
  6012. ))
  6013. characterMakers.push(() => makeCharacter(
  6014. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6015. {
  6016. side: {
  6017. height: math.unit(6, "feet"),
  6018. weight: math.unit(180, "lbs"),
  6019. name: "Side",
  6020. image: {
  6021. source: "./media/characters/blake/side.svg",
  6022. extra: 1212 / 1120,
  6023. bottom: 0.05
  6024. }
  6025. },
  6026. crouched: {
  6027. height: math.unit(6 * 0.57, "feet"),
  6028. weight: math.unit(180, "lbs"),
  6029. name: "Crouched",
  6030. image: {
  6031. source: "./media/characters/blake/crouched.svg",
  6032. extra: 840 / 587,
  6033. bottom: 0.04
  6034. }
  6035. },
  6036. bent: {
  6037. height: math.unit(6 * 0.75, "feet"),
  6038. weight: math.unit(180, "lbs"),
  6039. name: "Bent",
  6040. image: {
  6041. source: "./media/characters/blake/bent.svg",
  6042. extra: 592 / 544,
  6043. bottom: 0.035
  6044. }
  6045. },
  6046. },
  6047. [
  6048. {
  6049. name: "Normal",
  6050. height: math.unit(8 + 1 / 6, "feet"),
  6051. default: true
  6052. },
  6053. {
  6054. name: "Big Backside",
  6055. height: math.unit(37, "feet")
  6056. },
  6057. {
  6058. name: "Subway Shredder",
  6059. height: math.unit(72, "feet")
  6060. },
  6061. {
  6062. name: "City Carver",
  6063. height: math.unit(1675, "feet")
  6064. },
  6065. {
  6066. name: "Tectonic Tweaker",
  6067. height: math.unit(2300, "miles")
  6068. },
  6069. ]
  6070. ))
  6071. characterMakers.push(() => makeCharacter(
  6072. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6073. {
  6074. front: {
  6075. height: math.unit(6, "feet"),
  6076. weight: math.unit(180, "lbs"),
  6077. name: "Front",
  6078. image: {
  6079. source: "./media/characters/guisetto/front.svg",
  6080. extra: 856 / 817,
  6081. bottom: 0.06
  6082. }
  6083. },
  6084. airborne: {
  6085. height: math.unit(6, "feet"),
  6086. weight: math.unit(180, "lbs"),
  6087. name: "Airborne",
  6088. image: {
  6089. source: "./media/characters/guisetto/airborne.svg",
  6090. extra: 584 / 525
  6091. }
  6092. },
  6093. },
  6094. [
  6095. {
  6096. name: "Normal",
  6097. height: math.unit(10 + 11 / 12, "feet"),
  6098. default: true
  6099. },
  6100. {
  6101. name: "Large",
  6102. height: math.unit(35, "feet")
  6103. },
  6104. {
  6105. name: "Macro",
  6106. height: math.unit(475, "feet")
  6107. },
  6108. ]
  6109. ))
  6110. characterMakers.push(() => makeCharacter(
  6111. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6112. {
  6113. front: {
  6114. height: math.unit(6, "feet"),
  6115. weight: math.unit(180, "lbs"),
  6116. name: "Front",
  6117. image: {
  6118. source: "./media/characters/luxor/front.svg",
  6119. extra: 2940 / 2152
  6120. }
  6121. },
  6122. back: {
  6123. height: math.unit(6, "feet"),
  6124. weight: math.unit(180, "lbs"),
  6125. name: "Back",
  6126. image: {
  6127. source: "./media/characters/luxor/back.svg",
  6128. extra: 1083 / 960
  6129. }
  6130. },
  6131. },
  6132. [
  6133. {
  6134. name: "Normal",
  6135. height: math.unit(5 + 5 / 6, "feet"),
  6136. default: true
  6137. },
  6138. {
  6139. name: "Lamp",
  6140. height: math.unit(50, "feet")
  6141. },
  6142. {
  6143. name: "Lämp",
  6144. height: math.unit(300, "feet")
  6145. },
  6146. {
  6147. name: "The sun is a lamp",
  6148. height: math.unit(250000, "miles")
  6149. },
  6150. ]
  6151. ))
  6152. characterMakers.push(() => makeCharacter(
  6153. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6154. {
  6155. front: {
  6156. height: math.unit(6, "feet"),
  6157. weight: math.unit(50, "lbs"),
  6158. name: "Front",
  6159. image: {
  6160. source: "./media/characters/huoyan/front.svg"
  6161. }
  6162. },
  6163. side: {
  6164. height: math.unit(6, "feet"),
  6165. weight: math.unit(180, "lbs"),
  6166. name: "Side",
  6167. image: {
  6168. source: "./media/characters/huoyan/side.svg"
  6169. }
  6170. },
  6171. },
  6172. [
  6173. {
  6174. name: "Chef",
  6175. height: math.unit(9, "feet")
  6176. },
  6177. {
  6178. name: "Normal",
  6179. height: math.unit(65, "feet"),
  6180. default: true
  6181. },
  6182. {
  6183. name: "Macro",
  6184. height: math.unit(780, "feet")
  6185. },
  6186. {
  6187. name: "Flaming Mountain",
  6188. height: math.unit(4.8, "miles")
  6189. },
  6190. {
  6191. name: "Celestial",
  6192. height: math.unit(765000, "miles")
  6193. },
  6194. ]
  6195. ))
  6196. characterMakers.push(() => makeCharacter(
  6197. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6198. {
  6199. front: {
  6200. height: math.unit(5 + 3 / 4, "feet"),
  6201. weight: math.unit(120, "lbs"),
  6202. name: "Front",
  6203. image: {
  6204. source: "./media/characters/tails/front.svg"
  6205. }
  6206. }
  6207. },
  6208. [
  6209. {
  6210. name: "Normal",
  6211. height: math.unit(5 + 3 / 4, "feet"),
  6212. default: true
  6213. }
  6214. ]
  6215. ))
  6216. characterMakers.push(() => makeCharacter(
  6217. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6218. {
  6219. front: {
  6220. height: math.unit(4, "feet"),
  6221. weight: math.unit(50, "lbs"),
  6222. name: "Front",
  6223. image: {
  6224. source: "./media/characters/rainy/front.svg"
  6225. }
  6226. }
  6227. },
  6228. [
  6229. {
  6230. name: "Macro",
  6231. height: math.unit(800, "feet"),
  6232. default: true
  6233. }
  6234. ]
  6235. ))
  6236. characterMakers.push(() => makeCharacter(
  6237. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6238. {
  6239. front: {
  6240. height: math.unit(6, "feet"),
  6241. weight: math.unit(150, "lbs"),
  6242. name: "Front",
  6243. image: {
  6244. source: "./media/characters/rainier/front.svg"
  6245. }
  6246. }
  6247. },
  6248. [
  6249. {
  6250. name: "Micro",
  6251. height: math.unit(2, "mm"),
  6252. default: true
  6253. }
  6254. ]
  6255. ))
  6256. characterMakers.push(() => makeCharacter(
  6257. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6258. {
  6259. front: {
  6260. height: math.unit(8 + 4/12, "feet"),
  6261. weight: math.unit(450, "kilograms"),
  6262. volume: math.unit(5, "cups"),
  6263. name: "Front",
  6264. image: {
  6265. source: "./media/characters/andy-renard/front.svg",
  6266. extra: 1839/1726,
  6267. bottom: 134/1973
  6268. }
  6269. },
  6270. back: {
  6271. height: math.unit(8 + 4/12, "feet"),
  6272. weight: math.unit(450, "kilograms"),
  6273. volume: math.unit(5, "cups"),
  6274. name: "Back",
  6275. image: {
  6276. source: "./media/characters/andy-renard/back.svg",
  6277. extra: 1838/1710,
  6278. bottom: 105/1943
  6279. }
  6280. },
  6281. },
  6282. [
  6283. {
  6284. name: "Tall",
  6285. height: math.unit(8 + 4/12, "feet")
  6286. },
  6287. {
  6288. name: "Mini Macro",
  6289. height: math.unit(15, "feet"),
  6290. default: true
  6291. },
  6292. {
  6293. name: "Macro",
  6294. height: math.unit(100, "feet")
  6295. },
  6296. {
  6297. name: "Mega Macro",
  6298. height: math.unit(1000, "feet")
  6299. },
  6300. {
  6301. name: "Giga Macro",
  6302. height: math.unit(10, "miles")
  6303. },
  6304. {
  6305. name: "God Macro",
  6306. height: math.unit(1, "multiverse")
  6307. },
  6308. ]
  6309. ))
  6310. characterMakers.push(() => makeCharacter(
  6311. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6312. {
  6313. front: {
  6314. height: math.unit(6, "feet"),
  6315. weight: math.unit(210, "lbs"),
  6316. name: "Front",
  6317. image: {
  6318. source: "./media/characters/cimmaron/front-sfw.svg",
  6319. extra: 701 / 676,
  6320. bottom: 0.046
  6321. }
  6322. },
  6323. back: {
  6324. height: math.unit(6, "feet"),
  6325. weight: math.unit(210, "lbs"),
  6326. name: "Back",
  6327. image: {
  6328. source: "./media/characters/cimmaron/back-sfw.svg",
  6329. extra: 701 / 676,
  6330. bottom: 0.046
  6331. }
  6332. },
  6333. frontNsfw: {
  6334. height: math.unit(6, "feet"),
  6335. weight: math.unit(210, "lbs"),
  6336. name: "Front (NSFW)",
  6337. image: {
  6338. source: "./media/characters/cimmaron/front-nsfw.svg",
  6339. extra: 701 / 676,
  6340. bottom: 0.046
  6341. }
  6342. },
  6343. backNsfw: {
  6344. height: math.unit(6, "feet"),
  6345. weight: math.unit(210, "lbs"),
  6346. name: "Back (NSFW)",
  6347. image: {
  6348. source: "./media/characters/cimmaron/back-nsfw.svg",
  6349. extra: 701 / 676,
  6350. bottom: 0.046
  6351. }
  6352. },
  6353. dick: {
  6354. height: math.unit(1.714, "feet"),
  6355. name: "Dick",
  6356. image: {
  6357. source: "./media/characters/cimmaron/dick.svg"
  6358. }
  6359. },
  6360. },
  6361. [
  6362. {
  6363. name: "Normal",
  6364. height: math.unit(6, "feet"),
  6365. default: true
  6366. },
  6367. {
  6368. name: "Macro Mayor",
  6369. height: math.unit(350, "meters")
  6370. },
  6371. ]
  6372. ))
  6373. characterMakers.push(() => makeCharacter(
  6374. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6375. {
  6376. front: {
  6377. height: math.unit(6, "feet"),
  6378. weight: math.unit(200, "lbs"),
  6379. name: "Front",
  6380. image: {
  6381. source: "./media/characters/akari/front.svg",
  6382. extra: 962 / 901,
  6383. bottom: 0.04
  6384. }
  6385. }
  6386. },
  6387. [
  6388. {
  6389. name: "Micro",
  6390. height: math.unit(5, "inches"),
  6391. default: true
  6392. },
  6393. {
  6394. name: "Normal",
  6395. height: math.unit(7, "feet")
  6396. },
  6397. ]
  6398. ))
  6399. characterMakers.push(() => makeCharacter(
  6400. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6401. {
  6402. front: {
  6403. height: math.unit(6, "feet"),
  6404. weight: math.unit(140, "lbs"),
  6405. name: "Front",
  6406. image: {
  6407. source: "./media/characters/cynosura/front.svg",
  6408. extra: 896 / 847
  6409. }
  6410. },
  6411. back: {
  6412. height: math.unit(6, "feet"),
  6413. weight: math.unit(140, "lbs"),
  6414. name: "Back",
  6415. image: {
  6416. source: "./media/characters/cynosura/back.svg",
  6417. extra: 1365 / 1250
  6418. }
  6419. },
  6420. },
  6421. [
  6422. {
  6423. name: "Micro",
  6424. height: math.unit(4, "inches")
  6425. },
  6426. {
  6427. name: "Normal",
  6428. height: math.unit(5.75, "feet"),
  6429. default: true
  6430. },
  6431. {
  6432. name: "Tall",
  6433. height: math.unit(10, "feet")
  6434. },
  6435. {
  6436. name: "Big",
  6437. height: math.unit(20, "feet")
  6438. },
  6439. {
  6440. name: "Macro",
  6441. height: math.unit(50, "feet")
  6442. },
  6443. ]
  6444. ))
  6445. characterMakers.push(() => makeCharacter(
  6446. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6447. {
  6448. front: {
  6449. height: math.unit(13 + 2/12, "feet"),
  6450. weight: math.unit(800, "kg"),
  6451. name: "Front",
  6452. image: {
  6453. source: "./media/characters/gin/front.svg",
  6454. extra: 1312/1191,
  6455. bottom: 45/1357
  6456. }
  6457. },
  6458. mouth: {
  6459. height: math.unit(2.39 * 1.8, "feet"),
  6460. name: "Mouth",
  6461. image: {
  6462. source: "./media/characters/gin/mouth.svg"
  6463. }
  6464. },
  6465. hand: {
  6466. height: math.unit(1.57 * 2.19, "feet"),
  6467. name: "Hand",
  6468. image: {
  6469. source: "./media/characters/gin/hand.svg"
  6470. }
  6471. },
  6472. foot: {
  6473. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6474. name: "Foot",
  6475. image: {
  6476. source: "./media/characters/gin/foot.svg"
  6477. }
  6478. },
  6479. sole: {
  6480. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6481. name: "Sole",
  6482. image: {
  6483. source: "./media/characters/gin/sole.svg"
  6484. }
  6485. },
  6486. },
  6487. [
  6488. {
  6489. name: "Very Small",
  6490. height: math.unit(13 + 2 / 12, "feet")
  6491. },
  6492. {
  6493. name: "Micro",
  6494. height: math.unit(600, "miles")
  6495. },
  6496. {
  6497. name: "Regular",
  6498. height: math.unit(20, "earths"),
  6499. default: true
  6500. },
  6501. {
  6502. name: "Macro",
  6503. height: math.unit(2.2, "solarradii")
  6504. },
  6505. {
  6506. name: "Teramacro",
  6507. height: math.unit(1.2, "galaxies")
  6508. },
  6509. {
  6510. name: "Omegamacro",
  6511. height: math.unit(200, "universes")
  6512. },
  6513. ]
  6514. ))
  6515. characterMakers.push(() => makeCharacter(
  6516. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6517. {
  6518. front: {
  6519. height: math.unit(6 + 1 / 6, "feet"),
  6520. weight: math.unit(178, "lbs"),
  6521. name: "Front",
  6522. image: {
  6523. source: "./media/characters/guy/front.svg"
  6524. }
  6525. }
  6526. },
  6527. [
  6528. {
  6529. name: "Normal",
  6530. height: math.unit(6 + 1 / 6, "feet"),
  6531. default: true
  6532. },
  6533. {
  6534. name: "Large",
  6535. height: math.unit(25 + 7 / 12, "feet")
  6536. },
  6537. {
  6538. name: "Macro",
  6539. height: math.unit(60 + 9 / 12, "feet")
  6540. },
  6541. {
  6542. name: "Macro+",
  6543. height: math.unit(246, "feet")
  6544. },
  6545. {
  6546. name: "Macro++",
  6547. height: math.unit(878, "feet")
  6548. }
  6549. ]
  6550. ))
  6551. characterMakers.push(() => makeCharacter(
  6552. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6553. {
  6554. front: {
  6555. height: math.unit(9, "feet"),
  6556. weight: math.unit(800, "lbs"),
  6557. name: "Front",
  6558. image: {
  6559. source: "./media/characters/tiberius/front.svg",
  6560. extra: 2295 / 2071
  6561. }
  6562. },
  6563. back: {
  6564. height: math.unit(9, "feet"),
  6565. weight: math.unit(800, "lbs"),
  6566. name: "Back",
  6567. image: {
  6568. source: "./media/characters/tiberius/back.svg",
  6569. extra: 2373 / 2160
  6570. }
  6571. },
  6572. },
  6573. [
  6574. {
  6575. name: "Normal",
  6576. height: math.unit(9, "feet"),
  6577. default: true
  6578. }
  6579. ]
  6580. ))
  6581. characterMakers.push(() => makeCharacter(
  6582. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6583. {
  6584. front: {
  6585. height: math.unit(6, "feet"),
  6586. weight: math.unit(600, "lbs"),
  6587. name: "Front",
  6588. image: {
  6589. source: "./media/characters/surgo/front.svg",
  6590. extra: 3591 / 2227
  6591. }
  6592. },
  6593. back: {
  6594. height: math.unit(6, "feet"),
  6595. weight: math.unit(600, "lbs"),
  6596. name: "Back",
  6597. image: {
  6598. source: "./media/characters/surgo/back.svg",
  6599. extra: 3557 / 2228
  6600. }
  6601. },
  6602. laying: {
  6603. height: math.unit(6 * 0.85, "feet"),
  6604. weight: math.unit(600, "lbs"),
  6605. name: "Laying",
  6606. image: {
  6607. source: "./media/characters/surgo/laying.svg"
  6608. }
  6609. },
  6610. },
  6611. [
  6612. {
  6613. name: "Normal",
  6614. height: math.unit(6, "feet"),
  6615. default: true
  6616. }
  6617. ]
  6618. ))
  6619. characterMakers.push(() => makeCharacter(
  6620. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6621. {
  6622. side: {
  6623. height: math.unit(6, "feet"),
  6624. weight: math.unit(150, "lbs"),
  6625. name: "Side",
  6626. image: {
  6627. source: "./media/characters/cibus/side.svg",
  6628. extra: 800 / 400
  6629. }
  6630. },
  6631. },
  6632. [
  6633. {
  6634. name: "Normal",
  6635. height: math.unit(6, "feet"),
  6636. default: true
  6637. }
  6638. ]
  6639. ))
  6640. characterMakers.push(() => makeCharacter(
  6641. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6642. {
  6643. front: {
  6644. height: math.unit(6, "feet"),
  6645. weight: math.unit(240, "lbs"),
  6646. name: "Front",
  6647. image: {
  6648. source: "./media/characters/nibbles/front.svg"
  6649. }
  6650. },
  6651. side: {
  6652. height: math.unit(6, "feet"),
  6653. weight: math.unit(240, "lbs"),
  6654. name: "Side",
  6655. image: {
  6656. source: "./media/characters/nibbles/side.svg"
  6657. }
  6658. },
  6659. },
  6660. [
  6661. {
  6662. name: "Normal",
  6663. height: math.unit(9, "feet"),
  6664. default: true
  6665. }
  6666. ]
  6667. ))
  6668. characterMakers.push(() => makeCharacter(
  6669. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6670. {
  6671. side: {
  6672. height: math.unit(5 + 1 / 6, "feet"),
  6673. weight: math.unit(130, "lbs"),
  6674. name: "Side",
  6675. image: {
  6676. source: "./media/characters/rikky/side.svg",
  6677. extra: 851 / 801
  6678. }
  6679. },
  6680. },
  6681. [
  6682. {
  6683. name: "Normal",
  6684. height: math.unit(5 + 1 / 6, "feet")
  6685. },
  6686. {
  6687. name: "Macro",
  6688. height: math.unit(152, "feet"),
  6689. default: true
  6690. },
  6691. {
  6692. name: "Megamacro",
  6693. height: math.unit(7, "miles")
  6694. }
  6695. ]
  6696. ))
  6697. characterMakers.push(() => makeCharacter(
  6698. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6699. {
  6700. side: {
  6701. height: math.unit(370, "cm"),
  6702. weight: math.unit(350, "lbs"),
  6703. name: "Side",
  6704. image: {
  6705. source: "./media/characters/malfressa/side.svg"
  6706. }
  6707. },
  6708. walking: {
  6709. height: math.unit(370, "cm"),
  6710. weight: math.unit(350, "lbs"),
  6711. name: "Walking",
  6712. image: {
  6713. source: "./media/characters/malfressa/walking.svg"
  6714. }
  6715. },
  6716. feral: {
  6717. height: math.unit(2500, "cm"),
  6718. weight: math.unit(100000, "lbs"),
  6719. name: "Feral",
  6720. image: {
  6721. source: "./media/characters/malfressa/feral.svg",
  6722. extra: 2108 / 837,
  6723. bottom: 0.02
  6724. }
  6725. },
  6726. },
  6727. [
  6728. {
  6729. name: "Normal",
  6730. height: math.unit(370, "cm")
  6731. },
  6732. {
  6733. name: "Macro",
  6734. height: math.unit(300, "meters"),
  6735. default: true
  6736. }
  6737. ]
  6738. ))
  6739. characterMakers.push(() => makeCharacter(
  6740. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6741. {
  6742. front: {
  6743. height: math.unit(6, "feet"),
  6744. weight: math.unit(60, "kg"),
  6745. name: "Front",
  6746. image: {
  6747. source: "./media/characters/jaro/front.svg",
  6748. extra: 845/817,
  6749. bottom: 45/890
  6750. }
  6751. },
  6752. back: {
  6753. height: math.unit(6, "feet"),
  6754. weight: math.unit(60, "kg"),
  6755. name: "Back",
  6756. image: {
  6757. source: "./media/characters/jaro/back.svg",
  6758. extra: 847/817,
  6759. bottom: 34/881
  6760. }
  6761. },
  6762. },
  6763. [
  6764. {
  6765. name: "Micro",
  6766. height: math.unit(7, "inches")
  6767. },
  6768. {
  6769. name: "Normal",
  6770. height: math.unit(5.5, "feet"),
  6771. default: true
  6772. },
  6773. {
  6774. name: "Minimacro",
  6775. height: math.unit(20, "feet")
  6776. },
  6777. {
  6778. name: "Macro",
  6779. height: math.unit(200, "meters")
  6780. }
  6781. ]
  6782. ))
  6783. characterMakers.push(() => makeCharacter(
  6784. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6785. {
  6786. front: {
  6787. height: math.unit(6, "feet"),
  6788. weight: math.unit(195, "lb"),
  6789. name: "Front",
  6790. image: {
  6791. source: "./media/characters/rogue/front.svg"
  6792. }
  6793. },
  6794. },
  6795. [
  6796. {
  6797. name: "Macro",
  6798. height: math.unit(90, "feet"),
  6799. default: true
  6800. },
  6801. ]
  6802. ))
  6803. characterMakers.push(() => makeCharacter(
  6804. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6805. {
  6806. standing: {
  6807. height: math.unit(5 + 8 / 12, "feet"),
  6808. weight: math.unit(140, "lb"),
  6809. name: "Standing",
  6810. image: {
  6811. source: "./media/characters/piper/standing.svg",
  6812. extra: 1440/1284,
  6813. bottom: 66/1506
  6814. }
  6815. },
  6816. running: {
  6817. height: math.unit(5 + 8 / 12, "feet"),
  6818. weight: math.unit(140, "lb"),
  6819. name: "Running",
  6820. image: {
  6821. source: "./media/characters/piper/running.svg",
  6822. extra: 3948/3655,
  6823. bottom: 0/3948
  6824. }
  6825. },
  6826. sole: {
  6827. height: math.unit(0.81, "feet"),
  6828. weight: math.unit(2, "kg"),
  6829. name: "Sole",
  6830. image: {
  6831. source: "./media/characters/piper/sole.svg"
  6832. }
  6833. },
  6834. nipple: {
  6835. height: math.unit(0.25, "feet"),
  6836. weight: math.unit(1.5, "lb"),
  6837. name: "Nipple",
  6838. image: {
  6839. source: "./media/characters/piper/nipple.svg"
  6840. }
  6841. },
  6842. head: {
  6843. height: math.unit(1.1, "feet"),
  6844. name: "Head",
  6845. image: {
  6846. source: "./media/characters/piper/head.svg"
  6847. }
  6848. },
  6849. },
  6850. [
  6851. {
  6852. name: "Micro",
  6853. height: math.unit(2, "inches")
  6854. },
  6855. {
  6856. name: "Normal",
  6857. height: math.unit(5 + 8 / 12, "feet")
  6858. },
  6859. {
  6860. name: "Macro",
  6861. height: math.unit(250, "feet"),
  6862. default: true
  6863. },
  6864. {
  6865. name: "Megamacro",
  6866. height: math.unit(7, "miles")
  6867. },
  6868. ]
  6869. ))
  6870. characterMakers.push(() => makeCharacter(
  6871. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6872. {
  6873. front: {
  6874. height: math.unit(6, "feet"),
  6875. weight: math.unit(220, "lb"),
  6876. name: "Front",
  6877. image: {
  6878. source: "./media/characters/gemini/front.svg"
  6879. }
  6880. },
  6881. back: {
  6882. height: math.unit(6, "feet"),
  6883. weight: math.unit(220, "lb"),
  6884. name: "Back",
  6885. image: {
  6886. source: "./media/characters/gemini/back.svg"
  6887. }
  6888. },
  6889. kneeling: {
  6890. height: math.unit(6 / 1.5, "feet"),
  6891. weight: math.unit(220, "lb"),
  6892. name: "Kneeling",
  6893. image: {
  6894. source: "./media/characters/gemini/kneeling.svg",
  6895. bottom: 0.02
  6896. }
  6897. },
  6898. },
  6899. [
  6900. {
  6901. name: "Macro",
  6902. height: math.unit(300, "meters"),
  6903. default: true
  6904. },
  6905. {
  6906. name: "Megamacro",
  6907. height: math.unit(6900, "meters")
  6908. },
  6909. ]
  6910. ))
  6911. characterMakers.push(() => makeCharacter(
  6912. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6913. {
  6914. anthro: {
  6915. height: math.unit(2.35, "meters"),
  6916. weight: math.unit(73, "kg"),
  6917. name: "Anthro",
  6918. image: {
  6919. source: "./media/characters/alicia/anthro.svg",
  6920. extra: 2571 / 2385,
  6921. bottom: 75 / 2648
  6922. }
  6923. },
  6924. paw: {
  6925. height: math.unit(1.32, "feet"),
  6926. name: "Paw",
  6927. image: {
  6928. source: "./media/characters/alicia/paw.svg"
  6929. }
  6930. },
  6931. feral: {
  6932. height: math.unit(1.69, "meters"),
  6933. weight: math.unit(73, "kg"),
  6934. name: "Feral",
  6935. image: {
  6936. source: "./media/characters/alicia/feral.svg",
  6937. extra: 2123 / 1715,
  6938. bottom: 222 / 2349
  6939. }
  6940. },
  6941. },
  6942. [
  6943. {
  6944. name: "Normal",
  6945. height: math.unit(2.35, "meters")
  6946. },
  6947. {
  6948. name: "Macro",
  6949. height: math.unit(60, "meters"),
  6950. default: true
  6951. },
  6952. {
  6953. name: "Megamacro",
  6954. height: math.unit(10000, "kilometers")
  6955. },
  6956. ]
  6957. ))
  6958. characterMakers.push(() => makeCharacter(
  6959. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6960. {
  6961. front: {
  6962. height: math.unit(7, "feet"),
  6963. weight: math.unit(250, "lbs"),
  6964. name: "Front",
  6965. image: {
  6966. source: "./media/characters/archy/front.svg"
  6967. }
  6968. }
  6969. },
  6970. [
  6971. {
  6972. name: "Micro",
  6973. height: math.unit(1, "inch")
  6974. },
  6975. {
  6976. name: "Shorty",
  6977. height: math.unit(5, "feet")
  6978. },
  6979. {
  6980. name: "Normal",
  6981. height: math.unit(7, "feet")
  6982. },
  6983. {
  6984. name: "Macro",
  6985. height: math.unit(600, "meters"),
  6986. default: true
  6987. },
  6988. {
  6989. name: "Megamacro",
  6990. height: math.unit(1, "mile")
  6991. },
  6992. ]
  6993. ))
  6994. characterMakers.push(() => makeCharacter(
  6995. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6996. {
  6997. front: {
  6998. height: math.unit(1.65, "meters"),
  6999. weight: math.unit(74, "kg"),
  7000. name: "Front",
  7001. image: {
  7002. source: "./media/characters/berri/front.svg",
  7003. extra: 857 / 837,
  7004. bottom: 18 / 877
  7005. }
  7006. },
  7007. bum: {
  7008. height: math.unit(1.46, "feet"),
  7009. name: "Bum",
  7010. image: {
  7011. source: "./media/characters/berri/bum.svg"
  7012. }
  7013. },
  7014. mouth: {
  7015. height: math.unit(0.44, "feet"),
  7016. name: "Mouth",
  7017. image: {
  7018. source: "./media/characters/berri/mouth.svg"
  7019. }
  7020. },
  7021. paw: {
  7022. height: math.unit(0.826, "feet"),
  7023. name: "Paw",
  7024. image: {
  7025. source: "./media/characters/berri/paw.svg"
  7026. }
  7027. },
  7028. },
  7029. [
  7030. {
  7031. name: "Normal",
  7032. height: math.unit(1.65, "meters")
  7033. },
  7034. {
  7035. name: "Macro",
  7036. height: math.unit(60, "m"),
  7037. default: true
  7038. },
  7039. {
  7040. name: "Megamacro",
  7041. height: math.unit(9.213, "km")
  7042. },
  7043. {
  7044. name: "Planet Eater",
  7045. height: math.unit(489, "megameters")
  7046. },
  7047. {
  7048. name: "Teramacro",
  7049. height: math.unit(2471635000000, "meters")
  7050. },
  7051. {
  7052. name: "Examacro",
  7053. height: math.unit(8.0624e+26, "meters")
  7054. }
  7055. ]
  7056. ))
  7057. characterMakers.push(() => makeCharacter(
  7058. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7059. {
  7060. front: {
  7061. height: math.unit(1.72, "meters"),
  7062. weight: math.unit(68, "kg"),
  7063. name: "Front",
  7064. image: {
  7065. source: "./media/characters/lexi/front.svg"
  7066. }
  7067. }
  7068. },
  7069. [
  7070. {
  7071. name: "Very Smol",
  7072. height: math.unit(10, "mm")
  7073. },
  7074. {
  7075. name: "Micro",
  7076. height: math.unit(6.8, "cm"),
  7077. default: true
  7078. },
  7079. {
  7080. name: "Normal",
  7081. height: math.unit(1.72, "m")
  7082. }
  7083. ]
  7084. ))
  7085. characterMakers.push(() => makeCharacter(
  7086. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7087. {
  7088. front: {
  7089. height: math.unit(1.69, "meters"),
  7090. weight: math.unit(68, "kg"),
  7091. name: "Front",
  7092. image: {
  7093. source: "./media/characters/martin/front.svg",
  7094. extra: 596 / 581
  7095. }
  7096. }
  7097. },
  7098. [
  7099. {
  7100. name: "Micro",
  7101. height: math.unit(6.85, "cm"),
  7102. default: true
  7103. },
  7104. {
  7105. name: "Normal",
  7106. height: math.unit(1.69, "m")
  7107. }
  7108. ]
  7109. ))
  7110. characterMakers.push(() => makeCharacter(
  7111. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7112. {
  7113. front: {
  7114. height: math.unit(1.69, "meters"),
  7115. weight: math.unit(68, "kg"),
  7116. name: "Front",
  7117. image: {
  7118. source: "./media/characters/juno/front.svg"
  7119. }
  7120. }
  7121. },
  7122. [
  7123. {
  7124. name: "Micro",
  7125. height: math.unit(7, "cm")
  7126. },
  7127. {
  7128. name: "Normal",
  7129. height: math.unit(1.89, "m")
  7130. },
  7131. {
  7132. name: "Macro",
  7133. height: math.unit(353, "meters"),
  7134. default: true
  7135. }
  7136. ]
  7137. ))
  7138. characterMakers.push(() => makeCharacter(
  7139. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7140. {
  7141. front: {
  7142. height: math.unit(1.93, "meters"),
  7143. weight: math.unit(83, "kg"),
  7144. name: "Front",
  7145. image: {
  7146. source: "./media/characters/samantha/front.svg"
  7147. }
  7148. },
  7149. frontClothed: {
  7150. height: math.unit(1.93, "meters"),
  7151. weight: math.unit(83, "kg"),
  7152. name: "Front (Clothed)",
  7153. image: {
  7154. source: "./media/characters/samantha/front-clothed.svg"
  7155. }
  7156. },
  7157. back: {
  7158. height: math.unit(1.93, "meters"),
  7159. weight: math.unit(83, "kg"),
  7160. name: "Back",
  7161. image: {
  7162. source: "./media/characters/samantha/back.svg"
  7163. }
  7164. },
  7165. },
  7166. [
  7167. {
  7168. name: "Normal",
  7169. height: math.unit(1.93, "m")
  7170. },
  7171. {
  7172. name: "Macro",
  7173. height: math.unit(74, "meters"),
  7174. default: true
  7175. },
  7176. {
  7177. name: "Macro+",
  7178. height: math.unit(223, "meters"),
  7179. },
  7180. {
  7181. name: "Megamacro",
  7182. height: math.unit(8381, "meters"),
  7183. },
  7184. {
  7185. name: "Megamacro+",
  7186. height: math.unit(12000, "kilometers")
  7187. },
  7188. ]
  7189. ))
  7190. characterMakers.push(() => makeCharacter(
  7191. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7192. {
  7193. front: {
  7194. height: math.unit(1.92, "meters"),
  7195. weight: math.unit(80, "kg"),
  7196. name: "Front",
  7197. image: {
  7198. source: "./media/characters/dr-clay/front.svg"
  7199. }
  7200. },
  7201. frontClothed: {
  7202. height: math.unit(1.92, "meters"),
  7203. weight: math.unit(80, "kg"),
  7204. name: "Front (Clothed)",
  7205. image: {
  7206. source: "./media/characters/dr-clay/front-clothed.svg"
  7207. }
  7208. }
  7209. },
  7210. [
  7211. {
  7212. name: "Normal",
  7213. height: math.unit(1.92, "m")
  7214. },
  7215. {
  7216. name: "Macro",
  7217. height: math.unit(214, "meters"),
  7218. default: true
  7219. },
  7220. {
  7221. name: "Macro+",
  7222. height: math.unit(12.237, "meters"),
  7223. },
  7224. {
  7225. name: "Megamacro",
  7226. height: math.unit(557, "megameters"),
  7227. },
  7228. {
  7229. name: "Unimaginable",
  7230. height: math.unit(120e9, "lightyears")
  7231. },
  7232. ]
  7233. ))
  7234. characterMakers.push(() => makeCharacter(
  7235. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7236. {
  7237. front: {
  7238. height: math.unit(2, "meters"),
  7239. weight: math.unit(80, "kg"),
  7240. name: "Front",
  7241. image: {
  7242. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7243. }
  7244. }
  7245. },
  7246. [
  7247. {
  7248. name: "Teramacro",
  7249. height: math.unit(500000, "lightyears"),
  7250. default: true
  7251. },
  7252. ]
  7253. ))
  7254. characterMakers.push(() => makeCharacter(
  7255. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7256. {
  7257. crux: {
  7258. height: math.unit(2, "meters"),
  7259. weight: math.unit(150, "kg"),
  7260. name: "Crux",
  7261. image: {
  7262. source: "./media/characters/vemus/crux.svg",
  7263. extra: 1074/936,
  7264. bottom: 23/1097
  7265. }
  7266. },
  7267. skunkTanuki: {
  7268. height: math.unit(2, "meters"),
  7269. weight: math.unit(150, "kg"),
  7270. name: "Skunk-Tanuki",
  7271. image: {
  7272. source: "./media/characters/vemus/skunk-tanuki.svg",
  7273. extra: 926/893,
  7274. bottom: 20/946
  7275. }
  7276. },
  7277. },
  7278. [
  7279. {
  7280. name: "Normal",
  7281. height: math.unit(4, "meters"),
  7282. default: true
  7283. },
  7284. {
  7285. name: "Big",
  7286. height: math.unit(8, "meters")
  7287. },
  7288. {
  7289. name: "Macro",
  7290. height: math.unit(100, "meters")
  7291. },
  7292. {
  7293. name: "Macro+",
  7294. height: math.unit(1500, "meters")
  7295. },
  7296. {
  7297. name: "Stellar",
  7298. height: math.unit(14e8, "meters")
  7299. },
  7300. ]
  7301. ))
  7302. characterMakers.push(() => makeCharacter(
  7303. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7304. {
  7305. front: {
  7306. height: math.unit(2, "meters"),
  7307. weight: math.unit(70, "kg"),
  7308. name: "Front",
  7309. image: {
  7310. source: "./media/characters/beherit/front.svg",
  7311. extra: 1234/1109,
  7312. bottom: 55/1289
  7313. }
  7314. }
  7315. },
  7316. [
  7317. {
  7318. name: "Normal",
  7319. height: math.unit(6, "feet")
  7320. },
  7321. {
  7322. name: "Lorg",
  7323. height: math.unit(25, "feet"),
  7324. default: true
  7325. },
  7326. {
  7327. name: "Lorger",
  7328. height: math.unit(75, "feet")
  7329. },
  7330. {
  7331. name: "Macro",
  7332. height: math.unit(200, "meters")
  7333. },
  7334. ]
  7335. ))
  7336. characterMakers.push(() => makeCharacter(
  7337. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7338. {
  7339. front: {
  7340. height: math.unit(2, "meters"),
  7341. weight: math.unit(150, "kg"),
  7342. name: "Front",
  7343. image: {
  7344. source: "./media/characters/everett/front.svg",
  7345. extra: 1017/866,
  7346. bottom: 86/1103
  7347. }
  7348. },
  7349. paw: {
  7350. height: math.unit(2 / 3.6, "meters"),
  7351. name: "Paw",
  7352. image: {
  7353. source: "./media/characters/everett/paw.svg"
  7354. }
  7355. },
  7356. },
  7357. [
  7358. {
  7359. name: "Normal",
  7360. height: math.unit(15, "feet"),
  7361. default: true
  7362. },
  7363. {
  7364. name: "Lorg",
  7365. height: math.unit(70, "feet"),
  7366. default: true
  7367. },
  7368. {
  7369. name: "Lorger",
  7370. height: math.unit(250, "feet")
  7371. },
  7372. {
  7373. name: "Macro",
  7374. height: math.unit(500, "meters")
  7375. },
  7376. ]
  7377. ))
  7378. characterMakers.push(() => makeCharacter(
  7379. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7380. {
  7381. front: {
  7382. height: math.unit(2, "meters"),
  7383. weight: math.unit(86, "kg"),
  7384. name: "Front",
  7385. image: {
  7386. source: "./media/characters/rose/front.svg",
  7387. extra: 1785/1636,
  7388. bottom: 30/1815
  7389. },
  7390. form: "liom",
  7391. default: true
  7392. },
  7393. frontSporty: {
  7394. height: math.unit(2, "meters"),
  7395. weight: math.unit(86, "kg"),
  7396. name: "Front (Sporty)",
  7397. image: {
  7398. source: "./media/characters/rose/front-sporty.svg",
  7399. extra: 350/335,
  7400. bottom: 10/360
  7401. },
  7402. form: "liom"
  7403. },
  7404. frontAlt: {
  7405. height: math.unit(1.6, "meters"),
  7406. weight: math.unit(86, "kg"),
  7407. name: "Front (Alt)",
  7408. image: {
  7409. source: "./media/characters/rose/front-alt.svg",
  7410. extra: 299/283,
  7411. bottom: 3/302
  7412. },
  7413. form: "liom"
  7414. },
  7415. plush: {
  7416. height: math.unit(2, "meters"),
  7417. weight: math.unit(86/3, "kg"),
  7418. name: "Plush",
  7419. image: {
  7420. source: "./media/characters/rose/plush.svg",
  7421. extra: 361/337,
  7422. bottom: 11/372
  7423. },
  7424. form: "plush",
  7425. default: true
  7426. },
  7427. faeStanding: {
  7428. height: math.unit(10, "cm"),
  7429. weight: math.unit(10, "grams"),
  7430. name: "Standing",
  7431. image: {
  7432. source: "./media/characters/rose/fae-standing.svg",
  7433. extra: 1189/1060,
  7434. bottom: 27/1216
  7435. },
  7436. form: "fae",
  7437. default: true
  7438. },
  7439. faeSitting: {
  7440. height: math.unit(5, "cm"),
  7441. weight: math.unit(10, "grams"),
  7442. name: "Sitting",
  7443. image: {
  7444. source: "./media/characters/rose/fae-sitting.svg",
  7445. extra: 737/577,
  7446. bottom: 356/1093
  7447. },
  7448. form: "fae"
  7449. },
  7450. faePaw: {
  7451. height: math.unit(1.35, "cm"),
  7452. name: "Paw",
  7453. image: {
  7454. source: "./media/characters/rose/fae-paw.svg"
  7455. },
  7456. form: "fae"
  7457. },
  7458. },
  7459. [
  7460. {
  7461. name: "True Micro",
  7462. height: math.unit(9, "cm"),
  7463. form: "liom"
  7464. },
  7465. {
  7466. name: "Micro",
  7467. height: math.unit(16, "cm"),
  7468. form: "liom"
  7469. },
  7470. {
  7471. name: "Normal",
  7472. height: math.unit(1.85, "meters"),
  7473. default: true,
  7474. form: "liom"
  7475. },
  7476. {
  7477. name: "Mini-Macro",
  7478. height: math.unit(5, "meters"),
  7479. form: "liom"
  7480. },
  7481. {
  7482. name: "Macro",
  7483. height: math.unit(15, "meters"),
  7484. form: "liom"
  7485. },
  7486. {
  7487. name: "True Macro",
  7488. height: math.unit(40, "meters"),
  7489. form: "liom"
  7490. },
  7491. {
  7492. name: "City Scale",
  7493. height: math.unit(1, "km"),
  7494. form: "liom"
  7495. },
  7496. {
  7497. name: "Plushie",
  7498. height: math.unit(9, "cm"),
  7499. form: "plush",
  7500. default: true
  7501. },
  7502. {
  7503. name: "Fae",
  7504. height: math.unit(10, "cm"),
  7505. form: "fae",
  7506. default: true
  7507. },
  7508. ],
  7509. {
  7510. "liom": {
  7511. name: "Liom"
  7512. },
  7513. "plush": {
  7514. name: "Plush"
  7515. },
  7516. "fae": {
  7517. name: "Fae Fox",
  7518. default: true
  7519. }
  7520. }
  7521. ))
  7522. characterMakers.push(() => makeCharacter(
  7523. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7524. {
  7525. front: {
  7526. height: math.unit(2, "meters"),
  7527. weight: math.unit(350, "lbs"),
  7528. name: "Front",
  7529. image: {
  7530. source: "./media/characters/regal/front.svg"
  7531. }
  7532. },
  7533. back: {
  7534. height: math.unit(2, "meters"),
  7535. weight: math.unit(350, "lbs"),
  7536. name: "Back",
  7537. image: {
  7538. source: "./media/characters/regal/back.svg"
  7539. }
  7540. },
  7541. },
  7542. [
  7543. {
  7544. name: "Macro",
  7545. height: math.unit(350, "feet"),
  7546. default: true
  7547. }
  7548. ]
  7549. ))
  7550. characterMakers.push(() => makeCharacter(
  7551. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7552. {
  7553. front: {
  7554. height: math.unit(4 + 11 / 12, "feet"),
  7555. weight: math.unit(100, "lbs"),
  7556. name: "Front",
  7557. image: {
  7558. source: "./media/characters/opal/front.svg"
  7559. }
  7560. },
  7561. frontAlt: {
  7562. height: math.unit(4 + 11 / 12, "feet"),
  7563. weight: math.unit(100, "lbs"),
  7564. name: "Front (Alt)",
  7565. image: {
  7566. source: "./media/characters/opal/front-alt.svg"
  7567. }
  7568. },
  7569. },
  7570. [
  7571. {
  7572. name: "Small",
  7573. height: math.unit(4 + 11 / 12, "feet")
  7574. },
  7575. {
  7576. name: "Normal",
  7577. height: math.unit(20, "feet"),
  7578. default: true
  7579. },
  7580. {
  7581. name: "Macro",
  7582. height: math.unit(120, "feet")
  7583. },
  7584. {
  7585. name: "Megamacro",
  7586. height: math.unit(80, "miles")
  7587. },
  7588. {
  7589. name: "True Size",
  7590. height: math.unit(100000, "lightyears")
  7591. },
  7592. ]
  7593. ))
  7594. characterMakers.push(() => makeCharacter(
  7595. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7596. {
  7597. front: {
  7598. height: math.unit(6, "feet"),
  7599. weight: math.unit(200, "lbs"),
  7600. name: "Front",
  7601. image: {
  7602. source: "./media/characters/vector-wuff/front.svg"
  7603. }
  7604. }
  7605. },
  7606. [
  7607. {
  7608. name: "Normal",
  7609. height: math.unit(2.8, "meters")
  7610. },
  7611. {
  7612. name: "Macro",
  7613. height: math.unit(450, "meters"),
  7614. default: true
  7615. },
  7616. {
  7617. name: "Megamacro",
  7618. height: math.unit(15, "kilometers")
  7619. }
  7620. ]
  7621. ))
  7622. characterMakers.push(() => makeCharacter(
  7623. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7624. {
  7625. front: {
  7626. height: math.unit(6, "feet"),
  7627. weight: math.unit(256, "lbs"),
  7628. name: "Front",
  7629. image: {
  7630. source: "./media/characters/dannik/front.svg"
  7631. }
  7632. }
  7633. },
  7634. [
  7635. {
  7636. name: "Macro",
  7637. height: math.unit(69.57, "meters"),
  7638. default: true
  7639. },
  7640. ]
  7641. ))
  7642. characterMakers.push(() => makeCharacter(
  7643. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7644. {
  7645. front: {
  7646. height: math.unit(6, "feet"),
  7647. weight: math.unit(120, "lbs"),
  7648. name: "Front",
  7649. image: {
  7650. source: "./media/characters/azura-saharah/front.svg"
  7651. }
  7652. },
  7653. back: {
  7654. height: math.unit(6, "feet"),
  7655. weight: math.unit(120, "lbs"),
  7656. name: "Back",
  7657. image: {
  7658. source: "./media/characters/azura-saharah/back.svg"
  7659. }
  7660. },
  7661. },
  7662. [
  7663. {
  7664. name: "Macro",
  7665. height: math.unit(100, "feet"),
  7666. default: true
  7667. },
  7668. ]
  7669. ))
  7670. characterMakers.push(() => makeCharacter(
  7671. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7672. {
  7673. side: {
  7674. height: math.unit(5 + 4 / 12, "feet"),
  7675. weight: math.unit(163, "lbs"),
  7676. name: "Side",
  7677. image: {
  7678. source: "./media/characters/kennedy/side.svg"
  7679. }
  7680. }
  7681. },
  7682. [
  7683. {
  7684. name: "Standard Doggo",
  7685. height: math.unit(5 + 4 / 12, "feet")
  7686. },
  7687. {
  7688. name: "Big Doggo",
  7689. height: math.unit(25 + 3 / 12, "feet"),
  7690. default: true
  7691. },
  7692. ]
  7693. ))
  7694. characterMakers.push(() => makeCharacter(
  7695. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7696. {
  7697. front: {
  7698. height: math.unit(5 + 5/12, "feet"),
  7699. weight: math.unit(100, "lbs"),
  7700. name: "Front",
  7701. image: {
  7702. source: "./media/characters/odios-de-lunar/front.svg",
  7703. extra: 1468/1323,
  7704. bottom: 22/1490
  7705. }
  7706. }
  7707. },
  7708. [
  7709. {
  7710. name: "Micro",
  7711. height: math.unit(3, "inches")
  7712. },
  7713. {
  7714. name: "Normal",
  7715. height: math.unit(5.5, "feet"),
  7716. default: true
  7717. },
  7718. {
  7719. name: "Macro",
  7720. height: math.unit(100, "feet")
  7721. },
  7722. ]
  7723. ))
  7724. characterMakers.push(() => makeCharacter(
  7725. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7726. {
  7727. back: {
  7728. height: math.unit(6, "feet"),
  7729. weight: math.unit(220, "lbs"),
  7730. name: "Back",
  7731. image: {
  7732. source: "./media/characters/mandake/back.svg"
  7733. }
  7734. }
  7735. },
  7736. [
  7737. {
  7738. name: "Normal",
  7739. height: math.unit(7, "feet"),
  7740. default: true
  7741. },
  7742. {
  7743. name: "Macro",
  7744. height: math.unit(78, "feet")
  7745. },
  7746. {
  7747. name: "Macro+",
  7748. height: math.unit(300, "meters")
  7749. },
  7750. {
  7751. name: "Macro++",
  7752. height: math.unit(2400, "feet")
  7753. },
  7754. {
  7755. name: "Megamacro",
  7756. height: math.unit(5167, "meters")
  7757. },
  7758. {
  7759. name: "Gigamacro",
  7760. height: math.unit(41769, "miles")
  7761. },
  7762. ]
  7763. ))
  7764. characterMakers.push(() => makeCharacter(
  7765. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7766. {
  7767. front: {
  7768. height: math.unit(6, "feet"),
  7769. weight: math.unit(120, "lbs"),
  7770. name: "Front",
  7771. image: {
  7772. source: "./media/characters/yozey/front.svg"
  7773. }
  7774. },
  7775. frontAlt: {
  7776. height: math.unit(6, "feet"),
  7777. weight: math.unit(120, "lbs"),
  7778. name: "Front (Alt)",
  7779. image: {
  7780. source: "./media/characters/yozey/front-alt.svg"
  7781. }
  7782. },
  7783. side: {
  7784. height: math.unit(6, "feet"),
  7785. weight: math.unit(120, "lbs"),
  7786. name: "Side",
  7787. image: {
  7788. source: "./media/characters/yozey/side.svg"
  7789. }
  7790. },
  7791. },
  7792. [
  7793. {
  7794. name: "Micro",
  7795. height: math.unit(3, "inches"),
  7796. default: true
  7797. },
  7798. {
  7799. name: "Normal",
  7800. height: math.unit(6, "feet")
  7801. }
  7802. ]
  7803. ))
  7804. characterMakers.push(() => makeCharacter(
  7805. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7806. {
  7807. front: {
  7808. height: math.unit(6, "feet"),
  7809. weight: math.unit(103, "lbs"),
  7810. name: "Front",
  7811. image: {
  7812. source: "./media/characters/valeska-voss/front.svg"
  7813. }
  7814. }
  7815. },
  7816. [
  7817. {
  7818. name: "Mini-Sized Sub",
  7819. height: math.unit(3.1, "inches")
  7820. },
  7821. {
  7822. name: "Mid-Sized Sub",
  7823. height: math.unit(6.2, "inches")
  7824. },
  7825. {
  7826. name: "Full-Sized Sub",
  7827. height: math.unit(9.3, "inches")
  7828. },
  7829. {
  7830. name: "Normal",
  7831. height: math.unit(5 + 2 / 12, "foot"),
  7832. default: true
  7833. },
  7834. ]
  7835. ))
  7836. characterMakers.push(() => makeCharacter(
  7837. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7838. {
  7839. front: {
  7840. height: math.unit(6, "feet"),
  7841. weight: math.unit(160, "lbs"),
  7842. name: "Front",
  7843. image: {
  7844. source: "./media/characters/gene-zeta/front.svg",
  7845. extra: 3006 / 2826,
  7846. bottom: 182 / 3188
  7847. }
  7848. }
  7849. },
  7850. [
  7851. {
  7852. name: "Micro",
  7853. height: math.unit(6, "inches")
  7854. },
  7855. {
  7856. name: "Normal",
  7857. height: math.unit(5 + 11 / 12, "foot"),
  7858. default: true
  7859. },
  7860. {
  7861. name: "Macro",
  7862. height: math.unit(140, "feet")
  7863. },
  7864. {
  7865. name: "Supercharged",
  7866. height: math.unit(2500, "feet")
  7867. },
  7868. ]
  7869. ))
  7870. characterMakers.push(() => makeCharacter(
  7871. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7872. {
  7873. front: {
  7874. height: math.unit(6, "feet"),
  7875. weight: math.unit(350, "lbs"),
  7876. name: "Front",
  7877. image: {
  7878. source: "./media/characters/razinox/front.svg",
  7879. extra: 1686 / 1548,
  7880. bottom: 28.2 / 1868
  7881. }
  7882. },
  7883. back: {
  7884. height: math.unit(6, "feet"),
  7885. weight: math.unit(350, "lbs"),
  7886. name: "Back",
  7887. image: {
  7888. source: "./media/characters/razinox/back.svg",
  7889. extra: 1660 / 1590,
  7890. bottom: 15 / 1665
  7891. }
  7892. },
  7893. },
  7894. [
  7895. {
  7896. name: "Normal",
  7897. height: math.unit(10 + 8 / 12, "foot")
  7898. },
  7899. {
  7900. name: "Minimacro",
  7901. height: math.unit(15, "foot")
  7902. },
  7903. {
  7904. name: "Macro",
  7905. height: math.unit(60, "foot"),
  7906. default: true
  7907. },
  7908. {
  7909. name: "Megamacro",
  7910. height: math.unit(5, "miles")
  7911. },
  7912. {
  7913. name: "Gigamacro",
  7914. height: math.unit(6000, "miles")
  7915. },
  7916. ]
  7917. ))
  7918. characterMakers.push(() => makeCharacter(
  7919. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7920. {
  7921. front: {
  7922. height: math.unit(6, "feet"),
  7923. weight: math.unit(150, "lbs"),
  7924. name: "Front",
  7925. image: {
  7926. source: "./media/characters/cobalt/front.svg"
  7927. }
  7928. }
  7929. },
  7930. [
  7931. {
  7932. name: "Normal",
  7933. height: math.unit(8 + 1 / 12, "foot")
  7934. },
  7935. {
  7936. name: "Macro",
  7937. height: math.unit(111, "foot"),
  7938. default: true
  7939. },
  7940. {
  7941. name: "Supracosmic",
  7942. height: math.unit(1e42, "feet")
  7943. },
  7944. ]
  7945. ))
  7946. characterMakers.push(() => makeCharacter(
  7947. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7948. {
  7949. front: {
  7950. height: math.unit(5, "inches"),
  7951. name: "Front",
  7952. image: {
  7953. source: "./media/characters/amanda/front.svg",
  7954. extra: 926/791,
  7955. bottom: 38/964
  7956. }
  7957. },
  7958. back: {
  7959. height: math.unit(5, "inches"),
  7960. name: "Back",
  7961. image: {
  7962. source: "./media/characters/amanda/back.svg",
  7963. extra: 909/805,
  7964. bottom: 43/952
  7965. }
  7966. },
  7967. },
  7968. [
  7969. {
  7970. name: "Micro",
  7971. height: math.unit(5, "inches"),
  7972. default: true
  7973. },
  7974. ]
  7975. ))
  7976. characterMakers.push(() => makeCharacter(
  7977. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7978. {
  7979. front: {
  7980. height: math.unit(2.75, "meters"),
  7981. weight: math.unit(1200, "lb"),
  7982. name: "Front",
  7983. image: {
  7984. source: "./media/characters/teal/front.svg",
  7985. extra: 2463 / 2320,
  7986. bottom: 166 / 2629
  7987. }
  7988. },
  7989. back: {
  7990. height: math.unit(2.75, "meters"),
  7991. weight: math.unit(1200, "lb"),
  7992. name: "Back",
  7993. image: {
  7994. source: "./media/characters/teal/back.svg",
  7995. extra: 2580 / 2489,
  7996. bottom: 151 / 2731
  7997. }
  7998. },
  7999. sitting: {
  8000. height: math.unit(1.9, "meters"),
  8001. weight: math.unit(1200, "lb"),
  8002. name: "Sitting",
  8003. image: {
  8004. source: "./media/characters/teal/sitting.svg",
  8005. extra: 623 / 590,
  8006. bottom: 121 / 744
  8007. }
  8008. },
  8009. standing: {
  8010. height: math.unit(2.75, "meters"),
  8011. weight: math.unit(1200, "lb"),
  8012. name: "Standing",
  8013. image: {
  8014. source: "./media/characters/teal/standing.svg",
  8015. extra: 923 / 893,
  8016. bottom: 60 / 983
  8017. }
  8018. },
  8019. stretching: {
  8020. height: math.unit(3.65, "meters"),
  8021. weight: math.unit(1200, "lb"),
  8022. name: "Stretching",
  8023. image: {
  8024. source: "./media/characters/teal/stretching.svg",
  8025. extra: 1276 / 1244,
  8026. bottom: 0 / 1276
  8027. }
  8028. },
  8029. legged: {
  8030. height: math.unit(1.3, "meters"),
  8031. weight: math.unit(100, "lb"),
  8032. name: "Legged",
  8033. image: {
  8034. source: "./media/characters/teal/legged.svg",
  8035. extra: 462 / 437,
  8036. bottom: 24 / 486
  8037. }
  8038. },
  8039. naga: {
  8040. height: math.unit(5.4, "meters"),
  8041. weight: math.unit(4000, "lb"),
  8042. name: "Naga",
  8043. image: {
  8044. source: "./media/characters/teal/naga.svg",
  8045. extra: 1902 / 1858,
  8046. bottom: 0 / 1902
  8047. }
  8048. },
  8049. hand: {
  8050. height: math.unit(0.52, "meters"),
  8051. name: "Hand",
  8052. image: {
  8053. source: "./media/characters/teal/hand.svg"
  8054. }
  8055. },
  8056. maw: {
  8057. height: math.unit(0.43, "meters"),
  8058. name: "Maw",
  8059. image: {
  8060. source: "./media/characters/teal/maw.svg"
  8061. }
  8062. },
  8063. slit: {
  8064. height: math.unit(0.25, "meters"),
  8065. name: "Slit",
  8066. image: {
  8067. source: "./media/characters/teal/slit.svg"
  8068. }
  8069. },
  8070. },
  8071. [
  8072. {
  8073. name: "Normal",
  8074. height: math.unit(2.75, "meters"),
  8075. default: true
  8076. },
  8077. {
  8078. name: "Macro",
  8079. height: math.unit(300, "feet")
  8080. },
  8081. {
  8082. name: "Macro+",
  8083. height: math.unit(2000, "feet")
  8084. },
  8085. ]
  8086. ))
  8087. characterMakers.push(() => makeCharacter(
  8088. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8089. {
  8090. frontCat: {
  8091. height: math.unit(6, "feet"),
  8092. weight: math.unit(180, "lbs"),
  8093. name: "Front (Cat)",
  8094. image: {
  8095. source: "./media/characters/ravin-amulet/front-cat.svg"
  8096. }
  8097. },
  8098. frontCatAlt: {
  8099. height: math.unit(6, "feet"),
  8100. weight: math.unit(180, "lbs"),
  8101. name: "Front (Alt, Cat)",
  8102. image: {
  8103. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8104. }
  8105. },
  8106. frontWerewolf: {
  8107. height: math.unit(6 * 1.2, "feet"),
  8108. weight: math.unit(225, "lbs"),
  8109. name: "Front (Werewolf)",
  8110. image: {
  8111. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8112. }
  8113. },
  8114. backWerewolf: {
  8115. height: math.unit(6 * 1.2, "feet"),
  8116. weight: math.unit(225, "lbs"),
  8117. name: "Back (Werewolf)",
  8118. image: {
  8119. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8120. }
  8121. },
  8122. },
  8123. [
  8124. {
  8125. name: "Nano",
  8126. height: math.unit(1, "micrometer")
  8127. },
  8128. {
  8129. name: "Micro",
  8130. height: math.unit(1, "inch")
  8131. },
  8132. {
  8133. name: "Normal",
  8134. height: math.unit(6, "feet"),
  8135. default: true
  8136. },
  8137. {
  8138. name: "Macro",
  8139. height: math.unit(60, "feet")
  8140. }
  8141. ]
  8142. ))
  8143. characterMakers.push(() => makeCharacter(
  8144. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8145. {
  8146. front: {
  8147. height: math.unit(6, "feet"),
  8148. weight: math.unit(165, "lbs"),
  8149. name: "Front",
  8150. image: {
  8151. source: "./media/characters/fluoresce/front.svg"
  8152. }
  8153. }
  8154. },
  8155. [
  8156. {
  8157. name: "Micro",
  8158. height: math.unit(6, "cm")
  8159. },
  8160. {
  8161. name: "Normal",
  8162. height: math.unit(5 + 7 / 12, "feet"),
  8163. default: true
  8164. },
  8165. {
  8166. name: "Macro",
  8167. height: math.unit(56, "feet")
  8168. },
  8169. {
  8170. name: "Megamacro",
  8171. height: math.unit(1.9, "miles")
  8172. },
  8173. ]
  8174. ))
  8175. characterMakers.push(() => makeCharacter(
  8176. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8177. {
  8178. front: {
  8179. height: math.unit(9 + 6 / 12, "feet"),
  8180. weight: math.unit(523, "lbs"),
  8181. name: "Side",
  8182. image: {
  8183. source: "./media/characters/aurora/side.svg"
  8184. }
  8185. }
  8186. },
  8187. [
  8188. {
  8189. name: "Normal",
  8190. height: math.unit(9 + 6 / 12, "feet")
  8191. },
  8192. {
  8193. name: "Macro",
  8194. height: math.unit(96, "feet"),
  8195. default: true
  8196. },
  8197. {
  8198. name: "Macro+",
  8199. height: math.unit(243, "feet")
  8200. },
  8201. ]
  8202. ))
  8203. characterMakers.push(() => makeCharacter(
  8204. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8205. {
  8206. front: {
  8207. height: math.unit(194, "cm"),
  8208. weight: math.unit(90, "kg"),
  8209. name: "Front",
  8210. image: {
  8211. source: "./media/characters/ranek/front.svg",
  8212. extra: 1862/1791,
  8213. bottom: 80/1942
  8214. }
  8215. },
  8216. back: {
  8217. height: math.unit(194, "cm"),
  8218. weight: math.unit(90, "kg"),
  8219. name: "Back",
  8220. image: {
  8221. source: "./media/characters/ranek/back.svg",
  8222. extra: 1853/1787,
  8223. bottom: 74/1927
  8224. }
  8225. },
  8226. feral: {
  8227. height: math.unit(30, "cm"),
  8228. weight: math.unit(1.6, "lbs"),
  8229. name: "Feral",
  8230. image: {
  8231. source: "./media/characters/ranek/feral.svg",
  8232. extra: 990/631,
  8233. bottom: 29/1019
  8234. }
  8235. },
  8236. },
  8237. [
  8238. {
  8239. name: "Normal",
  8240. height: math.unit(194, "cm"),
  8241. default: true
  8242. },
  8243. {
  8244. name: "Macro",
  8245. height: math.unit(100, "meters")
  8246. },
  8247. ]
  8248. ))
  8249. characterMakers.push(() => makeCharacter(
  8250. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8251. {
  8252. front: {
  8253. height: math.unit(5 + 6 / 12, "feet"),
  8254. weight: math.unit(153, "lbs"),
  8255. name: "Front",
  8256. image: {
  8257. source: "./media/characters/andrew-cooper/front.svg"
  8258. }
  8259. },
  8260. },
  8261. [
  8262. {
  8263. name: "Nano",
  8264. height: math.unit(1, "mm")
  8265. },
  8266. {
  8267. name: "Micro",
  8268. height: math.unit(2, "inches")
  8269. },
  8270. {
  8271. name: "Normal",
  8272. height: math.unit(5 + 6 / 12, "feet"),
  8273. default: true
  8274. }
  8275. ]
  8276. ))
  8277. characterMakers.push(() => makeCharacter(
  8278. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8279. {
  8280. front: {
  8281. height: math.unit(6, "feet"),
  8282. weight: math.unit(180, "lbs"),
  8283. name: "Front",
  8284. image: {
  8285. source: "./media/characters/akane-sato/front.svg",
  8286. extra: 1219 / 1140
  8287. }
  8288. },
  8289. back: {
  8290. height: math.unit(6, "feet"),
  8291. weight: math.unit(180, "lbs"),
  8292. name: "Back",
  8293. image: {
  8294. source: "./media/characters/akane-sato/back.svg",
  8295. extra: 1219 / 1170
  8296. }
  8297. },
  8298. },
  8299. [
  8300. {
  8301. name: "Normal",
  8302. height: math.unit(2.5, "meters")
  8303. },
  8304. {
  8305. name: "Macro",
  8306. height: math.unit(250, "meters"),
  8307. default: true
  8308. },
  8309. {
  8310. name: "Megamacro",
  8311. height: math.unit(25, "km")
  8312. },
  8313. ]
  8314. ))
  8315. characterMakers.push(() => makeCharacter(
  8316. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8317. {
  8318. front: {
  8319. height: math.unit(6, "feet"),
  8320. weight: math.unit(65, "kg"),
  8321. name: "Front",
  8322. image: {
  8323. source: "./media/characters/rook/front.svg",
  8324. extra: 960 / 950
  8325. }
  8326. }
  8327. },
  8328. [
  8329. {
  8330. name: "Normal",
  8331. height: math.unit(8.8, "feet")
  8332. },
  8333. {
  8334. name: "Macro",
  8335. height: math.unit(88, "feet"),
  8336. default: true
  8337. },
  8338. {
  8339. name: "Megamacro",
  8340. height: math.unit(8, "miles")
  8341. },
  8342. ]
  8343. ))
  8344. characterMakers.push(() => makeCharacter(
  8345. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8346. {
  8347. front: {
  8348. height: math.unit(12 + 2 / 12, "feet"),
  8349. weight: math.unit(808, "lbs"),
  8350. name: "Front",
  8351. image: {
  8352. source: "./media/characters/prodigy/front.svg"
  8353. }
  8354. }
  8355. },
  8356. [
  8357. {
  8358. name: "Normal",
  8359. height: math.unit(12 + 2 / 12, "feet"),
  8360. default: true
  8361. },
  8362. {
  8363. name: "Macro",
  8364. height: math.unit(143, "feet")
  8365. },
  8366. {
  8367. name: "Macro+",
  8368. height: math.unit(400, "feet")
  8369. },
  8370. ]
  8371. ))
  8372. characterMakers.push(() => makeCharacter(
  8373. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8374. {
  8375. front: {
  8376. height: math.unit(6, "feet"),
  8377. weight: math.unit(225, "lbs"),
  8378. name: "Front",
  8379. image: {
  8380. source: "./media/characters/daniel/front.svg"
  8381. }
  8382. },
  8383. leaning: {
  8384. height: math.unit(6, "feet"),
  8385. weight: math.unit(225, "lbs"),
  8386. name: "Leaning",
  8387. image: {
  8388. source: "./media/characters/daniel/leaning.svg"
  8389. }
  8390. },
  8391. },
  8392. [
  8393. {
  8394. name: "Macro",
  8395. height: math.unit(1000, "feet"),
  8396. default: true
  8397. },
  8398. ]
  8399. ))
  8400. characterMakers.push(() => makeCharacter(
  8401. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8402. {
  8403. front: {
  8404. height: math.unit(6, "feet"),
  8405. weight: math.unit(88, "lbs"),
  8406. name: "Front",
  8407. image: {
  8408. source: "./media/characters/chiros/front.svg",
  8409. extra: 306 / 226
  8410. }
  8411. },
  8412. side: {
  8413. height: math.unit(6, "feet"),
  8414. weight: math.unit(88, "lbs"),
  8415. name: "Side",
  8416. image: {
  8417. source: "./media/characters/chiros/side.svg",
  8418. extra: 306 / 226
  8419. }
  8420. },
  8421. },
  8422. [
  8423. {
  8424. name: "Normal",
  8425. height: math.unit(6, "cm"),
  8426. default: true
  8427. },
  8428. ]
  8429. ))
  8430. characterMakers.push(() => makeCharacter(
  8431. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8432. {
  8433. front: {
  8434. height: math.unit(6, "feet"),
  8435. weight: math.unit(100, "lbs"),
  8436. name: "Front",
  8437. image: {
  8438. source: "./media/characters/selka/front.svg",
  8439. extra: 947 / 887
  8440. }
  8441. }
  8442. },
  8443. [
  8444. {
  8445. name: "Normal",
  8446. height: math.unit(5, "cm"),
  8447. default: true
  8448. },
  8449. ]
  8450. ))
  8451. characterMakers.push(() => makeCharacter(
  8452. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8453. {
  8454. front: {
  8455. height: math.unit(8 + 3 / 12, "feet"),
  8456. weight: math.unit(424, "lbs"),
  8457. name: "Front",
  8458. image: {
  8459. source: "./media/characters/verin/front.svg",
  8460. extra: 1845 / 1550
  8461. }
  8462. },
  8463. frontArmored: {
  8464. height: math.unit(8 + 3 / 12, "feet"),
  8465. weight: math.unit(424, "lbs"),
  8466. name: "Front (Armored)",
  8467. image: {
  8468. source: "./media/characters/verin/front-armor.svg",
  8469. extra: 1845 / 1550,
  8470. bottom: 0.01
  8471. }
  8472. },
  8473. back: {
  8474. height: math.unit(8 + 3 / 12, "feet"),
  8475. weight: math.unit(424, "lbs"),
  8476. name: "Back",
  8477. image: {
  8478. source: "./media/characters/verin/back.svg",
  8479. bottom: 0.1,
  8480. extra: 1
  8481. }
  8482. },
  8483. foot: {
  8484. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8485. name: "Foot",
  8486. image: {
  8487. source: "./media/characters/verin/foot.svg"
  8488. }
  8489. },
  8490. },
  8491. [
  8492. {
  8493. name: "Normal",
  8494. height: math.unit(8 + 3 / 12, "feet")
  8495. },
  8496. {
  8497. name: "Minimacro",
  8498. height: math.unit(21, "feet"),
  8499. default: true
  8500. },
  8501. {
  8502. name: "Macro",
  8503. height: math.unit(626, "feet")
  8504. },
  8505. ]
  8506. ))
  8507. characterMakers.push(() => makeCharacter(
  8508. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8509. {
  8510. front: {
  8511. height: math.unit(2.718, "meters"),
  8512. weight: math.unit(150, "lbs"),
  8513. name: "Front",
  8514. image: {
  8515. source: "./media/characters/sovrim-terraquian/front.svg",
  8516. extra: 1752/1689,
  8517. bottom: 36/1788
  8518. }
  8519. },
  8520. back: {
  8521. height: math.unit(2.718, "meters"),
  8522. weight: math.unit(150, "lbs"),
  8523. name: "Back",
  8524. image: {
  8525. source: "./media/characters/sovrim-terraquian/back.svg",
  8526. extra: 1698/1657,
  8527. bottom: 58/1756
  8528. }
  8529. },
  8530. tongue: {
  8531. height: math.unit(2.865, "feet"),
  8532. name: "Tongue",
  8533. image: {
  8534. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8535. }
  8536. },
  8537. hand: {
  8538. height: math.unit(1.61, "feet"),
  8539. name: "Hand",
  8540. image: {
  8541. source: "./media/characters/sovrim-terraquian/hand.svg"
  8542. }
  8543. },
  8544. foot: {
  8545. height: math.unit(1.05, "feet"),
  8546. name: "Foot",
  8547. image: {
  8548. source: "./media/characters/sovrim-terraquian/foot.svg"
  8549. }
  8550. },
  8551. footAlt: {
  8552. height: math.unit(0.88, "feet"),
  8553. name: "Foot (Alt)",
  8554. image: {
  8555. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8556. }
  8557. },
  8558. },
  8559. [
  8560. {
  8561. name: "Micro",
  8562. height: math.unit(2, "inches")
  8563. },
  8564. {
  8565. name: "Small",
  8566. height: math.unit(1, "meter")
  8567. },
  8568. {
  8569. name: "Normal",
  8570. height: math.unit(Math.E, "meters"),
  8571. default: true
  8572. },
  8573. {
  8574. name: "Macro",
  8575. height: math.unit(20, "meters")
  8576. },
  8577. {
  8578. name: "Macro+",
  8579. height: math.unit(400, "meters")
  8580. },
  8581. ]
  8582. ))
  8583. characterMakers.push(() => makeCharacter(
  8584. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8585. {
  8586. front: {
  8587. height: math.unit(7, "feet"),
  8588. weight: math.unit(489, "lbs"),
  8589. name: "Front",
  8590. image: {
  8591. source: "./media/characters/reece-silvermane/front.svg",
  8592. bottom: 0.02,
  8593. extra: 1
  8594. }
  8595. },
  8596. },
  8597. [
  8598. {
  8599. name: "Macro",
  8600. height: math.unit(1.5, "miles"),
  8601. default: true
  8602. },
  8603. ]
  8604. ))
  8605. characterMakers.push(() => makeCharacter(
  8606. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8607. {
  8608. front: {
  8609. height: math.unit(6, "feet"),
  8610. weight: math.unit(78, "kg"),
  8611. name: "Front",
  8612. image: {
  8613. source: "./media/characters/kane/front.svg",
  8614. extra: 978 / 899
  8615. }
  8616. },
  8617. },
  8618. [
  8619. {
  8620. name: "Normal",
  8621. height: math.unit(2.1, "m"),
  8622. },
  8623. {
  8624. name: "Macro",
  8625. height: math.unit(1, "km"),
  8626. default: true
  8627. },
  8628. ]
  8629. ))
  8630. characterMakers.push(() => makeCharacter(
  8631. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8632. {
  8633. front: {
  8634. height: math.unit(6, "feet"),
  8635. weight: math.unit(200, "kg"),
  8636. name: "Front",
  8637. image: {
  8638. source: "./media/characters/tegon/front.svg",
  8639. bottom: 0.01,
  8640. extra: 1
  8641. }
  8642. },
  8643. },
  8644. [
  8645. {
  8646. name: "Micro",
  8647. height: math.unit(1, "inch")
  8648. },
  8649. {
  8650. name: "Normal",
  8651. height: math.unit(6 + 3 / 12, "feet"),
  8652. default: true
  8653. },
  8654. {
  8655. name: "Macro",
  8656. height: math.unit(300, "feet")
  8657. },
  8658. {
  8659. name: "Megamacro",
  8660. height: math.unit(69, "miles")
  8661. },
  8662. ]
  8663. ))
  8664. characterMakers.push(() => makeCharacter(
  8665. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8666. {
  8667. side: {
  8668. height: math.unit(6, "feet"),
  8669. weight: math.unit(2304, "lbs"),
  8670. name: "Side",
  8671. image: {
  8672. source: "./media/characters/arcturax/side.svg",
  8673. extra: 790 / 376,
  8674. bottom: 0.01
  8675. }
  8676. },
  8677. },
  8678. [
  8679. {
  8680. name: "Micro",
  8681. height: math.unit(2, "inch")
  8682. },
  8683. {
  8684. name: "Normal",
  8685. height: math.unit(6, "feet")
  8686. },
  8687. {
  8688. name: "Macro",
  8689. height: math.unit(39, "feet"),
  8690. default: true
  8691. },
  8692. {
  8693. name: "Megamacro",
  8694. height: math.unit(7, "miles")
  8695. },
  8696. ]
  8697. ))
  8698. characterMakers.push(() => makeCharacter(
  8699. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8700. {
  8701. front: {
  8702. height: math.unit(6, "feet"),
  8703. weight: math.unit(50, "lbs"),
  8704. name: "Front",
  8705. image: {
  8706. source: "./media/characters/sentri/front.svg",
  8707. extra: 1750 / 1570,
  8708. bottom: 0.025
  8709. }
  8710. },
  8711. frontAlt: {
  8712. height: math.unit(6, "feet"),
  8713. weight: math.unit(50, "lbs"),
  8714. name: "Front (Alt)",
  8715. image: {
  8716. source: "./media/characters/sentri/front-alt.svg",
  8717. extra: 1750 / 1570,
  8718. bottom: 0.025
  8719. }
  8720. },
  8721. },
  8722. [
  8723. {
  8724. name: "Normal",
  8725. height: math.unit(15, "feet"),
  8726. default: true
  8727. },
  8728. {
  8729. name: "Macro",
  8730. height: math.unit(2500, "feet")
  8731. }
  8732. ]
  8733. ))
  8734. characterMakers.push(() => makeCharacter(
  8735. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8736. {
  8737. front: {
  8738. height: math.unit(5 + 8 / 12, "feet"),
  8739. weight: math.unit(130, "lbs"),
  8740. name: "Front",
  8741. image: {
  8742. source: "./media/characters/corvin/front.svg",
  8743. extra: 1803 / 1629
  8744. }
  8745. },
  8746. frontShirt: {
  8747. height: math.unit(5 + 8 / 12, "feet"),
  8748. weight: math.unit(130, "lbs"),
  8749. name: "Front (Shirt)",
  8750. image: {
  8751. source: "./media/characters/corvin/front-shirt.svg",
  8752. extra: 1803 / 1629
  8753. }
  8754. },
  8755. frontPoncho: {
  8756. height: math.unit(5 + 8 / 12, "feet"),
  8757. weight: math.unit(130, "lbs"),
  8758. name: "Front (Poncho)",
  8759. image: {
  8760. source: "./media/characters/corvin/front-poncho.svg",
  8761. extra: 1803 / 1629
  8762. }
  8763. },
  8764. side: {
  8765. height: math.unit(5 + 8 / 12, "feet"),
  8766. weight: math.unit(130, "lbs"),
  8767. name: "Side",
  8768. image: {
  8769. source: "./media/characters/corvin/side.svg",
  8770. extra: 1012 / 945
  8771. }
  8772. },
  8773. back: {
  8774. height: math.unit(5 + 8 / 12, "feet"),
  8775. weight: math.unit(130, "lbs"),
  8776. name: "Back",
  8777. image: {
  8778. source: "./media/characters/corvin/back.svg",
  8779. extra: 1803 / 1629
  8780. }
  8781. },
  8782. },
  8783. [
  8784. {
  8785. name: "Micro",
  8786. height: math.unit(3, "inches")
  8787. },
  8788. {
  8789. name: "Normal",
  8790. height: math.unit(5 + 8 / 12, "feet")
  8791. },
  8792. {
  8793. name: "Macro",
  8794. height: math.unit(300, "feet"),
  8795. default: true
  8796. },
  8797. {
  8798. name: "Megamacro",
  8799. height: math.unit(500, "miles")
  8800. }
  8801. ]
  8802. ))
  8803. characterMakers.push(() => makeCharacter(
  8804. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8805. {
  8806. front: {
  8807. height: math.unit(6, "feet"),
  8808. weight: math.unit(135, "lbs"),
  8809. name: "Front",
  8810. image: {
  8811. source: "./media/characters/q/front.svg",
  8812. extra: 854 / 752,
  8813. bottom: 0.005
  8814. }
  8815. },
  8816. back: {
  8817. height: math.unit(6, "feet"),
  8818. weight: math.unit(130, "lbs"),
  8819. name: "Back",
  8820. image: {
  8821. source: "./media/characters/q/back.svg",
  8822. extra: 854 / 752
  8823. }
  8824. },
  8825. },
  8826. [
  8827. {
  8828. name: "Macro",
  8829. height: math.unit(90, "feet"),
  8830. default: true
  8831. },
  8832. {
  8833. name: "Extra Macro",
  8834. height: math.unit(300, "feet"),
  8835. },
  8836. {
  8837. name: "BIG WALF",
  8838. height: math.unit(750, "feet"),
  8839. },
  8840. ]
  8841. ))
  8842. characterMakers.push(() => makeCharacter(
  8843. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8844. {
  8845. front: {
  8846. height: math.unit(3, "feet"),
  8847. weight: math.unit(28, "lbs"),
  8848. name: "Front",
  8849. image: {
  8850. source: "./media/characters/citrine/front.svg"
  8851. }
  8852. }
  8853. },
  8854. [
  8855. {
  8856. name: "Normal",
  8857. height: math.unit(3, "feet"),
  8858. default: true
  8859. }
  8860. ]
  8861. ))
  8862. characterMakers.push(() => makeCharacter(
  8863. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8864. {
  8865. front: {
  8866. height: math.unit(14, "feet"),
  8867. weight: math.unit(1450, "kg"),
  8868. preyCapacity: math.unit(15, "people"),
  8869. name: "Front",
  8870. image: {
  8871. source: "./media/characters/aura-starwind/front.svg",
  8872. extra: 1440/1327,
  8873. bottom: 11/1451
  8874. }
  8875. },
  8876. side: {
  8877. height: math.unit(14, "feet"),
  8878. weight: math.unit(1450, "kg"),
  8879. preyCapacity: math.unit(15, "people"),
  8880. name: "Side",
  8881. image: {
  8882. source: "./media/characters/aura-starwind/side.svg",
  8883. extra: 1654 / 1497
  8884. }
  8885. },
  8886. taur: {
  8887. height: math.unit(18, "feet"),
  8888. weight: math.unit(5500, "kg"),
  8889. preyCapacity: math.unit(50, "people"),
  8890. name: "Taur",
  8891. image: {
  8892. source: "./media/characters/aura-starwind/taur.svg",
  8893. extra: 1760 / 1650
  8894. }
  8895. },
  8896. feral: {
  8897. height: math.unit(46, "feet"),
  8898. weight: math.unit(25000, "kg"),
  8899. preyCapacity: math.unit(120, "people"),
  8900. name: "Feral",
  8901. image: {
  8902. source: "./media/characters/aura-starwind/feral.svg"
  8903. }
  8904. },
  8905. },
  8906. [
  8907. {
  8908. name: "Normal",
  8909. height: math.unit(14, "feet"),
  8910. default: true
  8911. },
  8912. {
  8913. name: "Macro",
  8914. height: math.unit(50, "meters")
  8915. },
  8916. {
  8917. name: "Megamacro",
  8918. height: math.unit(5000, "meters")
  8919. },
  8920. {
  8921. name: "Gigamacro",
  8922. height: math.unit(100000, "kilometers")
  8923. },
  8924. ]
  8925. ))
  8926. characterMakers.push(() => makeCharacter(
  8927. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8928. {
  8929. front: {
  8930. height: math.unit(2 + 7 / 12, "feet"),
  8931. weight: math.unit(32, "lbs"),
  8932. name: "Front",
  8933. image: {
  8934. source: "./media/characters/rivet/front.svg",
  8935. extra: 1716 / 1658,
  8936. bottom: 0.03
  8937. }
  8938. },
  8939. foot: {
  8940. height: math.unit(0.551, "feet"),
  8941. name: "Rivet's Foot",
  8942. image: {
  8943. source: "./media/characters/rivet/foot.svg"
  8944. },
  8945. rename: true
  8946. }
  8947. },
  8948. [
  8949. {
  8950. name: "Micro",
  8951. height: math.unit(1.5, "inches"),
  8952. },
  8953. {
  8954. name: "Normal",
  8955. height: math.unit(2 + 7 / 12, "feet"),
  8956. default: true
  8957. },
  8958. {
  8959. name: "Macro",
  8960. height: math.unit(85, "feet")
  8961. },
  8962. {
  8963. name: "Megamacro",
  8964. height: math.unit(2.2, "km")
  8965. }
  8966. ]
  8967. ))
  8968. characterMakers.push(() => makeCharacter(
  8969. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8970. {
  8971. front: {
  8972. height: math.unit(5 + 9 / 12, "feet"),
  8973. weight: math.unit(150, "lbs"),
  8974. name: "Front",
  8975. image: {
  8976. source: "./media/characters/coffee/front.svg",
  8977. extra: 3666 / 3032,
  8978. bottom: 0.04
  8979. }
  8980. },
  8981. foot: {
  8982. height: math.unit(1.29, "feet"),
  8983. name: "Foot",
  8984. image: {
  8985. source: "./media/characters/coffee/foot.svg"
  8986. }
  8987. },
  8988. },
  8989. [
  8990. {
  8991. name: "Micro",
  8992. height: math.unit(2, "inches"),
  8993. },
  8994. {
  8995. name: "Normal",
  8996. height: math.unit(5 + 9 / 12, "feet"),
  8997. default: true
  8998. },
  8999. {
  9000. name: "Macro",
  9001. height: math.unit(800, "feet")
  9002. },
  9003. {
  9004. name: "Megamacro",
  9005. height: math.unit(25, "miles")
  9006. }
  9007. ]
  9008. ))
  9009. characterMakers.push(() => makeCharacter(
  9010. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9011. {
  9012. front: {
  9013. height: math.unit(6, "feet"),
  9014. weight: math.unit(200, "lbs"),
  9015. name: "Front",
  9016. image: {
  9017. source: "./media/characters/chari-gal/front.svg",
  9018. extra: 1568 / 1385,
  9019. bottom: 0.047
  9020. }
  9021. },
  9022. gigantamax: {
  9023. height: math.unit(6 * 16, "feet"),
  9024. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9025. name: "Gigantamax",
  9026. image: {
  9027. source: "./media/characters/chari-gal/gigantamax.svg",
  9028. extra: 1124 / 888,
  9029. bottom: 0.03
  9030. }
  9031. },
  9032. },
  9033. [
  9034. {
  9035. name: "Normal",
  9036. height: math.unit(5 + 7 / 12, "feet")
  9037. },
  9038. {
  9039. name: "Macro",
  9040. height: math.unit(200, "feet"),
  9041. default: true
  9042. }
  9043. ]
  9044. ))
  9045. characterMakers.push(() => makeCharacter(
  9046. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9047. {
  9048. front: {
  9049. height: math.unit(6, "feet"),
  9050. weight: math.unit(150, "lbs"),
  9051. name: "Front",
  9052. image: {
  9053. source: "./media/characters/nova/front.svg",
  9054. extra: 5000 / 4722,
  9055. bottom: 0.02
  9056. }
  9057. }
  9058. },
  9059. [
  9060. {
  9061. name: "Micro-",
  9062. height: math.unit(0.8, "inches")
  9063. },
  9064. {
  9065. name: "Micro",
  9066. height: math.unit(2, "inches"),
  9067. default: true
  9068. },
  9069. ]
  9070. ))
  9071. characterMakers.push(() => makeCharacter(
  9072. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9073. {
  9074. front: {
  9075. height: math.unit(3 + 1 / 12, "feet"),
  9076. weight: math.unit(21.7, "lbs"),
  9077. name: "Front",
  9078. image: {
  9079. source: "./media/characters/argent/front.svg",
  9080. extra: 1471 / 1331,
  9081. bottom: 100.8 / 1575.5
  9082. }
  9083. }
  9084. },
  9085. [
  9086. {
  9087. name: "Micro",
  9088. height: math.unit(2, "inches")
  9089. },
  9090. {
  9091. name: "Normal",
  9092. height: math.unit(3 + 1 / 12, "feet"),
  9093. default: true
  9094. },
  9095. {
  9096. name: "Macro",
  9097. height: math.unit(120, "feet")
  9098. },
  9099. ]
  9100. ))
  9101. characterMakers.push(() => makeCharacter(
  9102. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9103. {
  9104. lamp: {
  9105. height: math.unit(7 * 1559 / 989, "feet"),
  9106. name: "Magic Lamp",
  9107. image: {
  9108. source: "./media/characters/mira-al-cul/lamp.svg",
  9109. extra: 1617 / 1559
  9110. }
  9111. },
  9112. front: {
  9113. height: math.unit(7, "feet"),
  9114. name: "Front",
  9115. image: {
  9116. source: "./media/characters/mira-al-cul/front.svg",
  9117. extra: 1044 / 990
  9118. }
  9119. },
  9120. },
  9121. [
  9122. {
  9123. name: "Heavily Restricted",
  9124. height: math.unit(7 * 1559 / 989, "feet")
  9125. },
  9126. {
  9127. name: "Freshly Freed",
  9128. height: math.unit(50 * 1559 / 989, "feet")
  9129. },
  9130. {
  9131. name: "World Encompassing",
  9132. height: math.unit(10000 * 1559 / 989, "miles")
  9133. },
  9134. {
  9135. name: "Galactic",
  9136. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9137. },
  9138. {
  9139. name: "Palmed Universe",
  9140. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9141. default: true
  9142. },
  9143. {
  9144. name: "Multiversal Matriarch",
  9145. height: math.unit(8.87e10, "yottameters")
  9146. },
  9147. {
  9148. name: "Void Mother",
  9149. height: math.unit(3.14e110, "yottaparsecs")
  9150. },
  9151. {
  9152. name: "Toying with Transcendence",
  9153. height: math.unit(1e307, "meters")
  9154. },
  9155. ]
  9156. ))
  9157. characterMakers.push(() => makeCharacter(
  9158. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9159. {
  9160. front: {
  9161. height: math.unit(17 + 1 / 12, "feet"),
  9162. weight: math.unit(476.2 * 5, "lbs"),
  9163. name: "Front",
  9164. image: {
  9165. source: "./media/characters/kuro-shi-uchū/front.svg",
  9166. extra: 2329 / 1835,
  9167. bottom: 0.02
  9168. }
  9169. },
  9170. },
  9171. [
  9172. {
  9173. name: "Micro",
  9174. height: math.unit(2, "inches")
  9175. },
  9176. {
  9177. name: "Normal",
  9178. height: math.unit(12, "meters")
  9179. },
  9180. {
  9181. name: "Planetary",
  9182. height: math.unit(0.00929, "AU"),
  9183. default: true
  9184. },
  9185. {
  9186. name: "Universal",
  9187. height: math.unit(20, "gigaparsecs")
  9188. },
  9189. ]
  9190. ))
  9191. characterMakers.push(() => makeCharacter(
  9192. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9193. {
  9194. front: {
  9195. height: math.unit(5 + 2 / 12, "feet"),
  9196. weight: math.unit(120, "lbs"),
  9197. name: "Front",
  9198. image: {
  9199. source: "./media/characters/katherine/front.svg",
  9200. extra: 2075 / 1969
  9201. }
  9202. },
  9203. dress: {
  9204. height: math.unit(5 + 2 / 12, "feet"),
  9205. weight: math.unit(120, "lbs"),
  9206. name: "Dress",
  9207. image: {
  9208. source: "./media/characters/katherine/dress.svg",
  9209. extra: 2258 / 2064
  9210. }
  9211. },
  9212. },
  9213. [
  9214. {
  9215. name: "Micro",
  9216. height: math.unit(1, "inches"),
  9217. default: true
  9218. },
  9219. {
  9220. name: "Normal",
  9221. height: math.unit(5 + 2 / 12, "feet")
  9222. },
  9223. {
  9224. name: "Macro",
  9225. height: math.unit(100, "meters")
  9226. },
  9227. {
  9228. name: "Megamacro",
  9229. height: math.unit(80, "miles")
  9230. },
  9231. ]
  9232. ))
  9233. characterMakers.push(() => makeCharacter(
  9234. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9235. {
  9236. front: {
  9237. height: math.unit(7 + 8 / 12, "feet"),
  9238. weight: math.unit(250, "lbs"),
  9239. name: "Front",
  9240. image: {
  9241. source: "./media/characters/yevis/front.svg",
  9242. extra: 1938 / 1755
  9243. }
  9244. }
  9245. },
  9246. [
  9247. {
  9248. name: "Mortal",
  9249. height: math.unit(7 + 8 / 12, "feet")
  9250. },
  9251. {
  9252. name: "Battle",
  9253. height: math.unit(25 + 11 / 12, "feet")
  9254. },
  9255. {
  9256. name: "Wrath",
  9257. height: math.unit(1654 + 11 / 12, "feet")
  9258. },
  9259. {
  9260. name: "Planet Destroyer",
  9261. height: math.unit(12000, "miles")
  9262. },
  9263. {
  9264. name: "Galaxy Conqueror",
  9265. height: math.unit(1.45, "zettameters"),
  9266. default: true
  9267. },
  9268. {
  9269. name: "Universal War",
  9270. height: math.unit(184, "gigaparsecs")
  9271. },
  9272. {
  9273. name: "Eternity War",
  9274. height: math.unit(1.98e55, "yottaparsecs")
  9275. },
  9276. ]
  9277. ))
  9278. characterMakers.push(() => makeCharacter(
  9279. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  9280. {
  9281. front: {
  9282. height: math.unit(5 + 8 / 12, "feet"),
  9283. weight: math.unit(63, "kg"),
  9284. name: "Front",
  9285. image: {
  9286. source: "./media/characters/xavier/front.svg",
  9287. extra: 944 / 883
  9288. }
  9289. },
  9290. frontStretch: {
  9291. height: math.unit(5 + 8 / 12, "feet"),
  9292. weight: math.unit(63, "kg"),
  9293. name: "Stretching",
  9294. image: {
  9295. source: "./media/characters/xavier/front-stretch.svg",
  9296. extra: 962 / 820
  9297. }
  9298. },
  9299. },
  9300. [
  9301. {
  9302. name: "Normal",
  9303. height: math.unit(5 + 8 / 12, "feet")
  9304. },
  9305. {
  9306. name: "Macro",
  9307. height: math.unit(100, "meters"),
  9308. default: true
  9309. },
  9310. {
  9311. name: "McLargeHuge",
  9312. height: math.unit(10, "miles")
  9313. },
  9314. ]
  9315. ))
  9316. characterMakers.push(() => makeCharacter(
  9317. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  9318. {
  9319. front: {
  9320. height: math.unit(5 + 5 / 12, "feet"),
  9321. weight: math.unit(150, "lb"),
  9322. name: "Front",
  9323. image: {
  9324. source: "./media/characters/joshii/front.svg",
  9325. extra: 765 / 653,
  9326. bottom: 51 / 816
  9327. }
  9328. },
  9329. foot: {
  9330. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  9331. name: "Foot",
  9332. image: {
  9333. source: "./media/characters/joshii/foot.svg"
  9334. }
  9335. },
  9336. },
  9337. [
  9338. {
  9339. name: "Micro",
  9340. height: math.unit(2, "inches"),
  9341. default: true
  9342. },
  9343. {
  9344. name: "Normal",
  9345. height: math.unit(5 + 5 / 12, "feet")
  9346. },
  9347. {
  9348. name: "Macro",
  9349. height: math.unit(785, "feet")
  9350. },
  9351. {
  9352. name: "Megamacro",
  9353. height: math.unit(24.5, "miles")
  9354. },
  9355. ]
  9356. ))
  9357. characterMakers.push(() => makeCharacter(
  9358. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9359. {
  9360. front: {
  9361. height: math.unit(6, "feet"),
  9362. weight: math.unit(150, "lb"),
  9363. name: "Front",
  9364. image: {
  9365. source: "./media/characters/goddess-elizabeth/front.svg",
  9366. extra: 1800 / 1525,
  9367. bottom: 0.005
  9368. }
  9369. },
  9370. foot: {
  9371. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9372. name: "Foot",
  9373. image: {
  9374. source: "./media/characters/goddess-elizabeth/foot.svg"
  9375. }
  9376. },
  9377. mouth: {
  9378. height: math.unit(6, "feet"),
  9379. name: "Mouth",
  9380. image: {
  9381. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9382. }
  9383. },
  9384. },
  9385. [
  9386. {
  9387. name: "Micro",
  9388. height: math.unit(12, "feet")
  9389. },
  9390. {
  9391. name: "Normal",
  9392. height: math.unit(80, "miles"),
  9393. default: true
  9394. },
  9395. {
  9396. name: "Macro",
  9397. height: math.unit(15000, "parsecs")
  9398. },
  9399. ]
  9400. ))
  9401. characterMakers.push(() => makeCharacter(
  9402. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9403. {
  9404. front: {
  9405. height: math.unit(5 + 9 / 12, "feet"),
  9406. weight: math.unit(144, "lb"),
  9407. name: "Front",
  9408. image: {
  9409. source: "./media/characters/kara/front.svg"
  9410. }
  9411. },
  9412. feet: {
  9413. height: math.unit(6 / 6.765, "feet"),
  9414. name: "Kara's Feet",
  9415. rename: true,
  9416. image: {
  9417. source: "./media/characters/kara/feet.svg"
  9418. }
  9419. },
  9420. },
  9421. [
  9422. {
  9423. name: "Normal",
  9424. height: math.unit(5 + 9 / 12, "feet")
  9425. },
  9426. {
  9427. name: "Macro",
  9428. height: math.unit(174, "feet"),
  9429. default: true
  9430. },
  9431. ]
  9432. ))
  9433. characterMakers.push(() => makeCharacter(
  9434. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9435. {
  9436. front: {
  9437. height: math.unit(18, "feet"),
  9438. weight: math.unit(4050, "lb"),
  9439. name: "Front",
  9440. image: {
  9441. source: "./media/characters/tyrone/front.svg",
  9442. extra: 2405 / 2270,
  9443. bottom: 182 / 2587
  9444. }
  9445. },
  9446. },
  9447. [
  9448. {
  9449. name: "Normal",
  9450. height: math.unit(18, "feet"),
  9451. default: true
  9452. },
  9453. {
  9454. name: "Macro",
  9455. height: math.unit(300, "feet")
  9456. },
  9457. {
  9458. name: "Megamacro",
  9459. height: math.unit(15, "km")
  9460. },
  9461. {
  9462. name: "Gigamacro",
  9463. height: math.unit(500, "km")
  9464. },
  9465. {
  9466. name: "Teramacro",
  9467. height: math.unit(0.5, "gigameters")
  9468. },
  9469. {
  9470. name: "Omnimacro",
  9471. height: math.unit(1e252, "yottauniverse")
  9472. },
  9473. ]
  9474. ))
  9475. characterMakers.push(() => makeCharacter(
  9476. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9477. {
  9478. front: {
  9479. height: math.unit(7 + 8 / 12, "feet"),
  9480. weight: math.unit(120, "lb"),
  9481. name: "Front",
  9482. image: {
  9483. source: "./media/characters/danny/front.svg",
  9484. extra: 1490 / 1350
  9485. }
  9486. },
  9487. back: {
  9488. height: math.unit(7 + 8 / 12, "feet"),
  9489. weight: math.unit(120, "lb"),
  9490. name: "Back",
  9491. image: {
  9492. source: "./media/characters/danny/back.svg",
  9493. extra: 1490 / 1350
  9494. }
  9495. },
  9496. },
  9497. [
  9498. {
  9499. name: "Normal",
  9500. height: math.unit(7 + 8 / 12, "feet"),
  9501. default: true
  9502. },
  9503. ]
  9504. ))
  9505. characterMakers.push(() => makeCharacter(
  9506. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9507. {
  9508. front: {
  9509. height: math.unit(3.5, "inches"),
  9510. weight: math.unit(19, "grams"),
  9511. name: "Front",
  9512. image: {
  9513. source: "./media/characters/mallow/front.svg",
  9514. extra: 471 / 431
  9515. }
  9516. },
  9517. back: {
  9518. height: math.unit(3.5, "inches"),
  9519. weight: math.unit(19, "grams"),
  9520. name: "Back",
  9521. image: {
  9522. source: "./media/characters/mallow/back.svg",
  9523. extra: 471 / 431
  9524. }
  9525. },
  9526. },
  9527. [
  9528. {
  9529. name: "Normal",
  9530. height: math.unit(3.5, "inches"),
  9531. default: true
  9532. },
  9533. ]
  9534. ))
  9535. characterMakers.push(() => makeCharacter(
  9536. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9537. {
  9538. front: {
  9539. height: math.unit(9, "feet"),
  9540. weight: math.unit(230, "kg"),
  9541. name: "Front",
  9542. image: {
  9543. source: "./media/characters/starry-aqua/front.svg"
  9544. }
  9545. },
  9546. back: {
  9547. height: math.unit(9, "feet"),
  9548. weight: math.unit(230, "kg"),
  9549. name: "Back",
  9550. image: {
  9551. source: "./media/characters/starry-aqua/back.svg"
  9552. }
  9553. },
  9554. hand: {
  9555. height: math.unit(9 * 0.1168, "feet"),
  9556. name: "Hand",
  9557. image: {
  9558. source: "./media/characters/starry-aqua/hand.svg"
  9559. }
  9560. },
  9561. foot: {
  9562. height: math.unit(9 * 0.18, "feet"),
  9563. name: "Foot",
  9564. image: {
  9565. source: "./media/characters/starry-aqua/foot.svg"
  9566. }
  9567. }
  9568. },
  9569. [
  9570. {
  9571. name: "Micro",
  9572. height: math.unit(3, "inches")
  9573. },
  9574. {
  9575. name: "Normal",
  9576. height: math.unit(9, "feet")
  9577. },
  9578. {
  9579. name: "Macro",
  9580. height: math.unit(300, "feet"),
  9581. default: true
  9582. },
  9583. {
  9584. name: "Megamacro",
  9585. height: math.unit(3200, "feet")
  9586. }
  9587. ]
  9588. ))
  9589. characterMakers.push(() => makeCharacter(
  9590. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9591. {
  9592. front: {
  9593. height: math.unit(15, "feet"),
  9594. weight: math.unit(5026, "lb"),
  9595. name: "Front",
  9596. image: {
  9597. source: "./media/characters/luka-towers/front.svg",
  9598. extra: 1269/1133,
  9599. bottom: 51/1320
  9600. }
  9601. },
  9602. },
  9603. [
  9604. {
  9605. name: "Normal",
  9606. height: math.unit(15, "feet"),
  9607. default: true
  9608. },
  9609. {
  9610. name: "Minimacro",
  9611. height: math.unit(25, "feet")
  9612. },
  9613. {
  9614. name: "Macro",
  9615. height: math.unit(320, "feet")
  9616. },
  9617. {
  9618. name: "Megamacro",
  9619. height: math.unit(35000, "feet")
  9620. },
  9621. {
  9622. name: "Gigamacro",
  9623. height: math.unit(4000, "miles")
  9624. },
  9625. {
  9626. name: "Teramacro",
  9627. height: math.unit(15000, "miles")
  9628. },
  9629. ]
  9630. ))
  9631. characterMakers.push(() => makeCharacter(
  9632. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9633. {
  9634. front: {
  9635. height: math.unit(6, "feet"),
  9636. weight: math.unit(150, "lb"),
  9637. name: "Front",
  9638. image: {
  9639. source: "./media/characters/natalie-nightring/front.svg",
  9640. extra: 1,
  9641. bottom: 0.06
  9642. }
  9643. },
  9644. },
  9645. [
  9646. {
  9647. name: "Uh Oh",
  9648. height: math.unit(0.1, "mm")
  9649. },
  9650. {
  9651. name: "Small",
  9652. height: math.unit(3, "inches")
  9653. },
  9654. {
  9655. name: "Human Scale",
  9656. height: math.unit(6, "feet")
  9657. },
  9658. {
  9659. name: "Librarian",
  9660. height: math.unit(50, "feet"),
  9661. default: true
  9662. },
  9663. {
  9664. name: "Immense",
  9665. height: math.unit(200, "miles")
  9666. },
  9667. ]
  9668. ))
  9669. characterMakers.push(() => makeCharacter(
  9670. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9671. {
  9672. front: {
  9673. height: math.unit(6, "feet"),
  9674. weight: math.unit(180, "lbs"),
  9675. name: "Front",
  9676. image: {
  9677. source: "./media/characters/danni-rosie/front.svg",
  9678. extra: 1260 / 1128,
  9679. bottom: 0.022
  9680. }
  9681. },
  9682. },
  9683. [
  9684. {
  9685. name: "Micro",
  9686. height: math.unit(2, "inches"),
  9687. default: true
  9688. },
  9689. ]
  9690. ))
  9691. characterMakers.push(() => makeCharacter(
  9692. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9693. {
  9694. front: {
  9695. height: math.unit(5 + 9 / 12, "feet"),
  9696. weight: math.unit(220, "lb"),
  9697. name: "Front",
  9698. image: {
  9699. source: "./media/characters/samantha-kruse/front.svg",
  9700. extra: (985 / 935),
  9701. bottom: 0.03
  9702. }
  9703. },
  9704. frontUndressed: {
  9705. height: math.unit(5 + 9 / 12, "feet"),
  9706. weight: math.unit(220, "lb"),
  9707. name: "Front (Undressed)",
  9708. image: {
  9709. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9710. extra: (973 / 923),
  9711. bottom: 0.025
  9712. }
  9713. },
  9714. fat: {
  9715. height: math.unit(5 + 9 / 12, "feet"),
  9716. weight: math.unit(900, "lb"),
  9717. name: "Front (Fat)",
  9718. image: {
  9719. source: "./media/characters/samantha-kruse/fat.svg",
  9720. extra: 2688 / 2561
  9721. }
  9722. },
  9723. },
  9724. [
  9725. {
  9726. name: "Normal",
  9727. height: math.unit(5 + 9 / 12, "feet"),
  9728. default: true
  9729. }
  9730. ]
  9731. ))
  9732. characterMakers.push(() => makeCharacter(
  9733. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9734. {
  9735. back: {
  9736. height: math.unit(5 + 4 / 12, "feet"),
  9737. weight: math.unit(4963, "lb"),
  9738. name: "Back",
  9739. image: {
  9740. source: "./media/characters/amelia-rosie/back.svg",
  9741. extra: 1113 / 963,
  9742. bottom: 0.01
  9743. }
  9744. },
  9745. },
  9746. [
  9747. {
  9748. name: "Level 0",
  9749. height: math.unit(5 + 4 / 12, "feet")
  9750. },
  9751. {
  9752. name: "Level 1",
  9753. height: math.unit(164597, "feet"),
  9754. default: true
  9755. },
  9756. {
  9757. name: "Level 2",
  9758. height: math.unit(956243, "miles")
  9759. },
  9760. {
  9761. name: "Level 3",
  9762. height: math.unit(29421709423, "miles")
  9763. },
  9764. {
  9765. name: "Level 4",
  9766. height: math.unit(154, "lightyears")
  9767. },
  9768. {
  9769. name: "Level 5",
  9770. height: math.unit(4738272, "lightyears")
  9771. },
  9772. {
  9773. name: "Level 6",
  9774. height: math.unit(145787152896, "lightyears")
  9775. },
  9776. ]
  9777. ))
  9778. characterMakers.push(() => makeCharacter(
  9779. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9780. {
  9781. front: {
  9782. height: math.unit(5 + 11 / 12, "feet"),
  9783. weight: math.unit(65, "kg"),
  9784. name: "Front",
  9785. image: {
  9786. source: "./media/characters/rook-kitara/front.svg",
  9787. extra: 1347 / 1274,
  9788. bottom: 0.005
  9789. }
  9790. },
  9791. },
  9792. [
  9793. {
  9794. name: "Totally Unfair",
  9795. height: math.unit(1.8, "mm")
  9796. },
  9797. {
  9798. name: "Lap Rookie",
  9799. height: math.unit(1.4, "feet")
  9800. },
  9801. {
  9802. name: "Normal",
  9803. height: math.unit(5 + 11 / 12, "feet"),
  9804. default: true
  9805. },
  9806. {
  9807. name: "How Did This Happen",
  9808. height: math.unit(80, "miles")
  9809. }
  9810. ]
  9811. ))
  9812. characterMakers.push(() => makeCharacter(
  9813. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9814. {
  9815. front: {
  9816. height: math.unit(7, "feet"),
  9817. weight: math.unit(300, "lb"),
  9818. name: "Front",
  9819. image: {
  9820. source: "./media/characters/pisces/front.svg",
  9821. extra: 2255 / 2115,
  9822. bottom: 0.03
  9823. }
  9824. },
  9825. back: {
  9826. height: math.unit(7, "feet"),
  9827. weight: math.unit(300, "lb"),
  9828. name: "Back",
  9829. image: {
  9830. source: "./media/characters/pisces/back.svg",
  9831. extra: 2146 / 2055,
  9832. bottom: 0.04
  9833. }
  9834. },
  9835. },
  9836. [
  9837. {
  9838. name: "Normal",
  9839. height: math.unit(7, "feet"),
  9840. default: true
  9841. },
  9842. {
  9843. name: "Swimming Pool",
  9844. height: math.unit(12.2, "meters")
  9845. },
  9846. {
  9847. name: "Olympic Swimming Pool",
  9848. height: math.unit(56.3, "meters")
  9849. },
  9850. {
  9851. name: "Lake Superior",
  9852. height: math.unit(93900, "meters")
  9853. },
  9854. {
  9855. name: "Mediterranean Sea",
  9856. height: math.unit(644457, "meters")
  9857. },
  9858. {
  9859. name: "World's Oceans",
  9860. height: math.unit(4567491, "meters")
  9861. },
  9862. ]
  9863. ))
  9864. characterMakers.push(() => makeCharacter(
  9865. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9866. {
  9867. front: {
  9868. height: math.unit(2.3, "meters"),
  9869. weight: math.unit(120, "kg"),
  9870. name: "Front",
  9871. image: {
  9872. source: "./media/characters/zelas/front.svg"
  9873. }
  9874. },
  9875. side: {
  9876. height: math.unit(2.3, "meters"),
  9877. weight: math.unit(120, "kg"),
  9878. name: "Side",
  9879. image: {
  9880. source: "./media/characters/zelas/side.svg"
  9881. }
  9882. },
  9883. back: {
  9884. height: math.unit(2.3, "meters"),
  9885. weight: math.unit(120, "kg"),
  9886. name: "Back",
  9887. image: {
  9888. source: "./media/characters/zelas/back.svg"
  9889. }
  9890. },
  9891. foot: {
  9892. height: math.unit(1.116, "feet"),
  9893. name: "Foot",
  9894. image: {
  9895. source: "./media/characters/zelas/foot.svg"
  9896. }
  9897. },
  9898. },
  9899. [
  9900. {
  9901. name: "Normal",
  9902. height: math.unit(2.3, "meters")
  9903. },
  9904. {
  9905. name: "Macro",
  9906. height: math.unit(30, "meters"),
  9907. default: true
  9908. },
  9909. ]
  9910. ))
  9911. characterMakers.push(() => makeCharacter(
  9912. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9913. {
  9914. front: {
  9915. height: math.unit(1, "inch"),
  9916. weight: math.unit(0.21, "grams"),
  9917. name: "Front",
  9918. image: {
  9919. source: "./media/characters/talbot/front.svg",
  9920. extra: 594 / 544
  9921. }
  9922. },
  9923. },
  9924. [
  9925. {
  9926. name: "Micro",
  9927. height: math.unit(1, "inch"),
  9928. default: true
  9929. },
  9930. ]
  9931. ))
  9932. characterMakers.push(() => makeCharacter(
  9933. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9934. {
  9935. front: {
  9936. height: math.unit(3 + 3 / 12, "feet"),
  9937. weight: math.unit(51.8, "lb"),
  9938. name: "Front",
  9939. image: {
  9940. source: "./media/characters/fliss/front.svg",
  9941. extra: 840 / 640
  9942. }
  9943. },
  9944. },
  9945. [
  9946. {
  9947. name: "Teeny Tiny",
  9948. height: math.unit(1, "mm")
  9949. },
  9950. {
  9951. name: "Small",
  9952. height: math.unit(1, "inch"),
  9953. default: true
  9954. },
  9955. {
  9956. name: "Standard Sylveon",
  9957. height: math.unit(3 + 3 / 12, "feet")
  9958. },
  9959. {
  9960. name: "Large Nuisance",
  9961. height: math.unit(33, "feet")
  9962. },
  9963. {
  9964. name: "City Filler",
  9965. height: math.unit(3000, "feet")
  9966. },
  9967. {
  9968. name: "New Horizon",
  9969. height: math.unit(6000, "miles")
  9970. },
  9971. ]
  9972. ))
  9973. characterMakers.push(() => makeCharacter(
  9974. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9975. {
  9976. front: {
  9977. height: math.unit(5, "cm"),
  9978. weight: math.unit(1.94, "g"),
  9979. name: "Front",
  9980. image: {
  9981. source: "./media/characters/fleta/front.svg",
  9982. extra: 835 / 803
  9983. }
  9984. },
  9985. back: {
  9986. height: math.unit(5, "cm"),
  9987. weight: math.unit(1.94, "g"),
  9988. name: "Back",
  9989. image: {
  9990. source: "./media/characters/fleta/back.svg",
  9991. extra: 835 / 803
  9992. }
  9993. },
  9994. },
  9995. [
  9996. {
  9997. name: "Micro",
  9998. height: math.unit(5, "cm"),
  9999. default: true
  10000. },
  10001. ]
  10002. ))
  10003. characterMakers.push(() => makeCharacter(
  10004. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10005. {
  10006. front: {
  10007. height: math.unit(6, "feet"),
  10008. weight: math.unit(225, "lb"),
  10009. name: "Front",
  10010. image: {
  10011. source: "./media/characters/dominic/front.svg",
  10012. extra: 1770 / 1620,
  10013. bottom: 0.025
  10014. }
  10015. },
  10016. back: {
  10017. height: math.unit(6, "feet"),
  10018. weight: math.unit(225, "lb"),
  10019. name: "Back",
  10020. image: {
  10021. source: "./media/characters/dominic/back.svg",
  10022. extra: 1745 / 1620,
  10023. bottom: 0.065
  10024. }
  10025. },
  10026. },
  10027. [
  10028. {
  10029. name: "Nano",
  10030. height: math.unit(0.1, "mm")
  10031. },
  10032. {
  10033. name: "Micro-",
  10034. height: math.unit(1, "mm")
  10035. },
  10036. {
  10037. name: "Micro",
  10038. height: math.unit(4, "inches")
  10039. },
  10040. {
  10041. name: "Normal",
  10042. height: math.unit(6 + 4 / 12, "feet"),
  10043. default: true
  10044. },
  10045. {
  10046. name: "Macro",
  10047. height: math.unit(115, "feet")
  10048. },
  10049. {
  10050. name: "Macro+",
  10051. height: math.unit(955, "feet")
  10052. },
  10053. {
  10054. name: "Megamacro",
  10055. height: math.unit(8990, "feet")
  10056. },
  10057. {
  10058. name: "Gigmacro",
  10059. height: math.unit(9310, "miles")
  10060. },
  10061. {
  10062. name: "Teramacro",
  10063. height: math.unit(1567005010, "miles")
  10064. },
  10065. {
  10066. name: "Examacro",
  10067. height: math.unit(1425, "parsecs")
  10068. },
  10069. ]
  10070. ))
  10071. characterMakers.push(() => makeCharacter(
  10072. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10073. {
  10074. front: {
  10075. height: math.unit(400, "feet"),
  10076. weight: math.unit(44444444, "lb"),
  10077. name: "Front",
  10078. image: {
  10079. source: "./media/characters/major-colonel/front.svg"
  10080. }
  10081. },
  10082. back: {
  10083. height: math.unit(400, "feet"),
  10084. weight: math.unit(44444444, "lb"),
  10085. name: "Back",
  10086. image: {
  10087. source: "./media/characters/major-colonel/back.svg"
  10088. }
  10089. },
  10090. },
  10091. [
  10092. {
  10093. name: "Macro",
  10094. height: math.unit(400, "feet"),
  10095. default: true
  10096. },
  10097. ]
  10098. ))
  10099. characterMakers.push(() => makeCharacter(
  10100. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10101. {
  10102. catFront: {
  10103. height: math.unit(6, "feet"),
  10104. weight: math.unit(120, "lb"),
  10105. name: "Front (Cat Side)",
  10106. image: {
  10107. source: "./media/characters/axel-lycan/cat-front.svg",
  10108. extra: 430 / 402,
  10109. bottom: 43 / 472.35
  10110. }
  10111. },
  10112. catBack: {
  10113. height: math.unit(6, "feet"),
  10114. weight: math.unit(120, "lb"),
  10115. name: "Back (Cat Side)",
  10116. image: {
  10117. source: "./media/characters/axel-lycan/cat-back.svg",
  10118. extra: 447 / 419,
  10119. bottom: 23.3 / 469
  10120. }
  10121. },
  10122. wolfFront: {
  10123. height: math.unit(6, "feet"),
  10124. weight: math.unit(120, "lb"),
  10125. name: "Front (Wolf Side)",
  10126. image: {
  10127. source: "./media/characters/axel-lycan/wolf-front.svg",
  10128. extra: 485 / 456,
  10129. bottom: 19 / 504
  10130. }
  10131. },
  10132. wolfBack: {
  10133. height: math.unit(6, "feet"),
  10134. weight: math.unit(120, "lb"),
  10135. name: "Back (Wolf Side)",
  10136. image: {
  10137. source: "./media/characters/axel-lycan/wolf-back.svg",
  10138. extra: 475 / 438,
  10139. bottom: 39.2 / 514
  10140. }
  10141. },
  10142. },
  10143. [
  10144. {
  10145. name: "Macro",
  10146. height: math.unit(1, "km"),
  10147. default: true
  10148. },
  10149. ]
  10150. ))
  10151. characterMakers.push(() => makeCharacter(
  10152. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10153. {
  10154. front: {
  10155. height: math.unit(5 + 9 / 12, "feet"),
  10156. weight: math.unit(175, "lb"),
  10157. name: "Front",
  10158. image: {
  10159. source: "./media/characters/vanrel-hyena/front.svg",
  10160. extra: 1086 / 1010,
  10161. bottom: 0.04
  10162. }
  10163. },
  10164. },
  10165. [
  10166. {
  10167. name: "Normal",
  10168. height: math.unit(5 + 9 / 12, "feet"),
  10169. default: true
  10170. },
  10171. ]
  10172. ))
  10173. characterMakers.push(() => makeCharacter(
  10174. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10175. {
  10176. front: {
  10177. height: math.unit(6, "feet"),
  10178. weight: math.unit(103, "lb"),
  10179. name: "Front",
  10180. image: {
  10181. source: "./media/characters/abbott-absol/front.svg",
  10182. extra: 2010 / 1842
  10183. }
  10184. },
  10185. },
  10186. [
  10187. {
  10188. name: "Megamicro",
  10189. height: math.unit(0.1, "mm")
  10190. },
  10191. {
  10192. name: "Micro",
  10193. height: math.unit(1, "inch")
  10194. },
  10195. {
  10196. name: "Normal",
  10197. height: math.unit(6, "feet"),
  10198. default: true
  10199. },
  10200. ]
  10201. ))
  10202. characterMakers.push(() => makeCharacter(
  10203. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10204. {
  10205. front: {
  10206. height: math.unit(6, "feet"),
  10207. weight: math.unit(264, "lb"),
  10208. name: "Front",
  10209. image: {
  10210. source: "./media/characters/hector/front.svg",
  10211. extra: 2280 / 2130,
  10212. bottom: 0.07
  10213. }
  10214. },
  10215. },
  10216. [
  10217. {
  10218. name: "Normal",
  10219. height: math.unit(12.25, "foot"),
  10220. default: true
  10221. },
  10222. {
  10223. name: "Macro",
  10224. height: math.unit(160, "feet")
  10225. },
  10226. ]
  10227. ))
  10228. characterMakers.push(() => makeCharacter(
  10229. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10230. {
  10231. front: {
  10232. height: math.unit(6, "feet"),
  10233. weight: math.unit(150, "lb"),
  10234. name: "Front",
  10235. image: {
  10236. source: "./media/characters/sal/front.svg",
  10237. extra: 1846 / 1699,
  10238. bottom: 0.04
  10239. }
  10240. },
  10241. },
  10242. [
  10243. {
  10244. name: "Megamacro",
  10245. height: math.unit(10, "miles"),
  10246. default: true
  10247. },
  10248. ]
  10249. ))
  10250. characterMakers.push(() => makeCharacter(
  10251. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10252. {
  10253. front: {
  10254. height: math.unit(3, "meters"),
  10255. weight: math.unit(450, "kg"),
  10256. name: "front",
  10257. image: {
  10258. source: "./media/characters/ranger/front.svg",
  10259. extra: 2401 / 2243,
  10260. bottom: 0.05
  10261. }
  10262. },
  10263. },
  10264. [
  10265. {
  10266. name: "Normal",
  10267. height: math.unit(3, "meters"),
  10268. default: true
  10269. },
  10270. ]
  10271. ))
  10272. characterMakers.push(() => makeCharacter(
  10273. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10274. {
  10275. front: {
  10276. height: math.unit(14, "feet"),
  10277. weight: math.unit(800, "kg"),
  10278. name: "Front",
  10279. image: {
  10280. source: "./media/characters/theresa/front.svg",
  10281. extra: 3575 / 3346,
  10282. bottom: 0.03
  10283. }
  10284. },
  10285. },
  10286. [
  10287. {
  10288. name: "Normal",
  10289. height: math.unit(14, "feet"),
  10290. default: true
  10291. },
  10292. ]
  10293. ))
  10294. characterMakers.push(() => makeCharacter(
  10295. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  10296. {
  10297. front: {
  10298. height: math.unit(6, "feet"),
  10299. weight: math.unit(3, "kg"),
  10300. name: "Front",
  10301. image: {
  10302. source: "./media/characters/ine/front.svg",
  10303. extra: 678 / 539,
  10304. bottom: 0.023
  10305. }
  10306. },
  10307. },
  10308. [
  10309. {
  10310. name: "Normal",
  10311. height: math.unit(2.265, "feet"),
  10312. default: true
  10313. },
  10314. ]
  10315. ))
  10316. characterMakers.push(() => makeCharacter(
  10317. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  10318. {
  10319. front: {
  10320. height: math.unit(5, "feet"),
  10321. weight: math.unit(30, "kg"),
  10322. name: "Front",
  10323. image: {
  10324. source: "./media/characters/vial/front.svg",
  10325. extra: 1365 / 1277,
  10326. bottom: 0.04
  10327. }
  10328. },
  10329. },
  10330. [
  10331. {
  10332. name: "Normal",
  10333. height: math.unit(5, "feet"),
  10334. default: true
  10335. },
  10336. ]
  10337. ))
  10338. characterMakers.push(() => makeCharacter(
  10339. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10340. {
  10341. side: {
  10342. height: math.unit(3.4, "meters"),
  10343. weight: math.unit(1000, "lb"),
  10344. name: "Side",
  10345. image: {
  10346. source: "./media/characters/rovoska/side.svg",
  10347. extra: 4403 / 1515
  10348. }
  10349. },
  10350. },
  10351. [
  10352. {
  10353. name: "Normal",
  10354. height: math.unit(3.4, "meters"),
  10355. default: true
  10356. },
  10357. ]
  10358. ))
  10359. characterMakers.push(() => makeCharacter(
  10360. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10361. {
  10362. front: {
  10363. height: math.unit(8, "feet"),
  10364. weight: math.unit(315, "lb"),
  10365. name: "Front",
  10366. image: {
  10367. source: "./media/characters/gunner-rotthbauer/front.svg"
  10368. }
  10369. },
  10370. back: {
  10371. height: math.unit(8, "feet"),
  10372. weight: math.unit(315, "lb"),
  10373. name: "Back",
  10374. image: {
  10375. source: "./media/characters/gunner-rotthbauer/back.svg"
  10376. }
  10377. },
  10378. },
  10379. [
  10380. {
  10381. name: "Micro",
  10382. height: math.unit(3.5, "inches")
  10383. },
  10384. {
  10385. name: "Normal",
  10386. height: math.unit(8, "feet"),
  10387. default: true
  10388. },
  10389. {
  10390. name: "Macro",
  10391. height: math.unit(250, "feet")
  10392. },
  10393. {
  10394. name: "Megamacro",
  10395. height: math.unit(1, "AU")
  10396. },
  10397. ]
  10398. ))
  10399. characterMakers.push(() => makeCharacter(
  10400. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10401. {
  10402. front: {
  10403. height: math.unit(5 + 5 / 12, "feet"),
  10404. weight: math.unit(140, "lb"),
  10405. name: "Front",
  10406. image: {
  10407. source: "./media/characters/allatia/front.svg",
  10408. extra: 1227 / 1180,
  10409. bottom: 0.027
  10410. }
  10411. },
  10412. },
  10413. [
  10414. {
  10415. name: "Normal",
  10416. height: math.unit(5 + 5 / 12, "feet")
  10417. },
  10418. {
  10419. name: "Macro",
  10420. height: math.unit(250, "feet"),
  10421. default: true
  10422. },
  10423. {
  10424. name: "Megamacro",
  10425. height: math.unit(8, "miles")
  10426. }
  10427. ]
  10428. ))
  10429. characterMakers.push(() => makeCharacter(
  10430. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10431. {
  10432. front: {
  10433. height: math.unit(6, "feet"),
  10434. weight: math.unit(120, "lb"),
  10435. name: "Front",
  10436. image: {
  10437. source: "./media/characters/tene/front.svg",
  10438. extra: 814/750,
  10439. bottom: 36/850
  10440. }
  10441. },
  10442. stomping: {
  10443. height: math.unit(2.025, "meters"),
  10444. weight: math.unit(120, "lb"),
  10445. name: "Stomping",
  10446. image: {
  10447. source: "./media/characters/tene/stomping.svg",
  10448. extra: 885/821,
  10449. bottom: 15/900
  10450. }
  10451. },
  10452. sitting: {
  10453. height: math.unit(1, "meter"),
  10454. weight: math.unit(120, "lb"),
  10455. name: "Sitting",
  10456. image: {
  10457. source: "./media/characters/tene/sitting.svg",
  10458. extra: 396/366,
  10459. bottom: 79/475
  10460. }
  10461. },
  10462. smiling: {
  10463. height: math.unit(1.2, "feet"),
  10464. name: "Smiling",
  10465. image: {
  10466. source: "./media/characters/tene/smiling.svg",
  10467. extra: 1364/1071,
  10468. bottom: 0/1364
  10469. }
  10470. },
  10471. smug: {
  10472. height: math.unit(1.3, "feet"),
  10473. name: "Smug",
  10474. image: {
  10475. source: "./media/characters/tene/smug.svg",
  10476. extra: 1323/1082,
  10477. bottom: 0/1323
  10478. }
  10479. },
  10480. feral: {
  10481. height: math.unit(3.9, "feet"),
  10482. weight: math.unit(250, "lb"),
  10483. name: "Feral",
  10484. image: {
  10485. source: "./media/characters/tene/feral.svg",
  10486. extra: 717 / 458,
  10487. bottom: 0.179
  10488. }
  10489. },
  10490. },
  10491. [
  10492. {
  10493. name: "Normal",
  10494. height: math.unit(6, "feet")
  10495. },
  10496. {
  10497. name: "Macro",
  10498. height: math.unit(300, "feet"),
  10499. default: true
  10500. },
  10501. {
  10502. name: "Megamacro",
  10503. height: math.unit(5, "miles")
  10504. },
  10505. ]
  10506. ))
  10507. characterMakers.push(() => makeCharacter(
  10508. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10509. {
  10510. side: {
  10511. height: math.unit(6, "feet"),
  10512. name: "Side",
  10513. image: {
  10514. source: "./media/characters/evander/side.svg",
  10515. extra: 877 / 477
  10516. }
  10517. },
  10518. },
  10519. [
  10520. {
  10521. name: "Normal",
  10522. height: math.unit(0.83, "meters"),
  10523. default: true
  10524. },
  10525. ]
  10526. ))
  10527. characterMakers.push(() => makeCharacter(
  10528. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10529. {
  10530. front: {
  10531. height: math.unit(12, "feet"),
  10532. weight: math.unit(1000, "lb"),
  10533. name: "Front",
  10534. image: {
  10535. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10536. extra: 1762 / 1611
  10537. }
  10538. },
  10539. back: {
  10540. height: math.unit(12, "feet"),
  10541. weight: math.unit(1000, "lb"),
  10542. name: "Back",
  10543. image: {
  10544. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10545. extra: 1762 / 1611
  10546. }
  10547. },
  10548. },
  10549. [
  10550. {
  10551. name: "Normal",
  10552. height: math.unit(12, "feet"),
  10553. default: true
  10554. },
  10555. {
  10556. name: "Kaiju",
  10557. height: math.unit(150, "feet")
  10558. },
  10559. ]
  10560. ))
  10561. characterMakers.push(() => makeCharacter(
  10562. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10563. {
  10564. front: {
  10565. height: math.unit(6, "feet"),
  10566. weight: math.unit(150, "lb"),
  10567. name: "Front",
  10568. image: {
  10569. source: "./media/characters/zero-alurus/front.svg"
  10570. }
  10571. },
  10572. back: {
  10573. height: math.unit(6, "feet"),
  10574. weight: math.unit(150, "lb"),
  10575. name: "Back",
  10576. image: {
  10577. source: "./media/characters/zero-alurus/back.svg"
  10578. }
  10579. },
  10580. },
  10581. [
  10582. {
  10583. name: "Normal",
  10584. height: math.unit(5 + 10 / 12, "feet")
  10585. },
  10586. {
  10587. name: "Macro",
  10588. height: math.unit(60, "feet"),
  10589. default: true
  10590. },
  10591. {
  10592. name: "Macro+",
  10593. height: math.unit(450, "feet")
  10594. },
  10595. ]
  10596. ))
  10597. characterMakers.push(() => makeCharacter(
  10598. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10599. {
  10600. front: {
  10601. height: math.unit(6, "feet"),
  10602. weight: math.unit(200, "lb"),
  10603. name: "Front",
  10604. image: {
  10605. source: "./media/characters/mega-shi/front.svg",
  10606. extra: 1279 / 1250,
  10607. bottom: 0.02
  10608. }
  10609. },
  10610. back: {
  10611. height: math.unit(6, "feet"),
  10612. weight: math.unit(200, "lb"),
  10613. name: "Back",
  10614. image: {
  10615. source: "./media/characters/mega-shi/back.svg",
  10616. extra: 1279 / 1250,
  10617. bottom: 0.02
  10618. }
  10619. },
  10620. },
  10621. [
  10622. {
  10623. name: "Micro",
  10624. height: math.unit(16 + 6 / 12, "feet")
  10625. },
  10626. {
  10627. name: "Third Dimension",
  10628. height: math.unit(40, "meters")
  10629. },
  10630. {
  10631. name: "Normal",
  10632. height: math.unit(660, "feet"),
  10633. default: true
  10634. },
  10635. {
  10636. name: "Megamacro",
  10637. height: math.unit(10, "miles")
  10638. },
  10639. {
  10640. name: "Planetary Launch",
  10641. height: math.unit(500, "miles")
  10642. },
  10643. {
  10644. name: "Interstellar",
  10645. height: math.unit(1e9, "miles")
  10646. },
  10647. {
  10648. name: "Leaving the Universe",
  10649. height: math.unit(1, "gigaparsec")
  10650. },
  10651. {
  10652. name: "Travelling Universes",
  10653. height: math.unit(30e15, "parsecs")
  10654. },
  10655. ]
  10656. ))
  10657. characterMakers.push(() => makeCharacter(
  10658. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10659. {
  10660. front: {
  10661. height: math.unit(5 + 4/12, "feet"),
  10662. weight: math.unit(120, "lb"),
  10663. name: "Front",
  10664. image: {
  10665. source: "./media/characters/odyssey/front.svg",
  10666. extra: 1747/1571,
  10667. bottom: 47/1794
  10668. }
  10669. },
  10670. side: {
  10671. height: math.unit(5.1, "feet"),
  10672. weight: math.unit(120, "lb"),
  10673. name: "Side",
  10674. image: {
  10675. source: "./media/characters/odyssey/side.svg",
  10676. extra: 1847/1619,
  10677. bottom: 47/1894
  10678. }
  10679. },
  10680. lounging: {
  10681. height: math.unit(1.464, "feet"),
  10682. weight: math.unit(120, "lb"),
  10683. name: "Lounging",
  10684. image: {
  10685. source: "./media/characters/odyssey/lounging.svg",
  10686. extra: 1235/837,
  10687. bottom: 551/1786
  10688. }
  10689. },
  10690. },
  10691. [
  10692. {
  10693. name: "Normal",
  10694. height: math.unit(5 + 4 / 12, "feet")
  10695. },
  10696. {
  10697. name: "Macro",
  10698. height: math.unit(1, "km")
  10699. },
  10700. {
  10701. name: "Megamacro",
  10702. height: math.unit(3000, "km")
  10703. },
  10704. {
  10705. name: "Gigamacro",
  10706. height: math.unit(1, "AU"),
  10707. default: true
  10708. },
  10709. {
  10710. name: "Omniversal",
  10711. height: math.unit(100e14, "lightyears")
  10712. },
  10713. ]
  10714. ))
  10715. characterMakers.push(() => makeCharacter(
  10716. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10717. {
  10718. front: {
  10719. height: math.unit(6, "feet"),
  10720. weight: math.unit(300, "lb"),
  10721. name: "Front",
  10722. image: {
  10723. source: "./media/characters/mekuto/front.svg",
  10724. extra: 921 / 832,
  10725. bottom: 0.03
  10726. }
  10727. },
  10728. hand: {
  10729. height: math.unit(6 / 10.24, "feet"),
  10730. name: "Hand",
  10731. image: {
  10732. source: "./media/characters/mekuto/hand.svg"
  10733. }
  10734. },
  10735. foot: {
  10736. height: math.unit(6 / 5.05, "feet"),
  10737. name: "Foot",
  10738. image: {
  10739. source: "./media/characters/mekuto/foot.svg"
  10740. }
  10741. },
  10742. },
  10743. [
  10744. {
  10745. name: "Minimicro",
  10746. height: math.unit(0.2, "inches")
  10747. },
  10748. {
  10749. name: "Micro",
  10750. height: math.unit(1.5, "inches")
  10751. },
  10752. {
  10753. name: "Normal",
  10754. height: math.unit(5 + 11 / 12, "feet"),
  10755. default: true
  10756. },
  10757. {
  10758. name: "Minimacro",
  10759. height: math.unit(17 + 9 / 12, "feet")
  10760. },
  10761. {
  10762. name: "Macro",
  10763. height: math.unit(177.5, "feet")
  10764. },
  10765. {
  10766. name: "Megamacro",
  10767. height: math.unit(152, "miles")
  10768. },
  10769. ]
  10770. ))
  10771. characterMakers.push(() => makeCharacter(
  10772. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10773. {
  10774. front: {
  10775. height: math.unit(6.5, "inches"),
  10776. weight: math.unit(13, "oz"),
  10777. name: "Front",
  10778. image: {
  10779. source: "./media/characters/dafydd-tomos/front.svg",
  10780. extra: 2990 / 2603,
  10781. bottom: 0.03
  10782. }
  10783. },
  10784. },
  10785. [
  10786. {
  10787. name: "Micro",
  10788. height: math.unit(6.5, "inches"),
  10789. default: true
  10790. },
  10791. ]
  10792. ))
  10793. characterMakers.push(() => makeCharacter(
  10794. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10795. {
  10796. front: {
  10797. height: math.unit(6, "feet"),
  10798. weight: math.unit(150, "lb"),
  10799. name: "Front",
  10800. image: {
  10801. source: "./media/characters/splinter/front.svg",
  10802. extra: 2990 / 2882,
  10803. bottom: 0.04
  10804. }
  10805. },
  10806. back: {
  10807. height: math.unit(6, "feet"),
  10808. weight: math.unit(150, "lb"),
  10809. name: "Back",
  10810. image: {
  10811. source: "./media/characters/splinter/back.svg",
  10812. extra: 2990 / 2882,
  10813. bottom: 0.04
  10814. }
  10815. },
  10816. },
  10817. [
  10818. {
  10819. name: "Normal",
  10820. height: math.unit(6, "feet")
  10821. },
  10822. {
  10823. name: "Macro",
  10824. height: math.unit(230, "meters"),
  10825. default: true
  10826. },
  10827. ]
  10828. ))
  10829. characterMakers.push(() => makeCharacter(
  10830. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10831. {
  10832. front: {
  10833. height: math.unit(4 + 10 / 12, "feet"),
  10834. weight: math.unit(480, "lb"),
  10835. name: "Front",
  10836. image: {
  10837. source: "./media/characters/snow-gabumon/front.svg",
  10838. extra: 1140 / 963,
  10839. bottom: 0.058
  10840. }
  10841. },
  10842. back: {
  10843. height: math.unit(4 + 10 / 12, "feet"),
  10844. weight: math.unit(480, "lb"),
  10845. name: "Back",
  10846. image: {
  10847. source: "./media/characters/snow-gabumon/back.svg",
  10848. extra: 1115 / 962,
  10849. bottom: 0.041
  10850. }
  10851. },
  10852. frontUndresed: {
  10853. height: math.unit(4 + 10 / 12, "feet"),
  10854. weight: math.unit(480, "lb"),
  10855. name: "Front (Undressed)",
  10856. image: {
  10857. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10858. extra: 1061 / 960,
  10859. bottom: 0.045
  10860. }
  10861. },
  10862. },
  10863. [
  10864. {
  10865. name: "Micro",
  10866. height: math.unit(1, "inch")
  10867. },
  10868. {
  10869. name: "Normal",
  10870. height: math.unit(4 + 10 / 12, "feet"),
  10871. default: true
  10872. },
  10873. {
  10874. name: "Macro",
  10875. height: math.unit(200, "feet")
  10876. },
  10877. {
  10878. name: "Megamacro",
  10879. height: math.unit(120, "miles")
  10880. },
  10881. {
  10882. name: "Gigamacro",
  10883. height: math.unit(9800, "miles")
  10884. },
  10885. ]
  10886. ))
  10887. characterMakers.push(() => makeCharacter(
  10888. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10889. {
  10890. front: {
  10891. height: math.unit(1.7, "meters"),
  10892. weight: math.unit(140, "lb"),
  10893. name: "Front",
  10894. image: {
  10895. source: "./media/characters/moody/front.svg",
  10896. extra: 3226 / 3007,
  10897. bottom: 0.087
  10898. }
  10899. },
  10900. },
  10901. [
  10902. {
  10903. name: "Micro",
  10904. height: math.unit(1, "mm")
  10905. },
  10906. {
  10907. name: "Normal",
  10908. height: math.unit(1.7, "meters"),
  10909. default: true
  10910. },
  10911. {
  10912. name: "Macro",
  10913. height: math.unit(80, "meters")
  10914. },
  10915. {
  10916. name: "Macro+",
  10917. height: math.unit(500, "meters")
  10918. },
  10919. ]
  10920. ))
  10921. characterMakers.push(() => makeCharacter(
  10922. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10923. {
  10924. front: {
  10925. height: math.unit(6, "feet"),
  10926. weight: math.unit(150, "lb"),
  10927. name: "Front",
  10928. image: {
  10929. source: "./media/characters/zyas/front.svg",
  10930. extra: 1180 / 1120,
  10931. bottom: 0.045
  10932. }
  10933. },
  10934. },
  10935. [
  10936. {
  10937. name: "Normal",
  10938. height: math.unit(10, "feet"),
  10939. default: true
  10940. },
  10941. {
  10942. name: "Macro",
  10943. height: math.unit(500, "feet")
  10944. },
  10945. {
  10946. name: "Megamacro",
  10947. height: math.unit(5, "miles")
  10948. },
  10949. {
  10950. name: "Teramacro",
  10951. height: math.unit(150000, "miles")
  10952. },
  10953. ]
  10954. ))
  10955. characterMakers.push(() => makeCharacter(
  10956. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10957. {
  10958. front: {
  10959. height: math.unit(6, "feet"),
  10960. weight: math.unit(150, "lb"),
  10961. name: "Front",
  10962. image: {
  10963. source: "./media/characters/cuon/front.svg",
  10964. extra: 1390 / 1320,
  10965. bottom: 0.008
  10966. }
  10967. },
  10968. },
  10969. [
  10970. {
  10971. name: "Micro",
  10972. height: math.unit(3, "inches")
  10973. },
  10974. {
  10975. name: "Normal",
  10976. height: math.unit(18 + 9 / 12, "feet"),
  10977. default: true
  10978. },
  10979. {
  10980. name: "Macro",
  10981. height: math.unit(360, "feet")
  10982. },
  10983. {
  10984. name: "Megamacro",
  10985. height: math.unit(360, "miles")
  10986. },
  10987. ]
  10988. ))
  10989. characterMakers.push(() => makeCharacter(
  10990. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10991. {
  10992. front: {
  10993. height: math.unit(2.4, "meters"),
  10994. weight: math.unit(70, "kg"),
  10995. name: "Front",
  10996. image: {
  10997. source: "./media/characters/nyanuxk/front.svg",
  10998. extra: 1172 / 1084,
  10999. bottom: 0.065
  11000. }
  11001. },
  11002. side: {
  11003. height: math.unit(2.4, "meters"),
  11004. weight: math.unit(70, "kg"),
  11005. name: "Side",
  11006. image: {
  11007. source: "./media/characters/nyanuxk/side.svg",
  11008. extra: 1190 / 1132,
  11009. bottom: 0.007
  11010. }
  11011. },
  11012. back: {
  11013. height: math.unit(2.4, "meters"),
  11014. weight: math.unit(70, "kg"),
  11015. name: "Back",
  11016. image: {
  11017. source: "./media/characters/nyanuxk/back.svg",
  11018. extra: 1200 / 1141,
  11019. bottom: 0.015
  11020. }
  11021. },
  11022. foot: {
  11023. height: math.unit(0.52, "meters"),
  11024. name: "Foot",
  11025. image: {
  11026. source: "./media/characters/nyanuxk/foot.svg"
  11027. }
  11028. },
  11029. },
  11030. [
  11031. {
  11032. name: "Micro",
  11033. height: math.unit(2, "cm")
  11034. },
  11035. {
  11036. name: "Normal",
  11037. height: math.unit(2.4, "meters"),
  11038. default: true
  11039. },
  11040. {
  11041. name: "Smaller Macro",
  11042. height: math.unit(120, "meters")
  11043. },
  11044. {
  11045. name: "Bigger Macro",
  11046. height: math.unit(1.2, "km")
  11047. },
  11048. {
  11049. name: "Megamacro",
  11050. height: math.unit(15, "kilometers")
  11051. },
  11052. {
  11053. name: "Gigamacro",
  11054. height: math.unit(2000, "km")
  11055. },
  11056. {
  11057. name: "Teramacro",
  11058. height: math.unit(500000, "km")
  11059. },
  11060. ]
  11061. ))
  11062. characterMakers.push(() => makeCharacter(
  11063. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11064. {
  11065. side: {
  11066. height: math.unit(6, "feet"),
  11067. name: "Side",
  11068. image: {
  11069. source: "./media/characters/ailbhe/side.svg",
  11070. extra: 757 / 464,
  11071. bottom: 0.041
  11072. }
  11073. },
  11074. },
  11075. [
  11076. {
  11077. name: "Normal",
  11078. height: math.unit(1.07, "meters"),
  11079. default: true
  11080. },
  11081. ]
  11082. ))
  11083. characterMakers.push(() => makeCharacter(
  11084. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11085. {
  11086. front: {
  11087. height: math.unit(6, "feet"),
  11088. weight: math.unit(120, "kg"),
  11089. name: "Front",
  11090. image: {
  11091. source: "./media/characters/zevulfius/front.svg",
  11092. extra: 965 / 903
  11093. }
  11094. },
  11095. side: {
  11096. height: math.unit(6, "feet"),
  11097. weight: math.unit(120, "kg"),
  11098. name: "Side",
  11099. image: {
  11100. source: "./media/characters/zevulfius/side.svg",
  11101. extra: 939 / 900
  11102. }
  11103. },
  11104. back: {
  11105. height: math.unit(6, "feet"),
  11106. weight: math.unit(120, "kg"),
  11107. name: "Back",
  11108. image: {
  11109. source: "./media/characters/zevulfius/back.svg",
  11110. extra: 918 / 854,
  11111. bottom: 0.005
  11112. }
  11113. },
  11114. foot: {
  11115. height: math.unit(6 / 3.72, "feet"),
  11116. name: "Foot",
  11117. image: {
  11118. source: "./media/characters/zevulfius/foot.svg"
  11119. }
  11120. },
  11121. },
  11122. [
  11123. {
  11124. name: "Macro",
  11125. height: math.unit(750, "meters")
  11126. },
  11127. {
  11128. name: "Megamacro",
  11129. height: math.unit(20, "km"),
  11130. default: true
  11131. },
  11132. {
  11133. name: "Gigamacro",
  11134. height: math.unit(2000, "km")
  11135. },
  11136. {
  11137. name: "Teramacro",
  11138. height: math.unit(250000, "km")
  11139. },
  11140. ]
  11141. ))
  11142. characterMakers.push(() => makeCharacter(
  11143. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11144. {
  11145. front: {
  11146. height: math.unit(100, "feet"),
  11147. weight: math.unit(350, "kg"),
  11148. name: "Front",
  11149. image: {
  11150. source: "./media/characters/rikes/front.svg",
  11151. extra: 1565 / 1483,
  11152. bottom: 0.017
  11153. }
  11154. },
  11155. },
  11156. [
  11157. {
  11158. name: "Macro",
  11159. height: math.unit(100, "feet"),
  11160. default: true
  11161. },
  11162. ]
  11163. ))
  11164. characterMakers.push(() => makeCharacter(
  11165. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11166. {
  11167. front: {
  11168. height: math.unit(8, "feet"),
  11169. weight: math.unit(356, "lb"),
  11170. name: "Front",
  11171. image: {
  11172. source: "./media/characters/adam-silver-mane/front.svg",
  11173. extra: 1036/937,
  11174. bottom: 63/1099
  11175. }
  11176. },
  11177. side: {
  11178. height: math.unit(8, "feet"),
  11179. weight: math.unit(356, "lb"),
  11180. name: "Side",
  11181. image: {
  11182. source: "./media/characters/adam-silver-mane/side.svg",
  11183. extra: 997/901,
  11184. bottom: 59/1056
  11185. }
  11186. },
  11187. frontNsfw: {
  11188. height: math.unit(8, "feet"),
  11189. weight: math.unit(356, "lb"),
  11190. name: "Front (NSFW)",
  11191. image: {
  11192. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11193. extra: 1036/937,
  11194. bottom: 63/1099
  11195. }
  11196. },
  11197. sideNsfw: {
  11198. height: math.unit(8, "feet"),
  11199. weight: math.unit(356, "lb"),
  11200. name: "Side (NSFW)",
  11201. image: {
  11202. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11203. extra: 997/901,
  11204. bottom: 59/1056
  11205. }
  11206. },
  11207. dick: {
  11208. height: math.unit(2.1, "feet"),
  11209. name: "Dick",
  11210. image: {
  11211. source: "./media/characters/adam-silver-mane/dick.svg"
  11212. }
  11213. },
  11214. taur: {
  11215. height: math.unit(16, "feet"),
  11216. weight: math.unit(1500, "kg"),
  11217. name: "Taur",
  11218. image: {
  11219. source: "./media/characters/adam-silver-mane/taur.svg",
  11220. extra: 1713 / 1571,
  11221. bottom: 0.01
  11222. }
  11223. },
  11224. },
  11225. [
  11226. {
  11227. name: "Normal",
  11228. height: math.unit(8, "feet")
  11229. },
  11230. {
  11231. name: "Minimacro",
  11232. height: math.unit(80, "feet")
  11233. },
  11234. {
  11235. name: "MDA",
  11236. height: math.unit(80, "meters")
  11237. },
  11238. {
  11239. name: "Macro",
  11240. height: math.unit(800, "feet"),
  11241. default: true
  11242. },
  11243. {
  11244. name: "Megamacro",
  11245. height: math.unit(8000, "feet")
  11246. },
  11247. {
  11248. name: "Gigamacro",
  11249. height: math.unit(800, "miles")
  11250. },
  11251. {
  11252. name: "Teramacro",
  11253. height: math.unit(80000, "miles")
  11254. },
  11255. {
  11256. name: "Celestial",
  11257. height: math.unit(8e6, "miles")
  11258. },
  11259. {
  11260. name: "Star Dragon",
  11261. height: math.unit(800000, "parsecs")
  11262. },
  11263. {
  11264. name: "Godly",
  11265. height: math.unit(800, "teraparsecs")
  11266. },
  11267. ]
  11268. ))
  11269. characterMakers.push(() => makeCharacter(
  11270. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11271. {
  11272. front: {
  11273. height: math.unit(6, "feet"),
  11274. weight: math.unit(150, "lb"),
  11275. name: "Front",
  11276. image: {
  11277. source: "./media/characters/ky'owin/front.svg",
  11278. extra: 3888 / 3068,
  11279. bottom: 0.015
  11280. }
  11281. },
  11282. },
  11283. [
  11284. {
  11285. name: "Normal",
  11286. height: math.unit(6 + 8 / 12, "feet")
  11287. },
  11288. {
  11289. name: "Large",
  11290. height: math.unit(68, "feet")
  11291. },
  11292. {
  11293. name: "Macro",
  11294. height: math.unit(132, "feet")
  11295. },
  11296. {
  11297. name: "Macro+",
  11298. height: math.unit(340, "feet")
  11299. },
  11300. {
  11301. name: "Macro++",
  11302. height: math.unit(680, "feet"),
  11303. default: true
  11304. },
  11305. {
  11306. name: "Megamacro",
  11307. height: math.unit(1, "mile")
  11308. },
  11309. {
  11310. name: "Megamacro+",
  11311. height: math.unit(10, "miles")
  11312. },
  11313. ]
  11314. ))
  11315. characterMakers.push(() => makeCharacter(
  11316. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  11317. {
  11318. front: {
  11319. height: math.unit(4, "feet"),
  11320. weight: math.unit(50, "lb"),
  11321. name: "Front",
  11322. image: {
  11323. source: "./media/characters/mal/front.svg",
  11324. extra: 785 / 724,
  11325. bottom: 0.07
  11326. }
  11327. },
  11328. },
  11329. [
  11330. {
  11331. name: "Micro",
  11332. height: math.unit(4, "inches")
  11333. },
  11334. {
  11335. name: "Normal",
  11336. height: math.unit(4, "feet"),
  11337. default: true
  11338. },
  11339. {
  11340. name: "Macro",
  11341. height: math.unit(200, "feet")
  11342. },
  11343. ]
  11344. ))
  11345. characterMakers.push(() => makeCharacter(
  11346. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11347. {
  11348. front: {
  11349. height: math.unit(6, "feet"),
  11350. weight: math.unit(150, "lb"),
  11351. name: "Front",
  11352. image: {
  11353. source: "./media/characters/jordan-deware/front.svg",
  11354. extra: 1191 / 1012
  11355. }
  11356. },
  11357. },
  11358. [
  11359. {
  11360. name: "Nano",
  11361. height: math.unit(0.01, "mm")
  11362. },
  11363. {
  11364. name: "Minimicro",
  11365. height: math.unit(1, "mm")
  11366. },
  11367. {
  11368. name: "Micro",
  11369. height: math.unit(0.5, "inches")
  11370. },
  11371. {
  11372. name: "Normal",
  11373. height: math.unit(4, "feet"),
  11374. default: true
  11375. },
  11376. {
  11377. name: "Minimacro",
  11378. height: math.unit(40, "meters")
  11379. },
  11380. {
  11381. name: "Small Macro",
  11382. height: math.unit(400, "meters")
  11383. },
  11384. {
  11385. name: "Macro",
  11386. height: math.unit(4, "miles")
  11387. },
  11388. {
  11389. name: "Megamacro",
  11390. height: math.unit(40, "miles")
  11391. },
  11392. {
  11393. name: "Megamacro+",
  11394. height: math.unit(400, "miles")
  11395. },
  11396. {
  11397. name: "Gigamacro",
  11398. height: math.unit(400000, "miles")
  11399. },
  11400. ]
  11401. ))
  11402. characterMakers.push(() => makeCharacter(
  11403. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11404. {
  11405. side: {
  11406. height: math.unit(6, "feet"),
  11407. weight: math.unit(150, "lb"),
  11408. name: "Side",
  11409. image: {
  11410. source: "./media/characters/kimiko/side.svg",
  11411. extra: 600 / 358
  11412. }
  11413. },
  11414. },
  11415. [
  11416. {
  11417. name: "Normal",
  11418. height: math.unit(15, "feet"),
  11419. default: true
  11420. },
  11421. {
  11422. name: "Macro",
  11423. height: math.unit(220, "feet")
  11424. },
  11425. {
  11426. name: "Macro+",
  11427. height: math.unit(1450, "feet")
  11428. },
  11429. {
  11430. name: "Megamacro",
  11431. height: math.unit(11500, "feet")
  11432. },
  11433. {
  11434. name: "Gigamacro",
  11435. height: math.unit(9500, "miles")
  11436. },
  11437. {
  11438. name: "Teramacro",
  11439. height: math.unit(2208005005, "miles")
  11440. },
  11441. {
  11442. name: "Examacro",
  11443. height: math.unit(2750, "parsecs")
  11444. },
  11445. {
  11446. name: "Zettamacro",
  11447. height: math.unit(101500, "parsecs")
  11448. },
  11449. ]
  11450. ))
  11451. characterMakers.push(() => makeCharacter(
  11452. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11453. {
  11454. front: {
  11455. height: math.unit(6, "feet"),
  11456. weight: math.unit(70, "kg"),
  11457. name: "Front",
  11458. image: {
  11459. source: "./media/characters/andrew-sleepy/front.svg"
  11460. }
  11461. },
  11462. side: {
  11463. height: math.unit(6, "feet"),
  11464. weight: math.unit(70, "kg"),
  11465. name: "Side",
  11466. image: {
  11467. source: "./media/characters/andrew-sleepy/side.svg"
  11468. }
  11469. },
  11470. },
  11471. [
  11472. {
  11473. name: "Micro",
  11474. height: math.unit(1, "mm"),
  11475. default: true
  11476. },
  11477. ]
  11478. ))
  11479. characterMakers.push(() => makeCharacter(
  11480. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11481. {
  11482. front: {
  11483. height: math.unit(6, "feet"),
  11484. weight: math.unit(150, "lb"),
  11485. name: "Front",
  11486. image: {
  11487. source: "./media/characters/judio/front.svg",
  11488. extra: 1258 / 1110
  11489. }
  11490. },
  11491. },
  11492. [
  11493. {
  11494. name: "Normal",
  11495. height: math.unit(5 + 6 / 12, "feet")
  11496. },
  11497. {
  11498. name: "Macro",
  11499. height: math.unit(1000, "feet"),
  11500. default: true
  11501. },
  11502. {
  11503. name: "Megamacro",
  11504. height: math.unit(10, "miles")
  11505. },
  11506. ]
  11507. ))
  11508. characterMakers.push(() => makeCharacter(
  11509. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11510. {
  11511. frontDressed: {
  11512. height: math.unit(6, "feet"),
  11513. weight: math.unit(68, "kg"),
  11514. name: "Front (Dressed)",
  11515. image: {
  11516. source: "./media/characters/nomaxice/front-dressed.svg",
  11517. extra: 1137/824,
  11518. bottom: 74/1211
  11519. }
  11520. },
  11521. frontShorts: {
  11522. height: math.unit(6, "feet"),
  11523. weight: math.unit(68, "kg"),
  11524. name: "Front (Shorts)",
  11525. image: {
  11526. source: "./media/characters/nomaxice/front-shorts.svg",
  11527. extra: 1137/824,
  11528. bottom: 74/1211
  11529. }
  11530. },
  11531. back: {
  11532. height: math.unit(6, "feet"),
  11533. weight: math.unit(68, "kg"),
  11534. name: "Back",
  11535. image: {
  11536. source: "./media/characters/nomaxice/back.svg",
  11537. extra: 822/786,
  11538. bottom: 39/861
  11539. }
  11540. },
  11541. hand: {
  11542. height: math.unit(0.565, "feet"),
  11543. name: "Hand",
  11544. image: {
  11545. source: "./media/characters/nomaxice/hand.svg"
  11546. }
  11547. },
  11548. foot: {
  11549. height: math.unit(1, "feet"),
  11550. name: "Foot",
  11551. image: {
  11552. source: "./media/characters/nomaxice/foot.svg"
  11553. }
  11554. },
  11555. },
  11556. [
  11557. {
  11558. name: "Micro",
  11559. height: math.unit(8, "cm")
  11560. },
  11561. {
  11562. name: "Norm",
  11563. height: math.unit(1.82, "m")
  11564. },
  11565. {
  11566. name: "Norm+",
  11567. height: math.unit(8.8, "feet"),
  11568. default: true
  11569. },
  11570. {
  11571. name: "Big",
  11572. height: math.unit(8, "meters")
  11573. },
  11574. {
  11575. name: "Macro",
  11576. height: math.unit(18, "meters")
  11577. },
  11578. {
  11579. name: "Macro+",
  11580. height: math.unit(88, "meters")
  11581. },
  11582. ]
  11583. ))
  11584. characterMakers.push(() => makeCharacter(
  11585. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11586. {
  11587. front: {
  11588. height: math.unit(12, "feet"),
  11589. weight: math.unit(1.5, "tons"),
  11590. name: "Front",
  11591. image: {
  11592. source: "./media/characters/dydros/front.svg",
  11593. extra: 863 / 800,
  11594. bottom: 0.015
  11595. }
  11596. },
  11597. back: {
  11598. height: math.unit(12, "feet"),
  11599. weight: math.unit(1.5, "tons"),
  11600. name: "Back",
  11601. image: {
  11602. source: "./media/characters/dydros/back.svg",
  11603. extra: 900 / 843,
  11604. bottom: 0.005
  11605. }
  11606. },
  11607. },
  11608. [
  11609. {
  11610. name: "Normal",
  11611. height: math.unit(12, "feet"),
  11612. default: true
  11613. },
  11614. ]
  11615. ))
  11616. characterMakers.push(() => makeCharacter(
  11617. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11618. {
  11619. front: {
  11620. height: math.unit(6, "feet"),
  11621. weight: math.unit(100, "kg"),
  11622. name: "Front",
  11623. image: {
  11624. source: "./media/characters/riggi/front.svg",
  11625. extra: 5787 / 5303
  11626. }
  11627. },
  11628. hyper: {
  11629. height: math.unit(6 * 5 / 3, "feet"),
  11630. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11631. name: "Hyper",
  11632. image: {
  11633. source: "./media/characters/riggi/hyper.svg",
  11634. extra: 3595 / 3485
  11635. }
  11636. },
  11637. },
  11638. [
  11639. {
  11640. name: "Small Macro",
  11641. height: math.unit(50, "feet")
  11642. },
  11643. {
  11644. name: "Default",
  11645. height: math.unit(200, "feet"),
  11646. default: true
  11647. },
  11648. {
  11649. name: "Loom",
  11650. height: math.unit(10000, "feet")
  11651. },
  11652. {
  11653. name: "Cruising Altitude",
  11654. height: math.unit(30000, "feet")
  11655. },
  11656. {
  11657. name: "Megamacro",
  11658. height: math.unit(100, "miles")
  11659. },
  11660. {
  11661. name: "Continent Sized",
  11662. height: math.unit(2800, "miles")
  11663. },
  11664. {
  11665. name: "Earth Sized",
  11666. height: math.unit(8000, "miles")
  11667. },
  11668. ]
  11669. ))
  11670. characterMakers.push(() => makeCharacter(
  11671. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11672. {
  11673. front: {
  11674. height: math.unit(6, "feet"),
  11675. weight: math.unit(250, "lb"),
  11676. name: "Front",
  11677. image: {
  11678. source: "./media/characters/alexi/front.svg",
  11679. extra: 3483 / 3291,
  11680. bottom: 0.04
  11681. }
  11682. },
  11683. back: {
  11684. height: math.unit(6, "feet"),
  11685. weight: math.unit(250, "lb"),
  11686. name: "Back",
  11687. image: {
  11688. source: "./media/characters/alexi/back.svg",
  11689. extra: 3533 / 3356,
  11690. bottom: 0.021
  11691. }
  11692. },
  11693. frontTransforming: {
  11694. height: math.unit(8.58, "feet"),
  11695. weight: math.unit(1300, "lb"),
  11696. name: "Transforming",
  11697. image: {
  11698. source: "./media/characters/alexi/front-transforming.svg",
  11699. extra: 437 / 409,
  11700. bottom: 19 / 458.66
  11701. }
  11702. },
  11703. frontTransformed: {
  11704. height: math.unit(12.5, "feet"),
  11705. weight: math.unit(4000, "lb"),
  11706. name: "Transformed",
  11707. image: {
  11708. source: "./media/characters/alexi/front-transformed.svg",
  11709. extra: 639 / 614,
  11710. bottom: 30.55 / 671
  11711. }
  11712. },
  11713. },
  11714. [
  11715. {
  11716. name: "Normal",
  11717. height: math.unit(14, "feet"),
  11718. default: true
  11719. },
  11720. {
  11721. name: "Minimacro",
  11722. height: math.unit(30, "meters")
  11723. },
  11724. {
  11725. name: "Macro",
  11726. height: math.unit(500, "meters")
  11727. },
  11728. {
  11729. name: "Megamacro",
  11730. height: math.unit(9000, "km")
  11731. },
  11732. {
  11733. name: "Teramacro",
  11734. height: math.unit(384000, "km")
  11735. },
  11736. ]
  11737. ))
  11738. characterMakers.push(() => makeCharacter(
  11739. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11740. {
  11741. front: {
  11742. height: math.unit(6, "feet"),
  11743. weight: math.unit(150, "lb"),
  11744. name: "Front",
  11745. image: {
  11746. source: "./media/characters/kayroo/front.svg",
  11747. extra: 1153 / 1038,
  11748. bottom: 0.06
  11749. }
  11750. },
  11751. foot: {
  11752. height: math.unit(6, "feet"),
  11753. weight: math.unit(150, "lb"),
  11754. name: "Foot",
  11755. image: {
  11756. source: "./media/characters/kayroo/foot.svg"
  11757. }
  11758. },
  11759. },
  11760. [
  11761. {
  11762. name: "Normal",
  11763. height: math.unit(8, "feet"),
  11764. default: true
  11765. },
  11766. {
  11767. name: "Minimacro",
  11768. height: math.unit(250, "feet")
  11769. },
  11770. {
  11771. name: "Macro",
  11772. height: math.unit(2800, "feet")
  11773. },
  11774. {
  11775. name: "Megamacro",
  11776. height: math.unit(5200, "feet")
  11777. },
  11778. {
  11779. name: "Gigamacro",
  11780. height: math.unit(27000, "feet")
  11781. },
  11782. {
  11783. name: "Omega",
  11784. height: math.unit(45000, "feet")
  11785. },
  11786. ]
  11787. ))
  11788. characterMakers.push(() => makeCharacter(
  11789. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11790. {
  11791. front: {
  11792. height: math.unit(18, "feet"),
  11793. weight: math.unit(5800, "lb"),
  11794. name: "Front",
  11795. image: {
  11796. source: "./media/characters/rhys/front.svg",
  11797. extra: 3386 / 3090,
  11798. bottom: 0.07
  11799. }
  11800. },
  11801. },
  11802. [
  11803. {
  11804. name: "Normal",
  11805. height: math.unit(18, "feet"),
  11806. default: true
  11807. },
  11808. {
  11809. name: "Working Size",
  11810. height: math.unit(200, "feet")
  11811. },
  11812. {
  11813. name: "Demolition Size",
  11814. height: math.unit(2000, "feet")
  11815. },
  11816. {
  11817. name: "Maximum Licensed Size",
  11818. height: math.unit(5, "miles")
  11819. },
  11820. {
  11821. name: "Maximum Observed Size",
  11822. height: math.unit(10, "yottameters")
  11823. },
  11824. ]
  11825. ))
  11826. characterMakers.push(() => makeCharacter(
  11827. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11828. {
  11829. front: {
  11830. height: math.unit(6, "feet"),
  11831. weight: math.unit(250, "lb"),
  11832. name: "Front",
  11833. image: {
  11834. source: "./media/characters/toto/front.svg",
  11835. extra: 527 / 479,
  11836. bottom: 0.05
  11837. }
  11838. },
  11839. },
  11840. [
  11841. {
  11842. name: "Micro",
  11843. height: math.unit(3, "feet")
  11844. },
  11845. {
  11846. name: "Normal",
  11847. height: math.unit(10, "feet")
  11848. },
  11849. {
  11850. name: "Macro",
  11851. height: math.unit(150, "feet"),
  11852. default: true
  11853. },
  11854. {
  11855. name: "Megamacro",
  11856. height: math.unit(1200, "feet")
  11857. },
  11858. ]
  11859. ))
  11860. characterMakers.push(() => makeCharacter(
  11861. { name: "King", species: ["lion"], tags: ["anthro"] },
  11862. {
  11863. back: {
  11864. height: math.unit(6, "feet"),
  11865. weight: math.unit(150, "lb"),
  11866. name: "Back",
  11867. image: {
  11868. source: "./media/characters/king/back.svg"
  11869. }
  11870. },
  11871. },
  11872. [
  11873. {
  11874. name: "Micro",
  11875. height: math.unit(2, "inches")
  11876. },
  11877. {
  11878. name: "Normal",
  11879. height: math.unit(8, "feet")
  11880. },
  11881. {
  11882. name: "Macro",
  11883. height: math.unit(200, "feet"),
  11884. default: true
  11885. },
  11886. {
  11887. name: "Megamacro",
  11888. height: math.unit(50, "miles")
  11889. },
  11890. ]
  11891. ))
  11892. characterMakers.push(() => makeCharacter(
  11893. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11894. {
  11895. front: {
  11896. height: math.unit(11, "feet"),
  11897. weight: math.unit(1400, "lb"),
  11898. name: "Front",
  11899. image: {
  11900. source: "./media/characters/cordite/front.svg",
  11901. extra: 1919/1827,
  11902. bottom: 40/1959
  11903. }
  11904. },
  11905. side: {
  11906. height: math.unit(11, "feet"),
  11907. weight: math.unit(1400, "lb"),
  11908. name: "Side",
  11909. image: {
  11910. source: "./media/characters/cordite/side.svg",
  11911. extra: 1908/1793,
  11912. bottom: 38/1946
  11913. }
  11914. },
  11915. back: {
  11916. height: math.unit(11, "feet"),
  11917. weight: math.unit(1400, "lb"),
  11918. name: "Back",
  11919. image: {
  11920. source: "./media/characters/cordite/back.svg",
  11921. extra: 1938/1837,
  11922. bottom: 10/1948
  11923. }
  11924. },
  11925. feral: {
  11926. height: math.unit(2, "feet"),
  11927. weight: math.unit(90, "lb"),
  11928. name: "Feral",
  11929. image: {
  11930. source: "./media/characters/cordite/feral.svg",
  11931. extra: 1260 / 755,
  11932. bottom: 0.05
  11933. }
  11934. },
  11935. },
  11936. [
  11937. {
  11938. name: "Normal",
  11939. height: math.unit(11, "feet"),
  11940. default: true
  11941. },
  11942. ]
  11943. ))
  11944. characterMakers.push(() => makeCharacter(
  11945. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11946. {
  11947. front: {
  11948. height: math.unit(6, "feet"),
  11949. weight: math.unit(150, "lb"),
  11950. name: "Front",
  11951. image: {
  11952. source: "./media/characters/pianostrong/front.svg",
  11953. extra: 6577 / 6254,
  11954. bottom: 0.02
  11955. }
  11956. },
  11957. side: {
  11958. height: math.unit(6, "feet"),
  11959. weight: math.unit(150, "lb"),
  11960. name: "Side",
  11961. image: {
  11962. source: "./media/characters/pianostrong/side.svg",
  11963. extra: 6106 / 5730
  11964. }
  11965. },
  11966. back: {
  11967. height: math.unit(6, "feet"),
  11968. weight: math.unit(150, "lb"),
  11969. name: "Back",
  11970. image: {
  11971. source: "./media/characters/pianostrong/back.svg",
  11972. extra: 6085 / 5733,
  11973. bottom: 0.01
  11974. }
  11975. },
  11976. },
  11977. [
  11978. {
  11979. name: "Macro",
  11980. height: math.unit(100, "feet")
  11981. },
  11982. {
  11983. name: "Macro+",
  11984. height: math.unit(300, "feet"),
  11985. default: true
  11986. },
  11987. {
  11988. name: "Macro++",
  11989. height: math.unit(1000, "feet")
  11990. },
  11991. ]
  11992. ))
  11993. characterMakers.push(() => makeCharacter(
  11994. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11995. {
  11996. front: {
  11997. height: math.unit(6, "feet"),
  11998. weight: math.unit(150, "lb"),
  11999. name: "Front",
  12000. image: {
  12001. source: "./media/characters/kona/front.svg",
  12002. extra: 2960 / 2629,
  12003. bottom: 0.005
  12004. }
  12005. },
  12006. },
  12007. [
  12008. {
  12009. name: "Normal",
  12010. height: math.unit(11 + 8 / 12, "feet")
  12011. },
  12012. {
  12013. name: "Macro",
  12014. height: math.unit(850, "feet"),
  12015. default: true
  12016. },
  12017. {
  12018. name: "Macro+",
  12019. height: math.unit(1.5, "km"),
  12020. default: true
  12021. },
  12022. {
  12023. name: "Megamacro",
  12024. height: math.unit(80, "miles")
  12025. },
  12026. {
  12027. name: "Gigamacro",
  12028. height: math.unit(3500, "miles")
  12029. },
  12030. ]
  12031. ))
  12032. characterMakers.push(() => makeCharacter(
  12033. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12034. {
  12035. side: {
  12036. height: math.unit(1.9, "meters"),
  12037. weight: math.unit(326, "kg"),
  12038. name: "Side",
  12039. image: {
  12040. source: "./media/characters/levi/side.svg",
  12041. extra: 1704 / 1334,
  12042. bottom: 0.02
  12043. }
  12044. },
  12045. },
  12046. [
  12047. {
  12048. name: "Normal",
  12049. height: math.unit(1.9, "meters"),
  12050. default: true
  12051. },
  12052. {
  12053. name: "Macro",
  12054. height: math.unit(20, "meters")
  12055. },
  12056. {
  12057. name: "Macro+",
  12058. height: math.unit(200, "meters")
  12059. },
  12060. {
  12061. name: "Megamacro",
  12062. height: math.unit(2, "km")
  12063. },
  12064. {
  12065. name: "Megamacro+",
  12066. height: math.unit(20, "km")
  12067. },
  12068. {
  12069. name: "Gigamacro",
  12070. height: math.unit(2500, "km")
  12071. },
  12072. {
  12073. name: "Gigamacro+",
  12074. height: math.unit(120000, "km")
  12075. },
  12076. {
  12077. name: "Teramacro",
  12078. height: math.unit(7.77e6, "km")
  12079. },
  12080. ]
  12081. ))
  12082. characterMakers.push(() => makeCharacter(
  12083. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12084. {
  12085. front: {
  12086. height: math.unit(6 + 4/12, "feet"),
  12087. weight: math.unit(190, "lb"),
  12088. name: "Front",
  12089. image: {
  12090. source: "./media/characters/bmc/front.svg",
  12091. extra: 1626/1472,
  12092. bottom: 79/1705
  12093. }
  12094. },
  12095. back: {
  12096. height: math.unit(6 + 4/12, "feet"),
  12097. weight: math.unit(190, "lb"),
  12098. name: "Back",
  12099. image: {
  12100. source: "./media/characters/bmc/back.svg",
  12101. extra: 1640/1479,
  12102. bottom: 45/1685
  12103. }
  12104. },
  12105. frontArmor: {
  12106. height: math.unit(6 + 4/12, "feet"),
  12107. weight: math.unit(190, "lb"),
  12108. name: "Front-armor",
  12109. image: {
  12110. source: "./media/characters/bmc/front-armor.svg",
  12111. extra: 1538/1468,
  12112. bottom: 79/1617
  12113. }
  12114. },
  12115. },
  12116. [
  12117. {
  12118. name: "Human-sized",
  12119. height: math.unit(6 + 4 / 12, "feet")
  12120. },
  12121. {
  12122. name: "Interactive Size",
  12123. height: math.unit(25, "feet")
  12124. },
  12125. {
  12126. name: "Small",
  12127. height: math.unit(250, "feet")
  12128. },
  12129. {
  12130. name: "Normal",
  12131. height: math.unit(1250, "feet"),
  12132. default: true
  12133. },
  12134. {
  12135. name: "Good Day",
  12136. height: math.unit(88, "miles")
  12137. },
  12138. {
  12139. name: "Largest Measured Size",
  12140. height: math.unit(105.960, "galaxies")
  12141. },
  12142. ]
  12143. ))
  12144. characterMakers.push(() => makeCharacter(
  12145. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12146. {
  12147. front: {
  12148. height: math.unit(20, "feet"),
  12149. weight: math.unit(2016, "kg"),
  12150. name: "Front",
  12151. image: {
  12152. source: "./media/characters/sven-the-kaiju/front.svg",
  12153. extra: 1277/1250,
  12154. bottom: 35/1312
  12155. }
  12156. },
  12157. mouth: {
  12158. height: math.unit(1.85, "feet"),
  12159. name: "Mouth",
  12160. image: {
  12161. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12162. }
  12163. },
  12164. },
  12165. [
  12166. {
  12167. name: "Fairy",
  12168. height: math.unit(6, "inches")
  12169. },
  12170. {
  12171. name: "Normal",
  12172. height: math.unit(20, "feet"),
  12173. default: true
  12174. },
  12175. {
  12176. name: "Rampage",
  12177. height: math.unit(200, "feet")
  12178. },
  12179. {
  12180. name: "Archfey Forest Guardian",
  12181. height: math.unit(1, "mile")
  12182. },
  12183. ]
  12184. ))
  12185. characterMakers.push(() => makeCharacter(
  12186. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12187. {
  12188. front: {
  12189. height: math.unit(4, "meters"),
  12190. weight: math.unit(2, "tons"),
  12191. name: "Front",
  12192. image: {
  12193. source: "./media/characters/marik/front.svg",
  12194. extra: 1057 / 1003,
  12195. bottom: 0.08
  12196. }
  12197. },
  12198. },
  12199. [
  12200. {
  12201. name: "Normal",
  12202. height: math.unit(4, "meters"),
  12203. default: true
  12204. },
  12205. {
  12206. name: "Macro",
  12207. height: math.unit(20, "meters")
  12208. },
  12209. {
  12210. name: "Megamacro",
  12211. height: math.unit(50, "km")
  12212. },
  12213. {
  12214. name: "Gigamacro",
  12215. height: math.unit(100, "km")
  12216. },
  12217. {
  12218. name: "Alpha Macro",
  12219. height: math.unit(7.88e7, "yottameters")
  12220. },
  12221. ]
  12222. ))
  12223. characterMakers.push(() => makeCharacter(
  12224. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12225. {
  12226. front: {
  12227. height: math.unit(6, "feet"),
  12228. weight: math.unit(110, "lb"),
  12229. name: "Front",
  12230. image: {
  12231. source: "./media/characters/mel/front.svg",
  12232. extra: 736 / 617,
  12233. bottom: 0.017
  12234. }
  12235. },
  12236. },
  12237. [
  12238. {
  12239. name: "Pico",
  12240. height: math.unit(3, "pm")
  12241. },
  12242. {
  12243. name: "Nano",
  12244. height: math.unit(3, "nm")
  12245. },
  12246. {
  12247. name: "Micro",
  12248. height: math.unit(0.3, "mm"),
  12249. default: true
  12250. },
  12251. {
  12252. name: "Micro+",
  12253. height: math.unit(3, "mm")
  12254. },
  12255. {
  12256. name: "Normal",
  12257. height: math.unit(5 + 10.5 / 12, "feet")
  12258. },
  12259. ]
  12260. ))
  12261. characterMakers.push(() => makeCharacter(
  12262. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12263. {
  12264. kaiju: {
  12265. height: math.unit(1.75, "meters"),
  12266. weight: math.unit(55, "kg"),
  12267. name: "Kaiju",
  12268. image: {
  12269. source: "./media/characters/lykonous/kaiju.svg",
  12270. extra: 1055 / 946,
  12271. bottom: 0.135
  12272. }
  12273. },
  12274. },
  12275. [
  12276. {
  12277. name: "Normal",
  12278. height: math.unit(2.5, "meters"),
  12279. default: true
  12280. },
  12281. {
  12282. name: "Kaiju Dragon",
  12283. height: math.unit(60, "meters")
  12284. },
  12285. {
  12286. name: "Mega Kaiju",
  12287. height: math.unit(120, "km")
  12288. },
  12289. {
  12290. name: "Giga Kaiju",
  12291. height: math.unit(200, "megameters")
  12292. },
  12293. {
  12294. name: "Terra Kaiju",
  12295. height: math.unit(400, "gigameters")
  12296. },
  12297. {
  12298. name: "Kaiju Dragon God",
  12299. height: math.unit(13000, "exaparsecs")
  12300. },
  12301. ]
  12302. ))
  12303. characterMakers.push(() => makeCharacter(
  12304. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  12305. {
  12306. front: {
  12307. height: math.unit(6, "feet"),
  12308. weight: math.unit(150, "lb"),
  12309. name: "Front",
  12310. image: {
  12311. source: "./media/characters/blü/front.svg",
  12312. extra: 1883 / 1564,
  12313. bottom: 0.031
  12314. }
  12315. },
  12316. },
  12317. [
  12318. {
  12319. name: "Normal",
  12320. height: math.unit(13, "feet"),
  12321. default: true
  12322. },
  12323. {
  12324. name: "Big Boi",
  12325. height: math.unit(150, "meters")
  12326. },
  12327. {
  12328. name: "Mini Stomper",
  12329. height: math.unit(300, "meters")
  12330. },
  12331. {
  12332. name: "Macro",
  12333. height: math.unit(1000, "meters")
  12334. },
  12335. {
  12336. name: "Megamacro",
  12337. height: math.unit(11000, "meters")
  12338. },
  12339. {
  12340. name: "Gigamacro",
  12341. height: math.unit(11000, "km")
  12342. },
  12343. {
  12344. name: "Teramacro",
  12345. height: math.unit(420000, "km")
  12346. },
  12347. {
  12348. name: "Examacro",
  12349. height: math.unit(120, "parsecs")
  12350. },
  12351. {
  12352. name: "God Tho",
  12353. height: math.unit(98000000000, "parsecs")
  12354. },
  12355. ]
  12356. ))
  12357. characterMakers.push(() => makeCharacter(
  12358. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12359. {
  12360. taurFront: {
  12361. height: math.unit(6, "feet"),
  12362. weight: math.unit(200, "lb"),
  12363. name: "Taur (Front)",
  12364. image: {
  12365. source: "./media/characters/scales/taur-front.svg",
  12366. extra: 1,
  12367. bottom: 0.05
  12368. }
  12369. },
  12370. taurBack: {
  12371. height: math.unit(6, "feet"),
  12372. weight: math.unit(200, "lb"),
  12373. name: "Taur (Back)",
  12374. image: {
  12375. source: "./media/characters/scales/taur-back.svg",
  12376. extra: 1,
  12377. bottom: 0.08
  12378. }
  12379. },
  12380. anthro: {
  12381. height: math.unit(6 * 7 / 12, "feet"),
  12382. weight: math.unit(100, "lb"),
  12383. name: "Anthro",
  12384. image: {
  12385. source: "./media/characters/scales/anthro.svg",
  12386. extra: 1,
  12387. bottom: 0.06
  12388. }
  12389. },
  12390. },
  12391. [
  12392. {
  12393. name: "Normal",
  12394. height: math.unit(12, "feet"),
  12395. default: true
  12396. },
  12397. ]
  12398. ))
  12399. characterMakers.push(() => makeCharacter(
  12400. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12401. {
  12402. front: {
  12403. height: math.unit(6, "feet"),
  12404. weight: math.unit(150, "lb"),
  12405. name: "Front",
  12406. image: {
  12407. source: "./media/characters/koragos/front.svg",
  12408. extra: 841 / 794,
  12409. bottom: 0.035
  12410. }
  12411. },
  12412. back: {
  12413. height: math.unit(6, "feet"),
  12414. weight: math.unit(150, "lb"),
  12415. name: "Back",
  12416. image: {
  12417. source: "./media/characters/koragos/back.svg",
  12418. extra: 841 / 810,
  12419. bottom: 0.022
  12420. }
  12421. },
  12422. },
  12423. [
  12424. {
  12425. name: "Normal",
  12426. height: math.unit(6 + 11 / 12, "feet"),
  12427. default: true
  12428. },
  12429. {
  12430. name: "Macro",
  12431. height: math.unit(490, "feet")
  12432. },
  12433. {
  12434. name: "Megamacro",
  12435. height: math.unit(10, "miles")
  12436. },
  12437. {
  12438. name: "Gigamacro",
  12439. height: math.unit(50, "miles")
  12440. },
  12441. ]
  12442. ))
  12443. characterMakers.push(() => makeCharacter(
  12444. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12445. {
  12446. front: {
  12447. height: math.unit(6, "feet"),
  12448. weight: math.unit(250, "lb"),
  12449. name: "Front",
  12450. image: {
  12451. source: "./media/characters/xylrem/front.svg",
  12452. extra: 3323 / 3050,
  12453. bottom: 0.065
  12454. }
  12455. },
  12456. },
  12457. [
  12458. {
  12459. name: "Micro",
  12460. height: math.unit(4, "feet")
  12461. },
  12462. {
  12463. name: "Normal",
  12464. height: math.unit(16, "feet"),
  12465. default: true
  12466. },
  12467. {
  12468. name: "Macro",
  12469. height: math.unit(2720, "feet")
  12470. },
  12471. {
  12472. name: "Megamacro",
  12473. height: math.unit(25000, "miles")
  12474. },
  12475. ]
  12476. ))
  12477. characterMakers.push(() => makeCharacter(
  12478. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12479. {
  12480. front: {
  12481. height: math.unit(8, "feet"),
  12482. weight: math.unit(250, "kg"),
  12483. name: "Front",
  12484. image: {
  12485. source: "./media/characters/ikideru/front.svg",
  12486. extra: 930 / 870,
  12487. bottom: 0.087
  12488. }
  12489. },
  12490. back: {
  12491. height: math.unit(8, "feet"),
  12492. weight: math.unit(250, "kg"),
  12493. name: "Back",
  12494. image: {
  12495. source: "./media/characters/ikideru/back.svg",
  12496. extra: 919 / 852,
  12497. bottom: 0.055
  12498. }
  12499. },
  12500. },
  12501. [
  12502. {
  12503. name: "Rare",
  12504. height: math.unit(8, "feet"),
  12505. default: true
  12506. },
  12507. {
  12508. name: "Playful Loom",
  12509. height: math.unit(80, "feet")
  12510. },
  12511. {
  12512. name: "City Leaner",
  12513. height: math.unit(230, "feet")
  12514. },
  12515. {
  12516. name: "Megamacro",
  12517. height: math.unit(2500, "feet")
  12518. },
  12519. {
  12520. name: "Gigamacro",
  12521. height: math.unit(26400, "feet")
  12522. },
  12523. {
  12524. name: "Tectonic Shifter",
  12525. height: math.unit(1.7, "megameters")
  12526. },
  12527. {
  12528. name: "Planet Carer",
  12529. height: math.unit(21, "megameters")
  12530. },
  12531. {
  12532. name: "God",
  12533. height: math.unit(11157.22, "parsecs")
  12534. },
  12535. ]
  12536. ))
  12537. characterMakers.push(() => makeCharacter(
  12538. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12539. {
  12540. front: {
  12541. height: math.unit(6, "feet"),
  12542. weight: math.unit(120, "lb"),
  12543. name: "Front",
  12544. image: {
  12545. source: "./media/characters/neo/front.svg"
  12546. }
  12547. },
  12548. },
  12549. [
  12550. {
  12551. name: "Micro",
  12552. height: math.unit(2, "inches"),
  12553. default: true
  12554. },
  12555. {
  12556. name: "Human Size",
  12557. height: math.unit(5 + 8 / 12, "feet")
  12558. },
  12559. ]
  12560. ))
  12561. characterMakers.push(() => makeCharacter(
  12562. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12563. {
  12564. front: {
  12565. height: math.unit(13 + 10 / 12, "feet"),
  12566. weight: math.unit(5320, "lb"),
  12567. name: "Front",
  12568. image: {
  12569. source: "./media/characters/chauncey-chantz/front.svg",
  12570. extra: 1587 / 1435,
  12571. bottom: 0.02
  12572. }
  12573. },
  12574. },
  12575. [
  12576. {
  12577. name: "Normal",
  12578. height: math.unit(13 + 10 / 12, "feet"),
  12579. default: true
  12580. },
  12581. {
  12582. name: "Macro",
  12583. height: math.unit(45, "feet")
  12584. },
  12585. {
  12586. name: "Megamacro",
  12587. height: math.unit(250, "miles")
  12588. },
  12589. {
  12590. name: "Planetary",
  12591. height: math.unit(10000, "miles")
  12592. },
  12593. {
  12594. name: "Galactic",
  12595. height: math.unit(40000, "parsecs")
  12596. },
  12597. {
  12598. name: "Universal",
  12599. height: math.unit(1, "yottameter")
  12600. },
  12601. ]
  12602. ))
  12603. characterMakers.push(() => makeCharacter(
  12604. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12605. {
  12606. front: {
  12607. height: math.unit(6, "feet"),
  12608. weight: math.unit(150, "lb"),
  12609. name: "Front",
  12610. image: {
  12611. source: "./media/characters/epifox/front.svg",
  12612. extra: 1,
  12613. bottom: 0.075
  12614. }
  12615. },
  12616. },
  12617. [
  12618. {
  12619. name: "Micro",
  12620. height: math.unit(6, "inches")
  12621. },
  12622. {
  12623. name: "Normal",
  12624. height: math.unit(12, "feet"),
  12625. default: true
  12626. },
  12627. {
  12628. name: "Macro",
  12629. height: math.unit(3810, "feet")
  12630. },
  12631. {
  12632. name: "Megamacro",
  12633. height: math.unit(500, "miles")
  12634. },
  12635. ]
  12636. ))
  12637. characterMakers.push(() => makeCharacter(
  12638. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12639. {
  12640. front: {
  12641. height: math.unit(1.8796, "m"),
  12642. weight: math.unit(230, "lb"),
  12643. name: "Front",
  12644. image: {
  12645. source: "./media/characters/colin-t/front.svg",
  12646. extra: 1272 / 1193,
  12647. bottom: 0.07
  12648. }
  12649. },
  12650. },
  12651. [
  12652. {
  12653. name: "Micro",
  12654. height: math.unit(0.571, "meters")
  12655. },
  12656. {
  12657. name: "Normal",
  12658. height: math.unit(1.8796, "meters"),
  12659. default: true
  12660. },
  12661. {
  12662. name: "Tall",
  12663. height: math.unit(4, "meters")
  12664. },
  12665. {
  12666. name: "Macro",
  12667. height: math.unit(67.241, "meters")
  12668. },
  12669. {
  12670. name: "Megamacro",
  12671. height: math.unit(371.856, "meters")
  12672. },
  12673. {
  12674. name: "Planetary",
  12675. height: math.unit(12631.5689, "km")
  12676. },
  12677. ]
  12678. ))
  12679. characterMakers.push(() => makeCharacter(
  12680. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12681. {
  12682. front: {
  12683. height: math.unit(1.85, "meters"),
  12684. weight: math.unit(80, "kg"),
  12685. name: "Front",
  12686. image: {
  12687. source: "./media/characters/matvei/front.svg",
  12688. extra: 614 / 594,
  12689. bottom: 0.01
  12690. }
  12691. },
  12692. },
  12693. [
  12694. {
  12695. name: "Normal",
  12696. height: math.unit(1.85, "meters"),
  12697. default: true
  12698. },
  12699. ]
  12700. ))
  12701. characterMakers.push(() => makeCharacter(
  12702. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12703. {
  12704. front: {
  12705. height: math.unit(5 + 9 / 12, "feet"),
  12706. weight: math.unit(70, "lb"),
  12707. name: "Front",
  12708. image: {
  12709. source: "./media/characters/quincy/front.svg",
  12710. extra: 3041 / 2751
  12711. }
  12712. },
  12713. back: {
  12714. height: math.unit(5 + 9 / 12, "feet"),
  12715. weight: math.unit(70, "lb"),
  12716. name: "Back",
  12717. image: {
  12718. source: "./media/characters/quincy/back.svg",
  12719. extra: 3041 / 2751
  12720. }
  12721. },
  12722. flying: {
  12723. height: math.unit(5 + 4 / 12, "feet"),
  12724. weight: math.unit(70, "lb"),
  12725. name: "Flying",
  12726. image: {
  12727. source: "./media/characters/quincy/flying.svg",
  12728. extra: 1044 / 930
  12729. }
  12730. },
  12731. },
  12732. [
  12733. {
  12734. name: "Micro",
  12735. height: math.unit(3, "cm")
  12736. },
  12737. {
  12738. name: "Normal",
  12739. height: math.unit(5 + 9 / 12, "feet")
  12740. },
  12741. {
  12742. name: "Macro",
  12743. height: math.unit(200, "meters"),
  12744. default: true
  12745. },
  12746. {
  12747. name: "Megamacro",
  12748. height: math.unit(1000, "meters")
  12749. },
  12750. ]
  12751. ))
  12752. characterMakers.push(() => makeCharacter(
  12753. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12754. {
  12755. front: {
  12756. height: math.unit(3 + 11/12, "feet"),
  12757. weight: math.unit(50, "lb"),
  12758. name: "Front",
  12759. image: {
  12760. source: "./media/characters/vanrel/front.svg",
  12761. extra: 1104/949,
  12762. bottom: 52/1156
  12763. }
  12764. },
  12765. back: {
  12766. height: math.unit(3 + 11/12, "feet"),
  12767. weight: math.unit(50, "lb"),
  12768. name: "Back",
  12769. image: {
  12770. source: "./media/characters/vanrel/back.svg",
  12771. extra: 1119/976,
  12772. bottom: 37/1156
  12773. }
  12774. },
  12775. tome: {
  12776. height: math.unit(1.35, "feet"),
  12777. weight: math.unit(10, "lb"),
  12778. name: "Vanrel's Tome",
  12779. rename: true,
  12780. image: {
  12781. source: "./media/characters/vanrel/tome.svg"
  12782. }
  12783. },
  12784. beans: {
  12785. height: math.unit(0.89, "feet"),
  12786. name: "Beans",
  12787. image: {
  12788. source: "./media/characters/vanrel/beans.svg"
  12789. }
  12790. },
  12791. },
  12792. [
  12793. {
  12794. name: "Normal",
  12795. height: math.unit(3 + 11/12, "feet"),
  12796. default: true
  12797. },
  12798. ]
  12799. ))
  12800. characterMakers.push(() => makeCharacter(
  12801. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12802. {
  12803. front: {
  12804. height: math.unit(7 + 5 / 12, "feet"),
  12805. name: "Front",
  12806. image: {
  12807. source: "./media/characters/kuiper-vanrel/front.svg",
  12808. extra: 1219/1169,
  12809. bottom: 69/1288
  12810. }
  12811. },
  12812. back: {
  12813. height: math.unit(7 + 5 / 12, "feet"),
  12814. name: "Back",
  12815. image: {
  12816. source: "./media/characters/kuiper-vanrel/back.svg",
  12817. extra: 1236/1193,
  12818. bottom: 27/1263
  12819. }
  12820. },
  12821. foot: {
  12822. height: math.unit(0.55, "meters"),
  12823. name: "Foot",
  12824. image: {
  12825. source: "./media/characters/kuiper-vanrel/foot.svg",
  12826. }
  12827. },
  12828. battle: {
  12829. height: math.unit(6.824, "feet"),
  12830. name: "Battle",
  12831. image: {
  12832. source: "./media/characters/kuiper-vanrel/battle.svg",
  12833. extra: 1466 / 1327,
  12834. bottom: 29 / 1492.5
  12835. }
  12836. },
  12837. meerkui: {
  12838. height: math.unit(18, "inches"),
  12839. name: "Meerkui",
  12840. image: {
  12841. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12842. extra: 1354/1289,
  12843. bottom: 69/1423
  12844. }
  12845. },
  12846. },
  12847. [
  12848. {
  12849. name: "Normal",
  12850. height: math.unit(7 + 5 / 12, "feet"),
  12851. default: true
  12852. },
  12853. ]
  12854. ))
  12855. characterMakers.push(() => makeCharacter(
  12856. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12857. {
  12858. front: {
  12859. height: math.unit(8 + 5 / 12, "feet"),
  12860. name: "Front",
  12861. image: {
  12862. source: "./media/characters/keset-vanrel/front.svg",
  12863. extra: 1231/1148,
  12864. bottom: 82/1313
  12865. }
  12866. },
  12867. back: {
  12868. height: math.unit(8 + 5 / 12, "feet"),
  12869. name: "Back",
  12870. image: {
  12871. source: "./media/characters/keset-vanrel/back.svg",
  12872. extra: 1240/1174,
  12873. bottom: 33/1273
  12874. }
  12875. },
  12876. hand: {
  12877. height: math.unit(0.6, "meters"),
  12878. name: "Hand",
  12879. image: {
  12880. source: "./media/characters/keset-vanrel/hand.svg"
  12881. }
  12882. },
  12883. foot: {
  12884. height: math.unit(0.94978, "meters"),
  12885. name: "Foot",
  12886. image: {
  12887. source: "./media/characters/keset-vanrel/foot.svg"
  12888. }
  12889. },
  12890. battle: {
  12891. height: math.unit(7.408, "feet"),
  12892. name: "Battle",
  12893. image: {
  12894. source: "./media/characters/keset-vanrel/battle.svg",
  12895. extra: 1890 / 1386,
  12896. bottom: 73.28 / 1970
  12897. }
  12898. },
  12899. },
  12900. [
  12901. {
  12902. name: "Normal",
  12903. height: math.unit(8 + 5 / 12, "feet"),
  12904. default: true
  12905. },
  12906. ]
  12907. ))
  12908. characterMakers.push(() => makeCharacter(
  12909. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12910. {
  12911. front: {
  12912. height: math.unit(6, "feet"),
  12913. weight: math.unit(150, "lb"),
  12914. name: "Front",
  12915. image: {
  12916. source: "./media/characters/neos/front.svg",
  12917. extra: 1696 / 992,
  12918. bottom: 0.14
  12919. }
  12920. },
  12921. },
  12922. [
  12923. {
  12924. name: "Normal",
  12925. height: math.unit(54, "cm"),
  12926. default: true
  12927. },
  12928. {
  12929. name: "Macro",
  12930. height: math.unit(100, "m")
  12931. },
  12932. {
  12933. name: "Megamacro",
  12934. height: math.unit(10, "km")
  12935. },
  12936. {
  12937. name: "Megamacro+",
  12938. height: math.unit(100, "km")
  12939. },
  12940. {
  12941. name: "Gigamacro",
  12942. height: math.unit(100, "Mm")
  12943. },
  12944. {
  12945. name: "Teramacro",
  12946. height: math.unit(100, "Gm")
  12947. },
  12948. {
  12949. name: "Examacro",
  12950. height: math.unit(100, "Em")
  12951. },
  12952. {
  12953. name: "Godly",
  12954. height: math.unit(10000, "Ym")
  12955. },
  12956. {
  12957. name: "Beyond Godly",
  12958. height: math.unit(25, "multiverses")
  12959. },
  12960. ]
  12961. ))
  12962. characterMakers.push(() => makeCharacter(
  12963. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12964. {
  12965. feminine: {
  12966. height: math.unit(5, "feet"),
  12967. weight: math.unit(100, "lb"),
  12968. name: "Feminine",
  12969. image: {
  12970. source: "./media/characters/sammy-mouse/feminine.svg",
  12971. extra: 2526 / 2425,
  12972. bottom: 0.123
  12973. }
  12974. },
  12975. masculine: {
  12976. height: math.unit(5, "feet"),
  12977. weight: math.unit(100, "lb"),
  12978. name: "Masculine",
  12979. image: {
  12980. source: "./media/characters/sammy-mouse/masculine.svg",
  12981. extra: 2526 / 2425,
  12982. bottom: 0.123
  12983. }
  12984. },
  12985. },
  12986. [
  12987. {
  12988. name: "Micro",
  12989. height: math.unit(5, "inches")
  12990. },
  12991. {
  12992. name: "Normal",
  12993. height: math.unit(5, "feet"),
  12994. default: true
  12995. },
  12996. {
  12997. name: "Macro",
  12998. height: math.unit(60, "feet")
  12999. },
  13000. ]
  13001. ))
  13002. characterMakers.push(() => makeCharacter(
  13003. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13004. {
  13005. front: {
  13006. height: math.unit(4, "feet"),
  13007. weight: math.unit(50, "lb"),
  13008. name: "Front",
  13009. image: {
  13010. source: "./media/characters/kole/front.svg",
  13011. extra: 1423 / 1303,
  13012. bottom: 0.025
  13013. }
  13014. },
  13015. back: {
  13016. height: math.unit(4, "feet"),
  13017. weight: math.unit(50, "lb"),
  13018. name: "Back",
  13019. image: {
  13020. source: "./media/characters/kole/back.svg",
  13021. extra: 1426 / 1280,
  13022. bottom: 0.02
  13023. }
  13024. },
  13025. },
  13026. [
  13027. {
  13028. name: "Normal",
  13029. height: math.unit(4, "feet"),
  13030. default: true
  13031. },
  13032. ]
  13033. ))
  13034. characterMakers.push(() => makeCharacter(
  13035. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13036. {
  13037. front: {
  13038. height: math.unit(2.5, "feet"),
  13039. weight: math.unit(32, "lb"),
  13040. name: "Front",
  13041. image: {
  13042. source: "./media/characters/rufran/front.svg",
  13043. extra: 1313/885,
  13044. bottom: 94/1407
  13045. }
  13046. },
  13047. side: {
  13048. height: math.unit(2.5, "feet"),
  13049. weight: math.unit(32, "lb"),
  13050. name: "Side",
  13051. image: {
  13052. source: "./media/characters/rufran/side.svg",
  13053. extra: 1109/852,
  13054. bottom: 118/1227
  13055. }
  13056. },
  13057. back: {
  13058. height: math.unit(2.5, "feet"),
  13059. weight: math.unit(32, "lb"),
  13060. name: "Back",
  13061. image: {
  13062. source: "./media/characters/rufran/back.svg",
  13063. extra: 1280/878,
  13064. bottom: 131/1411
  13065. }
  13066. },
  13067. mouth: {
  13068. height: math.unit(1.13, "feet"),
  13069. name: "Mouth",
  13070. image: {
  13071. source: "./media/characters/rufran/mouth.svg"
  13072. }
  13073. },
  13074. foot: {
  13075. height: math.unit(1.33, "feet"),
  13076. name: "Foot",
  13077. image: {
  13078. source: "./media/characters/rufran/foot.svg"
  13079. }
  13080. },
  13081. koboldFront: {
  13082. height: math.unit(2 + 6 / 12, "feet"),
  13083. weight: math.unit(20, "lb"),
  13084. name: "Front (Kobold)",
  13085. image: {
  13086. source: "./media/characters/rufran/kobold-front.svg",
  13087. extra: 2041 / 1839,
  13088. bottom: 0.055
  13089. }
  13090. },
  13091. koboldBack: {
  13092. height: math.unit(2 + 6 / 12, "feet"),
  13093. weight: math.unit(20, "lb"),
  13094. name: "Back (Kobold)",
  13095. image: {
  13096. source: "./media/characters/rufran/kobold-back.svg",
  13097. extra: 2054 / 1839,
  13098. bottom: 0.01
  13099. }
  13100. },
  13101. koboldHand: {
  13102. height: math.unit(0.2166, "meters"),
  13103. name: "Hand (Kobold)",
  13104. image: {
  13105. source: "./media/characters/rufran/kobold-hand.svg"
  13106. }
  13107. },
  13108. koboldFoot: {
  13109. height: math.unit(0.185, "meters"),
  13110. name: "Foot (Kobold)",
  13111. image: {
  13112. source: "./media/characters/rufran/kobold-foot.svg"
  13113. }
  13114. },
  13115. },
  13116. [
  13117. {
  13118. name: "Micro",
  13119. height: math.unit(1, "inch")
  13120. },
  13121. {
  13122. name: "Normal",
  13123. height: math.unit(2 + 6 / 12, "feet"),
  13124. default: true
  13125. },
  13126. {
  13127. name: "Big",
  13128. height: math.unit(60, "feet")
  13129. },
  13130. {
  13131. name: "Macro",
  13132. height: math.unit(325, "feet")
  13133. },
  13134. ]
  13135. ))
  13136. characterMakers.push(() => makeCharacter(
  13137. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13138. {
  13139. front: {
  13140. height: math.unit(0.3, "meters"),
  13141. weight: math.unit(3.5, "kg"),
  13142. name: "Front",
  13143. image: {
  13144. source: "./media/characters/chip/front.svg",
  13145. extra: 748 / 674
  13146. }
  13147. },
  13148. },
  13149. [
  13150. {
  13151. name: "Micro",
  13152. height: math.unit(1, "inch"),
  13153. default: true
  13154. },
  13155. ]
  13156. ))
  13157. characterMakers.push(() => makeCharacter(
  13158. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13159. {
  13160. side: {
  13161. height: math.unit(2.3, "meters"),
  13162. weight: math.unit(3500, "lb"),
  13163. name: "Side",
  13164. image: {
  13165. source: "./media/characters/torvid/side.svg",
  13166. extra: 1972 / 722,
  13167. bottom: 0.035
  13168. }
  13169. },
  13170. },
  13171. [
  13172. {
  13173. name: "Normal",
  13174. height: math.unit(2.3, "meters"),
  13175. default: true
  13176. },
  13177. ]
  13178. ))
  13179. characterMakers.push(() => makeCharacter(
  13180. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13181. {
  13182. front: {
  13183. height: math.unit(2, "meters"),
  13184. weight: math.unit(150.5, "kg"),
  13185. name: "Front",
  13186. image: {
  13187. source: "./media/characters/susan/front.svg",
  13188. extra: 693 / 635,
  13189. bottom: 0.05
  13190. }
  13191. },
  13192. },
  13193. [
  13194. {
  13195. name: "Megamacro",
  13196. height: math.unit(505, "miles"),
  13197. default: true
  13198. },
  13199. ]
  13200. ))
  13201. characterMakers.push(() => makeCharacter(
  13202. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13203. {
  13204. front: {
  13205. height: math.unit(6, "feet"),
  13206. weight: math.unit(150, "lb"),
  13207. name: "Front",
  13208. image: {
  13209. source: "./media/characters/raindrops/front.svg",
  13210. extra: 2655 / 2461,
  13211. bottom: 49 / 2705
  13212. }
  13213. },
  13214. back: {
  13215. height: math.unit(6, "feet"),
  13216. weight: math.unit(150, "lb"),
  13217. name: "Back",
  13218. image: {
  13219. source: "./media/characters/raindrops/back.svg",
  13220. extra: 2574 / 2400,
  13221. bottom: 65 / 2634
  13222. }
  13223. },
  13224. },
  13225. [
  13226. {
  13227. name: "Micro",
  13228. height: math.unit(6, "inches")
  13229. },
  13230. {
  13231. name: "Normal",
  13232. height: math.unit(6 + 2 / 12, "feet")
  13233. },
  13234. {
  13235. name: "Macro",
  13236. height: math.unit(131, "feet"),
  13237. default: true
  13238. },
  13239. {
  13240. name: "Megamacro",
  13241. height: math.unit(15, "miles")
  13242. },
  13243. {
  13244. name: "Gigamacro",
  13245. height: math.unit(4000, "miles")
  13246. },
  13247. {
  13248. name: "Teramacro",
  13249. height: math.unit(315000, "miles")
  13250. },
  13251. ]
  13252. ))
  13253. characterMakers.push(() => makeCharacter(
  13254. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13255. {
  13256. front: {
  13257. height: math.unit(2.794, "meters"),
  13258. weight: math.unit(325, "kg"),
  13259. name: "Front",
  13260. image: {
  13261. source: "./media/characters/tezwa/front.svg",
  13262. extra: 2083 / 1906,
  13263. bottom: 0.031
  13264. }
  13265. },
  13266. foot: {
  13267. height: math.unit(0.687, "meters"),
  13268. name: "Foot",
  13269. image: {
  13270. source: "./media/characters/tezwa/foot.svg"
  13271. }
  13272. },
  13273. },
  13274. [
  13275. {
  13276. name: "Normal",
  13277. height: math.unit(9 + 2 / 12, "feet"),
  13278. default: true
  13279. },
  13280. ]
  13281. ))
  13282. characterMakers.push(() => makeCharacter(
  13283. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  13284. {
  13285. front: {
  13286. height: math.unit(58, "feet"),
  13287. weight: math.unit(89000, "lb"),
  13288. name: "Front",
  13289. image: {
  13290. source: "./media/characters/typhus/front.svg",
  13291. extra: 816 / 800,
  13292. bottom: 0.065
  13293. }
  13294. },
  13295. },
  13296. [
  13297. {
  13298. name: "Macro",
  13299. height: math.unit(58, "feet"),
  13300. default: true
  13301. },
  13302. ]
  13303. ))
  13304. characterMakers.push(() => makeCharacter(
  13305. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  13306. {
  13307. front: {
  13308. height: math.unit(12, "feet"),
  13309. weight: math.unit(6, "tonnes"),
  13310. name: "Front",
  13311. image: {
  13312. source: "./media/characters/lyra-von-wulf/front.svg",
  13313. extra: 1,
  13314. bottom: 0.10
  13315. }
  13316. },
  13317. frontMecha: {
  13318. height: math.unit(12, "feet"),
  13319. weight: math.unit(12, "tonnes"),
  13320. name: "Front (Mecha)",
  13321. image: {
  13322. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  13323. extra: 1,
  13324. bottom: 0.042
  13325. }
  13326. },
  13327. maw: {
  13328. height: math.unit(2.2, "feet"),
  13329. name: "Maw",
  13330. image: {
  13331. source: "./media/characters/lyra-von-wulf/maw.svg"
  13332. }
  13333. },
  13334. },
  13335. [
  13336. {
  13337. name: "Normal",
  13338. height: math.unit(12, "feet"),
  13339. default: true
  13340. },
  13341. {
  13342. name: "Classic",
  13343. height: math.unit(50, "feet")
  13344. },
  13345. {
  13346. name: "Macro",
  13347. height: math.unit(500, "feet")
  13348. },
  13349. {
  13350. name: "Megamacro",
  13351. height: math.unit(1, "mile")
  13352. },
  13353. {
  13354. name: "Gigamacro",
  13355. height: math.unit(400, "miles")
  13356. },
  13357. {
  13358. name: "Teramacro",
  13359. height: math.unit(22000, "miles")
  13360. },
  13361. {
  13362. name: "Solarmacro",
  13363. height: math.unit(8600000, "miles")
  13364. },
  13365. {
  13366. name: "Galactic",
  13367. height: math.unit(1057000, "lightyears")
  13368. },
  13369. ]
  13370. ))
  13371. characterMakers.push(() => makeCharacter(
  13372. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13373. {
  13374. front: {
  13375. height: math.unit(6 + 10 / 12, "feet"),
  13376. weight: math.unit(150, "lb"),
  13377. name: "Front",
  13378. image: {
  13379. source: "./media/characters/dixon/front.svg",
  13380. extra: 3361 / 3209,
  13381. bottom: 0.01
  13382. }
  13383. },
  13384. },
  13385. [
  13386. {
  13387. name: "Normal",
  13388. height: math.unit(6 + 10 / 12, "feet"),
  13389. default: true
  13390. },
  13391. {
  13392. name: "Big",
  13393. height: math.unit(12, "meters")
  13394. },
  13395. {
  13396. name: "Macro",
  13397. height: math.unit(500, "meters")
  13398. },
  13399. {
  13400. name: "Megamacro",
  13401. height: math.unit(2, "km")
  13402. },
  13403. ]
  13404. ))
  13405. characterMakers.push(() => makeCharacter(
  13406. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13407. {
  13408. front: {
  13409. height: math.unit(185, "cm"),
  13410. weight: math.unit(68, "kg"),
  13411. name: "Front",
  13412. image: {
  13413. source: "./media/characters/kauko/front.svg",
  13414. extra: 1455 / 1421,
  13415. bottom: 0.03
  13416. }
  13417. },
  13418. back: {
  13419. height: math.unit(185, "cm"),
  13420. weight: math.unit(68, "kg"),
  13421. name: "Back",
  13422. image: {
  13423. source: "./media/characters/kauko/back.svg",
  13424. extra: 1455 / 1421,
  13425. bottom: 0.004
  13426. }
  13427. },
  13428. },
  13429. [
  13430. {
  13431. name: "Normal",
  13432. height: math.unit(185, "cm"),
  13433. default: true
  13434. },
  13435. ]
  13436. ))
  13437. characterMakers.push(() => makeCharacter(
  13438. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13439. {
  13440. front: {
  13441. height: math.unit(6, "feet"),
  13442. weight: math.unit(150, "kg"),
  13443. name: "Front",
  13444. image: {
  13445. source: "./media/characters/varg/front.svg",
  13446. extra: 1108 / 1018,
  13447. bottom: 0.0375
  13448. }
  13449. },
  13450. },
  13451. [
  13452. {
  13453. name: "Normal",
  13454. height: math.unit(5, "meters")
  13455. },
  13456. {
  13457. name: "Macro",
  13458. height: math.unit(200, "meters")
  13459. },
  13460. {
  13461. name: "Megamacro",
  13462. height: math.unit(20, "kilometers")
  13463. },
  13464. {
  13465. name: "True Size",
  13466. height: math.unit(211, "km"),
  13467. default: true
  13468. },
  13469. {
  13470. name: "Gigamacro",
  13471. height: math.unit(1000, "km")
  13472. },
  13473. {
  13474. name: "Gigamacro+",
  13475. height: math.unit(8000, "km")
  13476. },
  13477. {
  13478. name: "Teramacro",
  13479. height: math.unit(1000000, "km")
  13480. },
  13481. ]
  13482. ))
  13483. characterMakers.push(() => makeCharacter(
  13484. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13485. {
  13486. front: {
  13487. height: math.unit(7 + 7 / 12, "feet"),
  13488. weight: math.unit(267, "lb"),
  13489. name: "Front",
  13490. image: {
  13491. source: "./media/characters/dayza/front.svg",
  13492. extra: 1262 / 1200,
  13493. bottom: 0.035
  13494. }
  13495. },
  13496. side: {
  13497. height: math.unit(7 + 7 / 12, "feet"),
  13498. weight: math.unit(267, "lb"),
  13499. name: "Side",
  13500. image: {
  13501. source: "./media/characters/dayza/side.svg",
  13502. extra: 1295 / 1245,
  13503. bottom: 0.05
  13504. }
  13505. },
  13506. back: {
  13507. height: math.unit(7 + 7 / 12, "feet"),
  13508. weight: math.unit(267, "lb"),
  13509. name: "Back",
  13510. image: {
  13511. source: "./media/characters/dayza/back.svg",
  13512. extra: 1241 / 1170
  13513. }
  13514. },
  13515. },
  13516. [
  13517. {
  13518. name: "Normal",
  13519. height: math.unit(7 + 7 / 12, "feet"),
  13520. default: true
  13521. },
  13522. {
  13523. name: "Macro",
  13524. height: math.unit(155, "feet")
  13525. },
  13526. ]
  13527. ))
  13528. characterMakers.push(() => makeCharacter(
  13529. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13530. {
  13531. front: {
  13532. height: math.unit(6 + 5 / 12, "feet"),
  13533. weight: math.unit(160, "lb"),
  13534. name: "Front",
  13535. image: {
  13536. source: "./media/characters/xanthos/front.svg",
  13537. extra: 1,
  13538. bottom: 0.04
  13539. }
  13540. },
  13541. back: {
  13542. height: math.unit(6 + 5 / 12, "feet"),
  13543. weight: math.unit(160, "lb"),
  13544. name: "Back",
  13545. image: {
  13546. source: "./media/characters/xanthos/back.svg",
  13547. extra: 1,
  13548. bottom: 0.03
  13549. }
  13550. },
  13551. hand: {
  13552. height: math.unit(0.928, "feet"),
  13553. name: "Hand",
  13554. image: {
  13555. source: "./media/characters/xanthos/hand.svg"
  13556. }
  13557. },
  13558. foot: {
  13559. height: math.unit(1.286, "feet"),
  13560. name: "Foot",
  13561. image: {
  13562. source: "./media/characters/xanthos/foot.svg"
  13563. }
  13564. },
  13565. },
  13566. [
  13567. {
  13568. name: "Normal",
  13569. height: math.unit(6 + 5 / 12, "feet"),
  13570. default: true
  13571. },
  13572. {
  13573. name: "Normal+",
  13574. height: math.unit(6, "meters")
  13575. },
  13576. {
  13577. name: "Macro",
  13578. height: math.unit(40, "feet")
  13579. },
  13580. {
  13581. name: "Macro+",
  13582. height: math.unit(200, "meters")
  13583. },
  13584. {
  13585. name: "Megamacro",
  13586. height: math.unit(20, "km")
  13587. },
  13588. {
  13589. name: "Megamacro+",
  13590. height: math.unit(100, "km")
  13591. },
  13592. {
  13593. name: "Gigamacro",
  13594. height: math.unit(200, "megameters")
  13595. },
  13596. {
  13597. name: "Gigamacro+",
  13598. height: math.unit(1.5, "gigameters")
  13599. },
  13600. ]
  13601. ))
  13602. characterMakers.push(() => makeCharacter(
  13603. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13604. {
  13605. front: {
  13606. height: math.unit(6 + 3 / 12, "feet"),
  13607. weight: math.unit(215, "lb"),
  13608. name: "Front",
  13609. image: {
  13610. source: "./media/characters/grynn/front.svg",
  13611. extra: 4627 / 4209,
  13612. bottom: 0.047
  13613. }
  13614. },
  13615. },
  13616. [
  13617. {
  13618. name: "Micro",
  13619. height: math.unit(6, "inches")
  13620. },
  13621. {
  13622. name: "Normal",
  13623. height: math.unit(6 + 3 / 12, "feet"),
  13624. default: true
  13625. },
  13626. {
  13627. name: "Big",
  13628. height: math.unit(104, "feet")
  13629. },
  13630. {
  13631. name: "Macro",
  13632. height: math.unit(944, "feet")
  13633. },
  13634. {
  13635. name: "Macro+",
  13636. height: math.unit(9480, "feet")
  13637. },
  13638. {
  13639. name: "Megamacro",
  13640. height: math.unit(78752, "feet")
  13641. },
  13642. {
  13643. name: "Megamacro+",
  13644. height: math.unit(630128, "feet")
  13645. },
  13646. {
  13647. name: "Megamacro++",
  13648. height: math.unit(3150695, "feet")
  13649. },
  13650. ]
  13651. ))
  13652. characterMakers.push(() => makeCharacter(
  13653. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13654. {
  13655. front: {
  13656. height: math.unit(7 + 5 / 12, "feet"),
  13657. weight: math.unit(450, "lb"),
  13658. name: "Front",
  13659. image: {
  13660. source: "./media/characters/mocha-aura/front.svg",
  13661. extra: 1907 / 1817,
  13662. bottom: 0.04
  13663. }
  13664. },
  13665. back: {
  13666. height: math.unit(7 + 5 / 12, "feet"),
  13667. weight: math.unit(450, "lb"),
  13668. name: "Back",
  13669. image: {
  13670. source: "./media/characters/mocha-aura/back.svg",
  13671. extra: 1900 / 1825,
  13672. bottom: 0.045
  13673. }
  13674. },
  13675. },
  13676. [
  13677. {
  13678. name: "Nano",
  13679. height: math.unit(1, "nm")
  13680. },
  13681. {
  13682. name: "Megamicro",
  13683. height: math.unit(1, "mm")
  13684. },
  13685. {
  13686. name: "Micro",
  13687. height: math.unit(3, "inches")
  13688. },
  13689. {
  13690. name: "Normal",
  13691. height: math.unit(7 + 5 / 12, "feet"),
  13692. default: true
  13693. },
  13694. {
  13695. name: "Macro",
  13696. height: math.unit(30, "feet")
  13697. },
  13698. {
  13699. name: "Megamacro",
  13700. height: math.unit(3500, "feet")
  13701. },
  13702. {
  13703. name: "Teramacro",
  13704. height: math.unit(500000, "miles")
  13705. },
  13706. {
  13707. name: "Petamacro",
  13708. height: math.unit(50000000000000000, "parsecs")
  13709. },
  13710. ]
  13711. ))
  13712. characterMakers.push(() => makeCharacter(
  13713. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13714. {
  13715. front: {
  13716. height: math.unit(6, "feet"),
  13717. weight: math.unit(150, "lb"),
  13718. name: "Front",
  13719. image: {
  13720. source: "./media/characters/ilisha-devya/front.svg",
  13721. extra: 1053/1049,
  13722. bottom: 270/1323
  13723. }
  13724. },
  13725. back: {
  13726. height: math.unit(6, "feet"),
  13727. weight: math.unit(150, "lb"),
  13728. name: "Back",
  13729. image: {
  13730. source: "./media/characters/ilisha-devya/back.svg",
  13731. extra: 1131/1128,
  13732. bottom: 39/1170
  13733. }
  13734. },
  13735. },
  13736. [
  13737. {
  13738. name: "Macro",
  13739. height: math.unit(500, "feet"),
  13740. default: true
  13741. },
  13742. {
  13743. name: "Megamacro",
  13744. height: math.unit(10, "miles")
  13745. },
  13746. {
  13747. name: "Gigamacro",
  13748. height: math.unit(100000, "miles")
  13749. },
  13750. {
  13751. name: "Examacro",
  13752. height: math.unit(1e9, "lightyears")
  13753. },
  13754. {
  13755. name: "Omniversal",
  13756. height: math.unit(1e33, "lightyears")
  13757. },
  13758. {
  13759. name: "Beyond Infinite",
  13760. height: math.unit(1e100, "lightyears")
  13761. },
  13762. ]
  13763. ))
  13764. characterMakers.push(() => makeCharacter(
  13765. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13766. {
  13767. Side: {
  13768. height: math.unit(6, "feet"),
  13769. weight: math.unit(150, "lb"),
  13770. name: "Side",
  13771. image: {
  13772. source: "./media/characters/mira/side.svg",
  13773. extra: 900 / 799,
  13774. bottom: 0.02
  13775. }
  13776. },
  13777. },
  13778. [
  13779. {
  13780. name: "Human Size",
  13781. height: math.unit(6, "feet")
  13782. },
  13783. {
  13784. name: "Macro",
  13785. height: math.unit(100, "feet"),
  13786. default: true
  13787. },
  13788. {
  13789. name: "Megamacro",
  13790. height: math.unit(10, "miles")
  13791. },
  13792. {
  13793. name: "Gigamacro",
  13794. height: math.unit(25000, "miles")
  13795. },
  13796. {
  13797. name: "Teramacro",
  13798. height: math.unit(300, "AU")
  13799. },
  13800. {
  13801. name: "Full Size",
  13802. height: math.unit(4.5e10, "lightyears")
  13803. },
  13804. ]
  13805. ))
  13806. characterMakers.push(() => makeCharacter(
  13807. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13808. {
  13809. front: {
  13810. height: math.unit(6, "feet"),
  13811. weight: math.unit(150, "lb"),
  13812. name: "Front",
  13813. image: {
  13814. source: "./media/characters/holly/front.svg",
  13815. extra: 639 / 606
  13816. }
  13817. },
  13818. back: {
  13819. height: math.unit(6, "feet"),
  13820. weight: math.unit(150, "lb"),
  13821. name: "Back",
  13822. image: {
  13823. source: "./media/characters/holly/back.svg",
  13824. extra: 623 / 598
  13825. }
  13826. },
  13827. frontWorking: {
  13828. height: math.unit(6, "feet"),
  13829. weight: math.unit(150, "lb"),
  13830. name: "Front (Working)",
  13831. image: {
  13832. source: "./media/characters/holly/front-working.svg",
  13833. extra: 607 / 577,
  13834. bottom: 0.048
  13835. }
  13836. },
  13837. },
  13838. [
  13839. {
  13840. name: "Normal",
  13841. height: math.unit(12 + 3 / 12, "feet"),
  13842. default: true
  13843. },
  13844. ]
  13845. ))
  13846. characterMakers.push(() => makeCharacter(
  13847. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13848. {
  13849. front: {
  13850. height: math.unit(6, "feet"),
  13851. weight: math.unit(150, "lb"),
  13852. name: "Front",
  13853. image: {
  13854. source: "./media/characters/porter/front.svg",
  13855. extra: 1,
  13856. bottom: 0.01
  13857. }
  13858. },
  13859. frontRobes: {
  13860. height: math.unit(6, "feet"),
  13861. weight: math.unit(150, "lb"),
  13862. name: "Front (Robes)",
  13863. image: {
  13864. source: "./media/characters/porter/front-robes.svg",
  13865. extra: 1.01,
  13866. bottom: 0.01
  13867. }
  13868. },
  13869. },
  13870. [
  13871. {
  13872. name: "Normal",
  13873. height: math.unit(11 + 9 / 12, "feet"),
  13874. default: true
  13875. },
  13876. ]
  13877. ))
  13878. characterMakers.push(() => makeCharacter(
  13879. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13880. {
  13881. legendary: {
  13882. height: math.unit(6, "feet"),
  13883. weight: math.unit(150, "lb"),
  13884. name: "Legendary",
  13885. image: {
  13886. source: "./media/characters/lucy/legendary.svg",
  13887. extra: 1355 / 1100,
  13888. bottom: 0.045
  13889. }
  13890. },
  13891. },
  13892. [
  13893. {
  13894. name: "Legendary",
  13895. height: math.unit(86882 * 2, "miles"),
  13896. default: true
  13897. },
  13898. ]
  13899. ))
  13900. characterMakers.push(() => makeCharacter(
  13901. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13902. {
  13903. front: {
  13904. height: math.unit(6, "feet"),
  13905. weight: math.unit(150, "lb"),
  13906. name: "Front",
  13907. image: {
  13908. source: "./media/characters/drusilla/front.svg",
  13909. extra: 678 / 635,
  13910. bottom: 0.03
  13911. }
  13912. },
  13913. back: {
  13914. height: math.unit(6, "feet"),
  13915. weight: math.unit(150, "lb"),
  13916. name: "Back",
  13917. image: {
  13918. source: "./media/characters/drusilla/back.svg",
  13919. extra: 678 / 635,
  13920. bottom: 0.005
  13921. }
  13922. },
  13923. },
  13924. [
  13925. {
  13926. name: "Macro",
  13927. height: math.unit(100, "feet")
  13928. },
  13929. {
  13930. name: "Canon Height",
  13931. height: math.unit(2000, "feet"),
  13932. default: true
  13933. },
  13934. ]
  13935. ))
  13936. characterMakers.push(() => makeCharacter(
  13937. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13938. {
  13939. front: {
  13940. height: math.unit(6, "feet"),
  13941. weight: math.unit(180, "lb"),
  13942. name: "Front",
  13943. image: {
  13944. source: "./media/characters/renard-thatch/front.svg",
  13945. extra: 2411 / 2275,
  13946. bottom: 0.01
  13947. }
  13948. },
  13949. frontPosing: {
  13950. height: math.unit(6, "feet"),
  13951. weight: math.unit(180, "lb"),
  13952. name: "Front (Posing)",
  13953. image: {
  13954. source: "./media/characters/renard-thatch/front-posing.svg",
  13955. extra: 2381 / 2261,
  13956. bottom: 0.01
  13957. }
  13958. },
  13959. back: {
  13960. height: math.unit(6, "feet"),
  13961. weight: math.unit(180, "lb"),
  13962. name: "Back",
  13963. image: {
  13964. source: "./media/characters/renard-thatch/back.svg",
  13965. extra: 2428 / 2288
  13966. }
  13967. },
  13968. },
  13969. [
  13970. {
  13971. name: "Micro",
  13972. height: math.unit(3, "inches")
  13973. },
  13974. {
  13975. name: "Default",
  13976. height: math.unit(6, "feet"),
  13977. default: true
  13978. },
  13979. {
  13980. name: "Macro",
  13981. height: math.unit(75, "feet")
  13982. },
  13983. ]
  13984. ))
  13985. characterMakers.push(() => makeCharacter(
  13986. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13987. {
  13988. front: {
  13989. height: math.unit(1450, "feet"),
  13990. weight: math.unit(1.21e6, "tons"),
  13991. name: "Front",
  13992. image: {
  13993. source: "./media/characters/sekvra/front.svg",
  13994. extra: 1193/1190,
  13995. bottom: 78/1271
  13996. }
  13997. },
  13998. side: {
  13999. height: math.unit(1450, "feet"),
  14000. weight: math.unit(1.21e6, "tons"),
  14001. name: "Side",
  14002. image: {
  14003. source: "./media/characters/sekvra/side.svg",
  14004. extra: 1193/1190,
  14005. bottom: 52/1245
  14006. }
  14007. },
  14008. back: {
  14009. height: math.unit(1450, "feet"),
  14010. weight: math.unit(1.21e6, "tons"),
  14011. name: "Back",
  14012. image: {
  14013. source: "./media/characters/sekvra/back.svg",
  14014. extra: 1219/1216,
  14015. bottom: 21/1240
  14016. }
  14017. },
  14018. frontClothed: {
  14019. height: math.unit(1450, "feet"),
  14020. weight: math.unit(1.21e6, "tons"),
  14021. name: "Front (Clothed)",
  14022. image: {
  14023. source: "./media/characters/sekvra/front-clothed.svg",
  14024. extra: 1192/1189,
  14025. bottom: 79/1271
  14026. }
  14027. },
  14028. },
  14029. [
  14030. {
  14031. name: "Macro",
  14032. height: math.unit(1450, "feet"),
  14033. default: true
  14034. },
  14035. {
  14036. name: "Megamacro",
  14037. height: math.unit(15000, "feet")
  14038. },
  14039. ]
  14040. ))
  14041. characterMakers.push(() => makeCharacter(
  14042. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14043. {
  14044. front: {
  14045. height: math.unit(6, "feet"),
  14046. weight: math.unit(150, "lb"),
  14047. name: "Front",
  14048. image: {
  14049. source: "./media/characters/carmine/front.svg",
  14050. extra: 1,
  14051. bottom: 0.035
  14052. }
  14053. },
  14054. frontArmor: {
  14055. height: math.unit(6, "feet"),
  14056. weight: math.unit(150, "lb"),
  14057. name: "Front (Armor)",
  14058. image: {
  14059. source: "./media/characters/carmine/front-armor.svg",
  14060. extra: 1,
  14061. bottom: 0.035
  14062. }
  14063. },
  14064. },
  14065. [
  14066. {
  14067. name: "Large",
  14068. height: math.unit(1, "mile")
  14069. },
  14070. {
  14071. name: "Huge",
  14072. height: math.unit(40, "miles"),
  14073. default: true
  14074. },
  14075. {
  14076. name: "Colossal",
  14077. height: math.unit(2500, "miles")
  14078. },
  14079. ]
  14080. ))
  14081. characterMakers.push(() => makeCharacter(
  14082. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14083. {
  14084. front: {
  14085. height: math.unit(6, "feet"),
  14086. weight: math.unit(150, "lb"),
  14087. name: "Front",
  14088. image: {
  14089. source: "./media/characters/elyssia/front.svg",
  14090. extra: 2201 / 2035,
  14091. bottom: 0.05
  14092. }
  14093. },
  14094. frontClothed: {
  14095. height: math.unit(6, "feet"),
  14096. weight: math.unit(150, "lb"),
  14097. name: "Front (Clothed)",
  14098. image: {
  14099. source: "./media/characters/elyssia/front-clothed.svg",
  14100. extra: 2201 / 2035,
  14101. bottom: 0.05
  14102. }
  14103. },
  14104. back: {
  14105. height: math.unit(6, "feet"),
  14106. weight: math.unit(150, "lb"),
  14107. name: "Back",
  14108. image: {
  14109. source: "./media/characters/elyssia/back.svg",
  14110. extra: 2201 / 2035,
  14111. bottom: 0.013
  14112. }
  14113. },
  14114. },
  14115. [
  14116. {
  14117. name: "Smaller",
  14118. height: math.unit(150, "feet")
  14119. },
  14120. {
  14121. name: "Standard",
  14122. height: math.unit(1400, "feet"),
  14123. default: true
  14124. },
  14125. {
  14126. name: "Distracted",
  14127. height: math.unit(15000, "feet")
  14128. },
  14129. ]
  14130. ))
  14131. characterMakers.push(() => makeCharacter(
  14132. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  14133. {
  14134. front: {
  14135. height: math.unit(7 + 4/12, "feet"),
  14136. weight: math.unit(690, "lb"),
  14137. name: "Front",
  14138. image: {
  14139. source: "./media/characters/geno-maxwell/front.svg",
  14140. extra: 984/856,
  14141. bottom: 87/1071
  14142. }
  14143. },
  14144. back: {
  14145. height: math.unit(7 + 4/12, "feet"),
  14146. weight: math.unit(690, "lb"),
  14147. name: "Back",
  14148. image: {
  14149. source: "./media/characters/geno-maxwell/back.svg",
  14150. extra: 981/854,
  14151. bottom: 57/1038
  14152. }
  14153. },
  14154. frontCostume: {
  14155. height: math.unit(7 + 4/12, "feet"),
  14156. weight: math.unit(690, "lb"),
  14157. name: "Front (Costume)",
  14158. image: {
  14159. source: "./media/characters/geno-maxwell/front-costume.svg",
  14160. extra: 984/856,
  14161. bottom: 87/1071
  14162. }
  14163. },
  14164. backcostume: {
  14165. height: math.unit(7 + 4/12, "feet"),
  14166. weight: math.unit(690, "lb"),
  14167. name: "Back (Costume)",
  14168. image: {
  14169. source: "./media/characters/geno-maxwell/back-costume.svg",
  14170. extra: 981/854,
  14171. bottom: 57/1038
  14172. }
  14173. },
  14174. },
  14175. [
  14176. {
  14177. name: "Micro",
  14178. height: math.unit(3, "inches")
  14179. },
  14180. {
  14181. name: "Normal",
  14182. height: math.unit(7 + 4 / 12, "feet"),
  14183. default: true
  14184. },
  14185. {
  14186. name: "Macro",
  14187. height: math.unit(220, "feet")
  14188. },
  14189. {
  14190. name: "Megamacro",
  14191. height: math.unit(11, "miles")
  14192. },
  14193. ]
  14194. ))
  14195. characterMakers.push(() => makeCharacter(
  14196. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  14197. {
  14198. front: {
  14199. height: math.unit(7 + 4/12, "feet"),
  14200. weight: math.unit(750, "lb"),
  14201. name: "Front",
  14202. image: {
  14203. source: "./media/characters/regena-maxwell/front.svg",
  14204. extra: 984/856,
  14205. bottom: 87/1071
  14206. }
  14207. },
  14208. back: {
  14209. height: math.unit(7 + 4/12, "feet"),
  14210. weight: math.unit(750, "lb"),
  14211. name: "Back",
  14212. image: {
  14213. source: "./media/characters/regena-maxwell/back.svg",
  14214. extra: 981/854,
  14215. bottom: 57/1038
  14216. }
  14217. },
  14218. frontCostume: {
  14219. height: math.unit(7 + 4/12, "feet"),
  14220. weight: math.unit(750, "lb"),
  14221. name: "Front (Costume)",
  14222. image: {
  14223. source: "./media/characters/regena-maxwell/front-costume.svg",
  14224. extra: 984/856,
  14225. bottom: 87/1071
  14226. }
  14227. },
  14228. backcostume: {
  14229. height: math.unit(7 + 4/12, "feet"),
  14230. weight: math.unit(750, "lb"),
  14231. name: "Back (Costume)",
  14232. image: {
  14233. source: "./media/characters/regena-maxwell/back-costume.svg",
  14234. extra: 981/854,
  14235. bottom: 57/1038
  14236. }
  14237. },
  14238. },
  14239. [
  14240. {
  14241. name: "Normal",
  14242. height: math.unit(7 + 4 / 12, "feet"),
  14243. default: true
  14244. },
  14245. {
  14246. name: "Macro",
  14247. height: math.unit(220, "feet")
  14248. },
  14249. {
  14250. name: "Megamacro",
  14251. height: math.unit(11, "miles")
  14252. },
  14253. ]
  14254. ))
  14255. characterMakers.push(() => makeCharacter(
  14256. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  14257. {
  14258. front: {
  14259. height: math.unit(6, "feet"),
  14260. weight: math.unit(150, "lb"),
  14261. name: "Front",
  14262. image: {
  14263. source: "./media/characters/x-gliding-dragon-x/front.svg",
  14264. extra: 860 / 690,
  14265. bottom: 0.03
  14266. }
  14267. },
  14268. },
  14269. [
  14270. {
  14271. name: "Normal",
  14272. height: math.unit(1.7, "meters"),
  14273. default: true
  14274. },
  14275. ]
  14276. ))
  14277. characterMakers.push(() => makeCharacter(
  14278. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  14279. {
  14280. front: {
  14281. height: math.unit(6, "feet"),
  14282. weight: math.unit(150, "lb"),
  14283. name: "Front",
  14284. image: {
  14285. source: "./media/characters/quilly/front.svg",
  14286. extra: 890 / 776
  14287. }
  14288. },
  14289. },
  14290. [
  14291. {
  14292. name: "Gigamacro",
  14293. height: math.unit(404090, "miles"),
  14294. default: true
  14295. },
  14296. ]
  14297. ))
  14298. characterMakers.push(() => makeCharacter(
  14299. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  14300. {
  14301. front: {
  14302. height: math.unit(7 + 8 / 12, "feet"),
  14303. weight: math.unit(350, "lb"),
  14304. name: "Front",
  14305. image: {
  14306. source: "./media/characters/tempest/front.svg",
  14307. extra: 1175 / 1086,
  14308. bottom: 0.02
  14309. }
  14310. },
  14311. },
  14312. [
  14313. {
  14314. name: "Normal",
  14315. height: math.unit(7 + 8 / 12, "feet"),
  14316. default: true
  14317. },
  14318. ]
  14319. ))
  14320. characterMakers.push(() => makeCharacter(
  14321. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  14322. {
  14323. side: {
  14324. height: math.unit(4 + 5 / 12, "feet"),
  14325. weight: math.unit(80, "lb"),
  14326. name: "Side",
  14327. image: {
  14328. source: "./media/characters/rodger/side.svg",
  14329. extra: 1235 / 1118
  14330. }
  14331. },
  14332. },
  14333. [
  14334. {
  14335. name: "Micro",
  14336. height: math.unit(1, "inch")
  14337. },
  14338. {
  14339. name: "Normal",
  14340. height: math.unit(4 + 5 / 12, "feet"),
  14341. default: true
  14342. },
  14343. {
  14344. name: "Macro",
  14345. height: math.unit(120, "feet")
  14346. },
  14347. ]
  14348. ))
  14349. characterMakers.push(() => makeCharacter(
  14350. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14351. {
  14352. front: {
  14353. height: math.unit(6, "feet"),
  14354. weight: math.unit(150, "lb"),
  14355. name: "Front",
  14356. image: {
  14357. source: "./media/characters/danyel/front.svg",
  14358. extra: 1185 / 1123,
  14359. bottom: 0.05
  14360. }
  14361. },
  14362. },
  14363. [
  14364. {
  14365. name: "Shrunken",
  14366. height: math.unit(0.5, "mm")
  14367. },
  14368. {
  14369. name: "Micro",
  14370. height: math.unit(1, "mm"),
  14371. default: true
  14372. },
  14373. {
  14374. name: "Upsized",
  14375. height: math.unit(5 + 5 / 12, "feet")
  14376. },
  14377. ]
  14378. ))
  14379. characterMakers.push(() => makeCharacter(
  14380. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14381. {
  14382. front: {
  14383. height: math.unit(5 + 6 / 12, "feet"),
  14384. weight: math.unit(200, "lb"),
  14385. name: "Front",
  14386. image: {
  14387. source: "./media/characters/vivian-bijoux/front.svg",
  14388. extra: 1217/1209,
  14389. bottom: 76/1293
  14390. }
  14391. },
  14392. back: {
  14393. height: math.unit(5 + 6 / 12, "feet"),
  14394. weight: math.unit(200, "lb"),
  14395. name: "Back",
  14396. image: {
  14397. source: "./media/characters/vivian-bijoux/back.svg",
  14398. extra: 1214/1208,
  14399. bottom: 51/1265
  14400. }
  14401. },
  14402. dressed: {
  14403. height: math.unit(5 + 6 / 12, "feet"),
  14404. weight: math.unit(200, "lb"),
  14405. name: "Dressed",
  14406. image: {
  14407. source: "./media/characters/vivian-bijoux/dressed.svg",
  14408. extra: 1217/1209,
  14409. bottom: 76/1293
  14410. }
  14411. },
  14412. },
  14413. [
  14414. {
  14415. name: "Normal",
  14416. height: math.unit(5 + 6 / 12, "feet"),
  14417. default: true
  14418. },
  14419. {
  14420. name: "Bad Dream",
  14421. height: math.unit(500, "feet")
  14422. },
  14423. {
  14424. name: "Nightmare",
  14425. height: math.unit(500, "miles")
  14426. },
  14427. ]
  14428. ))
  14429. characterMakers.push(() => makeCharacter(
  14430. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14431. {
  14432. front: {
  14433. height: math.unit(6 + 1 / 12, "feet"),
  14434. weight: math.unit(260, "lb"),
  14435. name: "Front",
  14436. image: {
  14437. source: "./media/characters/zeta/front.svg",
  14438. extra: 1968 / 1889,
  14439. bottom: 0.06
  14440. }
  14441. },
  14442. back: {
  14443. height: math.unit(6 + 1 / 12, "feet"),
  14444. weight: math.unit(260, "lb"),
  14445. name: "Back",
  14446. image: {
  14447. source: "./media/characters/zeta/back.svg",
  14448. extra: 1944 / 1858,
  14449. bottom: 0.03
  14450. }
  14451. },
  14452. hand: {
  14453. height: math.unit(1.112, "feet"),
  14454. name: "Hand",
  14455. image: {
  14456. source: "./media/characters/zeta/hand.svg"
  14457. }
  14458. },
  14459. foot: {
  14460. height: math.unit(1.48, "feet"),
  14461. name: "Foot",
  14462. image: {
  14463. source: "./media/characters/zeta/foot.svg"
  14464. }
  14465. },
  14466. },
  14467. [
  14468. {
  14469. name: "Micro",
  14470. height: math.unit(6, "inches")
  14471. },
  14472. {
  14473. name: "Normal",
  14474. height: math.unit(6 + 1 / 12, "feet"),
  14475. default: true
  14476. },
  14477. {
  14478. name: "Macro",
  14479. height: math.unit(20, "feet")
  14480. },
  14481. ]
  14482. ))
  14483. characterMakers.push(() => makeCharacter(
  14484. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14485. {
  14486. front: {
  14487. height: math.unit(6, "feet"),
  14488. weight: math.unit(150, "lb"),
  14489. name: "Front",
  14490. image: {
  14491. source: "./media/characters/jamie-larsen/front.svg",
  14492. extra: 962 / 933,
  14493. bottom: 0.02
  14494. }
  14495. },
  14496. back: {
  14497. height: math.unit(6, "feet"),
  14498. weight: math.unit(150, "lb"),
  14499. name: "Back",
  14500. image: {
  14501. source: "./media/characters/jamie-larsen/back.svg",
  14502. extra: 997 / 946
  14503. }
  14504. },
  14505. },
  14506. [
  14507. {
  14508. name: "Macro",
  14509. height: math.unit(28 + 7 / 12, "feet"),
  14510. default: true
  14511. },
  14512. {
  14513. name: "Macro+",
  14514. height: math.unit(180, "feet")
  14515. },
  14516. {
  14517. name: "Megamacro",
  14518. height: math.unit(10, "miles")
  14519. },
  14520. {
  14521. name: "Gigamacro",
  14522. height: math.unit(200000, "miles")
  14523. },
  14524. ]
  14525. ))
  14526. characterMakers.push(() => makeCharacter(
  14527. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14528. {
  14529. front: {
  14530. height: math.unit(6, "feet"),
  14531. weight: math.unit(120, "lb"),
  14532. name: "Front",
  14533. image: {
  14534. source: "./media/characters/vance/front.svg",
  14535. extra: 1980 / 1890,
  14536. bottom: 0.09
  14537. }
  14538. },
  14539. back: {
  14540. height: math.unit(6, "feet"),
  14541. weight: math.unit(120, "lb"),
  14542. name: "Back",
  14543. image: {
  14544. source: "./media/characters/vance/back.svg",
  14545. extra: 2081 / 1994,
  14546. bottom: 0.014
  14547. }
  14548. },
  14549. hand: {
  14550. height: math.unit(0.88, "feet"),
  14551. name: "Hand",
  14552. image: {
  14553. source: "./media/characters/vance/hand.svg"
  14554. }
  14555. },
  14556. foot: {
  14557. height: math.unit(0.64, "feet"),
  14558. name: "Foot",
  14559. image: {
  14560. source: "./media/characters/vance/foot.svg"
  14561. }
  14562. },
  14563. },
  14564. [
  14565. {
  14566. name: "Small",
  14567. height: math.unit(90, "feet"),
  14568. default: true
  14569. },
  14570. {
  14571. name: "Macro",
  14572. height: math.unit(100, "meters")
  14573. },
  14574. {
  14575. name: "Megamacro",
  14576. height: math.unit(15, "miles")
  14577. },
  14578. ]
  14579. ))
  14580. characterMakers.push(() => makeCharacter(
  14581. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14582. {
  14583. front: {
  14584. height: math.unit(6, "feet"),
  14585. weight: math.unit(180, "lb"),
  14586. name: "Front",
  14587. image: {
  14588. source: "./media/characters/xochitl/front.svg",
  14589. extra: 2297 / 2261,
  14590. bottom: 0.065
  14591. }
  14592. },
  14593. back: {
  14594. height: math.unit(6, "feet"),
  14595. weight: math.unit(180, "lb"),
  14596. name: "Back",
  14597. image: {
  14598. source: "./media/characters/xochitl/back.svg",
  14599. extra: 2386 / 2354,
  14600. bottom: 0.01
  14601. }
  14602. },
  14603. foot: {
  14604. height: math.unit(6 / 5 * 1.15, "feet"),
  14605. weight: math.unit(150, "lb"),
  14606. name: "Foot",
  14607. image: {
  14608. source: "./media/characters/xochitl/foot.svg"
  14609. }
  14610. },
  14611. },
  14612. [
  14613. {
  14614. name: "Macro",
  14615. height: math.unit(80, "feet")
  14616. },
  14617. {
  14618. name: "Macro+",
  14619. height: math.unit(400, "feet"),
  14620. default: true
  14621. },
  14622. {
  14623. name: "Gigamacro",
  14624. height: math.unit(80000, "miles")
  14625. },
  14626. {
  14627. name: "Gigamacro+",
  14628. height: math.unit(400000, "miles")
  14629. },
  14630. {
  14631. name: "Teramacro",
  14632. height: math.unit(300, "AU")
  14633. },
  14634. ]
  14635. ))
  14636. characterMakers.push(() => makeCharacter(
  14637. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14638. {
  14639. front: {
  14640. height: math.unit(6, "feet"),
  14641. weight: math.unit(150, "lb"),
  14642. name: "Front",
  14643. image: {
  14644. source: "./media/characters/vincent/front.svg",
  14645. extra: 1130 / 1080,
  14646. bottom: 0.055
  14647. }
  14648. },
  14649. beak: {
  14650. height: math.unit(6 * 0.1, "feet"),
  14651. name: "Beak",
  14652. image: {
  14653. source: "./media/characters/vincent/beak.svg"
  14654. }
  14655. },
  14656. hand: {
  14657. height: math.unit(6 * 0.85, "feet"),
  14658. weight: math.unit(150, "lb"),
  14659. name: "Hand",
  14660. image: {
  14661. source: "./media/characters/vincent/hand.svg"
  14662. }
  14663. },
  14664. foot: {
  14665. height: math.unit(6 * 0.19, "feet"),
  14666. weight: math.unit(150, "lb"),
  14667. name: "Foot",
  14668. image: {
  14669. source: "./media/characters/vincent/foot.svg"
  14670. }
  14671. },
  14672. },
  14673. [
  14674. {
  14675. name: "Base",
  14676. height: math.unit(6 + 5 / 12, "feet"),
  14677. default: true
  14678. },
  14679. {
  14680. name: "Macro",
  14681. height: math.unit(300, "feet")
  14682. },
  14683. {
  14684. name: "Megamacro",
  14685. height: math.unit(2, "miles")
  14686. },
  14687. {
  14688. name: "Gigamacro",
  14689. height: math.unit(1000, "miles")
  14690. },
  14691. ]
  14692. ))
  14693. characterMakers.push(() => makeCharacter(
  14694. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14695. {
  14696. front: {
  14697. height: math.unit(2, "meters"),
  14698. weight: math.unit(500, "kg"),
  14699. name: "Front",
  14700. image: {
  14701. source: "./media/characters/coatl/front.svg",
  14702. extra: 3948 / 3500,
  14703. bottom: 0.082
  14704. }
  14705. },
  14706. },
  14707. [
  14708. {
  14709. name: "Normal",
  14710. height: math.unit(4, "meters")
  14711. },
  14712. {
  14713. name: "Macro",
  14714. height: math.unit(100, "meters"),
  14715. default: true
  14716. },
  14717. {
  14718. name: "Macro+",
  14719. height: math.unit(300, "meters")
  14720. },
  14721. {
  14722. name: "Megamacro",
  14723. height: math.unit(3, "gigameters")
  14724. },
  14725. {
  14726. name: "Megamacro+",
  14727. height: math.unit(300, "terameters")
  14728. },
  14729. {
  14730. name: "Megamacro++",
  14731. height: math.unit(3, "lightyears")
  14732. },
  14733. ]
  14734. ))
  14735. characterMakers.push(() => makeCharacter(
  14736. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14737. {
  14738. front: {
  14739. height: math.unit(6, "feet"),
  14740. weight: math.unit(50, "kg"),
  14741. name: "front",
  14742. image: {
  14743. source: "./media/characters/shiroryu/front.svg",
  14744. extra: 1990 / 1935
  14745. }
  14746. },
  14747. },
  14748. [
  14749. {
  14750. name: "Mortal Mingling",
  14751. height: math.unit(3, "meters")
  14752. },
  14753. {
  14754. name: "Kaiju-ish",
  14755. height: math.unit(250, "meters")
  14756. },
  14757. {
  14758. name: "Somewhat Godly",
  14759. height: math.unit(400, "km"),
  14760. default: true
  14761. },
  14762. {
  14763. name: "Planetary",
  14764. height: math.unit(300, "megameters")
  14765. },
  14766. {
  14767. name: "Galaxy-dwarfing",
  14768. height: math.unit(450, "kiloparsecs")
  14769. },
  14770. {
  14771. name: "Universe Eater",
  14772. height: math.unit(150, "gigaparsecs")
  14773. },
  14774. {
  14775. name: "Almost Immeasurable",
  14776. height: math.unit(1.3e266, "yottaparsecs")
  14777. },
  14778. ]
  14779. ))
  14780. characterMakers.push(() => makeCharacter(
  14781. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14782. {
  14783. front: {
  14784. height: math.unit(6, "feet"),
  14785. weight: math.unit(150, "lb"),
  14786. name: "Front",
  14787. image: {
  14788. source: "./media/characters/umeko/front.svg",
  14789. extra: 1,
  14790. bottom: 0.019
  14791. }
  14792. },
  14793. frontArmored: {
  14794. height: math.unit(6, "feet"),
  14795. weight: math.unit(150, "lb"),
  14796. name: "Front (Armored)",
  14797. image: {
  14798. source: "./media/characters/umeko/front-armored.svg",
  14799. extra: 1,
  14800. bottom: 0.021
  14801. }
  14802. },
  14803. },
  14804. [
  14805. {
  14806. name: "Macro",
  14807. height: math.unit(220, "feet"),
  14808. default: true
  14809. },
  14810. {
  14811. name: "Guardian Dragon",
  14812. height: math.unit(50, "miles")
  14813. },
  14814. {
  14815. name: "Cosmic",
  14816. height: math.unit(800000, "miles")
  14817. },
  14818. ]
  14819. ))
  14820. characterMakers.push(() => makeCharacter(
  14821. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14822. {
  14823. front: {
  14824. height: math.unit(6, "feet"),
  14825. weight: math.unit(150, "lb"),
  14826. name: "Front",
  14827. image: {
  14828. source: "./media/characters/cassidy/front.svg",
  14829. extra: 810/808,
  14830. bottom: 41/851
  14831. }
  14832. },
  14833. },
  14834. [
  14835. {
  14836. name: "Canon Height",
  14837. height: math.unit(120, "feet"),
  14838. default: true
  14839. },
  14840. {
  14841. name: "Macro+",
  14842. height: math.unit(400, "feet")
  14843. },
  14844. {
  14845. name: "Macro++",
  14846. height: math.unit(4000, "feet")
  14847. },
  14848. {
  14849. name: "Megamacro",
  14850. height: math.unit(3, "miles")
  14851. },
  14852. ]
  14853. ))
  14854. characterMakers.push(() => makeCharacter(
  14855. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14856. {
  14857. front: {
  14858. height: math.unit(6, "feet"),
  14859. weight: math.unit(150, "lb"),
  14860. name: "Front",
  14861. image: {
  14862. source: "./media/characters/isaac/front.svg",
  14863. extra: 896 / 815,
  14864. bottom: 0.11
  14865. }
  14866. },
  14867. },
  14868. [
  14869. {
  14870. name: "Human Size",
  14871. height: math.unit(8, "feet"),
  14872. default: true
  14873. },
  14874. {
  14875. name: "Macro",
  14876. height: math.unit(400, "feet")
  14877. },
  14878. {
  14879. name: "Megamacro",
  14880. height: math.unit(50, "miles")
  14881. },
  14882. {
  14883. name: "Canon Height",
  14884. height: math.unit(200, "AU")
  14885. },
  14886. ]
  14887. ))
  14888. characterMakers.push(() => makeCharacter(
  14889. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14890. {
  14891. front: {
  14892. height: math.unit(6, "feet"),
  14893. weight: math.unit(72, "kg"),
  14894. name: "Front",
  14895. image: {
  14896. source: "./media/characters/sleekit/front.svg",
  14897. extra: 4693 / 4487,
  14898. bottom: 0.012
  14899. }
  14900. },
  14901. },
  14902. [
  14903. {
  14904. name: "Minimum Height",
  14905. height: math.unit(10, "meters")
  14906. },
  14907. {
  14908. name: "Smaller",
  14909. height: math.unit(25, "meters")
  14910. },
  14911. {
  14912. name: "Larger",
  14913. height: math.unit(38, "meters"),
  14914. default: true
  14915. },
  14916. {
  14917. name: "Maximum height",
  14918. height: math.unit(100, "meters")
  14919. },
  14920. ]
  14921. ))
  14922. characterMakers.push(() => makeCharacter(
  14923. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14924. {
  14925. front: {
  14926. height: math.unit(6, "feet"),
  14927. weight: math.unit(150, "lb"),
  14928. name: "Front",
  14929. image: {
  14930. source: "./media/characters/nillia/front.svg",
  14931. extra: 2195 / 2037,
  14932. bottom: 0.005
  14933. }
  14934. },
  14935. back: {
  14936. height: math.unit(6, "feet"),
  14937. weight: math.unit(150, "lb"),
  14938. name: "Back",
  14939. image: {
  14940. source: "./media/characters/nillia/back.svg",
  14941. extra: 2195 / 2037,
  14942. bottom: 0.005
  14943. }
  14944. },
  14945. },
  14946. [
  14947. {
  14948. name: "Canon Height",
  14949. height: math.unit(489, "feet"),
  14950. default: true
  14951. }
  14952. ]
  14953. ))
  14954. characterMakers.push(() => makeCharacter(
  14955. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14956. {
  14957. front: {
  14958. height: math.unit(6, "feet"),
  14959. weight: math.unit(150, "lb"),
  14960. name: "Front",
  14961. image: {
  14962. source: "./media/characters/mesmyriza/front.svg",
  14963. extra: 2067 / 1784,
  14964. bottom: 0.035
  14965. }
  14966. },
  14967. foot: {
  14968. height: math.unit(6 / (250 / 35), "feet"),
  14969. name: "Foot",
  14970. image: {
  14971. source: "./media/characters/mesmyriza/foot.svg"
  14972. }
  14973. },
  14974. },
  14975. [
  14976. {
  14977. name: "Macro",
  14978. height: math.unit(457, "meters"),
  14979. default: true
  14980. },
  14981. {
  14982. name: "Megamacro",
  14983. height: math.unit(8, "megameters")
  14984. },
  14985. ]
  14986. ))
  14987. characterMakers.push(() => makeCharacter(
  14988. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14989. {
  14990. front: {
  14991. height: math.unit(6, "feet"),
  14992. weight: math.unit(250, "lb"),
  14993. name: "Front",
  14994. image: {
  14995. source: "./media/characters/saudade/front.svg",
  14996. extra: 1172 / 1139,
  14997. bottom: 0.035
  14998. }
  14999. },
  15000. },
  15001. [
  15002. {
  15003. name: "Micro",
  15004. height: math.unit(3, "inches")
  15005. },
  15006. {
  15007. name: "Normal",
  15008. height: math.unit(6, "feet"),
  15009. default: true
  15010. },
  15011. {
  15012. name: "Macro",
  15013. height: math.unit(50, "feet")
  15014. },
  15015. {
  15016. name: "Megamacro",
  15017. height: math.unit(2800, "feet")
  15018. },
  15019. ]
  15020. ))
  15021. characterMakers.push(() => makeCharacter(
  15022. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15023. {
  15024. front: {
  15025. height: math.unit(5 + 4 / 12, "feet"),
  15026. weight: math.unit(100, "lb"),
  15027. name: "Front",
  15028. image: {
  15029. source: "./media/characters/keireer/front.svg",
  15030. extra: 716 / 666,
  15031. bottom: 0.05
  15032. }
  15033. },
  15034. },
  15035. [
  15036. {
  15037. name: "Normal",
  15038. height: math.unit(5 + 4 / 12, "feet"),
  15039. default: true
  15040. },
  15041. ]
  15042. ))
  15043. characterMakers.push(() => makeCharacter(
  15044. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15045. {
  15046. front: {
  15047. height: math.unit(6, "feet"),
  15048. weight: math.unit(90, "kg"),
  15049. name: "Front",
  15050. image: {
  15051. source: "./media/characters/mirja/front.svg",
  15052. extra: 1789 / 1683,
  15053. bottom: 0.05
  15054. }
  15055. },
  15056. frontDressed: {
  15057. height: math.unit(6, "feet"),
  15058. weight: math.unit(90, "lb"),
  15059. name: "Front (Dressed)",
  15060. image: {
  15061. source: "./media/characters/mirja/front-dressed.svg",
  15062. extra: 1789 / 1683,
  15063. bottom: 0.05
  15064. }
  15065. },
  15066. back: {
  15067. height: math.unit(6, "feet"),
  15068. weight: math.unit(90, "lb"),
  15069. name: "Back",
  15070. image: {
  15071. source: "./media/characters/mirja/back.svg",
  15072. extra: 953 / 917,
  15073. bottom: 0.017
  15074. }
  15075. },
  15076. },
  15077. [
  15078. {
  15079. name: "\"Incognito\"",
  15080. height: math.unit(3, "meters")
  15081. },
  15082. {
  15083. name: "Strolling Size",
  15084. height: math.unit(15, "km")
  15085. },
  15086. {
  15087. name: "Larger Strolling Size",
  15088. height: math.unit(400, "km")
  15089. },
  15090. {
  15091. name: "Preferred Size",
  15092. height: math.unit(5000, "km")
  15093. },
  15094. {
  15095. name: "True Size",
  15096. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15097. default: true
  15098. },
  15099. ]
  15100. ))
  15101. characterMakers.push(() => makeCharacter(
  15102. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15103. {
  15104. front: {
  15105. height: math.unit(15, "feet"),
  15106. weight: math.unit(880, "kg"),
  15107. name: "Front",
  15108. image: {
  15109. source: "./media/characters/nightraver/front.svg",
  15110. extra: 2444 / 2160,
  15111. bottom: 0.027
  15112. }
  15113. },
  15114. back: {
  15115. height: math.unit(15, "feet"),
  15116. weight: math.unit(880, "kg"),
  15117. name: "Back",
  15118. image: {
  15119. source: "./media/characters/nightraver/back.svg",
  15120. extra: 2309 / 2180,
  15121. bottom: 0.005
  15122. }
  15123. },
  15124. sole: {
  15125. height: math.unit(2.878, "feet"),
  15126. name: "Sole",
  15127. image: {
  15128. source: "./media/characters/nightraver/sole.svg"
  15129. }
  15130. },
  15131. foot: {
  15132. height: math.unit(2.285, "feet"),
  15133. name: "Foot",
  15134. image: {
  15135. source: "./media/characters/nightraver/foot.svg"
  15136. }
  15137. },
  15138. maw: {
  15139. height: math.unit(2.67, "feet"),
  15140. name: "Maw",
  15141. image: {
  15142. source: "./media/characters/nightraver/maw.svg"
  15143. }
  15144. },
  15145. },
  15146. [
  15147. {
  15148. name: "Micro",
  15149. height: math.unit(1, "cm")
  15150. },
  15151. {
  15152. name: "Normal",
  15153. height: math.unit(15, "feet"),
  15154. default: true
  15155. },
  15156. {
  15157. name: "Macro",
  15158. height: math.unit(300, "feet")
  15159. },
  15160. {
  15161. name: "Megamacro",
  15162. height: math.unit(300, "miles")
  15163. },
  15164. {
  15165. name: "Gigamacro",
  15166. height: math.unit(10000, "miles")
  15167. },
  15168. ]
  15169. ))
  15170. characterMakers.push(() => makeCharacter(
  15171. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  15172. {
  15173. side: {
  15174. height: math.unit(2, "inches"),
  15175. weight: math.unit(5, "grams"),
  15176. name: "Side",
  15177. image: {
  15178. source: "./media/characters/arc/side.svg"
  15179. }
  15180. },
  15181. },
  15182. [
  15183. {
  15184. name: "Micro",
  15185. height: math.unit(2, "inches"),
  15186. default: true
  15187. },
  15188. ]
  15189. ))
  15190. characterMakers.push(() => makeCharacter(
  15191. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  15192. {
  15193. front: {
  15194. height: math.unit(1.1938, "meters"),
  15195. weight: math.unit(54, "kg"),
  15196. name: "Front",
  15197. image: {
  15198. source: "./media/characters/nebula-shahar/front.svg",
  15199. extra: 1642 / 1436,
  15200. bottom: 0.06
  15201. }
  15202. },
  15203. },
  15204. [
  15205. {
  15206. name: "Megamicro",
  15207. height: math.unit(0.3, "mm")
  15208. },
  15209. {
  15210. name: "Micro",
  15211. height: math.unit(3, "cm")
  15212. },
  15213. {
  15214. name: "Normal",
  15215. height: math.unit(138, "cm"),
  15216. default: true
  15217. },
  15218. {
  15219. name: "Macro",
  15220. height: math.unit(30, "m")
  15221. },
  15222. ]
  15223. ))
  15224. characterMakers.push(() => makeCharacter(
  15225. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  15226. {
  15227. front: {
  15228. height: math.unit(5.24, "feet"),
  15229. weight: math.unit(150, "lb"),
  15230. name: "Front",
  15231. image: {
  15232. source: "./media/characters/shayla/front.svg",
  15233. extra: 1512 / 1414,
  15234. bottom: 0.01
  15235. }
  15236. },
  15237. back: {
  15238. height: math.unit(5.24, "feet"),
  15239. weight: math.unit(150, "lb"),
  15240. name: "Back",
  15241. image: {
  15242. source: "./media/characters/shayla/back.svg",
  15243. extra: 1512 / 1414
  15244. }
  15245. },
  15246. hand: {
  15247. height: math.unit(0.7781496062992126, "feet"),
  15248. name: "Hand",
  15249. image: {
  15250. source: "./media/characters/shayla/hand.svg"
  15251. }
  15252. },
  15253. foot: {
  15254. height: math.unit(1.4206036745406823, "feet"),
  15255. name: "Foot",
  15256. image: {
  15257. source: "./media/characters/shayla/foot.svg"
  15258. }
  15259. },
  15260. },
  15261. [
  15262. {
  15263. name: "Micro",
  15264. height: math.unit(0.32, "feet")
  15265. },
  15266. {
  15267. name: "Normal",
  15268. height: math.unit(5.24, "feet"),
  15269. default: true
  15270. },
  15271. {
  15272. name: "Macro",
  15273. height: math.unit(492.12, "feet")
  15274. },
  15275. {
  15276. name: "Megamacro",
  15277. height: math.unit(186.41, "miles")
  15278. },
  15279. ]
  15280. ))
  15281. characterMakers.push(() => makeCharacter(
  15282. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  15283. {
  15284. front: {
  15285. height: math.unit(2.2, "m"),
  15286. weight: math.unit(120, "kg"),
  15287. name: "Front",
  15288. image: {
  15289. source: "./media/characters/pia-jr/front.svg",
  15290. extra: 1000 / 970,
  15291. bottom: 0.035
  15292. }
  15293. },
  15294. hand: {
  15295. height: math.unit(0.759 * 7.21 / 6, "feet"),
  15296. name: "Hand",
  15297. image: {
  15298. source: "./media/characters/pia-jr/hand.svg"
  15299. }
  15300. },
  15301. paw: {
  15302. height: math.unit(1.185 * 7.21 / 6, "feet"),
  15303. name: "Paw",
  15304. image: {
  15305. source: "./media/characters/pia-jr/paw.svg"
  15306. }
  15307. },
  15308. },
  15309. [
  15310. {
  15311. name: "Micro",
  15312. height: math.unit(1.2, "cm")
  15313. },
  15314. {
  15315. name: "Normal",
  15316. height: math.unit(2.2, "m"),
  15317. default: true
  15318. },
  15319. {
  15320. name: "Macro",
  15321. height: math.unit(180, "m")
  15322. },
  15323. {
  15324. name: "Megamacro",
  15325. height: math.unit(420, "km")
  15326. },
  15327. ]
  15328. ))
  15329. characterMakers.push(() => makeCharacter(
  15330. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  15331. {
  15332. front: {
  15333. height: math.unit(2, "m"),
  15334. weight: math.unit(115, "kg"),
  15335. name: "Front",
  15336. image: {
  15337. source: "./media/characters/pia-sr/front.svg",
  15338. extra: 760 / 730,
  15339. bottom: 0.015
  15340. }
  15341. },
  15342. back: {
  15343. height: math.unit(2, "m"),
  15344. weight: math.unit(115, "kg"),
  15345. name: "Back",
  15346. image: {
  15347. source: "./media/characters/pia-sr/back.svg",
  15348. extra: 760 / 730,
  15349. bottom: 0.01
  15350. }
  15351. },
  15352. hand: {
  15353. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15354. name: "Hand",
  15355. image: {
  15356. source: "./media/characters/pia-sr/hand.svg"
  15357. }
  15358. },
  15359. foot: {
  15360. height: math.unit(1.83, "feet"),
  15361. name: "Foot",
  15362. image: {
  15363. source: "./media/characters/pia-sr/foot.svg"
  15364. }
  15365. },
  15366. },
  15367. [
  15368. {
  15369. name: "Micro",
  15370. height: math.unit(88, "mm")
  15371. },
  15372. {
  15373. name: "Normal",
  15374. height: math.unit(2, "m"),
  15375. default: true
  15376. },
  15377. {
  15378. name: "Macro",
  15379. height: math.unit(200, "m")
  15380. },
  15381. {
  15382. name: "Megamacro",
  15383. height: math.unit(420, "km")
  15384. },
  15385. ]
  15386. ))
  15387. characterMakers.push(() => makeCharacter(
  15388. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15389. {
  15390. front: {
  15391. height: math.unit(8 + 2 / 12, "feet"),
  15392. weight: math.unit(300, "lb"),
  15393. name: "Front",
  15394. image: {
  15395. source: "./media/characters/kibibyte/front.svg",
  15396. extra: 2221 / 2098,
  15397. bottom: 0.04
  15398. }
  15399. },
  15400. },
  15401. [
  15402. {
  15403. name: "Normal",
  15404. height: math.unit(8 + 2 / 12, "feet"),
  15405. default: true
  15406. },
  15407. {
  15408. name: "Socialable Macro",
  15409. height: math.unit(50, "feet")
  15410. },
  15411. {
  15412. name: "Macro",
  15413. height: math.unit(300, "feet")
  15414. },
  15415. {
  15416. name: "Megamacro",
  15417. height: math.unit(500, "miles")
  15418. },
  15419. ]
  15420. ))
  15421. characterMakers.push(() => makeCharacter(
  15422. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15423. {
  15424. front: {
  15425. height: math.unit(6, "feet"),
  15426. weight: math.unit(150, "lb"),
  15427. name: "Front",
  15428. image: {
  15429. source: "./media/characters/felix/front.svg",
  15430. extra: 762 / 722,
  15431. bottom: 0.02
  15432. }
  15433. },
  15434. frontClothed: {
  15435. height: math.unit(6, "feet"),
  15436. weight: math.unit(150, "lb"),
  15437. name: "Front (Clothed)",
  15438. image: {
  15439. source: "./media/characters/felix/front-clothed.svg",
  15440. extra: 762 / 722,
  15441. bottom: 0.02
  15442. }
  15443. },
  15444. },
  15445. [
  15446. {
  15447. name: "Normal",
  15448. height: math.unit(6 + 8 / 12, "feet"),
  15449. default: true
  15450. },
  15451. {
  15452. name: "Macro",
  15453. height: math.unit(2600, "feet")
  15454. },
  15455. {
  15456. name: "Megamacro",
  15457. height: math.unit(450, "miles")
  15458. },
  15459. ]
  15460. ))
  15461. characterMakers.push(() => makeCharacter(
  15462. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15463. {
  15464. front: {
  15465. height: math.unit(6 + 1 / 12, "feet"),
  15466. weight: math.unit(250, "lb"),
  15467. name: "Front",
  15468. image: {
  15469. source: "./media/characters/tobo/front.svg",
  15470. extra: 608 / 586,
  15471. bottom: 0.023
  15472. }
  15473. },
  15474. back: {
  15475. height: math.unit(6 + 1 / 12, "feet"),
  15476. weight: math.unit(250, "lb"),
  15477. name: "Back",
  15478. image: {
  15479. source: "./media/characters/tobo/back.svg",
  15480. extra: 608 / 586
  15481. }
  15482. },
  15483. },
  15484. [
  15485. {
  15486. name: "Nano",
  15487. height: math.unit(2, "nm")
  15488. },
  15489. {
  15490. name: "Megamicro",
  15491. height: math.unit(0.1, "mm")
  15492. },
  15493. {
  15494. name: "Micro",
  15495. height: math.unit(1, "inch"),
  15496. default: true
  15497. },
  15498. {
  15499. name: "Human-sized",
  15500. height: math.unit(6 + 1 / 12, "feet")
  15501. },
  15502. {
  15503. name: "Macro",
  15504. height: math.unit(250, "feet")
  15505. },
  15506. {
  15507. name: "Megamacro",
  15508. height: math.unit(75, "miles")
  15509. },
  15510. {
  15511. name: "Texas-sized",
  15512. height: math.unit(750, "miles")
  15513. },
  15514. {
  15515. name: "Teramacro",
  15516. height: math.unit(50000, "miles")
  15517. },
  15518. ]
  15519. ))
  15520. characterMakers.push(() => makeCharacter(
  15521. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15522. {
  15523. front: {
  15524. height: math.unit(6, "feet"),
  15525. weight: math.unit(269, "lb"),
  15526. name: "Front",
  15527. image: {
  15528. source: "./media/characters/danny-kapowsky/front.svg",
  15529. extra: 766 / 736,
  15530. bottom: 0.044
  15531. }
  15532. },
  15533. back: {
  15534. height: math.unit(6, "feet"),
  15535. weight: math.unit(269, "lb"),
  15536. name: "Back",
  15537. image: {
  15538. source: "./media/characters/danny-kapowsky/back.svg",
  15539. extra: 797 / 760,
  15540. bottom: 0.025
  15541. }
  15542. },
  15543. },
  15544. [
  15545. {
  15546. name: "Macro",
  15547. height: math.unit(150, "feet"),
  15548. default: true
  15549. },
  15550. {
  15551. name: "Macro+",
  15552. height: math.unit(200, "feet")
  15553. },
  15554. {
  15555. name: "Macro++",
  15556. height: math.unit(300, "feet")
  15557. },
  15558. {
  15559. name: "Macro+++",
  15560. height: math.unit(400, "feet")
  15561. },
  15562. ]
  15563. ))
  15564. characterMakers.push(() => makeCharacter(
  15565. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15566. {
  15567. side: {
  15568. height: math.unit(6, "feet"),
  15569. weight: math.unit(170, "lb"),
  15570. name: "Side",
  15571. image: {
  15572. source: "./media/characters/finn/side.svg",
  15573. extra: 1953 / 1807,
  15574. bottom: 0.057
  15575. }
  15576. },
  15577. },
  15578. [
  15579. {
  15580. name: "Megamacro",
  15581. height: math.unit(14445, "feet"),
  15582. default: true
  15583. },
  15584. ]
  15585. ))
  15586. characterMakers.push(() => makeCharacter(
  15587. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15588. {
  15589. front: {
  15590. height: math.unit(5 + 6 / 12, "feet"),
  15591. weight: math.unit(125, "lb"),
  15592. name: "Front",
  15593. image: {
  15594. source: "./media/characters/roy/front.svg",
  15595. extra: 1,
  15596. bottom: 0.11
  15597. }
  15598. },
  15599. },
  15600. [
  15601. {
  15602. name: "Micro",
  15603. height: math.unit(3, "inches"),
  15604. default: true
  15605. },
  15606. {
  15607. name: "Normal",
  15608. height: math.unit(5 + 6 / 12, "feet")
  15609. },
  15610. {
  15611. name: "Lesser Macro",
  15612. height: math.unit(60, "feet")
  15613. },
  15614. {
  15615. name: "Greater Macro",
  15616. height: math.unit(120, "feet")
  15617. },
  15618. ]
  15619. ))
  15620. characterMakers.push(() => makeCharacter(
  15621. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15622. {
  15623. front: {
  15624. height: math.unit(6, "feet"),
  15625. weight: math.unit(100, "lb"),
  15626. name: "Front",
  15627. image: {
  15628. source: "./media/characters/aevsivs/front.svg",
  15629. extra: 1,
  15630. bottom: 0.03
  15631. }
  15632. },
  15633. back: {
  15634. height: math.unit(6, "feet"),
  15635. weight: math.unit(100, "lb"),
  15636. name: "Back",
  15637. image: {
  15638. source: "./media/characters/aevsivs/back.svg"
  15639. }
  15640. },
  15641. },
  15642. [
  15643. {
  15644. name: "Micro",
  15645. height: math.unit(2, "inches"),
  15646. default: true
  15647. },
  15648. {
  15649. name: "Normal",
  15650. height: math.unit(5, "feet")
  15651. },
  15652. ]
  15653. ))
  15654. characterMakers.push(() => makeCharacter(
  15655. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15656. {
  15657. front: {
  15658. height: math.unit(5 + 7 / 12, "feet"),
  15659. weight: math.unit(159, "lb"),
  15660. name: "Front",
  15661. image: {
  15662. source: "./media/characters/hildegard/front.svg",
  15663. extra: 289 / 269,
  15664. bottom: 7.63 / 297.8
  15665. }
  15666. },
  15667. back: {
  15668. height: math.unit(5 + 7 / 12, "feet"),
  15669. weight: math.unit(159, "lb"),
  15670. name: "Back",
  15671. image: {
  15672. source: "./media/characters/hildegard/back.svg",
  15673. extra: 280 / 260,
  15674. bottom: 2.3 / 282
  15675. }
  15676. },
  15677. },
  15678. [
  15679. {
  15680. name: "Normal",
  15681. height: math.unit(5 + 7 / 12, "feet"),
  15682. default: true
  15683. },
  15684. ]
  15685. ))
  15686. characterMakers.push(() => makeCharacter(
  15687. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15688. {
  15689. bernard: {
  15690. height: math.unit(2 + 7 / 12, "feet"),
  15691. weight: math.unit(66, "lb"),
  15692. name: "Bernard",
  15693. rename: true,
  15694. image: {
  15695. source: "./media/characters/bernard-wilder/bernard.svg",
  15696. extra: 192 / 128,
  15697. bottom: 0.05
  15698. }
  15699. },
  15700. wilder: {
  15701. height: math.unit(5 + 8 / 12, "feet"),
  15702. weight: math.unit(143, "lb"),
  15703. name: "Wilder",
  15704. rename: true,
  15705. image: {
  15706. source: "./media/characters/bernard-wilder/wilder.svg",
  15707. extra: 361 / 312,
  15708. bottom: 0.02
  15709. }
  15710. },
  15711. },
  15712. [
  15713. {
  15714. name: "Normal",
  15715. height: math.unit(2 + 7 / 12, "feet"),
  15716. default: true
  15717. },
  15718. ]
  15719. ))
  15720. characterMakers.push(() => makeCharacter(
  15721. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15722. {
  15723. anthro: {
  15724. height: math.unit(6 + 1 / 12, "feet"),
  15725. weight: math.unit(155, "lb"),
  15726. name: "Anthro",
  15727. image: {
  15728. source: "./media/characters/hearth/anthro.svg",
  15729. extra: 1178/1136,
  15730. bottom: 28/1206
  15731. }
  15732. },
  15733. feral: {
  15734. height: math.unit(3.78, "feet"),
  15735. weight: math.unit(35, "kg"),
  15736. name: "Feral",
  15737. image: {
  15738. source: "./media/characters/hearth/feral.svg",
  15739. extra: 153 / 135,
  15740. bottom: 0.03
  15741. }
  15742. },
  15743. },
  15744. [
  15745. {
  15746. name: "Normal",
  15747. height: math.unit(6 + 1 / 12, "feet"),
  15748. default: true
  15749. },
  15750. ]
  15751. ))
  15752. characterMakers.push(() => makeCharacter(
  15753. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15754. {
  15755. front: {
  15756. height: math.unit(6, "feet"),
  15757. weight: math.unit(182, "lb"),
  15758. name: "Front",
  15759. image: {
  15760. source: "./media/characters/ingrid/front.svg",
  15761. extra: 294 / 268,
  15762. bottom: 0.027
  15763. }
  15764. },
  15765. },
  15766. [
  15767. {
  15768. name: "Normal",
  15769. height: math.unit(6, "feet"),
  15770. default: true
  15771. },
  15772. ]
  15773. ))
  15774. characterMakers.push(() => makeCharacter(
  15775. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15776. {
  15777. eevee: {
  15778. height: math.unit(2 + 10 / 12, "feet"),
  15779. weight: math.unit(86, "lb"),
  15780. name: "Malgam",
  15781. image: {
  15782. source: "./media/characters/malgam/eevee.svg",
  15783. extra: 952/784,
  15784. bottom: 38/990
  15785. }
  15786. },
  15787. sylveon: {
  15788. height: math.unit(4, "feet"),
  15789. weight: math.unit(101, "lb"),
  15790. name: "Future Malgam",
  15791. rename: true,
  15792. image: {
  15793. source: "./media/characters/malgam/sylveon.svg",
  15794. extra: 371 / 325,
  15795. bottom: 0.015
  15796. }
  15797. },
  15798. gigantamax: {
  15799. height: math.unit(50, "feet"),
  15800. name: "Gigantamax Malgam",
  15801. rename: true,
  15802. image: {
  15803. source: "./media/characters/malgam/gigantamax.svg"
  15804. }
  15805. },
  15806. },
  15807. [
  15808. {
  15809. name: "Normal",
  15810. height: math.unit(2 + 10 / 12, "feet"),
  15811. default: true
  15812. },
  15813. ]
  15814. ))
  15815. characterMakers.push(() => makeCharacter(
  15816. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15817. {
  15818. front: {
  15819. height: math.unit(5 + 11 / 12, "feet"),
  15820. weight: math.unit(188, "lb"),
  15821. name: "Front",
  15822. image: {
  15823. source: "./media/characters/fleur/front.svg",
  15824. extra: 309 / 283,
  15825. bottom: 0.007
  15826. }
  15827. },
  15828. },
  15829. [
  15830. {
  15831. name: "Normal",
  15832. height: math.unit(5 + 11 / 12, "feet"),
  15833. default: true
  15834. },
  15835. ]
  15836. ))
  15837. characterMakers.push(() => makeCharacter(
  15838. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15839. {
  15840. front: {
  15841. height: math.unit(5 + 4 / 12, "feet"),
  15842. weight: math.unit(122, "lb"),
  15843. name: "Front",
  15844. image: {
  15845. source: "./media/characters/jude/front.svg",
  15846. extra: 288 / 273,
  15847. bottom: 0.03
  15848. }
  15849. },
  15850. },
  15851. [
  15852. {
  15853. name: "Normal",
  15854. height: math.unit(5 + 4 / 12, "feet"),
  15855. default: true
  15856. },
  15857. ]
  15858. ))
  15859. characterMakers.push(() => makeCharacter(
  15860. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15861. {
  15862. front: {
  15863. height: math.unit(5 + 11 / 12, "feet"),
  15864. weight: math.unit(190, "lb"),
  15865. name: "Front",
  15866. image: {
  15867. source: "./media/characters/seara/front.svg",
  15868. extra: 1,
  15869. bottom: 0.05
  15870. }
  15871. },
  15872. },
  15873. [
  15874. {
  15875. name: "Normal",
  15876. height: math.unit(5 + 11 / 12, "feet"),
  15877. default: true
  15878. },
  15879. ]
  15880. ))
  15881. characterMakers.push(() => makeCharacter(
  15882. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  15883. {
  15884. front: {
  15885. height: math.unit(16 + 5 / 12, "feet"),
  15886. weight: math.unit(524, "lb"),
  15887. name: "Front",
  15888. image: {
  15889. source: "./media/characters/caspian-lugia/front.svg",
  15890. extra: 1,
  15891. bottom: 0.04
  15892. }
  15893. },
  15894. },
  15895. [
  15896. {
  15897. name: "Normal",
  15898. height: math.unit(16 + 5 / 12, "feet"),
  15899. default: true
  15900. },
  15901. ]
  15902. ))
  15903. characterMakers.push(() => makeCharacter(
  15904. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15905. {
  15906. front: {
  15907. height: math.unit(5 + 7 / 12, "feet"),
  15908. weight: math.unit(170, "lb"),
  15909. name: "Front",
  15910. image: {
  15911. source: "./media/characters/mika/front.svg",
  15912. extra: 1,
  15913. bottom: 0.016
  15914. }
  15915. },
  15916. },
  15917. [
  15918. {
  15919. name: "Normal",
  15920. height: math.unit(5 + 7 / 12, "feet"),
  15921. default: true
  15922. },
  15923. ]
  15924. ))
  15925. characterMakers.push(() => makeCharacter(
  15926. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15927. {
  15928. front: {
  15929. height: math.unit(6 + 2 / 12, "feet"),
  15930. weight: math.unit(268, "lb"),
  15931. name: "Front",
  15932. image: {
  15933. source: "./media/characters/sol/front.svg",
  15934. extra: 247 / 231,
  15935. bottom: 0.05
  15936. }
  15937. },
  15938. },
  15939. [
  15940. {
  15941. name: "Normal",
  15942. height: math.unit(6 + 2 / 12, "feet"),
  15943. default: true
  15944. },
  15945. ]
  15946. ))
  15947. characterMakers.push(() => makeCharacter(
  15948. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15949. {
  15950. buizel: {
  15951. height: math.unit(2 + 5 / 12, "feet"),
  15952. weight: math.unit(87, "lb"),
  15953. name: "Front",
  15954. image: {
  15955. source: "./media/characters/umiko/buizel.svg",
  15956. extra: 172 / 157,
  15957. bottom: 0.01
  15958. },
  15959. form: "buizel",
  15960. default: true
  15961. },
  15962. floatzel: {
  15963. height: math.unit(5 + 9 / 12, "feet"),
  15964. weight: math.unit(250, "lb"),
  15965. name: "Front",
  15966. image: {
  15967. source: "./media/characters/umiko/floatzel.svg",
  15968. extra: 1076/1006,
  15969. bottom: 15/1091
  15970. },
  15971. form: "floatzel",
  15972. default: true
  15973. },
  15974. },
  15975. [
  15976. {
  15977. name: "Normal",
  15978. height: math.unit(2 + 5 / 12, "feet"),
  15979. form: "buizel",
  15980. default: true
  15981. },
  15982. {
  15983. name: "Normal",
  15984. height: math.unit(5 + 9 / 12, "feet"),
  15985. form: "floatzel",
  15986. default: true
  15987. },
  15988. ],
  15989. {
  15990. "buizel": {
  15991. name: "Buizel"
  15992. },
  15993. "floatzel": {
  15994. name: "Floatzel",
  15995. default: true
  15996. }
  15997. }
  15998. ))
  15999. characterMakers.push(() => makeCharacter(
  16000. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16001. {
  16002. front: {
  16003. height: math.unit(6 + 2 / 12, "feet"),
  16004. weight: math.unit(146, "lb"),
  16005. name: "Front",
  16006. image: {
  16007. source: "./media/characters/iliac/front.svg",
  16008. extra: 389 / 365,
  16009. bottom: 0.035
  16010. }
  16011. },
  16012. },
  16013. [
  16014. {
  16015. name: "Normal",
  16016. height: math.unit(6 + 2 / 12, "feet"),
  16017. default: true
  16018. },
  16019. ]
  16020. ))
  16021. characterMakers.push(() => makeCharacter(
  16022. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16023. {
  16024. front: {
  16025. height: math.unit(6, "feet"),
  16026. weight: math.unit(170, "lb"),
  16027. name: "Front",
  16028. image: {
  16029. source: "./media/characters/topaz/front.svg",
  16030. extra: 317 / 303,
  16031. bottom: 0.055
  16032. }
  16033. },
  16034. },
  16035. [
  16036. {
  16037. name: "Normal",
  16038. height: math.unit(6, "feet"),
  16039. default: true
  16040. },
  16041. ]
  16042. ))
  16043. characterMakers.push(() => makeCharacter(
  16044. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16045. {
  16046. front: {
  16047. height: math.unit(5 + 11 / 12, "feet"),
  16048. weight: math.unit(144, "lb"),
  16049. name: "Front",
  16050. image: {
  16051. source: "./media/characters/gabriel/front.svg",
  16052. extra: 285 / 262,
  16053. bottom: 0.004
  16054. }
  16055. },
  16056. },
  16057. [
  16058. {
  16059. name: "Normal",
  16060. height: math.unit(5 + 11 / 12, "feet"),
  16061. default: true
  16062. },
  16063. ]
  16064. ))
  16065. characterMakers.push(() => makeCharacter(
  16066. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16067. {
  16068. side: {
  16069. height: math.unit(6 + 5 / 12, "feet"),
  16070. weight: math.unit(300, "lb"),
  16071. name: "Side",
  16072. image: {
  16073. source: "./media/characters/tempest-suicune/side.svg",
  16074. extra: 195 / 154,
  16075. bottom: 0.04
  16076. }
  16077. },
  16078. },
  16079. [
  16080. {
  16081. name: "Normal",
  16082. height: math.unit(6 + 5 / 12, "feet"),
  16083. default: true
  16084. },
  16085. ]
  16086. ))
  16087. characterMakers.push(() => makeCharacter(
  16088. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16089. {
  16090. front: {
  16091. height: math.unit(7 + 2 / 12, "feet"),
  16092. weight: math.unit(322, "lb"),
  16093. name: "Front",
  16094. image: {
  16095. source: "./media/characters/vulcan/front.svg",
  16096. extra: 154 / 147,
  16097. bottom: 0.04
  16098. }
  16099. },
  16100. },
  16101. [
  16102. {
  16103. name: "Normal",
  16104. height: math.unit(7 + 2 / 12, "feet"),
  16105. default: true
  16106. },
  16107. ]
  16108. ))
  16109. characterMakers.push(() => makeCharacter(
  16110. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16111. {
  16112. front: {
  16113. height: math.unit(5 + 10 / 12, "feet"),
  16114. weight: math.unit(264, "lb"),
  16115. name: "Front",
  16116. image: {
  16117. source: "./media/characters/gault/front.svg",
  16118. extra: 161 / 140,
  16119. bottom: 0.028
  16120. }
  16121. },
  16122. },
  16123. [
  16124. {
  16125. name: "Normal",
  16126. height: math.unit(5 + 10 / 12, "feet"),
  16127. default: true
  16128. },
  16129. ]
  16130. ))
  16131. characterMakers.push(() => makeCharacter(
  16132. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  16133. {
  16134. front: {
  16135. height: math.unit(6, "feet"),
  16136. weight: math.unit(150, "lb"),
  16137. name: "Front",
  16138. image: {
  16139. source: "./media/characters/shard/front.svg",
  16140. extra: 273 / 238,
  16141. bottom: 0.02
  16142. }
  16143. },
  16144. },
  16145. [
  16146. {
  16147. name: "Normal",
  16148. height: math.unit(3 + 6 / 12, "feet"),
  16149. default: true
  16150. },
  16151. ]
  16152. ))
  16153. characterMakers.push(() => makeCharacter(
  16154. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  16155. {
  16156. front: {
  16157. height: math.unit(5 + 11 / 12, "feet"),
  16158. weight: math.unit(146, "lb"),
  16159. name: "Front",
  16160. image: {
  16161. source: "./media/characters/ashe/front.svg",
  16162. extra: 400 / 373,
  16163. bottom: 0.01
  16164. }
  16165. },
  16166. },
  16167. [
  16168. {
  16169. name: "Normal",
  16170. height: math.unit(5 + 11 / 12, "feet"),
  16171. default: true
  16172. },
  16173. ]
  16174. ))
  16175. characterMakers.push(() => makeCharacter(
  16176. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  16177. {
  16178. front: {
  16179. height: math.unit(5 + 5 / 12, "feet"),
  16180. weight: math.unit(135, "lb"),
  16181. name: "Front",
  16182. image: {
  16183. source: "./media/characters/beatrix/front.svg",
  16184. extra: 392 / 379,
  16185. bottom: 0.01
  16186. }
  16187. },
  16188. },
  16189. [
  16190. {
  16191. name: "Normal",
  16192. height: math.unit(6, "feet"),
  16193. default: true
  16194. },
  16195. ]
  16196. ))
  16197. characterMakers.push(() => makeCharacter(
  16198. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  16199. {
  16200. front: {
  16201. height: math.unit(6 + 2/12, "feet"),
  16202. weight: math.unit(135, "lb"),
  16203. name: "Front",
  16204. image: {
  16205. source: "./media/characters/ignatius/front.svg",
  16206. extra: 1380/1259,
  16207. bottom: 27/1407
  16208. }
  16209. },
  16210. },
  16211. [
  16212. {
  16213. name: "Normal",
  16214. height: math.unit(6 + 2/12, "feet"),
  16215. default: true
  16216. },
  16217. ]
  16218. ))
  16219. characterMakers.push(() => makeCharacter(
  16220. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  16221. {
  16222. front: {
  16223. height: math.unit(6 + 2 / 12, "feet"),
  16224. weight: math.unit(138, "lb"),
  16225. name: "Front",
  16226. image: {
  16227. source: "./media/characters/mei-li/front.svg",
  16228. extra: 237 / 229,
  16229. bottom: 0.03
  16230. }
  16231. },
  16232. },
  16233. [
  16234. {
  16235. name: "Normal",
  16236. height: math.unit(6 + 2 / 12, "feet"),
  16237. default: true
  16238. },
  16239. ]
  16240. ))
  16241. characterMakers.push(() => makeCharacter(
  16242. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  16243. {
  16244. front: {
  16245. height: math.unit(2 + 4 / 12, "feet"),
  16246. weight: math.unit(62, "lb"),
  16247. name: "Front",
  16248. image: {
  16249. source: "./media/characters/puru/front.svg",
  16250. extra: 206 / 149,
  16251. bottom: 0.06
  16252. }
  16253. },
  16254. },
  16255. [
  16256. {
  16257. name: "Normal",
  16258. height: math.unit(2 + 4 / 12, "feet"),
  16259. default: true
  16260. },
  16261. ]
  16262. ))
  16263. characterMakers.push(() => makeCharacter(
  16264. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  16265. {
  16266. anthro: {
  16267. height: math.unit(5 + 8/12, "feet"),
  16268. weight: math.unit(200, "lb"),
  16269. energyNeed: math.unit(2000, "kcal"),
  16270. name: "Anthro",
  16271. image: {
  16272. source: "./media/characters/kee/anthro.svg",
  16273. extra: 3251/3184,
  16274. bottom: 250/3501
  16275. }
  16276. },
  16277. taur: {
  16278. height: math.unit(11, "feet"),
  16279. weight: math.unit(500, "lb"),
  16280. energyNeed: math.unit(5000, "kcal"),
  16281. name: "Taur",
  16282. image: {
  16283. source: "./media/characters/kee/taur.svg",
  16284. extra: 1362/1320,
  16285. bottom: 83/1445
  16286. }
  16287. },
  16288. },
  16289. [
  16290. {
  16291. name: "Normal",
  16292. height: math.unit(5 + 8/12, "feet"),
  16293. default: true
  16294. },
  16295. {
  16296. name: "Macro",
  16297. height: math.unit(35, "feet")
  16298. },
  16299. ]
  16300. ))
  16301. characterMakers.push(() => makeCharacter(
  16302. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  16303. {
  16304. anthro: {
  16305. height: math.unit(7, "feet"),
  16306. weight: math.unit(190, "lb"),
  16307. name: "Anthro",
  16308. image: {
  16309. source: "./media/characters/cobalt-dracha/anthro.svg",
  16310. extra: 231 / 225,
  16311. bottom: 0.04
  16312. }
  16313. },
  16314. feral: {
  16315. height: math.unit(9 + 7 / 12, "feet"),
  16316. weight: math.unit(294, "lb"),
  16317. name: "Feral",
  16318. image: {
  16319. source: "./media/characters/cobalt-dracha/feral.svg",
  16320. extra: 692 / 633,
  16321. bottom: 0.05
  16322. }
  16323. },
  16324. },
  16325. [
  16326. {
  16327. name: "Normal",
  16328. height: math.unit(7, "feet"),
  16329. default: true
  16330. },
  16331. ]
  16332. ))
  16333. characterMakers.push(() => makeCharacter(
  16334. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16335. {
  16336. fallen: {
  16337. height: math.unit(11 + 8 / 12, "feet"),
  16338. weight: math.unit(485, "lb"),
  16339. name: "Java (Fallen)",
  16340. rename: true,
  16341. image: {
  16342. source: "./media/characters/java/fallen.svg",
  16343. extra: 226 / 208,
  16344. bottom: 0.005
  16345. }
  16346. },
  16347. godkin: {
  16348. height: math.unit(10 + 6 / 12, "feet"),
  16349. weight: math.unit(328, "lb"),
  16350. name: "Java (Godkin)",
  16351. rename: true,
  16352. image: {
  16353. source: "./media/characters/java/godkin.svg",
  16354. extra: 1104/1068,
  16355. bottom: 36/1140
  16356. }
  16357. },
  16358. },
  16359. [
  16360. {
  16361. name: "Normal",
  16362. height: math.unit(11 + 8 / 12, "feet"),
  16363. default: true
  16364. },
  16365. ]
  16366. ))
  16367. characterMakers.push(() => makeCharacter(
  16368. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16369. {
  16370. front: {
  16371. height: math.unit(5 + 9 / 12, "feet"),
  16372. weight: math.unit(170, "lb"),
  16373. name: "Front",
  16374. image: {
  16375. source: "./media/characters/purna/front.svg",
  16376. extra: 239 / 229,
  16377. bottom: 0.01
  16378. }
  16379. },
  16380. },
  16381. [
  16382. {
  16383. name: "Normal",
  16384. height: math.unit(5 + 9 / 12, "feet"),
  16385. default: true
  16386. },
  16387. ]
  16388. ))
  16389. characterMakers.push(() => makeCharacter(
  16390. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16391. {
  16392. front: {
  16393. height: math.unit(5 + 9 / 12, "feet"),
  16394. weight: math.unit(142, "lb"),
  16395. name: "Front",
  16396. image: {
  16397. source: "./media/characters/kuva/front.svg",
  16398. extra: 281 / 271,
  16399. bottom: 0.006
  16400. }
  16401. },
  16402. },
  16403. [
  16404. {
  16405. name: "Normal",
  16406. height: math.unit(5 + 9 / 12, "feet"),
  16407. default: true
  16408. },
  16409. ]
  16410. ))
  16411. characterMakers.push(() => makeCharacter(
  16412. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16413. {
  16414. anthro: {
  16415. height: math.unit(9 + 2 / 12, "feet"),
  16416. weight: math.unit(270, "lb"),
  16417. name: "Anthro",
  16418. image: {
  16419. source: "./media/characters/embra/anthro.svg",
  16420. extra: 200 / 187,
  16421. bottom: 0.02
  16422. }
  16423. },
  16424. feral: {
  16425. height: math.unit(18 + 8 / 12, "feet"),
  16426. weight: math.unit(576, "lb"),
  16427. name: "Feral",
  16428. image: {
  16429. source: "./media/characters/embra/feral.svg",
  16430. extra: 152 / 137,
  16431. bottom: 0.037
  16432. }
  16433. },
  16434. },
  16435. [
  16436. {
  16437. name: "Normal",
  16438. height: math.unit(9 + 2 / 12, "feet"),
  16439. default: true
  16440. },
  16441. ]
  16442. ))
  16443. characterMakers.push(() => makeCharacter(
  16444. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16445. {
  16446. anthro: {
  16447. height: math.unit(10 + 9 / 12, "feet"),
  16448. weight: math.unit(224, "lb"),
  16449. name: "Anthro",
  16450. image: {
  16451. source: "./media/characters/grottos/anthro.svg",
  16452. extra: 350 / 332,
  16453. bottom: 0.045
  16454. }
  16455. },
  16456. feral: {
  16457. height: math.unit(20 + 7 / 12, "feet"),
  16458. weight: math.unit(629, "lb"),
  16459. name: "Feral",
  16460. image: {
  16461. source: "./media/characters/grottos/feral.svg",
  16462. extra: 207 / 190,
  16463. bottom: 0.05
  16464. }
  16465. },
  16466. },
  16467. [
  16468. {
  16469. name: "Normal",
  16470. height: math.unit(10 + 9 / 12, "feet"),
  16471. default: true
  16472. },
  16473. ]
  16474. ))
  16475. characterMakers.push(() => makeCharacter(
  16476. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16477. {
  16478. anthro: {
  16479. height: math.unit(9 + 6 / 12, "feet"),
  16480. weight: math.unit(298, "lb"),
  16481. name: "Anthro",
  16482. image: {
  16483. source: "./media/characters/frifna/anthro.svg",
  16484. extra: 282 / 269,
  16485. bottom: 0.015
  16486. }
  16487. },
  16488. feral: {
  16489. height: math.unit(16 + 2 / 12, "feet"),
  16490. weight: math.unit(624, "lb"),
  16491. name: "Feral",
  16492. image: {
  16493. source: "./media/characters/frifna/feral.svg"
  16494. }
  16495. },
  16496. },
  16497. [
  16498. {
  16499. name: "Normal",
  16500. height: math.unit(9 + 6 / 12, "feet"),
  16501. default: true
  16502. },
  16503. ]
  16504. ))
  16505. characterMakers.push(() => makeCharacter(
  16506. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16507. {
  16508. front: {
  16509. height: math.unit(6 + 2 / 12, "feet"),
  16510. weight: math.unit(168, "lb"),
  16511. name: "Front",
  16512. image: {
  16513. source: "./media/characters/elise/front.svg",
  16514. extra: 276 / 271
  16515. }
  16516. },
  16517. },
  16518. [
  16519. {
  16520. name: "Normal",
  16521. height: math.unit(6 + 2 / 12, "feet"),
  16522. default: true
  16523. },
  16524. ]
  16525. ))
  16526. characterMakers.push(() => makeCharacter(
  16527. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16528. {
  16529. front: {
  16530. height: math.unit(5 + 10 / 12, "feet"),
  16531. weight: math.unit(210, "lb"),
  16532. name: "Front",
  16533. image: {
  16534. source: "./media/characters/glade/front.svg",
  16535. extra: 258 / 247,
  16536. bottom: 0.008
  16537. }
  16538. },
  16539. },
  16540. [
  16541. {
  16542. name: "Normal",
  16543. height: math.unit(5 + 10 / 12, "feet"),
  16544. default: true
  16545. },
  16546. ]
  16547. ))
  16548. characterMakers.push(() => makeCharacter(
  16549. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16550. {
  16551. front: {
  16552. height: math.unit(5 + 10 / 12, "feet"),
  16553. weight: math.unit(129, "lb"),
  16554. name: "Front",
  16555. image: {
  16556. source: "./media/characters/rina/front.svg",
  16557. extra: 266 / 255,
  16558. bottom: 0.005
  16559. }
  16560. },
  16561. },
  16562. [
  16563. {
  16564. name: "Normal",
  16565. height: math.unit(5 + 10 / 12, "feet"),
  16566. default: true
  16567. },
  16568. ]
  16569. ))
  16570. characterMakers.push(() => makeCharacter(
  16571. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16572. {
  16573. front: {
  16574. height: math.unit(6 + 1 / 12, "feet"),
  16575. weight: math.unit(192, "lb"),
  16576. name: "Front",
  16577. image: {
  16578. source: "./media/characters/veronica/front.svg",
  16579. extra: 319 / 309,
  16580. bottom: 0.005
  16581. }
  16582. },
  16583. },
  16584. [
  16585. {
  16586. name: "Normal",
  16587. height: math.unit(6 + 1 / 12, "feet"),
  16588. default: true
  16589. },
  16590. ]
  16591. ))
  16592. characterMakers.push(() => makeCharacter(
  16593. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16594. {
  16595. front: {
  16596. height: math.unit(9 + 3 / 12, "feet"),
  16597. weight: math.unit(1100, "lb"),
  16598. name: "Front",
  16599. image: {
  16600. source: "./media/characters/braxton/front.svg",
  16601. extra: 1057 / 984,
  16602. bottom: 0.05
  16603. }
  16604. },
  16605. },
  16606. [
  16607. {
  16608. name: "Normal",
  16609. height: math.unit(9 + 3 / 12, "feet")
  16610. },
  16611. {
  16612. name: "Giant",
  16613. height: math.unit(300, "feet"),
  16614. default: true
  16615. },
  16616. {
  16617. name: "Macro",
  16618. height: math.unit(700, "feet")
  16619. },
  16620. {
  16621. name: "Megamacro",
  16622. height: math.unit(6000, "feet")
  16623. },
  16624. ]
  16625. ))
  16626. characterMakers.push(() => makeCharacter(
  16627. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16628. {
  16629. front: {
  16630. height: math.unit(6 + 7 / 12, "feet"),
  16631. weight: math.unit(150, "lb"),
  16632. name: "Front",
  16633. image: {
  16634. source: "./media/characters/blue-feyonics/front.svg",
  16635. extra: 1403 / 1306,
  16636. bottom: 0.047
  16637. }
  16638. },
  16639. },
  16640. [
  16641. {
  16642. name: "Normal",
  16643. height: math.unit(6 + 7 / 12, "feet"),
  16644. default: true
  16645. },
  16646. ]
  16647. ))
  16648. characterMakers.push(() => makeCharacter(
  16649. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16650. {
  16651. front: {
  16652. height: math.unit(1.8, "meters"),
  16653. weight: math.unit(60, "kg"),
  16654. name: "Front",
  16655. image: {
  16656. source: "./media/characters/maxwell/front.svg",
  16657. extra: 2060 / 1873
  16658. }
  16659. },
  16660. },
  16661. [
  16662. {
  16663. name: "Micro",
  16664. height: math.unit(1, "mm")
  16665. },
  16666. {
  16667. name: "Normal",
  16668. height: math.unit(1.8, "meter"),
  16669. default: true
  16670. },
  16671. {
  16672. name: "Macro",
  16673. height: math.unit(30, "meters")
  16674. },
  16675. {
  16676. name: "Megamacro",
  16677. height: math.unit(10, "km")
  16678. },
  16679. ]
  16680. ))
  16681. characterMakers.push(() => makeCharacter(
  16682. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16683. {
  16684. front: {
  16685. height: math.unit(6, "feet"),
  16686. weight: math.unit(150, "lb"),
  16687. name: "Front",
  16688. image: {
  16689. source: "./media/characters/jack/front.svg",
  16690. extra: 1754 / 1640,
  16691. bottom: 0.01
  16692. }
  16693. },
  16694. },
  16695. [
  16696. {
  16697. name: "Normal",
  16698. height: math.unit(80000, "feet"),
  16699. default: true
  16700. },
  16701. {
  16702. name: "Max size",
  16703. height: math.unit(10, "lightyears")
  16704. },
  16705. ]
  16706. ))
  16707. characterMakers.push(() => makeCharacter(
  16708. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16709. {
  16710. urban: {
  16711. height: math.unit(5, "feet"),
  16712. weight: math.unit(240, "lb"),
  16713. name: "Urban",
  16714. image: {
  16715. source: "./media/characters/cafat/urban.svg",
  16716. extra: 1223/1126,
  16717. bottom: 205/1428
  16718. }
  16719. },
  16720. summer: {
  16721. height: math.unit(5, "feet"),
  16722. weight: math.unit(240, "lb"),
  16723. name: "Summer",
  16724. image: {
  16725. source: "./media/characters/cafat/summer.svg",
  16726. extra: 1223/1126,
  16727. bottom: 205/1428
  16728. }
  16729. },
  16730. winter: {
  16731. height: math.unit(5, "feet"),
  16732. weight: math.unit(240, "lb"),
  16733. name: "Winter",
  16734. image: {
  16735. source: "./media/characters/cafat/winter.svg",
  16736. extra: 1223/1126,
  16737. bottom: 205/1428
  16738. }
  16739. },
  16740. lingerie: {
  16741. height: math.unit(5, "feet"),
  16742. weight: math.unit(240, "lb"),
  16743. name: "Lingerie",
  16744. image: {
  16745. source: "./media/characters/cafat/lingerie.svg",
  16746. extra: 1223/1126,
  16747. bottom: 205/1428
  16748. }
  16749. },
  16750. upright: {
  16751. height: math.unit(6.3, "feet"),
  16752. weight: math.unit(240, "lb"),
  16753. name: "Upright",
  16754. image: {
  16755. source: "./media/characters/cafat/upright.svg",
  16756. bottom: 0.01
  16757. }
  16758. },
  16759. uprightFull: {
  16760. height: math.unit(6.3, "feet"),
  16761. weight: math.unit(240, "lb"),
  16762. name: "Upright (Full)",
  16763. image: {
  16764. source: "./media/characters/cafat/upright-full.svg",
  16765. bottom: 0.01
  16766. }
  16767. },
  16768. },
  16769. [
  16770. {
  16771. name: "Small",
  16772. height: math.unit(5, "feet"),
  16773. default: true
  16774. },
  16775. {
  16776. name: "Large",
  16777. height: math.unit(13, "feet")
  16778. },
  16779. ]
  16780. ))
  16781. characterMakers.push(() => makeCharacter(
  16782. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16783. {
  16784. front: {
  16785. height: math.unit(6, "feet"),
  16786. weight: math.unit(150, "lb"),
  16787. name: "Front",
  16788. image: {
  16789. source: "./media/characters/verin-raharra/front.svg",
  16790. extra: 5019 / 4835,
  16791. bottom: 0.023
  16792. }
  16793. },
  16794. },
  16795. [
  16796. {
  16797. name: "Normal",
  16798. height: math.unit(7 + 5 / 12, "feet"),
  16799. default: true
  16800. },
  16801. {
  16802. name: "Upsized",
  16803. height: math.unit(20, "feet")
  16804. },
  16805. ]
  16806. ))
  16807. characterMakers.push(() => makeCharacter(
  16808. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16809. {
  16810. front: {
  16811. height: math.unit(7, "feet"),
  16812. weight: math.unit(230, "lb"),
  16813. name: "Front",
  16814. image: {
  16815. source: "./media/characters/nakata/front.svg",
  16816. extra: 1.005,
  16817. bottom: 0.01
  16818. }
  16819. },
  16820. },
  16821. [
  16822. {
  16823. name: "Normal",
  16824. height: math.unit(7, "feet"),
  16825. default: true
  16826. },
  16827. {
  16828. name: "Big",
  16829. height: math.unit(14, "feet")
  16830. },
  16831. {
  16832. name: "Macro",
  16833. height: math.unit(400, "feet")
  16834. },
  16835. ]
  16836. ))
  16837. characterMakers.push(() => makeCharacter(
  16838. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16839. {
  16840. front: {
  16841. height: math.unit(4.91, "feet"),
  16842. weight: math.unit(100, "lb"),
  16843. name: "Front",
  16844. image: {
  16845. source: "./media/characters/lily/front.svg",
  16846. extra: 1585 / 1415,
  16847. bottom: 0.02
  16848. }
  16849. },
  16850. },
  16851. [
  16852. {
  16853. name: "Normal",
  16854. height: math.unit(4.91, "feet"),
  16855. default: true
  16856. },
  16857. ]
  16858. ))
  16859. characterMakers.push(() => makeCharacter(
  16860. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16861. {
  16862. laying: {
  16863. height: math.unit(4 + 4 / 12, "feet"),
  16864. weight: math.unit(600, "lb"),
  16865. name: "Laying",
  16866. image: {
  16867. source: "./media/characters/sheila/laying.svg",
  16868. extra: 1333 / 1265,
  16869. bottom: 0.16
  16870. }
  16871. },
  16872. },
  16873. [
  16874. {
  16875. name: "Normal",
  16876. height: math.unit(4 + 4 / 12, "feet"),
  16877. default: true
  16878. },
  16879. ]
  16880. ))
  16881. characterMakers.push(() => makeCharacter(
  16882. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16883. {
  16884. front: {
  16885. height: math.unit(6, "feet"),
  16886. weight: math.unit(190, "lb"),
  16887. name: "Front",
  16888. image: {
  16889. source: "./media/characters/sax/front.svg",
  16890. extra: 1187 / 973,
  16891. bottom: 0.042
  16892. }
  16893. },
  16894. },
  16895. [
  16896. {
  16897. name: "Micro",
  16898. height: math.unit(4, "inches"),
  16899. default: true
  16900. },
  16901. ]
  16902. ))
  16903. characterMakers.push(() => makeCharacter(
  16904. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16905. {
  16906. front: {
  16907. height: math.unit(6, "feet"),
  16908. weight: math.unit(150, "lb"),
  16909. name: "Front",
  16910. image: {
  16911. source: "./media/characters/pandora/front.svg",
  16912. extra: 2720 / 2556,
  16913. bottom: 0.015
  16914. }
  16915. },
  16916. back: {
  16917. height: math.unit(6, "feet"),
  16918. weight: math.unit(150, "lb"),
  16919. name: "Back",
  16920. image: {
  16921. source: "./media/characters/pandora/back.svg",
  16922. extra: 2720 / 2556,
  16923. bottom: 0.01
  16924. }
  16925. },
  16926. beans: {
  16927. height: math.unit(6 / 8, "feet"),
  16928. name: "Beans",
  16929. image: {
  16930. source: "./media/characters/pandora/beans.svg"
  16931. }
  16932. },
  16933. collar: {
  16934. height: math.unit(0.31, "feet"),
  16935. name: "Collar",
  16936. image: {
  16937. source: "./media/characters/pandora/collar.svg"
  16938. }
  16939. },
  16940. skirt: {
  16941. height: math.unit(6, "feet"),
  16942. weight: math.unit(150, "lb"),
  16943. name: "Skirt",
  16944. image: {
  16945. source: "./media/characters/pandora/skirt.svg",
  16946. extra: 1622 / 1525,
  16947. bottom: 0.015
  16948. }
  16949. },
  16950. hoodie: {
  16951. height: math.unit(6, "feet"),
  16952. weight: math.unit(150, "lb"),
  16953. name: "Hoodie",
  16954. image: {
  16955. source: "./media/characters/pandora/hoodie.svg",
  16956. extra: 1622 / 1525,
  16957. bottom: 0.015
  16958. }
  16959. },
  16960. casual: {
  16961. height: math.unit(6, "feet"),
  16962. weight: math.unit(150, "lb"),
  16963. name: "Casual",
  16964. image: {
  16965. source: "./media/characters/pandora/casual.svg",
  16966. extra: 1622 / 1525,
  16967. bottom: 0.015
  16968. }
  16969. },
  16970. },
  16971. [
  16972. {
  16973. name: "Normal",
  16974. height: math.unit(6, "feet")
  16975. },
  16976. {
  16977. name: "Big Steppy",
  16978. height: math.unit(1, "km"),
  16979. default: true
  16980. },
  16981. {
  16982. name: "Galactic Steppy",
  16983. height: math.unit(2, "gigameters")
  16984. },
  16985. ]
  16986. ))
  16987. characterMakers.push(() => makeCharacter(
  16988. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16989. {
  16990. side: {
  16991. height: math.unit(10, "feet"),
  16992. weight: math.unit(800, "kg"),
  16993. name: "Side",
  16994. image: {
  16995. source: "./media/characters/venio-darcony/side.svg",
  16996. extra: 1373 / 1003,
  16997. bottom: 0.037
  16998. }
  16999. },
  17000. front: {
  17001. height: math.unit(19, "feet"),
  17002. weight: math.unit(800, "kg"),
  17003. name: "Front",
  17004. image: {
  17005. source: "./media/characters/venio-darcony/front.svg"
  17006. }
  17007. },
  17008. back: {
  17009. height: math.unit(19, "feet"),
  17010. weight: math.unit(800, "kg"),
  17011. name: "Back",
  17012. image: {
  17013. source: "./media/characters/venio-darcony/back.svg"
  17014. }
  17015. },
  17016. sideNsfw: {
  17017. height: math.unit(10, "feet"),
  17018. weight: math.unit(800, "kg"),
  17019. name: "Side (NSFW)",
  17020. image: {
  17021. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17022. extra: 1373 / 1003,
  17023. bottom: 0.037
  17024. }
  17025. },
  17026. frontNsfw: {
  17027. height: math.unit(19, "feet"),
  17028. weight: math.unit(800, "kg"),
  17029. name: "Front (NSFW)",
  17030. image: {
  17031. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17032. }
  17033. },
  17034. backNsfw: {
  17035. height: math.unit(19, "feet"),
  17036. weight: math.unit(800, "kg"),
  17037. name: "Back (NSFW)",
  17038. image: {
  17039. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17040. }
  17041. },
  17042. sideArmored: {
  17043. height: math.unit(10, "feet"),
  17044. weight: math.unit(800, "kg"),
  17045. name: "Side (Armored)",
  17046. image: {
  17047. source: "./media/characters/venio-darcony/side-armored.svg",
  17048. extra: 1373 / 1003,
  17049. bottom: 0.037
  17050. }
  17051. },
  17052. frontArmored: {
  17053. height: math.unit(19, "feet"),
  17054. weight: math.unit(900, "kg"),
  17055. name: "Front (Armored)",
  17056. image: {
  17057. source: "./media/characters/venio-darcony/front-armored.svg"
  17058. }
  17059. },
  17060. backArmored: {
  17061. height: math.unit(19, "feet"),
  17062. weight: math.unit(900, "kg"),
  17063. name: "Back (Armored)",
  17064. image: {
  17065. source: "./media/characters/venio-darcony/back-armored.svg"
  17066. }
  17067. },
  17068. sword: {
  17069. height: math.unit(10, "feet"),
  17070. weight: math.unit(50, "lb"),
  17071. name: "Sword",
  17072. image: {
  17073. source: "./media/characters/venio-darcony/sword.svg"
  17074. }
  17075. },
  17076. },
  17077. [
  17078. {
  17079. name: "Normal",
  17080. height: math.unit(10, "feet")
  17081. },
  17082. {
  17083. name: "Macro",
  17084. height: math.unit(130, "feet"),
  17085. default: true
  17086. },
  17087. {
  17088. name: "Macro+",
  17089. height: math.unit(240, "feet")
  17090. },
  17091. ]
  17092. ))
  17093. characterMakers.push(() => makeCharacter(
  17094. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17095. {
  17096. front: {
  17097. height: math.unit(6, "feet"),
  17098. weight: math.unit(150, "lb"),
  17099. name: "Front",
  17100. image: {
  17101. source: "./media/characters/veski/front.svg",
  17102. extra: 1299 / 1225,
  17103. bottom: 0.04
  17104. }
  17105. },
  17106. back: {
  17107. height: math.unit(6, "feet"),
  17108. weight: math.unit(150, "lb"),
  17109. name: "Back",
  17110. image: {
  17111. source: "./media/characters/veski/back.svg",
  17112. extra: 1299 / 1225,
  17113. bottom: 0.008
  17114. }
  17115. },
  17116. maw: {
  17117. height: math.unit(1.5 * 1.21, "feet"),
  17118. name: "Maw",
  17119. image: {
  17120. source: "./media/characters/veski/maw.svg"
  17121. }
  17122. },
  17123. },
  17124. [
  17125. {
  17126. name: "Macro",
  17127. height: math.unit(2, "km"),
  17128. default: true
  17129. },
  17130. ]
  17131. ))
  17132. characterMakers.push(() => makeCharacter(
  17133. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  17134. {
  17135. front: {
  17136. height: math.unit(5 + 7 / 12, "feet"),
  17137. name: "Front",
  17138. image: {
  17139. source: "./media/characters/isabelle/front.svg",
  17140. extra: 2130 / 1976,
  17141. bottom: 0.05
  17142. }
  17143. },
  17144. },
  17145. [
  17146. {
  17147. name: "Supermicro",
  17148. height: math.unit(10, "micrometers")
  17149. },
  17150. {
  17151. name: "Micro",
  17152. height: math.unit(1, "inch")
  17153. },
  17154. {
  17155. name: "Tiny",
  17156. height: math.unit(5, "inches")
  17157. },
  17158. {
  17159. name: "Standard",
  17160. height: math.unit(5 + 7 / 12, "inches")
  17161. },
  17162. {
  17163. name: "Macro",
  17164. height: math.unit(80, "meters"),
  17165. default: true
  17166. },
  17167. {
  17168. name: "Megamacro",
  17169. height: math.unit(250, "meters")
  17170. },
  17171. {
  17172. name: "Gigamacro",
  17173. height: math.unit(5, "km")
  17174. },
  17175. {
  17176. name: "Cosmic",
  17177. height: math.unit(2.5e6, "miles")
  17178. },
  17179. ]
  17180. ))
  17181. characterMakers.push(() => makeCharacter(
  17182. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  17183. {
  17184. front: {
  17185. height: math.unit(6, "feet"),
  17186. weight: math.unit(150, "lb"),
  17187. name: "Front",
  17188. image: {
  17189. source: "./media/characters/hanzo/front.svg",
  17190. extra: 374 / 344,
  17191. bottom: 0.02
  17192. }
  17193. },
  17194. },
  17195. [
  17196. {
  17197. name: "Normal",
  17198. height: math.unit(8, "feet"),
  17199. default: true
  17200. },
  17201. ]
  17202. ))
  17203. characterMakers.push(() => makeCharacter(
  17204. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  17205. {
  17206. front: {
  17207. height: math.unit(7, "feet"),
  17208. weight: math.unit(130, "lb"),
  17209. name: "Front",
  17210. image: {
  17211. source: "./media/characters/anna/front.svg",
  17212. extra: 169 / 145,
  17213. bottom: 0.06
  17214. }
  17215. },
  17216. full: {
  17217. height: math.unit(4.96, "feet"),
  17218. weight: math.unit(220, "lb"),
  17219. name: "Full",
  17220. image: {
  17221. source: "./media/characters/anna/full.svg",
  17222. extra: 138 / 114,
  17223. bottom: 0.15
  17224. }
  17225. },
  17226. tongue: {
  17227. height: math.unit(2.53, "feet"),
  17228. name: "Tongue",
  17229. image: {
  17230. source: "./media/characters/anna/tongue.svg"
  17231. }
  17232. },
  17233. },
  17234. [
  17235. {
  17236. name: "Normal",
  17237. height: math.unit(7, "feet"),
  17238. default: true
  17239. },
  17240. ]
  17241. ))
  17242. characterMakers.push(() => makeCharacter(
  17243. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  17244. {
  17245. front: {
  17246. height: math.unit(7, "feet"),
  17247. weight: math.unit(150, "lb"),
  17248. name: "Front",
  17249. image: {
  17250. source: "./media/characters/ian-corvid/front.svg",
  17251. extra: 150 / 142,
  17252. bottom: 0.02
  17253. }
  17254. },
  17255. back: {
  17256. height: math.unit(7, "feet"),
  17257. weight: math.unit(150, "lb"),
  17258. name: "Back",
  17259. image: {
  17260. source: "./media/characters/ian-corvid/back.svg",
  17261. extra: 150 / 143,
  17262. bottom: 0.01
  17263. }
  17264. },
  17265. stomping: {
  17266. height: math.unit(7, "feet"),
  17267. weight: math.unit(150, "lb"),
  17268. name: "Stomping",
  17269. image: {
  17270. source: "./media/characters/ian-corvid/stomping.svg",
  17271. extra: 76 / 72
  17272. }
  17273. },
  17274. sitting: {
  17275. height: math.unit(7 / 1.8, "feet"),
  17276. weight: math.unit(150, "lb"),
  17277. name: "Sitting",
  17278. image: {
  17279. source: "./media/characters/ian-corvid/sitting.svg",
  17280. extra: 1400 / 1269,
  17281. bottom: 0.15
  17282. }
  17283. },
  17284. },
  17285. [
  17286. {
  17287. name: "Tiny Microw",
  17288. height: math.unit(1, "inch")
  17289. },
  17290. {
  17291. name: "Microw",
  17292. height: math.unit(6, "inches")
  17293. },
  17294. {
  17295. name: "Crow",
  17296. height: math.unit(7 + 1 / 12, "feet"),
  17297. default: true
  17298. },
  17299. {
  17300. name: "Macrow",
  17301. height: math.unit(176, "feet")
  17302. },
  17303. ]
  17304. ))
  17305. characterMakers.push(() => makeCharacter(
  17306. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  17307. {
  17308. front: {
  17309. height: math.unit(5 + 7 / 12, "feet"),
  17310. weight: math.unit(147, "lb"),
  17311. name: "Front",
  17312. image: {
  17313. source: "./media/characters/natalie-kellon/front.svg",
  17314. extra: 1214 / 1141,
  17315. bottom: 0.02
  17316. }
  17317. },
  17318. },
  17319. [
  17320. {
  17321. name: "Micro",
  17322. height: math.unit(1 / 16, "inch")
  17323. },
  17324. {
  17325. name: "Tiny",
  17326. height: math.unit(4, "inches")
  17327. },
  17328. {
  17329. name: "Normal",
  17330. height: math.unit(5 + 7 / 12, "feet"),
  17331. default: true
  17332. },
  17333. {
  17334. name: "Amazon",
  17335. height: math.unit(12, "feet")
  17336. },
  17337. {
  17338. name: "Giantess",
  17339. height: math.unit(160, "meters")
  17340. },
  17341. {
  17342. name: "Titaness",
  17343. height: math.unit(800, "meters")
  17344. },
  17345. ]
  17346. ))
  17347. characterMakers.push(() => makeCharacter(
  17348. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17349. {
  17350. front: {
  17351. height: math.unit(6, "feet"),
  17352. weight: math.unit(150, "lb"),
  17353. name: "Front",
  17354. image: {
  17355. source: "./media/characters/alluria/front.svg",
  17356. extra: 806 / 738,
  17357. bottom: 0.01
  17358. }
  17359. },
  17360. side: {
  17361. height: math.unit(6, "feet"),
  17362. weight: math.unit(150, "lb"),
  17363. name: "Side",
  17364. image: {
  17365. source: "./media/characters/alluria/side.svg",
  17366. extra: 800 / 750,
  17367. }
  17368. },
  17369. back: {
  17370. height: math.unit(6, "feet"),
  17371. weight: math.unit(150, "lb"),
  17372. name: "Back",
  17373. image: {
  17374. source: "./media/characters/alluria/back.svg",
  17375. extra: 806 / 738,
  17376. }
  17377. },
  17378. frontMaid: {
  17379. height: math.unit(6, "feet"),
  17380. weight: math.unit(150, "lb"),
  17381. name: "Front (Maid)",
  17382. image: {
  17383. source: "./media/characters/alluria/front-maid.svg",
  17384. extra: 806 / 738,
  17385. bottom: 0.01
  17386. }
  17387. },
  17388. sideMaid: {
  17389. height: math.unit(6, "feet"),
  17390. weight: math.unit(150, "lb"),
  17391. name: "Side (Maid)",
  17392. image: {
  17393. source: "./media/characters/alluria/side-maid.svg",
  17394. extra: 800 / 750,
  17395. bottom: 0.005
  17396. }
  17397. },
  17398. backMaid: {
  17399. height: math.unit(6, "feet"),
  17400. weight: math.unit(150, "lb"),
  17401. name: "Back (Maid)",
  17402. image: {
  17403. source: "./media/characters/alluria/back-maid.svg",
  17404. extra: 806 / 738,
  17405. }
  17406. },
  17407. },
  17408. [
  17409. {
  17410. name: "Micro",
  17411. height: math.unit(6, "inches"),
  17412. default: true
  17413. },
  17414. ]
  17415. ))
  17416. characterMakers.push(() => makeCharacter(
  17417. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17418. {
  17419. front: {
  17420. height: math.unit(6, "feet"),
  17421. weight: math.unit(150, "lb"),
  17422. name: "Front",
  17423. image: {
  17424. source: "./media/characters/kyle/front.svg",
  17425. extra: 1069 / 962,
  17426. bottom: 77.228 / 1727.45
  17427. }
  17428. },
  17429. },
  17430. [
  17431. {
  17432. name: "Macro",
  17433. height: math.unit(150, "feet"),
  17434. default: true
  17435. },
  17436. ]
  17437. ))
  17438. characterMakers.push(() => makeCharacter(
  17439. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17440. {
  17441. front: {
  17442. height: math.unit(6, "feet"),
  17443. weight: math.unit(300, "lb"),
  17444. name: "Front",
  17445. image: {
  17446. source: "./media/characters/duncan/front.svg",
  17447. extra: 1650 / 1482,
  17448. bottom: 0.05
  17449. }
  17450. },
  17451. },
  17452. [
  17453. {
  17454. name: "Macro",
  17455. height: math.unit(100, "feet"),
  17456. default: true
  17457. },
  17458. ]
  17459. ))
  17460. characterMakers.push(() => makeCharacter(
  17461. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17462. {
  17463. front: {
  17464. height: math.unit(5 + 4 / 12, "feet"),
  17465. weight: math.unit(220, "lb"),
  17466. name: "Front",
  17467. image: {
  17468. source: "./media/characters/memory/front.svg",
  17469. extra: 3641 / 3545,
  17470. bottom: 0.03
  17471. }
  17472. },
  17473. back: {
  17474. height: math.unit(5 + 4 / 12, "feet"),
  17475. weight: math.unit(220, "lb"),
  17476. name: "Back",
  17477. image: {
  17478. source: "./media/characters/memory/back.svg",
  17479. extra: 3641 / 3545,
  17480. bottom: 0.025
  17481. }
  17482. },
  17483. frontSkirt: {
  17484. height: math.unit(5 + 4 / 12, "feet"),
  17485. weight: math.unit(220, "lb"),
  17486. name: "Front (Skirt)",
  17487. image: {
  17488. source: "./media/characters/memory/front-skirt.svg",
  17489. extra: 3641 / 3545,
  17490. bottom: 0.03
  17491. }
  17492. },
  17493. frontDress: {
  17494. height: math.unit(5 + 4 / 12, "feet"),
  17495. weight: math.unit(220, "lb"),
  17496. name: "Front (Dress)",
  17497. image: {
  17498. source: "./media/characters/memory/front-dress.svg",
  17499. extra: 3641 / 3545,
  17500. bottom: 0.03
  17501. }
  17502. },
  17503. },
  17504. [
  17505. {
  17506. name: "Micro",
  17507. height: math.unit(6, "inches"),
  17508. default: true
  17509. },
  17510. {
  17511. name: "Normal",
  17512. height: math.unit(5 + 4 / 12, "feet")
  17513. },
  17514. ]
  17515. ))
  17516. characterMakers.push(() => makeCharacter(
  17517. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17518. {
  17519. front: {
  17520. height: math.unit(4 + 11 / 12, "feet"),
  17521. weight: math.unit(100, "lb"),
  17522. name: "Front",
  17523. image: {
  17524. source: "./media/characters/luno/front.svg",
  17525. extra: 1535 / 1487,
  17526. bottom: 0.03
  17527. }
  17528. },
  17529. },
  17530. [
  17531. {
  17532. name: "Micro",
  17533. height: math.unit(3, "inches")
  17534. },
  17535. {
  17536. name: "Normal",
  17537. height: math.unit(4 + 11 / 12, "feet"),
  17538. default: true
  17539. },
  17540. {
  17541. name: "Macro",
  17542. height: math.unit(300, "feet")
  17543. },
  17544. {
  17545. name: "Megamacro",
  17546. height: math.unit(700, "miles")
  17547. },
  17548. ]
  17549. ))
  17550. characterMakers.push(() => makeCharacter(
  17551. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17552. {
  17553. front: {
  17554. height: math.unit(6 + 2 / 12, "feet"),
  17555. weight: math.unit(170, "lb"),
  17556. name: "Front",
  17557. image: {
  17558. source: "./media/characters/jamesy/front.svg",
  17559. extra: 440 / 382,
  17560. bottom: 0.005
  17561. }
  17562. },
  17563. },
  17564. [
  17565. {
  17566. name: "Micro",
  17567. height: math.unit(3, "inches")
  17568. },
  17569. {
  17570. name: "Normal",
  17571. height: math.unit(6 + 2 / 12, "feet"),
  17572. default: true
  17573. },
  17574. {
  17575. name: "Macro",
  17576. height: math.unit(300, "feet")
  17577. },
  17578. {
  17579. name: "Megamacro",
  17580. height: math.unit(700, "miles")
  17581. },
  17582. ]
  17583. ))
  17584. characterMakers.push(() => makeCharacter(
  17585. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17586. {
  17587. front: {
  17588. height: math.unit(6, "feet"),
  17589. weight: math.unit(160, "lb"),
  17590. name: "Front",
  17591. image: {
  17592. source: "./media/characters/mark/front.svg",
  17593. extra: 3300 / 3100,
  17594. bottom: 136.42 / 3440.47
  17595. }
  17596. },
  17597. },
  17598. [
  17599. {
  17600. name: "Macro",
  17601. height: math.unit(120, "meters")
  17602. },
  17603. {
  17604. name: "Bigger Macro",
  17605. height: math.unit(350, "meters")
  17606. },
  17607. {
  17608. name: "Megamacro",
  17609. height: math.unit(8, "km"),
  17610. default: true
  17611. },
  17612. {
  17613. name: "Continental",
  17614. height: math.unit(4550, "km")
  17615. },
  17616. {
  17617. name: "Planetary",
  17618. height: math.unit(65000, "km")
  17619. },
  17620. ]
  17621. ))
  17622. characterMakers.push(() => makeCharacter(
  17623. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17624. {
  17625. front: {
  17626. height: math.unit(6, "feet"),
  17627. weight: math.unit(400, "lb"),
  17628. name: "Front",
  17629. image: {
  17630. source: "./media/characters/mac/front.svg",
  17631. extra: 1048 / 987.7,
  17632. bottom: 60 / 1107.6,
  17633. }
  17634. },
  17635. },
  17636. [
  17637. {
  17638. name: "Macro",
  17639. height: math.unit(500, "feet"),
  17640. default: true
  17641. },
  17642. ]
  17643. ))
  17644. characterMakers.push(() => makeCharacter(
  17645. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17646. {
  17647. front: {
  17648. height: math.unit(5 + 2 / 12, "feet"),
  17649. weight: math.unit(190, "lb"),
  17650. name: "Front",
  17651. image: {
  17652. source: "./media/characters/bari/front.svg",
  17653. extra: 3156 / 2880,
  17654. bottom: 0.03
  17655. }
  17656. },
  17657. back: {
  17658. height: math.unit(5 + 2 / 12, "feet"),
  17659. weight: math.unit(190, "lb"),
  17660. name: "Back",
  17661. image: {
  17662. source: "./media/characters/bari/back.svg",
  17663. extra: 3260 / 2834,
  17664. bottom: 0.025
  17665. }
  17666. },
  17667. frontPlush: {
  17668. height: math.unit(5 + 2 / 12, "feet"),
  17669. weight: math.unit(190, "lb"),
  17670. name: "Front (Plush)",
  17671. image: {
  17672. source: "./media/characters/bari/front-plush.svg",
  17673. extra: 1112 / 1061,
  17674. bottom: 0.002
  17675. }
  17676. },
  17677. },
  17678. [
  17679. {
  17680. name: "Micro",
  17681. height: math.unit(3, "inches")
  17682. },
  17683. {
  17684. name: "Normal",
  17685. height: math.unit(5 + 2 / 12, "feet"),
  17686. default: true
  17687. },
  17688. {
  17689. name: "Macro",
  17690. height: math.unit(20, "feet")
  17691. },
  17692. ]
  17693. ))
  17694. characterMakers.push(() => makeCharacter(
  17695. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17696. {
  17697. front: {
  17698. height: math.unit(6 + 1 / 12, "feet"),
  17699. weight: math.unit(275, "lb"),
  17700. name: "Front",
  17701. image: {
  17702. source: "./media/characters/hunter-misha-raven/front.svg"
  17703. }
  17704. },
  17705. },
  17706. [
  17707. {
  17708. name: "Mortal",
  17709. height: math.unit(6 + 1 / 12, "feet")
  17710. },
  17711. {
  17712. name: "Divine",
  17713. height: math.unit(1.12134e34, "parsecs"),
  17714. default: true
  17715. },
  17716. ]
  17717. ))
  17718. characterMakers.push(() => makeCharacter(
  17719. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17720. {
  17721. front: {
  17722. height: math.unit(6 + 3 / 12, "feet"),
  17723. weight: math.unit(220, "lb"),
  17724. name: "Front",
  17725. image: {
  17726. source: "./media/characters/max-calore/front.svg",
  17727. extra: 1700 / 1648,
  17728. bottom: 0.01
  17729. }
  17730. },
  17731. back: {
  17732. height: math.unit(6 + 3 / 12, "feet"),
  17733. weight: math.unit(220, "lb"),
  17734. name: "Back",
  17735. image: {
  17736. source: "./media/characters/max-calore/back.svg",
  17737. extra: 1700 / 1648,
  17738. bottom: 0.01
  17739. }
  17740. },
  17741. },
  17742. [
  17743. {
  17744. name: "Normal",
  17745. height: math.unit(6 + 3 / 12, "feet"),
  17746. default: true
  17747. },
  17748. ]
  17749. ))
  17750. characterMakers.push(() => makeCharacter(
  17751. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17752. {
  17753. side: {
  17754. height: math.unit(2 + 8 / 12, "feet"),
  17755. weight: math.unit(99, "lb"),
  17756. name: "Side",
  17757. image: {
  17758. source: "./media/characters/aspen/side.svg",
  17759. extra: 152 / 138,
  17760. bottom: 0.032
  17761. }
  17762. },
  17763. },
  17764. [
  17765. {
  17766. name: "Normal",
  17767. height: math.unit(2 + 8 / 12, "feet"),
  17768. default: true
  17769. },
  17770. ]
  17771. ))
  17772. characterMakers.push(() => makeCharacter(
  17773. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17774. {
  17775. side: {
  17776. height: math.unit(3 + 2 / 12, "feet"),
  17777. weight: math.unit(224, "lb"),
  17778. name: "Side",
  17779. image: {
  17780. source: "./media/characters/sheila-feral-wolf/side.svg",
  17781. extra: 179 / 166,
  17782. bottom: 0.03
  17783. }
  17784. },
  17785. },
  17786. [
  17787. {
  17788. name: "Normal",
  17789. height: math.unit(3 + 2 / 12, "feet"),
  17790. default: true
  17791. },
  17792. ]
  17793. ))
  17794. characterMakers.push(() => makeCharacter(
  17795. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17796. {
  17797. side: {
  17798. height: math.unit(1 + 9 / 12, "feet"),
  17799. weight: math.unit(38, "lb"),
  17800. name: "Side",
  17801. image: {
  17802. source: "./media/characters/michelle/side.svg",
  17803. extra: 147 / 136.7,
  17804. bottom: 0.03
  17805. }
  17806. },
  17807. },
  17808. [
  17809. {
  17810. name: "Normal",
  17811. height: math.unit(1 + 9 / 12, "feet"),
  17812. default: true
  17813. },
  17814. ]
  17815. ))
  17816. characterMakers.push(() => makeCharacter(
  17817. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17818. {
  17819. front: {
  17820. height: math.unit(1.54, "feet"),
  17821. weight: math.unit(50, "lb"),
  17822. name: "Front",
  17823. image: {
  17824. source: "./media/characters/nino/front.svg"
  17825. }
  17826. },
  17827. },
  17828. [
  17829. {
  17830. name: "Normal",
  17831. height: math.unit(1.54, "feet"),
  17832. default: true
  17833. },
  17834. ]
  17835. ))
  17836. characterMakers.push(() => makeCharacter(
  17837. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17838. {
  17839. front: {
  17840. height: math.unit(1.49, "feet"),
  17841. weight: math.unit(45, "lb"),
  17842. name: "Front",
  17843. image: {
  17844. source: "./media/characters/viola/front.svg"
  17845. }
  17846. },
  17847. },
  17848. [
  17849. {
  17850. name: "Normal",
  17851. height: math.unit(1.49, "feet"),
  17852. default: true
  17853. },
  17854. ]
  17855. ))
  17856. characterMakers.push(() => makeCharacter(
  17857. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17858. {
  17859. front: {
  17860. height: math.unit(6 + 5 / 12, "feet"),
  17861. weight: math.unit(580, "lb"),
  17862. name: "Front",
  17863. image: {
  17864. source: "./media/characters/atlas/front.svg",
  17865. extra: 298.5 / 290,
  17866. bottom: 0.015
  17867. }
  17868. },
  17869. },
  17870. [
  17871. {
  17872. name: "Normal",
  17873. height: math.unit(6 + 5 / 12, "feet"),
  17874. default: true
  17875. },
  17876. ]
  17877. ))
  17878. characterMakers.push(() => makeCharacter(
  17879. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17880. {
  17881. side: {
  17882. height: math.unit(15.6, "inches"),
  17883. weight: math.unit(10, "lb"),
  17884. name: "Side",
  17885. image: {
  17886. source: "./media/characters/davy/side.svg",
  17887. extra: 200 / 170,
  17888. bottom: 0.01
  17889. }
  17890. },
  17891. },
  17892. [
  17893. {
  17894. name: "Normal",
  17895. height: math.unit(15.6, "inches"),
  17896. default: true
  17897. },
  17898. ]
  17899. ))
  17900. characterMakers.push(() => makeCharacter(
  17901. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17902. {
  17903. side: {
  17904. height: math.unit(4 + 8 / 12, "feet"),
  17905. weight: math.unit(166, "lb"),
  17906. name: "Side",
  17907. image: {
  17908. source: "./media/characters/fiona/side.svg",
  17909. extra: 232 / 220,
  17910. bottom: 0.03
  17911. }
  17912. },
  17913. },
  17914. [
  17915. {
  17916. name: "Normal",
  17917. height: math.unit(4 + 8 / 12, "feet"),
  17918. default: true
  17919. },
  17920. ]
  17921. ))
  17922. characterMakers.push(() => makeCharacter(
  17923. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17924. {
  17925. front: {
  17926. height: math.unit(26, "inches"),
  17927. weight: math.unit(35, "lb"),
  17928. name: "Front",
  17929. image: {
  17930. source: "./media/characters/lyla/front.svg",
  17931. bottom: 0.1
  17932. }
  17933. },
  17934. },
  17935. [
  17936. {
  17937. name: "Normal",
  17938. height: math.unit(3, "feet"),
  17939. default: true
  17940. },
  17941. ]
  17942. ))
  17943. characterMakers.push(() => makeCharacter(
  17944. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17945. {
  17946. side: {
  17947. height: math.unit(1.8, "feet"),
  17948. weight: math.unit(44, "lb"),
  17949. name: "Side",
  17950. image: {
  17951. source: "./media/characters/perseus/side.svg",
  17952. bottom: 0.21
  17953. }
  17954. },
  17955. },
  17956. [
  17957. {
  17958. name: "Normal",
  17959. height: math.unit(1.8, "feet"),
  17960. default: true
  17961. },
  17962. ]
  17963. ))
  17964. characterMakers.push(() => makeCharacter(
  17965. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17966. {
  17967. side: {
  17968. height: math.unit(4 + 2 / 12, "feet"),
  17969. weight: math.unit(20, "lb"),
  17970. name: "Side",
  17971. image: {
  17972. source: "./media/characters/remus/side.svg"
  17973. }
  17974. },
  17975. },
  17976. [
  17977. {
  17978. name: "Normal",
  17979. height: math.unit(4 + 2 / 12, "feet"),
  17980. default: true
  17981. },
  17982. ]
  17983. ))
  17984. characterMakers.push(() => makeCharacter(
  17985. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17986. {
  17987. front: {
  17988. height: math.unit(4 + 11 / 12, "feet"),
  17989. weight: math.unit(114, "lb"),
  17990. name: "Front",
  17991. image: {
  17992. source: "./media/characters/raf/front.svg",
  17993. extra: 1504/1339,
  17994. bottom: 26/1530
  17995. }
  17996. },
  17997. side: {
  17998. height: math.unit(4 + 11 / 12, "feet"),
  17999. weight: math.unit(114, "lb"),
  18000. name: "Side",
  18001. image: {
  18002. source: "./media/characters/raf/side.svg",
  18003. extra: 1466/1316,
  18004. bottom: 29/1495
  18005. }
  18006. },
  18007. paw: {
  18008. height: math.unit(1.45, "feet"),
  18009. name: "Paw",
  18010. image: {
  18011. source: "./media/characters/raf/paw.svg"
  18012. },
  18013. extraAttributes: {
  18014. "toeSize": {
  18015. name: "Toe Size",
  18016. power: 2,
  18017. type: "area",
  18018. base: math.unit(0.004, "m^2")
  18019. },
  18020. "padSize": {
  18021. name: "Pad Size",
  18022. power: 2,
  18023. type: "area",
  18024. base: math.unit(0.04, "m^2")
  18025. },
  18026. "footSize": {
  18027. name: "Foot Size",
  18028. power: 2,
  18029. type: "area",
  18030. base: math.unit(0.08, "m^2")
  18031. },
  18032. }
  18033. },
  18034. },
  18035. [
  18036. {
  18037. name: "Micro",
  18038. height: math.unit(2, "inches")
  18039. },
  18040. {
  18041. name: "Normal",
  18042. height: math.unit(4 + 11 / 12, "feet"),
  18043. default: true
  18044. },
  18045. {
  18046. name: "Macro",
  18047. height: math.unit(70, "feet")
  18048. },
  18049. ]
  18050. ))
  18051. characterMakers.push(() => makeCharacter(
  18052. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18053. {
  18054. front: {
  18055. height: math.unit(1.5, "meters"),
  18056. weight: math.unit(68, "kg"),
  18057. name: "Front",
  18058. image: {
  18059. source: "./media/characters/liam-einarr/front.svg",
  18060. extra: 2822 / 2666
  18061. }
  18062. },
  18063. back: {
  18064. height: math.unit(1.5, "meters"),
  18065. weight: math.unit(68, "kg"),
  18066. name: "Back",
  18067. image: {
  18068. source: "./media/characters/liam-einarr/back.svg",
  18069. extra: 2822 / 2666,
  18070. bottom: 0.015
  18071. }
  18072. },
  18073. },
  18074. [
  18075. {
  18076. name: "Normal",
  18077. height: math.unit(1.5, "meters"),
  18078. default: true
  18079. },
  18080. {
  18081. name: "Macro",
  18082. height: math.unit(150, "meters")
  18083. },
  18084. {
  18085. name: "Megamacro",
  18086. height: math.unit(35, "km")
  18087. },
  18088. ]
  18089. ))
  18090. characterMakers.push(() => makeCharacter(
  18091. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18092. {
  18093. front: {
  18094. height: math.unit(6, "feet"),
  18095. weight: math.unit(75, "kg"),
  18096. name: "Front",
  18097. image: {
  18098. source: "./media/characters/linda/front.svg",
  18099. extra: 930 / 874,
  18100. bottom: 0.004
  18101. }
  18102. },
  18103. },
  18104. [
  18105. {
  18106. name: "Normal",
  18107. height: math.unit(6, "feet"),
  18108. default: true
  18109. },
  18110. ]
  18111. ))
  18112. characterMakers.push(() => makeCharacter(
  18113. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  18114. {
  18115. front: {
  18116. height: math.unit(6 + 8 / 12, "feet"),
  18117. weight: math.unit(220, "lb"),
  18118. name: "Front",
  18119. image: {
  18120. source: "./media/characters/caylex/front.svg",
  18121. extra: 821 / 772,
  18122. bottom: 0.07
  18123. }
  18124. },
  18125. back: {
  18126. height: math.unit(6 + 8 / 12, "feet"),
  18127. weight: math.unit(220, "lb"),
  18128. name: "Back",
  18129. image: {
  18130. source: "./media/characters/caylex/back.svg",
  18131. extra: 821 / 772,
  18132. bottom: 0.022
  18133. }
  18134. },
  18135. hand: {
  18136. height: math.unit(1.25, "feet"),
  18137. name: "Hand",
  18138. image: {
  18139. source: "./media/characters/caylex/hand.svg"
  18140. }
  18141. },
  18142. foot: {
  18143. height: math.unit(1.6, "feet"),
  18144. name: "Foot",
  18145. image: {
  18146. source: "./media/characters/caylex/foot.svg"
  18147. }
  18148. },
  18149. armored: {
  18150. height: math.unit(6 + 8 / 12, "feet"),
  18151. weight: math.unit(250, "lb"),
  18152. name: "Armored",
  18153. image: {
  18154. source: "./media/characters/caylex/armored.svg",
  18155. extra: 1420 / 1310,
  18156. bottom: 0.045
  18157. }
  18158. },
  18159. },
  18160. [
  18161. {
  18162. name: "Normal",
  18163. height: math.unit(6 + 8 / 12, "feet"),
  18164. default: true
  18165. },
  18166. {
  18167. name: "Normal+",
  18168. height: math.unit(12, "feet")
  18169. },
  18170. ]
  18171. ))
  18172. characterMakers.push(() => makeCharacter(
  18173. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  18174. {
  18175. front: {
  18176. height: math.unit(7 + 6 / 12, "feet"),
  18177. weight: math.unit(288, "lb"),
  18178. name: "Front",
  18179. image: {
  18180. source: "./media/characters/alana/front.svg",
  18181. extra: 679 / 653,
  18182. bottom: 22.5 / 701
  18183. }
  18184. },
  18185. },
  18186. [
  18187. {
  18188. name: "Normal",
  18189. height: math.unit(7 + 6 / 12, "feet")
  18190. },
  18191. {
  18192. name: "Large",
  18193. height: math.unit(50, "feet")
  18194. },
  18195. {
  18196. name: "Macro",
  18197. height: math.unit(100, "feet"),
  18198. default: true
  18199. },
  18200. {
  18201. name: "Macro+",
  18202. height: math.unit(200, "feet")
  18203. },
  18204. ]
  18205. ))
  18206. characterMakers.push(() => makeCharacter(
  18207. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  18208. {
  18209. front: {
  18210. height: math.unit(6 + 1 / 12, "feet"),
  18211. weight: math.unit(210, "lb"),
  18212. name: "Front",
  18213. image: {
  18214. source: "./media/characters/hasani/front.svg",
  18215. extra: 244 / 232,
  18216. bottom: 0.01
  18217. }
  18218. },
  18219. back: {
  18220. height: math.unit(6 + 1 / 12, "feet"),
  18221. weight: math.unit(210, "lb"),
  18222. name: "Back",
  18223. image: {
  18224. source: "./media/characters/hasani/back.svg",
  18225. extra: 244 / 232,
  18226. bottom: 0.01
  18227. }
  18228. },
  18229. },
  18230. [
  18231. {
  18232. name: "Normal",
  18233. height: math.unit(6 + 1 / 12, "feet")
  18234. },
  18235. {
  18236. name: "Macro",
  18237. height: math.unit(175, "feet"),
  18238. default: true
  18239. },
  18240. ]
  18241. ))
  18242. characterMakers.push(() => makeCharacter(
  18243. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  18244. {
  18245. front: {
  18246. height: math.unit(1.82, "meters"),
  18247. weight: math.unit(140, "lb"),
  18248. name: "Front",
  18249. image: {
  18250. source: "./media/characters/nita/front.svg",
  18251. extra: 2473 / 2363,
  18252. bottom: 0.01
  18253. }
  18254. },
  18255. },
  18256. [
  18257. {
  18258. name: "Normal",
  18259. height: math.unit(1.82, "m")
  18260. },
  18261. {
  18262. name: "Macro",
  18263. height: math.unit(300, "m")
  18264. },
  18265. {
  18266. name: "Mistake Canon",
  18267. height: math.unit(0.5, "miles"),
  18268. default: true
  18269. },
  18270. {
  18271. name: "Big Mistake",
  18272. height: math.unit(13, "miles")
  18273. },
  18274. {
  18275. name: "Playing God",
  18276. height: math.unit(2450, "miles")
  18277. },
  18278. ]
  18279. ))
  18280. characterMakers.push(() => makeCharacter(
  18281. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  18282. {
  18283. front: {
  18284. height: math.unit(4, "feet"),
  18285. weight: math.unit(120, "lb"),
  18286. name: "Front",
  18287. image: {
  18288. source: "./media/characters/shiriko/front.svg",
  18289. extra: 970/934,
  18290. bottom: 5/975
  18291. }
  18292. },
  18293. },
  18294. [
  18295. {
  18296. name: "Normal",
  18297. height: math.unit(4, "feet"),
  18298. default: true
  18299. },
  18300. ]
  18301. ))
  18302. characterMakers.push(() => makeCharacter(
  18303. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  18304. {
  18305. front: {
  18306. height: math.unit(6, "feet"),
  18307. name: "front",
  18308. image: {
  18309. source: "./media/characters/deja/front.svg",
  18310. extra: 926 / 840,
  18311. bottom: 0.07
  18312. }
  18313. },
  18314. },
  18315. [
  18316. {
  18317. name: "Planck Length",
  18318. height: math.unit(1.6e-35, "meters")
  18319. },
  18320. {
  18321. name: "Normal",
  18322. height: math.unit(30.48, "meters"),
  18323. default: true
  18324. },
  18325. {
  18326. name: "Universal",
  18327. height: math.unit(8.8e26, "meters")
  18328. },
  18329. ]
  18330. ))
  18331. characterMakers.push(() => makeCharacter(
  18332. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  18333. {
  18334. side: {
  18335. height: math.unit(8, "feet"),
  18336. weight: math.unit(6300, "lb"),
  18337. name: "Side",
  18338. image: {
  18339. source: "./media/characters/anima/side.svg",
  18340. bottom: 0.035
  18341. }
  18342. },
  18343. },
  18344. [
  18345. {
  18346. name: "Normal",
  18347. height: math.unit(8, "feet"),
  18348. default: true
  18349. },
  18350. ]
  18351. ))
  18352. characterMakers.push(() => makeCharacter(
  18353. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  18354. {
  18355. front: {
  18356. height: math.unit(8, "feet"),
  18357. weight: math.unit(350, "lb"),
  18358. name: "Front",
  18359. image: {
  18360. source: "./media/characters/bianca/front.svg",
  18361. extra: 234 / 225,
  18362. bottom: 0.03
  18363. }
  18364. },
  18365. },
  18366. [
  18367. {
  18368. name: "Normal",
  18369. height: math.unit(8, "feet"),
  18370. default: true
  18371. },
  18372. ]
  18373. ))
  18374. characterMakers.push(() => makeCharacter(
  18375. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18376. {
  18377. front: {
  18378. height: math.unit(11 + 5/12, "feet"),
  18379. weight: math.unit(1200, "lb"),
  18380. name: "Front",
  18381. image: {
  18382. source: "./media/characters/adinia/front.svg",
  18383. extra: 1767/1641,
  18384. bottom: 44/1811
  18385. },
  18386. extraAttributes: {
  18387. "energyIntake": {
  18388. name: "Energy Intake",
  18389. power: 3,
  18390. type: "energy",
  18391. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18392. },
  18393. }
  18394. },
  18395. back: {
  18396. height: math.unit(11 + 5/12, "feet"),
  18397. weight: math.unit(1200, "lb"),
  18398. name: "Back",
  18399. image: {
  18400. source: "./media/characters/adinia/back.svg",
  18401. extra: 1834/1684,
  18402. bottom: 14/1848
  18403. },
  18404. extraAttributes: {
  18405. "energyIntake": {
  18406. name: "Energy Intake",
  18407. power: 3,
  18408. type: "energy",
  18409. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  18410. },
  18411. }
  18412. },
  18413. maw: {
  18414. height: math.unit(3.79, "feet"),
  18415. name: "Maw",
  18416. image: {
  18417. source: "./media/characters/adinia/maw.svg"
  18418. }
  18419. },
  18420. rump: {
  18421. height: math.unit(4.6, "feet"),
  18422. name: "Rump",
  18423. image: {
  18424. source: "./media/characters/adinia/rump.svg"
  18425. }
  18426. },
  18427. },
  18428. [
  18429. {
  18430. name: "Normal",
  18431. height: math.unit(11 + 5 / 12, "feet"),
  18432. default: true
  18433. },
  18434. ]
  18435. ))
  18436. characterMakers.push(() => makeCharacter(
  18437. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18438. {
  18439. front: {
  18440. height: math.unit(3, "meters"),
  18441. weight: math.unit(200, "kg"),
  18442. name: "Front",
  18443. image: {
  18444. source: "./media/characters/lykasa/front.svg",
  18445. extra: 1076 / 976,
  18446. bottom: 0.06
  18447. }
  18448. },
  18449. },
  18450. [
  18451. {
  18452. name: "Normal",
  18453. height: math.unit(3, "meters")
  18454. },
  18455. {
  18456. name: "Kaiju",
  18457. height: math.unit(120, "meters"),
  18458. default: true
  18459. },
  18460. {
  18461. name: "Mega Kaiju",
  18462. height: math.unit(240, "km")
  18463. },
  18464. {
  18465. name: "Giga Kaiju",
  18466. height: math.unit(400, "megameters")
  18467. },
  18468. {
  18469. name: "Tera Kaiju",
  18470. height: math.unit(800, "gigameters")
  18471. },
  18472. {
  18473. name: "Kaiju Dragon Goddess",
  18474. height: math.unit(26, "zettaparsecs")
  18475. },
  18476. ]
  18477. ))
  18478. characterMakers.push(() => makeCharacter(
  18479. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18480. {
  18481. side: {
  18482. height: math.unit(283 / 124 * 6, "feet"),
  18483. weight: math.unit(35000, "lb"),
  18484. name: "Side",
  18485. image: {
  18486. source: "./media/characters/malfaren/side.svg",
  18487. extra: 1310/529,
  18488. bottom: 24/1334
  18489. }
  18490. },
  18491. front: {
  18492. height: math.unit(22.36, "feet"),
  18493. weight: math.unit(35000, "lb"),
  18494. name: "Front",
  18495. image: {
  18496. source: "./media/characters/malfaren/front.svg",
  18497. extra: 1237/1115,
  18498. bottom: 32/1269
  18499. }
  18500. },
  18501. maw: {
  18502. height: math.unit(6.9, "feet"),
  18503. name: "Maw",
  18504. image: {
  18505. source: "./media/characters/malfaren/maw.svg"
  18506. }
  18507. },
  18508. dick: {
  18509. height: math.unit(6.19, "feet"),
  18510. name: "Dick",
  18511. image: {
  18512. source: "./media/characters/malfaren/dick.svg"
  18513. }
  18514. },
  18515. eye: {
  18516. height: math.unit(0.69, "feet"),
  18517. name: "Eye",
  18518. image: {
  18519. source: "./media/characters/malfaren/eye.svg"
  18520. }
  18521. },
  18522. },
  18523. [
  18524. {
  18525. name: "Big",
  18526. height: math.unit(283 / 162 * 6, "feet"),
  18527. },
  18528. {
  18529. name: "Bigger",
  18530. height: math.unit(283 / 124 * 6, "feet")
  18531. },
  18532. {
  18533. name: "Massive",
  18534. height: math.unit(283 / 92 * 6, "feet"),
  18535. default: true
  18536. },
  18537. {
  18538. name: "👀💦",
  18539. height: math.unit(283 / 73 * 6, "feet"),
  18540. },
  18541. ]
  18542. ))
  18543. characterMakers.push(() => makeCharacter(
  18544. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18545. {
  18546. front: {
  18547. height: math.unit(1.7, "m"),
  18548. weight: math.unit(70, "kg"),
  18549. name: "Front",
  18550. image: {
  18551. source: "./media/characters/kernel/front.svg",
  18552. extra: 222 / 210,
  18553. bottom: 0.007
  18554. }
  18555. },
  18556. },
  18557. [
  18558. {
  18559. name: "Nano",
  18560. height: math.unit(17, "micrometers")
  18561. },
  18562. {
  18563. name: "Micro",
  18564. height: math.unit(1.7, "mm")
  18565. },
  18566. {
  18567. name: "Small",
  18568. height: math.unit(1.7, "cm")
  18569. },
  18570. {
  18571. name: "Normal",
  18572. height: math.unit(1.7, "m"),
  18573. default: true
  18574. },
  18575. ]
  18576. ))
  18577. characterMakers.push(() => makeCharacter(
  18578. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18579. {
  18580. front: {
  18581. height: math.unit(1.75, "meters"),
  18582. weight: math.unit(65, "kg"),
  18583. name: "Front",
  18584. image: {
  18585. source: "./media/characters/jayne-folest/front.svg",
  18586. extra: 2115 / 2007,
  18587. bottom: 0.02
  18588. }
  18589. },
  18590. back: {
  18591. height: math.unit(1.75, "meters"),
  18592. weight: math.unit(65, "kg"),
  18593. name: "Back",
  18594. image: {
  18595. source: "./media/characters/jayne-folest/back.svg",
  18596. extra: 2115 / 2007,
  18597. bottom: 0.005
  18598. }
  18599. },
  18600. frontClothed: {
  18601. height: math.unit(1.75, "meters"),
  18602. weight: math.unit(65, "kg"),
  18603. name: "Front (Clothed)",
  18604. image: {
  18605. source: "./media/characters/jayne-folest/front-clothed.svg",
  18606. extra: 2115 / 2007,
  18607. bottom: 0.035
  18608. }
  18609. },
  18610. hand: {
  18611. height: math.unit(1 / 1.260, "feet"),
  18612. name: "Hand",
  18613. image: {
  18614. source: "./media/characters/jayne-folest/hand.svg"
  18615. }
  18616. },
  18617. foot: {
  18618. height: math.unit(1 / 0.918, "feet"),
  18619. name: "Foot",
  18620. image: {
  18621. source: "./media/characters/jayne-folest/foot.svg"
  18622. }
  18623. },
  18624. },
  18625. [
  18626. {
  18627. name: "Micro",
  18628. height: math.unit(4, "cm")
  18629. },
  18630. {
  18631. name: "Normal",
  18632. height: math.unit(1.75, "meters")
  18633. },
  18634. {
  18635. name: "Macro",
  18636. height: math.unit(47.5, "meters"),
  18637. default: true
  18638. },
  18639. ]
  18640. ))
  18641. characterMakers.push(() => makeCharacter(
  18642. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18643. {
  18644. front: {
  18645. height: math.unit(180, "cm"),
  18646. weight: math.unit(70, "kg"),
  18647. name: "Front",
  18648. image: {
  18649. source: "./media/characters/algier/front.svg",
  18650. extra: 596 / 572,
  18651. bottom: 0.04
  18652. }
  18653. },
  18654. back: {
  18655. height: math.unit(180, "cm"),
  18656. weight: math.unit(70, "kg"),
  18657. name: "Back",
  18658. image: {
  18659. source: "./media/characters/algier/back.svg",
  18660. extra: 596 / 572,
  18661. bottom: 0.025
  18662. }
  18663. },
  18664. frontdressed: {
  18665. height: math.unit(180, "cm"),
  18666. weight: math.unit(150, "kg"),
  18667. name: "Front-dressed",
  18668. image: {
  18669. source: "./media/characters/algier/front-dressed.svg",
  18670. extra: 596 / 572,
  18671. bottom: 0.038
  18672. }
  18673. },
  18674. },
  18675. [
  18676. {
  18677. name: "Micro",
  18678. height: math.unit(5, "cm")
  18679. },
  18680. {
  18681. name: "Normal",
  18682. height: math.unit(180, "cm"),
  18683. default: true
  18684. },
  18685. {
  18686. name: "Macro",
  18687. height: math.unit(64, "m")
  18688. },
  18689. ]
  18690. ))
  18691. characterMakers.push(() => makeCharacter(
  18692. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18693. {
  18694. upright: {
  18695. height: math.unit(7, "feet"),
  18696. weight: math.unit(300, "lb"),
  18697. name: "Upright",
  18698. image: {
  18699. source: "./media/characters/pretzel/upright.svg",
  18700. extra: 534 / 522,
  18701. bottom: 0.065
  18702. }
  18703. },
  18704. sprawling: {
  18705. height: math.unit(3.75, "feet"),
  18706. weight: math.unit(300, "lb"),
  18707. name: "Sprawling",
  18708. image: {
  18709. source: "./media/characters/pretzel/sprawling.svg",
  18710. extra: 314 / 281,
  18711. bottom: 0.1
  18712. }
  18713. },
  18714. tongue: {
  18715. height: math.unit(2, "feet"),
  18716. name: "Tongue",
  18717. image: {
  18718. source: "./media/characters/pretzel/tongue.svg"
  18719. }
  18720. },
  18721. },
  18722. [
  18723. {
  18724. name: "Normal",
  18725. height: math.unit(7, "feet"),
  18726. default: true
  18727. },
  18728. {
  18729. name: "Oversized",
  18730. height: math.unit(15, "feet")
  18731. },
  18732. {
  18733. name: "Huge",
  18734. height: math.unit(30, "feet")
  18735. },
  18736. {
  18737. name: "Macro",
  18738. height: math.unit(250, "feet")
  18739. },
  18740. ]
  18741. ))
  18742. characterMakers.push(() => makeCharacter(
  18743. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18744. {
  18745. sideFront: {
  18746. height: math.unit(5 + 2 / 12, "feet"),
  18747. weight: math.unit(120, "lb"),
  18748. name: "Front Side",
  18749. image: {
  18750. source: "./media/characters/roxi/side-front.svg",
  18751. extra: 2924 / 2717,
  18752. bottom: 0.08
  18753. }
  18754. },
  18755. sideBack: {
  18756. height: math.unit(5 + 2 / 12, "feet"),
  18757. weight: math.unit(120, "lb"),
  18758. name: "Back Side",
  18759. image: {
  18760. source: "./media/characters/roxi/side-back.svg",
  18761. extra: 2904 / 2693,
  18762. bottom: 0.06
  18763. }
  18764. },
  18765. front: {
  18766. height: math.unit(5 + 2 / 12, "feet"),
  18767. weight: math.unit(120, "lb"),
  18768. name: "Front",
  18769. image: {
  18770. source: "./media/characters/roxi/front.svg",
  18771. extra: 2028 / 1907,
  18772. bottom: 0.01
  18773. }
  18774. },
  18775. frontAlt: {
  18776. height: math.unit(5 + 2 / 12, "feet"),
  18777. weight: math.unit(120, "lb"),
  18778. name: "Front (Alt)",
  18779. image: {
  18780. source: "./media/characters/roxi/front-alt.svg",
  18781. extra: 1828 / 1798,
  18782. bottom: 0.01
  18783. }
  18784. },
  18785. sitting: {
  18786. height: math.unit(2.8, "feet"),
  18787. weight: math.unit(120, "lb"),
  18788. name: "Sitting",
  18789. image: {
  18790. source: "./media/characters/roxi/sitting.svg",
  18791. extra: 2660 / 2462,
  18792. bottom: 0.1
  18793. }
  18794. },
  18795. },
  18796. [
  18797. {
  18798. name: "Normal",
  18799. height: math.unit(5 + 2 / 12, "feet"),
  18800. default: true
  18801. },
  18802. ]
  18803. ))
  18804. characterMakers.push(() => makeCharacter(
  18805. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18806. {
  18807. side: {
  18808. height: math.unit(55, "feet"),
  18809. weight: math.unit(153, "tons"),
  18810. name: "Side",
  18811. image: {
  18812. source: "./media/characters/shadow/side.svg",
  18813. extra: 701 / 628,
  18814. bottom: 0.02
  18815. }
  18816. },
  18817. flying: {
  18818. height: math.unit(145, "feet"),
  18819. weight: math.unit(153, "tons"),
  18820. name: "Flying",
  18821. image: {
  18822. source: "./media/characters/shadow/flying.svg"
  18823. }
  18824. },
  18825. },
  18826. [
  18827. {
  18828. name: "Normal",
  18829. height: math.unit(55, "feet"),
  18830. default: true
  18831. },
  18832. ]
  18833. ))
  18834. characterMakers.push(() => makeCharacter(
  18835. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18836. {
  18837. front: {
  18838. height: math.unit(6, "feet"),
  18839. weight: math.unit(200, "lb"),
  18840. name: "Front",
  18841. image: {
  18842. source: "./media/characters/marcie/front.svg",
  18843. extra: 960 / 876,
  18844. bottom: 58 / 1017.87
  18845. }
  18846. },
  18847. },
  18848. [
  18849. {
  18850. name: "Macro",
  18851. height: math.unit(1, "mile"),
  18852. default: true
  18853. },
  18854. ]
  18855. ))
  18856. characterMakers.push(() => makeCharacter(
  18857. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18858. {
  18859. front: {
  18860. height: math.unit(7, "feet"),
  18861. weight: math.unit(200, "lb"),
  18862. name: "Front",
  18863. image: {
  18864. source: "./media/characters/kachina/front.svg",
  18865. extra: 1290.68 / 1119,
  18866. bottom: 36.5 / 1327.18
  18867. }
  18868. },
  18869. },
  18870. [
  18871. {
  18872. name: "Normal",
  18873. height: math.unit(7, "feet"),
  18874. default: true
  18875. },
  18876. ]
  18877. ))
  18878. characterMakers.push(() => makeCharacter(
  18879. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18880. {
  18881. looking: {
  18882. height: math.unit(2, "meters"),
  18883. weight: math.unit(300, "kg"),
  18884. name: "Looking",
  18885. image: {
  18886. source: "./media/characters/kash/looking.svg",
  18887. extra: 474 / 344,
  18888. bottom: 0.03
  18889. }
  18890. },
  18891. side: {
  18892. height: math.unit(2, "meters"),
  18893. weight: math.unit(300, "kg"),
  18894. name: "Side",
  18895. image: {
  18896. source: "./media/characters/kash/side.svg",
  18897. extra: 302 / 251,
  18898. bottom: 0.03
  18899. }
  18900. },
  18901. front: {
  18902. height: math.unit(2, "meters"),
  18903. weight: math.unit(300, "kg"),
  18904. name: "Front",
  18905. image: {
  18906. source: "./media/characters/kash/front.svg",
  18907. extra: 495 / 360,
  18908. bottom: 0.015
  18909. }
  18910. },
  18911. },
  18912. [
  18913. {
  18914. name: "Normal",
  18915. height: math.unit(2, "meters"),
  18916. default: true
  18917. },
  18918. {
  18919. name: "Big",
  18920. height: math.unit(3, "meters")
  18921. },
  18922. {
  18923. name: "Large",
  18924. height: math.unit(5, "meters")
  18925. },
  18926. ]
  18927. ))
  18928. characterMakers.push(() => makeCharacter(
  18929. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18930. {
  18931. feeding: {
  18932. height: math.unit(6.7, "feet"),
  18933. weight: math.unit(350, "lb"),
  18934. name: "Feeding",
  18935. image: {
  18936. source: "./media/characters/lalim/feeding.svg",
  18937. }
  18938. },
  18939. },
  18940. [
  18941. {
  18942. name: "Normal",
  18943. height: math.unit(6.7, "feet"),
  18944. default: true
  18945. },
  18946. ]
  18947. ))
  18948. characterMakers.push(() => makeCharacter(
  18949. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18950. {
  18951. front: {
  18952. height: math.unit(9.5, "feet"),
  18953. weight: math.unit(600, "lb"),
  18954. name: "Front",
  18955. image: {
  18956. source: "./media/characters/de'vout/front.svg",
  18957. extra: 1443 / 1328,
  18958. bottom: 0.025
  18959. }
  18960. },
  18961. back: {
  18962. height: math.unit(9.5, "feet"),
  18963. weight: math.unit(600, "lb"),
  18964. name: "Back",
  18965. image: {
  18966. source: "./media/characters/de'vout/back.svg",
  18967. extra: 1443 / 1328
  18968. }
  18969. },
  18970. frontDressed: {
  18971. height: math.unit(9.5, "feet"),
  18972. weight: math.unit(600, "lb"),
  18973. name: "Front (Dressed",
  18974. image: {
  18975. source: "./media/characters/de'vout/front-dressed.svg",
  18976. extra: 1443 / 1328,
  18977. bottom: 0.025
  18978. }
  18979. },
  18980. backDressed: {
  18981. height: math.unit(9.5, "feet"),
  18982. weight: math.unit(600, "lb"),
  18983. name: "Back (Dressed",
  18984. image: {
  18985. source: "./media/characters/de'vout/back-dressed.svg",
  18986. extra: 1443 / 1328
  18987. }
  18988. },
  18989. },
  18990. [
  18991. {
  18992. name: "Normal",
  18993. height: math.unit(9.5, "feet"),
  18994. default: true
  18995. },
  18996. ]
  18997. ))
  18998. characterMakers.push(() => makeCharacter(
  18999. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19000. {
  19001. front: {
  19002. height: math.unit(8, "feet"),
  19003. weight: math.unit(225, "lb"),
  19004. name: "Front",
  19005. image: {
  19006. source: "./media/characters/talana/front.svg",
  19007. extra: 1410 / 1300,
  19008. bottom: 0.015
  19009. }
  19010. },
  19011. frontDressed: {
  19012. height: math.unit(8, "feet"),
  19013. weight: math.unit(225, "lb"),
  19014. name: "Front (Dressed",
  19015. image: {
  19016. source: "./media/characters/talana/front-dressed.svg",
  19017. extra: 1410 / 1300,
  19018. bottom: 0.015
  19019. }
  19020. },
  19021. },
  19022. [
  19023. {
  19024. name: "Normal",
  19025. height: math.unit(8, "feet"),
  19026. default: true
  19027. },
  19028. ]
  19029. ))
  19030. characterMakers.push(() => makeCharacter(
  19031. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19032. {
  19033. side: {
  19034. height: math.unit(7.2, "feet"),
  19035. weight: math.unit(150, "lb"),
  19036. name: "Side",
  19037. image: {
  19038. source: "./media/characters/xeauvok/side.svg",
  19039. extra: 1975 / 1523,
  19040. bottom: 0.07
  19041. }
  19042. },
  19043. },
  19044. [
  19045. {
  19046. name: "Normal",
  19047. height: math.unit(7.2, "feet"),
  19048. default: true
  19049. },
  19050. ]
  19051. ))
  19052. characterMakers.push(() => makeCharacter(
  19053. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19054. {
  19055. side: {
  19056. height: math.unit(4, "meters"),
  19057. weight: math.unit(2200, "kg"),
  19058. name: "Side",
  19059. image: {
  19060. source: "./media/characters/zara/side.svg",
  19061. extra: 765/744,
  19062. bottom: 156/921
  19063. }
  19064. },
  19065. },
  19066. [
  19067. {
  19068. name: "Normal",
  19069. height: math.unit(4, "meters"),
  19070. default: true
  19071. },
  19072. ]
  19073. ))
  19074. characterMakers.push(() => makeCharacter(
  19075. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19076. {
  19077. side: {
  19078. height: math.unit(6, "feet"),
  19079. weight: math.unit(150, "lb"),
  19080. name: "Side",
  19081. image: {
  19082. source: "./media/characters/richard-dragon/side.svg",
  19083. extra: 845 / 340,
  19084. bottom: 0.017
  19085. }
  19086. },
  19087. maw: {
  19088. height: math.unit(2.97, "feet"),
  19089. name: "Maw",
  19090. image: {
  19091. source: "./media/characters/richard-dragon/maw.svg"
  19092. }
  19093. },
  19094. },
  19095. [
  19096. ]
  19097. ))
  19098. characterMakers.push(() => makeCharacter(
  19099. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19100. {
  19101. front: {
  19102. height: math.unit(4, "feet"),
  19103. weight: math.unit(100, "lb"),
  19104. name: "Front",
  19105. image: {
  19106. source: "./media/characters/richard-smeargle/front.svg",
  19107. extra: 2952 / 2820,
  19108. bottom: 0.028
  19109. }
  19110. },
  19111. },
  19112. [
  19113. {
  19114. name: "Normal",
  19115. height: math.unit(4, "feet"),
  19116. default: true
  19117. },
  19118. {
  19119. name: "Dynamax",
  19120. height: math.unit(20, "meters")
  19121. },
  19122. ]
  19123. ))
  19124. characterMakers.push(() => makeCharacter(
  19125. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  19126. {
  19127. front: {
  19128. height: math.unit(6, "feet"),
  19129. weight: math.unit(110, "lb"),
  19130. name: "Front",
  19131. image: {
  19132. source: "./media/characters/klay/front.svg",
  19133. extra: 962 / 883,
  19134. bottom: 0.04
  19135. }
  19136. },
  19137. back: {
  19138. height: math.unit(6, "feet"),
  19139. weight: math.unit(110, "lb"),
  19140. name: "Back",
  19141. image: {
  19142. source: "./media/characters/klay/back.svg",
  19143. extra: 962 / 883
  19144. }
  19145. },
  19146. beans: {
  19147. height: math.unit(1.15, "feet"),
  19148. name: "Beans",
  19149. image: {
  19150. source: "./media/characters/klay/beans.svg"
  19151. }
  19152. },
  19153. },
  19154. [
  19155. {
  19156. name: "Micro",
  19157. height: math.unit(6, "inches")
  19158. },
  19159. {
  19160. name: "Mini",
  19161. height: math.unit(3, "feet")
  19162. },
  19163. {
  19164. name: "Normal",
  19165. height: math.unit(6, "feet"),
  19166. default: true
  19167. },
  19168. {
  19169. name: "Big",
  19170. height: math.unit(25, "feet")
  19171. },
  19172. {
  19173. name: "Macro",
  19174. height: math.unit(100, "feet")
  19175. },
  19176. {
  19177. name: "Megamacro",
  19178. height: math.unit(400, "feet")
  19179. },
  19180. ]
  19181. ))
  19182. characterMakers.push(() => makeCharacter(
  19183. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  19184. {
  19185. front: {
  19186. height: math.unit(6, "feet"),
  19187. weight: math.unit(160, "lb"),
  19188. name: "Front",
  19189. image: {
  19190. source: "./media/characters/marcus/front.svg",
  19191. extra: 734 / 676,
  19192. bottom: 0.03
  19193. }
  19194. },
  19195. },
  19196. [
  19197. {
  19198. name: "Little",
  19199. height: math.unit(6, "feet")
  19200. },
  19201. {
  19202. name: "Normal",
  19203. height: math.unit(110, "feet"),
  19204. default: true
  19205. },
  19206. {
  19207. name: "Macro",
  19208. height: math.unit(250, "feet")
  19209. },
  19210. {
  19211. name: "Megamacro",
  19212. height: math.unit(1000, "feet")
  19213. },
  19214. ]
  19215. ))
  19216. characterMakers.push(() => makeCharacter(
  19217. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  19218. {
  19219. front: {
  19220. height: math.unit(7, "feet"),
  19221. weight: math.unit(275, "lb"),
  19222. name: "Front",
  19223. image: {
  19224. source: "./media/characters/claude-delroute/front.svg",
  19225. extra: 902/827,
  19226. bottom: 26/928
  19227. }
  19228. },
  19229. side: {
  19230. height: math.unit(7, "feet"),
  19231. weight: math.unit(275, "lb"),
  19232. name: "Side",
  19233. image: {
  19234. source: "./media/characters/claude-delroute/side.svg",
  19235. extra: 908/853,
  19236. bottom: 16/924
  19237. }
  19238. },
  19239. back: {
  19240. height: math.unit(7, "feet"),
  19241. weight: math.unit(275, "lb"),
  19242. name: "Back",
  19243. image: {
  19244. source: "./media/characters/claude-delroute/back.svg",
  19245. extra: 911/829,
  19246. bottom: 18/929
  19247. }
  19248. },
  19249. maw: {
  19250. height: math.unit(0.6407, "meters"),
  19251. name: "Maw",
  19252. image: {
  19253. source: "./media/characters/claude-delroute/maw.svg"
  19254. }
  19255. },
  19256. },
  19257. [
  19258. {
  19259. name: "Normal",
  19260. height: math.unit(7, "feet"),
  19261. default: true
  19262. },
  19263. {
  19264. name: "Lorge",
  19265. height: math.unit(20, "feet")
  19266. },
  19267. ]
  19268. ))
  19269. characterMakers.push(() => makeCharacter(
  19270. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  19271. {
  19272. front: {
  19273. height: math.unit(8 + 4 / 12, "feet"),
  19274. weight: math.unit(600, "lb"),
  19275. name: "Front",
  19276. image: {
  19277. source: "./media/characters/dragonien/front.svg",
  19278. extra: 100 / 94,
  19279. bottom: 3.3 / 103.3445
  19280. }
  19281. },
  19282. back: {
  19283. height: math.unit(8 + 4 / 12, "feet"),
  19284. weight: math.unit(600, "lb"),
  19285. name: "Back",
  19286. image: {
  19287. source: "./media/characters/dragonien/back.svg",
  19288. extra: 776 / 746,
  19289. bottom: 6.4 / 782.0616
  19290. }
  19291. },
  19292. foot: {
  19293. height: math.unit(1.54, "feet"),
  19294. name: "Foot",
  19295. image: {
  19296. source: "./media/characters/dragonien/foot.svg",
  19297. }
  19298. },
  19299. },
  19300. [
  19301. {
  19302. name: "Normal",
  19303. height: math.unit(8 + 4 / 12, "feet"),
  19304. default: true
  19305. },
  19306. {
  19307. name: "Macro",
  19308. height: math.unit(200, "feet")
  19309. },
  19310. {
  19311. name: "Megamacro",
  19312. height: math.unit(1, "mile")
  19313. },
  19314. {
  19315. name: "Gigamacro",
  19316. height: math.unit(1000, "miles")
  19317. },
  19318. ]
  19319. ))
  19320. characterMakers.push(() => makeCharacter(
  19321. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  19322. {
  19323. front: {
  19324. height: math.unit(5 + 2 / 12, "feet"),
  19325. weight: math.unit(110, "lb"),
  19326. name: "Front",
  19327. image: {
  19328. source: "./media/characters/desta/front.svg",
  19329. extra: 767 / 726,
  19330. bottom: 11.7 / 779
  19331. }
  19332. },
  19333. back: {
  19334. height: math.unit(5 + 2 / 12, "feet"),
  19335. weight: math.unit(110, "lb"),
  19336. name: "Back",
  19337. image: {
  19338. source: "./media/characters/desta/back.svg",
  19339. extra: 777 / 728,
  19340. bottom: 6 / 784
  19341. }
  19342. },
  19343. frontAlt: {
  19344. height: math.unit(5 + 2 / 12, "feet"),
  19345. weight: math.unit(110, "lb"),
  19346. name: "Front",
  19347. image: {
  19348. source: "./media/characters/desta/front-alt.svg",
  19349. extra: 1482 / 1417
  19350. }
  19351. },
  19352. side: {
  19353. height: math.unit(5 + 2 / 12, "feet"),
  19354. weight: math.unit(110, "lb"),
  19355. name: "Side",
  19356. image: {
  19357. source: "./media/characters/desta/side.svg",
  19358. extra: 2579 / 2491,
  19359. bottom: 0.053
  19360. }
  19361. },
  19362. },
  19363. [
  19364. {
  19365. name: "Micro",
  19366. height: math.unit(6, "inches")
  19367. },
  19368. {
  19369. name: "Normal",
  19370. height: math.unit(5 + 2 / 12, "feet"),
  19371. default: true
  19372. },
  19373. {
  19374. name: "Macro",
  19375. height: math.unit(62, "feet")
  19376. },
  19377. {
  19378. name: "Megamacro",
  19379. height: math.unit(1800, "feet")
  19380. },
  19381. ]
  19382. ))
  19383. characterMakers.push(() => makeCharacter(
  19384. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  19385. {
  19386. front: {
  19387. height: math.unit(10, "feet"),
  19388. weight: math.unit(700, "lb"),
  19389. name: "Front",
  19390. image: {
  19391. source: "./media/characters/storm-alystar/front.svg",
  19392. extra: 2112 / 1898,
  19393. bottom: 0.034
  19394. }
  19395. },
  19396. },
  19397. [
  19398. {
  19399. name: "Micro",
  19400. height: math.unit(3.5, "inches")
  19401. },
  19402. {
  19403. name: "Normal",
  19404. height: math.unit(10, "feet"),
  19405. default: true
  19406. },
  19407. {
  19408. name: "Macro",
  19409. height: math.unit(400, "feet")
  19410. },
  19411. {
  19412. name: "Deific",
  19413. height: math.unit(60, "miles")
  19414. },
  19415. ]
  19416. ))
  19417. characterMakers.push(() => makeCharacter(
  19418. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19419. {
  19420. front: {
  19421. height: math.unit(2.35, "meters"),
  19422. weight: math.unit(119, "kg"),
  19423. name: "Front",
  19424. image: {
  19425. source: "./media/characters/ilia/front.svg",
  19426. extra: 1285 / 1255,
  19427. bottom: 0.06
  19428. }
  19429. },
  19430. },
  19431. [
  19432. {
  19433. name: "Normal",
  19434. height: math.unit(2.35, "meters")
  19435. },
  19436. {
  19437. name: "Macro",
  19438. height: math.unit(140, "meters"),
  19439. default: true
  19440. },
  19441. {
  19442. name: "Megamacro",
  19443. height: math.unit(100, "miles")
  19444. },
  19445. ]
  19446. ))
  19447. characterMakers.push(() => makeCharacter(
  19448. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19449. {
  19450. front: {
  19451. height: math.unit(6 + 5 / 12, "feet"),
  19452. weight: math.unit(190, "lb"),
  19453. name: "Front",
  19454. image: {
  19455. source: "./media/characters/kingdead/front.svg",
  19456. extra: 1228 / 1177
  19457. }
  19458. },
  19459. },
  19460. [
  19461. {
  19462. name: "Micro",
  19463. height: math.unit(7, "inches")
  19464. },
  19465. {
  19466. name: "Normal",
  19467. height: math.unit(6 + 5 / 12, "feet")
  19468. },
  19469. {
  19470. name: "Macro",
  19471. height: math.unit(150, "feet"),
  19472. default: true
  19473. },
  19474. {
  19475. name: "Megamacro",
  19476. height: math.unit(200, "miles")
  19477. },
  19478. ]
  19479. ))
  19480. characterMakers.push(() => makeCharacter(
  19481. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19482. {
  19483. front: {
  19484. height: math.unit(8, "feet"),
  19485. weight: math.unit(600, "lb"),
  19486. name: "Front",
  19487. image: {
  19488. source: "./media/characters/kyrehx/front.svg",
  19489. extra: 1195 / 1095,
  19490. bottom: 0.034
  19491. }
  19492. },
  19493. },
  19494. [
  19495. {
  19496. name: "Micro",
  19497. height: math.unit(2, "inches")
  19498. },
  19499. {
  19500. name: "Normal",
  19501. height: math.unit(8, "feet"),
  19502. default: true
  19503. },
  19504. {
  19505. name: "Macro",
  19506. height: math.unit(255, "feet")
  19507. },
  19508. ]
  19509. ))
  19510. characterMakers.push(() => makeCharacter(
  19511. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19512. {
  19513. front: {
  19514. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19515. weight: math.unit(184, "lb"),
  19516. name: "Front",
  19517. image: {
  19518. source: "./media/characters/xang/front.svg",
  19519. extra: 845 / 755
  19520. }
  19521. },
  19522. },
  19523. [
  19524. {
  19525. name: "Normal",
  19526. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19527. default: true
  19528. },
  19529. {
  19530. name: "Macro",
  19531. height: math.unit(0.935 * 146, "feet")
  19532. },
  19533. {
  19534. name: "Megamacro",
  19535. height: math.unit(0.935 * 3, "miles")
  19536. },
  19537. ]
  19538. ))
  19539. characterMakers.push(() => makeCharacter(
  19540. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19541. {
  19542. frontDressed: {
  19543. height: math.unit(5 + 7 / 12, "feet"),
  19544. weight: math.unit(140, "lb"),
  19545. name: "Front (Dressed)",
  19546. image: {
  19547. source: "./media/characters/doc-weardno/front-dressed.svg",
  19548. extra: 263 / 234
  19549. }
  19550. },
  19551. backDressed: {
  19552. height: math.unit(5 + 7 / 12, "feet"),
  19553. weight: math.unit(140, "lb"),
  19554. name: "Back (Dressed)",
  19555. image: {
  19556. source: "./media/characters/doc-weardno/back-dressed.svg",
  19557. extra: 266 / 238
  19558. }
  19559. },
  19560. front: {
  19561. height: math.unit(5 + 7 / 12, "feet"),
  19562. weight: math.unit(140, "lb"),
  19563. name: "Front",
  19564. image: {
  19565. source: "./media/characters/doc-weardno/front.svg",
  19566. extra: 254 / 233
  19567. }
  19568. },
  19569. },
  19570. [
  19571. {
  19572. name: "Micro",
  19573. height: math.unit(3, "inches")
  19574. },
  19575. {
  19576. name: "Normal",
  19577. height: math.unit(5 + 7 / 12, "feet"),
  19578. default: true
  19579. },
  19580. {
  19581. name: "Macro",
  19582. height: math.unit(25, "feet")
  19583. },
  19584. {
  19585. name: "Megamacro",
  19586. height: math.unit(2, "miles")
  19587. },
  19588. ]
  19589. ))
  19590. characterMakers.push(() => makeCharacter(
  19591. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19592. {
  19593. front: {
  19594. height: math.unit(6 + 2 / 12, "feet"),
  19595. weight: math.unit(153, "lb"),
  19596. name: "Front",
  19597. image: {
  19598. source: "./media/characters/seth-whilst/front.svg",
  19599. bottom: 0.07
  19600. }
  19601. },
  19602. },
  19603. [
  19604. {
  19605. name: "Micro",
  19606. height: math.unit(5, "inches")
  19607. },
  19608. {
  19609. name: "Normal",
  19610. height: math.unit(6 + 2 / 12, "feet"),
  19611. default: true
  19612. },
  19613. ]
  19614. ))
  19615. characterMakers.push(() => makeCharacter(
  19616. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19617. {
  19618. front: {
  19619. height: math.unit(3, "inches"),
  19620. weight: math.unit(8, "grams"),
  19621. name: "Front",
  19622. image: {
  19623. source: "./media/characters/pocket-jabari/front.svg",
  19624. extra: 1024 / 974,
  19625. bottom: 0.039
  19626. }
  19627. },
  19628. },
  19629. [
  19630. {
  19631. name: "Minimicro",
  19632. height: math.unit(8, "mm")
  19633. },
  19634. {
  19635. name: "Micro",
  19636. height: math.unit(3, "inches"),
  19637. default: true
  19638. },
  19639. {
  19640. name: "Normal",
  19641. height: math.unit(3, "feet")
  19642. },
  19643. ]
  19644. ))
  19645. characterMakers.push(() => makeCharacter(
  19646. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19647. {
  19648. frontDressed: {
  19649. height: math.unit(15, "feet"),
  19650. weight: math.unit(3280, "lb"),
  19651. name: "Front (Dressed)",
  19652. image: {
  19653. source: "./media/characters/sapphy/front-dressed.svg",
  19654. extra: 1951/1654,
  19655. bottom: 194/2145
  19656. },
  19657. form: "anthro",
  19658. default: true
  19659. },
  19660. backDressed: {
  19661. height: math.unit(15, "feet"),
  19662. weight: math.unit(3280, "lb"),
  19663. name: "Back (Dressed)",
  19664. image: {
  19665. source: "./media/characters/sapphy/back-dressed.svg",
  19666. extra: 2058/1918,
  19667. bottom: 125/2183
  19668. },
  19669. form: "anthro"
  19670. },
  19671. frontNude: {
  19672. height: math.unit(15, "feet"),
  19673. weight: math.unit(3280, "lb"),
  19674. name: "Front (Nude)",
  19675. image: {
  19676. source: "./media/characters/sapphy/front-nude.svg",
  19677. extra: 1951/1654,
  19678. bottom: 194/2145
  19679. },
  19680. form: "anthro"
  19681. },
  19682. backNude: {
  19683. height: math.unit(15, "feet"),
  19684. weight: math.unit(3280, "lb"),
  19685. name: "Back (Nude)",
  19686. image: {
  19687. source: "./media/characters/sapphy/back-nude.svg",
  19688. extra: 2058/1918,
  19689. bottom: 125/2183
  19690. },
  19691. form: "anthro"
  19692. },
  19693. full: {
  19694. height: math.unit(15, "feet"),
  19695. weight: math.unit(3280, "lb"),
  19696. name: "Full",
  19697. image: {
  19698. source: "./media/characters/sapphy/full.svg",
  19699. extra: 1396/1317,
  19700. bottom: 44/1440
  19701. },
  19702. form: "anthro"
  19703. },
  19704. dick: {
  19705. height: math.unit(3.8, "feet"),
  19706. name: "Dick",
  19707. image: {
  19708. source: "./media/characters/sapphy/dick.svg"
  19709. },
  19710. form: "anthro"
  19711. },
  19712. feral: {
  19713. height: math.unit(35, "feet"),
  19714. weight: math.unit(160, "tons"),
  19715. name: "Feral",
  19716. image: {
  19717. source: "./media/characters/sapphy/feral.svg",
  19718. extra: 1050/573,
  19719. bottom: 60/1110
  19720. },
  19721. form: "feral",
  19722. default: true
  19723. },
  19724. },
  19725. [
  19726. {
  19727. name: "Normal",
  19728. height: math.unit(15, "feet"),
  19729. form: "anthro"
  19730. },
  19731. {
  19732. name: "Casual Macro",
  19733. height: math.unit(120, "feet"),
  19734. form: "anthro"
  19735. },
  19736. {
  19737. name: "Macro",
  19738. height: math.unit(2150, "feet"),
  19739. default: true,
  19740. form: "anthro"
  19741. },
  19742. {
  19743. name: "Megamacro",
  19744. height: math.unit(8, "miles"),
  19745. form: "anthro"
  19746. },
  19747. {
  19748. name: "Galaxy Mom",
  19749. height: math.unit(6, "megalightyears"),
  19750. form: "anthro"
  19751. },
  19752. {
  19753. name: "Normal",
  19754. height: math.unit(35, "feet"),
  19755. form: "feral",
  19756. default: true
  19757. },
  19758. {
  19759. name: "Macro",
  19760. height: math.unit(300, "feet"),
  19761. form: "feral"
  19762. },
  19763. {
  19764. name: "Galaxy Mom",
  19765. height: math.unit(10, "megalightyears"),
  19766. form: "feral"
  19767. },
  19768. ],
  19769. {
  19770. "anthro": {
  19771. name: "Anthro",
  19772. default: true
  19773. },
  19774. "feral": {
  19775. name: "Feral"
  19776. }
  19777. }
  19778. ))
  19779. characterMakers.push(() => makeCharacter(
  19780. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19781. {
  19782. front: {
  19783. height: math.unit(6, "feet"),
  19784. weight: math.unit(170, "lb"),
  19785. name: "Front",
  19786. image: {
  19787. source: "./media/characters/kiro/front.svg",
  19788. extra: 1064 / 1012,
  19789. bottom: 0.052
  19790. }
  19791. },
  19792. },
  19793. [
  19794. {
  19795. name: "Micro",
  19796. height: math.unit(6, "inches")
  19797. },
  19798. {
  19799. name: "Normal",
  19800. height: math.unit(6, "feet"),
  19801. default: true
  19802. },
  19803. {
  19804. name: "Macro",
  19805. height: math.unit(72, "feet")
  19806. },
  19807. ]
  19808. ))
  19809. characterMakers.push(() => makeCharacter(
  19810. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19811. {
  19812. front: {
  19813. height: math.unit(5 + 9 / 12, "feet"),
  19814. weight: math.unit(175, "lb"),
  19815. name: "Front",
  19816. image: {
  19817. source: "./media/characters/irishfox/front.svg",
  19818. extra: 1912 / 1680,
  19819. bottom: 0.02
  19820. }
  19821. },
  19822. },
  19823. [
  19824. {
  19825. name: "Nano",
  19826. height: math.unit(1, "mm")
  19827. },
  19828. {
  19829. name: "Micro",
  19830. height: math.unit(2, "inches")
  19831. },
  19832. {
  19833. name: "Normal",
  19834. height: math.unit(5 + 9 / 12, "feet"),
  19835. default: true
  19836. },
  19837. {
  19838. name: "Macro",
  19839. height: math.unit(45, "feet")
  19840. },
  19841. ]
  19842. ))
  19843. characterMakers.push(() => makeCharacter(
  19844. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19845. {
  19846. front: {
  19847. height: math.unit(6 + 1 / 12, "feet"),
  19848. weight: math.unit(75, "lb"),
  19849. name: "Front",
  19850. image: {
  19851. source: "./media/characters/aronai-sieyes/front.svg",
  19852. extra: 1532/1450,
  19853. bottom: 42/1574
  19854. }
  19855. },
  19856. side: {
  19857. height: math.unit(6 + 1 / 12, "feet"),
  19858. weight: math.unit(75, "lb"),
  19859. name: "Side",
  19860. image: {
  19861. source: "./media/characters/aronai-sieyes/side.svg",
  19862. extra: 1422/1365,
  19863. bottom: 148/1570
  19864. }
  19865. },
  19866. back: {
  19867. height: math.unit(6 + 1 / 12, "feet"),
  19868. weight: math.unit(75, "lb"),
  19869. name: "Back",
  19870. image: {
  19871. source: "./media/characters/aronai-sieyes/back.svg",
  19872. extra: 1526/1464,
  19873. bottom: 51/1577
  19874. }
  19875. },
  19876. dressed: {
  19877. height: math.unit(6 + 1 / 12, "feet"),
  19878. weight: math.unit(75, "lb"),
  19879. name: "Dressed",
  19880. image: {
  19881. source: "./media/characters/aronai-sieyes/dressed.svg",
  19882. extra: 1559/1483,
  19883. bottom: 39/1598
  19884. }
  19885. },
  19886. slit: {
  19887. height: math.unit(1.3, "feet"),
  19888. name: "Slit",
  19889. image: {
  19890. source: "./media/characters/aronai-sieyes/slit.svg"
  19891. }
  19892. },
  19893. slitSpread: {
  19894. height: math.unit(0.9, "feet"),
  19895. name: "Slit (Spread)",
  19896. image: {
  19897. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19898. }
  19899. },
  19900. rump: {
  19901. height: math.unit(1.3, "feet"),
  19902. name: "Rump",
  19903. image: {
  19904. source: "./media/characters/aronai-sieyes/rump.svg"
  19905. }
  19906. },
  19907. maw: {
  19908. height: math.unit(1.25, "feet"),
  19909. name: "Maw",
  19910. image: {
  19911. source: "./media/characters/aronai-sieyes/maw.svg"
  19912. }
  19913. },
  19914. feral: {
  19915. height: math.unit(18, "feet"),
  19916. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19917. name: "Feral",
  19918. image: {
  19919. source: "./media/characters/aronai-sieyes/feral.svg",
  19920. extra: 1530 / 1240,
  19921. bottom: 0.035
  19922. }
  19923. },
  19924. },
  19925. [
  19926. {
  19927. name: "Micro",
  19928. height: math.unit(2, "inches")
  19929. },
  19930. {
  19931. name: "Normal",
  19932. height: math.unit(6 + 1 / 12, "feet"),
  19933. default: true
  19934. }
  19935. ]
  19936. ))
  19937. characterMakers.push(() => makeCharacter(
  19938. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19939. {
  19940. front: {
  19941. height: math.unit(12, "feet"),
  19942. weight: math.unit(410, "kg"),
  19943. name: "Front",
  19944. image: {
  19945. source: "./media/characters/xuna/front.svg",
  19946. extra: 2184 / 1980
  19947. }
  19948. },
  19949. side: {
  19950. height: math.unit(12, "feet"),
  19951. weight: math.unit(410, "kg"),
  19952. name: "Side",
  19953. image: {
  19954. source: "./media/characters/xuna/side.svg",
  19955. extra: 2184 / 1980
  19956. }
  19957. },
  19958. back: {
  19959. height: math.unit(12, "feet"),
  19960. weight: math.unit(410, "kg"),
  19961. name: "Back",
  19962. image: {
  19963. source: "./media/characters/xuna/back.svg",
  19964. extra: 2184 / 1980
  19965. }
  19966. },
  19967. },
  19968. [
  19969. {
  19970. name: "Nano glow",
  19971. height: math.unit(10, "nm")
  19972. },
  19973. {
  19974. name: "Micro floof",
  19975. height: math.unit(0.3, "m")
  19976. },
  19977. {
  19978. name: "Huggable softy boi",
  19979. height: math.unit(3.6576, "m"),
  19980. default: true
  19981. },
  19982. {
  19983. name: "Admirable floof",
  19984. height: math.unit(80, "meters")
  19985. },
  19986. {
  19987. name: "Gentle macro",
  19988. height: math.unit(300, "meters")
  19989. },
  19990. {
  19991. name: "Very careful floof",
  19992. height: math.unit(3200, "meters")
  19993. },
  19994. {
  19995. name: "The mega floof",
  19996. height: math.unit(36000, "meters")
  19997. },
  19998. {
  19999. name: "Giga-fur-Wicker",
  20000. height: math.unit(4800000, "meters")
  20001. },
  20002. {
  20003. name: "Licky world",
  20004. height: math.unit(20000000, "meters")
  20005. },
  20006. {
  20007. name: "Floofy cyan sun",
  20008. height: math.unit(1500000000, "meters")
  20009. },
  20010. {
  20011. name: "Milky Wicker",
  20012. height: math.unit(1000000000000000000000, "meters")
  20013. },
  20014. {
  20015. name: "The observing Wicker",
  20016. height: math.unit(999999999999999999999999999, "meters")
  20017. },
  20018. ]
  20019. ))
  20020. characterMakers.push(() => makeCharacter(
  20021. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20022. {
  20023. front: {
  20024. height: math.unit(5 + 9 / 12, "feet"),
  20025. weight: math.unit(150, "lb"),
  20026. name: "Front",
  20027. image: {
  20028. source: "./media/characters/arokha-sieyes/front.svg",
  20029. extra: 1425 / 1284,
  20030. bottom: 0.05
  20031. }
  20032. },
  20033. },
  20034. [
  20035. {
  20036. name: "Normal",
  20037. height: math.unit(5 + 9 / 12, "feet")
  20038. },
  20039. {
  20040. name: "Macro",
  20041. height: math.unit(30, "meters"),
  20042. default: true
  20043. },
  20044. ]
  20045. ))
  20046. characterMakers.push(() => makeCharacter(
  20047. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20048. {
  20049. front: {
  20050. height: math.unit(6, "feet"),
  20051. weight: math.unit(180, "lb"),
  20052. name: "Front",
  20053. image: {
  20054. source: "./media/characters/arokh-sieyes/front.svg",
  20055. extra: 1830 / 1769,
  20056. bottom: 0.01
  20057. }
  20058. },
  20059. },
  20060. [
  20061. {
  20062. name: "Normal",
  20063. height: math.unit(6, "feet")
  20064. },
  20065. {
  20066. name: "Macro",
  20067. height: math.unit(30, "meters"),
  20068. default: true
  20069. },
  20070. ]
  20071. ))
  20072. characterMakers.push(() => makeCharacter(
  20073. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  20074. {
  20075. side: {
  20076. height: math.unit(13 + 1 / 12, "feet"),
  20077. weight: math.unit(8.5, "tonnes"),
  20078. name: "Side",
  20079. image: {
  20080. source: "./media/characters/goldeneye/side.svg",
  20081. extra: 1182 / 778,
  20082. bottom: 0.067
  20083. }
  20084. },
  20085. paw: {
  20086. height: math.unit(3.4, "feet"),
  20087. name: "Paw",
  20088. image: {
  20089. source: "./media/characters/goldeneye/paw.svg"
  20090. }
  20091. },
  20092. },
  20093. [
  20094. {
  20095. name: "Normal",
  20096. height: math.unit(13 + 1 / 12, "feet"),
  20097. default: true
  20098. },
  20099. ]
  20100. ))
  20101. characterMakers.push(() => makeCharacter(
  20102. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  20103. {
  20104. front: {
  20105. height: math.unit(6 + 1 / 12, "feet"),
  20106. weight: math.unit(210, "lb"),
  20107. name: "Front",
  20108. image: {
  20109. source: "./media/characters/leonardo-lycheborne/front.svg",
  20110. extra: 776/723,
  20111. bottom: 34/810
  20112. }
  20113. },
  20114. side: {
  20115. height: math.unit(6 + 1 / 12, "feet"),
  20116. weight: math.unit(210, "lb"),
  20117. name: "Side",
  20118. image: {
  20119. source: "./media/characters/leonardo-lycheborne/side.svg",
  20120. extra: 780/728,
  20121. bottom: 12/792
  20122. }
  20123. },
  20124. back: {
  20125. height: math.unit(6 + 1 / 12, "feet"),
  20126. weight: math.unit(210, "lb"),
  20127. name: "Back",
  20128. image: {
  20129. source: "./media/characters/leonardo-lycheborne/back.svg",
  20130. extra: 775/721,
  20131. bottom: 17/792
  20132. }
  20133. },
  20134. hand: {
  20135. height: math.unit(1.08, "feet"),
  20136. name: "Hand",
  20137. image: {
  20138. source: "./media/characters/leonardo-lycheborne/hand.svg"
  20139. }
  20140. },
  20141. foot: {
  20142. height: math.unit(1.32, "feet"),
  20143. name: "Foot",
  20144. image: {
  20145. source: "./media/characters/leonardo-lycheborne/foot.svg"
  20146. }
  20147. },
  20148. maw: {
  20149. height: math.unit(1, "feet"),
  20150. name: "Maw",
  20151. image: {
  20152. source: "./media/characters/leonardo-lycheborne/maw.svg"
  20153. }
  20154. },
  20155. were: {
  20156. height: math.unit(20, "feet"),
  20157. weight: math.unit(7800, "lb"),
  20158. name: "Were",
  20159. image: {
  20160. source: "./media/characters/leonardo-lycheborne/were.svg",
  20161. extra: 1224/1165,
  20162. bottom: 72/1296
  20163. }
  20164. },
  20165. feral: {
  20166. height: math.unit(7.5, "feet"),
  20167. weight: math.unit(600, "lb"),
  20168. name: "Feral",
  20169. image: {
  20170. source: "./media/characters/leonardo-lycheborne/feral.svg",
  20171. extra: 797/702,
  20172. bottom: 139/936
  20173. }
  20174. },
  20175. taur: {
  20176. height: math.unit(11, "feet"),
  20177. weight: math.unit(3300, "lb"),
  20178. name: "Taur",
  20179. image: {
  20180. source: "./media/characters/leonardo-lycheborne/taur.svg",
  20181. extra: 1271/1197,
  20182. bottom: 47/1318
  20183. }
  20184. },
  20185. barghest: {
  20186. height: math.unit(11, "feet"),
  20187. weight: math.unit(1300, "lb"),
  20188. name: "Barghest",
  20189. image: {
  20190. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  20191. extra: 1291/1204,
  20192. bottom: 37/1328
  20193. }
  20194. },
  20195. dick: {
  20196. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  20197. name: "Dick",
  20198. image: {
  20199. source: "./media/characters/leonardo-lycheborne/dick.svg"
  20200. }
  20201. },
  20202. dickWere: {
  20203. height: math.unit((20) / 3.8, "feet"),
  20204. name: "Dick (Were)",
  20205. image: {
  20206. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  20207. }
  20208. },
  20209. },
  20210. [
  20211. {
  20212. name: "Normal",
  20213. height: math.unit(6 + 1 / 12, "feet"),
  20214. default: true
  20215. },
  20216. ]
  20217. ))
  20218. characterMakers.push(() => makeCharacter(
  20219. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  20220. {
  20221. front: {
  20222. height: math.unit(10, "feet"),
  20223. weight: math.unit(350, "lb"),
  20224. name: "Front",
  20225. image: {
  20226. source: "./media/characters/jet/front.svg",
  20227. extra: 2050 / 1980,
  20228. bottom: 0.013
  20229. }
  20230. },
  20231. back: {
  20232. height: math.unit(10, "feet"),
  20233. weight: math.unit(350, "lb"),
  20234. name: "Back",
  20235. image: {
  20236. source: "./media/characters/jet/back.svg",
  20237. extra: 2050 / 1980,
  20238. bottom: 0.013
  20239. }
  20240. },
  20241. },
  20242. [
  20243. {
  20244. name: "Micro",
  20245. height: math.unit(6, "inches")
  20246. },
  20247. {
  20248. name: "Normal",
  20249. height: math.unit(10, "feet"),
  20250. default: true
  20251. },
  20252. {
  20253. name: "Macro",
  20254. height: math.unit(100, "feet")
  20255. },
  20256. ]
  20257. ))
  20258. characterMakers.push(() => makeCharacter(
  20259. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  20260. {
  20261. front: {
  20262. height: math.unit(15, "feet"),
  20263. weight: math.unit(2800, "lb"),
  20264. name: "Front",
  20265. image: {
  20266. source: "./media/characters/tanarath/front.svg",
  20267. extra: 2392 / 2220,
  20268. bottom: 0.03
  20269. }
  20270. },
  20271. back: {
  20272. height: math.unit(15, "feet"),
  20273. weight: math.unit(2800, "lb"),
  20274. name: "Back",
  20275. image: {
  20276. source: "./media/characters/tanarath/back.svg",
  20277. extra: 2392 / 2220,
  20278. bottom: 0.03
  20279. }
  20280. },
  20281. },
  20282. [
  20283. {
  20284. name: "Normal",
  20285. height: math.unit(15, "feet"),
  20286. default: true
  20287. },
  20288. ]
  20289. ))
  20290. characterMakers.push(() => makeCharacter(
  20291. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  20292. {
  20293. front: {
  20294. height: math.unit(7 + 1 / 12, "feet"),
  20295. weight: math.unit(175, "lb"),
  20296. name: "Front",
  20297. image: {
  20298. source: "./media/characters/patty-cattybatty/front.svg",
  20299. extra: 908 / 874,
  20300. bottom: 0.025
  20301. }
  20302. },
  20303. },
  20304. [
  20305. {
  20306. name: "Micro",
  20307. height: math.unit(1, "inch")
  20308. },
  20309. {
  20310. name: "Normal",
  20311. height: math.unit(7 + 1 / 12, "feet")
  20312. },
  20313. {
  20314. name: "Mini Macro",
  20315. height: math.unit(155, "feet")
  20316. },
  20317. {
  20318. name: "Macro",
  20319. height: math.unit(1077, "feet")
  20320. },
  20321. {
  20322. name: "Mega Macro",
  20323. height: math.unit(47650, "feet"),
  20324. default: true
  20325. },
  20326. {
  20327. name: "Giga Macro",
  20328. height: math.unit(440, "miles")
  20329. },
  20330. {
  20331. name: "Tera Macro",
  20332. height: math.unit(8700, "miles")
  20333. },
  20334. {
  20335. name: "Planetary Macro",
  20336. height: math.unit(32700, "miles")
  20337. },
  20338. {
  20339. name: "Solar Macro",
  20340. height: math.unit(550000, "miles")
  20341. },
  20342. {
  20343. name: "Celestial Macro",
  20344. height: math.unit(2.5, "AU")
  20345. },
  20346. ]
  20347. ))
  20348. characterMakers.push(() => makeCharacter(
  20349. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  20350. {
  20351. front: {
  20352. height: math.unit(4 + 5 / 12, "feet"),
  20353. weight: math.unit(90, "lb"),
  20354. name: "Front",
  20355. image: {
  20356. source: "./media/characters/cappu/front.svg",
  20357. extra: 1247 / 1152,
  20358. bottom: 0.012
  20359. }
  20360. },
  20361. },
  20362. [
  20363. {
  20364. name: "Normal",
  20365. height: math.unit(4 + 5 / 12, "feet"),
  20366. default: true
  20367. },
  20368. ]
  20369. ))
  20370. characterMakers.push(() => makeCharacter(
  20371. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  20372. {
  20373. frontDressed: {
  20374. height: math.unit(70, "cm"),
  20375. weight: math.unit(6, "kg"),
  20376. name: "Front (Dressed)",
  20377. image: {
  20378. source: "./media/characters/sebi/front-dressed.svg",
  20379. extra: 713.5 / 686.5,
  20380. bottom: 0.003
  20381. }
  20382. },
  20383. front: {
  20384. height: math.unit(70, "cm"),
  20385. weight: math.unit(5, "kg"),
  20386. name: "Front",
  20387. image: {
  20388. source: "./media/characters/sebi/front.svg",
  20389. extra: 713.5 / 686.5,
  20390. bottom: 0.003
  20391. }
  20392. }
  20393. },
  20394. [
  20395. {
  20396. name: "Normal",
  20397. height: math.unit(70, "cm"),
  20398. default: true
  20399. },
  20400. {
  20401. name: "Macro",
  20402. height: math.unit(8, "meters")
  20403. },
  20404. ]
  20405. ))
  20406. characterMakers.push(() => makeCharacter(
  20407. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20408. {
  20409. front: {
  20410. height: math.unit(6, "feet"),
  20411. weight: math.unit(150, "lb"),
  20412. name: "Front",
  20413. image: {
  20414. source: "./media/characters/typhek/front.svg",
  20415. extra: 1948 / 1929,
  20416. bottom: 0.025
  20417. }
  20418. },
  20419. side: {
  20420. height: math.unit(6, "feet"),
  20421. weight: math.unit(150, "lb"),
  20422. name: "Side",
  20423. image: {
  20424. source: "./media/characters/typhek/side.svg",
  20425. extra: 2034 / 2010,
  20426. bottom: 0.003
  20427. }
  20428. },
  20429. back: {
  20430. height: math.unit(6, "feet"),
  20431. weight: math.unit(150, "lb"),
  20432. name: "Back",
  20433. image: {
  20434. source: "./media/characters/typhek/back.svg",
  20435. extra: 2005 / 1978,
  20436. bottom: 0.004
  20437. }
  20438. },
  20439. palm: {
  20440. height: math.unit(1.2, "feet"),
  20441. name: "Palm",
  20442. image: {
  20443. source: "./media/characters/typhek/palm.svg"
  20444. }
  20445. },
  20446. fist: {
  20447. height: math.unit(1.1, "feet"),
  20448. name: "Fist",
  20449. image: {
  20450. source: "./media/characters/typhek/fist.svg"
  20451. }
  20452. },
  20453. foot: {
  20454. height: math.unit(1.57, "feet"),
  20455. name: "Foot",
  20456. image: {
  20457. source: "./media/characters/typhek/foot.svg"
  20458. }
  20459. },
  20460. sole: {
  20461. height: math.unit(2.05, "feet"),
  20462. name: "Sole",
  20463. image: {
  20464. source: "./media/characters/typhek/sole.svg"
  20465. }
  20466. },
  20467. },
  20468. [
  20469. {
  20470. name: "Macro",
  20471. height: math.unit(40, "stories"),
  20472. default: true
  20473. },
  20474. {
  20475. name: "Megamacro",
  20476. height: math.unit(1, "mile")
  20477. },
  20478. {
  20479. name: "Gigamacro",
  20480. height: math.unit(4000, "solarradii")
  20481. },
  20482. {
  20483. name: "Universal",
  20484. height: math.unit(1.1, "universes")
  20485. }
  20486. ]
  20487. ))
  20488. characterMakers.push(() => makeCharacter(
  20489. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20490. {
  20491. side: {
  20492. height: math.unit(5 + 7 / 12, "feet"),
  20493. weight: math.unit(150, "lb"),
  20494. name: "Side",
  20495. image: {
  20496. source: "./media/characters/kassy/side.svg",
  20497. extra: 1280 / 1225,
  20498. bottom: 0.002
  20499. }
  20500. },
  20501. front: {
  20502. height: math.unit(5 + 7 / 12, "feet"),
  20503. weight: math.unit(150, "lb"),
  20504. name: "Front",
  20505. image: {
  20506. source: "./media/characters/kassy/front.svg",
  20507. extra: 1280 / 1225,
  20508. bottom: 0.025
  20509. }
  20510. },
  20511. back: {
  20512. height: math.unit(5 + 7 / 12, "feet"),
  20513. weight: math.unit(150, "lb"),
  20514. name: "Back",
  20515. image: {
  20516. source: "./media/characters/kassy/back.svg",
  20517. extra: 1280 / 1225,
  20518. bottom: 0.002
  20519. }
  20520. },
  20521. foot: {
  20522. height: math.unit(1.266, "feet"),
  20523. name: "Foot",
  20524. image: {
  20525. source: "./media/characters/kassy/foot.svg"
  20526. }
  20527. },
  20528. },
  20529. [
  20530. {
  20531. name: "Normal",
  20532. height: math.unit(5 + 7 / 12, "feet")
  20533. },
  20534. {
  20535. name: "Macro",
  20536. height: math.unit(137, "feet"),
  20537. default: true
  20538. },
  20539. {
  20540. name: "Megamacro",
  20541. height: math.unit(1, "mile")
  20542. },
  20543. ]
  20544. ))
  20545. characterMakers.push(() => makeCharacter(
  20546. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20547. {
  20548. front: {
  20549. height: math.unit(6 + 1 / 12, "feet"),
  20550. weight: math.unit(200, "lb"),
  20551. name: "Front",
  20552. image: {
  20553. source: "./media/characters/neil/front.svg",
  20554. extra: 1326 / 1250,
  20555. bottom: 0.023
  20556. }
  20557. },
  20558. },
  20559. [
  20560. {
  20561. name: "Normal",
  20562. height: math.unit(6 + 1 / 12, "feet"),
  20563. default: true
  20564. },
  20565. {
  20566. name: "Macro",
  20567. height: math.unit(200, "feet")
  20568. },
  20569. ]
  20570. ))
  20571. characterMakers.push(() => makeCharacter(
  20572. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20573. {
  20574. front: {
  20575. height: math.unit(5 + 9 / 12, "feet"),
  20576. weight: math.unit(190, "lb"),
  20577. name: "Front",
  20578. image: {
  20579. source: "./media/characters/atticus/front.svg",
  20580. extra: 2934 / 2785,
  20581. bottom: 0.025
  20582. }
  20583. },
  20584. },
  20585. [
  20586. {
  20587. name: "Normal",
  20588. height: math.unit(5 + 9 / 12, "feet"),
  20589. default: true
  20590. },
  20591. {
  20592. name: "Macro",
  20593. height: math.unit(180, "feet")
  20594. },
  20595. ]
  20596. ))
  20597. characterMakers.push(() => makeCharacter(
  20598. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20599. {
  20600. side: {
  20601. height: math.unit(9, "feet"),
  20602. weight: math.unit(650, "lb"),
  20603. name: "Side",
  20604. image: {
  20605. source: "./media/characters/milo/side.svg",
  20606. extra: 2644 / 2310,
  20607. bottom: 0.032
  20608. }
  20609. },
  20610. },
  20611. [
  20612. {
  20613. name: "Normal",
  20614. height: math.unit(9, "feet"),
  20615. default: true
  20616. },
  20617. {
  20618. name: "Macro",
  20619. height: math.unit(300, "feet")
  20620. },
  20621. ]
  20622. ))
  20623. characterMakers.push(() => makeCharacter(
  20624. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20625. {
  20626. side: {
  20627. height: math.unit(8, "meters"),
  20628. weight: math.unit(90000, "kg"),
  20629. name: "Side",
  20630. image: {
  20631. source: "./media/characters/ijzer/side.svg",
  20632. extra: 2756 / 1600,
  20633. bottom: 0.01
  20634. }
  20635. },
  20636. },
  20637. [
  20638. {
  20639. name: "Small",
  20640. height: math.unit(3, "meters")
  20641. },
  20642. {
  20643. name: "Normal",
  20644. height: math.unit(8, "meters"),
  20645. default: true
  20646. },
  20647. {
  20648. name: "Normal+",
  20649. height: math.unit(10, "meters")
  20650. },
  20651. {
  20652. name: "Bigger",
  20653. height: math.unit(24, "meters")
  20654. },
  20655. {
  20656. name: "Huge",
  20657. height: math.unit(80, "meters")
  20658. },
  20659. ]
  20660. ))
  20661. characterMakers.push(() => makeCharacter(
  20662. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20663. {
  20664. front: {
  20665. height: math.unit(6 + 2 / 12, "feet"),
  20666. weight: math.unit(153, "lb"),
  20667. name: "Front",
  20668. image: {
  20669. source: "./media/characters/luca-cervicum/front.svg",
  20670. extra: 370 / 327,
  20671. bottom: 0.015
  20672. }
  20673. },
  20674. back: {
  20675. height: math.unit(6 + 2 / 12, "feet"),
  20676. weight: math.unit(153, "lb"),
  20677. name: "Back",
  20678. image: {
  20679. source: "./media/characters/luca-cervicum/back.svg",
  20680. extra: 367 / 333,
  20681. bottom: 0.005
  20682. }
  20683. },
  20684. frontGear: {
  20685. height: math.unit(6 + 2 / 12, "feet"),
  20686. weight: math.unit(173, "lb"),
  20687. name: "Front (Gear)",
  20688. image: {
  20689. source: "./media/characters/luca-cervicum/front-gear.svg",
  20690. extra: 377 / 333,
  20691. bottom: 0.006
  20692. }
  20693. },
  20694. },
  20695. [
  20696. {
  20697. name: "Normal",
  20698. height: math.unit(6 + 2 / 12, "feet"),
  20699. default: true
  20700. },
  20701. ]
  20702. ))
  20703. characterMakers.push(() => makeCharacter(
  20704. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20705. {
  20706. front: {
  20707. height: math.unit(6 + 1 / 12, "feet"),
  20708. weight: math.unit(304, "lb"),
  20709. name: "Front",
  20710. image: {
  20711. source: "./media/characters/oliver/front.svg",
  20712. extra: 157 / 143,
  20713. bottom: 0.08
  20714. }
  20715. },
  20716. },
  20717. [
  20718. {
  20719. name: "Normal",
  20720. height: math.unit(6 + 1 / 12, "feet"),
  20721. default: true
  20722. },
  20723. ]
  20724. ))
  20725. characterMakers.push(() => makeCharacter(
  20726. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20727. {
  20728. front: {
  20729. height: math.unit(5 + 7 / 12, "feet"),
  20730. weight: math.unit(140, "lb"),
  20731. name: "Front",
  20732. image: {
  20733. source: "./media/characters/shane/front.svg",
  20734. extra: 304 / 289,
  20735. bottom: 0.005
  20736. }
  20737. },
  20738. },
  20739. [
  20740. {
  20741. name: "Normal",
  20742. height: math.unit(5 + 7 / 12, "feet"),
  20743. default: true
  20744. },
  20745. ]
  20746. ))
  20747. characterMakers.push(() => makeCharacter(
  20748. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20749. {
  20750. front: {
  20751. height: math.unit(5 + 9 / 12, "feet"),
  20752. weight: math.unit(178, "lb"),
  20753. name: "Front",
  20754. image: {
  20755. source: "./media/characters/shin/front.svg",
  20756. extra: 159 / 151,
  20757. bottom: 0.015
  20758. }
  20759. },
  20760. },
  20761. [
  20762. {
  20763. name: "Normal",
  20764. height: math.unit(5 + 9 / 12, "feet"),
  20765. default: true
  20766. },
  20767. ]
  20768. ))
  20769. characterMakers.push(() => makeCharacter(
  20770. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20771. {
  20772. front: {
  20773. height: math.unit(5 + 10 / 12, "feet"),
  20774. weight: math.unit(168, "lb"),
  20775. name: "Front",
  20776. image: {
  20777. source: "./media/characters/xerxes/front.svg",
  20778. extra: 282 / 260,
  20779. bottom: 0.045
  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: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20793. {
  20794. front: {
  20795. height: math.unit(6 + 7 / 12, "feet"),
  20796. weight: math.unit(208, "lb"),
  20797. name: "Front",
  20798. image: {
  20799. source: "./media/characters/chaska/front.svg",
  20800. extra: 332 / 319,
  20801. bottom: 0.015
  20802. }
  20803. },
  20804. },
  20805. [
  20806. {
  20807. name: "Normal",
  20808. height: math.unit(6 + 7 / 12, "feet"),
  20809. default: true
  20810. },
  20811. ]
  20812. ))
  20813. characterMakers.push(() => makeCharacter(
  20814. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20815. {
  20816. front: {
  20817. height: math.unit(5 + 8 / 12, "feet"),
  20818. weight: math.unit(208, "lb"),
  20819. name: "Front",
  20820. image: {
  20821. source: "./media/characters/enuk/front.svg",
  20822. extra: 437 / 406,
  20823. bottom: 0.02
  20824. }
  20825. },
  20826. },
  20827. [
  20828. {
  20829. name: "Normal",
  20830. height: math.unit(5 + 8 / 12, "feet"),
  20831. default: true
  20832. },
  20833. ]
  20834. ))
  20835. characterMakers.push(() => makeCharacter(
  20836. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20837. {
  20838. front: {
  20839. height: math.unit(5 + 10 / 12, "feet"),
  20840. weight: math.unit(252, "lb"),
  20841. name: "Front",
  20842. image: {
  20843. source: "./media/characters/bruun/front.svg",
  20844. extra: 197 / 187,
  20845. bottom: 0.012
  20846. }
  20847. },
  20848. },
  20849. [
  20850. {
  20851. name: "Normal",
  20852. height: math.unit(5 + 10 / 12, "feet"),
  20853. default: true
  20854. },
  20855. ]
  20856. ))
  20857. characterMakers.push(() => makeCharacter(
  20858. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20859. {
  20860. front: {
  20861. height: math.unit(6 + 10 / 12, "feet"),
  20862. weight: math.unit(255, "lb"),
  20863. name: "Front",
  20864. image: {
  20865. source: "./media/characters/alexeev/front.svg",
  20866. extra: 213 / 200,
  20867. bottom: 0.05
  20868. }
  20869. },
  20870. },
  20871. [
  20872. {
  20873. name: "Normal",
  20874. height: math.unit(6 + 10 / 12, "feet"),
  20875. default: true
  20876. },
  20877. ]
  20878. ))
  20879. characterMakers.push(() => makeCharacter(
  20880. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20881. {
  20882. front: {
  20883. height: math.unit(2 + 8 / 12, "feet"),
  20884. weight: math.unit(22, "lb"),
  20885. name: "Front",
  20886. image: {
  20887. source: "./media/characters/evelyn/front.svg",
  20888. extra: 208 / 180
  20889. }
  20890. },
  20891. },
  20892. [
  20893. {
  20894. name: "Normal",
  20895. height: math.unit(2 + 8 / 12, "feet"),
  20896. default: true
  20897. },
  20898. ]
  20899. ))
  20900. characterMakers.push(() => makeCharacter(
  20901. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20902. {
  20903. front: {
  20904. height: math.unit(5 + 9 / 12, "feet"),
  20905. weight: math.unit(139, "lb"),
  20906. name: "Front",
  20907. image: {
  20908. source: "./media/characters/inca/front.svg",
  20909. extra: 294 / 291,
  20910. bottom: 0.03
  20911. }
  20912. },
  20913. },
  20914. [
  20915. {
  20916. name: "Normal",
  20917. height: math.unit(5 + 9 / 12, "feet"),
  20918. default: true
  20919. },
  20920. ]
  20921. ))
  20922. characterMakers.push(() => makeCharacter(
  20923. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20924. {
  20925. front: {
  20926. height: math.unit(6 + 3 / 12, "feet"),
  20927. weight: math.unit(185, "lb"),
  20928. name: "Front",
  20929. image: {
  20930. source: "./media/characters/mera/front.svg",
  20931. extra: 291 / 277,
  20932. bottom: 0.03
  20933. }
  20934. },
  20935. },
  20936. [
  20937. {
  20938. name: "Normal",
  20939. height: math.unit(6 + 3 / 12, "feet"),
  20940. default: true
  20941. },
  20942. ]
  20943. ))
  20944. characterMakers.push(() => makeCharacter(
  20945. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20946. {
  20947. front: {
  20948. height: math.unit(6 + 7 / 12, "feet"),
  20949. weight: math.unit(160, "lb"),
  20950. name: "Front",
  20951. image: {
  20952. source: "./media/characters/ceres/front.svg",
  20953. extra: 1023 / 950,
  20954. bottom: 0.027
  20955. }
  20956. },
  20957. back: {
  20958. height: math.unit(6 + 7 / 12, "feet"),
  20959. weight: math.unit(160, "lb"),
  20960. name: "Back",
  20961. image: {
  20962. source: "./media/characters/ceres/back.svg",
  20963. extra: 1023 / 950
  20964. }
  20965. },
  20966. },
  20967. [
  20968. {
  20969. name: "Normal",
  20970. height: math.unit(6 + 7 / 12, "feet"),
  20971. default: true
  20972. },
  20973. ]
  20974. ))
  20975. characterMakers.push(() => makeCharacter(
  20976. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20977. {
  20978. front: {
  20979. height: math.unit(5 + 10 / 12, "feet"),
  20980. weight: math.unit(150, "lb"),
  20981. name: "Front",
  20982. image: {
  20983. source: "./media/characters/kris/front.svg",
  20984. extra: 885 / 803,
  20985. bottom: 0.03
  20986. }
  20987. },
  20988. },
  20989. [
  20990. {
  20991. name: "Normal",
  20992. height: math.unit(5 + 10 / 12, "feet"),
  20993. default: true
  20994. },
  20995. ]
  20996. ))
  20997. characterMakers.push(() => makeCharacter(
  20998. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20999. {
  21000. front: {
  21001. height: math.unit(7, "feet"),
  21002. weight: math.unit(120, "kg"),
  21003. name: "Front",
  21004. image: {
  21005. source: "./media/characters/taluthus/front.svg",
  21006. extra: 903 / 833,
  21007. bottom: 0.015
  21008. }
  21009. },
  21010. },
  21011. [
  21012. {
  21013. name: "Normal",
  21014. height: math.unit(7, "feet"),
  21015. default: true
  21016. },
  21017. {
  21018. name: "Macro",
  21019. height: math.unit(300, "feet")
  21020. },
  21021. ]
  21022. ))
  21023. characterMakers.push(() => makeCharacter(
  21024. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  21025. {
  21026. front: {
  21027. height: math.unit(5 + 9 / 12, "feet"),
  21028. weight: math.unit(145, "lb"),
  21029. name: "Front",
  21030. image: {
  21031. source: "./media/characters/dawn/front.svg",
  21032. extra: 2094 / 2016,
  21033. bottom: 0.025
  21034. }
  21035. },
  21036. back: {
  21037. height: math.unit(5 + 9 / 12, "feet"),
  21038. weight: math.unit(160, "lb"),
  21039. name: "Back",
  21040. image: {
  21041. source: "./media/characters/dawn/back.svg",
  21042. extra: 2112 / 2080,
  21043. bottom: 0.005
  21044. }
  21045. },
  21046. },
  21047. [
  21048. {
  21049. name: "Normal",
  21050. height: math.unit(6 + 7 / 12, "feet"),
  21051. default: true
  21052. },
  21053. ]
  21054. ))
  21055. characterMakers.push(() => makeCharacter(
  21056. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  21057. {
  21058. anthro: {
  21059. height: math.unit(8 + 3 / 12, "feet"),
  21060. weight: math.unit(450, "lb"),
  21061. name: "Anthro",
  21062. image: {
  21063. source: "./media/characters/arador/anthro.svg",
  21064. extra: 1835 / 1718,
  21065. bottom: 0.025
  21066. }
  21067. },
  21068. feral: {
  21069. height: math.unit(4, "feet"),
  21070. weight: math.unit(200, "lb"),
  21071. name: "Feral",
  21072. image: {
  21073. source: "./media/characters/arador/feral.svg",
  21074. extra: 1683 / 1514,
  21075. bottom: 0.07
  21076. }
  21077. },
  21078. },
  21079. [
  21080. {
  21081. name: "Normal",
  21082. height: math.unit(8 + 3 / 12, "feet")
  21083. },
  21084. {
  21085. name: "Macro",
  21086. height: math.unit(82.5, "feet"),
  21087. default: true
  21088. },
  21089. ]
  21090. ))
  21091. characterMakers.push(() => makeCharacter(
  21092. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  21093. {
  21094. front: {
  21095. height: math.unit(5 + 10 / 12, "feet"),
  21096. weight: math.unit(125, "lb"),
  21097. name: "Front",
  21098. image: {
  21099. source: "./media/characters/dharsi/front.svg",
  21100. extra: 716 / 630,
  21101. bottom: 0.035
  21102. }
  21103. },
  21104. },
  21105. [
  21106. {
  21107. name: "Nano",
  21108. height: math.unit(100, "nm")
  21109. },
  21110. {
  21111. name: "Micro",
  21112. height: math.unit(2, "inches")
  21113. },
  21114. {
  21115. name: "Normal",
  21116. height: math.unit(5 + 10 / 12, "feet"),
  21117. default: true
  21118. },
  21119. {
  21120. name: "Macro",
  21121. height: math.unit(1000, "feet")
  21122. },
  21123. {
  21124. name: "Megamacro",
  21125. height: math.unit(10, "miles")
  21126. },
  21127. {
  21128. name: "Gigamacro",
  21129. height: math.unit(3000, "miles")
  21130. },
  21131. {
  21132. name: "Teramacro",
  21133. height: math.unit(500000, "miles")
  21134. },
  21135. {
  21136. name: "Teramacro+",
  21137. height: math.unit(30, "galaxies")
  21138. },
  21139. ]
  21140. ))
  21141. characterMakers.push(() => makeCharacter(
  21142. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  21143. {
  21144. front: {
  21145. height: math.unit(6, "feet"),
  21146. weight: math.unit(150, "lb"),
  21147. name: "Front",
  21148. image: {
  21149. source: "./media/characters/deathy/front.svg",
  21150. extra: 1552 / 1463,
  21151. bottom: 0.025
  21152. }
  21153. },
  21154. side: {
  21155. height: math.unit(6, "feet"),
  21156. weight: math.unit(150, "lb"),
  21157. name: "Side",
  21158. image: {
  21159. source: "./media/characters/deathy/side.svg",
  21160. extra: 1604 / 1455,
  21161. bottom: 0.025
  21162. }
  21163. },
  21164. back: {
  21165. height: math.unit(6, "feet"),
  21166. weight: math.unit(150, "lb"),
  21167. name: "Back",
  21168. image: {
  21169. source: "./media/characters/deathy/back.svg",
  21170. extra: 1580 / 1463,
  21171. bottom: 0.005
  21172. }
  21173. },
  21174. },
  21175. [
  21176. {
  21177. name: "Micro",
  21178. height: math.unit(5, "millimeters")
  21179. },
  21180. {
  21181. name: "Normal",
  21182. height: math.unit(6 + 5 / 12, "feet"),
  21183. default: true
  21184. },
  21185. ]
  21186. ))
  21187. characterMakers.push(() => makeCharacter(
  21188. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  21189. {
  21190. front: {
  21191. height: math.unit(16, "feet"),
  21192. weight: math.unit(4000, "lb"),
  21193. name: "Front",
  21194. image: {
  21195. source: "./media/characters/juniper/front.svg",
  21196. bottom: 0.04
  21197. }
  21198. },
  21199. },
  21200. [
  21201. {
  21202. name: "Normal",
  21203. height: math.unit(16, "feet"),
  21204. default: true
  21205. },
  21206. ]
  21207. ))
  21208. characterMakers.push(() => makeCharacter(
  21209. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  21210. {
  21211. front: {
  21212. height: math.unit(6, "feet"),
  21213. weight: math.unit(150, "lb"),
  21214. name: "Front",
  21215. image: {
  21216. source: "./media/characters/hipster/front.svg",
  21217. extra: 1312 / 1209,
  21218. bottom: 0.025
  21219. }
  21220. },
  21221. back: {
  21222. height: math.unit(6, "feet"),
  21223. weight: math.unit(150, "lb"),
  21224. name: "Back",
  21225. image: {
  21226. source: "./media/characters/hipster/back.svg",
  21227. extra: 1281 / 1196,
  21228. bottom: 0.01
  21229. }
  21230. },
  21231. },
  21232. [
  21233. {
  21234. name: "Micro",
  21235. height: math.unit(1, "mm")
  21236. },
  21237. {
  21238. name: "Normal",
  21239. height: math.unit(4, "inches"),
  21240. default: true
  21241. },
  21242. {
  21243. name: "Macro",
  21244. height: math.unit(500, "feet")
  21245. },
  21246. {
  21247. name: "Megamacro",
  21248. height: math.unit(1000, "miles")
  21249. },
  21250. ]
  21251. ))
  21252. characterMakers.push(() => makeCharacter(
  21253. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  21254. {
  21255. front: {
  21256. height: math.unit(6, "feet"),
  21257. weight: math.unit(150, "lb"),
  21258. name: "Front",
  21259. image: {
  21260. source: "./media/characters/tendirmuldr/front.svg",
  21261. extra: 1878 / 1772,
  21262. bottom: 0.015
  21263. }
  21264. },
  21265. },
  21266. [
  21267. {
  21268. name: "Megamacro",
  21269. height: math.unit(1500, "miles"),
  21270. default: true
  21271. },
  21272. ]
  21273. ))
  21274. characterMakers.push(() => makeCharacter(
  21275. { name: "Mort", species: ["demon"], tags: ["feral"] },
  21276. {
  21277. front: {
  21278. height: math.unit(14, "feet"),
  21279. weight: math.unit(12000, "lb"),
  21280. name: "Front",
  21281. image: {
  21282. source: "./media/characters/mort/front.svg",
  21283. extra: 365 / 318,
  21284. bottom: 0.01
  21285. }
  21286. },
  21287. side: {
  21288. height: math.unit(14, "feet"),
  21289. weight: math.unit(12000, "lb"),
  21290. name: "Side",
  21291. image: {
  21292. source: "./media/characters/mort/side.svg",
  21293. extra: 365 / 318,
  21294. bottom: 0.052
  21295. },
  21296. default: true
  21297. },
  21298. back: {
  21299. height: math.unit(14, "feet"),
  21300. weight: math.unit(12000, "lb"),
  21301. name: "Back",
  21302. image: {
  21303. source: "./media/characters/mort/back.svg",
  21304. extra: 371 / 332,
  21305. bottom: 0.18
  21306. }
  21307. },
  21308. },
  21309. [
  21310. {
  21311. name: "Normal",
  21312. height: math.unit(14, "feet"),
  21313. default: true
  21314. },
  21315. ]
  21316. ))
  21317. characterMakers.push(() => makeCharacter(
  21318. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  21319. {
  21320. front: {
  21321. height: math.unit(8, "feet"),
  21322. weight: math.unit(1, "ton"),
  21323. name: "Front",
  21324. image: {
  21325. source: "./media/characters/lycoa/front.svg",
  21326. extra: 1836/1728,
  21327. bottom: 81/1917
  21328. }
  21329. },
  21330. back: {
  21331. height: math.unit(8, "feet"),
  21332. weight: math.unit(1, "ton"),
  21333. name: "Back",
  21334. image: {
  21335. source: "./media/characters/lycoa/back.svg",
  21336. extra: 1785/1720,
  21337. bottom: 91/1876
  21338. }
  21339. },
  21340. head: {
  21341. height: math.unit(1.6243, "feet"),
  21342. name: "Head",
  21343. image: {
  21344. source: "./media/characters/lycoa/head.svg",
  21345. extra: 1011/782,
  21346. bottom: 0/1011
  21347. }
  21348. },
  21349. tailmaw: {
  21350. height: math.unit(1.9, "feet"),
  21351. name: "Tailmaw",
  21352. image: {
  21353. source: "./media/characters/lycoa/tailmaw.svg"
  21354. }
  21355. },
  21356. tentacles: {
  21357. height: math.unit(2.1, "feet"),
  21358. name: "Tentacles",
  21359. image: {
  21360. source: "./media/characters/lycoa/tentacles.svg"
  21361. }
  21362. },
  21363. dick: {
  21364. height: math.unit(1.73, "feet"),
  21365. name: "Dick",
  21366. image: {
  21367. source: "./media/characters/lycoa/dick.svg"
  21368. }
  21369. },
  21370. },
  21371. [
  21372. {
  21373. name: "Normal",
  21374. height: math.unit(8, "feet"),
  21375. default: true
  21376. },
  21377. {
  21378. name: "Macro",
  21379. height: math.unit(30, "feet")
  21380. },
  21381. ]
  21382. ))
  21383. characterMakers.push(() => makeCharacter(
  21384. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  21385. {
  21386. front: {
  21387. height: math.unit(4 + 2 / 12, "feet"),
  21388. weight: math.unit(70, "lb"),
  21389. name: "Front",
  21390. image: {
  21391. source: "./media/characters/naldara/front.svg",
  21392. extra: 1664/1387,
  21393. bottom: 81/1745
  21394. },
  21395. form: "anthro",
  21396. default: true
  21397. },
  21398. naga: {
  21399. height: math.unit(20, "feet"),
  21400. weight: math.unit(15000, "kg"),
  21401. name: "Front",
  21402. image: {
  21403. source: "./media/characters/naldara/naga.svg",
  21404. extra: 1590/1396,
  21405. bottom: 285/1875
  21406. },
  21407. form: "naga",
  21408. default: true
  21409. },
  21410. },
  21411. [
  21412. {
  21413. name: "Normal",
  21414. height: math.unit(4 + 2 / 12, "feet"),
  21415. form: "anthro",
  21416. default: true
  21417. },
  21418. {
  21419. name: "Normal",
  21420. height: math.unit(20, "feet"),
  21421. form: "naga",
  21422. default: true
  21423. },
  21424. ],
  21425. {
  21426. "anthro": {
  21427. name: "Anthro",
  21428. default: true
  21429. },
  21430. "naga": {
  21431. name: "Naga"
  21432. }
  21433. }
  21434. ))
  21435. characterMakers.push(() => makeCharacter(
  21436. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21437. {
  21438. front: {
  21439. height: math.unit(13 + 7 / 12, "feet"),
  21440. weight: math.unit(1500, "lb"),
  21441. name: "Front",
  21442. image: {
  21443. source: "./media/characters/briar/front.svg",
  21444. extra: 1223/1157,
  21445. bottom: 123/1346
  21446. }
  21447. },
  21448. },
  21449. [
  21450. {
  21451. name: "Normal",
  21452. height: math.unit(13 + 7 / 12, "feet"),
  21453. default: true
  21454. },
  21455. ]
  21456. ))
  21457. characterMakers.push(() => makeCharacter(
  21458. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21459. {
  21460. side: {
  21461. height: math.unit(16, "feet"),
  21462. weight: math.unit(500, "lb"),
  21463. name: "Side",
  21464. image: {
  21465. source: "./media/characters/vanguard/side.svg",
  21466. extra: 1022/914,
  21467. bottom: 30/1052
  21468. }
  21469. },
  21470. sideAlt: {
  21471. height: math.unit(10, "feet"),
  21472. weight: math.unit(500, "lb"),
  21473. name: "Side (Alt)",
  21474. image: {
  21475. source: "./media/characters/vanguard/side-alt.svg",
  21476. extra: 502 / 425,
  21477. bottom: 0.087
  21478. }
  21479. },
  21480. },
  21481. [
  21482. {
  21483. name: "Normal",
  21484. height: math.unit(17.71, "feet"),
  21485. default: true
  21486. },
  21487. ]
  21488. ))
  21489. characterMakers.push(() => makeCharacter(
  21490. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21491. {
  21492. front: {
  21493. height: math.unit(7.5, "feet"),
  21494. weight: math.unit(2, "lb"),
  21495. name: "Front",
  21496. image: {
  21497. source: "./media/characters/artemis/work-safe-front.svg",
  21498. extra: 1192 / 1075,
  21499. bottom: 0.07
  21500. },
  21501. form: "work-safe",
  21502. default: true
  21503. },
  21504. frontNsfw: {
  21505. height: math.unit(7.5, "feet"),
  21506. weight: math.unit(2, "lb"),
  21507. name: "Front",
  21508. image: {
  21509. source: "./media/characters/artemis/calibrating-front.svg",
  21510. extra: 1192 / 1075,
  21511. bottom: 0.07
  21512. },
  21513. form: "calibrating",
  21514. default: true
  21515. },
  21516. frontNsfwer: {
  21517. height: math.unit(7.5, "feet"),
  21518. weight: math.unit(2, "lb"),
  21519. name: "Front",
  21520. image: {
  21521. source: "./media/characters/artemis/oversize-load-front.svg",
  21522. extra: 1192 / 1075,
  21523. bottom: 0.07
  21524. },
  21525. form: "oversize-load",
  21526. default: true
  21527. },
  21528. side: {
  21529. height: math.unit(7.5, "feet"),
  21530. weight: math.unit(2, "lb"),
  21531. name: "Side",
  21532. image: {
  21533. source: "./media/characters/artemis/work-safe-side.svg",
  21534. extra: 1192 / 1075,
  21535. bottom: 0.07
  21536. },
  21537. form: "work-safe"
  21538. },
  21539. sideNsfw: {
  21540. height: math.unit(7.5, "feet"),
  21541. weight: math.unit(2, "lb"),
  21542. name: "Side",
  21543. image: {
  21544. source: "./media/characters/artemis/calibrating-side.svg",
  21545. extra: 1192 / 1075,
  21546. bottom: 0.07
  21547. },
  21548. form: "calibrating"
  21549. },
  21550. sideNsfwer: {
  21551. height: math.unit(7.5, "feet"),
  21552. weight: math.unit(2, "lb"),
  21553. name: "Side",
  21554. image: {
  21555. source: "./media/characters/artemis/oversize-load-side.svg",
  21556. extra: 1192 / 1075,
  21557. bottom: 0.07
  21558. },
  21559. form: "oversize-load"
  21560. },
  21561. maw: {
  21562. height: math.unit(1.1, "feet"),
  21563. name: "Maw",
  21564. image: {
  21565. source: "./media/characters/artemis/maw.svg"
  21566. },
  21567. form: "work-safe"
  21568. },
  21569. stomach: {
  21570. height: math.unit(0.95, "feet"),
  21571. name: "Stomach",
  21572. image: {
  21573. source: "./media/characters/artemis/stomach.svg"
  21574. },
  21575. form: "work-safe"
  21576. },
  21577. dickCanine: {
  21578. height: math.unit(1, "feet"),
  21579. name: "Dick (Canine)",
  21580. image: {
  21581. source: "./media/characters/artemis/dick-canine.svg"
  21582. },
  21583. form: "calibrating"
  21584. },
  21585. dickEquine: {
  21586. height: math.unit(0.85, "feet"),
  21587. name: "Dick (Equine)",
  21588. image: {
  21589. source: "./media/characters/artemis/dick-equine.svg"
  21590. },
  21591. form: "calibrating"
  21592. },
  21593. dickExotic: {
  21594. height: math.unit(0.85, "feet"),
  21595. name: "Dick (Exotic)",
  21596. image: {
  21597. source: "./media/characters/artemis/dick-exotic.svg"
  21598. },
  21599. form: "calibrating"
  21600. },
  21601. dickCanineBigger: {
  21602. height: math.unit(1 * 1.33, "feet"),
  21603. name: "Dick (Canine)",
  21604. image: {
  21605. source: "./media/characters/artemis/dick-canine.svg"
  21606. },
  21607. form: "oversize-load"
  21608. },
  21609. dickEquineBigger: {
  21610. height: math.unit(0.85 * 1.33, "feet"),
  21611. name: "Dick (Equine)",
  21612. image: {
  21613. source: "./media/characters/artemis/dick-equine.svg"
  21614. },
  21615. form: "oversize-load"
  21616. },
  21617. dickExoticBigger: {
  21618. height: math.unit(0.85 * 1.33, "feet"),
  21619. name: "Dick (Exotic)",
  21620. image: {
  21621. source: "./media/characters/artemis/dick-exotic.svg"
  21622. },
  21623. form: "oversize-load"
  21624. },
  21625. },
  21626. [
  21627. {
  21628. name: "Normal",
  21629. height: math.unit(7.5, "feet"),
  21630. form: "work-safe",
  21631. default: true
  21632. },
  21633. {
  21634. name: "Normal",
  21635. height: math.unit(7.5, "feet"),
  21636. form: "calibrating",
  21637. default: true
  21638. },
  21639. {
  21640. name: "Normal",
  21641. height: math.unit(7.5, "feet"),
  21642. form: "oversize-load",
  21643. default: true
  21644. },
  21645. {
  21646. name: "Enlarged",
  21647. height: math.unit(12, "feet"),
  21648. form: "work-safe",
  21649. },
  21650. {
  21651. name: "Enlarged",
  21652. height: math.unit(12, "feet"),
  21653. form: "calibrating",
  21654. },
  21655. {
  21656. name: "Enlarged",
  21657. height: math.unit(12, "feet"),
  21658. form: "oversize-load",
  21659. },
  21660. ],
  21661. {
  21662. "work-safe": {
  21663. name: "Work-Safe",
  21664. default: true
  21665. },
  21666. "calibrating": {
  21667. name: "Calibrating"
  21668. },
  21669. "oversize-load": {
  21670. name: "Oversize Load"
  21671. }
  21672. }
  21673. ))
  21674. characterMakers.push(() => makeCharacter(
  21675. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21676. {
  21677. front: {
  21678. height: math.unit(5 + 3 / 12, "feet"),
  21679. weight: math.unit(160, "lb"),
  21680. name: "Front",
  21681. image: {
  21682. source: "./media/characters/kira/front.svg",
  21683. extra: 906 / 786,
  21684. bottom: 0.01
  21685. }
  21686. },
  21687. back: {
  21688. height: math.unit(5 + 3 / 12, "feet"),
  21689. weight: math.unit(160, "lb"),
  21690. name: "Back",
  21691. image: {
  21692. source: "./media/characters/kira/back.svg",
  21693. extra: 882 / 757,
  21694. bottom: 0.005
  21695. }
  21696. },
  21697. frontDressed: {
  21698. height: math.unit(5 + 3 / 12, "feet"),
  21699. weight: math.unit(160, "lb"),
  21700. name: "Front (Dressed)",
  21701. image: {
  21702. source: "./media/characters/kira/front-dressed.svg",
  21703. extra: 906 / 786,
  21704. bottom: 0.01
  21705. }
  21706. },
  21707. beans: {
  21708. height: math.unit(0.92, "feet"),
  21709. name: "Beans",
  21710. image: {
  21711. source: "./media/characters/kira/beans.svg"
  21712. }
  21713. },
  21714. },
  21715. [
  21716. {
  21717. name: "Normal",
  21718. height: math.unit(5 + 3 / 12, "feet"),
  21719. default: true
  21720. },
  21721. ]
  21722. ))
  21723. characterMakers.push(() => makeCharacter(
  21724. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21725. {
  21726. front: {
  21727. height: math.unit(5 + 4 / 12, "feet"),
  21728. weight: math.unit(145, "lb"),
  21729. name: "Front",
  21730. image: {
  21731. source: "./media/characters/scramble/front.svg",
  21732. extra: 763 / 727,
  21733. bottom: 0.05
  21734. }
  21735. },
  21736. back: {
  21737. height: math.unit(5 + 4 / 12, "feet"),
  21738. weight: math.unit(145, "lb"),
  21739. name: "Back",
  21740. image: {
  21741. source: "./media/characters/scramble/back.svg",
  21742. extra: 826 / 737,
  21743. bottom: 0.002
  21744. }
  21745. },
  21746. },
  21747. [
  21748. {
  21749. name: "Normal",
  21750. height: math.unit(5 + 4 / 12, "feet"),
  21751. default: true
  21752. },
  21753. ]
  21754. ))
  21755. characterMakers.push(() => makeCharacter(
  21756. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21757. {
  21758. side: {
  21759. height: math.unit(6 + 2 / 12, "feet"),
  21760. weight: math.unit(190, "lb"),
  21761. name: "Side",
  21762. image: {
  21763. source: "./media/characters/biscuit/side.svg",
  21764. extra: 858 / 791,
  21765. bottom: 0.044
  21766. }
  21767. },
  21768. },
  21769. [
  21770. {
  21771. name: "Normal",
  21772. height: math.unit(6 + 2 / 12, "feet"),
  21773. default: true
  21774. },
  21775. ]
  21776. ))
  21777. characterMakers.push(() => makeCharacter(
  21778. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21779. {
  21780. front: {
  21781. height: math.unit(5 + 2 / 12, "feet"),
  21782. weight: math.unit(120, "lb"),
  21783. name: "Front",
  21784. image: {
  21785. source: "./media/characters/poffin/front.svg",
  21786. extra: 786 / 680,
  21787. bottom: 0.005
  21788. }
  21789. },
  21790. },
  21791. [
  21792. {
  21793. name: "Normal",
  21794. height: math.unit(5 + 2 / 12, "feet"),
  21795. default: true
  21796. },
  21797. ]
  21798. ))
  21799. characterMakers.push(() => makeCharacter(
  21800. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21801. {
  21802. front: {
  21803. height: math.unit(6 + 3 / 12, "feet"),
  21804. weight: math.unit(519, "lb"),
  21805. name: "Front",
  21806. image: {
  21807. source: "./media/characters/dhari/front.svg",
  21808. extra: 1048 / 946,
  21809. bottom: 0.015
  21810. }
  21811. },
  21812. back: {
  21813. height: math.unit(6 + 3 / 12, "feet"),
  21814. weight: math.unit(519, "lb"),
  21815. name: "Back",
  21816. image: {
  21817. source: "./media/characters/dhari/back.svg",
  21818. extra: 1048 / 931,
  21819. bottom: 0.005
  21820. }
  21821. },
  21822. frontDressed: {
  21823. height: math.unit(6 + 3 / 12, "feet"),
  21824. weight: math.unit(519, "lb"),
  21825. name: "Front (Dressed)",
  21826. image: {
  21827. source: "./media/characters/dhari/front-dressed.svg",
  21828. extra: 1713 / 1546,
  21829. bottom: 0.02
  21830. }
  21831. },
  21832. backDressed: {
  21833. height: math.unit(6 + 3 / 12, "feet"),
  21834. weight: math.unit(519, "lb"),
  21835. name: "Back (Dressed)",
  21836. image: {
  21837. source: "./media/characters/dhari/back-dressed.svg",
  21838. extra: 1699 / 1537,
  21839. bottom: 0.01
  21840. }
  21841. },
  21842. maw: {
  21843. height: math.unit(0.95, "feet"),
  21844. name: "Maw",
  21845. image: {
  21846. source: "./media/characters/dhari/maw.svg"
  21847. }
  21848. },
  21849. wereFront: {
  21850. height: math.unit(12 + 8 / 12, "feet"),
  21851. weight: math.unit(4000, "lb"),
  21852. name: "Front (Were)",
  21853. image: {
  21854. source: "./media/characters/dhari/were-front.svg",
  21855. extra: 1065 / 969,
  21856. bottom: 0.015
  21857. }
  21858. },
  21859. wereBack: {
  21860. height: math.unit(12 + 8 / 12, "feet"),
  21861. weight: math.unit(4000, "lb"),
  21862. name: "Back (Were)",
  21863. image: {
  21864. source: "./media/characters/dhari/were-back.svg",
  21865. extra: 1065 / 969,
  21866. bottom: 0.012
  21867. }
  21868. },
  21869. wereMaw: {
  21870. height: math.unit(0.625, "meters"),
  21871. name: "Maw (Were)",
  21872. image: {
  21873. source: "./media/characters/dhari/were-maw.svg"
  21874. }
  21875. },
  21876. },
  21877. [
  21878. {
  21879. name: "Normal",
  21880. height: math.unit(6 + 3 / 12, "feet"),
  21881. default: true
  21882. },
  21883. ]
  21884. ))
  21885. characterMakers.push(() => makeCharacter(
  21886. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21887. {
  21888. anthro: {
  21889. height: math.unit(5 + 7 / 12, "feet"),
  21890. weight: math.unit(175, "lb"),
  21891. name: "Anthro",
  21892. image: {
  21893. source: "./media/characters/rena-dyne/anthro.svg",
  21894. extra: 1849 / 1785,
  21895. bottom: 0.005
  21896. }
  21897. },
  21898. taur: {
  21899. height: math.unit(15 + 6 / 12, "feet"),
  21900. weight: math.unit(8000, "lb"),
  21901. name: "Taur",
  21902. image: {
  21903. source: "./media/characters/rena-dyne/taur.svg",
  21904. extra: 2315 / 2234,
  21905. bottom: 0.033
  21906. }
  21907. },
  21908. },
  21909. [
  21910. {
  21911. name: "Normal",
  21912. height: math.unit(5 + 7 / 12, "feet"),
  21913. default: true
  21914. },
  21915. ]
  21916. ))
  21917. characterMakers.push(() => makeCharacter(
  21918. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21919. {
  21920. front: {
  21921. height: math.unit(8, "feet"),
  21922. weight: math.unit(600, "lb"),
  21923. name: "Front",
  21924. image: {
  21925. source: "./media/characters/weremeep/front.svg",
  21926. extra: 970/849,
  21927. bottom: 7/977
  21928. }
  21929. },
  21930. },
  21931. [
  21932. {
  21933. name: "Normal",
  21934. height: math.unit(8, "feet"),
  21935. default: true
  21936. },
  21937. {
  21938. name: "Lorg",
  21939. height: math.unit(12, "feet")
  21940. },
  21941. {
  21942. name: "Oh Lawd She Comin'",
  21943. height: math.unit(20, "feet")
  21944. },
  21945. ]
  21946. ))
  21947. characterMakers.push(() => makeCharacter(
  21948. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21949. {
  21950. front: {
  21951. height: math.unit(4, "feet"),
  21952. weight: math.unit(90, "lb"),
  21953. name: "Front",
  21954. image: {
  21955. source: "./media/characters/reza/front.svg",
  21956. extra: 1183 / 1111,
  21957. bottom: 0.017
  21958. }
  21959. },
  21960. back: {
  21961. height: math.unit(4, "feet"),
  21962. weight: math.unit(90, "lb"),
  21963. name: "Back",
  21964. image: {
  21965. source: "./media/characters/reza/back.svg",
  21966. extra: 1183 / 1111,
  21967. bottom: 0.01
  21968. }
  21969. },
  21970. drake: {
  21971. height: math.unit(30, "feet"),
  21972. weight: math.unit(246960, "lb"),
  21973. name: "Drake",
  21974. image: {
  21975. source: "./media/characters/reza/drake.svg",
  21976. extra: 2350 / 2024,
  21977. bottom: 60.7 / 2403
  21978. }
  21979. },
  21980. },
  21981. [
  21982. {
  21983. name: "Normal",
  21984. height: math.unit(4, "feet"),
  21985. default: true
  21986. },
  21987. ]
  21988. ))
  21989. characterMakers.push(() => makeCharacter(
  21990. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21991. {
  21992. side: {
  21993. height: math.unit(15, "feet"),
  21994. weight: math.unit(14, "tons"),
  21995. name: "Side",
  21996. image: {
  21997. source: "./media/characters/athea/side.svg",
  21998. extra: 960 / 540,
  21999. bottom: 0.003
  22000. }
  22001. },
  22002. sitting: {
  22003. height: math.unit(6 * 2.85, "feet"),
  22004. weight: math.unit(14, "tons"),
  22005. name: "Sitting",
  22006. image: {
  22007. source: "./media/characters/athea/sitting.svg",
  22008. extra: 621 / 581,
  22009. bottom: 0.075
  22010. }
  22011. },
  22012. maw: {
  22013. height: math.unit(7.59498031496063, "feet"),
  22014. name: "Maw",
  22015. image: {
  22016. source: "./media/characters/athea/maw.svg"
  22017. }
  22018. },
  22019. },
  22020. [
  22021. {
  22022. name: "Lap Cat",
  22023. height: math.unit(2.5, "feet")
  22024. },
  22025. {
  22026. name: "Minimacro",
  22027. height: math.unit(15, "feet"),
  22028. default: true
  22029. },
  22030. {
  22031. name: "Macro",
  22032. height: math.unit(120, "feet")
  22033. },
  22034. {
  22035. name: "Macro+",
  22036. height: math.unit(640, "feet")
  22037. },
  22038. {
  22039. name: "Colossus",
  22040. height: math.unit(2.2, "miles")
  22041. },
  22042. ]
  22043. ))
  22044. characterMakers.push(() => makeCharacter(
  22045. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  22046. {
  22047. front: {
  22048. height: math.unit(8 + 8 / 12, "feet"),
  22049. weight: math.unit(130, "kg"),
  22050. name: "Front",
  22051. image: {
  22052. source: "./media/characters/seroko/front.svg",
  22053. extra: 1385 / 1280,
  22054. bottom: 0.025
  22055. }
  22056. },
  22057. back: {
  22058. height: math.unit(8 + 8 / 12, "feet"),
  22059. weight: math.unit(130, "kg"),
  22060. name: "Back",
  22061. image: {
  22062. source: "./media/characters/seroko/back.svg",
  22063. extra: 1369 / 1238,
  22064. bottom: 0.018
  22065. }
  22066. },
  22067. frontDressed: {
  22068. height: math.unit(8 + 8 / 12, "feet"),
  22069. weight: math.unit(130, "kg"),
  22070. name: "Front (Dressed)",
  22071. image: {
  22072. source: "./media/characters/seroko/front-dressed.svg",
  22073. extra: 1366 / 1275,
  22074. bottom: 0.03
  22075. }
  22076. },
  22077. },
  22078. [
  22079. {
  22080. name: "Normal",
  22081. height: math.unit(8 + 8 / 12, "feet"),
  22082. default: true
  22083. },
  22084. ]
  22085. ))
  22086. characterMakers.push(() => makeCharacter(
  22087. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  22088. {
  22089. front: {
  22090. height: math.unit(5.5, "feet"),
  22091. weight: math.unit(160, "lb"),
  22092. name: "Front",
  22093. image: {
  22094. source: "./media/characters/quatzi/front.svg",
  22095. extra: 2346 / 2242,
  22096. bottom: 0.015
  22097. }
  22098. },
  22099. },
  22100. [
  22101. {
  22102. name: "Normal",
  22103. height: math.unit(5.5, "feet"),
  22104. default: true
  22105. },
  22106. {
  22107. name: "Big",
  22108. height: math.unit(7.7, "feet")
  22109. },
  22110. ]
  22111. ))
  22112. characterMakers.push(() => makeCharacter(
  22113. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  22114. {
  22115. front: {
  22116. height: math.unit(5 + 11 / 12, "feet"),
  22117. weight: math.unit(180, "lb"),
  22118. name: "Front",
  22119. image: {
  22120. source: "./media/characters/sen/front.svg",
  22121. extra: 1321 / 1254,
  22122. bottom: 0.015
  22123. }
  22124. },
  22125. side: {
  22126. height: math.unit(5 + 11 / 12, "feet"),
  22127. weight: math.unit(180, "lb"),
  22128. name: "Side",
  22129. image: {
  22130. source: "./media/characters/sen/side.svg",
  22131. extra: 1321 / 1254,
  22132. bottom: 0.007
  22133. }
  22134. },
  22135. back: {
  22136. height: math.unit(5 + 11 / 12, "feet"),
  22137. weight: math.unit(180, "lb"),
  22138. name: "Back",
  22139. image: {
  22140. source: "./media/characters/sen/back.svg",
  22141. extra: 1321 / 1254
  22142. }
  22143. },
  22144. },
  22145. [
  22146. {
  22147. name: "Normal",
  22148. height: math.unit(5 + 11 / 12, "feet"),
  22149. default: true
  22150. },
  22151. ]
  22152. ))
  22153. characterMakers.push(() => makeCharacter(
  22154. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  22155. {
  22156. front: {
  22157. height: math.unit(166.6, "cm"),
  22158. weight: math.unit(66.6, "kg"),
  22159. name: "Front",
  22160. image: {
  22161. source: "./media/characters/fruity/front.svg",
  22162. extra: 1510 / 1386,
  22163. bottom: 0.04
  22164. }
  22165. },
  22166. back: {
  22167. height: math.unit(166.6, "cm"),
  22168. weight: math.unit(66.6, "lb"),
  22169. name: "Back",
  22170. image: {
  22171. source: "./media/characters/fruity/back.svg",
  22172. extra: 1563 / 1435,
  22173. bottom: 0.005
  22174. }
  22175. },
  22176. },
  22177. [
  22178. {
  22179. name: "Normal",
  22180. height: math.unit(166.6, "cm"),
  22181. default: true
  22182. },
  22183. {
  22184. name: "Demonic",
  22185. height: math.unit(166.6, "feet")
  22186. },
  22187. ]
  22188. ))
  22189. characterMakers.push(() => makeCharacter(
  22190. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  22191. {
  22192. side: {
  22193. height: math.unit(10, "feet"),
  22194. weight: math.unit(500, "lb"),
  22195. name: "Side",
  22196. image: {
  22197. source: "./media/characters/zost/side.svg",
  22198. extra: 2870/2533,
  22199. bottom: 252/3122
  22200. }
  22201. },
  22202. mawFront: {
  22203. height: math.unit(1.08, "meters"),
  22204. name: "Maw (Front)",
  22205. image: {
  22206. source: "./media/characters/zost/maw-front.svg"
  22207. }
  22208. },
  22209. mawSide: {
  22210. height: math.unit(2.66, "feet"),
  22211. name: "Maw (Side)",
  22212. image: {
  22213. source: "./media/characters/zost/maw-side.svg"
  22214. }
  22215. },
  22216. wingspan: {
  22217. height: math.unit(7.4, "feet"),
  22218. name: "Wingspan",
  22219. image: {
  22220. source: "./media/characters/zost/wingspan.svg"
  22221. }
  22222. },
  22223. },
  22224. [
  22225. {
  22226. name: "Normal",
  22227. height: math.unit(10, "feet"),
  22228. default: true
  22229. },
  22230. ]
  22231. ))
  22232. characterMakers.push(() => makeCharacter(
  22233. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  22234. {
  22235. front: {
  22236. height: math.unit(5 + 4 / 12, "feet"),
  22237. weight: math.unit(120, "lb"),
  22238. name: "Front",
  22239. image: {
  22240. source: "./media/characters/luci/front.svg",
  22241. extra: 1985 / 1884,
  22242. bottom: 0.04
  22243. }
  22244. },
  22245. back: {
  22246. height: math.unit(5 + 4 / 12, "feet"),
  22247. weight: math.unit(120, "lb"),
  22248. name: "Back",
  22249. image: {
  22250. source: "./media/characters/luci/back.svg",
  22251. extra: 1892 / 1791,
  22252. bottom: 0.002
  22253. }
  22254. },
  22255. },
  22256. [
  22257. {
  22258. name: "Normal",
  22259. height: math.unit(5 + 4 / 12, "feet"),
  22260. default: true
  22261. },
  22262. ]
  22263. ))
  22264. characterMakers.push(() => makeCharacter(
  22265. { name: "2th", species: ["monster"], tags: ["anthro"] },
  22266. {
  22267. front: {
  22268. height: math.unit(1500, "feet"),
  22269. weight: math.unit(3.8e6, "tons"),
  22270. name: "Front",
  22271. image: {
  22272. source: "./media/characters/2th/front.svg",
  22273. extra: 3489 / 3350,
  22274. bottom: 0.1
  22275. }
  22276. },
  22277. foot: {
  22278. height: math.unit(461, "feet"),
  22279. name: "Foot",
  22280. image: {
  22281. source: "./media/characters/2th/foot.svg"
  22282. }
  22283. },
  22284. },
  22285. [
  22286. {
  22287. name: "\"Micro\"",
  22288. height: math.unit(15 + 7 / 12, "feet")
  22289. },
  22290. {
  22291. name: "Normal",
  22292. height: math.unit(1500, "feet"),
  22293. default: true
  22294. },
  22295. {
  22296. name: "Macro",
  22297. height: math.unit(5000, "feet")
  22298. },
  22299. {
  22300. name: "Megamacro",
  22301. height: math.unit(15, "miles")
  22302. },
  22303. {
  22304. name: "Gigamacro",
  22305. height: math.unit(4000, "miles")
  22306. },
  22307. {
  22308. name: "Galactic",
  22309. height: math.unit(50, "AU")
  22310. },
  22311. ]
  22312. ))
  22313. characterMakers.push(() => makeCharacter(
  22314. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  22315. {
  22316. front: {
  22317. height: math.unit(5 + 6 / 12, "feet"),
  22318. weight: math.unit(220, "lb"),
  22319. name: "Front",
  22320. image: {
  22321. source: "./media/characters/amethyst/front.svg",
  22322. extra: 2078 / 2040,
  22323. bottom: 0.045
  22324. }
  22325. },
  22326. back: {
  22327. height: math.unit(5 + 6 / 12, "feet"),
  22328. weight: math.unit(220, "lb"),
  22329. name: "Back",
  22330. image: {
  22331. source: "./media/characters/amethyst/back.svg",
  22332. extra: 2021 / 1989,
  22333. bottom: 0.02
  22334. }
  22335. },
  22336. },
  22337. [
  22338. {
  22339. name: "Normal",
  22340. height: math.unit(5 + 6 / 12, "feet"),
  22341. default: true
  22342. },
  22343. ]
  22344. ))
  22345. characterMakers.push(() => makeCharacter(
  22346. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  22347. {
  22348. front: {
  22349. height: math.unit(4 + 11 / 12, "feet"),
  22350. weight: math.unit(120, "lb"),
  22351. name: "Front",
  22352. image: {
  22353. source: "./media/characters/yumi-akiyama/front.svg",
  22354. extra: 1327 / 1235,
  22355. bottom: 0.02
  22356. }
  22357. },
  22358. back: {
  22359. height: math.unit(4 + 11 / 12, "feet"),
  22360. weight: math.unit(120, "lb"),
  22361. name: "Back",
  22362. image: {
  22363. source: "./media/characters/yumi-akiyama/back.svg",
  22364. extra: 1287 / 1245,
  22365. bottom: 0.002
  22366. }
  22367. },
  22368. },
  22369. [
  22370. {
  22371. name: "Galactic",
  22372. height: math.unit(50, "galaxies"),
  22373. default: true
  22374. },
  22375. {
  22376. name: "Universal",
  22377. height: math.unit(100, "universes")
  22378. },
  22379. ]
  22380. ))
  22381. characterMakers.push(() => makeCharacter(
  22382. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  22383. {
  22384. front: {
  22385. height: math.unit(8, "feet"),
  22386. weight: math.unit(500, "lb"),
  22387. name: "Front",
  22388. image: {
  22389. source: "./media/characters/rifter-yrmori/front.svg",
  22390. extra: 1180 / 1125,
  22391. bottom: 0.02
  22392. }
  22393. },
  22394. back: {
  22395. height: math.unit(8, "feet"),
  22396. weight: math.unit(500, "lb"),
  22397. name: "Back",
  22398. image: {
  22399. source: "./media/characters/rifter-yrmori/back.svg",
  22400. extra: 1190 / 1145,
  22401. bottom: 0.001
  22402. }
  22403. },
  22404. wings: {
  22405. height: math.unit(7.75, "feet"),
  22406. weight: math.unit(500, "lb"),
  22407. name: "Wings",
  22408. image: {
  22409. source: "./media/characters/rifter-yrmori/wings.svg",
  22410. extra: 1357 / 1285
  22411. }
  22412. },
  22413. maw: {
  22414. height: math.unit(0.8, "feet"),
  22415. name: "Maw",
  22416. image: {
  22417. source: "./media/characters/rifter-yrmori/maw.svg"
  22418. }
  22419. },
  22420. mawfront: {
  22421. height: math.unit(1.45, "feet"),
  22422. name: "Maw (Front)",
  22423. image: {
  22424. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22425. }
  22426. },
  22427. },
  22428. [
  22429. {
  22430. name: "Normal",
  22431. height: math.unit(8, "feet"),
  22432. default: true
  22433. },
  22434. {
  22435. name: "Macro",
  22436. height: math.unit(42, "meters")
  22437. },
  22438. ]
  22439. ))
  22440. characterMakers.push(() => makeCharacter(
  22441. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22442. {
  22443. were: {
  22444. height: math.unit(25 + 6 / 12, "feet"),
  22445. weight: math.unit(10000, "lb"),
  22446. name: "Were",
  22447. image: {
  22448. source: "./media/characters/tahajin/were.svg",
  22449. extra: 801 / 770,
  22450. bottom: 0.042
  22451. }
  22452. },
  22453. aquatic: {
  22454. height: math.unit(6 + 4 / 12, "feet"),
  22455. weight: math.unit(160, "lb"),
  22456. name: "Aquatic",
  22457. image: {
  22458. source: "./media/characters/tahajin/aquatic.svg",
  22459. extra: 572 / 542,
  22460. bottom: 0.04
  22461. }
  22462. },
  22463. chow: {
  22464. height: math.unit(8 + 11 / 12, "feet"),
  22465. weight: math.unit(450, "lb"),
  22466. name: "Chow",
  22467. image: {
  22468. source: "./media/characters/tahajin/chow.svg",
  22469. extra: 660 / 640,
  22470. bottom: 0.015
  22471. }
  22472. },
  22473. demiNaga: {
  22474. height: math.unit(6 + 8 / 12, "feet"),
  22475. weight: math.unit(300, "lb"),
  22476. name: "Demi Naga",
  22477. image: {
  22478. source: "./media/characters/tahajin/demi-naga.svg",
  22479. extra: 643 / 615,
  22480. bottom: 0.1
  22481. }
  22482. },
  22483. data: {
  22484. height: math.unit(5, "inches"),
  22485. weight: math.unit(0.1, "lb"),
  22486. name: "Data",
  22487. image: {
  22488. source: "./media/characters/tahajin/data.svg"
  22489. }
  22490. },
  22491. fluu: {
  22492. height: math.unit(5 + 7 / 12, "feet"),
  22493. weight: math.unit(140, "lb"),
  22494. name: "Fluu",
  22495. image: {
  22496. source: "./media/characters/tahajin/fluu.svg",
  22497. extra: 628 / 592,
  22498. bottom: 0.02
  22499. }
  22500. },
  22501. starWarrior: {
  22502. height: math.unit(4 + 5 / 12, "feet"),
  22503. weight: math.unit(50, "lb"),
  22504. name: "Star Warrior",
  22505. image: {
  22506. source: "./media/characters/tahajin/star-warrior.svg"
  22507. }
  22508. },
  22509. },
  22510. [
  22511. {
  22512. name: "Normal",
  22513. height: math.unit(25 + 6 / 12, "feet"),
  22514. default: true
  22515. },
  22516. ]
  22517. ))
  22518. characterMakers.push(() => makeCharacter(
  22519. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22520. {
  22521. front: {
  22522. height: math.unit(8, "feet"),
  22523. weight: math.unit(350, "lb"),
  22524. name: "Front",
  22525. image: {
  22526. source: "./media/characters/gabira/front.svg",
  22527. extra: 1261/1154,
  22528. bottom: 51/1312
  22529. }
  22530. },
  22531. back: {
  22532. height: math.unit(8, "feet"),
  22533. weight: math.unit(350, "lb"),
  22534. name: "Back",
  22535. image: {
  22536. source: "./media/characters/gabira/back.svg",
  22537. extra: 1265/1163,
  22538. bottom: 46/1311
  22539. }
  22540. },
  22541. head: {
  22542. height: math.unit(2.85, "feet"),
  22543. name: "Head",
  22544. image: {
  22545. source: "./media/characters/gabira/head.svg"
  22546. }
  22547. },
  22548. },
  22549. [
  22550. {
  22551. name: "Normal",
  22552. height: math.unit(8, "feet"),
  22553. default: true
  22554. },
  22555. ]
  22556. ))
  22557. characterMakers.push(() => makeCharacter(
  22558. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22559. {
  22560. front: {
  22561. height: math.unit(5 + 3 / 12, "feet"),
  22562. weight: math.unit(137, "lb"),
  22563. name: "Front",
  22564. image: {
  22565. source: "./media/characters/sasha-katraine/front.svg",
  22566. extra: 1745/1694,
  22567. bottom: 37/1782
  22568. }
  22569. },
  22570. back: {
  22571. height: math.unit(5 + 3 / 12, "feet"),
  22572. weight: math.unit(137, "lb"),
  22573. name: "Back",
  22574. image: {
  22575. source: "./media/characters/sasha-katraine/back.svg",
  22576. extra: 1776/1699,
  22577. bottom: 26/1802
  22578. }
  22579. },
  22580. },
  22581. [
  22582. {
  22583. name: "Micro",
  22584. height: math.unit(5, "inches")
  22585. },
  22586. {
  22587. name: "Normal",
  22588. height: math.unit(5 + 3 / 12, "feet"),
  22589. default: true
  22590. },
  22591. ]
  22592. ))
  22593. characterMakers.push(() => makeCharacter(
  22594. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22595. {
  22596. side: {
  22597. height: math.unit(4, "inches"),
  22598. weight: math.unit(200, "grams"),
  22599. name: "Side",
  22600. image: {
  22601. source: "./media/characters/der/side.svg",
  22602. extra: 719 / 400,
  22603. bottom: 30.6 / 749.9187
  22604. }
  22605. },
  22606. },
  22607. [
  22608. {
  22609. name: "Micro",
  22610. height: math.unit(4, "inches"),
  22611. default: true
  22612. },
  22613. ]
  22614. ))
  22615. characterMakers.push(() => makeCharacter(
  22616. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22617. {
  22618. side: {
  22619. height: math.unit(30, "meters"),
  22620. weight: math.unit(700, "tonnes"),
  22621. name: "Side",
  22622. image: {
  22623. source: "./media/characters/fixerdragon/side.svg",
  22624. extra: (1293.0514 - 116.03) / 1106.86,
  22625. bottom: 116.03 / 1293.0514
  22626. }
  22627. },
  22628. },
  22629. [
  22630. {
  22631. name: "Planck",
  22632. height: math.unit(1.6e-35, "meters")
  22633. },
  22634. {
  22635. name: "Micro",
  22636. height: math.unit(0.4, "meters")
  22637. },
  22638. {
  22639. name: "Normal",
  22640. height: math.unit(30, "meters"),
  22641. default: true
  22642. },
  22643. {
  22644. name: "Megamacro",
  22645. height: math.unit(1.2, "megameters")
  22646. },
  22647. {
  22648. name: "Teramacro",
  22649. height: math.unit(130, "terameters")
  22650. },
  22651. {
  22652. name: "Yottamacro",
  22653. height: math.unit(6200, "yottameters")
  22654. },
  22655. ]
  22656. ));
  22657. characterMakers.push(() => makeCharacter(
  22658. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22659. {
  22660. front: {
  22661. height: math.unit(8, "feet"),
  22662. weight: math.unit(250, "lb"),
  22663. name: "Front",
  22664. image: {
  22665. source: "./media/characters/kite/front.svg",
  22666. extra: 2796 / 2659,
  22667. bottom: 0.002
  22668. }
  22669. },
  22670. },
  22671. [
  22672. {
  22673. name: "Normal",
  22674. height: math.unit(8, "feet"),
  22675. default: true
  22676. },
  22677. {
  22678. name: "Macro",
  22679. height: math.unit(360, "feet")
  22680. },
  22681. {
  22682. name: "Megamacro",
  22683. height: math.unit(1500, "feet")
  22684. },
  22685. ]
  22686. ))
  22687. characterMakers.push(() => makeCharacter(
  22688. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22689. {
  22690. front: {
  22691. height: math.unit(5 + 11/12, "feet"),
  22692. weight: math.unit(170, "lb"),
  22693. name: "Front",
  22694. image: {
  22695. source: "./media/characters/poojawa-vynar/front.svg",
  22696. extra: 1735/1585,
  22697. bottom: 96/1831
  22698. }
  22699. },
  22700. back: {
  22701. height: math.unit(5 + 11/12, "feet"),
  22702. weight: math.unit(170, "lb"),
  22703. name: "Back",
  22704. image: {
  22705. source: "./media/characters/poojawa-vynar/back.svg",
  22706. extra: 1749/1607,
  22707. bottom: 28/1777
  22708. }
  22709. },
  22710. male: {
  22711. height: math.unit(5 + 11/12, "feet"),
  22712. weight: math.unit(170, "lb"),
  22713. name: "Male",
  22714. image: {
  22715. source: "./media/characters/poojawa-vynar/male.svg",
  22716. extra: 1855/1713,
  22717. bottom: 63/1918
  22718. }
  22719. },
  22720. taur: {
  22721. height: math.unit(5 + 11/12, "feet"),
  22722. weight: math.unit(170, "lb"),
  22723. name: "Taur",
  22724. image: {
  22725. source: "./media/characters/poojawa-vynar/taur.svg",
  22726. extra: 1151/1059,
  22727. bottom: 356/1507
  22728. }
  22729. },
  22730. frontDressed: {
  22731. height: math.unit(5 + 11/12, "feet"),
  22732. weight: math.unit(170, "lb"),
  22733. name: "Front (Dressed)",
  22734. image: {
  22735. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22736. extra: 1735/1585,
  22737. bottom: 96/1831
  22738. }
  22739. },
  22740. backDressed: {
  22741. height: math.unit(5 + 11/12, "feet"),
  22742. weight: math.unit(170, "lb"),
  22743. name: "Back (Dressed)",
  22744. image: {
  22745. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22746. extra: 1749/1607,
  22747. bottom: 28/1777
  22748. }
  22749. },
  22750. maleDressed: {
  22751. height: math.unit(5 + 11/12, "feet"),
  22752. weight: math.unit(170, "lb"),
  22753. name: "Male (Dressed)",
  22754. image: {
  22755. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22756. extra: 1855/1713,
  22757. bottom: 63/1918
  22758. }
  22759. },
  22760. taurDressed: {
  22761. height: math.unit(5 + 11/12, "feet"),
  22762. weight: math.unit(170, "lb"),
  22763. name: "Taur (Dressed)",
  22764. image: {
  22765. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22766. extra: 1151/1059,
  22767. bottom: 356/1507
  22768. }
  22769. },
  22770. maw: {
  22771. height: math.unit(1.46, "feet"),
  22772. name: "Maw",
  22773. image: {
  22774. source: "./media/characters/poojawa-vynar/maw.svg"
  22775. }
  22776. },
  22777. head: {
  22778. height: math.unit(2.34, "feet"),
  22779. name: "Head",
  22780. image: {
  22781. source: "./media/characters/poojawa-vynar/head.svg"
  22782. }
  22783. },
  22784. paw: {
  22785. height: math.unit(1.61, "feet"),
  22786. name: "Paw",
  22787. image: {
  22788. source: "./media/characters/poojawa-vynar/paw.svg"
  22789. }
  22790. },
  22791. pawToering: {
  22792. height: math.unit(1.72, "feet"),
  22793. name: "Paw (Toering)",
  22794. image: {
  22795. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22796. }
  22797. },
  22798. toering: {
  22799. height: math.unit(2.9, "inches"),
  22800. name: "Toering",
  22801. image: {
  22802. source: "./media/characters/poojawa-vynar/toering.svg"
  22803. }
  22804. },
  22805. shaft: {
  22806. height: math.unit(0.625, "feet"),
  22807. name: "Shaft",
  22808. image: {
  22809. source: "./media/characters/poojawa-vynar/shaft.svg"
  22810. }
  22811. },
  22812. spade: {
  22813. height: math.unit(0.42, "feet"),
  22814. name: "Spade",
  22815. image: {
  22816. source: "./media/characters/poojawa-vynar/spade.svg"
  22817. }
  22818. },
  22819. },
  22820. [
  22821. {
  22822. name: "Shortstack",
  22823. height: math.unit(4, "feet")
  22824. },
  22825. {
  22826. name: "Normal",
  22827. height: math.unit(5 + 11 / 12, "feet"),
  22828. default: true
  22829. },
  22830. {
  22831. name: "Tauric",
  22832. height: math.unit(4, "meters")
  22833. },
  22834. ]
  22835. ))
  22836. characterMakers.push(() => makeCharacter(
  22837. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22838. {
  22839. front: {
  22840. height: math.unit(293, "meters"),
  22841. weight: math.unit(70400, "tons"),
  22842. name: "Front",
  22843. image: {
  22844. source: "./media/characters/violette/front.svg",
  22845. extra: 1227 / 1180,
  22846. bottom: 0.005
  22847. }
  22848. },
  22849. back: {
  22850. height: math.unit(293, "meters"),
  22851. weight: math.unit(70400, "tons"),
  22852. name: "Back",
  22853. image: {
  22854. source: "./media/characters/violette/back.svg",
  22855. extra: 1227 / 1180,
  22856. bottom: 0.005
  22857. }
  22858. },
  22859. },
  22860. [
  22861. {
  22862. name: "Macro",
  22863. height: math.unit(293, "meters"),
  22864. default: true
  22865. },
  22866. ]
  22867. ))
  22868. characterMakers.push(() => makeCharacter(
  22869. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22870. {
  22871. front: {
  22872. height: math.unit(1050, "feet"),
  22873. weight: math.unit(200000, "tons"),
  22874. name: "Front",
  22875. image: {
  22876. source: "./media/characters/alessandra/front.svg",
  22877. extra: 960 / 912,
  22878. bottom: 0.06
  22879. }
  22880. },
  22881. },
  22882. [
  22883. {
  22884. name: "Macro",
  22885. height: math.unit(1050, "feet")
  22886. },
  22887. {
  22888. name: "Macro+",
  22889. height: math.unit(900, "meters"),
  22890. default: true
  22891. },
  22892. ]
  22893. ))
  22894. characterMakers.push(() => makeCharacter(
  22895. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22896. {
  22897. front: {
  22898. height: math.unit(5, "feet"),
  22899. weight: math.unit(187, "lb"),
  22900. name: "Front",
  22901. image: {
  22902. source: "./media/characters/person/front.svg",
  22903. extra: 3087 / 2945,
  22904. bottom: 91 / 3181
  22905. }
  22906. },
  22907. },
  22908. [
  22909. {
  22910. name: "Micro",
  22911. height: math.unit(3, "inches")
  22912. },
  22913. {
  22914. name: "Normal",
  22915. height: math.unit(5, "feet"),
  22916. default: true
  22917. },
  22918. {
  22919. name: "Macro",
  22920. height: math.unit(90, "feet")
  22921. },
  22922. {
  22923. name: "Max Size",
  22924. height: math.unit(280, "feet")
  22925. },
  22926. ]
  22927. ))
  22928. characterMakers.push(() => makeCharacter(
  22929. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22930. {
  22931. front: {
  22932. height: math.unit(4.5, "meters"),
  22933. weight: math.unit(3200, "lb"),
  22934. name: "Front",
  22935. image: {
  22936. source: "./media/characters/ty/front.svg",
  22937. extra: 1038 / 960,
  22938. bottom: 31.156 / 1068
  22939. }
  22940. },
  22941. back: {
  22942. height: math.unit(4.5, "meters"),
  22943. weight: math.unit(3200, "lb"),
  22944. name: "Back",
  22945. image: {
  22946. source: "./media/characters/ty/back.svg",
  22947. extra: 1044 / 966,
  22948. bottom: 7.48 / 1049
  22949. }
  22950. },
  22951. },
  22952. [
  22953. {
  22954. name: "Normal",
  22955. height: math.unit(4.5, "meters"),
  22956. default: true
  22957. },
  22958. ]
  22959. ))
  22960. characterMakers.push(() => makeCharacter(
  22961. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22962. {
  22963. front: {
  22964. height: math.unit(5 + 4 / 12, "feet"),
  22965. weight: math.unit(115, "lb"),
  22966. name: "Front",
  22967. image: {
  22968. source: "./media/characters/rocky/front.svg",
  22969. extra: 1012 / 975,
  22970. bottom: 54 / 1066
  22971. }
  22972. },
  22973. },
  22974. [
  22975. {
  22976. name: "Normal",
  22977. height: math.unit(5 + 4 / 12, "feet"),
  22978. default: true
  22979. },
  22980. ]
  22981. ))
  22982. characterMakers.push(() => makeCharacter(
  22983. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22984. {
  22985. upright: {
  22986. height: math.unit(6, "meters"),
  22987. weight: math.unit(4000, "kg"),
  22988. name: "Upright",
  22989. image: {
  22990. source: "./media/characters/ruin/upright.svg",
  22991. extra: 668 / 661,
  22992. bottom: 42 / 799.8396
  22993. }
  22994. },
  22995. },
  22996. [
  22997. {
  22998. name: "Normal",
  22999. height: math.unit(6, "meters"),
  23000. default: true
  23001. },
  23002. ]
  23003. ))
  23004. characterMakers.push(() => makeCharacter(
  23005. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  23006. {
  23007. front: {
  23008. height: math.unit(5, "feet"),
  23009. weight: math.unit(106, "lb"),
  23010. name: "Front",
  23011. image: {
  23012. source: "./media/characters/robin/front.svg",
  23013. extra: 862 / 799,
  23014. bottom: 42.4 / 914.8856
  23015. }
  23016. },
  23017. },
  23018. [
  23019. {
  23020. name: "Normal",
  23021. height: math.unit(5, "feet"),
  23022. default: true
  23023. },
  23024. ]
  23025. ))
  23026. characterMakers.push(() => makeCharacter(
  23027. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  23028. {
  23029. side: {
  23030. height: math.unit(3, "feet"),
  23031. weight: math.unit(225, "lb"),
  23032. name: "Side",
  23033. image: {
  23034. source: "./media/characters/saian/side.svg",
  23035. extra: 566 / 356,
  23036. bottom: 79.7 / 643
  23037. }
  23038. },
  23039. maw: {
  23040. height: math.unit(2.85, "feet"),
  23041. name: "Maw",
  23042. image: {
  23043. source: "./media/characters/saian/maw.svg"
  23044. }
  23045. },
  23046. },
  23047. [
  23048. {
  23049. name: "Normal",
  23050. height: math.unit(3, "feet"),
  23051. default: true
  23052. },
  23053. ]
  23054. ))
  23055. characterMakers.push(() => makeCharacter(
  23056. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  23057. {
  23058. side: {
  23059. height: math.unit(8, "feet"),
  23060. weight: math.unit(300, "lb"),
  23061. name: "Side",
  23062. image: {
  23063. source: "./media/characters/equus-silvermane/side.svg",
  23064. extra: 2176 / 2050,
  23065. bottom: 65.7 / 2245
  23066. }
  23067. },
  23068. front: {
  23069. height: math.unit(8, "feet"),
  23070. weight: math.unit(300, "lb"),
  23071. name: "Front",
  23072. image: {
  23073. source: "./media/characters/equus-silvermane/front.svg",
  23074. extra: 4633 / 4400,
  23075. bottom: 71.3 / 4706.915
  23076. }
  23077. },
  23078. sideStepping: {
  23079. height: math.unit(8, "feet"),
  23080. weight: math.unit(300, "lb"),
  23081. name: "Side (Stepping)",
  23082. image: {
  23083. source: "./media/characters/equus-silvermane/side-stepping.svg",
  23084. extra: 1968 / 1860,
  23085. bottom: 16.4 / 1989
  23086. }
  23087. },
  23088. },
  23089. [
  23090. {
  23091. name: "Normal",
  23092. height: math.unit(8, "feet")
  23093. },
  23094. {
  23095. name: "Minimacro",
  23096. height: math.unit(75, "feet"),
  23097. default: true
  23098. },
  23099. {
  23100. name: "Macro",
  23101. height: math.unit(150, "feet")
  23102. },
  23103. {
  23104. name: "Macro+",
  23105. height: math.unit(1000, "feet")
  23106. },
  23107. {
  23108. name: "Megamacro",
  23109. height: math.unit(1, "mile")
  23110. },
  23111. ]
  23112. ))
  23113. characterMakers.push(() => makeCharacter(
  23114. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  23115. {
  23116. side: {
  23117. height: math.unit(20, "feet"),
  23118. weight: math.unit(30000, "kg"),
  23119. name: "Side",
  23120. image: {
  23121. source: "./media/characters/windar/side.svg",
  23122. extra: 1491 / 1248,
  23123. bottom: 82.56 / 1568
  23124. }
  23125. },
  23126. },
  23127. [
  23128. {
  23129. name: "Normal",
  23130. height: math.unit(20, "feet"),
  23131. default: true
  23132. },
  23133. ]
  23134. ))
  23135. characterMakers.push(() => makeCharacter(
  23136. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  23137. {
  23138. side: {
  23139. height: math.unit(15.66, "feet"),
  23140. weight: math.unit(150, "lb"),
  23141. name: "Side",
  23142. image: {
  23143. source: "./media/characters/melody/side.svg",
  23144. extra: 1097 / 944,
  23145. bottom: 11.8 / 1109
  23146. }
  23147. },
  23148. sideOutfit: {
  23149. height: math.unit(15.66, "feet"),
  23150. weight: math.unit(150, "lb"),
  23151. name: "Side (Outfit)",
  23152. image: {
  23153. source: "./media/characters/melody/side-outfit.svg",
  23154. extra: 1097 / 944,
  23155. bottom: 11.8 / 1109
  23156. }
  23157. },
  23158. },
  23159. [
  23160. {
  23161. name: "Normal",
  23162. height: math.unit(15.66, "feet"),
  23163. default: true
  23164. },
  23165. ]
  23166. ))
  23167. characterMakers.push(() => makeCharacter(
  23168. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  23169. {
  23170. armoredFront: {
  23171. height: math.unit(8, "feet"),
  23172. weight: math.unit(325, "lb"),
  23173. name: "Front",
  23174. image: {
  23175. source: "./media/characters/windera/armored-front.svg",
  23176. extra: 1830/1598,
  23177. bottom: 151/1981
  23178. },
  23179. form: "armored",
  23180. default: true
  23181. },
  23182. macroFront: {
  23183. height: math.unit(70, "feet"),
  23184. weight: math.unit(315453, "lb"),
  23185. name: "Front",
  23186. image: {
  23187. source: "./media/characters/windera/macro-front.svg",
  23188. extra: 963/883,
  23189. bottom: 23/986
  23190. },
  23191. form: "macro",
  23192. default: true
  23193. },
  23194. },
  23195. [
  23196. {
  23197. name: "Normal",
  23198. height: math.unit(8, "feet"),
  23199. default: true,
  23200. form: "armored"
  23201. },
  23202. {
  23203. name: "Normal",
  23204. height: math.unit(70, "feet"),
  23205. default: true,
  23206. form: "macro"
  23207. },
  23208. ],
  23209. {
  23210. "armored": {
  23211. name: "Armored",
  23212. default: true
  23213. },
  23214. "macro": {
  23215. name: "Macro",
  23216. },
  23217. }
  23218. ))
  23219. characterMakers.push(() => makeCharacter(
  23220. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  23221. {
  23222. front: {
  23223. height: math.unit(28.75, "feet"),
  23224. weight: math.unit(2000, "kg"),
  23225. name: "Front",
  23226. image: {
  23227. source: "./media/characters/sonear/front.svg",
  23228. extra: 1041.1 / 964.9,
  23229. bottom: 53.7 / 1096.6
  23230. }
  23231. },
  23232. },
  23233. [
  23234. {
  23235. name: "Normal",
  23236. height: math.unit(28.75, "feet"),
  23237. default: true
  23238. },
  23239. ]
  23240. ))
  23241. characterMakers.push(() => makeCharacter(
  23242. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  23243. {
  23244. side: {
  23245. height: math.unit(25.5, "feet"),
  23246. weight: math.unit(23000, "kg"),
  23247. name: "Side",
  23248. image: {
  23249. source: "./media/characters/kanara/side.svg"
  23250. }
  23251. },
  23252. },
  23253. [
  23254. {
  23255. name: "Normal",
  23256. height: math.unit(25.5, "feet"),
  23257. default: true
  23258. },
  23259. ]
  23260. ))
  23261. characterMakers.push(() => makeCharacter(
  23262. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  23263. {
  23264. side: {
  23265. height: math.unit(10, "feet"),
  23266. weight: math.unit(1000, "kg"),
  23267. name: "Side",
  23268. image: {
  23269. source: "./media/characters/ereus/side.svg",
  23270. extra: 1157 / 959,
  23271. bottom: 153 / 1312.5
  23272. }
  23273. },
  23274. },
  23275. [
  23276. {
  23277. name: "Normal",
  23278. height: math.unit(10, "feet"),
  23279. default: true
  23280. },
  23281. ]
  23282. ))
  23283. characterMakers.push(() => makeCharacter(
  23284. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  23285. {
  23286. side: {
  23287. height: math.unit(4.5, "feet"),
  23288. weight: math.unit(500, "lb"),
  23289. name: "Side",
  23290. image: {
  23291. source: "./media/characters/e-ter/side.svg",
  23292. extra: 1550 / 1248,
  23293. bottom: 146 / 1694
  23294. }
  23295. },
  23296. },
  23297. [
  23298. {
  23299. name: "Normal",
  23300. height: math.unit(4.5, "feet"),
  23301. default: true
  23302. },
  23303. ]
  23304. ))
  23305. characterMakers.push(() => makeCharacter(
  23306. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  23307. {
  23308. side: {
  23309. height: math.unit(9.7, "feet"),
  23310. weight: math.unit(4000, "kg"),
  23311. name: "Side",
  23312. image: {
  23313. source: "./media/characters/yamie/side.svg"
  23314. }
  23315. },
  23316. },
  23317. [
  23318. {
  23319. name: "Normal",
  23320. height: math.unit(9.7, "feet"),
  23321. default: true
  23322. },
  23323. ]
  23324. ))
  23325. characterMakers.push(() => makeCharacter(
  23326. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  23327. {
  23328. front: {
  23329. height: math.unit(50, "feet"),
  23330. weight: math.unit(50000, "kg"),
  23331. name: "Front",
  23332. image: {
  23333. source: "./media/characters/anders/front.svg",
  23334. extra: 570 / 539,
  23335. bottom: 14.7 / 586.7
  23336. }
  23337. },
  23338. },
  23339. [
  23340. {
  23341. name: "Large",
  23342. height: math.unit(50, "feet")
  23343. },
  23344. {
  23345. name: "Macro",
  23346. height: math.unit(2000, "feet"),
  23347. default: true
  23348. },
  23349. {
  23350. name: "Megamacro",
  23351. height: math.unit(12, "miles")
  23352. },
  23353. ]
  23354. ))
  23355. characterMakers.push(() => makeCharacter(
  23356. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  23357. {
  23358. front: {
  23359. height: math.unit(7 + 2 / 12, "feet"),
  23360. weight: math.unit(300, "lb"),
  23361. name: "Front",
  23362. image: {
  23363. source: "./media/characters/reban/front.svg",
  23364. extra: 1287/1212,
  23365. bottom: 148/1435
  23366. }
  23367. },
  23368. head: {
  23369. height: math.unit(1.95, "feet"),
  23370. name: "Head",
  23371. image: {
  23372. source: "./media/characters/reban/head.svg"
  23373. }
  23374. },
  23375. maw: {
  23376. height: math.unit(0.95, "feet"),
  23377. name: "Maw",
  23378. image: {
  23379. source: "./media/characters/reban/maw.svg"
  23380. }
  23381. },
  23382. foot: {
  23383. height: math.unit(1.65, "feet"),
  23384. name: "Foot",
  23385. image: {
  23386. source: "./media/characters/reban/foot.svg"
  23387. }
  23388. },
  23389. dick: {
  23390. height: math.unit(7 / 5, "feet"),
  23391. name: "Dick",
  23392. image: {
  23393. source: "./media/characters/reban/dick.svg"
  23394. }
  23395. },
  23396. },
  23397. [
  23398. {
  23399. name: "Natural Height",
  23400. height: math.unit(7 + 2 / 12, "feet")
  23401. },
  23402. {
  23403. name: "Macro",
  23404. height: math.unit(500, "feet"),
  23405. default: true
  23406. },
  23407. {
  23408. name: "Canon Height",
  23409. height: math.unit(50, "AU")
  23410. },
  23411. ]
  23412. ))
  23413. characterMakers.push(() => makeCharacter(
  23414. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  23415. {
  23416. front: {
  23417. height: math.unit(6, "feet"),
  23418. weight: math.unit(150, "lb"),
  23419. name: "Front",
  23420. image: {
  23421. source: "./media/characters/terrance-keayes/front.svg",
  23422. extra: 1.005,
  23423. bottom: 151 / 1615
  23424. }
  23425. },
  23426. side: {
  23427. height: math.unit(6, "feet"),
  23428. weight: math.unit(150, "lb"),
  23429. name: "Side",
  23430. image: {
  23431. source: "./media/characters/terrance-keayes/side.svg",
  23432. extra: 1.005,
  23433. bottom: 129.4 / 1544
  23434. }
  23435. },
  23436. back: {
  23437. height: math.unit(6, "feet"),
  23438. weight: math.unit(150, "lb"),
  23439. name: "Back",
  23440. image: {
  23441. source: "./media/characters/terrance-keayes/back.svg",
  23442. extra: 1.005,
  23443. bottom: 58.4 / 1557.3
  23444. }
  23445. },
  23446. dick: {
  23447. height: math.unit(6 * 0.208, "feet"),
  23448. name: "Dick",
  23449. image: {
  23450. source: "./media/characters/terrance-keayes/dick.svg"
  23451. }
  23452. },
  23453. },
  23454. [
  23455. {
  23456. name: "Canon Height",
  23457. height: math.unit(35, "miles"),
  23458. default: true
  23459. },
  23460. ]
  23461. ))
  23462. characterMakers.push(() => makeCharacter(
  23463. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23464. {
  23465. front: {
  23466. height: math.unit(6, "feet"),
  23467. weight: math.unit(150, "lb"),
  23468. name: "Front",
  23469. image: {
  23470. source: "./media/characters/ofelia/front.svg",
  23471. extra: 1130/1117,
  23472. bottom: 91/1221
  23473. }
  23474. },
  23475. back: {
  23476. height: math.unit(6, "feet"),
  23477. weight: math.unit(150, "lb"),
  23478. name: "Back",
  23479. image: {
  23480. source: "./media/characters/ofelia/back.svg",
  23481. extra: 1172/1159,
  23482. bottom: 28/1200
  23483. }
  23484. },
  23485. maw: {
  23486. height: math.unit(1, "feet"),
  23487. name: "Maw",
  23488. image: {
  23489. source: "./media/characters/ofelia/maw.svg"
  23490. }
  23491. },
  23492. foot: {
  23493. height: math.unit(1.949, "feet"),
  23494. name: "Foot",
  23495. image: {
  23496. source: "./media/characters/ofelia/foot.svg"
  23497. }
  23498. },
  23499. },
  23500. [
  23501. {
  23502. name: "Canon Height",
  23503. height: math.unit(2000, "miles"),
  23504. default: true
  23505. },
  23506. ]
  23507. ))
  23508. characterMakers.push(() => makeCharacter(
  23509. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23510. {
  23511. front: {
  23512. height: math.unit(6, "feet"),
  23513. weight: math.unit(150, "lb"),
  23514. name: "Front",
  23515. image: {
  23516. source: "./media/characters/samuel/front.svg",
  23517. extra: 265 / 258,
  23518. bottom: 2 / 266.1566
  23519. }
  23520. },
  23521. },
  23522. [
  23523. {
  23524. name: "Macro",
  23525. height: math.unit(100, "feet"),
  23526. default: true
  23527. },
  23528. {
  23529. name: "Full Size",
  23530. height: math.unit(1000, "miles")
  23531. },
  23532. ]
  23533. ))
  23534. characterMakers.push(() => makeCharacter(
  23535. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23536. {
  23537. front: {
  23538. height: math.unit(6, "feet"),
  23539. weight: math.unit(300, "lb"),
  23540. name: "Front",
  23541. image: {
  23542. source: "./media/characters/beishir-kiel/front.svg",
  23543. extra: 569 / 547,
  23544. bottom: 41.9 / 609
  23545. }
  23546. },
  23547. maw: {
  23548. height: math.unit(6 * 0.202, "feet"),
  23549. name: "Maw",
  23550. image: {
  23551. source: "./media/characters/beishir-kiel/maw.svg"
  23552. }
  23553. },
  23554. },
  23555. [
  23556. {
  23557. name: "Macro",
  23558. height: math.unit(300, "feet"),
  23559. default: true
  23560. },
  23561. ]
  23562. ))
  23563. characterMakers.push(() => makeCharacter(
  23564. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23565. {
  23566. front: {
  23567. height: math.unit(5 + 7/12, "feet"),
  23568. weight: math.unit(120, "lb"),
  23569. name: "Front",
  23570. image: {
  23571. source: "./media/characters/logan-grey/front.svg",
  23572. extra: 1836/1738,
  23573. bottom: 108/1944
  23574. }
  23575. },
  23576. back: {
  23577. height: math.unit(5 + 7/12, "feet"),
  23578. weight: math.unit(120, "lb"),
  23579. name: "Back",
  23580. image: {
  23581. source: "./media/characters/logan-grey/back.svg",
  23582. extra: 1880/1794,
  23583. bottom: 24/1904
  23584. }
  23585. },
  23586. frontSfw: {
  23587. height: math.unit(5 + 7/12, "feet"),
  23588. weight: math.unit(120, "lb"),
  23589. name: "Front (SFW)",
  23590. image: {
  23591. source: "./media/characters/logan-grey/front-sfw.svg",
  23592. extra: 1836/1738,
  23593. bottom: 108/1944
  23594. }
  23595. },
  23596. backSfw: {
  23597. height: math.unit(5 + 7/12, "feet"),
  23598. weight: math.unit(120, "lb"),
  23599. name: "Back (SFW)",
  23600. image: {
  23601. source: "./media/characters/logan-grey/back-sfw.svg",
  23602. extra: 1880/1794,
  23603. bottom: 24/1904
  23604. }
  23605. },
  23606. hands: {
  23607. height: math.unit(0.84, "feet"),
  23608. name: "Hands",
  23609. image: {
  23610. source: "./media/characters/logan-grey/hands.svg"
  23611. }
  23612. },
  23613. paws: {
  23614. height: math.unit(0.72, "feet"),
  23615. name: "Paws",
  23616. image: {
  23617. source: "./media/characters/logan-grey/paws.svg"
  23618. }
  23619. },
  23620. cock: {
  23621. height: math.unit(1.45, "feet"),
  23622. name: "Cock",
  23623. image: {
  23624. source: "./media/characters/logan-grey/cock.svg"
  23625. }
  23626. },
  23627. cockAlt: {
  23628. height: math.unit(1.437, "feet"),
  23629. name: "Cock (alt)",
  23630. image: {
  23631. source: "./media/characters/logan-grey/cock-alt.svg"
  23632. }
  23633. },
  23634. },
  23635. [
  23636. {
  23637. name: "Normal",
  23638. height: math.unit(5 + 8 / 12, "feet")
  23639. },
  23640. {
  23641. name: "The 500 Foot Femboy",
  23642. height: math.unit(500, "feet"),
  23643. default: true
  23644. },
  23645. {
  23646. name: "Megmacro",
  23647. height: math.unit(20, "miles")
  23648. },
  23649. ]
  23650. ))
  23651. characterMakers.push(() => makeCharacter(
  23652. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23653. {
  23654. front: {
  23655. height: math.unit(8 + 2 / 12, "feet"),
  23656. weight: math.unit(275, "lb"),
  23657. name: "Front",
  23658. image: {
  23659. source: "./media/characters/draganta/front.svg",
  23660. extra: 1177 / 1135,
  23661. bottom: 33.46 / 1212.1
  23662. }
  23663. },
  23664. },
  23665. [
  23666. {
  23667. name: "Normal",
  23668. height: math.unit(8 + 6 / 12, "feet"),
  23669. default: true
  23670. },
  23671. {
  23672. name: "Macro",
  23673. height: math.unit(150, "feet")
  23674. },
  23675. {
  23676. name: "Megamacro",
  23677. height: math.unit(1000, "miles")
  23678. },
  23679. ]
  23680. ))
  23681. characterMakers.push(() => makeCharacter(
  23682. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23683. {
  23684. front: {
  23685. height: math.unit(1.72, "m"),
  23686. weight: math.unit(80, "lb"),
  23687. name: "Front",
  23688. image: {
  23689. source: "./media/characters/voski/front.svg",
  23690. extra: 2076.22 / 2022.4,
  23691. bottom: 102.7 / 2177.3866
  23692. }
  23693. },
  23694. frontFlaccid: {
  23695. height: math.unit(1.72, "m"),
  23696. weight: math.unit(80, "lb"),
  23697. name: "Front (Flaccid)",
  23698. image: {
  23699. source: "./media/characters/voski/front-flaccid.svg",
  23700. extra: 2076.22 / 2022.4,
  23701. bottom: 102.7 / 2177.3866
  23702. }
  23703. },
  23704. frontErect: {
  23705. height: math.unit(1.72, "m"),
  23706. weight: math.unit(80, "lb"),
  23707. name: "Front (Erect)",
  23708. image: {
  23709. source: "./media/characters/voski/front-erect.svg",
  23710. extra: 2076.22 / 2022.4,
  23711. bottom: 102.7 / 2177.3866
  23712. }
  23713. },
  23714. back: {
  23715. height: math.unit(1.72, "m"),
  23716. weight: math.unit(80, "lb"),
  23717. name: "Back",
  23718. image: {
  23719. source: "./media/characters/voski/back.svg",
  23720. extra: 2104 / 2051,
  23721. bottom: 10.45 / 2113.63
  23722. }
  23723. },
  23724. },
  23725. [
  23726. {
  23727. name: "Normal",
  23728. height: math.unit(1.72, "m")
  23729. },
  23730. {
  23731. name: "Macro",
  23732. height: math.unit(55, "m"),
  23733. default: true
  23734. },
  23735. {
  23736. name: "Macro+",
  23737. height: math.unit(300, "m")
  23738. },
  23739. {
  23740. name: "Macro++",
  23741. height: math.unit(700, "m")
  23742. },
  23743. {
  23744. name: "Macro+++",
  23745. height: math.unit(4500, "m")
  23746. },
  23747. {
  23748. name: "Macro++++",
  23749. height: math.unit(45, "km")
  23750. },
  23751. {
  23752. name: "Macro+++++",
  23753. height: math.unit(1220, "km")
  23754. },
  23755. ]
  23756. ))
  23757. characterMakers.push(() => makeCharacter(
  23758. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23759. {
  23760. front: {
  23761. height: math.unit(2.3, "m"),
  23762. weight: math.unit(304, "kg"),
  23763. name: "Front",
  23764. image: {
  23765. source: "./media/characters/icowom-lee/front.svg",
  23766. extra: 985 / 955,
  23767. bottom: 25.4 / 1012
  23768. }
  23769. },
  23770. fronttentacles: {
  23771. height: math.unit(2.3, "m"),
  23772. weight: math.unit(304, "kg"),
  23773. name: "Front-tentacles",
  23774. image: {
  23775. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23776. extra: 985 / 955,
  23777. bottom: 25.4 / 1012
  23778. }
  23779. },
  23780. back: {
  23781. height: math.unit(2.3, "m"),
  23782. weight: math.unit(304, "kg"),
  23783. name: "Back",
  23784. image: {
  23785. source: "./media/characters/icowom-lee/back.svg",
  23786. extra: 975 / 954,
  23787. bottom: 9.5 / 985
  23788. }
  23789. },
  23790. backtentacles: {
  23791. height: math.unit(2.3, "m"),
  23792. weight: math.unit(304, "kg"),
  23793. name: "Back-tentacles",
  23794. image: {
  23795. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23796. extra: 975 / 954,
  23797. bottom: 9.5 / 985
  23798. }
  23799. },
  23800. frontDressed: {
  23801. height: math.unit(2.3, "m"),
  23802. weight: math.unit(304, "kg"),
  23803. name: "Front (Dressed)",
  23804. image: {
  23805. source: "./media/characters/icowom-lee/front-dressed.svg",
  23806. extra: 3076 / 2933,
  23807. bottom: 51.4 / 3125.1889
  23808. }
  23809. },
  23810. rump: {
  23811. height: math.unit(0.776, "meters"),
  23812. name: "Rump",
  23813. image: {
  23814. source: "./media/characters/icowom-lee/rump.svg"
  23815. }
  23816. },
  23817. genitals: {
  23818. height: math.unit(0.78, "meters"),
  23819. name: "Genitals",
  23820. image: {
  23821. source: "./media/characters/icowom-lee/genitals.svg"
  23822. }
  23823. },
  23824. },
  23825. [
  23826. {
  23827. name: "Normal",
  23828. height: math.unit(2.3, "meters"),
  23829. default: true
  23830. },
  23831. {
  23832. name: "Macro",
  23833. height: math.unit(94, "meters"),
  23834. default: true
  23835. },
  23836. ]
  23837. ))
  23838. characterMakers.push(() => makeCharacter(
  23839. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23840. {
  23841. front: {
  23842. height: math.unit(22, "meters"),
  23843. weight: math.unit(21000, "kg"),
  23844. name: "Front",
  23845. image: {
  23846. source: "./media/characters/shock-diamond/front.svg",
  23847. extra: 2204 / 2053,
  23848. bottom: 65 / 2239.47
  23849. }
  23850. },
  23851. frontNude: {
  23852. height: math.unit(22, "meters"),
  23853. weight: math.unit(21000, "kg"),
  23854. name: "Front (Nude)",
  23855. image: {
  23856. source: "./media/characters/shock-diamond/front-nude.svg",
  23857. extra: 2514 / 2285,
  23858. bottom: 13 / 2527.56
  23859. }
  23860. },
  23861. },
  23862. [
  23863. {
  23864. name: "Normal",
  23865. height: math.unit(3, "meters")
  23866. },
  23867. {
  23868. name: "Macro",
  23869. height: math.unit(22, "meters"),
  23870. default: true
  23871. },
  23872. ]
  23873. ))
  23874. characterMakers.push(() => makeCharacter(
  23875. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23876. {
  23877. front: {
  23878. height: math.unit(5 + 4 / 12, "feet"),
  23879. weight: math.unit(120, "lb"),
  23880. name: "Front",
  23881. image: {
  23882. source: "./media/characters/rory/front.svg",
  23883. extra: 1318/1241,
  23884. bottom: 42/1360
  23885. }
  23886. },
  23887. back: {
  23888. height: math.unit(5 + 4 / 12, "feet"),
  23889. weight: math.unit(120, "lb"),
  23890. name: "Back",
  23891. image: {
  23892. source: "./media/characters/rory/back.svg",
  23893. extra: 1318/1241,
  23894. bottom: 42/1360
  23895. }
  23896. },
  23897. butt: {
  23898. height: math.unit(1.74, "feet"),
  23899. name: "Butt",
  23900. image: {
  23901. source: "./media/characters/rory/butt.svg"
  23902. }
  23903. },
  23904. dick: {
  23905. height: math.unit(1.02, "feet"),
  23906. name: "Dick",
  23907. image: {
  23908. source: "./media/characters/rory/dick.svg"
  23909. }
  23910. },
  23911. paws: {
  23912. height: math.unit(1, "feet"),
  23913. name: "Paws",
  23914. image: {
  23915. source: "./media/characters/rory/paws.svg"
  23916. }
  23917. },
  23918. frontAlt: {
  23919. height: math.unit(5 + 4 / 12, "feet"),
  23920. weight: math.unit(120, "lb"),
  23921. name: "Front (Alt)",
  23922. image: {
  23923. source: "./media/characters/rory/front-alt.svg",
  23924. extra: 589 / 556,
  23925. bottom: 45.7 / 635.76
  23926. }
  23927. },
  23928. frontAltNude: {
  23929. height: math.unit(5 + 4 / 12, "feet"),
  23930. weight: math.unit(120, "lb"),
  23931. name: "Front (Alt, Nude)",
  23932. image: {
  23933. source: "./media/characters/rory/front-alt-nude.svg",
  23934. extra: 589 / 556,
  23935. bottom: 45.7 / 635.76
  23936. }
  23937. },
  23938. side: {
  23939. height: math.unit(5 + 4 / 12, "feet"),
  23940. weight: math.unit(120, "lb"),
  23941. name: "Side",
  23942. image: {
  23943. source: "./media/characters/rory/side.svg",
  23944. extra: 597 / 564,
  23945. bottom: 55 / 653
  23946. }
  23947. },
  23948. backAlt: {
  23949. height: math.unit(5 + 4 / 12, "feet"),
  23950. weight: math.unit(120, "lb"),
  23951. name: "Back (Alt)",
  23952. image: {
  23953. source: "./media/characters/rory/back-alt.svg",
  23954. extra: 620 / 585,
  23955. bottom: 8.86 / 630.43
  23956. }
  23957. },
  23958. dickAlt: {
  23959. height: math.unit(0.86, "feet"),
  23960. name: "Dick (Alt)",
  23961. image: {
  23962. source: "./media/characters/rory/dick-alt.svg"
  23963. }
  23964. },
  23965. },
  23966. [
  23967. {
  23968. name: "Normal",
  23969. height: math.unit(5 + 4 / 12, "feet"),
  23970. default: true
  23971. },
  23972. {
  23973. name: "Macro",
  23974. height: math.unit(100, "feet")
  23975. },
  23976. {
  23977. name: "Macro+",
  23978. height: math.unit(140, "feet")
  23979. },
  23980. {
  23981. name: "Macro++",
  23982. height: math.unit(300, "feet")
  23983. },
  23984. ]
  23985. ))
  23986. characterMakers.push(() => makeCharacter(
  23987. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23988. {
  23989. front: {
  23990. height: math.unit(5 + 9 / 12, "feet"),
  23991. weight: math.unit(190, "lb"),
  23992. name: "Front",
  23993. image: {
  23994. source: "./media/characters/sprisk/front.svg",
  23995. extra: 1225 / 1180,
  23996. bottom: 42.7 / 1266.4
  23997. }
  23998. },
  23999. frontNsfw: {
  24000. height: math.unit(5 + 9 / 12, "feet"),
  24001. weight: math.unit(190, "lb"),
  24002. name: "Front (NSFW)",
  24003. image: {
  24004. source: "./media/characters/sprisk/front-nsfw.svg",
  24005. extra: 1225 / 1180,
  24006. bottom: 42.7 / 1266.4
  24007. }
  24008. },
  24009. back: {
  24010. height: math.unit(5 + 9 / 12, "feet"),
  24011. weight: math.unit(190, "lb"),
  24012. name: "Back",
  24013. image: {
  24014. source: "./media/characters/sprisk/back.svg",
  24015. extra: 1247 / 1200,
  24016. bottom: 5.6 / 1253.04
  24017. }
  24018. },
  24019. },
  24020. [
  24021. {
  24022. name: "Tiny",
  24023. height: math.unit(2, "inches")
  24024. },
  24025. {
  24026. name: "Normal",
  24027. height: math.unit(5 + 9 / 12, "feet"),
  24028. default: true
  24029. },
  24030. {
  24031. name: "Mini Macro",
  24032. height: math.unit(18, "feet")
  24033. },
  24034. {
  24035. name: "Macro",
  24036. height: math.unit(100, "feet")
  24037. },
  24038. {
  24039. name: "MACRO",
  24040. height: math.unit(50, "miles")
  24041. },
  24042. {
  24043. name: "M A C R O",
  24044. height: math.unit(300, "miles")
  24045. },
  24046. ]
  24047. ))
  24048. characterMakers.push(() => makeCharacter(
  24049. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  24050. {
  24051. side: {
  24052. height: math.unit(15.6, "meters"),
  24053. weight: math.unit(700000, "kg"),
  24054. name: "Side",
  24055. image: {
  24056. source: "./media/characters/bunsen/side.svg",
  24057. extra: 1644 / 358
  24058. }
  24059. },
  24060. foot: {
  24061. height: math.unit(1.611 * 1644 / 358, "meter"),
  24062. name: "Foot",
  24063. image: {
  24064. source: "./media/characters/bunsen/foot.svg"
  24065. }
  24066. },
  24067. },
  24068. [
  24069. {
  24070. name: "Small",
  24071. height: math.unit(10, "feet")
  24072. },
  24073. {
  24074. name: "Normal",
  24075. height: math.unit(15.6, "meters"),
  24076. default: true
  24077. },
  24078. ]
  24079. ))
  24080. characterMakers.push(() => makeCharacter(
  24081. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  24082. {
  24083. front: {
  24084. height: math.unit(4 + 11 / 12, "feet"),
  24085. weight: math.unit(140, "lb"),
  24086. name: "Front",
  24087. image: {
  24088. source: "./media/characters/sesh/front.svg",
  24089. extra: 3420 / 3231,
  24090. bottom: 72 / 3949.5
  24091. }
  24092. },
  24093. },
  24094. [
  24095. {
  24096. name: "Normal",
  24097. height: math.unit(4 + 11 / 12, "feet")
  24098. },
  24099. {
  24100. name: "Grown",
  24101. height: math.unit(15, "feet"),
  24102. default: true
  24103. },
  24104. {
  24105. name: "Macro",
  24106. height: math.unit(1500, "feet")
  24107. },
  24108. {
  24109. name: "Megamacro",
  24110. height: math.unit(30, "miles")
  24111. },
  24112. {
  24113. name: "Continental",
  24114. height: math.unit(3000, "miles")
  24115. },
  24116. {
  24117. name: "Gravity Mass",
  24118. height: math.unit(300000, "miles")
  24119. },
  24120. {
  24121. name: "Planet Buster",
  24122. height: math.unit(30000000, "miles")
  24123. },
  24124. {
  24125. name: "Big",
  24126. height: math.unit(3000000000, "miles")
  24127. },
  24128. ]
  24129. ))
  24130. characterMakers.push(() => makeCharacter(
  24131. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  24132. {
  24133. front: {
  24134. height: math.unit(9, "feet"),
  24135. weight: math.unit(350, "lb"),
  24136. name: "Front",
  24137. image: {
  24138. source: "./media/characters/pepper/front.svg",
  24139. extra: 1448 / 1312,
  24140. bottom: 9.4 / 1457.88
  24141. }
  24142. },
  24143. back: {
  24144. height: math.unit(9, "feet"),
  24145. weight: math.unit(350, "lb"),
  24146. name: "Back",
  24147. image: {
  24148. source: "./media/characters/pepper/back.svg",
  24149. extra: 1423 / 1300,
  24150. bottom: 4.6 / 1429
  24151. }
  24152. },
  24153. maw: {
  24154. height: math.unit(0.932, "feet"),
  24155. name: "Maw",
  24156. image: {
  24157. source: "./media/characters/pepper/maw.svg"
  24158. }
  24159. },
  24160. },
  24161. [
  24162. {
  24163. name: "Normal",
  24164. height: math.unit(9, "feet"),
  24165. default: true
  24166. },
  24167. ]
  24168. ))
  24169. characterMakers.push(() => makeCharacter(
  24170. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  24171. {
  24172. front: {
  24173. height: math.unit(6, "feet"),
  24174. weight: math.unit(150, "lb"),
  24175. name: "Front",
  24176. image: {
  24177. source: "./media/characters/maelstrom/front.svg",
  24178. extra: 2100 / 1883,
  24179. bottom: 94 / 2196.7
  24180. }
  24181. },
  24182. },
  24183. [
  24184. {
  24185. name: "Less Kaiju",
  24186. height: math.unit(200, "feet")
  24187. },
  24188. {
  24189. name: "Kaiju",
  24190. height: math.unit(400, "feet"),
  24191. default: true
  24192. },
  24193. {
  24194. name: "Kaiju-er",
  24195. height: math.unit(600, "feet")
  24196. },
  24197. ]
  24198. ))
  24199. characterMakers.push(() => makeCharacter(
  24200. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  24201. {
  24202. front: {
  24203. height: math.unit(6 + 5 / 12, "feet"),
  24204. weight: math.unit(180, "lb"),
  24205. name: "Front",
  24206. image: {
  24207. source: "./media/characters/lexir/front.svg",
  24208. extra: 180 / 172,
  24209. bottom: 12 / 192
  24210. }
  24211. },
  24212. back: {
  24213. height: math.unit(6 + 5 / 12, "feet"),
  24214. weight: math.unit(180, "lb"),
  24215. name: "Back",
  24216. image: {
  24217. source: "./media/characters/lexir/back.svg",
  24218. extra: 1273/1201,
  24219. bottom: 39/1312
  24220. }
  24221. },
  24222. },
  24223. [
  24224. {
  24225. name: "Very Smal",
  24226. height: math.unit(1, "nm")
  24227. },
  24228. {
  24229. name: "Normal",
  24230. height: math.unit(6 + 5 / 12, "feet"),
  24231. default: true
  24232. },
  24233. {
  24234. name: "Macro",
  24235. height: math.unit(1, "mile")
  24236. },
  24237. {
  24238. name: "Megamacro",
  24239. height: math.unit(50, "miles")
  24240. },
  24241. ]
  24242. ))
  24243. characterMakers.push(() => makeCharacter(
  24244. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  24245. {
  24246. front: {
  24247. height: math.unit(1.5, "meters"),
  24248. weight: math.unit(100, "lb"),
  24249. name: "Front",
  24250. image: {
  24251. source: "./media/characters/maksio/front.svg",
  24252. extra: 1549 / 1531,
  24253. bottom: 123.7 / 1674.5429
  24254. }
  24255. },
  24256. back: {
  24257. height: math.unit(1.5, "meters"),
  24258. weight: math.unit(100, "lb"),
  24259. name: "Back",
  24260. image: {
  24261. source: "./media/characters/maksio/back.svg",
  24262. extra: 1541 / 1509,
  24263. bottom: 97 / 1639
  24264. }
  24265. },
  24266. hand: {
  24267. height: math.unit(0.621, "feet"),
  24268. name: "Hand",
  24269. image: {
  24270. source: "./media/characters/maksio/hand.svg"
  24271. }
  24272. },
  24273. foot: {
  24274. height: math.unit(1.611, "feet"),
  24275. name: "Foot",
  24276. image: {
  24277. source: "./media/characters/maksio/foot.svg"
  24278. }
  24279. },
  24280. },
  24281. [
  24282. {
  24283. name: "Shrunken",
  24284. height: math.unit(10, "cm")
  24285. },
  24286. {
  24287. name: "Normal",
  24288. height: math.unit(150, "cm"),
  24289. default: true
  24290. },
  24291. ]
  24292. ))
  24293. characterMakers.push(() => makeCharacter(
  24294. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  24295. {
  24296. front: {
  24297. height: math.unit(100, "feet"),
  24298. name: "Front",
  24299. image: {
  24300. source: "./media/characters/erza-bear/front.svg",
  24301. extra: 2449 / 2390,
  24302. bottom: 46 / 2494
  24303. }
  24304. },
  24305. back: {
  24306. height: math.unit(100, "feet"),
  24307. name: "Back",
  24308. image: {
  24309. source: "./media/characters/erza-bear/back.svg",
  24310. extra: 2489 / 2430,
  24311. bottom: 85.4 / 2480
  24312. }
  24313. },
  24314. tail: {
  24315. height: math.unit(42, "feet"),
  24316. name: "Tail",
  24317. image: {
  24318. source: "./media/characters/erza-bear/tail.svg"
  24319. }
  24320. },
  24321. tongue: {
  24322. height: math.unit(8, "feet"),
  24323. name: "Tongue",
  24324. image: {
  24325. source: "./media/characters/erza-bear/tongue.svg"
  24326. }
  24327. },
  24328. dick: {
  24329. height: math.unit(10.5, "feet"),
  24330. name: "Dick",
  24331. image: {
  24332. source: "./media/characters/erza-bear/dick.svg"
  24333. }
  24334. },
  24335. dickVertical: {
  24336. height: math.unit(16.9, "feet"),
  24337. name: "Dick (Vertical)",
  24338. image: {
  24339. source: "./media/characters/erza-bear/dick-vertical.svg"
  24340. }
  24341. },
  24342. },
  24343. [
  24344. {
  24345. name: "Macro",
  24346. height: math.unit(100, "feet"),
  24347. default: true
  24348. },
  24349. ]
  24350. ))
  24351. characterMakers.push(() => makeCharacter(
  24352. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  24353. {
  24354. front: {
  24355. height: math.unit(172, "cm"),
  24356. weight: math.unit(73, "kg"),
  24357. name: "Front",
  24358. image: {
  24359. source: "./media/characters/violet-flor/front.svg",
  24360. extra: 1530 / 1442,
  24361. bottom: 61.9 / 1588.8
  24362. }
  24363. },
  24364. back: {
  24365. height: math.unit(180, "cm"),
  24366. weight: math.unit(73, "kg"),
  24367. name: "Back",
  24368. image: {
  24369. source: "./media/characters/violet-flor/back.svg",
  24370. extra: 1692 / 1630,
  24371. bottom: 20 / 1712
  24372. }
  24373. },
  24374. },
  24375. [
  24376. {
  24377. name: "Normal",
  24378. height: math.unit(172, "cm"),
  24379. default: true
  24380. },
  24381. ]
  24382. ))
  24383. characterMakers.push(() => makeCharacter(
  24384. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  24385. {
  24386. front: {
  24387. height: math.unit(6, "feet"),
  24388. weight: math.unit(220, "lb"),
  24389. name: "Front",
  24390. image: {
  24391. source: "./media/characters/lynn-rhea/front.svg",
  24392. extra: 310 / 273
  24393. }
  24394. },
  24395. back: {
  24396. height: math.unit(6, "feet"),
  24397. weight: math.unit(220, "lb"),
  24398. name: "Back",
  24399. image: {
  24400. source: "./media/characters/lynn-rhea/back.svg",
  24401. extra: 310 / 273
  24402. }
  24403. },
  24404. dicks: {
  24405. height: math.unit(0.9, "feet"),
  24406. name: "Dicks",
  24407. image: {
  24408. source: "./media/characters/lynn-rhea/dicks.svg"
  24409. }
  24410. },
  24411. slit: {
  24412. height: math.unit(0.4, "feet"),
  24413. name: "Slit",
  24414. image: {
  24415. source: "./media/characters/lynn-rhea/slit.svg"
  24416. }
  24417. },
  24418. },
  24419. [
  24420. {
  24421. name: "Micro",
  24422. height: math.unit(1, "inch")
  24423. },
  24424. {
  24425. name: "Macro",
  24426. height: math.unit(60, "feet"),
  24427. default: true
  24428. },
  24429. {
  24430. name: "Megamacro",
  24431. height: math.unit(2, "miles")
  24432. },
  24433. {
  24434. name: "Gigamacro",
  24435. height: math.unit(3, "earths")
  24436. },
  24437. {
  24438. name: "Galactic",
  24439. height: math.unit(0.8, "galaxies")
  24440. },
  24441. ]
  24442. ))
  24443. characterMakers.push(() => makeCharacter(
  24444. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24445. {
  24446. front: {
  24447. height: math.unit(1600, "feet"),
  24448. weight: math.unit(85758785169, "kg"),
  24449. name: "Front",
  24450. image: {
  24451. source: "./media/characters/valathos/front.svg",
  24452. extra: 1451 / 1339
  24453. }
  24454. },
  24455. },
  24456. [
  24457. {
  24458. name: "Macro",
  24459. height: math.unit(1600, "feet"),
  24460. default: true
  24461. },
  24462. ]
  24463. ))
  24464. characterMakers.push(() => makeCharacter(
  24465. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24466. {
  24467. front: {
  24468. height: math.unit(7 + 5 / 12, "feet"),
  24469. weight: math.unit(300, "lb"),
  24470. name: "Front",
  24471. image: {
  24472. source: "./media/characters/azula/front.svg",
  24473. extra: 3208 / 2880,
  24474. bottom: 80.2 / 3277
  24475. }
  24476. },
  24477. back: {
  24478. height: math.unit(7 + 5 / 12, "feet"),
  24479. weight: math.unit(300, "lb"),
  24480. name: "Back",
  24481. image: {
  24482. source: "./media/characters/azula/back.svg",
  24483. extra: 3169 / 2822,
  24484. bottom: 150.6 / 3321
  24485. }
  24486. },
  24487. },
  24488. [
  24489. {
  24490. name: "Normal",
  24491. height: math.unit(7 + 5 / 12, "feet"),
  24492. default: true
  24493. },
  24494. {
  24495. name: "Big",
  24496. height: math.unit(20, "feet")
  24497. },
  24498. ]
  24499. ))
  24500. characterMakers.push(() => makeCharacter(
  24501. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24502. {
  24503. front: {
  24504. height: math.unit(5 + 1 / 12, "feet"),
  24505. weight: math.unit(110, "lb"),
  24506. name: "Front",
  24507. image: {
  24508. source: "./media/characters/rupert/front.svg",
  24509. extra: 1549 / 1495,
  24510. bottom: 54.2 / 1604.4
  24511. }
  24512. },
  24513. },
  24514. [
  24515. {
  24516. name: "Normal",
  24517. height: math.unit(5 + 1 / 12, "feet"),
  24518. default: true
  24519. },
  24520. ]
  24521. ))
  24522. characterMakers.push(() => makeCharacter(
  24523. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24524. {
  24525. front: {
  24526. height: math.unit(8 + 4 / 12, "feet"),
  24527. weight: math.unit(350, "lb"),
  24528. name: "Front",
  24529. image: {
  24530. source: "./media/characters/sheera-castellar/front.svg",
  24531. extra: 1957 / 1894,
  24532. bottom: 26.97 / 1975.017
  24533. }
  24534. },
  24535. side: {
  24536. height: math.unit(8 + 4 / 12, "feet"),
  24537. weight: math.unit(350, "lb"),
  24538. name: "Side",
  24539. image: {
  24540. source: "./media/characters/sheera-castellar/side.svg",
  24541. extra: 1957 / 1894
  24542. }
  24543. },
  24544. back: {
  24545. height: math.unit(8 + 4 / 12, "feet"),
  24546. weight: math.unit(350, "lb"),
  24547. name: "Back",
  24548. image: {
  24549. source: "./media/characters/sheera-castellar/back.svg",
  24550. extra: 1957 / 1894
  24551. }
  24552. },
  24553. angled: {
  24554. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24555. weight: math.unit(350, "lb"),
  24556. name: "Angled",
  24557. image: {
  24558. source: "./media/characters/sheera-castellar/angled.svg",
  24559. extra: 1807 / 1707,
  24560. bottom: 68 / 1875
  24561. }
  24562. },
  24563. genitals: {
  24564. height: math.unit(2.2, "feet"),
  24565. name: "Genitals",
  24566. image: {
  24567. source: "./media/characters/sheera-castellar/genitals.svg"
  24568. }
  24569. },
  24570. taur: {
  24571. height: math.unit(10 + 6/12, "feet"),
  24572. name: "Taur",
  24573. image: {
  24574. source: "./media/characters/sheera-castellar/taur.svg",
  24575. extra: 2017/1909,
  24576. bottom: 185/2202
  24577. }
  24578. },
  24579. },
  24580. [
  24581. {
  24582. name: "Normal",
  24583. height: math.unit(8 + 4 / 12, "feet")
  24584. },
  24585. {
  24586. name: "Macro",
  24587. height: math.unit(150, "feet"),
  24588. default: true
  24589. },
  24590. {
  24591. name: "Macro+",
  24592. height: math.unit(800, "feet")
  24593. },
  24594. ]
  24595. ))
  24596. characterMakers.push(() => makeCharacter(
  24597. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24598. {
  24599. front: {
  24600. height: math.unit(6, "feet"),
  24601. weight: math.unit(150, "lb"),
  24602. name: "Front",
  24603. image: {
  24604. source: "./media/characters/jaipur/front.svg",
  24605. extra: 3860 / 3731,
  24606. bottom: 287 / 4140
  24607. }
  24608. },
  24609. back: {
  24610. height: math.unit(6, "feet"),
  24611. weight: math.unit(150, "lb"),
  24612. name: "Back",
  24613. image: {
  24614. source: "./media/characters/jaipur/back.svg",
  24615. extra: 1637/1561,
  24616. bottom: 154/1791
  24617. }
  24618. },
  24619. },
  24620. [
  24621. {
  24622. name: "Normal",
  24623. height: math.unit(1.85, "meters"),
  24624. default: true
  24625. },
  24626. {
  24627. name: "Macro",
  24628. height: math.unit(150, "meters")
  24629. },
  24630. {
  24631. name: "Macro+",
  24632. height: math.unit(0.5, "miles")
  24633. },
  24634. {
  24635. name: "Macro++",
  24636. height: math.unit(2.5, "miles")
  24637. },
  24638. {
  24639. name: "Macro+++",
  24640. height: math.unit(12, "miles")
  24641. },
  24642. {
  24643. name: "Macro++++",
  24644. height: math.unit(120, "miles")
  24645. },
  24646. {
  24647. name: "Macro+++++",
  24648. height: math.unit(1200, "miles")
  24649. },
  24650. ]
  24651. ))
  24652. characterMakers.push(() => makeCharacter(
  24653. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24654. {
  24655. front: {
  24656. height: math.unit(6, "feet"),
  24657. weight: math.unit(150, "lb"),
  24658. name: "Front",
  24659. image: {
  24660. source: "./media/characters/sheila-wolf/front.svg",
  24661. extra: 1931 / 1808,
  24662. bottom: 29.5 / 1960
  24663. }
  24664. },
  24665. dick: {
  24666. height: math.unit(1.464, "feet"),
  24667. name: "Dick",
  24668. image: {
  24669. source: "./media/characters/sheila-wolf/dick.svg"
  24670. }
  24671. },
  24672. muzzle: {
  24673. height: math.unit(0.513, "feet"),
  24674. name: "Muzzle",
  24675. image: {
  24676. source: "./media/characters/sheila-wolf/muzzle.svg"
  24677. }
  24678. },
  24679. },
  24680. [
  24681. {
  24682. name: "Macro",
  24683. height: math.unit(70, "feet"),
  24684. default: true
  24685. },
  24686. ]
  24687. ))
  24688. characterMakers.push(() => makeCharacter(
  24689. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24690. {
  24691. front: {
  24692. height: math.unit(32, "meters"),
  24693. weight: math.unit(300000, "kg"),
  24694. name: "Front",
  24695. image: {
  24696. source: "./media/characters/almor/front.svg",
  24697. extra: 1408 / 1322,
  24698. bottom: 94.6 / 1506.5
  24699. }
  24700. },
  24701. },
  24702. [
  24703. {
  24704. name: "Macro",
  24705. height: math.unit(32, "meters"),
  24706. default: true
  24707. },
  24708. ]
  24709. ))
  24710. characterMakers.push(() => makeCharacter(
  24711. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24712. {
  24713. front: {
  24714. height: math.unit(7, "feet"),
  24715. weight: math.unit(200, "lb"),
  24716. name: "Front",
  24717. image: {
  24718. source: "./media/characters/silver/front.svg",
  24719. extra: 472.1 / 450.5,
  24720. bottom: 26.5 / 499.424
  24721. }
  24722. },
  24723. },
  24724. [
  24725. {
  24726. name: "Normal",
  24727. height: math.unit(7, "feet"),
  24728. default: true
  24729. },
  24730. {
  24731. name: "Macro",
  24732. height: math.unit(800, "feet")
  24733. },
  24734. {
  24735. name: "Megamacro",
  24736. height: math.unit(250, "miles")
  24737. },
  24738. ]
  24739. ))
  24740. characterMakers.push(() => makeCharacter(
  24741. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24742. {
  24743. front: {
  24744. height: math.unit(6, "feet"),
  24745. weight: math.unit(150, "lb"),
  24746. name: "Front",
  24747. image: {
  24748. source: "./media/characters/pliskin/front.svg",
  24749. extra: 1469 / 1359,
  24750. bottom: 70 / 1540
  24751. }
  24752. },
  24753. },
  24754. [
  24755. {
  24756. name: "Micro",
  24757. height: math.unit(3, "inches")
  24758. },
  24759. {
  24760. name: "Normal",
  24761. height: math.unit(5 + 11 / 12, "feet"),
  24762. default: true
  24763. },
  24764. {
  24765. name: "Macro",
  24766. height: math.unit(120, "feet")
  24767. },
  24768. ]
  24769. ))
  24770. characterMakers.push(() => makeCharacter(
  24771. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24772. {
  24773. front: {
  24774. height: math.unit(6, "feet"),
  24775. weight: math.unit(150, "lb"),
  24776. name: "Front",
  24777. image: {
  24778. source: "./media/characters/sammy/front.svg",
  24779. extra: 1193 / 1089,
  24780. bottom: 30.5 / 1226
  24781. }
  24782. },
  24783. },
  24784. [
  24785. {
  24786. name: "Macro",
  24787. height: math.unit(1700, "feet"),
  24788. default: true
  24789. },
  24790. {
  24791. name: "Examacro",
  24792. height: math.unit(2.5e9, "lightyears")
  24793. },
  24794. ]
  24795. ))
  24796. characterMakers.push(() => makeCharacter(
  24797. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24798. {
  24799. front: {
  24800. height: math.unit(21, "meters"),
  24801. weight: math.unit(12, "tonnes"),
  24802. name: "Front",
  24803. image: {
  24804. source: "./media/characters/kuru/front.svg",
  24805. extra: 4301 / 3785,
  24806. bottom: 371.3 / 4691
  24807. }
  24808. },
  24809. },
  24810. [
  24811. {
  24812. name: "Macro",
  24813. height: math.unit(21, "meters"),
  24814. default: true
  24815. },
  24816. ]
  24817. ))
  24818. characterMakers.push(() => makeCharacter(
  24819. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24820. {
  24821. front: {
  24822. height: math.unit(23, "meters"),
  24823. weight: math.unit(12.2, "tonnes"),
  24824. name: "Front",
  24825. image: {
  24826. source: "./media/characters/rakka/front.svg",
  24827. extra: 4670 / 4169,
  24828. bottom: 301 / 4968.7
  24829. }
  24830. },
  24831. },
  24832. [
  24833. {
  24834. name: "Macro",
  24835. height: math.unit(23, "meters"),
  24836. default: true
  24837. },
  24838. ]
  24839. ))
  24840. characterMakers.push(() => makeCharacter(
  24841. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24842. {
  24843. front: {
  24844. height: math.unit(6, "feet"),
  24845. weight: math.unit(150, "lb"),
  24846. name: "Front",
  24847. image: {
  24848. source: "./media/characters/rhys-feline/front.svg",
  24849. extra: 2488 / 2308,
  24850. bottom: 35.67 / 2519.19
  24851. }
  24852. },
  24853. },
  24854. [
  24855. {
  24856. name: "Really Small",
  24857. height: math.unit(1, "nm")
  24858. },
  24859. {
  24860. name: "Micro",
  24861. height: math.unit(4, "inches")
  24862. },
  24863. {
  24864. name: "Normal",
  24865. height: math.unit(4 + 10 / 12, "feet"),
  24866. default: true
  24867. },
  24868. {
  24869. name: "Macro",
  24870. height: math.unit(100, "feet")
  24871. },
  24872. {
  24873. name: "Megamacto",
  24874. height: math.unit(50, "miles")
  24875. },
  24876. ]
  24877. ))
  24878. characterMakers.push(() => makeCharacter(
  24879. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24880. {
  24881. side: {
  24882. height: math.unit(30, "feet"),
  24883. weight: math.unit(35000, "kg"),
  24884. name: "Side",
  24885. image: {
  24886. source: "./media/characters/alydar/side.svg",
  24887. extra: 234 / 222,
  24888. bottom: 6.5 / 241
  24889. }
  24890. },
  24891. front: {
  24892. height: math.unit(30, "feet"),
  24893. weight: math.unit(35000, "kg"),
  24894. name: "Front",
  24895. image: {
  24896. source: "./media/characters/alydar/front.svg",
  24897. extra: 223.37 / 210.2,
  24898. bottom: 22.3 / 246.76
  24899. }
  24900. },
  24901. top: {
  24902. height: math.unit(64.54, "feet"),
  24903. weight: math.unit(35000, "kg"),
  24904. name: "Top",
  24905. image: {
  24906. source: "./media/characters/alydar/top.svg"
  24907. }
  24908. },
  24909. anthro: {
  24910. height: math.unit(30, "feet"),
  24911. weight: math.unit(9000, "kg"),
  24912. name: "Anthro",
  24913. image: {
  24914. source: "./media/characters/alydar/anthro.svg",
  24915. extra: 432 / 421,
  24916. bottom: 7.18 / 440
  24917. }
  24918. },
  24919. maw: {
  24920. height: math.unit(11.693, "feet"),
  24921. name: "Maw",
  24922. image: {
  24923. source: "./media/characters/alydar/maw.svg"
  24924. }
  24925. },
  24926. head: {
  24927. height: math.unit(11.693, "feet"),
  24928. name: "Head",
  24929. image: {
  24930. source: "./media/characters/alydar/head.svg"
  24931. }
  24932. },
  24933. headAlt: {
  24934. height: math.unit(12.861, "feet"),
  24935. name: "Head (Alt)",
  24936. image: {
  24937. source: "./media/characters/alydar/head-alt.svg"
  24938. }
  24939. },
  24940. wing: {
  24941. height: math.unit(20.712, "feet"),
  24942. name: "Wing",
  24943. image: {
  24944. source: "./media/characters/alydar/wing.svg"
  24945. }
  24946. },
  24947. wingFeather: {
  24948. height: math.unit(9.662, "feet"),
  24949. name: "Wing Feather",
  24950. image: {
  24951. source: "./media/characters/alydar/wing-feather.svg"
  24952. }
  24953. },
  24954. countourFeather: {
  24955. height: math.unit(4.154, "feet"),
  24956. name: "Contour Feather",
  24957. image: {
  24958. source: "./media/characters/alydar/contour-feather.svg"
  24959. }
  24960. },
  24961. },
  24962. [
  24963. {
  24964. name: "Diplomatic",
  24965. height: math.unit(13, "feet"),
  24966. default: true
  24967. },
  24968. {
  24969. name: "Small",
  24970. height: math.unit(30, "feet")
  24971. },
  24972. {
  24973. name: "Normal",
  24974. height: math.unit(95, "feet"),
  24975. default: true
  24976. },
  24977. {
  24978. name: "Large",
  24979. height: math.unit(285, "feet")
  24980. },
  24981. {
  24982. name: "Incomprehensible",
  24983. height: math.unit(450, "megameters")
  24984. },
  24985. ]
  24986. ))
  24987. characterMakers.push(() => makeCharacter(
  24988. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24989. {
  24990. side: {
  24991. height: math.unit(11, "feet"),
  24992. weight: math.unit(1750, "kg"),
  24993. name: "Side",
  24994. image: {
  24995. source: "./media/characters/selicia/side.svg",
  24996. extra: 440 / 396,
  24997. bottom: 24.8 / 465.979
  24998. }
  24999. },
  25000. maw: {
  25001. height: math.unit(4.665, "feet"),
  25002. name: "Maw",
  25003. image: {
  25004. source: "./media/characters/selicia/maw.svg"
  25005. }
  25006. },
  25007. },
  25008. [
  25009. {
  25010. name: "Normal",
  25011. height: math.unit(11, "feet"),
  25012. default: true
  25013. },
  25014. ]
  25015. ))
  25016. characterMakers.push(() => makeCharacter(
  25017. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  25018. {
  25019. side: {
  25020. height: math.unit(2 + 6 / 12, "feet"),
  25021. weight: math.unit(30, "lb"),
  25022. name: "Side",
  25023. image: {
  25024. source: "./media/characters/layla/side.svg",
  25025. extra: 244 / 188,
  25026. bottom: 18.2 / 262.1
  25027. }
  25028. },
  25029. back: {
  25030. height: math.unit(2 + 6 / 12, "feet"),
  25031. weight: math.unit(30, "lb"),
  25032. name: "Back",
  25033. image: {
  25034. source: "./media/characters/layla/back.svg",
  25035. extra: 308 / 241.5,
  25036. bottom: 8.9 / 316.8
  25037. }
  25038. },
  25039. cumming: {
  25040. height: math.unit(2 + 6 / 12, "feet"),
  25041. weight: math.unit(30, "lb"),
  25042. name: "Cumming",
  25043. image: {
  25044. source: "./media/characters/layla/cumming.svg",
  25045. extra: 342 / 279,
  25046. bottom: 595 / 938
  25047. }
  25048. },
  25049. dickFlaccid: {
  25050. height: math.unit(2.595, "feet"),
  25051. name: "Flaccid Genitals",
  25052. image: {
  25053. source: "./media/characters/layla/dick-flaccid.svg"
  25054. }
  25055. },
  25056. dickErect: {
  25057. height: math.unit(2.359, "feet"),
  25058. name: "Erect Genitals",
  25059. image: {
  25060. source: "./media/characters/layla/dick-erect.svg"
  25061. }
  25062. },
  25063. dragon: {
  25064. height: math.unit(40, "feet"),
  25065. name: "Dragon",
  25066. image: {
  25067. source: "./media/characters/layla/dragon.svg",
  25068. extra: 610/535,
  25069. bottom: 367/977
  25070. }
  25071. },
  25072. taur: {
  25073. height: math.unit(30, "feet"),
  25074. name: "Taur",
  25075. image: {
  25076. source: "./media/characters/layla/taur.svg",
  25077. extra: 1268/1199,
  25078. bottom: 112/1380
  25079. }
  25080. },
  25081. },
  25082. [
  25083. {
  25084. name: "Micro",
  25085. height: math.unit(1, "inch")
  25086. },
  25087. {
  25088. name: "Small",
  25089. height: math.unit(1, "foot")
  25090. },
  25091. {
  25092. name: "Normal",
  25093. height: math.unit(2 + 6 / 12, "feet"),
  25094. default: true
  25095. },
  25096. {
  25097. name: "Macro",
  25098. height: math.unit(200, "feet")
  25099. },
  25100. {
  25101. name: "Megamacro",
  25102. height: math.unit(1000, "miles")
  25103. },
  25104. {
  25105. name: "Planetary",
  25106. height: math.unit(8000, "miles")
  25107. },
  25108. {
  25109. name: "True Layla",
  25110. height: math.unit(200000 * 7, "multiverses")
  25111. },
  25112. ]
  25113. ))
  25114. characterMakers.push(() => makeCharacter(
  25115. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  25116. {
  25117. back: {
  25118. height: math.unit(10.5, "feet"),
  25119. weight: math.unit(800, "lb"),
  25120. name: "Back",
  25121. image: {
  25122. source: "./media/characters/knox/back.svg",
  25123. extra: 1486 / 1089,
  25124. bottom: 107 / 1601.4
  25125. }
  25126. },
  25127. side: {
  25128. height: math.unit(10.5, "feet"),
  25129. weight: math.unit(800, "lb"),
  25130. name: "Side",
  25131. image: {
  25132. source: "./media/characters/knox/side.svg",
  25133. extra: 244 / 218,
  25134. bottom: 14 / 260
  25135. }
  25136. },
  25137. },
  25138. [
  25139. {
  25140. name: "Compact",
  25141. height: math.unit(10.5, "feet"),
  25142. default: true
  25143. },
  25144. {
  25145. name: "Dynamax",
  25146. height: math.unit(210, "feet")
  25147. },
  25148. {
  25149. name: "Full Macro",
  25150. height: math.unit(850, "feet")
  25151. },
  25152. ]
  25153. ))
  25154. characterMakers.push(() => makeCharacter(
  25155. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  25156. {
  25157. front: {
  25158. height: math.unit(28, "feet"),
  25159. weight: math.unit(10500, "lb"),
  25160. name: "Front",
  25161. image: {
  25162. source: "./media/characters/kayda/front.svg",
  25163. extra: 1536 / 1428,
  25164. bottom: 68.7 / 1603
  25165. }
  25166. },
  25167. back: {
  25168. height: math.unit(28, "feet"),
  25169. weight: math.unit(10500, "lb"),
  25170. name: "Back",
  25171. image: {
  25172. source: "./media/characters/kayda/back.svg",
  25173. extra: 1557 / 1464,
  25174. bottom: 39.5 / 1597.49
  25175. }
  25176. },
  25177. dick: {
  25178. height: math.unit(3.858, "feet"),
  25179. name: "Dick",
  25180. image: {
  25181. source: "./media/characters/kayda/dick.svg"
  25182. }
  25183. },
  25184. },
  25185. [
  25186. {
  25187. name: "Macro",
  25188. height: math.unit(28, "feet"),
  25189. default: true
  25190. },
  25191. ]
  25192. ))
  25193. characterMakers.push(() => makeCharacter(
  25194. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  25195. {
  25196. front: {
  25197. height: math.unit(10 + 11 / 12, "feet"),
  25198. weight: math.unit(1400, "lb"),
  25199. name: "Front",
  25200. image: {
  25201. source: "./media/characters/brian/front.svg",
  25202. extra: 737 / 692,
  25203. bottom: 55.4 / 785
  25204. }
  25205. },
  25206. },
  25207. [
  25208. {
  25209. name: "Normal",
  25210. height: math.unit(10 + 11 / 12, "feet"),
  25211. default: true
  25212. },
  25213. ]
  25214. ))
  25215. characterMakers.push(() => makeCharacter(
  25216. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  25217. {
  25218. front: {
  25219. height: math.unit(5 + 8 / 12, "feet"),
  25220. weight: math.unit(140, "lb"),
  25221. name: "Front",
  25222. image: {
  25223. source: "./media/characters/khemri/front.svg",
  25224. extra: 4780 / 4059,
  25225. bottom: 80.1 / 4859.25
  25226. }
  25227. },
  25228. },
  25229. [
  25230. {
  25231. name: "Micro",
  25232. height: math.unit(6, "inches")
  25233. },
  25234. {
  25235. name: "Normal",
  25236. height: math.unit(5 + 8 / 12, "feet"),
  25237. default: true
  25238. },
  25239. ]
  25240. ))
  25241. characterMakers.push(() => makeCharacter(
  25242. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  25243. {
  25244. front: {
  25245. height: math.unit(13, "feet"),
  25246. weight: math.unit(1700, "lb"),
  25247. name: "Front",
  25248. image: {
  25249. source: "./media/characters/felix-braveheart/front.svg",
  25250. extra: 1222 / 1157,
  25251. bottom: 53.2 / 1280
  25252. }
  25253. },
  25254. back: {
  25255. height: math.unit(13, "feet"),
  25256. weight: math.unit(1700, "lb"),
  25257. name: "Back",
  25258. image: {
  25259. source: "./media/characters/felix-braveheart/back.svg",
  25260. extra: 1277 / 1203,
  25261. bottom: 50.2 / 1327
  25262. }
  25263. },
  25264. feral: {
  25265. height: math.unit(6, "feet"),
  25266. weight: math.unit(400, "lb"),
  25267. name: "Feral",
  25268. image: {
  25269. source: "./media/characters/felix-braveheart/feral.svg",
  25270. extra: 682 / 625,
  25271. bottom: 6.9 / 688
  25272. }
  25273. },
  25274. },
  25275. [
  25276. {
  25277. name: "Normal",
  25278. height: math.unit(13, "feet"),
  25279. default: true
  25280. },
  25281. ]
  25282. ))
  25283. characterMakers.push(() => makeCharacter(
  25284. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  25285. {
  25286. side: {
  25287. height: math.unit(5 + 11 / 12, "feet"),
  25288. weight: math.unit(1400, "lb"),
  25289. name: "Side",
  25290. image: {
  25291. source: "./media/characters/shadow-blade/side.svg",
  25292. extra: 1726 / 1267,
  25293. bottom: 58.4 / 1785
  25294. }
  25295. },
  25296. },
  25297. [
  25298. {
  25299. name: "Normal",
  25300. height: math.unit(5 + 11 / 12, "feet"),
  25301. default: true
  25302. },
  25303. ]
  25304. ))
  25305. characterMakers.push(() => makeCharacter(
  25306. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  25307. {
  25308. front: {
  25309. height: math.unit(1 + 6 / 12, "feet"),
  25310. weight: math.unit(25, "lb"),
  25311. name: "Front",
  25312. image: {
  25313. source: "./media/characters/karla-halldor/front.svg",
  25314. extra: 1459 / 1383,
  25315. bottom: 12 / 1472
  25316. }
  25317. },
  25318. },
  25319. [
  25320. {
  25321. name: "Normal",
  25322. height: math.unit(1 + 6 / 12, "feet"),
  25323. default: true
  25324. },
  25325. ]
  25326. ))
  25327. characterMakers.push(() => makeCharacter(
  25328. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  25329. {
  25330. front: {
  25331. height: math.unit(6 + 2 / 12, "feet"),
  25332. weight: math.unit(160, "lb"),
  25333. name: "Front",
  25334. image: {
  25335. source: "./media/characters/ariam/front.svg",
  25336. extra: 1073/976,
  25337. bottom: 52/1125
  25338. }
  25339. },
  25340. back: {
  25341. height: math.unit(6 + 2/12, "feet"),
  25342. weight: math.unit(160, "lb"),
  25343. name: "Back",
  25344. image: {
  25345. source: "./media/characters/ariam/back.svg",
  25346. extra: 1103/1023,
  25347. bottom: 9/1112
  25348. }
  25349. },
  25350. dressed: {
  25351. height: math.unit(6 + 2/12, "feet"),
  25352. weight: math.unit(160, "lb"),
  25353. name: "Dressed",
  25354. image: {
  25355. source: "./media/characters/ariam/dressed.svg",
  25356. extra: 1099/1009,
  25357. bottom: 25/1124
  25358. }
  25359. },
  25360. squatting: {
  25361. height: math.unit(4.1, "feet"),
  25362. weight: math.unit(160, "lb"),
  25363. name: "Squatting",
  25364. image: {
  25365. source: "./media/characters/ariam/squatting.svg",
  25366. extra: 2617 / 2112,
  25367. bottom: 61.2 / 2681,
  25368. }
  25369. },
  25370. },
  25371. [
  25372. {
  25373. name: "Normal",
  25374. height: math.unit(6 + 2 / 12, "feet"),
  25375. default: true
  25376. },
  25377. {
  25378. name: "Normal+",
  25379. height: math.unit(4, "meters")
  25380. },
  25381. {
  25382. name: "Macro",
  25383. height: math.unit(50, "meters")
  25384. },
  25385. {
  25386. name: "Macro+",
  25387. height: math.unit(100, "meters")
  25388. },
  25389. {
  25390. name: "Megamacro",
  25391. height: math.unit(20, "km")
  25392. },
  25393. {
  25394. name: "Caretaker",
  25395. height: math.unit(444, "megameters")
  25396. },
  25397. ]
  25398. ))
  25399. characterMakers.push(() => makeCharacter(
  25400. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  25401. {
  25402. front: {
  25403. height: math.unit(1.67, "meters"),
  25404. weight: math.unit(140, "lb"),
  25405. name: "Front",
  25406. image: {
  25407. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  25408. extra: 438 / 410,
  25409. bottom: 0.75 / 439
  25410. }
  25411. },
  25412. },
  25413. [
  25414. {
  25415. name: "Shrunken",
  25416. height: math.unit(7.6, "cm")
  25417. },
  25418. {
  25419. name: "Human Scale",
  25420. height: math.unit(1.67, "meters")
  25421. },
  25422. {
  25423. name: "Wolxi Scale",
  25424. height: math.unit(36.7, "meters"),
  25425. default: true
  25426. },
  25427. ]
  25428. ))
  25429. characterMakers.push(() => makeCharacter(
  25430. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25431. {
  25432. front: {
  25433. height: math.unit(1.73, "meters"),
  25434. weight: math.unit(240, "lb"),
  25435. name: "Front",
  25436. image: {
  25437. source: "./media/characters/izue-two-mothers/front.svg",
  25438. extra: 469 / 437,
  25439. bottom: 1.24 / 470.6
  25440. }
  25441. },
  25442. },
  25443. [
  25444. {
  25445. name: "Shrunken",
  25446. height: math.unit(7.86, "cm")
  25447. },
  25448. {
  25449. name: "Human Scale",
  25450. height: math.unit(1.73, "meters")
  25451. },
  25452. {
  25453. name: "Wolxi Scale",
  25454. height: math.unit(38, "meters"),
  25455. default: true
  25456. },
  25457. ]
  25458. ))
  25459. characterMakers.push(() => makeCharacter(
  25460. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25461. {
  25462. front: {
  25463. height: math.unit(1.55, "meters"),
  25464. weight: math.unit(120, "lb"),
  25465. name: "Front",
  25466. image: {
  25467. source: "./media/characters/teeku-love-shack/front.svg",
  25468. extra: 387 / 362,
  25469. bottom: 1.51 / 388
  25470. }
  25471. },
  25472. },
  25473. [
  25474. {
  25475. name: "Shrunken",
  25476. height: math.unit(7, "cm")
  25477. },
  25478. {
  25479. name: "Human Scale",
  25480. height: math.unit(1.55, "meters")
  25481. },
  25482. {
  25483. name: "Wolxi Scale",
  25484. height: math.unit(34.1, "meters"),
  25485. default: true
  25486. },
  25487. ]
  25488. ))
  25489. characterMakers.push(() => makeCharacter(
  25490. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25491. {
  25492. front: {
  25493. height: math.unit(1.83, "meters"),
  25494. weight: math.unit(135, "lb"),
  25495. name: "Front",
  25496. image: {
  25497. source: "./media/characters/dejma-the-red/front.svg",
  25498. extra: 480 / 458,
  25499. bottom: 1.8 / 482
  25500. }
  25501. },
  25502. },
  25503. [
  25504. {
  25505. name: "Shrunken",
  25506. height: math.unit(8.3, "cm")
  25507. },
  25508. {
  25509. name: "Human Scale",
  25510. height: math.unit(1.83, "meters")
  25511. },
  25512. {
  25513. name: "Wolxi Scale",
  25514. height: math.unit(40, "meters"),
  25515. default: true
  25516. },
  25517. ]
  25518. ))
  25519. characterMakers.push(() => makeCharacter(
  25520. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25521. {
  25522. front: {
  25523. height: math.unit(1.78, "meters"),
  25524. weight: math.unit(65, "kg"),
  25525. name: "Front",
  25526. image: {
  25527. source: "./media/characters/aki/front.svg",
  25528. extra: 452 / 415
  25529. }
  25530. },
  25531. frontNsfw: {
  25532. height: math.unit(1.78, "meters"),
  25533. weight: math.unit(65, "kg"),
  25534. name: "Front (NSFW)",
  25535. image: {
  25536. source: "./media/characters/aki/front-nsfw.svg",
  25537. extra: 452 / 415
  25538. }
  25539. },
  25540. back: {
  25541. height: math.unit(1.78, "meters"),
  25542. weight: math.unit(65, "kg"),
  25543. name: "Back",
  25544. image: {
  25545. source: "./media/characters/aki/back.svg",
  25546. extra: 452 / 415
  25547. }
  25548. },
  25549. rump: {
  25550. height: math.unit(2.05, "feet"),
  25551. name: "Rump",
  25552. image: {
  25553. source: "./media/characters/aki/rump.svg"
  25554. }
  25555. },
  25556. dick: {
  25557. height: math.unit(0.95, "feet"),
  25558. name: "Dick",
  25559. image: {
  25560. source: "./media/characters/aki/dick.svg"
  25561. }
  25562. },
  25563. },
  25564. [
  25565. {
  25566. name: "Micro",
  25567. height: math.unit(15, "cm")
  25568. },
  25569. {
  25570. name: "Normal",
  25571. height: math.unit(178, "cm"),
  25572. default: true
  25573. },
  25574. {
  25575. name: "Macro",
  25576. height: math.unit(214, "m")
  25577. },
  25578. {
  25579. name: "Macro+",
  25580. height: math.unit(534, "m")
  25581. },
  25582. ]
  25583. ))
  25584. characterMakers.push(() => makeCharacter(
  25585. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25586. {
  25587. front: {
  25588. height: math.unit(5 + 5 / 12, "feet"),
  25589. weight: math.unit(120, "lb"),
  25590. name: "Front",
  25591. image: {
  25592. source: "./media/characters/ari/front.svg",
  25593. extra: 1550/1471,
  25594. bottom: 39/1589
  25595. }
  25596. },
  25597. },
  25598. [
  25599. {
  25600. name: "Normal",
  25601. height: math.unit(5 + 5 / 12, "feet")
  25602. },
  25603. {
  25604. name: "Macro",
  25605. height: math.unit(100, "feet"),
  25606. default: true
  25607. },
  25608. {
  25609. name: "Megamacro",
  25610. height: math.unit(100, "miles")
  25611. },
  25612. {
  25613. name: "Gigamacro",
  25614. height: math.unit(80000, "miles")
  25615. },
  25616. ]
  25617. ))
  25618. characterMakers.push(() => makeCharacter(
  25619. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25620. {
  25621. side: {
  25622. height: math.unit(9, "feet"),
  25623. weight: math.unit(400, "kg"),
  25624. name: "Side",
  25625. image: {
  25626. source: "./media/characters/bolt/side.svg",
  25627. extra: 1126 / 896,
  25628. bottom: 60 / 1187.3,
  25629. }
  25630. },
  25631. },
  25632. [
  25633. {
  25634. name: "Micro",
  25635. height: math.unit(5, "inches")
  25636. },
  25637. {
  25638. name: "Normal",
  25639. height: math.unit(9, "feet"),
  25640. default: true
  25641. },
  25642. {
  25643. name: "Macro",
  25644. height: math.unit(700, "feet")
  25645. },
  25646. {
  25647. name: "Max Size",
  25648. height: math.unit(1.52e22, "yottameters")
  25649. },
  25650. ]
  25651. ))
  25652. characterMakers.push(() => makeCharacter(
  25653. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25654. {
  25655. front: {
  25656. height: math.unit(4.3, "meters"),
  25657. weight: math.unit(3, "tons"),
  25658. name: "Front",
  25659. image: {
  25660. source: "./media/characters/draekon-sylviar/front.svg",
  25661. extra: 2072/1512,
  25662. bottom: 74/2146
  25663. }
  25664. },
  25665. back: {
  25666. height: math.unit(4.3, "meters"),
  25667. weight: math.unit(3, "tons"),
  25668. name: "Back",
  25669. image: {
  25670. source: "./media/characters/draekon-sylviar/back.svg",
  25671. extra: 1639/1483,
  25672. bottom: 41/1680
  25673. }
  25674. },
  25675. feral: {
  25676. height: math.unit(1.15, "meters"),
  25677. weight: math.unit(3, "tons"),
  25678. name: "Feral",
  25679. image: {
  25680. source: "./media/characters/draekon-sylviar/feral.svg",
  25681. extra: 1033/395,
  25682. bottom: 130/1163
  25683. }
  25684. },
  25685. maw: {
  25686. height: math.unit(1.3, "meters"),
  25687. name: "Maw",
  25688. image: {
  25689. source: "./media/characters/draekon-sylviar/maw.svg"
  25690. }
  25691. },
  25692. mawSeparated: {
  25693. height: math.unit(1.53, "meters"),
  25694. name: "Separated Maw",
  25695. image: {
  25696. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25697. }
  25698. },
  25699. tail: {
  25700. height: math.unit(1.15, "meters"),
  25701. name: "Tail",
  25702. image: {
  25703. source: "./media/characters/draekon-sylviar/tail.svg"
  25704. }
  25705. },
  25706. tailDick: {
  25707. height: math.unit(1.15, "meters"),
  25708. name: "Tail (Dick)",
  25709. image: {
  25710. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25711. }
  25712. },
  25713. tailDickSeparated: {
  25714. height: math.unit(1.19, "meters"),
  25715. name: "Tail (Separated Dick)",
  25716. image: {
  25717. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25718. }
  25719. },
  25720. slit: {
  25721. height: math.unit(1, "meters"),
  25722. name: "Slit",
  25723. image: {
  25724. source: "./media/characters/draekon-sylviar/slit.svg"
  25725. }
  25726. },
  25727. dick: {
  25728. height: math.unit(1.15, "meters"),
  25729. name: "Dick",
  25730. image: {
  25731. source: "./media/characters/draekon-sylviar/dick.svg"
  25732. }
  25733. },
  25734. dickSeparated: {
  25735. height: math.unit(1.1, "meters"),
  25736. name: "Separated Dick",
  25737. image: {
  25738. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25739. }
  25740. },
  25741. sheath: {
  25742. height: math.unit(1.15, "meters"),
  25743. name: "Sheath",
  25744. image: {
  25745. source: "./media/characters/draekon-sylviar/sheath.svg"
  25746. }
  25747. },
  25748. },
  25749. [
  25750. {
  25751. name: "Small",
  25752. height: math.unit(4.53 / 2, "meters"),
  25753. default: true
  25754. },
  25755. {
  25756. name: "Normal",
  25757. height: math.unit(4.53, "meters"),
  25758. default: true
  25759. },
  25760. {
  25761. name: "Large",
  25762. height: math.unit(4.53 * 2, "meters"),
  25763. },
  25764. ]
  25765. ))
  25766. characterMakers.push(() => makeCharacter(
  25767. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25768. {
  25769. front: {
  25770. height: math.unit(6 + 2 / 12, "feet"),
  25771. weight: math.unit(180, "lb"),
  25772. name: "Front",
  25773. image: {
  25774. source: "./media/characters/brawler/front.svg",
  25775. extra: 3301 / 3027,
  25776. bottom: 138 / 3439
  25777. }
  25778. },
  25779. },
  25780. [
  25781. {
  25782. name: "Normal",
  25783. height: math.unit(6 + 2 / 12, "feet"),
  25784. default: true
  25785. },
  25786. ]
  25787. ))
  25788. characterMakers.push(() => makeCharacter(
  25789. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25790. {
  25791. front: {
  25792. height: math.unit(11, "feet"),
  25793. weight: math.unit(1000, "lb"),
  25794. name: "Front",
  25795. image: {
  25796. source: "./media/characters/alex/front.svg",
  25797. bottom: 44.5 / 620
  25798. }
  25799. },
  25800. },
  25801. [
  25802. {
  25803. name: "Micro",
  25804. height: math.unit(5, "inches")
  25805. },
  25806. {
  25807. name: "Normal",
  25808. height: math.unit(11, "feet"),
  25809. default: true
  25810. },
  25811. {
  25812. name: "Macro",
  25813. height: math.unit(9.5e9, "feet")
  25814. },
  25815. {
  25816. name: "Max Size",
  25817. height: math.unit(1.4e283, "yottameters")
  25818. },
  25819. ]
  25820. ))
  25821. characterMakers.push(() => makeCharacter(
  25822. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25823. {
  25824. female: {
  25825. height: math.unit(29.9, "m"),
  25826. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25827. name: "Female",
  25828. image: {
  25829. source: "./media/characters/zenari/female.svg",
  25830. extra: 3281.6 / 3217,
  25831. bottom: 72.2 / 3353
  25832. }
  25833. },
  25834. male: {
  25835. height: math.unit(27.7, "m"),
  25836. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25837. name: "Male",
  25838. image: {
  25839. source: "./media/characters/zenari/male.svg",
  25840. extra: 3008 / 2991,
  25841. bottom: 54.6 / 3069
  25842. }
  25843. },
  25844. },
  25845. [
  25846. {
  25847. name: "Macro",
  25848. height: math.unit(29.7, "meters"),
  25849. default: true
  25850. },
  25851. ]
  25852. ))
  25853. characterMakers.push(() => makeCharacter(
  25854. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25855. {
  25856. female: {
  25857. height: math.unit(23.8, "m"),
  25858. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25859. name: "Female",
  25860. image: {
  25861. source: "./media/characters/mactarian/female.svg",
  25862. extra: 2662 / 2569,
  25863. bottom: 73 / 2736
  25864. }
  25865. },
  25866. male: {
  25867. height: math.unit(23.8, "m"),
  25868. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25869. name: "Male",
  25870. image: {
  25871. source: "./media/characters/mactarian/male.svg",
  25872. extra: 2673 / 2600,
  25873. bottom: 76 / 2750
  25874. }
  25875. },
  25876. },
  25877. [
  25878. {
  25879. name: "Macro",
  25880. height: math.unit(23.8, "meters"),
  25881. default: true
  25882. },
  25883. ]
  25884. ))
  25885. characterMakers.push(() => makeCharacter(
  25886. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25887. {
  25888. female: {
  25889. height: math.unit(19.3, "m"),
  25890. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25891. name: "Female",
  25892. image: {
  25893. source: "./media/characters/umok/female.svg",
  25894. extra: 2186 / 2078,
  25895. bottom: 87 / 2277
  25896. }
  25897. },
  25898. male: {
  25899. height: math.unit(19.5, "m"),
  25900. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25901. name: "Male",
  25902. image: {
  25903. source: "./media/characters/umok/male.svg",
  25904. extra: 2233 / 2140,
  25905. bottom: 24.4 / 2258
  25906. }
  25907. },
  25908. },
  25909. [
  25910. {
  25911. name: "Macro",
  25912. height: math.unit(19.3, "meters"),
  25913. default: true
  25914. },
  25915. ]
  25916. ))
  25917. characterMakers.push(() => makeCharacter(
  25918. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25919. {
  25920. female: {
  25921. height: math.unit(26.15, "m"),
  25922. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25923. name: "Female",
  25924. image: {
  25925. source: "./media/characters/joraxian/female.svg",
  25926. extra: 2912 / 2824,
  25927. bottom: 36 / 2956
  25928. }
  25929. },
  25930. male: {
  25931. height: math.unit(25.4, "m"),
  25932. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25933. name: "Male",
  25934. image: {
  25935. source: "./media/characters/joraxian/male.svg",
  25936. extra: 2877 / 2721,
  25937. bottom: 82 / 2967
  25938. }
  25939. },
  25940. },
  25941. [
  25942. {
  25943. name: "Macro",
  25944. height: math.unit(26.15, "meters"),
  25945. default: true
  25946. },
  25947. ]
  25948. ))
  25949. characterMakers.push(() => makeCharacter(
  25950. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25951. {
  25952. female: {
  25953. height: math.unit(21.6, "m"),
  25954. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25955. name: "Female",
  25956. image: {
  25957. source: "./media/characters/sthara/female.svg",
  25958. extra: 2516 / 2347,
  25959. bottom: 21.5 / 2537
  25960. }
  25961. },
  25962. male: {
  25963. height: math.unit(24, "m"),
  25964. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25965. name: "Male",
  25966. image: {
  25967. source: "./media/characters/sthara/male.svg",
  25968. extra: 2732 / 2607,
  25969. bottom: 23 / 2732
  25970. }
  25971. },
  25972. },
  25973. [
  25974. {
  25975. name: "Macro",
  25976. height: math.unit(21.6, "meters"),
  25977. default: true
  25978. },
  25979. ]
  25980. ))
  25981. characterMakers.push(() => makeCharacter(
  25982. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25983. {
  25984. front: {
  25985. height: math.unit(6 + 4 / 12, "feet"),
  25986. weight: math.unit(175, "lb"),
  25987. name: "Front",
  25988. image: {
  25989. source: "./media/characters/luka-bryzant/front.svg",
  25990. extra: 311 / 289,
  25991. bottom: 4 / 315
  25992. }
  25993. },
  25994. back: {
  25995. height: math.unit(6 + 4 / 12, "feet"),
  25996. weight: math.unit(175, "lb"),
  25997. name: "Back",
  25998. image: {
  25999. source: "./media/characters/luka-bryzant/back.svg",
  26000. extra: 311 / 289,
  26001. bottom: 3.8 / 313.7
  26002. }
  26003. },
  26004. },
  26005. [
  26006. {
  26007. name: "Micro",
  26008. height: math.unit(10, "inches")
  26009. },
  26010. {
  26011. name: "Normal",
  26012. height: math.unit(6 + 4 / 12, "feet"),
  26013. default: true
  26014. },
  26015. {
  26016. name: "Large",
  26017. height: math.unit(12, "feet")
  26018. },
  26019. ]
  26020. ))
  26021. characterMakers.push(() => makeCharacter(
  26022. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  26023. {
  26024. front: {
  26025. height: math.unit(5 + 7 / 12, "feet"),
  26026. weight: math.unit(185, "lb"),
  26027. name: "Front",
  26028. image: {
  26029. source: "./media/characters/aman-aquila/front.svg",
  26030. extra: 1013 / 976,
  26031. bottom: 45.6 / 1057
  26032. }
  26033. },
  26034. side: {
  26035. height: math.unit(5 + 7 / 12, "feet"),
  26036. weight: math.unit(185, "lb"),
  26037. name: "Side",
  26038. image: {
  26039. source: "./media/characters/aman-aquila/side.svg",
  26040. extra: 1054 / 1011,
  26041. bottom: 15 / 1070
  26042. }
  26043. },
  26044. back: {
  26045. height: math.unit(5 + 7 / 12, "feet"),
  26046. weight: math.unit(185, "lb"),
  26047. name: "Back",
  26048. image: {
  26049. source: "./media/characters/aman-aquila/back.svg",
  26050. extra: 1026 / 970,
  26051. bottom: 12 / 1039
  26052. }
  26053. },
  26054. head: {
  26055. height: math.unit(1.211, "feet"),
  26056. name: "Head",
  26057. image: {
  26058. source: "./media/characters/aman-aquila/head.svg",
  26059. }
  26060. },
  26061. },
  26062. [
  26063. {
  26064. name: "Minimicro",
  26065. height: math.unit(0.057, "inches")
  26066. },
  26067. {
  26068. name: "Micro",
  26069. height: math.unit(7, "inches")
  26070. },
  26071. {
  26072. name: "Mini",
  26073. height: math.unit(3 + 7 / 12, "feet")
  26074. },
  26075. {
  26076. name: "Normal",
  26077. height: math.unit(5 + 7 / 12, "feet"),
  26078. default: true
  26079. },
  26080. {
  26081. name: "Macro",
  26082. height: math.unit(157 + 7 / 12, "feet")
  26083. },
  26084. {
  26085. name: "Megamacro",
  26086. height: math.unit(1557 + 7 / 12, "feet")
  26087. },
  26088. {
  26089. name: "Gigamacro",
  26090. height: math.unit(15557 + 7 / 12, "feet")
  26091. },
  26092. ]
  26093. ))
  26094. characterMakers.push(() => makeCharacter(
  26095. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  26096. {
  26097. front: {
  26098. height: math.unit(3 + 2 / 12, "inches"),
  26099. weight: math.unit(0.3, "ounces"),
  26100. name: "Front",
  26101. image: {
  26102. source: "./media/characters/hiphae/front.svg",
  26103. extra: 1931 / 1683,
  26104. bottom: 24 / 1955
  26105. }
  26106. },
  26107. },
  26108. [
  26109. {
  26110. name: "Normal",
  26111. height: math.unit(3 + 1 / 2, "inches"),
  26112. default: true
  26113. },
  26114. ]
  26115. ))
  26116. characterMakers.push(() => makeCharacter(
  26117. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  26118. {
  26119. front: {
  26120. height: math.unit(5 + 10 / 12, "feet"),
  26121. weight: math.unit(165, "lb"),
  26122. name: "Front",
  26123. image: {
  26124. source: "./media/characters/nicky/front.svg",
  26125. extra: 3144 / 2886,
  26126. bottom: 45.6 / 3192
  26127. }
  26128. },
  26129. back: {
  26130. height: math.unit(5 + 10 / 12, "feet"),
  26131. weight: math.unit(165, "lb"),
  26132. name: "Back",
  26133. image: {
  26134. source: "./media/characters/nicky/back.svg",
  26135. extra: 3055 / 2804,
  26136. bottom: 28.4 / 3087
  26137. }
  26138. },
  26139. frontclothed: {
  26140. height: math.unit(5 + 10 / 12, "feet"),
  26141. weight: math.unit(165, "lb"),
  26142. name: "Front-clothed",
  26143. image: {
  26144. source: "./media/characters/nicky/front-clothed.svg",
  26145. extra: 3184.9 / 2926.9,
  26146. bottom: 86.5 / 3239.9
  26147. }
  26148. },
  26149. foot: {
  26150. height: math.unit(1.16, "feet"),
  26151. name: "Foot",
  26152. image: {
  26153. source: "./media/characters/nicky/foot.svg"
  26154. }
  26155. },
  26156. feet: {
  26157. height: math.unit(1.34, "feet"),
  26158. name: "Feet",
  26159. image: {
  26160. source: "./media/characters/nicky/feet.svg"
  26161. }
  26162. },
  26163. maw: {
  26164. height: math.unit(0.9, "feet"),
  26165. name: "Maw",
  26166. image: {
  26167. source: "./media/characters/nicky/maw.svg"
  26168. }
  26169. },
  26170. },
  26171. [
  26172. {
  26173. name: "Normal",
  26174. height: math.unit(5 + 10 / 12, "feet"),
  26175. default: true
  26176. },
  26177. {
  26178. name: "Macro",
  26179. height: math.unit(60, "feet")
  26180. },
  26181. {
  26182. name: "Megamacro",
  26183. height: math.unit(1, "mile")
  26184. },
  26185. ]
  26186. ))
  26187. characterMakers.push(() => makeCharacter(
  26188. { name: "Blair", species: ["seal"], tags: ["taur"] },
  26189. {
  26190. side: {
  26191. height: math.unit(10, "feet"),
  26192. weight: math.unit(600, "lb"),
  26193. name: "Side",
  26194. image: {
  26195. source: "./media/characters/blair/side.svg",
  26196. bottom: 16.6 / 475,
  26197. extra: 458 / 431
  26198. }
  26199. },
  26200. },
  26201. [
  26202. {
  26203. name: "Micro",
  26204. height: math.unit(8, "inches")
  26205. },
  26206. {
  26207. name: "Normal",
  26208. height: math.unit(10, "feet"),
  26209. default: true
  26210. },
  26211. {
  26212. name: "Macro",
  26213. height: math.unit(180, "feet")
  26214. },
  26215. ]
  26216. ))
  26217. characterMakers.push(() => makeCharacter(
  26218. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  26219. {
  26220. front: {
  26221. height: math.unit(5 + 4 / 12, "feet"),
  26222. weight: math.unit(125, "lb"),
  26223. name: "Front",
  26224. image: {
  26225. source: "./media/characters/fisher/front.svg",
  26226. extra: 444 / 390,
  26227. bottom: 2 / 444.8
  26228. }
  26229. },
  26230. },
  26231. [
  26232. {
  26233. name: "Micro",
  26234. height: math.unit(4, "inches")
  26235. },
  26236. {
  26237. name: "Normal",
  26238. height: math.unit(5 + 4 / 12, "feet"),
  26239. default: true
  26240. },
  26241. {
  26242. name: "Macro",
  26243. height: math.unit(100, "feet")
  26244. },
  26245. ]
  26246. ))
  26247. characterMakers.push(() => makeCharacter(
  26248. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  26249. {
  26250. front: {
  26251. height: math.unit(6.71, "feet"),
  26252. weight: math.unit(200, "lb"),
  26253. preyCapacity: math.unit(1000000, "people"),
  26254. name: "Front",
  26255. image: {
  26256. source: "./media/characters/gliss/front.svg",
  26257. extra: 2347 / 2231,
  26258. bottom: 113 / 2462
  26259. }
  26260. },
  26261. hammerspaceSize: {
  26262. height: math.unit(6.71 * 717, "feet"),
  26263. weight: math.unit(200, "lb"),
  26264. preyCapacity: math.unit(1000000, "people"),
  26265. name: "Hammerspace Size",
  26266. image: {
  26267. source: "./media/characters/gliss/front.svg",
  26268. extra: 2347 / 2231,
  26269. bottom: 113 / 2462
  26270. }
  26271. },
  26272. },
  26273. [
  26274. {
  26275. name: "Normal",
  26276. height: math.unit(6.71, "feet"),
  26277. default: true
  26278. },
  26279. ]
  26280. ))
  26281. characterMakers.push(() => makeCharacter(
  26282. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  26283. {
  26284. side: {
  26285. height: math.unit(1.44, "m"),
  26286. weight: math.unit(80, "kg"),
  26287. name: "Side",
  26288. image: {
  26289. source: "./media/characters/dune-anderson/side.svg",
  26290. bottom: 49 / 1426
  26291. }
  26292. },
  26293. },
  26294. [
  26295. {
  26296. name: "Wolf-sized",
  26297. height: math.unit(1.44, "meters")
  26298. },
  26299. {
  26300. name: "Normal",
  26301. height: math.unit(5.05, "meters"),
  26302. default: true
  26303. },
  26304. {
  26305. name: "Big",
  26306. height: math.unit(14.4, "meters")
  26307. },
  26308. {
  26309. name: "Huge",
  26310. height: math.unit(144, "meters")
  26311. },
  26312. ]
  26313. ))
  26314. characterMakers.push(() => makeCharacter(
  26315. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  26316. {
  26317. front: {
  26318. height: math.unit(7, "feet"),
  26319. weight: math.unit(425, "lb"),
  26320. name: "Front",
  26321. image: {
  26322. source: "./media/characters/hind/front.svg",
  26323. extra: 2091 / 1860,
  26324. bottom: 129 / 2220
  26325. }
  26326. },
  26327. back: {
  26328. height: math.unit(7, "feet"),
  26329. weight: math.unit(425, "lb"),
  26330. name: "Back",
  26331. image: {
  26332. source: "./media/characters/hind/back.svg",
  26333. extra: 2091 / 1860,
  26334. bottom: 24.6 / 2309
  26335. }
  26336. },
  26337. tail: {
  26338. height: math.unit(2.8, "feet"),
  26339. name: "Tail",
  26340. image: {
  26341. source: "./media/characters/hind/tail.svg"
  26342. }
  26343. },
  26344. head: {
  26345. height: math.unit(2.55, "feet"),
  26346. name: "Head",
  26347. image: {
  26348. source: "./media/characters/hind/head.svg"
  26349. }
  26350. },
  26351. },
  26352. [
  26353. {
  26354. name: "XS",
  26355. height: math.unit(0.7, "feet")
  26356. },
  26357. {
  26358. name: "Normal",
  26359. height: math.unit(7, "feet"),
  26360. default: true
  26361. },
  26362. {
  26363. name: "XL",
  26364. height: math.unit(70, "feet")
  26365. },
  26366. ]
  26367. ))
  26368. characterMakers.push(() => makeCharacter(
  26369. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  26370. {
  26371. front: {
  26372. height: math.unit(2.1, "meters"),
  26373. weight: math.unit(150, "lb"),
  26374. name: "Front",
  26375. image: {
  26376. source: "./media/characters/tharquench-sizestealer/front.svg",
  26377. extra: 1605/1470,
  26378. bottom: 36/1641
  26379. }
  26380. },
  26381. frontAlt: {
  26382. height: math.unit(2.1, "meters"),
  26383. weight: math.unit(150, "lb"),
  26384. name: "Front (Alt)",
  26385. image: {
  26386. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  26387. extra: 2318 / 2063,
  26388. bottom: 93.4 / 2410
  26389. }
  26390. },
  26391. },
  26392. [
  26393. {
  26394. name: "Nano",
  26395. height: math.unit(1, "mm")
  26396. },
  26397. {
  26398. name: "Micro",
  26399. height: math.unit(1, "cm")
  26400. },
  26401. {
  26402. name: "Normal",
  26403. height: math.unit(2.1, "meters"),
  26404. default: true
  26405. },
  26406. ]
  26407. ))
  26408. characterMakers.push(() => makeCharacter(
  26409. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  26410. {
  26411. front: {
  26412. height: math.unit(7 + 5 / 12, "feet"),
  26413. weight: math.unit(357, "lb"),
  26414. name: "Front",
  26415. image: {
  26416. source: "./media/characters/solex-draconov/front.svg",
  26417. extra: 1993 / 1865,
  26418. bottom: 117 / 2111
  26419. }
  26420. },
  26421. },
  26422. [
  26423. {
  26424. name: "Natural Height",
  26425. height: math.unit(7 + 5 / 12, "feet"),
  26426. default: true
  26427. },
  26428. {
  26429. name: "Macro",
  26430. height: math.unit(350, "feet")
  26431. },
  26432. {
  26433. name: "Macro+",
  26434. height: math.unit(1000, "feet")
  26435. },
  26436. {
  26437. name: "Megamacro",
  26438. height: math.unit(20, "km")
  26439. },
  26440. {
  26441. name: "Megamacro+",
  26442. height: math.unit(1000, "km")
  26443. },
  26444. {
  26445. name: "Gigamacro",
  26446. height: math.unit(2.5, "Gm")
  26447. },
  26448. {
  26449. name: "Teramacro",
  26450. height: math.unit(15, "Tm")
  26451. },
  26452. {
  26453. name: "Galactic",
  26454. height: math.unit(30, "Zm")
  26455. },
  26456. {
  26457. name: "Universal",
  26458. height: math.unit(21000, "Ym")
  26459. },
  26460. {
  26461. name: "Omniversal",
  26462. height: math.unit(9.861e50, "Ym")
  26463. },
  26464. {
  26465. name: "Existential",
  26466. height: math.unit(1e300, "meters")
  26467. },
  26468. ]
  26469. ))
  26470. characterMakers.push(() => makeCharacter(
  26471. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26472. {
  26473. side: {
  26474. height: math.unit(25, "feet"),
  26475. weight: math.unit(90000, "lb"),
  26476. name: "Side",
  26477. image: {
  26478. source: "./media/characters/mandarax/side.svg",
  26479. extra: 614 / 332,
  26480. bottom: 55 / 630
  26481. }
  26482. },
  26483. lounging: {
  26484. height: math.unit(15.4, "feet"),
  26485. weight: math.unit(90000, "lb"),
  26486. name: "Lounging",
  26487. image: {
  26488. source: "./media/characters/mandarax/lounging.svg",
  26489. extra: 817/609,
  26490. bottom: 685/1502
  26491. }
  26492. },
  26493. head: {
  26494. height: math.unit(11.4, "feet"),
  26495. name: "Head",
  26496. image: {
  26497. source: "./media/characters/mandarax/head.svg"
  26498. }
  26499. },
  26500. belly: {
  26501. height: math.unit(33, "feet"),
  26502. name: "Belly",
  26503. preyCapacity: math.unit(500, "people"),
  26504. image: {
  26505. source: "./media/characters/mandarax/belly.svg"
  26506. }
  26507. },
  26508. dick: {
  26509. height: math.unit(8.46, "feet"),
  26510. name: "Dick",
  26511. image: {
  26512. source: "./media/characters/mandarax/dick.svg"
  26513. }
  26514. },
  26515. top: {
  26516. height: math.unit(28, "meters"),
  26517. name: "Top",
  26518. image: {
  26519. source: "./media/characters/mandarax/top.svg"
  26520. }
  26521. },
  26522. },
  26523. [
  26524. {
  26525. name: "Normal",
  26526. height: math.unit(25, "feet"),
  26527. default: true
  26528. },
  26529. ]
  26530. ))
  26531. characterMakers.push(() => makeCharacter(
  26532. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26533. {
  26534. front: {
  26535. height: math.unit(5, "feet"),
  26536. weight: math.unit(90, "lb"),
  26537. name: "Front",
  26538. image: {
  26539. source: "./media/characters/pixil/front.svg",
  26540. extra: 2000 / 1618,
  26541. bottom: 12.3 / 2011
  26542. }
  26543. },
  26544. },
  26545. [
  26546. {
  26547. name: "Normal",
  26548. height: math.unit(5, "feet"),
  26549. default: true
  26550. },
  26551. {
  26552. name: "Megamacro",
  26553. height: math.unit(10, "miles"),
  26554. },
  26555. ]
  26556. ))
  26557. characterMakers.push(() => makeCharacter(
  26558. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26559. {
  26560. front: {
  26561. height: math.unit(7 + 2 / 12, "feet"),
  26562. weight: math.unit(200, "lb"),
  26563. name: "Front",
  26564. image: {
  26565. source: "./media/characters/angel/front.svg",
  26566. extra: 1830 / 1737,
  26567. bottom: 22.6 / 1854,
  26568. }
  26569. },
  26570. },
  26571. [
  26572. {
  26573. name: "Normal",
  26574. height: math.unit(7 + 2 / 12, "feet"),
  26575. default: true
  26576. },
  26577. {
  26578. name: "Macro",
  26579. height: math.unit(1000, "feet")
  26580. },
  26581. {
  26582. name: "Megamacro",
  26583. height: math.unit(2, "miles")
  26584. },
  26585. {
  26586. name: "Gigamacro",
  26587. height: math.unit(20, "earths")
  26588. },
  26589. ]
  26590. ))
  26591. characterMakers.push(() => makeCharacter(
  26592. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26593. {
  26594. front: {
  26595. height: math.unit(5, "feet"),
  26596. weight: math.unit(180, "lb"),
  26597. name: "Front",
  26598. image: {
  26599. source: "./media/characters/mekana/front.svg",
  26600. extra: 1671 / 1605,
  26601. bottom: 3.5 / 1691
  26602. }
  26603. },
  26604. side: {
  26605. height: math.unit(5, "feet"),
  26606. weight: math.unit(180, "lb"),
  26607. name: "Side",
  26608. image: {
  26609. source: "./media/characters/mekana/side.svg",
  26610. extra: 1671 / 1605,
  26611. bottom: 3.5 / 1691
  26612. }
  26613. },
  26614. back: {
  26615. height: math.unit(5, "feet"),
  26616. weight: math.unit(180, "lb"),
  26617. name: "Back",
  26618. image: {
  26619. source: "./media/characters/mekana/back.svg",
  26620. extra: 1671 / 1605,
  26621. bottom: 3.5 / 1691
  26622. }
  26623. },
  26624. },
  26625. [
  26626. {
  26627. name: "Normal",
  26628. height: math.unit(5, "feet"),
  26629. default: true
  26630. },
  26631. ]
  26632. ))
  26633. characterMakers.push(() => makeCharacter(
  26634. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26635. {
  26636. front: {
  26637. height: math.unit(4 + 6 / 12, "feet"),
  26638. weight: math.unit(80, "lb"),
  26639. name: "Front",
  26640. image: {
  26641. source: "./media/characters/pixie/front.svg",
  26642. extra: 1924 / 1825,
  26643. bottom: 22.4 / 1946
  26644. }
  26645. },
  26646. },
  26647. [
  26648. {
  26649. name: "Normal",
  26650. height: math.unit(4 + 6 / 12, "feet"),
  26651. default: true
  26652. },
  26653. {
  26654. name: "Macro",
  26655. height: math.unit(40, "feet")
  26656. },
  26657. ]
  26658. ))
  26659. characterMakers.push(() => makeCharacter(
  26660. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26661. {
  26662. front: {
  26663. height: math.unit(2.1, "meters"),
  26664. weight: math.unit(200, "lb"),
  26665. name: "Front",
  26666. image: {
  26667. source: "./media/characters/the-lascivious/front.svg",
  26668. extra: 1 / 0.893,
  26669. bottom: 3.5 / 573.7
  26670. }
  26671. },
  26672. },
  26673. [
  26674. {
  26675. name: "Human Scale",
  26676. height: math.unit(2.1, "meters")
  26677. },
  26678. {
  26679. name: "Wolxi Scale",
  26680. height: math.unit(46.2, "m"),
  26681. default: true
  26682. },
  26683. {
  26684. name: "Boinker of Buildings",
  26685. height: math.unit(10, "km")
  26686. },
  26687. {
  26688. name: "Shagger of Skyscrapers",
  26689. height: math.unit(40, "km")
  26690. },
  26691. {
  26692. name: "Banger of Boroughs",
  26693. height: math.unit(4000, "km")
  26694. },
  26695. {
  26696. name: "Screwer of States",
  26697. height: math.unit(100000, "km")
  26698. },
  26699. {
  26700. name: "Pounder of Planets",
  26701. height: math.unit(2000000, "km")
  26702. },
  26703. ]
  26704. ))
  26705. characterMakers.push(() => makeCharacter(
  26706. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26707. {
  26708. front: {
  26709. height: math.unit(6, "feet"),
  26710. weight: math.unit(150, "lb"),
  26711. name: "Front",
  26712. image: {
  26713. source: "./media/characters/aj/front.svg",
  26714. extra: 2039 / 1562,
  26715. bottom: 40 / 2079
  26716. }
  26717. },
  26718. },
  26719. [
  26720. {
  26721. name: "Normal",
  26722. height: math.unit(11 + 6 / 12, "feet"),
  26723. default: true
  26724. },
  26725. {
  26726. name: "Megamacro",
  26727. height: math.unit(60, "megameters")
  26728. },
  26729. ]
  26730. ))
  26731. characterMakers.push(() => makeCharacter(
  26732. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26733. {
  26734. side: {
  26735. height: math.unit(31 + 8 / 12, "feet"),
  26736. weight: math.unit(75000, "kg"),
  26737. name: "Side",
  26738. image: {
  26739. source: "./media/characters/koros/side.svg",
  26740. extra: 1442 / 1297,
  26741. bottom: 122.7 / 1562
  26742. }
  26743. },
  26744. dicksKingsCrown: {
  26745. height: math.unit(6, "feet"),
  26746. name: "Dicks (King's Crown)",
  26747. image: {
  26748. source: "./media/characters/koros/dicks-kings-crown.svg"
  26749. }
  26750. },
  26751. dicksTailSet: {
  26752. height: math.unit(3, "feet"),
  26753. name: "Dicks (Tail Set)",
  26754. image: {
  26755. source: "./media/characters/koros/dicks-tail-set.svg"
  26756. }
  26757. },
  26758. dickCumming: {
  26759. height: math.unit(7.98, "feet"),
  26760. name: "Dick (Cumming)",
  26761. image: {
  26762. source: "./media/characters/koros/dick-cumming.svg"
  26763. }
  26764. },
  26765. dicksBack: {
  26766. height: math.unit(5.9, "feet"),
  26767. name: "Dicks (Back)",
  26768. image: {
  26769. source: "./media/characters/koros/dicks-back.svg"
  26770. }
  26771. },
  26772. dicksFront: {
  26773. height: math.unit(3.72, "feet"),
  26774. name: "Dicks (Front)",
  26775. image: {
  26776. source: "./media/characters/koros/dicks-front.svg"
  26777. }
  26778. },
  26779. dicksPeeking: {
  26780. height: math.unit(3.0, "feet"),
  26781. name: "Dicks (Peeking)",
  26782. image: {
  26783. source: "./media/characters/koros/dicks-peeking.svg"
  26784. }
  26785. },
  26786. eye: {
  26787. height: math.unit(1.7, "feet"),
  26788. name: "Eye",
  26789. image: {
  26790. source: "./media/characters/koros/eye.svg"
  26791. }
  26792. },
  26793. headFront: {
  26794. height: math.unit(11.69, "feet"),
  26795. name: "Head (Front)",
  26796. image: {
  26797. source: "./media/characters/koros/head-front.svg"
  26798. }
  26799. },
  26800. headSide: {
  26801. height: math.unit(14, "feet"),
  26802. name: "Head (Side)",
  26803. image: {
  26804. source: "./media/characters/koros/head-side.svg"
  26805. }
  26806. },
  26807. leg: {
  26808. height: math.unit(17, "feet"),
  26809. name: "Leg",
  26810. image: {
  26811. source: "./media/characters/koros/leg.svg"
  26812. }
  26813. },
  26814. mawSide: {
  26815. height: math.unit(12.8, "feet"),
  26816. name: "Maw (Side)",
  26817. image: {
  26818. source: "./media/characters/koros/maw-side.svg"
  26819. }
  26820. },
  26821. mawSpitting: {
  26822. height: math.unit(17, "feet"),
  26823. name: "Maw (Spitting)",
  26824. image: {
  26825. source: "./media/characters/koros/maw-spitting.svg"
  26826. }
  26827. },
  26828. slit: {
  26829. height: math.unit(2.8, "feet"),
  26830. name: "Slit",
  26831. image: {
  26832. source: "./media/characters/koros/slit.svg"
  26833. }
  26834. },
  26835. stomach: {
  26836. height: math.unit(6.8, "feet"),
  26837. preyCapacity: math.unit(20, "people"),
  26838. name: "Stomach",
  26839. image: {
  26840. source: "./media/characters/koros/stomach.svg"
  26841. }
  26842. },
  26843. wingspanBottom: {
  26844. height: math.unit(114, "feet"),
  26845. name: "Wingspan (Bottom)",
  26846. image: {
  26847. source: "./media/characters/koros/wingspan-bottom.svg"
  26848. }
  26849. },
  26850. wingspanTop: {
  26851. height: math.unit(104, "feet"),
  26852. name: "Wingspan (Top)",
  26853. image: {
  26854. source: "./media/characters/koros/wingspan-top.svg"
  26855. }
  26856. },
  26857. },
  26858. [
  26859. {
  26860. name: "Normal",
  26861. height: math.unit(31 + 8 / 12, "feet"),
  26862. default: true
  26863. },
  26864. ]
  26865. ))
  26866. characterMakers.push(() => makeCharacter(
  26867. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26868. {
  26869. front: {
  26870. height: math.unit(18 + 5 / 12, "feet"),
  26871. weight: math.unit(3750, "kg"),
  26872. name: "Front",
  26873. image: {
  26874. source: "./media/characters/vexx/front.svg",
  26875. extra: 426 / 396,
  26876. bottom: 31.5 / 458
  26877. }
  26878. },
  26879. maw: {
  26880. height: math.unit(6, "feet"),
  26881. name: "Maw",
  26882. image: {
  26883. source: "./media/characters/vexx/maw.svg"
  26884. }
  26885. },
  26886. },
  26887. [
  26888. {
  26889. name: "Normal",
  26890. height: math.unit(18 + 5 / 12, "feet"),
  26891. default: true
  26892. },
  26893. ]
  26894. ))
  26895. characterMakers.push(() => makeCharacter(
  26896. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26897. {
  26898. front: {
  26899. height: math.unit(17 + 6 / 12, "feet"),
  26900. weight: math.unit(150, "lb"),
  26901. name: "Front",
  26902. image: {
  26903. source: "./media/characters/baadra/front.svg",
  26904. extra: 1694/1553,
  26905. bottom: 179/1873
  26906. }
  26907. },
  26908. frontAlt: {
  26909. height: math.unit(17 + 6 / 12, "feet"),
  26910. weight: math.unit(150, "lb"),
  26911. name: "Front (Alt)",
  26912. image: {
  26913. source: "./media/characters/baadra/front-alt.svg",
  26914. extra: 3137 / 2890,
  26915. bottom: 168.4 / 3305
  26916. }
  26917. },
  26918. back: {
  26919. height: math.unit(17 + 6 / 12, "feet"),
  26920. weight: math.unit(150, "lb"),
  26921. name: "Back",
  26922. image: {
  26923. source: "./media/characters/baadra/back.svg",
  26924. extra: 3142 / 2890,
  26925. bottom: 220 / 3371
  26926. }
  26927. },
  26928. head: {
  26929. height: math.unit(5.45, "feet"),
  26930. name: "Head",
  26931. image: {
  26932. source: "./media/characters/baadra/head.svg"
  26933. }
  26934. },
  26935. headAngry: {
  26936. height: math.unit(4.95, "feet"),
  26937. name: "Head (Angry)",
  26938. image: {
  26939. source: "./media/characters/baadra/head-angry.svg"
  26940. }
  26941. },
  26942. headOpen: {
  26943. height: math.unit(6, "feet"),
  26944. name: "Head (Open)",
  26945. image: {
  26946. source: "./media/characters/baadra/head-open.svg"
  26947. }
  26948. },
  26949. },
  26950. [
  26951. {
  26952. name: "Normal",
  26953. height: math.unit(17 + 6 / 12, "feet"),
  26954. default: true
  26955. },
  26956. ]
  26957. ))
  26958. characterMakers.push(() => makeCharacter(
  26959. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26960. {
  26961. front: {
  26962. height: math.unit(7 + 3 / 12, "feet"),
  26963. weight: math.unit(180, "lb"),
  26964. name: "Front",
  26965. image: {
  26966. source: "./media/characters/juri/front.svg",
  26967. extra: 1401 / 1237,
  26968. bottom: 18.5 / 1418
  26969. }
  26970. },
  26971. side: {
  26972. height: math.unit(7 + 3 / 12, "feet"),
  26973. weight: math.unit(180, "lb"),
  26974. name: "Side",
  26975. image: {
  26976. source: "./media/characters/juri/side.svg",
  26977. extra: 1424 / 1242,
  26978. bottom: 18.5 / 1447
  26979. }
  26980. },
  26981. sitting: {
  26982. height: math.unit(6, "feet"),
  26983. weight: math.unit(180, "lb"),
  26984. name: "Sitting",
  26985. image: {
  26986. source: "./media/characters/juri/sitting.svg",
  26987. extra: 1270 / 1143,
  26988. bottom: 100 / 1343
  26989. }
  26990. },
  26991. back: {
  26992. height: math.unit(7 + 3 / 12, "feet"),
  26993. weight: math.unit(180, "lb"),
  26994. name: "Back",
  26995. image: {
  26996. source: "./media/characters/juri/back.svg",
  26997. extra: 1377 / 1240,
  26998. bottom: 23.7 / 1405
  26999. }
  27000. },
  27001. maw: {
  27002. height: math.unit(2.8, "feet"),
  27003. name: "Maw",
  27004. image: {
  27005. source: "./media/characters/juri/maw.svg"
  27006. }
  27007. },
  27008. stomach: {
  27009. height: math.unit(0.89, "feet"),
  27010. preyCapacity: math.unit(4, "liters"),
  27011. name: "Stomach",
  27012. image: {
  27013. source: "./media/characters/juri/stomach.svg"
  27014. }
  27015. },
  27016. },
  27017. [
  27018. {
  27019. name: "Normal",
  27020. height: math.unit(7 + 3 / 12, "feet"),
  27021. default: true
  27022. },
  27023. ]
  27024. ))
  27025. characterMakers.push(() => makeCharacter(
  27026. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  27027. {
  27028. fox: {
  27029. height: math.unit(5 + 6 / 12, "feet"),
  27030. weight: math.unit(140, "lb"),
  27031. name: "Fox",
  27032. image: {
  27033. source: "./media/characters/maxene-sita/fox.svg",
  27034. extra: 146 / 138,
  27035. bottom: 2.1 / 148.19
  27036. }
  27037. },
  27038. foxLaying: {
  27039. height: math.unit(1.70, "feet"),
  27040. weight: math.unit(140, "lb"),
  27041. name: "Fox (Laying)",
  27042. image: {
  27043. source: "./media/characters/maxene-sita/fox-laying.svg",
  27044. extra: 910 / 572,
  27045. bottom: 71 / 981
  27046. }
  27047. },
  27048. kitsune: {
  27049. height: math.unit(10, "feet"),
  27050. weight: math.unit(800, "lb"),
  27051. name: "Kitsune",
  27052. image: {
  27053. source: "./media/characters/maxene-sita/kitsune.svg",
  27054. extra: 185 / 176,
  27055. bottom: 4.7 / 189.9
  27056. }
  27057. },
  27058. hellhound: {
  27059. height: math.unit(10, "feet"),
  27060. weight: math.unit(700, "lb"),
  27061. name: "Hellhound",
  27062. image: {
  27063. source: "./media/characters/maxene-sita/hellhound.svg",
  27064. extra: 1600 / 1545,
  27065. bottom: 81 / 1681
  27066. }
  27067. },
  27068. },
  27069. [
  27070. {
  27071. name: "Normal",
  27072. height: math.unit(5 + 6 / 12, "feet"),
  27073. default: true
  27074. },
  27075. ]
  27076. ))
  27077. characterMakers.push(() => makeCharacter(
  27078. { name: "Maia", species: ["mew"], tags: ["feral"] },
  27079. {
  27080. front: {
  27081. height: math.unit(3 + 4 / 12, "feet"),
  27082. weight: math.unit(70, "lb"),
  27083. name: "Front",
  27084. image: {
  27085. source: "./media/characters/maia/front.svg",
  27086. extra: 227 / 219.5,
  27087. bottom: 40 / 267
  27088. }
  27089. },
  27090. back: {
  27091. height: math.unit(3 + 4 / 12, "feet"),
  27092. weight: math.unit(70, "lb"),
  27093. name: "Back",
  27094. image: {
  27095. source: "./media/characters/maia/back.svg",
  27096. extra: 237 / 225
  27097. }
  27098. },
  27099. },
  27100. [
  27101. {
  27102. name: "Normal",
  27103. height: math.unit(3 + 4 / 12, "feet"),
  27104. default: true
  27105. },
  27106. ]
  27107. ))
  27108. characterMakers.push(() => makeCharacter(
  27109. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  27110. {
  27111. front: {
  27112. height: math.unit(5 + 10 / 12, "feet"),
  27113. weight: math.unit(197, "lb"),
  27114. name: "Front",
  27115. image: {
  27116. source: "./media/characters/jabaro/front.svg",
  27117. extra: 225 / 216,
  27118. bottom: 5.06 / 230
  27119. }
  27120. },
  27121. back: {
  27122. height: math.unit(5 + 10 / 12, "feet"),
  27123. weight: math.unit(197, "lb"),
  27124. name: "Back",
  27125. image: {
  27126. source: "./media/characters/jabaro/back.svg",
  27127. extra: 225 / 219,
  27128. bottom: 1.9 / 227
  27129. }
  27130. },
  27131. },
  27132. [
  27133. {
  27134. name: "Normal",
  27135. height: math.unit(5 + 10 / 12, "feet"),
  27136. default: true
  27137. },
  27138. ]
  27139. ))
  27140. characterMakers.push(() => makeCharacter(
  27141. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  27142. {
  27143. front: {
  27144. height: math.unit(5 + 8 / 12, "feet"),
  27145. weight: math.unit(139, "lb"),
  27146. name: "Front",
  27147. image: {
  27148. source: "./media/characters/risa/front.svg",
  27149. extra: 270 / 260,
  27150. bottom: 11.2 / 282
  27151. }
  27152. },
  27153. back: {
  27154. height: math.unit(5 + 8 / 12, "feet"),
  27155. weight: math.unit(139, "lb"),
  27156. name: "Back",
  27157. image: {
  27158. source: "./media/characters/risa/back.svg",
  27159. extra: 264 / 255,
  27160. bottom: 4 / 268
  27161. }
  27162. },
  27163. },
  27164. [
  27165. {
  27166. name: "Normal",
  27167. height: math.unit(5 + 8 / 12, "feet"),
  27168. default: true
  27169. },
  27170. ]
  27171. ))
  27172. characterMakers.push(() => makeCharacter(
  27173. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  27174. {
  27175. front: {
  27176. height: math.unit(2 + 11 / 12, "feet"),
  27177. weight: math.unit(30, "lb"),
  27178. name: "Front",
  27179. image: {
  27180. source: "./media/characters/weatley/front.svg",
  27181. bottom: 10.7 / 414,
  27182. extra: 403.5 / 362
  27183. }
  27184. },
  27185. back: {
  27186. height: math.unit(2 + 11 / 12, "feet"),
  27187. weight: math.unit(30, "lb"),
  27188. name: "Back",
  27189. image: {
  27190. source: "./media/characters/weatley/back.svg",
  27191. bottom: 10.7 / 414,
  27192. extra: 403.5 / 362
  27193. }
  27194. },
  27195. },
  27196. [
  27197. {
  27198. name: "Normal",
  27199. height: math.unit(2 + 11 / 12, "feet"),
  27200. default: true
  27201. },
  27202. ]
  27203. ))
  27204. characterMakers.push(() => makeCharacter(
  27205. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  27206. {
  27207. front: {
  27208. height: math.unit(5 + 2 / 12, "feet"),
  27209. weight: math.unit(50, "kg"),
  27210. name: "Front",
  27211. image: {
  27212. source: "./media/characters/mercury-crescent/front.svg",
  27213. extra: 1088 / 1033,
  27214. bottom: 18.9 / 1109
  27215. }
  27216. },
  27217. },
  27218. [
  27219. {
  27220. name: "Normal",
  27221. height: math.unit(5 + 2 / 12, "feet"),
  27222. default: true
  27223. },
  27224. ]
  27225. ))
  27226. characterMakers.push(() => makeCharacter(
  27227. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  27228. {
  27229. front: {
  27230. height: math.unit(2, "feet"),
  27231. weight: math.unit(15, "kg"),
  27232. name: "Front",
  27233. image: {
  27234. source: "./media/characters/diamond-jones/front.svg",
  27235. extra: 727/723,
  27236. bottom: 46/773
  27237. }
  27238. },
  27239. },
  27240. [
  27241. {
  27242. name: "Normal",
  27243. height: math.unit(2, "feet"),
  27244. default: true
  27245. },
  27246. ]
  27247. ))
  27248. characterMakers.push(() => makeCharacter(
  27249. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  27250. {
  27251. front: {
  27252. height: math.unit(3, "feet"),
  27253. weight: math.unit(30, "kg"),
  27254. name: "Front",
  27255. image: {
  27256. source: "./media/characters/sweet-bit/front.svg",
  27257. extra: 675 / 567,
  27258. bottom: 27.7 / 703
  27259. }
  27260. },
  27261. },
  27262. [
  27263. {
  27264. name: "Normal",
  27265. height: math.unit(3, "feet"),
  27266. default: true
  27267. },
  27268. ]
  27269. ))
  27270. characterMakers.push(() => makeCharacter(
  27271. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  27272. {
  27273. side: {
  27274. height: math.unit(9.178, "feet"),
  27275. weight: math.unit(500, "lb"),
  27276. name: "Side",
  27277. image: {
  27278. source: "./media/characters/umbrazen/side.svg",
  27279. extra: 1730 / 1473,
  27280. bottom: 34.6 / 1765
  27281. }
  27282. },
  27283. },
  27284. [
  27285. {
  27286. name: "Normal",
  27287. height: math.unit(9.178, "feet"),
  27288. default: true
  27289. },
  27290. ]
  27291. ))
  27292. characterMakers.push(() => makeCharacter(
  27293. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  27294. {
  27295. front: {
  27296. height: math.unit(10, "feet"),
  27297. weight: math.unit(750, "lb"),
  27298. name: "Front",
  27299. image: {
  27300. source: "./media/characters/arlist/front.svg",
  27301. extra: 961 / 778,
  27302. bottom: 6.2 / 986
  27303. }
  27304. },
  27305. },
  27306. [
  27307. {
  27308. name: "Normal",
  27309. height: math.unit(10, "feet"),
  27310. default: true
  27311. },
  27312. ]
  27313. ))
  27314. characterMakers.push(() => makeCharacter(
  27315. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  27316. {
  27317. front: {
  27318. height: math.unit(5 + 1 / 12, "feet"),
  27319. weight: math.unit(110, "lb"),
  27320. name: "Front",
  27321. image: {
  27322. source: "./media/characters/aradel/front.svg",
  27323. extra: 324 / 303,
  27324. bottom: 3.6 / 329.4
  27325. }
  27326. },
  27327. },
  27328. [
  27329. {
  27330. name: "Normal",
  27331. height: math.unit(5 + 1 / 12, "feet"),
  27332. default: true
  27333. },
  27334. ]
  27335. ))
  27336. characterMakers.push(() => makeCharacter(
  27337. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  27338. {
  27339. dressed: {
  27340. height: math.unit(3 + 8 / 12, "feet"),
  27341. weight: math.unit(50, "lb"),
  27342. name: "Dressed",
  27343. image: {
  27344. source: "./media/characters/serryn/dressed.svg",
  27345. extra: 1792 / 1656,
  27346. bottom: 43.5 / 1840
  27347. }
  27348. },
  27349. nude: {
  27350. height: math.unit(3 + 8 / 12, "feet"),
  27351. weight: math.unit(50, "lb"),
  27352. name: "Nude",
  27353. image: {
  27354. source: "./media/characters/serryn/nude.svg",
  27355. extra: 1792 / 1656,
  27356. bottom: 43.5 / 1840
  27357. }
  27358. },
  27359. },
  27360. [
  27361. {
  27362. name: "Normal",
  27363. height: math.unit(3 + 8 / 12, "feet"),
  27364. default: true
  27365. },
  27366. ]
  27367. ))
  27368. characterMakers.push(() => makeCharacter(
  27369. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  27370. {
  27371. front: {
  27372. height: math.unit(7 + 10 / 12, "feet"),
  27373. weight: math.unit(255, "lb"),
  27374. name: "Front",
  27375. image: {
  27376. source: "./media/characters/xavier-thyme/front.svg",
  27377. extra: 3733 / 3642,
  27378. bottom: 131 / 3869
  27379. }
  27380. },
  27381. frontRaven: {
  27382. height: math.unit(7 + 10 / 12, "feet"),
  27383. weight: math.unit(255, "lb"),
  27384. name: "Front (Raven)",
  27385. image: {
  27386. source: "./media/characters/xavier-thyme/front-raven.svg",
  27387. extra: 4385 / 3642,
  27388. bottom: 131 / 4517
  27389. }
  27390. },
  27391. },
  27392. [
  27393. {
  27394. name: "Normal",
  27395. height: math.unit(7 + 10 / 12, "feet"),
  27396. default: true
  27397. },
  27398. ]
  27399. ))
  27400. characterMakers.push(() => makeCharacter(
  27401. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  27402. {
  27403. front: {
  27404. height: math.unit(1.6, "m"),
  27405. weight: math.unit(50, "kg"),
  27406. name: "Front",
  27407. image: {
  27408. source: "./media/characters/kiki/front.svg",
  27409. extra: 4682 / 3610,
  27410. bottom: 115 / 4777
  27411. }
  27412. },
  27413. },
  27414. [
  27415. {
  27416. name: "Normal",
  27417. height: math.unit(1.6, "meters"),
  27418. default: true
  27419. },
  27420. ]
  27421. ))
  27422. characterMakers.push(() => makeCharacter(
  27423. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  27424. {
  27425. front: {
  27426. height: math.unit(50, "m"),
  27427. weight: math.unit(500, "tonnes"),
  27428. name: "Front",
  27429. image: {
  27430. source: "./media/characters/ryoko/front.svg",
  27431. extra: 4632 / 3926,
  27432. bottom: 193 / 4823
  27433. }
  27434. },
  27435. },
  27436. [
  27437. {
  27438. name: "Normal",
  27439. height: math.unit(50, "meters"),
  27440. default: true
  27441. },
  27442. ]
  27443. ))
  27444. characterMakers.push(() => makeCharacter(
  27445. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27446. {
  27447. front: {
  27448. height: math.unit(30, "m"),
  27449. weight: math.unit(22, "tonnes"),
  27450. name: "Front",
  27451. image: {
  27452. source: "./media/characters/elio/front.svg",
  27453. extra: 4582 / 3720,
  27454. bottom: 236 / 4828
  27455. }
  27456. },
  27457. },
  27458. [
  27459. {
  27460. name: "Normal",
  27461. height: math.unit(30, "meters"),
  27462. default: true
  27463. },
  27464. ]
  27465. ))
  27466. characterMakers.push(() => makeCharacter(
  27467. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27468. {
  27469. front: {
  27470. height: math.unit(6 + 3 / 12, "feet"),
  27471. weight: math.unit(120, "lb"),
  27472. name: "Front",
  27473. image: {
  27474. source: "./media/characters/azura/front.svg",
  27475. extra: 1149 / 1135,
  27476. bottom: 45 / 1194
  27477. }
  27478. },
  27479. frontClothed: {
  27480. height: math.unit(6 + 3 / 12, "feet"),
  27481. weight: math.unit(120, "lb"),
  27482. name: "Front (Clothed)",
  27483. image: {
  27484. source: "./media/characters/azura/front-clothed.svg",
  27485. extra: 1149 / 1135,
  27486. bottom: 45 / 1194
  27487. }
  27488. },
  27489. },
  27490. [
  27491. {
  27492. name: "Normal",
  27493. height: math.unit(6 + 3 / 12, "feet"),
  27494. default: true
  27495. },
  27496. {
  27497. name: "Macro",
  27498. height: math.unit(20 + 6 / 12, "feet")
  27499. },
  27500. {
  27501. name: "Megamacro",
  27502. height: math.unit(12, "miles")
  27503. },
  27504. {
  27505. name: "Gigamacro",
  27506. height: math.unit(10000, "miles")
  27507. },
  27508. {
  27509. name: "Teramacro",
  27510. height: math.unit(900000, "miles")
  27511. },
  27512. ]
  27513. ))
  27514. characterMakers.push(() => makeCharacter(
  27515. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27516. {
  27517. front: {
  27518. height: math.unit(12, "feet"),
  27519. weight: math.unit(1, "ton"),
  27520. capacity: math.unit(660000, "gallons"),
  27521. name: "Front",
  27522. image: {
  27523. source: "./media/characters/zeus/front.svg",
  27524. extra: 5005 / 4717,
  27525. bottom: 363 / 5388
  27526. }
  27527. },
  27528. },
  27529. [
  27530. {
  27531. name: "Normal",
  27532. height: math.unit(12, "feet")
  27533. },
  27534. {
  27535. name: "Preferred Size",
  27536. height: math.unit(0.5, "miles"),
  27537. default: true
  27538. },
  27539. {
  27540. name: "Giga Horse",
  27541. height: math.unit(300, "miles")
  27542. },
  27543. {
  27544. name: "Riding Planets",
  27545. height: math.unit(30, "megameters")
  27546. },
  27547. {
  27548. name: "Cosmic Giant",
  27549. height: math.unit(3, "zettameters")
  27550. },
  27551. {
  27552. name: "Breeding God",
  27553. height: math.unit(9.92e22, "yottameters")
  27554. },
  27555. ]
  27556. ))
  27557. characterMakers.push(() => makeCharacter(
  27558. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27559. {
  27560. side: {
  27561. height: math.unit(9, "feet"),
  27562. weight: math.unit(1500, "kg"),
  27563. name: "Side",
  27564. image: {
  27565. source: "./media/characters/fang/side.svg",
  27566. extra: 924 / 866,
  27567. bottom: 47.5 / 972.3
  27568. }
  27569. },
  27570. },
  27571. [
  27572. {
  27573. name: "Normal",
  27574. height: math.unit(9, "feet"),
  27575. default: true
  27576. },
  27577. {
  27578. name: "Macro",
  27579. height: math.unit(75 + 6 / 12, "feet")
  27580. },
  27581. {
  27582. name: "Teramacro",
  27583. height: math.unit(50000, "miles")
  27584. },
  27585. ]
  27586. ))
  27587. characterMakers.push(() => makeCharacter(
  27588. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27589. {
  27590. front: {
  27591. height: math.unit(10, "feet"),
  27592. weight: math.unit(2, "tons"),
  27593. name: "Front",
  27594. image: {
  27595. source: "./media/characters/rekhit/front.svg",
  27596. extra: 2796 / 2590,
  27597. bottom: 225 / 3022
  27598. }
  27599. },
  27600. },
  27601. [
  27602. {
  27603. name: "Normal",
  27604. height: math.unit(10, "feet"),
  27605. default: true
  27606. },
  27607. {
  27608. name: "Macro",
  27609. height: math.unit(500, "feet")
  27610. },
  27611. ]
  27612. ))
  27613. characterMakers.push(() => makeCharacter(
  27614. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27615. {
  27616. front: {
  27617. height: math.unit(7 + 6.451 / 12, "feet"),
  27618. weight: math.unit(310, "lb"),
  27619. name: "Front",
  27620. image: {
  27621. source: "./media/characters/dahlia-verrick/front.svg",
  27622. extra: 1488 / 1365,
  27623. bottom: 6.2 / 1495
  27624. }
  27625. },
  27626. back: {
  27627. height: math.unit(7 + 6.451 / 12, "feet"),
  27628. weight: math.unit(310, "lb"),
  27629. name: "Back",
  27630. image: {
  27631. source: "./media/characters/dahlia-verrick/back.svg",
  27632. extra: 1472 / 1351,
  27633. bottom: 5.28 / 1477
  27634. }
  27635. },
  27636. frontBusiness: {
  27637. height: math.unit(7 + 6.451 / 12, "feet"),
  27638. weight: math.unit(200, "lb"),
  27639. name: "Front (Business)",
  27640. image: {
  27641. source: "./media/characters/dahlia-verrick/front-business.svg",
  27642. extra: 1478 / 1381,
  27643. bottom: 5.5 / 1484
  27644. }
  27645. },
  27646. frontCasual: {
  27647. height: math.unit(7 + 6.451 / 12, "feet"),
  27648. weight: math.unit(200, "lb"),
  27649. name: "Front (Casual)",
  27650. image: {
  27651. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27652. extra: 1478 / 1381,
  27653. bottom: 5.5 / 1484
  27654. }
  27655. },
  27656. },
  27657. [
  27658. {
  27659. name: "Travel-Sized",
  27660. height: math.unit(7.45, "inches")
  27661. },
  27662. {
  27663. name: "Normal",
  27664. height: math.unit(7 + 6.451 / 12, "feet"),
  27665. default: true
  27666. },
  27667. {
  27668. name: "Hitting the Town",
  27669. height: math.unit(37 + 8 / 12, "feet")
  27670. },
  27671. {
  27672. name: "Stomp in the Suburbs",
  27673. height: math.unit(964 + 9.728 / 12, "feet")
  27674. },
  27675. {
  27676. name: "Sit on the City",
  27677. height: math.unit(61747 + 10.592 / 12, "feet")
  27678. },
  27679. {
  27680. name: "Glomp the Globe",
  27681. height: math.unit(252919327 + 4.832 / 12, "feet")
  27682. },
  27683. ]
  27684. ))
  27685. characterMakers.push(() => makeCharacter(
  27686. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27687. {
  27688. front: {
  27689. height: math.unit(6 + 4 / 12, "feet"),
  27690. weight: math.unit(320, "lb"),
  27691. name: "Front",
  27692. image: {
  27693. source: "./media/characters/balina-mahigan/front.svg",
  27694. extra: 447 / 428,
  27695. bottom: 18 / 466
  27696. }
  27697. },
  27698. back: {
  27699. height: math.unit(6 + 4 / 12, "feet"),
  27700. weight: math.unit(320, "lb"),
  27701. name: "Back",
  27702. image: {
  27703. source: "./media/characters/balina-mahigan/back.svg",
  27704. extra: 445 / 428,
  27705. bottom: 4.07 / 448
  27706. }
  27707. },
  27708. arm: {
  27709. height: math.unit(1.88, "feet"),
  27710. name: "Arm",
  27711. image: {
  27712. source: "./media/characters/balina-mahigan/arm.svg"
  27713. }
  27714. },
  27715. backPort: {
  27716. height: math.unit(0.685, "feet"),
  27717. name: "Back Port",
  27718. image: {
  27719. source: "./media/characters/balina-mahigan/back-port.svg"
  27720. }
  27721. },
  27722. hoofpaw: {
  27723. height: math.unit(1.41, "feet"),
  27724. name: "Hoofpaw",
  27725. image: {
  27726. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27727. }
  27728. },
  27729. leftHandBack: {
  27730. height: math.unit(0.938, "feet"),
  27731. name: "Left Hand (Back)",
  27732. image: {
  27733. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27734. }
  27735. },
  27736. leftHandFront: {
  27737. height: math.unit(0.938, "feet"),
  27738. name: "Left Hand (Front)",
  27739. image: {
  27740. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27741. }
  27742. },
  27743. rightHandBack: {
  27744. height: math.unit(0.95, "feet"),
  27745. name: "Right Hand (Back)",
  27746. image: {
  27747. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27748. }
  27749. },
  27750. rightHandFront: {
  27751. height: math.unit(0.95, "feet"),
  27752. name: "Right Hand (Front)",
  27753. image: {
  27754. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27755. }
  27756. },
  27757. },
  27758. [
  27759. {
  27760. name: "Normal",
  27761. height: math.unit(6 + 4 / 12, "feet"),
  27762. default: true
  27763. },
  27764. ]
  27765. ))
  27766. characterMakers.push(() => makeCharacter(
  27767. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27768. {
  27769. front: {
  27770. height: math.unit(6, "feet"),
  27771. weight: math.unit(320, "lb"),
  27772. name: "Front",
  27773. image: {
  27774. source: "./media/characters/balina-mejeri/front.svg",
  27775. extra: 517 / 488,
  27776. bottom: 44.2 / 561
  27777. }
  27778. },
  27779. },
  27780. [
  27781. {
  27782. name: "Normal",
  27783. height: math.unit(6 + 4 / 12, "feet")
  27784. },
  27785. {
  27786. name: "Business",
  27787. height: math.unit(155, "feet"),
  27788. default: true
  27789. },
  27790. ]
  27791. ))
  27792. characterMakers.push(() => makeCharacter(
  27793. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27794. {
  27795. kneeling: {
  27796. height: math.unit(6 + 4 / 12, "feet"),
  27797. weight: math.unit(300 * 20, "lb"),
  27798. name: "Kneeling",
  27799. image: {
  27800. source: "./media/characters/balbarian/kneeling.svg",
  27801. extra: 922 / 862,
  27802. bottom: 42.4 / 965
  27803. }
  27804. },
  27805. },
  27806. [
  27807. {
  27808. name: "Normal",
  27809. height: math.unit(6 + 4 / 12, "feet")
  27810. },
  27811. {
  27812. name: "Treasured",
  27813. height: math.unit(18 + 9 / 12, "feet"),
  27814. default: true
  27815. },
  27816. {
  27817. name: "Macro",
  27818. height: math.unit(900, "feet")
  27819. },
  27820. ]
  27821. ))
  27822. characterMakers.push(() => makeCharacter(
  27823. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27824. {
  27825. front: {
  27826. height: math.unit(6 + 4 / 12, "feet"),
  27827. weight: math.unit(325, "lb"),
  27828. name: "Front",
  27829. image: {
  27830. source: "./media/characters/balina-amarini/front.svg",
  27831. extra: 415 / 403,
  27832. bottom: 19 / 433.4
  27833. }
  27834. },
  27835. back: {
  27836. height: math.unit(6 + 4 / 12, "feet"),
  27837. weight: math.unit(325, "lb"),
  27838. name: "Back",
  27839. image: {
  27840. source: "./media/characters/balina-amarini/back.svg",
  27841. extra: 415 / 403,
  27842. bottom: 13.5 / 432
  27843. }
  27844. },
  27845. overdrive: {
  27846. height: math.unit(6 + 4 / 12, "feet"),
  27847. weight: math.unit(400, "lb"),
  27848. name: "Overdrive",
  27849. image: {
  27850. source: "./media/characters/balina-amarini/overdrive.svg",
  27851. extra: 269 / 259,
  27852. bottom: 12 / 282
  27853. }
  27854. },
  27855. },
  27856. [
  27857. {
  27858. name: "Boom",
  27859. height: math.unit(9 + 10 / 12, "feet"),
  27860. default: true
  27861. },
  27862. {
  27863. name: "Macro",
  27864. height: math.unit(280, "feet")
  27865. },
  27866. ]
  27867. ))
  27868. characterMakers.push(() => makeCharacter(
  27869. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27870. {
  27871. goddess: {
  27872. height: math.unit(600, "feet"),
  27873. weight: math.unit(2000000, "tons"),
  27874. name: "Goddess",
  27875. image: {
  27876. source: "./media/characters/lady-kubwa/goddess.svg",
  27877. extra: 1240.5 / 1223,
  27878. bottom: 22 / 1263
  27879. }
  27880. },
  27881. goddesser: {
  27882. height: math.unit(900, "feet"),
  27883. weight: math.unit(20000000, "lb"),
  27884. name: "Goddess-er",
  27885. image: {
  27886. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27887. extra: 899 / 888,
  27888. bottom: 12.6 / 912
  27889. }
  27890. },
  27891. },
  27892. [
  27893. {
  27894. name: "Macro",
  27895. height: math.unit(600, "feet"),
  27896. default: true
  27897. },
  27898. {
  27899. name: "Megamacro",
  27900. height: math.unit(250, "miles")
  27901. },
  27902. ]
  27903. ))
  27904. characterMakers.push(() => makeCharacter(
  27905. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27906. {
  27907. front: {
  27908. height: math.unit(7 + 7 / 12, "feet"),
  27909. weight: math.unit(250, "lb"),
  27910. name: "Front",
  27911. image: {
  27912. source: "./media/characters/tala-grovehorn/front.svg",
  27913. extra: 2636 / 2525,
  27914. bottom: 147 / 2781
  27915. }
  27916. },
  27917. back: {
  27918. height: math.unit(7 + 7 / 12, "feet"),
  27919. weight: math.unit(250, "lb"),
  27920. name: "Back",
  27921. image: {
  27922. source: "./media/characters/tala-grovehorn/back.svg",
  27923. extra: 2635 / 2539,
  27924. bottom: 100 / 2732.8
  27925. }
  27926. },
  27927. mouth: {
  27928. height: math.unit(1.15, "feet"),
  27929. name: "Mouth",
  27930. image: {
  27931. source: "./media/characters/tala-grovehorn/mouth.svg"
  27932. }
  27933. },
  27934. dick: {
  27935. height: math.unit(2.36, "feet"),
  27936. name: "Dick",
  27937. image: {
  27938. source: "./media/characters/tala-grovehorn/dick.svg"
  27939. }
  27940. },
  27941. slit: {
  27942. height: math.unit(0.61, "feet"),
  27943. name: "Slit",
  27944. image: {
  27945. source: "./media/characters/tala-grovehorn/slit.svg"
  27946. }
  27947. },
  27948. },
  27949. [
  27950. ]
  27951. ))
  27952. characterMakers.push(() => makeCharacter(
  27953. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27954. {
  27955. front: {
  27956. height: math.unit(7 + 7 / 12, "feet"),
  27957. weight: math.unit(225, "lb"),
  27958. name: "Front",
  27959. image: {
  27960. source: "./media/characters/epona/front.svg",
  27961. extra: 2445 / 2290,
  27962. bottom: 251 / 2696
  27963. }
  27964. },
  27965. back: {
  27966. height: math.unit(7 + 7 / 12, "feet"),
  27967. weight: math.unit(225, "lb"),
  27968. name: "Back",
  27969. image: {
  27970. source: "./media/characters/epona/back.svg",
  27971. extra: 2546 / 2408,
  27972. bottom: 44 / 2589
  27973. }
  27974. },
  27975. genitals: {
  27976. height: math.unit(1.5, "feet"),
  27977. name: "Genitals",
  27978. image: {
  27979. source: "./media/characters/epona/genitals.svg"
  27980. }
  27981. },
  27982. },
  27983. [
  27984. {
  27985. name: "Normal",
  27986. height: math.unit(7 + 7 / 12, "feet"),
  27987. default: true
  27988. },
  27989. ]
  27990. ))
  27991. characterMakers.push(() => makeCharacter(
  27992. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27993. {
  27994. front: {
  27995. height: math.unit(7, "feet"),
  27996. weight: math.unit(518, "lb"),
  27997. name: "Front",
  27998. image: {
  27999. source: "./media/characters/avia-bloodbourn/front.svg",
  28000. extra: 1466 / 1350,
  28001. bottom: 65 / 1527
  28002. }
  28003. },
  28004. },
  28005. [
  28006. ]
  28007. ))
  28008. characterMakers.push(() => makeCharacter(
  28009. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  28010. {
  28011. front: {
  28012. height: math.unit(9.35, "feet"),
  28013. weight: math.unit(600, "lb"),
  28014. name: "Front",
  28015. image: {
  28016. source: "./media/characters/amera/front.svg",
  28017. extra: 891 / 818,
  28018. bottom: 30 / 922.7
  28019. }
  28020. },
  28021. back: {
  28022. height: math.unit(9.35, "feet"),
  28023. weight: math.unit(600, "lb"),
  28024. name: "Back",
  28025. image: {
  28026. source: "./media/characters/amera/back.svg",
  28027. extra: 876 / 824,
  28028. bottom: 6.8 / 884
  28029. }
  28030. },
  28031. dick: {
  28032. height: math.unit(2.14, "feet"),
  28033. name: "Dick",
  28034. image: {
  28035. source: "./media/characters/amera/dick.svg"
  28036. }
  28037. },
  28038. },
  28039. [
  28040. {
  28041. name: "Normal",
  28042. height: math.unit(9.35, "feet"),
  28043. default: true
  28044. },
  28045. ]
  28046. ))
  28047. characterMakers.push(() => makeCharacter(
  28048. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  28049. {
  28050. kneeling: {
  28051. height: math.unit(3 + 4 / 12, "feet"),
  28052. weight: math.unit(90, "lb"),
  28053. name: "Kneeling",
  28054. image: {
  28055. source: "./media/characters/rosewen/kneeling.svg",
  28056. extra: 1835 / 1571,
  28057. bottom: 27.7 / 1862
  28058. }
  28059. },
  28060. },
  28061. [
  28062. {
  28063. name: "Normal",
  28064. height: math.unit(3 + 4 / 12, "feet"),
  28065. default: true
  28066. },
  28067. ]
  28068. ))
  28069. characterMakers.push(() => makeCharacter(
  28070. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  28071. {
  28072. front: {
  28073. height: math.unit(5 + 10 / 12, "feet"),
  28074. weight: math.unit(200, "lb"),
  28075. name: "Front",
  28076. image: {
  28077. source: "./media/characters/sabah/front.svg",
  28078. extra: 849 / 763,
  28079. bottom: 33.9 / 881
  28080. }
  28081. },
  28082. },
  28083. [
  28084. {
  28085. name: "Normal",
  28086. height: math.unit(5 + 10 / 12, "feet"),
  28087. default: true
  28088. },
  28089. ]
  28090. ))
  28091. characterMakers.push(() => makeCharacter(
  28092. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  28093. {
  28094. front: {
  28095. height: math.unit(3 + 5 / 12, "feet"),
  28096. weight: math.unit(40, "kg"),
  28097. name: "Front",
  28098. image: {
  28099. source: "./media/characters/purple-flame/front.svg",
  28100. extra: 1577 / 1412,
  28101. bottom: 97 / 1694
  28102. }
  28103. },
  28104. frontDressed: {
  28105. height: math.unit(3 + 5 / 12, "feet"),
  28106. weight: math.unit(40, "kg"),
  28107. name: "Front (Dressed)",
  28108. image: {
  28109. source: "./media/characters/purple-flame/front-dressed.svg",
  28110. extra: 1577 / 1412,
  28111. bottom: 97 / 1694
  28112. }
  28113. },
  28114. headphones: {
  28115. height: math.unit(0.85, "feet"),
  28116. name: "Headphones",
  28117. image: {
  28118. source: "./media/characters/purple-flame/headphones.svg"
  28119. }
  28120. },
  28121. },
  28122. [
  28123. {
  28124. name: "Really Small",
  28125. height: math.unit(5, "cm")
  28126. },
  28127. {
  28128. name: "Micro",
  28129. height: math.unit(1 + 5 / 12, "feet")
  28130. },
  28131. {
  28132. name: "Normal",
  28133. height: math.unit(3 + 5 / 12, "feet"),
  28134. default: true
  28135. },
  28136. {
  28137. name: "Minimacro",
  28138. height: math.unit(125, "feet")
  28139. },
  28140. {
  28141. name: "Macro",
  28142. height: math.unit(0.5, "miles")
  28143. },
  28144. {
  28145. name: "Megamacro",
  28146. height: math.unit(50, "miles")
  28147. },
  28148. {
  28149. name: "Gigantic",
  28150. height: math.unit(750, "miles")
  28151. },
  28152. {
  28153. name: "Planetary",
  28154. height: math.unit(15000, "miles")
  28155. },
  28156. ]
  28157. ))
  28158. characterMakers.push(() => makeCharacter(
  28159. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  28160. {
  28161. front: {
  28162. height: math.unit(14, "feet"),
  28163. weight: math.unit(959, "lb"),
  28164. name: "Front",
  28165. image: {
  28166. source: "./media/characters/arsenal/front.svg",
  28167. extra: 2357 / 2157,
  28168. bottom: 93 / 2458
  28169. }
  28170. },
  28171. },
  28172. [
  28173. {
  28174. name: "Normal",
  28175. height: math.unit(14, "feet"),
  28176. default: true
  28177. },
  28178. ]
  28179. ))
  28180. characterMakers.push(() => makeCharacter(
  28181. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  28182. {
  28183. front: {
  28184. height: math.unit(6, "feet"),
  28185. weight: math.unit(150, "lb"),
  28186. name: "Front",
  28187. image: {
  28188. source: "./media/characters/adira/front.svg",
  28189. extra: 1078 / 1029,
  28190. bottom: 87 / 1166
  28191. }
  28192. },
  28193. },
  28194. [
  28195. {
  28196. name: "Micro",
  28197. height: math.unit(4, "inches"),
  28198. default: true
  28199. },
  28200. {
  28201. name: "Macro",
  28202. height: math.unit(50, "feet")
  28203. },
  28204. ]
  28205. ))
  28206. characterMakers.push(() => makeCharacter(
  28207. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  28208. {
  28209. front: {
  28210. height: math.unit(16, "feet"),
  28211. weight: math.unit(1000, "lb"),
  28212. name: "Front",
  28213. image: {
  28214. source: "./media/characters/grim/front.svg",
  28215. extra: 622 / 614,
  28216. bottom: 18.1 / 642
  28217. }
  28218. },
  28219. back: {
  28220. height: math.unit(16, "feet"),
  28221. weight: math.unit(1000, "lb"),
  28222. name: "Back",
  28223. image: {
  28224. source: "./media/characters/grim/back.svg",
  28225. extra: 610.6 / 602,
  28226. bottom: 40.8 / 652
  28227. }
  28228. },
  28229. hunched: {
  28230. height: math.unit(9.75, "feet"),
  28231. weight: math.unit(1000, "lb"),
  28232. name: "Hunched",
  28233. image: {
  28234. source: "./media/characters/grim/hunched.svg",
  28235. extra: 304 / 297,
  28236. bottom: 35.4 / 394
  28237. }
  28238. },
  28239. },
  28240. [
  28241. {
  28242. name: "Normal",
  28243. height: math.unit(16, "feet"),
  28244. default: true
  28245. },
  28246. ]
  28247. ))
  28248. characterMakers.push(() => makeCharacter(
  28249. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  28250. {
  28251. front: {
  28252. height: math.unit(2.3, "meters"),
  28253. weight: math.unit(300, "lb"),
  28254. name: "Front",
  28255. image: {
  28256. source: "./media/characters/sinja/front-sfw.svg",
  28257. extra: 1393 / 1294,
  28258. bottom: 70 / 1463
  28259. }
  28260. },
  28261. frontNsfw: {
  28262. height: math.unit(2.3, "meters"),
  28263. weight: math.unit(300, "lb"),
  28264. name: "Front (NSFW)",
  28265. image: {
  28266. source: "./media/characters/sinja/front-nsfw.svg",
  28267. extra: 1393 / 1294,
  28268. bottom: 70 / 1463
  28269. }
  28270. },
  28271. back: {
  28272. height: math.unit(2.3, "meters"),
  28273. weight: math.unit(300, "lb"),
  28274. name: "Back",
  28275. image: {
  28276. source: "./media/characters/sinja/back.svg",
  28277. extra: 1393 / 1294,
  28278. bottom: 70 / 1463
  28279. }
  28280. },
  28281. head: {
  28282. height: math.unit(1.771, "feet"),
  28283. name: "Head",
  28284. image: {
  28285. source: "./media/characters/sinja/head.svg"
  28286. }
  28287. },
  28288. slit: {
  28289. height: math.unit(0.8, "feet"),
  28290. name: "Slit",
  28291. image: {
  28292. source: "./media/characters/sinja/slit.svg"
  28293. }
  28294. },
  28295. },
  28296. [
  28297. {
  28298. name: "Normal",
  28299. height: math.unit(2.3, "meters")
  28300. },
  28301. {
  28302. name: "Macro",
  28303. height: math.unit(91, "meters"),
  28304. default: true
  28305. },
  28306. {
  28307. name: "Megamacro",
  28308. height: math.unit(91440, "meters")
  28309. },
  28310. {
  28311. name: "Gigamacro",
  28312. height: math.unit(60960000, "meters")
  28313. },
  28314. {
  28315. name: "Teramacro",
  28316. height: math.unit(9144000000, "meters")
  28317. },
  28318. ]
  28319. ))
  28320. characterMakers.push(() => makeCharacter(
  28321. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  28322. {
  28323. front: {
  28324. height: math.unit(1.7, "meters"),
  28325. weight: math.unit(130, "lb"),
  28326. name: "Front",
  28327. image: {
  28328. source: "./media/characters/kyu/front.svg",
  28329. extra: 415 / 395,
  28330. bottom: 5 / 420
  28331. }
  28332. },
  28333. head: {
  28334. height: math.unit(1.75, "feet"),
  28335. name: "Head",
  28336. image: {
  28337. source: "./media/characters/kyu/head.svg"
  28338. }
  28339. },
  28340. foot: {
  28341. height: math.unit(0.81, "feet"),
  28342. name: "Foot",
  28343. image: {
  28344. source: "./media/characters/kyu/foot.svg"
  28345. }
  28346. },
  28347. },
  28348. [
  28349. {
  28350. name: "Normal",
  28351. height: math.unit(1.7, "meters")
  28352. },
  28353. {
  28354. name: "Macro",
  28355. height: math.unit(131, "feet"),
  28356. default: true
  28357. },
  28358. {
  28359. name: "Megamacro",
  28360. height: math.unit(91440, "meters")
  28361. },
  28362. {
  28363. name: "Gigamacro",
  28364. height: math.unit(60960000, "meters")
  28365. },
  28366. {
  28367. name: "Teramacro",
  28368. height: math.unit(9144000000, "meters")
  28369. },
  28370. ]
  28371. ))
  28372. characterMakers.push(() => makeCharacter(
  28373. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  28374. {
  28375. front: {
  28376. height: math.unit(7 + 1 / 12, "feet"),
  28377. weight: math.unit(250, "lb"),
  28378. name: "Front",
  28379. image: {
  28380. source: "./media/characters/joey/front.svg",
  28381. extra: 1791 / 1537,
  28382. bottom: 28 / 1816
  28383. }
  28384. },
  28385. },
  28386. [
  28387. {
  28388. name: "Micro",
  28389. height: math.unit(3, "inches")
  28390. },
  28391. {
  28392. name: "Normal",
  28393. height: math.unit(7 + 1 / 12, "feet"),
  28394. default: true
  28395. },
  28396. ]
  28397. ))
  28398. characterMakers.push(() => makeCharacter(
  28399. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  28400. {
  28401. front: {
  28402. height: math.unit(165, "cm"),
  28403. weight: math.unit(140, "lb"),
  28404. name: "Front",
  28405. image: {
  28406. source: "./media/characters/sam-evans/front.svg",
  28407. extra: 3417 / 3230,
  28408. bottom: 41.3 / 3417
  28409. }
  28410. },
  28411. frontSixTails: {
  28412. height: math.unit(165, "cm"),
  28413. weight: math.unit(140, "lb"),
  28414. name: "Front-six-tails",
  28415. image: {
  28416. source: "./media/characters/sam-evans/front-six-tails.svg",
  28417. extra: 3417 / 3230,
  28418. bottom: 41.3 / 3417
  28419. }
  28420. },
  28421. back: {
  28422. height: math.unit(165, "cm"),
  28423. weight: math.unit(140, "lb"),
  28424. name: "Back",
  28425. image: {
  28426. source: "./media/characters/sam-evans/back.svg",
  28427. extra: 3227 / 3032,
  28428. bottom: 6.8 / 3234
  28429. }
  28430. },
  28431. face: {
  28432. height: math.unit(0.68, "feet"),
  28433. name: "Face",
  28434. image: {
  28435. source: "./media/characters/sam-evans/face.svg"
  28436. }
  28437. },
  28438. },
  28439. [
  28440. {
  28441. name: "Normal",
  28442. height: math.unit(165, "cm"),
  28443. default: true
  28444. },
  28445. {
  28446. name: "Macro",
  28447. height: math.unit(100, "meters")
  28448. },
  28449. {
  28450. name: "Macro+",
  28451. height: math.unit(800, "meters")
  28452. },
  28453. {
  28454. name: "Macro++",
  28455. height: math.unit(3, "km")
  28456. },
  28457. {
  28458. name: "Macro+++",
  28459. height: math.unit(30, "km")
  28460. },
  28461. ]
  28462. ))
  28463. characterMakers.push(() => makeCharacter(
  28464. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28465. {
  28466. front: {
  28467. height: math.unit(10, "feet"),
  28468. weight: math.unit(750, "lb"),
  28469. name: "Front",
  28470. image: {
  28471. source: "./media/characters/juliet-a/front.svg",
  28472. extra: 1766 / 1720,
  28473. bottom: 43 / 1809
  28474. }
  28475. },
  28476. back: {
  28477. height: math.unit(10, "feet"),
  28478. weight: math.unit(750, "lb"),
  28479. name: "Back",
  28480. image: {
  28481. source: "./media/characters/juliet-a/back.svg",
  28482. extra: 1781 / 1734,
  28483. bottom: 35 / 1810,
  28484. }
  28485. },
  28486. },
  28487. [
  28488. {
  28489. name: "Normal",
  28490. height: math.unit(10, "feet"),
  28491. default: true
  28492. },
  28493. {
  28494. name: "Dragon Form",
  28495. height: math.unit(250, "feet")
  28496. },
  28497. {
  28498. name: "Macro",
  28499. height: math.unit(1000, "feet")
  28500. },
  28501. {
  28502. name: "Megamacro",
  28503. height: math.unit(10000, "feet")
  28504. }
  28505. ]
  28506. ))
  28507. characterMakers.push(() => makeCharacter(
  28508. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28509. {
  28510. regular: {
  28511. height: math.unit(7 + 3 / 12, "feet"),
  28512. weight: math.unit(260, "lb"),
  28513. name: "Regular",
  28514. image: {
  28515. source: "./media/characters/wild/regular.svg",
  28516. extra: 97.45 / 92,
  28517. bottom: 6.8 / 104.3
  28518. }
  28519. },
  28520. biggums: {
  28521. height: math.unit(8 + 6 / 12, "feet"),
  28522. weight: math.unit(425, "lb"),
  28523. name: "Biggums",
  28524. image: {
  28525. source: "./media/characters/wild/biggums.svg",
  28526. extra: 97.45 / 92,
  28527. bottom: 7.5 / 132.34
  28528. }
  28529. },
  28530. mawRegular: {
  28531. height: math.unit(1.24, "feet"),
  28532. name: "Maw (Regular)",
  28533. image: {
  28534. source: "./media/characters/wild/maw.svg"
  28535. }
  28536. },
  28537. mawBiggums: {
  28538. height: math.unit(1.47, "feet"),
  28539. name: "Maw (Biggums)",
  28540. image: {
  28541. source: "./media/characters/wild/maw.svg"
  28542. }
  28543. },
  28544. },
  28545. [
  28546. {
  28547. name: "Normal",
  28548. height: math.unit(7 + 3 / 12, "feet"),
  28549. default: true
  28550. },
  28551. ]
  28552. ))
  28553. characterMakers.push(() => makeCharacter(
  28554. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28555. {
  28556. front: {
  28557. height: math.unit(2.5, "meters"),
  28558. weight: math.unit(200, "kg"),
  28559. name: "Front",
  28560. image: {
  28561. source: "./media/characters/vidar/front.svg",
  28562. extra: 2994 / 2795,
  28563. bottom: 56 / 3061
  28564. }
  28565. },
  28566. back: {
  28567. height: math.unit(2.5, "meters"),
  28568. weight: math.unit(200, "kg"),
  28569. name: "Back",
  28570. image: {
  28571. source: "./media/characters/vidar/back.svg",
  28572. extra: 3131 / 2928,
  28573. bottom: 13.5 / 3141.5
  28574. }
  28575. },
  28576. feral: {
  28577. height: math.unit(2.5, "meters"),
  28578. weight: math.unit(2000, "kg"),
  28579. name: "Feral",
  28580. image: {
  28581. source: "./media/characters/vidar/feral.svg",
  28582. extra: 2790 / 1765,
  28583. bottom: 6 / 2796
  28584. }
  28585. },
  28586. },
  28587. [
  28588. {
  28589. name: "Normal",
  28590. height: math.unit(2.5, "meters"),
  28591. default: true
  28592. },
  28593. {
  28594. name: "Macro",
  28595. height: math.unit(100, "meters")
  28596. },
  28597. ]
  28598. ))
  28599. characterMakers.push(() => makeCharacter(
  28600. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28601. {
  28602. front: {
  28603. height: math.unit(5 + 9 / 12, "feet"),
  28604. weight: math.unit(120, "lb"),
  28605. name: "Front",
  28606. image: {
  28607. source: "./media/characters/ash/front.svg",
  28608. extra: 2189 / 1961,
  28609. bottom: 5.2 / 2194
  28610. }
  28611. },
  28612. },
  28613. [
  28614. {
  28615. name: "Normal",
  28616. height: math.unit(5 + 9 / 12, "feet"),
  28617. default: true
  28618. },
  28619. ]
  28620. ))
  28621. characterMakers.push(() => makeCharacter(
  28622. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28623. {
  28624. front: {
  28625. height: math.unit(9, "feet"),
  28626. weight: math.unit(10000, "lb"),
  28627. name: "Front",
  28628. image: {
  28629. source: "./media/characters/gygabite/front.svg",
  28630. bottom: 31.7 / 537.8,
  28631. extra: 505 / 370
  28632. }
  28633. },
  28634. },
  28635. [
  28636. {
  28637. name: "Normal",
  28638. height: math.unit(9, "feet"),
  28639. default: true
  28640. },
  28641. ]
  28642. ))
  28643. characterMakers.push(() => makeCharacter(
  28644. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  28645. {
  28646. front: {
  28647. height: math.unit(12, "feet"),
  28648. weight: math.unit(4000, "lb"),
  28649. name: "Front",
  28650. image: {
  28651. source: "./media/characters/p0tat0/front.svg",
  28652. extra: 1065 / 921,
  28653. bottom: 55.7 / 1121.25
  28654. }
  28655. },
  28656. },
  28657. [
  28658. {
  28659. name: "Normal",
  28660. height: math.unit(12, "feet"),
  28661. default: true
  28662. },
  28663. ]
  28664. ))
  28665. characterMakers.push(() => makeCharacter(
  28666. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28667. {
  28668. side: {
  28669. height: math.unit(6.5, "feet"),
  28670. weight: math.unit(800, "lb"),
  28671. name: "Side",
  28672. image: {
  28673. source: "./media/characters/dusk/side.svg",
  28674. extra: 615 / 373,
  28675. bottom: 53 / 664
  28676. }
  28677. },
  28678. sitting: {
  28679. height: math.unit(7, "feet"),
  28680. weight: math.unit(800, "lb"),
  28681. name: "Sitting",
  28682. image: {
  28683. source: "./media/characters/dusk/sitting.svg",
  28684. extra: 753 / 425,
  28685. bottom: 33 / 774
  28686. }
  28687. },
  28688. head: {
  28689. height: math.unit(6.1, "feet"),
  28690. name: "Head",
  28691. image: {
  28692. source: "./media/characters/dusk/head.svg"
  28693. }
  28694. },
  28695. },
  28696. [
  28697. {
  28698. name: "Normal",
  28699. height: math.unit(7, "feet"),
  28700. default: true
  28701. },
  28702. ]
  28703. ))
  28704. characterMakers.push(() => makeCharacter(
  28705. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28706. {
  28707. front: {
  28708. height: math.unit(15, "feet"),
  28709. weight: math.unit(7000, "lb"),
  28710. name: "Front",
  28711. image: {
  28712. source: "./media/characters/jay-direwolf/front.svg",
  28713. extra: 1810 / 1732,
  28714. bottom: 66 / 1892
  28715. }
  28716. },
  28717. },
  28718. [
  28719. {
  28720. name: "Normal",
  28721. height: math.unit(15, "feet"),
  28722. default: true
  28723. },
  28724. ]
  28725. ))
  28726. characterMakers.push(() => makeCharacter(
  28727. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28728. {
  28729. front: {
  28730. height: math.unit(4 + 9 / 12, "feet"),
  28731. weight: math.unit(130, "lb"),
  28732. name: "Front",
  28733. image: {
  28734. source: "./media/characters/anchovie/front.svg",
  28735. extra: 382 / 350,
  28736. bottom: 25 / 409
  28737. }
  28738. },
  28739. back: {
  28740. height: math.unit(4 + 9 / 12, "feet"),
  28741. weight: math.unit(130, "lb"),
  28742. name: "Back",
  28743. image: {
  28744. source: "./media/characters/anchovie/back.svg",
  28745. extra: 385 / 352,
  28746. bottom: 16.6 / 402
  28747. }
  28748. },
  28749. frontDressed: {
  28750. height: math.unit(4 + 9 / 12, "feet"),
  28751. weight: math.unit(130, "lb"),
  28752. name: "Front (Dressed)",
  28753. image: {
  28754. source: "./media/characters/anchovie/front-dressed.svg",
  28755. extra: 382 / 350,
  28756. bottom: 25 / 409
  28757. }
  28758. },
  28759. backDressed: {
  28760. height: math.unit(4 + 9 / 12, "feet"),
  28761. weight: math.unit(130, "lb"),
  28762. name: "Back (Dressed)",
  28763. image: {
  28764. source: "./media/characters/anchovie/back-dressed.svg",
  28765. extra: 385 / 352,
  28766. bottom: 16.6 / 402
  28767. }
  28768. },
  28769. },
  28770. [
  28771. {
  28772. name: "Micro",
  28773. height: math.unit(6.4, "inches")
  28774. },
  28775. {
  28776. name: "Normal",
  28777. height: math.unit(4 + 9 / 12, "feet"),
  28778. default: true
  28779. },
  28780. ]
  28781. ))
  28782. characterMakers.push(() => makeCharacter(
  28783. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28784. {
  28785. front: {
  28786. height: math.unit(2, "meters"),
  28787. weight: math.unit(180, "lb"),
  28788. name: "Front",
  28789. image: {
  28790. source: "./media/characters/acidrenamon/front.svg",
  28791. extra: 987 / 890,
  28792. bottom: 22.8 / 1009
  28793. }
  28794. },
  28795. back: {
  28796. height: math.unit(2, "meters"),
  28797. weight: math.unit(180, "lb"),
  28798. name: "Back",
  28799. image: {
  28800. source: "./media/characters/acidrenamon/back.svg",
  28801. extra: 983 / 891,
  28802. bottom: 8.4 / 992
  28803. }
  28804. },
  28805. head: {
  28806. height: math.unit(1.92, "feet"),
  28807. name: "Head",
  28808. image: {
  28809. source: "./media/characters/acidrenamon/head.svg"
  28810. }
  28811. },
  28812. rump: {
  28813. height: math.unit(1.72, "feet"),
  28814. name: "Rump",
  28815. image: {
  28816. source: "./media/characters/acidrenamon/rump.svg"
  28817. }
  28818. },
  28819. tail: {
  28820. height: math.unit(4.2, "feet"),
  28821. name: "Tail",
  28822. image: {
  28823. source: "./media/characters/acidrenamon/tail.svg"
  28824. }
  28825. },
  28826. },
  28827. [
  28828. {
  28829. name: "Normal",
  28830. height: math.unit(2, "meters"),
  28831. default: true
  28832. },
  28833. {
  28834. name: "Minimacro",
  28835. height: math.unit(7, "meters")
  28836. },
  28837. {
  28838. name: "Macro",
  28839. height: math.unit(200, "meters")
  28840. },
  28841. {
  28842. name: "Gigamacro",
  28843. height: math.unit(0.2, "earths")
  28844. },
  28845. ]
  28846. ))
  28847. characterMakers.push(() => makeCharacter(
  28848. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28849. {
  28850. front: {
  28851. height: math.unit(152, "feet"),
  28852. name: "Front",
  28853. image: {
  28854. source: "./media/characters/kenzie-lee/front.svg",
  28855. extra: 1869/1774,
  28856. bottom: 128/1997
  28857. }
  28858. },
  28859. side: {
  28860. height: math.unit(86, "feet"),
  28861. name: "Side",
  28862. image: {
  28863. source: "./media/characters/kenzie-lee/side.svg",
  28864. extra: 930/815,
  28865. bottom: 177/1107
  28866. }
  28867. },
  28868. paw: {
  28869. height: math.unit(15, "feet"),
  28870. name: "Paw",
  28871. image: {
  28872. source: "./media/characters/kenzie-lee/paw.svg"
  28873. }
  28874. },
  28875. },
  28876. [
  28877. {
  28878. name: "Kenzie Flea",
  28879. height: math.unit(2, "mm"),
  28880. default: true
  28881. },
  28882. {
  28883. name: "Micro",
  28884. height: math.unit(2, "inches")
  28885. },
  28886. {
  28887. name: "Normal",
  28888. height: math.unit(152, "feet")
  28889. },
  28890. {
  28891. name: "Megamacro",
  28892. height: math.unit(7, "miles")
  28893. },
  28894. {
  28895. name: "Gigamacro",
  28896. height: math.unit(8000, "miles")
  28897. },
  28898. ]
  28899. ))
  28900. characterMakers.push(() => makeCharacter(
  28901. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28902. {
  28903. front: {
  28904. height: math.unit(6, "feet"),
  28905. name: "Front",
  28906. image: {
  28907. source: "./media/characters/withers/front.svg",
  28908. extra: 1935/1760,
  28909. bottom: 72/2007
  28910. }
  28911. },
  28912. back: {
  28913. height: math.unit(6, "feet"),
  28914. name: "Back",
  28915. image: {
  28916. source: "./media/characters/withers/back.svg",
  28917. extra: 1944/1792,
  28918. bottom: 12/1956
  28919. }
  28920. },
  28921. dressed: {
  28922. height: math.unit(6, "feet"),
  28923. name: "Dressed",
  28924. image: {
  28925. source: "./media/characters/withers/dressed.svg",
  28926. extra: 1937/1765,
  28927. bottom: 73/2010
  28928. }
  28929. },
  28930. phase1: {
  28931. height: math.unit(1.1, "feet"),
  28932. name: "Phase 1",
  28933. image: {
  28934. source: "./media/characters/withers/phase-1.svg",
  28935. extra: 1885/1232,
  28936. bottom: 0/1885
  28937. }
  28938. },
  28939. phase2: {
  28940. height: math.unit(1.05, "feet"),
  28941. name: "Phase 2",
  28942. image: {
  28943. source: "./media/characters/withers/phase-2.svg",
  28944. extra: 1792/1090,
  28945. bottom: 0/1792
  28946. }
  28947. },
  28948. partyWipe: {
  28949. height: math.unit(1.1, "feet"),
  28950. name: "Party Wipe",
  28951. image: {
  28952. source: "./media/characters/withers/party-wipe.svg",
  28953. extra: 1864/1207,
  28954. bottom: 0/1864
  28955. }
  28956. },
  28957. },
  28958. [
  28959. {
  28960. name: "Macro",
  28961. height: math.unit(167, "feet"),
  28962. default: true
  28963. },
  28964. {
  28965. name: "Megamacro",
  28966. height: math.unit(15, "miles")
  28967. }
  28968. ]
  28969. ))
  28970. characterMakers.push(() => makeCharacter(
  28971. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28972. {
  28973. front: {
  28974. height: math.unit(6 + 7 / 12, "feet"),
  28975. weight: math.unit(250, "lb"),
  28976. name: "Front",
  28977. image: {
  28978. source: "./media/characters/nemoskii/front.svg",
  28979. extra: 2270 / 1734,
  28980. bottom: 86 / 2354
  28981. }
  28982. },
  28983. back: {
  28984. height: math.unit(6 + 7 / 12, "feet"),
  28985. weight: math.unit(250, "lb"),
  28986. name: "Back",
  28987. image: {
  28988. source: "./media/characters/nemoskii/back.svg",
  28989. extra: 1845 / 1788,
  28990. bottom: 10.5 / 1852
  28991. }
  28992. },
  28993. head: {
  28994. height: math.unit(1.31, "feet"),
  28995. name: "Head",
  28996. image: {
  28997. source: "./media/characters/nemoskii/head.svg"
  28998. }
  28999. },
  29000. },
  29001. [
  29002. {
  29003. name: "Micro",
  29004. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  29005. },
  29006. {
  29007. name: "Normal",
  29008. height: math.unit(6 + 7 / 12, "feet"),
  29009. default: true
  29010. },
  29011. {
  29012. name: "Macro",
  29013. height: math.unit((6 + 7 / 12) * 150, "feet")
  29014. },
  29015. {
  29016. name: "Macro+",
  29017. height: math.unit((6 + 7 / 12) * 500, "feet")
  29018. },
  29019. {
  29020. name: "Megamacro",
  29021. height: math.unit((6 + 7 / 12) * 100000, "feet")
  29022. },
  29023. ]
  29024. ))
  29025. characterMakers.push(() => makeCharacter(
  29026. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  29027. {
  29028. front: {
  29029. height: math.unit(1, "mile"),
  29030. weight: math.unit(265261.9, "lb"),
  29031. name: "Front",
  29032. image: {
  29033. source: "./media/characters/shui/front.svg",
  29034. extra: 1633 / 1564,
  29035. bottom: 91.5 / 1726
  29036. }
  29037. },
  29038. },
  29039. [
  29040. {
  29041. name: "Macro",
  29042. height: math.unit(1, "mile"),
  29043. default: true
  29044. },
  29045. ]
  29046. ))
  29047. characterMakers.push(() => makeCharacter(
  29048. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  29049. {
  29050. front: {
  29051. height: math.unit(12 + 6 / 12, "feet"),
  29052. weight: math.unit(1342, "lb"),
  29053. name: "Front",
  29054. image: {
  29055. source: "./media/characters/arokh-takakura/front.svg",
  29056. extra: 1089 / 1043,
  29057. bottom: 77.4 / 1176.7
  29058. }
  29059. },
  29060. back: {
  29061. height: math.unit(12 + 6 / 12, "feet"),
  29062. weight: math.unit(1342, "lb"),
  29063. name: "Back",
  29064. image: {
  29065. source: "./media/characters/arokh-takakura/back.svg",
  29066. extra: 1046 / 1019,
  29067. bottom: 102 / 1150
  29068. }
  29069. },
  29070. },
  29071. [
  29072. {
  29073. name: "Big",
  29074. height: math.unit(12 + 6 / 12, "feet"),
  29075. default: true
  29076. },
  29077. ]
  29078. ))
  29079. characterMakers.push(() => makeCharacter(
  29080. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  29081. {
  29082. front: {
  29083. height: math.unit(5 + 6 / 12, "feet"),
  29084. weight: math.unit(150, "lb"),
  29085. name: "Front",
  29086. image: {
  29087. source: "./media/characters/theo/front.svg",
  29088. extra: 1184 / 1131,
  29089. bottom: 7.4 / 1191
  29090. }
  29091. },
  29092. },
  29093. [
  29094. {
  29095. name: "Micro",
  29096. height: math.unit(5, "inches")
  29097. },
  29098. {
  29099. name: "Normal",
  29100. height: math.unit(5 + 6 / 12, "feet"),
  29101. default: true
  29102. },
  29103. ]
  29104. ))
  29105. characterMakers.push(() => makeCharacter(
  29106. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  29107. {
  29108. front: {
  29109. height: math.unit(5 + 9 / 12, "feet"),
  29110. weight: math.unit(130, "lb"),
  29111. name: "Front",
  29112. image: {
  29113. source: "./media/characters/cecelia-swift/front.svg",
  29114. extra: 502 / 484,
  29115. bottom: 23 / 523
  29116. }
  29117. },
  29118. back: {
  29119. height: math.unit(5 + 9 / 12, "feet"),
  29120. weight: math.unit(130, "lb"),
  29121. name: "Back",
  29122. image: {
  29123. source: "./media/characters/cecelia-swift/back.svg",
  29124. extra: 499 / 485,
  29125. bottom: 12 / 511
  29126. }
  29127. },
  29128. head: {
  29129. height: math.unit(0.90, "feet"),
  29130. name: "Head",
  29131. image: {
  29132. source: "./media/characters/cecelia-swift/head.svg"
  29133. }
  29134. },
  29135. rump: {
  29136. height: math.unit(1.75, "feet"),
  29137. name: "Rump",
  29138. image: {
  29139. source: "./media/characters/cecelia-swift/rump.svg"
  29140. }
  29141. },
  29142. },
  29143. [
  29144. {
  29145. name: "Normal",
  29146. height: math.unit(5 + 9 / 12, "feet"),
  29147. default: true
  29148. },
  29149. {
  29150. name: "Big",
  29151. height: math.unit(50, "feet")
  29152. },
  29153. {
  29154. name: "Macro",
  29155. height: math.unit(100, "feet")
  29156. },
  29157. {
  29158. name: "Macro+",
  29159. height: math.unit(500, "feet")
  29160. },
  29161. {
  29162. name: "Macro++",
  29163. height: math.unit(1000, "feet")
  29164. },
  29165. ]
  29166. ))
  29167. characterMakers.push(() => makeCharacter(
  29168. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  29169. {
  29170. front: {
  29171. height: math.unit(6, "feet"),
  29172. weight: math.unit(150, "lb"),
  29173. name: "Front",
  29174. image: {
  29175. source: "./media/characters/kaunan/front.svg",
  29176. extra: 2890 / 2523,
  29177. bottom: 49 / 2939
  29178. }
  29179. },
  29180. },
  29181. [
  29182. {
  29183. name: "Macro",
  29184. height: math.unit(150, "feet"),
  29185. default: true
  29186. },
  29187. ]
  29188. ))
  29189. characterMakers.push(() => makeCharacter(
  29190. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  29191. {
  29192. dressed: {
  29193. height: math.unit(175, "cm"),
  29194. weight: math.unit(60, "kg"),
  29195. name: "Dressed",
  29196. image: {
  29197. source: "./media/characters/fei/dressed.svg",
  29198. extra: 1402/1278,
  29199. bottom: 27/1429
  29200. }
  29201. },
  29202. nude: {
  29203. height: math.unit(175, "cm"),
  29204. weight: math.unit(60, "kg"),
  29205. name: "Nude",
  29206. image: {
  29207. source: "./media/characters/fei/nude.svg",
  29208. extra: 1402/1278,
  29209. bottom: 27/1429
  29210. }
  29211. },
  29212. heels: {
  29213. height: math.unit(0.466, "feet"),
  29214. name: "Heels",
  29215. image: {
  29216. source: "./media/characters/fei/heels.svg",
  29217. extra: 156/152,
  29218. bottom: 28/184
  29219. }
  29220. },
  29221. },
  29222. [
  29223. {
  29224. name: "Mortal",
  29225. height: math.unit(175, "cm")
  29226. },
  29227. {
  29228. name: "Normal",
  29229. height: math.unit(3500, "m")
  29230. },
  29231. {
  29232. name: "Stroll",
  29233. height: math.unit(18.4, "km"),
  29234. default: true
  29235. },
  29236. {
  29237. name: "Showoff",
  29238. height: math.unit(175, "km")
  29239. },
  29240. ]
  29241. ))
  29242. characterMakers.push(() => makeCharacter(
  29243. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  29244. {
  29245. front: {
  29246. height: math.unit(7, "feet"),
  29247. weight: math.unit(1000, "kg"),
  29248. name: "Front",
  29249. image: {
  29250. source: "./media/characters/edrax/front.svg",
  29251. extra: 2838 / 2550,
  29252. bottom: 130 / 2968
  29253. }
  29254. },
  29255. },
  29256. [
  29257. {
  29258. name: "Small",
  29259. height: math.unit(7, "feet")
  29260. },
  29261. {
  29262. name: "Normal",
  29263. height: math.unit(1500, "meters")
  29264. },
  29265. {
  29266. name: "Mega",
  29267. height: math.unit(12000000, "km"),
  29268. default: true
  29269. },
  29270. {
  29271. name: "Megamacro",
  29272. height: math.unit(10600000, "lightyears")
  29273. },
  29274. {
  29275. name: "Hypermacro",
  29276. height: math.unit(256, "yottameters")
  29277. },
  29278. ]
  29279. ))
  29280. characterMakers.push(() => makeCharacter(
  29281. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  29282. {
  29283. front: {
  29284. height: math.unit(10, "feet"),
  29285. weight: math.unit(750, "lb"),
  29286. name: "Front",
  29287. image: {
  29288. source: "./media/characters/clove/front.svg",
  29289. extra: 1918/1751,
  29290. bottom: 52/1970
  29291. }
  29292. },
  29293. back: {
  29294. height: math.unit(10, "feet"),
  29295. weight: math.unit(750, "lb"),
  29296. name: "Back",
  29297. image: {
  29298. source: "./media/characters/clove/back.svg",
  29299. extra: 1912/1747,
  29300. bottom: 50/1962
  29301. }
  29302. },
  29303. },
  29304. [
  29305. {
  29306. name: "Normal",
  29307. height: math.unit(10, "feet"),
  29308. default: true
  29309. },
  29310. ]
  29311. ))
  29312. characterMakers.push(() => makeCharacter(
  29313. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29314. {
  29315. front: {
  29316. height: math.unit(4, "feet"),
  29317. weight: math.unit(50, "lb"),
  29318. name: "Front",
  29319. image: {
  29320. source: "./media/characters/alex-rabbit/front.svg",
  29321. extra: 507 / 458,
  29322. bottom: 18.5 / 527
  29323. }
  29324. },
  29325. back: {
  29326. height: math.unit(4, "feet"),
  29327. weight: math.unit(50, "lb"),
  29328. name: "Back",
  29329. image: {
  29330. source: "./media/characters/alex-rabbit/back.svg",
  29331. extra: 502 / 460,
  29332. bottom: 18.9 / 521
  29333. }
  29334. },
  29335. },
  29336. [
  29337. {
  29338. name: "Normal",
  29339. height: math.unit(4, "feet"),
  29340. default: true
  29341. },
  29342. ]
  29343. ))
  29344. characterMakers.push(() => makeCharacter(
  29345. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  29346. {
  29347. front: {
  29348. height: math.unit(1 + 3 / 12, "feet"),
  29349. weight: math.unit(80, "lb"),
  29350. name: "Front",
  29351. image: {
  29352. source: "./media/characters/zander-rose/front.svg",
  29353. extra: 916 / 797,
  29354. bottom: 17 / 933
  29355. }
  29356. },
  29357. back: {
  29358. height: math.unit(1 + 3 / 12, "feet"),
  29359. weight: math.unit(80, "lb"),
  29360. name: "Back",
  29361. image: {
  29362. source: "./media/characters/zander-rose/back.svg",
  29363. extra: 903 / 779,
  29364. bottom: 31 / 934
  29365. }
  29366. },
  29367. },
  29368. [
  29369. {
  29370. name: "Normal",
  29371. height: math.unit(1 + 3 / 12, "feet"),
  29372. default: true
  29373. },
  29374. ]
  29375. ))
  29376. characterMakers.push(() => makeCharacter(
  29377. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  29378. {
  29379. anthro: {
  29380. height: math.unit(6, "feet"),
  29381. weight: math.unit(150, "lb"),
  29382. name: "Anthro",
  29383. image: {
  29384. source: "./media/characters/razz/anthro.svg",
  29385. extra: 1437 / 1343,
  29386. bottom: 48 / 1485
  29387. }
  29388. },
  29389. feral: {
  29390. height: math.unit(6, "feet"),
  29391. weight: math.unit(150, "lb"),
  29392. name: "Feral",
  29393. image: {
  29394. source: "./media/characters/razz/feral.svg",
  29395. extra: 2569 / 1385,
  29396. bottom: 95 / 2664
  29397. }
  29398. },
  29399. },
  29400. [
  29401. {
  29402. name: "Normal",
  29403. height: math.unit(6, "feet"),
  29404. default: true
  29405. },
  29406. ]
  29407. ))
  29408. characterMakers.push(() => makeCharacter(
  29409. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  29410. {
  29411. front: {
  29412. height: math.unit(9 + 4 / 12, "feet"),
  29413. weight: math.unit(500, "lb"),
  29414. name: "Front",
  29415. image: {
  29416. source: "./media/characters/morrigan/front.svg",
  29417. extra: 2707 / 2579,
  29418. bottom: 156 / 2863
  29419. }
  29420. },
  29421. },
  29422. [
  29423. {
  29424. name: "Normal",
  29425. height: math.unit(9 + 4 / 12, "feet"),
  29426. default: true
  29427. },
  29428. ]
  29429. ))
  29430. characterMakers.push(() => makeCharacter(
  29431. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  29432. {
  29433. front: {
  29434. height: math.unit(5, "stories"),
  29435. weight: math.unit(4000, "lb"),
  29436. name: "Front",
  29437. image: {
  29438. source: "./media/characters/jenene/front.svg",
  29439. extra: 1780 / 1710,
  29440. bottom: 57 / 1837
  29441. }
  29442. },
  29443. },
  29444. [
  29445. {
  29446. name: "Normal",
  29447. height: math.unit(5, "stories"),
  29448. default: true
  29449. },
  29450. ]
  29451. ))
  29452. characterMakers.push(() => makeCharacter(
  29453. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  29454. {
  29455. taurSfw: {
  29456. height: math.unit(10, "meters"),
  29457. weight: math.unit(17500, "kg"),
  29458. name: "Taur",
  29459. image: {
  29460. source: "./media/characters/faey/taur-sfw.svg",
  29461. extra: 1200 / 968,
  29462. bottom: 41 / 1241
  29463. }
  29464. },
  29465. chestmaw: {
  29466. height: math.unit(2.01, "meters"),
  29467. name: "Chestmaw",
  29468. image: {
  29469. source: "./media/characters/faey/chestmaw.svg"
  29470. }
  29471. },
  29472. foot: {
  29473. height: math.unit(2.43, "meters"),
  29474. name: "Foot",
  29475. image: {
  29476. source: "./media/characters/faey/foot.svg"
  29477. }
  29478. },
  29479. jaws: {
  29480. height: math.unit(1.66, "meters"),
  29481. name: "Jaws",
  29482. image: {
  29483. source: "./media/characters/faey/jaws.svg"
  29484. }
  29485. },
  29486. tongues: {
  29487. height: math.unit(2.01, "meters"),
  29488. name: "Tongues",
  29489. image: {
  29490. source: "./media/characters/faey/tongues.svg"
  29491. }
  29492. },
  29493. },
  29494. [
  29495. {
  29496. name: "Small",
  29497. height: math.unit(10, "meters"),
  29498. default: true
  29499. },
  29500. {
  29501. name: "Big",
  29502. height: math.unit(500000, "km")
  29503. },
  29504. ]
  29505. ))
  29506. characterMakers.push(() => makeCharacter(
  29507. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29508. {
  29509. front: {
  29510. height: math.unit(7, "feet"),
  29511. weight: math.unit(275, "lb"),
  29512. name: "Front",
  29513. image: {
  29514. source: "./media/characters/roku/front.svg",
  29515. extra: 903 / 878,
  29516. bottom: 37 / 940
  29517. }
  29518. },
  29519. },
  29520. [
  29521. {
  29522. name: "Normal",
  29523. height: math.unit(7, "feet"),
  29524. default: true
  29525. },
  29526. {
  29527. name: "Macro",
  29528. height: math.unit(500, "feet")
  29529. },
  29530. {
  29531. name: "Megamacro",
  29532. height: math.unit(200, "miles")
  29533. },
  29534. ]
  29535. ))
  29536. characterMakers.push(() => makeCharacter(
  29537. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29538. {
  29539. front: {
  29540. height: math.unit(6 + 2 / 12, "feet"),
  29541. weight: math.unit(150, "lb"),
  29542. name: "Front",
  29543. image: {
  29544. source: "./media/characters/lira/front.svg",
  29545. extra: 1727 / 1605,
  29546. bottom: 26 / 1753
  29547. }
  29548. },
  29549. back: {
  29550. height: math.unit(6 + 2 / 12, "feet"),
  29551. weight: math.unit(150, "lb"),
  29552. name: "Back",
  29553. image: {
  29554. source: "./media/characters/lira/back.svg",
  29555. extra: 1713/1621,
  29556. bottom: 20/1733
  29557. }
  29558. },
  29559. hand: {
  29560. height: math.unit(0.75, "feet"),
  29561. name: "Hand",
  29562. image: {
  29563. source: "./media/characters/lira/hand.svg"
  29564. }
  29565. },
  29566. maw: {
  29567. height: math.unit(0.65, "feet"),
  29568. name: "Maw",
  29569. image: {
  29570. source: "./media/characters/lira/maw.svg"
  29571. }
  29572. },
  29573. pawDigi: {
  29574. height: math.unit(1.6, "feet"),
  29575. name: "Paw Digi",
  29576. image: {
  29577. source: "./media/characters/lira/paw-digi.svg"
  29578. }
  29579. },
  29580. pawPlanti: {
  29581. height: math.unit(1.4, "feet"),
  29582. name: "Paw Planti",
  29583. image: {
  29584. source: "./media/characters/lira/paw-planti.svg"
  29585. }
  29586. },
  29587. },
  29588. [
  29589. {
  29590. name: "Normal",
  29591. height: math.unit(6 + 2 / 12, "feet"),
  29592. default: true
  29593. },
  29594. {
  29595. name: "Macro",
  29596. height: math.unit(100, "feet")
  29597. },
  29598. {
  29599. name: "Macro²",
  29600. height: math.unit(1600, "feet")
  29601. },
  29602. {
  29603. name: "Planetary",
  29604. height: math.unit(20, "earths")
  29605. },
  29606. ]
  29607. ))
  29608. characterMakers.push(() => makeCharacter(
  29609. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29610. {
  29611. front: {
  29612. height: math.unit(6, "feet"),
  29613. weight: math.unit(150, "lb"),
  29614. name: "Front",
  29615. image: {
  29616. source: "./media/characters/hadjet/front.svg",
  29617. extra: 1480 / 1346,
  29618. bottom: 26 / 1506
  29619. }
  29620. },
  29621. frontNsfw: {
  29622. height: math.unit(6, "feet"),
  29623. weight: math.unit(150, "lb"),
  29624. name: "Front (NSFW)",
  29625. image: {
  29626. source: "./media/characters/hadjet/front-nsfw.svg",
  29627. extra: 1440 / 1358,
  29628. bottom: 52 / 1492
  29629. }
  29630. },
  29631. },
  29632. [
  29633. {
  29634. name: "Macro",
  29635. height: math.unit(10, "stories"),
  29636. default: true
  29637. },
  29638. {
  29639. name: "Megamacro",
  29640. height: math.unit(1.5, "miles")
  29641. },
  29642. {
  29643. name: "Megamacro+",
  29644. height: math.unit(5, "miles")
  29645. },
  29646. ]
  29647. ))
  29648. characterMakers.push(() => makeCharacter(
  29649. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29650. {
  29651. side: {
  29652. height: math.unit(106, "feet"),
  29653. weight: math.unit(500, "tonnes"),
  29654. name: "Side",
  29655. image: {
  29656. source: "./media/characters/kodran/side.svg",
  29657. extra: 553 / 480,
  29658. bottom: 33 / 586
  29659. }
  29660. },
  29661. front: {
  29662. height: math.unit(132, "feet"),
  29663. weight: math.unit(500, "tonnes"),
  29664. name: "Front",
  29665. image: {
  29666. source: "./media/characters/kodran/front.svg",
  29667. extra: 667 / 643,
  29668. bottom: 42 / 709
  29669. }
  29670. },
  29671. flying: {
  29672. height: math.unit(350, "feet"),
  29673. weight: math.unit(500, "tonnes"),
  29674. name: "Flying",
  29675. image: {
  29676. source: "./media/characters/kodran/flying.svg"
  29677. }
  29678. },
  29679. foot: {
  29680. height: math.unit(33, "feet"),
  29681. name: "Foot",
  29682. image: {
  29683. source: "./media/characters/kodran/foot.svg"
  29684. }
  29685. },
  29686. footFront: {
  29687. height: math.unit(19, "feet"),
  29688. name: "Foot (Front)",
  29689. image: {
  29690. source: "./media/characters/kodran/foot-front.svg",
  29691. extra: 261 / 261,
  29692. bottom: 91 / 352
  29693. }
  29694. },
  29695. headFront: {
  29696. height: math.unit(53, "feet"),
  29697. name: "Head (Front)",
  29698. image: {
  29699. source: "./media/characters/kodran/head-front.svg"
  29700. }
  29701. },
  29702. headSide: {
  29703. height: math.unit(65, "feet"),
  29704. name: "Head (Side)",
  29705. image: {
  29706. source: "./media/characters/kodran/head-side.svg"
  29707. }
  29708. },
  29709. throat: {
  29710. height: math.unit(79, "feet"),
  29711. name: "Throat",
  29712. image: {
  29713. source: "./media/characters/kodran/throat.svg"
  29714. }
  29715. },
  29716. },
  29717. [
  29718. {
  29719. name: "Large",
  29720. height: math.unit(106, "feet"),
  29721. default: true
  29722. },
  29723. ]
  29724. ))
  29725. characterMakers.push(() => makeCharacter(
  29726. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29727. {
  29728. side: {
  29729. height: math.unit(11, "feet"),
  29730. weight: math.unit(150, "lb"),
  29731. name: "Side",
  29732. image: {
  29733. source: "./media/characters/pyxaron/side.svg",
  29734. extra: 305 / 195,
  29735. bottom: 17 / 322
  29736. }
  29737. },
  29738. },
  29739. [
  29740. {
  29741. name: "Normal",
  29742. height: math.unit(11, "feet"),
  29743. default: true
  29744. },
  29745. ]
  29746. ))
  29747. characterMakers.push(() => makeCharacter(
  29748. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29749. {
  29750. front: {
  29751. height: math.unit(6, "feet"),
  29752. weight: math.unit(150, "lb"),
  29753. name: "Front",
  29754. image: {
  29755. source: "./media/characters/meep/front.svg",
  29756. extra: 88 / 80,
  29757. bottom: 6 / 94
  29758. }
  29759. },
  29760. },
  29761. [
  29762. {
  29763. name: "Fun Sized",
  29764. height: math.unit(2, "inches"),
  29765. default: true
  29766. },
  29767. {
  29768. name: "Friend Sized",
  29769. height: math.unit(8, "inches")
  29770. },
  29771. ]
  29772. ))
  29773. characterMakers.push(() => makeCharacter(
  29774. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29775. {
  29776. front: {
  29777. height: math.unit(15, "feet"),
  29778. weight: math.unit(2500, "lb"),
  29779. name: "Front",
  29780. image: {
  29781. source: "./media/characters/holly-rabbit/front.svg",
  29782. extra: 1433 / 1233,
  29783. bottom: 125 / 1558
  29784. }
  29785. },
  29786. dick: {
  29787. height: math.unit(4.6, "feet"),
  29788. name: "Dick",
  29789. image: {
  29790. source: "./media/characters/holly-rabbit/dick.svg"
  29791. }
  29792. },
  29793. },
  29794. [
  29795. {
  29796. name: "Normal",
  29797. height: math.unit(15, "feet"),
  29798. default: true
  29799. },
  29800. {
  29801. name: "Macro",
  29802. height: math.unit(250, "feet")
  29803. },
  29804. {
  29805. name: "Macro+",
  29806. height: math.unit(2500, "feet")
  29807. },
  29808. ]
  29809. ))
  29810. characterMakers.push(() => makeCharacter(
  29811. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29812. {
  29813. front: {
  29814. height: math.unit(3.02, "meters"),
  29815. weight: math.unit(500, "kg"),
  29816. name: "Front",
  29817. image: {
  29818. source: "./media/characters/drena/front.svg",
  29819. extra: 282 / 243,
  29820. bottom: 8 / 290
  29821. }
  29822. },
  29823. side: {
  29824. height: math.unit(3.02, "meters"),
  29825. weight: math.unit(500, "kg"),
  29826. name: "Side",
  29827. image: {
  29828. source: "./media/characters/drena/side.svg",
  29829. extra: 280 / 245,
  29830. bottom: 10 / 290
  29831. }
  29832. },
  29833. back: {
  29834. height: math.unit(3.02, "meters"),
  29835. weight: math.unit(500, "kg"),
  29836. name: "Back",
  29837. image: {
  29838. source: "./media/characters/drena/back.svg",
  29839. extra: 278 / 243,
  29840. bottom: 2 / 280
  29841. }
  29842. },
  29843. foot: {
  29844. height: math.unit(0.75, "meters"),
  29845. name: "Foot",
  29846. image: {
  29847. source: "./media/characters/drena/foot.svg"
  29848. }
  29849. },
  29850. maw: {
  29851. height: math.unit(0.82, "meters"),
  29852. name: "Maw",
  29853. image: {
  29854. source: "./media/characters/drena/maw.svg"
  29855. }
  29856. },
  29857. eating: {
  29858. height: math.unit(0.75, "meters"),
  29859. name: "Eating",
  29860. image: {
  29861. source: "./media/characters/drena/eating.svg"
  29862. }
  29863. },
  29864. rump: {
  29865. height: math.unit(0.93, "meters"),
  29866. name: "Rump",
  29867. image: {
  29868. source: "./media/characters/drena/rump.svg"
  29869. }
  29870. },
  29871. },
  29872. [
  29873. {
  29874. name: "Normal",
  29875. height: math.unit(3.02, "meters"),
  29876. default: true
  29877. },
  29878. ]
  29879. ))
  29880. characterMakers.push(() => makeCharacter(
  29881. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29882. {
  29883. front: {
  29884. height: math.unit(6 + 4 / 12, "feet"),
  29885. weight: math.unit(250, "lb"),
  29886. name: "Front",
  29887. image: {
  29888. source: "./media/characters/remmyzilla/front.svg",
  29889. extra: 4033 / 3588,
  29890. bottom: 123 / 4156
  29891. }
  29892. },
  29893. back: {
  29894. height: math.unit(6 + 4 / 12, "feet"),
  29895. weight: math.unit(250, "lb"),
  29896. name: "Back",
  29897. image: {
  29898. source: "./media/characters/remmyzilla/back.svg",
  29899. extra: 2687 / 2555,
  29900. bottom: 48 / 2735
  29901. }
  29902. },
  29903. paw: {
  29904. height: math.unit(1.73, "feet"),
  29905. name: "Paw",
  29906. image: {
  29907. source: "./media/characters/remmyzilla/paw.svg"
  29908. },
  29909. extraAttributes: {
  29910. "toeSize": {
  29911. name: "Toe Size",
  29912. power: 2,
  29913. type: "area",
  29914. base: math.unit(0.0035, "m^2")
  29915. },
  29916. "padSize": {
  29917. name: "Pad Size",
  29918. power: 2,
  29919. type: "area",
  29920. base: math.unit(0.015, "m^2")
  29921. },
  29922. "pawsize": {
  29923. name: "Paw Size",
  29924. power: 2,
  29925. type: "area",
  29926. base: math.unit(0.072, "m^2")
  29927. },
  29928. }
  29929. },
  29930. maw: {
  29931. height: math.unit(1.73, "feet"),
  29932. name: "Maw",
  29933. image: {
  29934. source: "./media/characters/remmyzilla/maw.svg"
  29935. }
  29936. },
  29937. },
  29938. [
  29939. {
  29940. name: "Normal",
  29941. height: math.unit(6 + 4 / 12, "feet")
  29942. },
  29943. {
  29944. name: "Minimacro",
  29945. height: math.unit(12 + 8 / 12, "feet")
  29946. },
  29947. {
  29948. name: "Normal",
  29949. height: math.unit(640, "feet"),
  29950. default: true
  29951. },
  29952. {
  29953. name: "Megamacro",
  29954. height: math.unit(6400, "feet")
  29955. },
  29956. {
  29957. name: "Gigamacro",
  29958. height: math.unit(64000, "miles")
  29959. },
  29960. ]
  29961. ))
  29962. characterMakers.push(() => makeCharacter(
  29963. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29964. {
  29965. front: {
  29966. height: math.unit(2.5, "meters"),
  29967. weight: math.unit(300, "lb"),
  29968. name: "Front",
  29969. image: {
  29970. source: "./media/characters/lawrence/front.svg",
  29971. extra: 357 / 335,
  29972. bottom: 30 / 387
  29973. }
  29974. },
  29975. back: {
  29976. height: math.unit(2.5, "meters"),
  29977. weight: math.unit(300, "lb"),
  29978. name: "Back",
  29979. image: {
  29980. source: "./media/characters/lawrence/back.svg",
  29981. extra: 357 / 338,
  29982. bottom: 16 / 373
  29983. }
  29984. },
  29985. head: {
  29986. height: math.unit(0.9, "meter"),
  29987. name: "Head",
  29988. image: {
  29989. source: "./media/characters/lawrence/head.svg"
  29990. }
  29991. },
  29992. maw: {
  29993. height: math.unit(0.7, "meter"),
  29994. name: "Maw",
  29995. image: {
  29996. source: "./media/characters/lawrence/maw.svg"
  29997. }
  29998. },
  29999. footBottom: {
  30000. height: math.unit(0.5, "meter"),
  30001. name: "Foot (Bottom)",
  30002. image: {
  30003. source: "./media/characters/lawrence/foot-bottom.svg"
  30004. }
  30005. },
  30006. footTop: {
  30007. height: math.unit(0.5, "meter"),
  30008. name: "Foot (Top)",
  30009. image: {
  30010. source: "./media/characters/lawrence/foot-top.svg"
  30011. }
  30012. },
  30013. },
  30014. [
  30015. {
  30016. name: "Normal",
  30017. height: math.unit(2.5, "meters"),
  30018. default: true
  30019. },
  30020. {
  30021. name: "Macro",
  30022. height: math.unit(95, "meters")
  30023. },
  30024. {
  30025. name: "Megamacro",
  30026. height: math.unit(150, "km")
  30027. },
  30028. ]
  30029. ))
  30030. characterMakers.push(() => makeCharacter(
  30031. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  30032. {
  30033. front: {
  30034. height: math.unit(4.2, "meters"),
  30035. name: "Front",
  30036. image: {
  30037. source: "./media/characters/sydney/front.svg",
  30038. extra: 1323 / 1277,
  30039. bottom: 111 / 1434
  30040. }
  30041. },
  30042. },
  30043. [
  30044. {
  30045. name: "Normal",
  30046. height: math.unit(4.2, "meters"),
  30047. default: true
  30048. },
  30049. ]
  30050. ))
  30051. characterMakers.push(() => makeCharacter(
  30052. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  30053. {
  30054. back: {
  30055. height: math.unit(201, "feet"),
  30056. name: "Back",
  30057. image: {
  30058. source: "./media/characters/jessica/back.svg",
  30059. extra: 273 / 259,
  30060. bottom: 7 / 280
  30061. }
  30062. },
  30063. },
  30064. [
  30065. {
  30066. name: "Normal",
  30067. height: math.unit(201, "feet"),
  30068. default: true
  30069. },
  30070. {
  30071. name: "Megamacro",
  30072. height: math.unit(8, "miles")
  30073. },
  30074. ]
  30075. ))
  30076. characterMakers.push(() => makeCharacter(
  30077. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  30078. {
  30079. side: {
  30080. height: math.unit(5.6, "m"),
  30081. weight: math.unit(8000, "kg"),
  30082. name: "Side",
  30083. image: {
  30084. source: "./media/characters/victoria/side.svg",
  30085. extra: 1542/1229,
  30086. bottom: 124/1666
  30087. }
  30088. },
  30089. maw: {
  30090. height: math.unit(7.14, "feet"),
  30091. name: "Maw",
  30092. image: {
  30093. source: "./media/characters/victoria/maw.svg"
  30094. }
  30095. },
  30096. },
  30097. [
  30098. {
  30099. name: "Normal",
  30100. height: math.unit(5.6, "m"),
  30101. default: true
  30102. },
  30103. ]
  30104. ))
  30105. characterMakers.push(() => makeCharacter(
  30106. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  30107. {
  30108. front: {
  30109. height: math.unit(5 + 6 / 12, "feet"),
  30110. name: "Front",
  30111. image: {
  30112. source: "./media/characters/cat/front.svg",
  30113. extra: 1449/1295,
  30114. bottom: 34/1483
  30115. },
  30116. form: "cat",
  30117. default: true
  30118. },
  30119. back: {
  30120. height: math.unit(5 + 6 / 12, "feet"),
  30121. name: "Back",
  30122. image: {
  30123. source: "./media/characters/cat/back.svg",
  30124. extra: 1466/1301,
  30125. bottom: 19/1485
  30126. },
  30127. form: "cat"
  30128. },
  30129. taur: {
  30130. height: math.unit(7, "feet"),
  30131. name: "Taur",
  30132. image: {
  30133. source: "./media/characters/cat/taur.svg",
  30134. extra: 1389/1233,
  30135. bottom: 83/1472
  30136. },
  30137. form: "taur",
  30138. default: true
  30139. },
  30140. lucarioFront: {
  30141. height: math.unit(4, "feet"),
  30142. name: "Lucario (Front)",
  30143. image: {
  30144. source: "./media/characters/cat/lucario-front.svg",
  30145. extra: 1149/1019,
  30146. bottom: 84/1233
  30147. },
  30148. form: "lucario",
  30149. default: true
  30150. },
  30151. lucarioBack: {
  30152. height: math.unit(4, "feet"),
  30153. name: "Lucario (Back)",
  30154. image: {
  30155. source: "./media/characters/cat/lucario-back.svg",
  30156. extra: 1190/1059,
  30157. bottom: 33/1223
  30158. },
  30159. form: "lucario"
  30160. },
  30161. megaLucario: {
  30162. height: math.unit(4, "feet"),
  30163. name: "Mega Lucario",
  30164. image: {
  30165. source: "./media/characters/cat/mega-lucario.svg",
  30166. extra: 1515 / 1319,
  30167. bottom: 63 / 1578
  30168. },
  30169. form: "lucario"
  30170. },
  30171. nickit: {
  30172. height: math.unit(2, "feet"),
  30173. name: "Nickit",
  30174. image: {
  30175. source: "./media/characters/cat/nickit.svg",
  30176. extra: 1980 / 1585,
  30177. bottom: 102 / 2082
  30178. },
  30179. form: "nickit",
  30180. default: true
  30181. },
  30182. lopunnyFront: {
  30183. height: math.unit(5, "feet"),
  30184. name: "Lopunny (Front)",
  30185. image: {
  30186. source: "./media/characters/cat/lopunny-front.svg",
  30187. extra: 1782 / 1469,
  30188. bottom: 38 / 1820
  30189. },
  30190. form: "lopunny",
  30191. default: true
  30192. },
  30193. lopunnyBack: {
  30194. height: math.unit(5, "feet"),
  30195. name: "Lopunny (Back)",
  30196. image: {
  30197. source: "./media/characters/cat/lopunny-back.svg",
  30198. extra: 1660 / 1490,
  30199. bottom: 25 / 1685
  30200. },
  30201. form: "lopunny"
  30202. },
  30203. },
  30204. [
  30205. {
  30206. name: "Really small",
  30207. height: math.unit(1, "nm")
  30208. },
  30209. {
  30210. name: "Micro",
  30211. height: math.unit(5, "inches")
  30212. },
  30213. {
  30214. name: "Normal",
  30215. height: math.unit(5 + 6 / 12, "feet"),
  30216. default: true
  30217. },
  30218. {
  30219. name: "Macro",
  30220. height: math.unit(50, "feet")
  30221. },
  30222. {
  30223. name: "Macro+",
  30224. height: math.unit(150, "feet")
  30225. },
  30226. {
  30227. name: "Megamacro",
  30228. height: math.unit(100, "miles")
  30229. },
  30230. ]
  30231. ))
  30232. characterMakers.push(() => makeCharacter(
  30233. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  30234. {
  30235. front: {
  30236. height: math.unit(63.4, "meters"),
  30237. weight: math.unit(3.28349e+6, "kilograms"),
  30238. name: "Front",
  30239. image: {
  30240. source: "./media/characters/kirina-violet/front.svg",
  30241. extra: 2812 / 2725,
  30242. bottom: 0 / 2812
  30243. }
  30244. },
  30245. back: {
  30246. height: math.unit(63.4, "meters"),
  30247. weight: math.unit(3.28349e+6, "kilograms"),
  30248. name: "Back",
  30249. image: {
  30250. source: "./media/characters/kirina-violet/back.svg",
  30251. extra: 2812 / 2725,
  30252. bottom: 0 / 2812
  30253. }
  30254. },
  30255. mouth: {
  30256. height: math.unit(4.35, "meters"),
  30257. name: "Mouth",
  30258. image: {
  30259. source: "./media/characters/kirina-violet/mouth.svg"
  30260. }
  30261. },
  30262. paw: {
  30263. height: math.unit(5.6, "meters"),
  30264. name: "Paw",
  30265. image: {
  30266. source: "./media/characters/kirina-violet/paw.svg"
  30267. }
  30268. },
  30269. tail: {
  30270. height: math.unit(18, "meters"),
  30271. name: "Tail",
  30272. image: {
  30273. source: "./media/characters/kirina-violet/tail.svg"
  30274. }
  30275. },
  30276. },
  30277. [
  30278. {
  30279. name: "Macro",
  30280. height: math.unit(63.4, "meters"),
  30281. default: true
  30282. },
  30283. ]
  30284. ))
  30285. characterMakers.push(() => makeCharacter(
  30286. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  30287. {
  30288. front: {
  30289. height: math.unit(75, "feet"),
  30290. name: "Front",
  30291. image: {
  30292. source: "./media/characters/cat-gigachu/front.svg",
  30293. extra: 1239/1027,
  30294. bottom: 32/1271
  30295. }
  30296. },
  30297. back: {
  30298. height: math.unit(75, "feet"),
  30299. name: "Back",
  30300. image: {
  30301. source: "./media/characters/cat-gigachu/back.svg",
  30302. extra: 1229/1030,
  30303. bottom: 9/1238
  30304. }
  30305. },
  30306. },
  30307. [
  30308. {
  30309. name: "Dynamax",
  30310. height: math.unit(75, "feet"),
  30311. default: true
  30312. },
  30313. ]
  30314. ))
  30315. characterMakers.push(() => makeCharacter(
  30316. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  30317. {
  30318. front: {
  30319. height: math.unit(6, "feet"),
  30320. weight: math.unit(150, "lb"),
  30321. name: "Front",
  30322. image: {
  30323. source: "./media/characters/sfaiyan/front.svg",
  30324. extra: 999 / 978,
  30325. bottom: 5 / 1004
  30326. }
  30327. },
  30328. },
  30329. [
  30330. {
  30331. name: "Normal",
  30332. height: math.unit(1.82, "meters")
  30333. },
  30334. {
  30335. name: "Giant",
  30336. height: math.unit(2.27, "km"),
  30337. default: true
  30338. },
  30339. ]
  30340. ))
  30341. characterMakers.push(() => makeCharacter(
  30342. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  30343. {
  30344. front: {
  30345. height: math.unit(179, "cm"),
  30346. weight: math.unit(100, "kg"),
  30347. name: "Front",
  30348. image: {
  30349. source: "./media/characters/raunehkeli/front.svg",
  30350. extra: 1934 / 1926,
  30351. bottom: 0 / 1934
  30352. }
  30353. },
  30354. },
  30355. [
  30356. {
  30357. name: "Normal",
  30358. height: math.unit(179, "cm")
  30359. },
  30360. {
  30361. name: "Maximum",
  30362. height: math.unit(575, "meters"),
  30363. default: true
  30364. },
  30365. ]
  30366. ))
  30367. characterMakers.push(() => makeCharacter(
  30368. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  30369. {
  30370. front: {
  30371. height: math.unit(6, "feet"),
  30372. weight: math.unit(150, "lb"),
  30373. name: "Front",
  30374. image: {
  30375. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  30376. extra: 2625 / 2518,
  30377. bottom: 60 / 2685
  30378. }
  30379. },
  30380. },
  30381. [
  30382. {
  30383. name: "Normal",
  30384. height: math.unit(6 + 2 / 12, "feet")
  30385. },
  30386. {
  30387. name: "Macro",
  30388. height: math.unit(1180, "feet"),
  30389. default: true
  30390. },
  30391. ]
  30392. ))
  30393. characterMakers.push(() => makeCharacter(
  30394. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  30395. {
  30396. front: {
  30397. height: math.unit(5 + 6 / 12, "feet"),
  30398. weight: math.unit(108, "lb"),
  30399. name: "Front",
  30400. image: {
  30401. source: "./media/characters/lilith-zott/front.svg",
  30402. extra: 2510 / 2238,
  30403. bottom: 100 / 2610
  30404. }
  30405. },
  30406. frontDressed: {
  30407. height: math.unit(5 + 6 / 12, "feet"),
  30408. weight: math.unit(108, "lb"),
  30409. name: "Front (Dressed)",
  30410. image: {
  30411. source: "./media/characters/lilith-zott/front-dressed.svg",
  30412. extra: 2510 / 2238,
  30413. bottom: 100 / 2610
  30414. }
  30415. },
  30416. },
  30417. [
  30418. {
  30419. name: "Normal",
  30420. height: math.unit(5 + 6 / 12, "feet")
  30421. },
  30422. {
  30423. name: "Macro",
  30424. height: math.unit(1030, "feet"),
  30425. default: true
  30426. },
  30427. ]
  30428. ))
  30429. characterMakers.push(() => makeCharacter(
  30430. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  30431. {
  30432. front: {
  30433. height: math.unit(6, "feet"),
  30434. weight: math.unit(150, "lb"),
  30435. name: "Front",
  30436. image: {
  30437. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  30438. extra: 2567 / 2435,
  30439. bottom: 39 / 2606
  30440. }
  30441. },
  30442. frontSuper: {
  30443. height: math.unit(6, "feet"),
  30444. name: "Front (Super)",
  30445. image: {
  30446. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  30447. extra: 2567 / 2435,
  30448. bottom: 39 / 2606
  30449. }
  30450. },
  30451. },
  30452. [
  30453. {
  30454. name: "Normal",
  30455. height: math.unit(5 + 10 / 12, "feet")
  30456. },
  30457. {
  30458. name: "Macro",
  30459. height: math.unit(1100, "feet"),
  30460. default: true
  30461. },
  30462. ]
  30463. ))
  30464. characterMakers.push(() => makeCharacter(
  30465. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  30466. {
  30467. front: {
  30468. height: math.unit(100, "miles"),
  30469. name: "Front",
  30470. image: {
  30471. source: "./media/characters/sona/front.svg",
  30472. extra: 2433 / 2201,
  30473. bottom: 53 / 2486
  30474. }
  30475. },
  30476. foot: {
  30477. height: math.unit(16.1, "miles"),
  30478. name: "Foot",
  30479. image: {
  30480. source: "./media/characters/sona/foot.svg"
  30481. }
  30482. },
  30483. },
  30484. [
  30485. {
  30486. name: "Macro",
  30487. height: math.unit(100, "miles"),
  30488. default: true
  30489. },
  30490. ]
  30491. ))
  30492. characterMakers.push(() => makeCharacter(
  30493. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  30494. {
  30495. front: {
  30496. height: math.unit(6, "feet"),
  30497. weight: math.unit(150, "lb"),
  30498. name: "Front",
  30499. image: {
  30500. source: "./media/characters/bailey/front.svg",
  30501. extra: 1778 / 1724,
  30502. bottom: 30 / 1808
  30503. }
  30504. },
  30505. },
  30506. [
  30507. {
  30508. name: "Micro",
  30509. height: math.unit(4, "inches")
  30510. },
  30511. {
  30512. name: "Normal",
  30513. height: math.unit(5 + 5 / 12, "feet"),
  30514. default: true
  30515. },
  30516. {
  30517. name: "Macro",
  30518. height: math.unit(250, "feet")
  30519. },
  30520. {
  30521. name: "Megamacro",
  30522. height: math.unit(100, "miles")
  30523. },
  30524. ]
  30525. ))
  30526. characterMakers.push(() => makeCharacter(
  30527. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30528. {
  30529. front: {
  30530. height: math.unit(5 + 2 / 12, "feet"),
  30531. weight: math.unit(120, "lb"),
  30532. name: "Front",
  30533. image: {
  30534. source: "./media/characters/snaps/front.svg",
  30535. extra: 2370 / 2177,
  30536. bottom: 48 / 2418
  30537. }
  30538. },
  30539. back: {
  30540. height: math.unit(5 + 2 / 12, "feet"),
  30541. weight: math.unit(120, "lb"),
  30542. name: "Back",
  30543. image: {
  30544. source: "./media/characters/snaps/back.svg",
  30545. extra: 2408 / 2258,
  30546. bottom: 15 / 2423
  30547. }
  30548. },
  30549. },
  30550. [
  30551. {
  30552. name: "Micro",
  30553. height: math.unit(9, "inches")
  30554. },
  30555. {
  30556. name: "Normal",
  30557. height: math.unit(5 + 2 / 12, "feet"),
  30558. default: true
  30559. },
  30560. {
  30561. name: "Mini Macro",
  30562. height: math.unit(10, "feet")
  30563. },
  30564. ]
  30565. ))
  30566. characterMakers.push(() => makeCharacter(
  30567. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30568. {
  30569. front: {
  30570. height: math.unit(1.8, "meters"),
  30571. weight: math.unit(85, "kg"),
  30572. name: "Front",
  30573. image: {
  30574. source: "./media/characters/azteck/front.svg",
  30575. extra: 2815 / 2625,
  30576. bottom: 89 / 2904
  30577. }
  30578. },
  30579. back: {
  30580. height: math.unit(1.8, "meters"),
  30581. weight: math.unit(85, "kg"),
  30582. name: "Back",
  30583. image: {
  30584. source: "./media/characters/azteck/back.svg",
  30585. extra: 2856 / 2648,
  30586. bottom: 85 / 2941
  30587. }
  30588. },
  30589. frontDressed: {
  30590. height: math.unit(1.8, "meters"),
  30591. weight: math.unit(85, "kg"),
  30592. name: "Front (Dressed)",
  30593. image: {
  30594. source: "./media/characters/azteck/front-dressed.svg",
  30595. extra: 2147 / 2003,
  30596. bottom: 68 / 2215
  30597. }
  30598. },
  30599. head: {
  30600. height: math.unit(0.47, "meters"),
  30601. weight: math.unit(85, "kg"),
  30602. name: "Head",
  30603. image: {
  30604. source: "./media/characters/azteck/head.svg"
  30605. }
  30606. },
  30607. },
  30608. [
  30609. {
  30610. name: "Bite sized",
  30611. height: math.unit(16, "cm")
  30612. },
  30613. {
  30614. name: "Normal",
  30615. height: math.unit(1.8, "meters"),
  30616. default: true
  30617. },
  30618. ]
  30619. ))
  30620. characterMakers.push(() => makeCharacter(
  30621. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30622. {
  30623. front: {
  30624. height: math.unit(6, "feet"),
  30625. weight: math.unit(150, "lb"),
  30626. name: "Front",
  30627. image: {
  30628. source: "./media/characters/pidge/front.svg",
  30629. extra: 1936/1820,
  30630. bottom: 0/1936
  30631. }
  30632. },
  30633. back: {
  30634. height: math.unit(6, "feet"),
  30635. weight: math.unit(150, "lb"),
  30636. name: "Back",
  30637. image: {
  30638. source: "./media/characters/pidge/back.svg",
  30639. extra: 1938/1843,
  30640. bottom: 0/1938
  30641. }
  30642. },
  30643. casual: {
  30644. height: math.unit(6, "feet"),
  30645. weight: math.unit(150, "lb"),
  30646. name: "Casual",
  30647. image: {
  30648. source: "./media/characters/pidge/casual.svg",
  30649. extra: 1936/1820,
  30650. bottom: 0/1936
  30651. }
  30652. },
  30653. tech: {
  30654. height: math.unit(6, "feet"),
  30655. weight: math.unit(150, "lb"),
  30656. name: "Tech",
  30657. image: {
  30658. source: "./media/characters/pidge/tech.svg",
  30659. extra: 1802/1682,
  30660. bottom: 0/1802
  30661. }
  30662. },
  30663. head: {
  30664. height: math.unit(1.61, "feet"),
  30665. name: "Head",
  30666. image: {
  30667. source: "./media/characters/pidge/head.svg"
  30668. }
  30669. },
  30670. collar: {
  30671. height: math.unit(0.82, "feet"),
  30672. name: "Collar",
  30673. image: {
  30674. source: "./media/characters/pidge/collar.svg"
  30675. }
  30676. },
  30677. },
  30678. [
  30679. {
  30680. name: "Macro",
  30681. height: math.unit(2, "mile"),
  30682. default: true
  30683. },
  30684. {
  30685. name: "PUPPY",
  30686. height: math.unit(20, "miles")
  30687. },
  30688. ]
  30689. ))
  30690. characterMakers.push(() => makeCharacter(
  30691. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30692. {
  30693. front: {
  30694. height: math.unit(6, "feet"),
  30695. weight: math.unit(150, "lb"),
  30696. name: "Front",
  30697. image: {
  30698. source: "./media/characters/en/front.svg",
  30699. extra: 1697 / 1563,
  30700. bottom: 103 / 1800
  30701. }
  30702. },
  30703. back: {
  30704. height: math.unit(6, "feet"),
  30705. weight: math.unit(150, "lb"),
  30706. name: "Back",
  30707. image: {
  30708. source: "./media/characters/en/back.svg",
  30709. extra: 1700 / 1570,
  30710. bottom: 51 / 1751
  30711. }
  30712. },
  30713. frontDressed: {
  30714. height: math.unit(6, "feet"),
  30715. weight: math.unit(150, "lb"),
  30716. name: "Front (Dressed)",
  30717. image: {
  30718. source: "./media/characters/en/front-dressed.svg",
  30719. extra: 1697 / 1563,
  30720. bottom: 103 / 1800
  30721. }
  30722. },
  30723. backDressed: {
  30724. height: math.unit(6, "feet"),
  30725. weight: math.unit(150, "lb"),
  30726. name: "Back (Dressed)",
  30727. image: {
  30728. source: "./media/characters/en/back-dressed.svg",
  30729. extra: 1700 / 1570,
  30730. bottom: 51 / 1751
  30731. }
  30732. },
  30733. },
  30734. [
  30735. {
  30736. name: "Macro",
  30737. height: math.unit(210, "feet"),
  30738. default: true
  30739. },
  30740. ]
  30741. ))
  30742. characterMakers.push(() => makeCharacter(
  30743. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30744. {
  30745. front: {
  30746. height: math.unit(6, "feet"),
  30747. weight: math.unit(150, "lb"),
  30748. name: "Front",
  30749. image: {
  30750. source: "./media/characters/haze-orris/front.svg",
  30751. extra: 3975 / 3525,
  30752. bottom: 137 / 4112
  30753. }
  30754. },
  30755. },
  30756. [
  30757. {
  30758. name: "Micro",
  30759. height: math.unit(150, "mm"),
  30760. default: true
  30761. },
  30762. ]
  30763. ))
  30764. characterMakers.push(() => makeCharacter(
  30765. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30766. {
  30767. front: {
  30768. height: math.unit(6, "feet"),
  30769. weight: math.unit(150, "lb"),
  30770. name: "Front",
  30771. image: {
  30772. source: "./media/characters/casselene-yaro/front.svg",
  30773. extra: 4721 / 4541,
  30774. bottom: 82 / 4803
  30775. }
  30776. },
  30777. back: {
  30778. height: math.unit(6, "feet"),
  30779. weight: math.unit(150, "lb"),
  30780. name: "Back",
  30781. image: {
  30782. source: "./media/characters/casselene-yaro/back.svg",
  30783. extra: 4569 / 4377,
  30784. bottom: 69 / 4638
  30785. }
  30786. },
  30787. dressed: {
  30788. height: math.unit(6, "feet"),
  30789. weight: math.unit(150, "lb"),
  30790. name: "Dressed",
  30791. image: {
  30792. source: "./media/characters/casselene-yaro/dressed.svg",
  30793. extra: 4721 / 4541,
  30794. bottom: 82 / 4803
  30795. }
  30796. },
  30797. maw: {
  30798. height: math.unit(1, "feet"),
  30799. name: "Maw",
  30800. image: {
  30801. source: "./media/characters/casselene-yaro/maw.svg"
  30802. }
  30803. },
  30804. },
  30805. [
  30806. {
  30807. name: "Macro",
  30808. height: math.unit(190, "feet"),
  30809. default: true
  30810. },
  30811. ]
  30812. ))
  30813. characterMakers.push(() => makeCharacter(
  30814. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  30815. {
  30816. front: {
  30817. height: math.unit(10, "feet"),
  30818. weight: math.unit(15015, "lb"),
  30819. name: "Front",
  30820. image: {
  30821. source: "./media/characters/platine/front.svg",
  30822. extra: 1428/1353,
  30823. bottom: 31/1459
  30824. }
  30825. },
  30826. },
  30827. [
  30828. {
  30829. name: "Normal",
  30830. height: math.unit(10, "feet"),
  30831. default: true
  30832. },
  30833. {
  30834. name: "Macro",
  30835. height: math.unit(100, "feet")
  30836. },
  30837. {
  30838. name: "Megamacro",
  30839. height: math.unit(1000, "feet")
  30840. },
  30841. ]
  30842. ))
  30843. characterMakers.push(() => makeCharacter(
  30844. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30845. {
  30846. front: {
  30847. height: math.unit(15 + 5 / 12, "feet"),
  30848. weight: math.unit(4600, "lb"),
  30849. name: "Front",
  30850. image: {
  30851. source: "./media/characters/neapolitan-ananassa/front.svg",
  30852. extra: 2903 / 2736,
  30853. bottom: 0 / 2903
  30854. }
  30855. },
  30856. side: {
  30857. height: math.unit(15 + 5 / 12, "feet"),
  30858. weight: math.unit(4600, "lb"),
  30859. name: "Side",
  30860. image: {
  30861. source: "./media/characters/neapolitan-ananassa/side.svg",
  30862. extra: 2925 / 2719,
  30863. bottom: 0 / 2925
  30864. }
  30865. },
  30866. back: {
  30867. height: math.unit(15 + 5 / 12, "feet"),
  30868. weight: math.unit(4600, "lb"),
  30869. name: "Back",
  30870. image: {
  30871. source: "./media/characters/neapolitan-ananassa/back.svg",
  30872. extra: 2903 / 2736,
  30873. bottom: 0 / 2903
  30874. }
  30875. },
  30876. },
  30877. [
  30878. {
  30879. name: "Normal",
  30880. height: math.unit(15 + 5 / 12, "feet"),
  30881. default: true
  30882. },
  30883. {
  30884. name: "Post-Millenium",
  30885. height: math.unit(35 + 5 / 12, "feet")
  30886. },
  30887. {
  30888. name: "Post-Era",
  30889. height: math.unit(450 + 5 / 12, "feet")
  30890. },
  30891. ]
  30892. ))
  30893. characterMakers.push(() => makeCharacter(
  30894. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30895. {
  30896. front: {
  30897. height: math.unit(300, "meters"),
  30898. weight: math.unit(125000, "tonnes"),
  30899. name: "Front",
  30900. image: {
  30901. source: "./media/characters/pazuzu/front.svg",
  30902. extra: 877 / 794,
  30903. bottom: 47 / 924
  30904. }
  30905. },
  30906. },
  30907. [
  30908. {
  30909. name: "Macro",
  30910. height: math.unit(300, "meters"),
  30911. default: true
  30912. },
  30913. ]
  30914. ))
  30915. characterMakers.push(() => makeCharacter(
  30916. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30917. {
  30918. side: {
  30919. height: math.unit(10 + 7 / 12, "feet"),
  30920. weight: math.unit(2.5, "tons"),
  30921. name: "Side",
  30922. image: {
  30923. source: "./media/characters/aasha/side.svg",
  30924. extra: 1345 / 1245,
  30925. bottom: 111 / 1456
  30926. }
  30927. },
  30928. back: {
  30929. height: math.unit(10 + 7 / 12, "feet"),
  30930. weight: math.unit(2.5, "tons"),
  30931. name: "Back",
  30932. image: {
  30933. source: "./media/characters/aasha/back.svg",
  30934. extra: 1133 / 1057,
  30935. bottom: 257 / 1390
  30936. }
  30937. },
  30938. },
  30939. [
  30940. {
  30941. name: "Normal",
  30942. height: math.unit(10 + 7 / 12, "feet"),
  30943. default: true
  30944. },
  30945. ]
  30946. ))
  30947. characterMakers.push(() => makeCharacter(
  30948. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30949. {
  30950. front: {
  30951. height: math.unit(6 + 3 / 12, "feet"),
  30952. name: "Front",
  30953. image: {
  30954. source: "./media/characters/nevan/front.svg",
  30955. extra: 704 / 704,
  30956. bottom: 28 / 732
  30957. }
  30958. },
  30959. back: {
  30960. height: math.unit(6 + 3 / 12, "feet"),
  30961. name: "Back",
  30962. image: {
  30963. source: "./media/characters/nevan/back.svg",
  30964. extra: 714 / 714,
  30965. bottom: 21 / 735
  30966. }
  30967. },
  30968. frontFlaccid: {
  30969. height: math.unit(6 + 3 / 12, "feet"),
  30970. name: "Front (Flaccid)",
  30971. image: {
  30972. source: "./media/characters/nevan/front-flaccid.svg",
  30973. extra: 704 / 704,
  30974. bottom: 28 / 732
  30975. }
  30976. },
  30977. frontErect: {
  30978. height: math.unit(6 + 3 / 12, "feet"),
  30979. name: "Front (Erect)",
  30980. image: {
  30981. source: "./media/characters/nevan/front-erect.svg",
  30982. extra: 704 / 704,
  30983. bottom: 28 / 732
  30984. }
  30985. },
  30986. backFlaccid: {
  30987. height: math.unit(6 + 3 / 12, "feet"),
  30988. name: "Back (Flaccid)",
  30989. image: {
  30990. source: "./media/characters/nevan/back-flaccid.svg",
  30991. extra: 714 / 714,
  30992. bottom: 21 / 735
  30993. }
  30994. },
  30995. },
  30996. [
  30997. {
  30998. name: "Normal",
  30999. height: math.unit(6 + 3 / 12, "feet"),
  31000. default: true
  31001. },
  31002. ]
  31003. ))
  31004. characterMakers.push(() => makeCharacter(
  31005. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  31006. {
  31007. front: {
  31008. height: math.unit(4, "feet"),
  31009. name: "Front",
  31010. image: {
  31011. source: "./media/characters/arhan/front.svg",
  31012. extra: 3368 / 3133,
  31013. bottom: 0 / 3368
  31014. }
  31015. },
  31016. side: {
  31017. height: math.unit(4, "feet"),
  31018. name: "Side",
  31019. image: {
  31020. source: "./media/characters/arhan/side.svg",
  31021. extra: 3347 / 3105,
  31022. bottom: 0 / 3347
  31023. }
  31024. },
  31025. tongue: {
  31026. height: math.unit(1.42, "feet"),
  31027. name: "Tongue",
  31028. image: {
  31029. source: "./media/characters/arhan/tongue.svg"
  31030. }
  31031. },
  31032. head: {
  31033. height: math.unit(0.85, "feet"),
  31034. name: "Head",
  31035. image: {
  31036. source: "./media/characters/arhan/head.svg"
  31037. }
  31038. },
  31039. },
  31040. [
  31041. {
  31042. name: "Normal",
  31043. height: math.unit(4, "feet"),
  31044. default: true
  31045. },
  31046. ]
  31047. ))
  31048. characterMakers.push(() => makeCharacter(
  31049. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  31050. {
  31051. front: {
  31052. height: math.unit(5 + 7.5 / 12, "feet"),
  31053. weight: math.unit(120, "lb"),
  31054. name: "Front",
  31055. image: {
  31056. source: "./media/characters/digi-duncan/front.svg",
  31057. extra: 330 / 326,
  31058. bottom: 16 / 346
  31059. }
  31060. },
  31061. side: {
  31062. height: math.unit(5 + 7.5 / 12, "feet"),
  31063. weight: math.unit(120, "lb"),
  31064. name: "Side",
  31065. image: {
  31066. source: "./media/characters/digi-duncan/side.svg",
  31067. extra: 341 / 337,
  31068. bottom: 1 / 342
  31069. }
  31070. },
  31071. back: {
  31072. height: math.unit(5 + 7.5 / 12, "feet"),
  31073. weight: math.unit(120, "lb"),
  31074. name: "Back",
  31075. image: {
  31076. source: "./media/characters/digi-duncan/back.svg",
  31077. extra: 330 / 326,
  31078. bottom: 12 / 342
  31079. }
  31080. },
  31081. },
  31082. [
  31083. {
  31084. name: "Speck",
  31085. height: math.unit(0.25, "mm")
  31086. },
  31087. {
  31088. name: "Micro",
  31089. height: math.unit(5, "mm")
  31090. },
  31091. {
  31092. name: "Tiny",
  31093. height: math.unit(0.5, "inches"),
  31094. default: true
  31095. },
  31096. {
  31097. name: "Human",
  31098. height: math.unit(5 + 7.5 / 12, "feet")
  31099. },
  31100. {
  31101. name: "Minigiant",
  31102. height: math.unit(8 + 5.25, "feet")
  31103. },
  31104. {
  31105. name: "Giant",
  31106. height: math.unit(2000, "feet")
  31107. },
  31108. {
  31109. name: "Mega",
  31110. height: math.unit(371.1, "miles")
  31111. },
  31112. ]
  31113. ))
  31114. characterMakers.push(() => makeCharacter(
  31115. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  31116. {
  31117. front: {
  31118. height: math.unit(2, "meters"),
  31119. weight: math.unit(350, "kg"),
  31120. name: "Front",
  31121. image: {
  31122. source: "./media/characters/jagaz-soulbreaker/front.svg",
  31123. extra: 898 / 838,
  31124. bottom: 9 / 907
  31125. }
  31126. },
  31127. },
  31128. [
  31129. {
  31130. name: "Micro",
  31131. height: math.unit(8, "meters")
  31132. },
  31133. {
  31134. name: "Normal",
  31135. height: math.unit(50, "meters"),
  31136. default: true
  31137. },
  31138. {
  31139. name: "Macro",
  31140. height: math.unit(500, "meters")
  31141. },
  31142. ]
  31143. ))
  31144. characterMakers.push(() => makeCharacter(
  31145. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  31146. {
  31147. front: {
  31148. height: math.unit(6 + 6 / 12, "feet"),
  31149. name: "Front",
  31150. image: {
  31151. source: "./media/characters/khardesh/front.svg",
  31152. extra: 1788/1596,
  31153. bottom: 66/1854
  31154. }
  31155. },
  31156. back: {
  31157. height: math.unit(6 + 6 / 12, "feet"),
  31158. name: "Back",
  31159. image: {
  31160. source: "./media/characters/khardesh/back.svg",
  31161. extra: 1781/1584,
  31162. bottom: 68/1849
  31163. }
  31164. },
  31165. },
  31166. [
  31167. {
  31168. name: "Normal",
  31169. height: math.unit(6 + 6 / 12, "feet"),
  31170. default: true
  31171. },
  31172. {
  31173. name: "Normal+",
  31174. height: math.unit(4, "meters")
  31175. },
  31176. {
  31177. name: "Macro",
  31178. height: math.unit(50, "meters")
  31179. },
  31180. {
  31181. name: "Macro+",
  31182. height: math.unit(100, "meters")
  31183. },
  31184. {
  31185. name: "Megamacro",
  31186. height: math.unit(20, "km")
  31187. },
  31188. ]
  31189. ))
  31190. characterMakers.push(() => makeCharacter(
  31191. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  31192. {
  31193. front: {
  31194. height: math.unit(6, "feet"),
  31195. weight: math.unit(150, "lb"),
  31196. name: "Front",
  31197. image: {
  31198. source: "./media/characters/kosho/front.svg",
  31199. extra: 1847 / 1847,
  31200. bottom: 86 / 1933
  31201. }
  31202. },
  31203. },
  31204. [
  31205. {
  31206. name: "Second-stage micro",
  31207. height: math.unit(0.5, "inches")
  31208. },
  31209. {
  31210. name: "First-stage micro",
  31211. height: math.unit(6, "inches")
  31212. },
  31213. {
  31214. name: "Normal",
  31215. height: math.unit(6, "feet"),
  31216. default: true
  31217. },
  31218. {
  31219. name: "First-stage macro",
  31220. height: math.unit(72, "feet")
  31221. },
  31222. {
  31223. name: "Second-stage macro",
  31224. height: math.unit(864, "feet")
  31225. },
  31226. ]
  31227. ))
  31228. characterMakers.push(() => makeCharacter(
  31229. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  31230. {
  31231. normal: {
  31232. height: math.unit(4 + 6 / 12, "feet"),
  31233. name: "Normal",
  31234. image: {
  31235. source: "./media/characters/hydra/normal.svg",
  31236. extra: 2833 / 2634,
  31237. bottom: 68 / 2901
  31238. }
  31239. },
  31240. smol: {
  31241. height: math.unit(0.705, "inches"),
  31242. name: "Smol",
  31243. image: {
  31244. source: "./media/characters/hydra/smol.svg",
  31245. extra: 2715 / 2540,
  31246. bottom: 0 / 2715
  31247. }
  31248. },
  31249. },
  31250. [
  31251. {
  31252. name: "Normal",
  31253. height: math.unit(4 + 6 / 12, "feet"),
  31254. default: true
  31255. }
  31256. ]
  31257. ))
  31258. characterMakers.push(() => makeCharacter(
  31259. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  31260. {
  31261. front: {
  31262. height: math.unit(0.6, "cm"),
  31263. name: "Front",
  31264. image: {
  31265. source: "./media/characters/daz/front.svg",
  31266. extra: 1682 / 1164,
  31267. bottom: 42 / 1724
  31268. }
  31269. },
  31270. },
  31271. [
  31272. {
  31273. name: "Normal",
  31274. height: math.unit(0.6, "cm"),
  31275. default: true
  31276. },
  31277. ]
  31278. ))
  31279. characterMakers.push(() => makeCharacter(
  31280. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  31281. {
  31282. front: {
  31283. height: math.unit(6, "feet"),
  31284. weight: math.unit(235, "lb"),
  31285. name: "Front",
  31286. image: {
  31287. source: "./media/characters/theo-pangolin/front.svg",
  31288. extra: 1996 / 1969,
  31289. bottom: 115 / 2111
  31290. }
  31291. },
  31292. back: {
  31293. height: math.unit(6, "feet"),
  31294. weight: math.unit(235, "lb"),
  31295. name: "Back",
  31296. image: {
  31297. source: "./media/characters/theo-pangolin/back.svg",
  31298. extra: 1979 / 1979,
  31299. bottom: 40 / 2019
  31300. }
  31301. },
  31302. feral: {
  31303. height: math.unit(2, "feet"),
  31304. weight: math.unit(30, "lb"),
  31305. name: "Feral",
  31306. image: {
  31307. source: "./media/characters/theo-pangolin/feral.svg",
  31308. extra: 803 / 791,
  31309. bottom: 181 / 984
  31310. }
  31311. },
  31312. footFive: {
  31313. height: math.unit(1.43, "feet"),
  31314. name: "Foot (Five Toes)",
  31315. image: {
  31316. source: "./media/characters/theo-pangolin/foot-five.svg"
  31317. }
  31318. },
  31319. footFour: {
  31320. height: math.unit(1.43, "feet"),
  31321. name: "Foot (Four Toes)",
  31322. image: {
  31323. source: "./media/characters/theo-pangolin/foot-four.svg"
  31324. }
  31325. },
  31326. handFour: {
  31327. height: math.unit(0.81, "feet"),
  31328. name: "Hand (Four Fingers)",
  31329. image: {
  31330. source: "./media/characters/theo-pangolin/hand-four.svg"
  31331. }
  31332. },
  31333. handThree: {
  31334. height: math.unit(0.81, "feet"),
  31335. name: "Hand (Three Fingers)",
  31336. image: {
  31337. source: "./media/characters/theo-pangolin/hand-three.svg"
  31338. }
  31339. },
  31340. headFront: {
  31341. height: math.unit(1.37, "feet"),
  31342. name: "Head (Front)",
  31343. image: {
  31344. source: "./media/characters/theo-pangolin/head-front.svg"
  31345. }
  31346. },
  31347. headSide: {
  31348. height: math.unit(1.43, "feet"),
  31349. name: "Head (Side)",
  31350. image: {
  31351. source: "./media/characters/theo-pangolin/head-side.svg"
  31352. }
  31353. },
  31354. tongue: {
  31355. height: math.unit(2.29, "feet"),
  31356. name: "Tongue",
  31357. image: {
  31358. source: "./media/characters/theo-pangolin/tongue.svg"
  31359. }
  31360. },
  31361. },
  31362. [
  31363. {
  31364. name: "Normal",
  31365. height: math.unit(6, "feet")
  31366. },
  31367. {
  31368. name: "Macro",
  31369. height: math.unit(400, "feet"),
  31370. default: true
  31371. },
  31372. ]
  31373. ))
  31374. characterMakers.push(() => makeCharacter(
  31375. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  31376. {
  31377. front: {
  31378. height: math.unit(6, "inches"),
  31379. weight: math.unit(0.036, "kg"),
  31380. name: "Front",
  31381. image: {
  31382. source: "./media/characters/renée/front.svg",
  31383. extra: 900 / 886,
  31384. bottom: 8 / 908
  31385. }
  31386. },
  31387. },
  31388. [
  31389. {
  31390. name: "Nano",
  31391. height: math.unit(1, "nm")
  31392. },
  31393. {
  31394. name: "Micro",
  31395. height: math.unit(1, "mm")
  31396. },
  31397. {
  31398. name: "Normal",
  31399. height: math.unit(6, "inches")
  31400. },
  31401. {
  31402. name: "Macro",
  31403. height: math.unit(2000, "feet"),
  31404. default: true
  31405. },
  31406. {
  31407. name: "Megamacro",
  31408. height: math.unit(2, "km")
  31409. },
  31410. {
  31411. name: "Gigamacro",
  31412. height: math.unit(2000, "km")
  31413. },
  31414. {
  31415. name: "Teramacro",
  31416. height: math.unit(250000, "km")
  31417. },
  31418. ]
  31419. ))
  31420. characterMakers.push(() => makeCharacter(
  31421. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  31422. {
  31423. front: {
  31424. height: math.unit(4, "meters"),
  31425. weight: math.unit(150, "kg"),
  31426. name: "Front",
  31427. image: {
  31428. source: "./media/characters/caledvwlch/front.svg",
  31429. extra: 1760 / 1551,
  31430. bottom: 28 / 1788
  31431. }
  31432. },
  31433. side: {
  31434. height: math.unit(4, "meters"),
  31435. weight: math.unit(150, "kg"),
  31436. name: "Side",
  31437. image: {
  31438. source: "./media/characters/caledvwlch/side.svg",
  31439. extra: 1605 / 1536,
  31440. bottom: 31 / 1636
  31441. }
  31442. },
  31443. back: {
  31444. height: math.unit(4, "meters"),
  31445. weight: math.unit(150, "kg"),
  31446. name: "Back",
  31447. image: {
  31448. source: "./media/characters/caledvwlch/back.svg",
  31449. extra: 1635 / 1565,
  31450. bottom: 27 / 1662
  31451. }
  31452. },
  31453. },
  31454. [
  31455. {
  31456. name: "\"Incognito\"",
  31457. height: math.unit(4, "meters")
  31458. },
  31459. {
  31460. name: "Small rampage",
  31461. height: math.unit(600, "meters")
  31462. },
  31463. {
  31464. name: "Mega",
  31465. height: math.unit(30, "km")
  31466. },
  31467. {
  31468. name: "Home-size",
  31469. height: math.unit(50, "km"),
  31470. default: true
  31471. },
  31472. {
  31473. name: "Giga",
  31474. height: math.unit(300, "km")
  31475. },
  31476. {
  31477. name: "Lounging",
  31478. height: math.unit(11000, "km")
  31479. },
  31480. {
  31481. name: "Planet snacking",
  31482. height: math.unit(2000000, "km")
  31483. },
  31484. ]
  31485. ))
  31486. characterMakers.push(() => makeCharacter(
  31487. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  31488. {
  31489. front: {
  31490. height: math.unit(6, "feet"),
  31491. weight: math.unit(215, "lb"),
  31492. name: "Front",
  31493. image: {
  31494. source: "./media/characters/sapphire-svell/front.svg",
  31495. extra: 495 / 455,
  31496. bottom: 20 / 515
  31497. }
  31498. },
  31499. back: {
  31500. height: math.unit(6, "feet"),
  31501. weight: math.unit(216, "lb"),
  31502. name: "Back",
  31503. image: {
  31504. source: "./media/characters/sapphire-svell/back.svg",
  31505. extra: 497 / 477,
  31506. bottom: 7 / 504
  31507. }
  31508. },
  31509. maw: {
  31510. height: math.unit(1.57, "feet"),
  31511. name: "Maw",
  31512. image: {
  31513. source: "./media/characters/sapphire-svell/maw.svg"
  31514. }
  31515. },
  31516. foot: {
  31517. height: math.unit(1.07, "feet"),
  31518. name: "Foot",
  31519. image: {
  31520. source: "./media/characters/sapphire-svell/foot.svg"
  31521. }
  31522. },
  31523. toering: {
  31524. height: math.unit(1.7, "inch"),
  31525. name: "Toering",
  31526. image: {
  31527. source: "./media/characters/sapphire-svell/toering.svg"
  31528. }
  31529. },
  31530. },
  31531. [
  31532. {
  31533. name: "Normal",
  31534. height: math.unit(300, "feet"),
  31535. default: true
  31536. },
  31537. {
  31538. name: "Augmented",
  31539. height: math.unit(1250, "feet")
  31540. },
  31541. {
  31542. name: "Unleashed",
  31543. height: math.unit(3000, "feet")
  31544. },
  31545. ]
  31546. ))
  31547. characterMakers.push(() => makeCharacter(
  31548. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31549. {
  31550. side: {
  31551. height: math.unit(2 + 3 / 12, "feet"),
  31552. weight: math.unit(110, "lb"),
  31553. name: "Side",
  31554. image: {
  31555. source: "./media/characters/glitch-flux/side.svg",
  31556. extra: 997 / 805,
  31557. bottom: 20 / 1017
  31558. }
  31559. },
  31560. },
  31561. [
  31562. {
  31563. name: "Normal",
  31564. height: math.unit(2 + 3 / 12, "feet"),
  31565. default: true
  31566. },
  31567. ]
  31568. ))
  31569. characterMakers.push(() => makeCharacter(
  31570. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31571. {
  31572. front: {
  31573. height: math.unit(4, "meters"),
  31574. name: "Front",
  31575. image: {
  31576. source: "./media/characters/mid/front.svg",
  31577. extra: 507 / 476,
  31578. bottom: 17 / 524
  31579. }
  31580. },
  31581. back: {
  31582. height: math.unit(4, "meters"),
  31583. name: "Back",
  31584. image: {
  31585. source: "./media/characters/mid/back.svg",
  31586. extra: 519 / 487,
  31587. bottom: 7 / 526
  31588. }
  31589. },
  31590. stuck: {
  31591. height: math.unit(2.2, "meters"),
  31592. name: "Stuck",
  31593. image: {
  31594. source: "./media/characters/mid/stuck.svg",
  31595. extra: 1951 / 1869,
  31596. bottom: 88 / 2039
  31597. }
  31598. }
  31599. },
  31600. [
  31601. {
  31602. name: "Normal",
  31603. height: math.unit(4, "meters"),
  31604. default: true
  31605. },
  31606. {
  31607. name: "Big",
  31608. height: math.unit(10, "meters")
  31609. },
  31610. {
  31611. name: "Macro",
  31612. height: math.unit(800, "meters")
  31613. },
  31614. {
  31615. name: "Megamacro",
  31616. height: math.unit(100, "km")
  31617. },
  31618. {
  31619. name: "Overgrown",
  31620. height: math.unit(1, "parsec")
  31621. },
  31622. ]
  31623. ))
  31624. characterMakers.push(() => makeCharacter(
  31625. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31626. {
  31627. front: {
  31628. height: math.unit(2.5, "meters"),
  31629. weight: math.unit(225, "kg"),
  31630. name: "Front",
  31631. image: {
  31632. source: "./media/characters/iris/front.svg",
  31633. extra: 3348 / 3251,
  31634. bottom: 205 / 3553
  31635. }
  31636. },
  31637. maw: {
  31638. height: math.unit(0.56, "meter"),
  31639. name: "Maw",
  31640. image: {
  31641. source: "./media/characters/iris/maw.svg"
  31642. }
  31643. },
  31644. },
  31645. [
  31646. {
  31647. name: "Mewter cat",
  31648. height: math.unit(1.2, "meters")
  31649. },
  31650. {
  31651. name: "Normal",
  31652. height: math.unit(2.5, "meters"),
  31653. default: true
  31654. },
  31655. {
  31656. name: "Minimacro",
  31657. height: math.unit(18, "feet")
  31658. },
  31659. {
  31660. name: "Macro",
  31661. height: math.unit(140, "feet")
  31662. },
  31663. {
  31664. name: "Macro+",
  31665. height: math.unit(180, "meters")
  31666. },
  31667. {
  31668. name: "Megamacro",
  31669. height: math.unit(2746, "meters")
  31670. },
  31671. ]
  31672. ))
  31673. characterMakers.push(() => makeCharacter(
  31674. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31675. {
  31676. front: {
  31677. height: math.unit(6, "feet"),
  31678. weight: math.unit(135, "lb"),
  31679. name: "Front",
  31680. image: {
  31681. source: "./media/characters/axel/front.svg",
  31682. extra: 908 / 908,
  31683. bottom: 58 / 966
  31684. }
  31685. },
  31686. side: {
  31687. height: math.unit(6, "feet"),
  31688. weight: math.unit(135, "lb"),
  31689. name: "Side",
  31690. image: {
  31691. source: "./media/characters/axel/side.svg",
  31692. extra: 958 / 958,
  31693. bottom: 11 / 969
  31694. }
  31695. },
  31696. back: {
  31697. height: math.unit(6, "feet"),
  31698. weight: math.unit(135, "lb"),
  31699. name: "Back",
  31700. image: {
  31701. source: "./media/characters/axel/back.svg",
  31702. extra: 887 / 887,
  31703. bottom: 34 / 921
  31704. }
  31705. },
  31706. head: {
  31707. height: math.unit(1.07, "feet"),
  31708. name: "Head",
  31709. image: {
  31710. source: "./media/characters/axel/head.svg"
  31711. }
  31712. },
  31713. beak: {
  31714. height: math.unit(1.4, "feet"),
  31715. name: "Beak",
  31716. image: {
  31717. source: "./media/characters/axel/beak.svg"
  31718. }
  31719. },
  31720. beakSide: {
  31721. height: math.unit(1.4, "feet"),
  31722. name: "Beak Side",
  31723. image: {
  31724. source: "./media/characters/axel/beak-side.svg"
  31725. }
  31726. },
  31727. sheath: {
  31728. height: math.unit(0.5, "feet"),
  31729. name: "Sheath",
  31730. image: {
  31731. source: "./media/characters/axel/sheath.svg"
  31732. }
  31733. },
  31734. dick: {
  31735. height: math.unit(0.98, "feet"),
  31736. name: "Dick",
  31737. image: {
  31738. source: "./media/characters/axel/dick.svg"
  31739. }
  31740. },
  31741. },
  31742. [
  31743. {
  31744. name: "Macro",
  31745. height: math.unit(68, "meters"),
  31746. default: true
  31747. },
  31748. ]
  31749. ))
  31750. characterMakers.push(() => makeCharacter(
  31751. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31752. {
  31753. front: {
  31754. height: math.unit(3.5, "meters"),
  31755. weight: math.unit(1200, "kg"),
  31756. name: "Front",
  31757. image: {
  31758. source: "./media/characters/joanna/front.svg",
  31759. extra: 1596 / 1488,
  31760. bottom: 29 / 1625
  31761. }
  31762. },
  31763. back: {
  31764. height: math.unit(3.5, "meters"),
  31765. weight: math.unit(1200, "kg"),
  31766. name: "Back",
  31767. image: {
  31768. source: "./media/characters/joanna/back.svg",
  31769. extra: 1594 / 1495,
  31770. bottom: 26 / 1620
  31771. }
  31772. },
  31773. frontShorts: {
  31774. height: math.unit(3.5, "meters"),
  31775. weight: math.unit(1200, "kg"),
  31776. name: "Front (Shorts)",
  31777. image: {
  31778. source: "./media/characters/joanna/front-shorts.svg",
  31779. extra: 1596 / 1488,
  31780. bottom: 29 / 1625
  31781. }
  31782. },
  31783. frontBiker: {
  31784. height: math.unit(3.5, "meters"),
  31785. weight: math.unit(1200, "kg"),
  31786. name: "Front (Biker)",
  31787. image: {
  31788. source: "./media/characters/joanna/front-biker.svg",
  31789. extra: 1596 / 1488,
  31790. bottom: 29 / 1625
  31791. }
  31792. },
  31793. backBiker: {
  31794. height: math.unit(3.5, "meters"),
  31795. weight: math.unit(1200, "kg"),
  31796. name: "Back (Biker)",
  31797. image: {
  31798. source: "./media/characters/joanna/back-biker.svg",
  31799. extra: 1594 / 1495,
  31800. bottom: 88 / 1682
  31801. }
  31802. },
  31803. bikeLeft: {
  31804. height: math.unit(2.4, "meters"),
  31805. weight: math.unit(1600, "kg"),
  31806. name: "Bike (Left)",
  31807. image: {
  31808. source: "./media/characters/joanna/bike-left.svg",
  31809. extra: 720 / 720,
  31810. bottom: 8 / 728
  31811. }
  31812. },
  31813. bikeRight: {
  31814. height: math.unit(2.4, "meters"),
  31815. weight: math.unit(1600, "kg"),
  31816. name: "Bike (Right)",
  31817. image: {
  31818. source: "./media/characters/joanna/bike-right.svg",
  31819. extra: 720 / 720,
  31820. bottom: 8 / 728
  31821. }
  31822. },
  31823. },
  31824. [
  31825. {
  31826. name: "Incognito",
  31827. height: math.unit(3.5, "meters")
  31828. },
  31829. {
  31830. name: "Casual Big",
  31831. height: math.unit(200, "meters")
  31832. },
  31833. {
  31834. name: "Macro",
  31835. height: math.unit(600, "meters")
  31836. },
  31837. {
  31838. name: "Original",
  31839. height: math.unit(20, "km"),
  31840. default: true
  31841. },
  31842. {
  31843. name: "Giga",
  31844. height: math.unit(400, "km")
  31845. },
  31846. {
  31847. name: "Lounging",
  31848. height: math.unit(1500, "km")
  31849. },
  31850. {
  31851. name: "Planetary",
  31852. height: math.unit(200000, "km")
  31853. },
  31854. ]
  31855. ))
  31856. characterMakers.push(() => makeCharacter(
  31857. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31858. {
  31859. front: {
  31860. height: math.unit(6, "feet"),
  31861. weight: math.unit(150, "lb"),
  31862. name: "Front",
  31863. image: {
  31864. source: "./media/characters/hugo-sigil/front.svg",
  31865. extra: 522 / 500,
  31866. bottom: 2 / 524
  31867. }
  31868. },
  31869. back: {
  31870. height: math.unit(6, "feet"),
  31871. weight: math.unit(150, "lb"),
  31872. name: "Back",
  31873. image: {
  31874. source: "./media/characters/hugo-sigil/back.svg",
  31875. extra: 519 / 495,
  31876. bottom: 5 / 524
  31877. }
  31878. },
  31879. maw: {
  31880. height: math.unit(1.4, "feet"),
  31881. weight: math.unit(150, "lb"),
  31882. name: "Maw",
  31883. image: {
  31884. source: "./media/characters/hugo-sigil/maw.svg"
  31885. }
  31886. },
  31887. feet: {
  31888. height: math.unit(1.56, "feet"),
  31889. weight: math.unit(150, "lb"),
  31890. name: "Feet",
  31891. image: {
  31892. source: "./media/characters/hugo-sigil/feet.svg",
  31893. extra: 177 / 177,
  31894. bottom: 12 / 189
  31895. }
  31896. },
  31897. },
  31898. [
  31899. {
  31900. name: "Normal",
  31901. height: math.unit(6, "feet")
  31902. },
  31903. {
  31904. name: "Macro",
  31905. height: math.unit(200, "feet"),
  31906. default: true
  31907. },
  31908. ]
  31909. ))
  31910. characterMakers.push(() => makeCharacter(
  31911. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31912. {
  31913. front: {
  31914. height: math.unit(6, "feet"),
  31915. weight: math.unit(150, "lb"),
  31916. name: "Front",
  31917. image: {
  31918. source: "./media/characters/peri/front.svg",
  31919. extra: 2354 / 2233,
  31920. bottom: 49 / 2403
  31921. }
  31922. },
  31923. },
  31924. [
  31925. {
  31926. name: "Really Small",
  31927. height: math.unit(1, "nm")
  31928. },
  31929. {
  31930. name: "Micro",
  31931. height: math.unit(4, "inches")
  31932. },
  31933. {
  31934. name: "Normal",
  31935. height: math.unit(7, "inches"),
  31936. default: true
  31937. },
  31938. {
  31939. name: "Macro",
  31940. height: math.unit(400, "feet")
  31941. },
  31942. {
  31943. name: "Megamacro",
  31944. height: math.unit(100, "miles")
  31945. },
  31946. ]
  31947. ))
  31948. characterMakers.push(() => makeCharacter(
  31949. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31950. {
  31951. frontSlim: {
  31952. height: math.unit(7, "feet"),
  31953. name: "Front (Slim)",
  31954. image: {
  31955. source: "./media/characters/issilora/front-slim.svg",
  31956. extra: 529 / 449,
  31957. bottom: 53 / 582
  31958. }
  31959. },
  31960. sideSlim: {
  31961. height: math.unit(7, "feet"),
  31962. name: "Side (Slim)",
  31963. image: {
  31964. source: "./media/characters/issilora/side-slim.svg",
  31965. extra: 570 / 480,
  31966. bottom: 30 / 600
  31967. }
  31968. },
  31969. backSlim: {
  31970. height: math.unit(7, "feet"),
  31971. name: "Back (Slim)",
  31972. image: {
  31973. source: "./media/characters/issilora/back-slim.svg",
  31974. extra: 537 / 455,
  31975. bottom: 46 / 583
  31976. }
  31977. },
  31978. frontBuff: {
  31979. height: math.unit(7, "feet"),
  31980. name: "Front (Buff)",
  31981. image: {
  31982. source: "./media/characters/issilora/front-buff.svg",
  31983. extra: 2310 / 2035,
  31984. bottom: 335 / 2645
  31985. }
  31986. },
  31987. head: {
  31988. height: math.unit(1.94, "feet"),
  31989. name: "Head",
  31990. image: {
  31991. source: "./media/characters/issilora/head.svg"
  31992. }
  31993. },
  31994. },
  31995. [
  31996. {
  31997. name: "Minimum",
  31998. height: math.unit(7, "feet")
  31999. },
  32000. {
  32001. name: "Comfortable",
  32002. height: math.unit(17, "feet")
  32003. },
  32004. {
  32005. name: "Fun Size",
  32006. height: math.unit(47, "feet")
  32007. },
  32008. {
  32009. name: "Natural Macro",
  32010. height: math.unit(137, "feet"),
  32011. default: true
  32012. },
  32013. {
  32014. name: "Maximum Kaiju",
  32015. height: math.unit(397, "feet")
  32016. },
  32017. ]
  32018. ))
  32019. characterMakers.push(() => makeCharacter(
  32020. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  32021. {
  32022. front: {
  32023. height: math.unit(50 + 9/12, "feet"),
  32024. weight: math.unit(32.8, "tons"),
  32025. name: "Front",
  32026. image: {
  32027. source: "./media/characters/irb'iiritaahn/front.svg",
  32028. extra: 1878/1826,
  32029. bottom: 326/2204
  32030. }
  32031. },
  32032. back: {
  32033. height: math.unit(50 + 9/12, "feet"),
  32034. weight: math.unit(32.8, "tons"),
  32035. name: "Back",
  32036. image: {
  32037. source: "./media/characters/irb'iiritaahn/back.svg",
  32038. extra: 2052/2018,
  32039. bottom: 152/2204
  32040. }
  32041. },
  32042. head: {
  32043. height: math.unit(12.86, "feet"),
  32044. name: "Head",
  32045. image: {
  32046. source: "./media/characters/irb'iiritaahn/head.svg"
  32047. }
  32048. },
  32049. maw: {
  32050. height: math.unit(9.66, "feet"),
  32051. name: "Maw",
  32052. image: {
  32053. source: "./media/characters/irb'iiritaahn/maw.svg"
  32054. }
  32055. },
  32056. frontDick: {
  32057. height: math.unit(8.78461, "feet"),
  32058. name: "Front Dick",
  32059. image: {
  32060. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  32061. }
  32062. },
  32063. rearDick: {
  32064. height: math.unit(8.78461, "feet"),
  32065. name: "Rear Dick",
  32066. image: {
  32067. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  32068. }
  32069. },
  32070. rearDickUnfolded: {
  32071. height: math.unit(8.78, "feet"),
  32072. name: "Rear Dick (Unfolded)",
  32073. image: {
  32074. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  32075. }
  32076. },
  32077. wings: {
  32078. height: math.unit(43, "feet"),
  32079. name: "Wings",
  32080. image: {
  32081. source: "./media/characters/irb'iiritaahn/wings.svg"
  32082. }
  32083. },
  32084. },
  32085. [
  32086. {
  32087. name: "Macro",
  32088. height: math.unit(50 + 9/12, "feet"),
  32089. default: true
  32090. },
  32091. ]
  32092. ))
  32093. characterMakers.push(() => makeCharacter(
  32094. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  32095. {
  32096. front: {
  32097. height: math.unit(205, "cm"),
  32098. weight: math.unit(102, "kg"),
  32099. name: "Front",
  32100. image: {
  32101. source: "./media/characters/irbisgreif/front.svg",
  32102. extra: 785/706,
  32103. bottom: 13/798
  32104. }
  32105. },
  32106. back: {
  32107. height: math.unit(205, "cm"),
  32108. weight: math.unit(102, "kg"),
  32109. name: "Back",
  32110. image: {
  32111. source: "./media/characters/irbisgreif/back.svg",
  32112. extra: 713/701,
  32113. bottom: 26/739
  32114. }
  32115. },
  32116. frontDressed: {
  32117. height: math.unit(216, "cm"),
  32118. weight: math.unit(102, "kg"),
  32119. name: "Front-dressed",
  32120. image: {
  32121. source: "./media/characters/irbisgreif/front-dressed.svg",
  32122. extra: 902/776,
  32123. bottom: 14/916
  32124. }
  32125. },
  32126. sideDressed: {
  32127. height: math.unit(195, "cm"),
  32128. weight: math.unit(102, "kg"),
  32129. name: "Side-dressed",
  32130. image: {
  32131. source: "./media/characters/irbisgreif/side-dressed.svg",
  32132. extra: 788/688,
  32133. bottom: 21/809
  32134. }
  32135. },
  32136. backDressed: {
  32137. height: math.unit(216, "cm"),
  32138. weight: math.unit(102, "kg"),
  32139. name: "Back-dressed",
  32140. image: {
  32141. source: "./media/characters/irbisgreif/back-dressed.svg",
  32142. extra: 901/783,
  32143. bottom: 10/911
  32144. }
  32145. },
  32146. dick: {
  32147. height: math.unit(0.49, "feet"),
  32148. name: "Dick",
  32149. image: {
  32150. source: "./media/characters/irbisgreif/dick.svg"
  32151. }
  32152. },
  32153. wingTop: {
  32154. height: math.unit(1.93 , "feet"),
  32155. name: "Wing-top",
  32156. image: {
  32157. source: "./media/characters/irbisgreif/wing-top.svg"
  32158. }
  32159. },
  32160. wingBottom: {
  32161. height: math.unit(1.93 , "feet"),
  32162. name: "Wing-bottom",
  32163. image: {
  32164. source: "./media/characters/irbisgreif/wing-bottom.svg"
  32165. }
  32166. },
  32167. },
  32168. [
  32169. {
  32170. name: "Normal",
  32171. height: math.unit(216, "cm"),
  32172. default: true
  32173. },
  32174. ]
  32175. ))
  32176. characterMakers.push(() => makeCharacter(
  32177. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  32178. {
  32179. front: {
  32180. height: math.unit(6, "feet"),
  32181. weight: math.unit(150, "lb"),
  32182. name: "Front",
  32183. image: {
  32184. source: "./media/characters/pride/front.svg",
  32185. extra: 1299/1230,
  32186. bottom: 18/1317
  32187. }
  32188. },
  32189. },
  32190. [
  32191. {
  32192. name: "Normal",
  32193. height: math.unit(7, "feet")
  32194. },
  32195. {
  32196. name: "Mini-macro",
  32197. height: math.unit(11, "feet")
  32198. },
  32199. {
  32200. name: "Macro",
  32201. height: math.unit(15, "meters"),
  32202. default: true
  32203. },
  32204. {
  32205. name: "Macro+",
  32206. height: math.unit(40, "meters")
  32207. },
  32208. ]
  32209. ))
  32210. characterMakers.push(() => makeCharacter(
  32211. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  32212. {
  32213. front: {
  32214. height: math.unit(4 + 2 / 12, "feet"),
  32215. weight: math.unit(95, "lb"),
  32216. name: "Front",
  32217. image: {
  32218. source: "./media/characters/vaelophis-nyx/front.svg",
  32219. extra: 2532/2330,
  32220. bottom: 0/2532
  32221. }
  32222. },
  32223. back: {
  32224. height: math.unit(4 + 2 / 12, "feet"),
  32225. weight: math.unit(95, "lb"),
  32226. name: "Back",
  32227. image: {
  32228. source: "./media/characters/vaelophis-nyx/back.svg",
  32229. extra: 2484/2361,
  32230. bottom: 0/2484
  32231. }
  32232. },
  32233. feralSide: {
  32234. height: math.unit(2 + 1/12, "feet"),
  32235. weight: math.unit(20, "lb"),
  32236. name: "Feral (Side)",
  32237. image: {
  32238. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  32239. extra: 1721/1581,
  32240. bottom: 70/1791
  32241. }
  32242. },
  32243. feralLazing: {
  32244. height: math.unit(1.08, "feet"),
  32245. weight: math.unit(20, "lb"),
  32246. name: "Feral (Lazing)",
  32247. image: {
  32248. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  32249. extra: 822/822,
  32250. bottom: 248/1070
  32251. }
  32252. },
  32253. ear: {
  32254. height: math.unit(0.416, "feet"),
  32255. name: "Ear",
  32256. image: {
  32257. source: "./media/characters/vaelophis-nyx/ear.svg"
  32258. }
  32259. },
  32260. eye: {
  32261. height: math.unit(0.0748, "feet"),
  32262. name: "Eye",
  32263. image: {
  32264. source: "./media/characters/vaelophis-nyx/eye.svg"
  32265. }
  32266. },
  32267. mouth: {
  32268. height: math.unit(0.378, "feet"),
  32269. name: "Mouth",
  32270. image: {
  32271. source: "./media/characters/vaelophis-nyx/mouth.svg"
  32272. }
  32273. },
  32274. spade: {
  32275. height: math.unit(0.55, "feet"),
  32276. name: "Spade",
  32277. image: {
  32278. source: "./media/characters/vaelophis-nyx/spade.svg"
  32279. }
  32280. },
  32281. },
  32282. [
  32283. {
  32284. name: "Normal",
  32285. height: math.unit(4 + 2/12, "feet"),
  32286. default: true
  32287. },
  32288. ]
  32289. ))
  32290. characterMakers.push(() => makeCharacter(
  32291. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  32292. {
  32293. front: {
  32294. height: math.unit(7, "feet"),
  32295. weight: math.unit(231, "lb"),
  32296. name: "Front",
  32297. image: {
  32298. source: "./media/characters/flux/front.svg",
  32299. extra: 919/871,
  32300. bottom: 0/919
  32301. }
  32302. },
  32303. back: {
  32304. height: math.unit(7, "feet"),
  32305. weight: math.unit(231, "lb"),
  32306. name: "Back",
  32307. image: {
  32308. source: "./media/characters/flux/back.svg",
  32309. extra: 1040/992,
  32310. bottom: 0/1040
  32311. }
  32312. },
  32313. frontDressed: {
  32314. height: math.unit(7, "feet"),
  32315. weight: math.unit(231, "lb"),
  32316. name: "Front (Dressed)",
  32317. image: {
  32318. source: "./media/characters/flux/front-dressed.svg",
  32319. extra: 919/871,
  32320. bottom: 0/919
  32321. }
  32322. },
  32323. feralSide: {
  32324. height: math.unit(5, "feet"),
  32325. weight: math.unit(150, "lb"),
  32326. name: "Feral (Side)",
  32327. image: {
  32328. source: "./media/characters/flux/feral-side.svg",
  32329. extra: 598/528,
  32330. bottom: 28/626
  32331. }
  32332. },
  32333. head: {
  32334. height: math.unit(1.585, "feet"),
  32335. name: "Head",
  32336. image: {
  32337. source: "./media/characters/flux/head.svg"
  32338. }
  32339. },
  32340. headSide: {
  32341. height: math.unit(1.74, "feet"),
  32342. name: "Head (Side)",
  32343. image: {
  32344. source: "./media/characters/flux/head-side.svg"
  32345. }
  32346. },
  32347. headSideFire: {
  32348. height: math.unit(1.76, "feet"),
  32349. name: "Head (Side, Fire)",
  32350. image: {
  32351. source: "./media/characters/flux/head-side-fire.svg"
  32352. }
  32353. },
  32354. },
  32355. [
  32356. {
  32357. name: "Normal",
  32358. height: math.unit(7, "feet"),
  32359. default: true
  32360. },
  32361. ]
  32362. ))
  32363. characterMakers.push(() => makeCharacter(
  32364. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  32365. {
  32366. front: {
  32367. height: math.unit(9, "feet"),
  32368. weight: math.unit(1012, "lb"),
  32369. name: "Front",
  32370. image: {
  32371. source: "./media/characters/ulfra-lupae/front.svg",
  32372. extra: 1083/1011,
  32373. bottom: 67/1150
  32374. }
  32375. },
  32376. },
  32377. [
  32378. {
  32379. name: "Micro",
  32380. height: math.unit(6, "inches")
  32381. },
  32382. {
  32383. name: "Socializing",
  32384. height: math.unit(6 + 5/12, "feet")
  32385. },
  32386. {
  32387. name: "Normal",
  32388. height: math.unit(9, "feet"),
  32389. default: true
  32390. },
  32391. {
  32392. name: "Macro",
  32393. height: math.unit(150, "feet")
  32394. },
  32395. ]
  32396. ))
  32397. characterMakers.push(() => makeCharacter(
  32398. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  32399. {
  32400. front: {
  32401. height: math.unit(5 + 2/12, "feet"),
  32402. weight: math.unit(120, "lb"),
  32403. name: "Front",
  32404. image: {
  32405. source: "./media/characters/timber/front.svg",
  32406. extra: 2814/2705,
  32407. bottom: 181/2995
  32408. }
  32409. },
  32410. },
  32411. [
  32412. {
  32413. name: "Normal",
  32414. height: math.unit(5 + 2/12, "feet"),
  32415. default: true
  32416. },
  32417. ]
  32418. ))
  32419. characterMakers.push(() => makeCharacter(
  32420. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  32421. {
  32422. front: {
  32423. height: math.unit(9, "feet"),
  32424. name: "Front",
  32425. image: {
  32426. source: "./media/characters/nicki/front.svg",
  32427. extra: 1240/990,
  32428. bottom: 45/1285
  32429. },
  32430. form: "anthro",
  32431. default: true
  32432. },
  32433. side: {
  32434. height: math.unit(9, "feet"),
  32435. name: "Side",
  32436. image: {
  32437. source: "./media/characters/nicki/side.svg",
  32438. extra: 1047/973,
  32439. bottom: 61/1108
  32440. },
  32441. form: "anthro"
  32442. },
  32443. back: {
  32444. height: math.unit(9, "feet"),
  32445. name: "Back",
  32446. image: {
  32447. source: "./media/characters/nicki/back.svg",
  32448. extra: 1006/965,
  32449. bottom: 39/1045
  32450. },
  32451. form: "anthro"
  32452. },
  32453. taur: {
  32454. height: math.unit(15, "feet"),
  32455. name: "Taur",
  32456. image: {
  32457. source: "./media/characters/nicki/taur.svg",
  32458. extra: 1592/1347,
  32459. bottom: 0/1592
  32460. },
  32461. form: "taur",
  32462. default: true
  32463. },
  32464. },
  32465. [
  32466. {
  32467. name: "Normal",
  32468. height: math.unit(9, "feet"),
  32469. form: "anthro",
  32470. default: true
  32471. },
  32472. {
  32473. name: "Normal",
  32474. height: math.unit(15, "feet"),
  32475. form: "taur",
  32476. default: true
  32477. }
  32478. ],
  32479. {
  32480. "anthro": {
  32481. name: "Anthro",
  32482. default: true
  32483. },
  32484. "taur": {
  32485. name: "Taur"
  32486. }
  32487. }
  32488. ))
  32489. characterMakers.push(() => makeCharacter(
  32490. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  32491. {
  32492. front: {
  32493. height: math.unit(7 + 10/12, "feet"),
  32494. weight: math.unit(3.5, "tons"),
  32495. name: "Front",
  32496. image: {
  32497. source: "./media/characters/lee/front.svg",
  32498. extra: 1773/1615,
  32499. bottom: 86/1859
  32500. }
  32501. },
  32502. hand: {
  32503. height: math.unit(1.78, "feet"),
  32504. name: "Hand",
  32505. image: {
  32506. source: "./media/characters/lee/hand.svg"
  32507. }
  32508. },
  32509. maw: {
  32510. height: math.unit(1.18, "feet"),
  32511. name: "Maw",
  32512. image: {
  32513. source: "./media/characters/lee/maw.svg"
  32514. }
  32515. },
  32516. },
  32517. [
  32518. {
  32519. name: "Normal",
  32520. height: math.unit(7 + 10/12, "feet"),
  32521. default: true
  32522. },
  32523. ]
  32524. ))
  32525. characterMakers.push(() => makeCharacter(
  32526. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32527. {
  32528. front: {
  32529. height: math.unit(9, "feet"),
  32530. name: "Front",
  32531. image: {
  32532. source: "./media/characters/guti/front.svg",
  32533. extra: 4551/4355,
  32534. bottom: 123/4674
  32535. }
  32536. },
  32537. tongue: {
  32538. height: math.unit(1, "feet"),
  32539. name: "Tongue",
  32540. image: {
  32541. source: "./media/characters/guti/tongue.svg"
  32542. }
  32543. },
  32544. paw: {
  32545. height: math.unit(1.18, "feet"),
  32546. name: "Paw",
  32547. image: {
  32548. source: "./media/characters/guti/paw.svg"
  32549. }
  32550. },
  32551. },
  32552. [
  32553. {
  32554. name: "Normal",
  32555. height: math.unit(9, "feet"),
  32556. default: true
  32557. },
  32558. ]
  32559. ))
  32560. characterMakers.push(() => makeCharacter(
  32561. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32562. {
  32563. side: {
  32564. height: math.unit(5, "meters"),
  32565. name: "Side",
  32566. image: {
  32567. source: "./media/characters/vesper/side.svg",
  32568. extra: 1605/1518,
  32569. bottom: 0/1605
  32570. }
  32571. },
  32572. },
  32573. [
  32574. {
  32575. name: "Small",
  32576. height: math.unit(5, "meters")
  32577. },
  32578. {
  32579. name: "Sage",
  32580. height: math.unit(100, "meters"),
  32581. default: true
  32582. },
  32583. {
  32584. name: "Fun Size",
  32585. height: math.unit(600, "meters")
  32586. },
  32587. {
  32588. name: "Goddess",
  32589. height: math.unit(20000, "km")
  32590. },
  32591. {
  32592. name: "Maximum",
  32593. height: math.unit(5, "galaxies")
  32594. },
  32595. ]
  32596. ))
  32597. characterMakers.push(() => makeCharacter(
  32598. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32599. {
  32600. front: {
  32601. height: math.unit(6 + 3/12, "feet"),
  32602. weight: math.unit(190, "lb"),
  32603. name: "Front",
  32604. image: {
  32605. source: "./media/characters/gawain/front.svg",
  32606. extra: 2222/2139,
  32607. bottom: 90/2312
  32608. }
  32609. },
  32610. back: {
  32611. height: math.unit(6 + 3/12, "feet"),
  32612. weight: math.unit(190, "lb"),
  32613. name: "Back",
  32614. image: {
  32615. source: "./media/characters/gawain/back.svg",
  32616. extra: 2199/2111,
  32617. bottom: 73/2272
  32618. }
  32619. },
  32620. },
  32621. [
  32622. {
  32623. name: "Normal",
  32624. height: math.unit(6 + 3/12, "feet"),
  32625. default: true
  32626. },
  32627. ]
  32628. ))
  32629. characterMakers.push(() => makeCharacter(
  32630. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32631. {
  32632. side: {
  32633. height: math.unit(3.5, "meters"),
  32634. weight: math.unit(16000, "lb"),
  32635. name: "Side",
  32636. image: {
  32637. source: "./media/characters/dascalti/side.svg",
  32638. extra: 392/273,
  32639. bottom: 47/439
  32640. }
  32641. },
  32642. breath: {
  32643. height: math.unit(7.4, "feet"),
  32644. name: "Breath",
  32645. image: {
  32646. source: "./media/characters/dascalti/breath.svg"
  32647. }
  32648. },
  32649. fed: {
  32650. height: math.unit(3.6, "meters"),
  32651. weight: math.unit(16000, "lb"),
  32652. name: "Fed",
  32653. image: {
  32654. source: "./media/characters/dascalti/fed.svg",
  32655. extra: 1419/820,
  32656. bottom: 95/1514
  32657. }
  32658. },
  32659. },
  32660. [
  32661. {
  32662. name: "Normal",
  32663. height: math.unit(3.5, "meters"),
  32664. default: true
  32665. },
  32666. ]
  32667. ))
  32668. characterMakers.push(() => makeCharacter(
  32669. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32670. {
  32671. front: {
  32672. height: math.unit(3 + 5/12, "feet"),
  32673. name: "Front",
  32674. image: {
  32675. source: "./media/characters/mauve/front.svg",
  32676. extra: 1126/1033,
  32677. bottom: 65/1191
  32678. }
  32679. },
  32680. side: {
  32681. height: math.unit(3 + 5/12, "feet"),
  32682. name: "Side",
  32683. image: {
  32684. source: "./media/characters/mauve/side.svg",
  32685. extra: 1089/1001,
  32686. bottom: 29/1118
  32687. }
  32688. },
  32689. back: {
  32690. height: math.unit(3 + 5/12, "feet"),
  32691. name: "Back",
  32692. image: {
  32693. source: "./media/characters/mauve/back.svg",
  32694. extra: 1173/1053,
  32695. bottom: 109/1282
  32696. }
  32697. },
  32698. },
  32699. [
  32700. {
  32701. name: "Normal",
  32702. height: math.unit(3 + 5/12, "feet"),
  32703. default: true
  32704. },
  32705. ]
  32706. ))
  32707. characterMakers.push(() => makeCharacter(
  32708. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32709. {
  32710. front: {
  32711. height: math.unit(6 + 3/12, "feet"),
  32712. weight: math.unit(430, "lb"),
  32713. name: "Front",
  32714. image: {
  32715. source: "./media/characters/carlos/front.svg",
  32716. extra: 1964/1913,
  32717. bottom: 70/2034
  32718. }
  32719. },
  32720. },
  32721. [
  32722. {
  32723. name: "Normal",
  32724. height: math.unit(6 + 3/12, "feet"),
  32725. default: true
  32726. },
  32727. ]
  32728. ))
  32729. characterMakers.push(() => makeCharacter(
  32730. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32731. {
  32732. back: {
  32733. height: math.unit(5 + 10/12, "feet"),
  32734. weight: math.unit(200, "lb"),
  32735. name: "Back",
  32736. image: {
  32737. source: "./media/characters/jax/back.svg",
  32738. extra: 764/739,
  32739. bottom: 25/789
  32740. }
  32741. },
  32742. },
  32743. [
  32744. {
  32745. name: "Normal",
  32746. height: math.unit(5 + 10/12, "feet"),
  32747. default: true
  32748. },
  32749. ]
  32750. ))
  32751. characterMakers.push(() => makeCharacter(
  32752. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32753. {
  32754. front: {
  32755. height: math.unit(8, "feet"),
  32756. weight: math.unit(250, "lb"),
  32757. name: "Front",
  32758. image: {
  32759. source: "./media/characters/eikthynir/front.svg",
  32760. extra: 1332/1166,
  32761. bottom: 82/1414
  32762. }
  32763. },
  32764. back: {
  32765. height: math.unit(8, "feet"),
  32766. weight: math.unit(250, "lb"),
  32767. name: "Back",
  32768. image: {
  32769. source: "./media/characters/eikthynir/back.svg",
  32770. extra: 1342/1190,
  32771. bottom: 19/1361
  32772. }
  32773. },
  32774. dick: {
  32775. height: math.unit(2.35, "feet"),
  32776. name: "Dick",
  32777. image: {
  32778. source: "./media/characters/eikthynir/dick.svg"
  32779. }
  32780. },
  32781. },
  32782. [
  32783. {
  32784. name: "Normal",
  32785. height: math.unit(8, "feet"),
  32786. default: true
  32787. },
  32788. ]
  32789. ))
  32790. characterMakers.push(() => makeCharacter(
  32791. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32792. {
  32793. front: {
  32794. height: math.unit(99, "meters"),
  32795. weight: math.unit(13000, "tons"),
  32796. name: "Front",
  32797. image: {
  32798. source: "./media/characters/zlmos/front.svg",
  32799. extra: 2202/1992,
  32800. bottom: 315/2517
  32801. }
  32802. },
  32803. },
  32804. [
  32805. {
  32806. name: "Macro",
  32807. height: math.unit(99, "meters"),
  32808. default: true
  32809. },
  32810. ]
  32811. ))
  32812. characterMakers.push(() => makeCharacter(
  32813. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32814. {
  32815. front: {
  32816. height: math.unit(6 + 5/12, "feet"),
  32817. name: "Front",
  32818. image: {
  32819. source: "./media/characters/purri/front.svg",
  32820. extra: 1698/1610,
  32821. bottom: 32/1730
  32822. }
  32823. },
  32824. frontAlt: {
  32825. height: math.unit(6 + 5/12, "feet"),
  32826. name: "Front (Alt)",
  32827. image: {
  32828. source: "./media/characters/purri/front-alt.svg",
  32829. extra: 450/420,
  32830. bottom: 26/476
  32831. }
  32832. },
  32833. boots: {
  32834. height: math.unit(5.5, "feet"),
  32835. name: "Boots",
  32836. image: {
  32837. source: "./media/characters/purri/boots.svg",
  32838. extra: 905/853,
  32839. bottom: 18/923
  32840. }
  32841. },
  32842. lying: {
  32843. height: math.unit(2, "feet"),
  32844. name: "Lying",
  32845. image: {
  32846. source: "./media/characters/purri/lying.svg",
  32847. extra: 940/843,
  32848. bottom: 146/1086
  32849. }
  32850. },
  32851. devious: {
  32852. height: math.unit(1.77, "feet"),
  32853. name: "Devious",
  32854. image: {
  32855. source: "./media/characters/purri/devious.svg",
  32856. extra: 1440/1155,
  32857. bottom: 147/1587
  32858. }
  32859. },
  32860. bean: {
  32861. height: math.unit(1.94, "feet"),
  32862. name: "Bean",
  32863. image: {
  32864. source: "./media/characters/purri/bean.svg"
  32865. }
  32866. },
  32867. },
  32868. [
  32869. {
  32870. name: "Micro",
  32871. height: math.unit(1, "mm")
  32872. },
  32873. {
  32874. name: "Normal",
  32875. height: math.unit(6 + 5/12, "feet"),
  32876. default: true
  32877. },
  32878. {
  32879. name: "Macro :3c",
  32880. height: math.unit(2, "miles")
  32881. },
  32882. ]
  32883. ))
  32884. characterMakers.push(() => makeCharacter(
  32885. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32886. {
  32887. front: {
  32888. height: math.unit(6 + 2/12, "feet"),
  32889. weight: math.unit(250, "lb"),
  32890. name: "Front",
  32891. image: {
  32892. source: "./media/characters/moonlight/front.svg",
  32893. extra: 1044/908,
  32894. bottom: 56/1100
  32895. }
  32896. },
  32897. feral: {
  32898. height: math.unit(3 + 1/12, "feet"),
  32899. weight: math.unit(50, "kg"),
  32900. name: "Feral",
  32901. image: {
  32902. source: "./media/characters/moonlight/feral.svg",
  32903. extra: 3705/2791,
  32904. bottom: 145/3850
  32905. }
  32906. },
  32907. paw: {
  32908. height: math.unit(1, "feet"),
  32909. name: "Paw",
  32910. image: {
  32911. source: "./media/characters/moonlight/paw.svg"
  32912. }
  32913. },
  32914. paws: {
  32915. height: math.unit(0.98, "feet"),
  32916. name: "Paws",
  32917. image: {
  32918. source: "./media/characters/moonlight/paws.svg",
  32919. extra: 939/939,
  32920. bottom: 50/989
  32921. }
  32922. },
  32923. mouth: {
  32924. height: math.unit(0.48, "feet"),
  32925. name: "Mouth",
  32926. image: {
  32927. source: "./media/characters/moonlight/mouth.svg"
  32928. }
  32929. },
  32930. dick: {
  32931. height: math.unit(1.46, "feet"),
  32932. name: "Dick",
  32933. image: {
  32934. source: "./media/characters/moonlight/dick.svg"
  32935. }
  32936. },
  32937. },
  32938. [
  32939. {
  32940. name: "Normal",
  32941. height: math.unit(6 + 2/12, "feet"),
  32942. default: true
  32943. },
  32944. {
  32945. name: "Macro",
  32946. height: math.unit(300, "feet")
  32947. },
  32948. {
  32949. name: "Macro+",
  32950. height: math.unit(1, "mile")
  32951. },
  32952. {
  32953. name: "Mt. Moon",
  32954. height: math.unit(5, "miles")
  32955. },
  32956. {
  32957. name: "Megamacro",
  32958. height: math.unit(15, "miles")
  32959. },
  32960. ]
  32961. ))
  32962. characterMakers.push(() => makeCharacter(
  32963. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32964. {
  32965. back: {
  32966. height: math.unit(6, "feet"),
  32967. weight: math.unit(150, "lb"),
  32968. name: "Back",
  32969. image: {
  32970. source: "./media/characters/sylen/back.svg",
  32971. extra: 1335/1273,
  32972. bottom: 107/1442
  32973. }
  32974. },
  32975. },
  32976. [
  32977. {
  32978. name: "Normal",
  32979. height: math.unit(5 + 5/12, "feet")
  32980. },
  32981. {
  32982. name: "Megamacro",
  32983. height: math.unit(3, "miles"),
  32984. default: true
  32985. },
  32986. ]
  32987. ))
  32988. characterMakers.push(() => makeCharacter(
  32989. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32990. {
  32991. front: {
  32992. height: math.unit(6, "feet"),
  32993. weight: math.unit(190, "lb"),
  32994. name: "Front",
  32995. image: {
  32996. source: "./media/characters/huttser/front.svg",
  32997. extra: 1152/1058,
  32998. bottom: 23/1175
  32999. }
  33000. },
  33001. side: {
  33002. height: math.unit(6, "feet"),
  33003. weight: math.unit(190, "lb"),
  33004. name: "Side",
  33005. image: {
  33006. source: "./media/characters/huttser/side.svg",
  33007. extra: 1174/1065,
  33008. bottom: 18/1192
  33009. }
  33010. },
  33011. back: {
  33012. height: math.unit(6, "feet"),
  33013. weight: math.unit(190, "lb"),
  33014. name: "Back",
  33015. image: {
  33016. source: "./media/characters/huttser/back.svg",
  33017. extra: 1158/1056,
  33018. bottom: 12/1170
  33019. }
  33020. },
  33021. },
  33022. [
  33023. ]
  33024. ))
  33025. characterMakers.push(() => makeCharacter(
  33026. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  33027. {
  33028. side: {
  33029. height: math.unit(12 + 9/12, "feet"),
  33030. weight: math.unit(15000, "lb"),
  33031. name: "Side",
  33032. image: {
  33033. source: "./media/characters/faan/side.svg",
  33034. extra: 2747/2697,
  33035. bottom: 0/2747
  33036. }
  33037. },
  33038. front: {
  33039. height: math.unit(12 + 9/12, "feet"),
  33040. weight: math.unit(15000, "lb"),
  33041. name: "Front",
  33042. image: {
  33043. source: "./media/characters/faan/front.svg",
  33044. extra: 607/571,
  33045. bottom: 24/631
  33046. }
  33047. },
  33048. head: {
  33049. height: math.unit(2.85, "feet"),
  33050. name: "Head",
  33051. image: {
  33052. source: "./media/characters/faan/head.svg"
  33053. }
  33054. },
  33055. headAlt: {
  33056. height: math.unit(3.13, "feet"),
  33057. name: "Head-alt",
  33058. image: {
  33059. source: "./media/characters/faan/head-alt.svg"
  33060. }
  33061. },
  33062. },
  33063. [
  33064. {
  33065. name: "Normal",
  33066. height: math.unit(12 + 9/12, "feet"),
  33067. default: true
  33068. },
  33069. ]
  33070. ))
  33071. characterMakers.push(() => makeCharacter(
  33072. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  33073. {
  33074. front: {
  33075. height: math.unit(6, "feet"),
  33076. weight: math.unit(300, "lb"),
  33077. name: "Front",
  33078. image: {
  33079. source: "./media/characters/tanio/front.svg",
  33080. extra: 711/673,
  33081. bottom: 25/736
  33082. }
  33083. },
  33084. },
  33085. [
  33086. {
  33087. name: "Normal",
  33088. height: math.unit(6, "feet"),
  33089. default: true
  33090. },
  33091. ]
  33092. ))
  33093. characterMakers.push(() => makeCharacter(
  33094. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  33095. {
  33096. front: {
  33097. height: math.unit(3, "inches"),
  33098. name: "Front",
  33099. image: {
  33100. source: "./media/characters/noboru/front.svg",
  33101. extra: 1039/932,
  33102. bottom: 18/1057
  33103. }
  33104. },
  33105. },
  33106. [
  33107. {
  33108. name: "Micro",
  33109. height: math.unit(3, "inches"),
  33110. default: true
  33111. },
  33112. ]
  33113. ))
  33114. characterMakers.push(() => makeCharacter(
  33115. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  33116. {
  33117. front: {
  33118. height: math.unit(1.85, "meters"),
  33119. weight: math.unit(80, "kg"),
  33120. name: "Front",
  33121. image: {
  33122. source: "./media/characters/daniel-barrett/front.svg",
  33123. extra: 355/337,
  33124. bottom: 9/364
  33125. }
  33126. },
  33127. },
  33128. [
  33129. {
  33130. name: "Pico",
  33131. height: math.unit(0.0433, "mm")
  33132. },
  33133. {
  33134. name: "Nano",
  33135. height: math.unit(1.5, "mm")
  33136. },
  33137. {
  33138. name: "Micro",
  33139. height: math.unit(5.3, "cm"),
  33140. default: true
  33141. },
  33142. {
  33143. name: "Normal",
  33144. height: math.unit(1.85, "meters")
  33145. },
  33146. {
  33147. name: "Macro",
  33148. height: math.unit(64.7, "meters")
  33149. },
  33150. {
  33151. name: "Megamacro",
  33152. height: math.unit(2.26, "km")
  33153. },
  33154. {
  33155. name: "Gigamacro",
  33156. height: math.unit(79, "km")
  33157. },
  33158. {
  33159. name: "Teramacro",
  33160. height: math.unit(2765, "km")
  33161. },
  33162. {
  33163. name: "Petamacro",
  33164. height: math.unit(96678, "km")
  33165. },
  33166. ]
  33167. ))
  33168. characterMakers.push(() => makeCharacter(
  33169. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  33170. {
  33171. front: {
  33172. height: math.unit(30, "meters"),
  33173. weight: math.unit(400, "tons"),
  33174. name: "Front",
  33175. image: {
  33176. source: "./media/characters/zeel/front.svg",
  33177. extra: 2599/2599,
  33178. bottom: 226/2825
  33179. }
  33180. },
  33181. },
  33182. [
  33183. {
  33184. name: "Macro",
  33185. height: math.unit(30, "meters"),
  33186. default: true
  33187. },
  33188. ]
  33189. ))
  33190. characterMakers.push(() => makeCharacter(
  33191. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  33192. {
  33193. front: {
  33194. height: math.unit(6 + 7/12, "feet"),
  33195. weight: math.unit(210, "lb"),
  33196. name: "Front",
  33197. image: {
  33198. source: "./media/characters/tarn/front.svg",
  33199. extra: 3517/3220,
  33200. bottom: 91/3608
  33201. }
  33202. },
  33203. back: {
  33204. height: math.unit(6 + 7/12, "feet"),
  33205. weight: math.unit(210, "lb"),
  33206. name: "Back",
  33207. image: {
  33208. source: "./media/characters/tarn/back.svg",
  33209. extra: 3566/3241,
  33210. bottom: 34/3600
  33211. }
  33212. },
  33213. dick: {
  33214. height: math.unit(1.65, "feet"),
  33215. name: "Dick",
  33216. image: {
  33217. source: "./media/characters/tarn/dick.svg"
  33218. }
  33219. },
  33220. paw: {
  33221. height: math.unit(1.80, "feet"),
  33222. name: "Paw",
  33223. image: {
  33224. source: "./media/characters/tarn/paw.svg"
  33225. }
  33226. },
  33227. tongue: {
  33228. height: math.unit(0.97, "feet"),
  33229. name: "Tongue",
  33230. image: {
  33231. source: "./media/characters/tarn/tongue.svg"
  33232. }
  33233. },
  33234. },
  33235. [
  33236. {
  33237. name: "Micro",
  33238. height: math.unit(4, "inches")
  33239. },
  33240. {
  33241. name: "Normal",
  33242. height: math.unit(6 + 7/12, "feet"),
  33243. default: true
  33244. },
  33245. {
  33246. name: "Macro",
  33247. height: math.unit(300, "feet")
  33248. },
  33249. ]
  33250. ))
  33251. characterMakers.push(() => makeCharacter(
  33252. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  33253. {
  33254. front: {
  33255. height: math.unit(5 + 7/12, "feet"),
  33256. weight: math.unit(80, "kg"),
  33257. name: "Front",
  33258. image: {
  33259. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  33260. extra: 3023/2865,
  33261. bottom: 33/3056
  33262. }
  33263. },
  33264. back: {
  33265. height: math.unit(5 + 7/12, "feet"),
  33266. weight: math.unit(80, "kg"),
  33267. name: "Back",
  33268. image: {
  33269. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  33270. extra: 3020/2886,
  33271. bottom: 30/3050
  33272. }
  33273. },
  33274. dick: {
  33275. height: math.unit(0.98, "feet"),
  33276. name: "Dick",
  33277. image: {
  33278. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  33279. }
  33280. },
  33281. anatomy: {
  33282. height: math.unit(2.86, "feet"),
  33283. name: "Anatomy",
  33284. image: {
  33285. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  33286. }
  33287. },
  33288. },
  33289. [
  33290. {
  33291. name: "Really Small",
  33292. height: math.unit(2, "inches")
  33293. },
  33294. {
  33295. name: "Micro",
  33296. height: math.unit(5.583, "inches")
  33297. },
  33298. {
  33299. name: "Normal",
  33300. height: math.unit(5 + 7/12, "feet"),
  33301. default: true
  33302. },
  33303. {
  33304. name: "Macro",
  33305. height: math.unit(67, "feet")
  33306. },
  33307. {
  33308. name: "Megamacro",
  33309. height: math.unit(134, "feet")
  33310. },
  33311. ]
  33312. ))
  33313. characterMakers.push(() => makeCharacter(
  33314. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  33315. {
  33316. front: {
  33317. height: math.unit(9, "feet"),
  33318. weight: math.unit(120, "lb"),
  33319. name: "Front",
  33320. image: {
  33321. source: "./media/characters/sally/front.svg",
  33322. extra: 1506/1349,
  33323. bottom: 66/1572
  33324. }
  33325. },
  33326. },
  33327. [
  33328. {
  33329. name: "Normal",
  33330. height: math.unit(9, "feet"),
  33331. default: true
  33332. },
  33333. ]
  33334. ))
  33335. characterMakers.push(() => makeCharacter(
  33336. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  33337. {
  33338. front: {
  33339. height: math.unit(8, "feet"),
  33340. weight: math.unit(900, "lb"),
  33341. name: "Front",
  33342. image: {
  33343. source: "./media/characters/owen/front.svg",
  33344. extra: 1761/1657,
  33345. bottom: 74/1835
  33346. }
  33347. },
  33348. side: {
  33349. height: math.unit(8, "feet"),
  33350. weight: math.unit(900, "lb"),
  33351. name: "Side",
  33352. image: {
  33353. source: "./media/characters/owen/side.svg",
  33354. extra: 1797/1734,
  33355. bottom: 30/1827
  33356. }
  33357. },
  33358. back: {
  33359. height: math.unit(8, "feet"),
  33360. weight: math.unit(900, "lb"),
  33361. name: "Back",
  33362. image: {
  33363. source: "./media/characters/owen/back.svg",
  33364. extra: 1796/1706,
  33365. bottom: 59/1855
  33366. }
  33367. },
  33368. maw: {
  33369. height: math.unit(1.76, "feet"),
  33370. name: "Maw",
  33371. image: {
  33372. source: "./media/characters/owen/maw.svg"
  33373. }
  33374. },
  33375. },
  33376. [
  33377. {
  33378. name: "Normal",
  33379. height: math.unit(8, "feet"),
  33380. default: true
  33381. },
  33382. ]
  33383. ))
  33384. characterMakers.push(() => makeCharacter(
  33385. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  33386. {
  33387. front: {
  33388. height: math.unit(4, "feet"),
  33389. weight: math.unit(400, "lb"),
  33390. name: "Front",
  33391. image: {
  33392. source: "./media/characters/ryth/front.svg",
  33393. extra: 1920/1748,
  33394. bottom: 42/1962
  33395. }
  33396. },
  33397. back: {
  33398. height: math.unit(4, "feet"),
  33399. weight: math.unit(400, "lb"),
  33400. name: "Back",
  33401. image: {
  33402. source: "./media/characters/ryth/back.svg",
  33403. extra: 1897/1690,
  33404. bottom: 89/1986
  33405. }
  33406. },
  33407. mouth: {
  33408. height: math.unit(1.39, "feet"),
  33409. name: "Mouth",
  33410. image: {
  33411. source: "./media/characters/ryth/mouth.svg"
  33412. }
  33413. },
  33414. tailmaw: {
  33415. height: math.unit(1.23, "feet"),
  33416. name: "Tailmaw",
  33417. image: {
  33418. source: "./media/characters/ryth/tailmaw.svg"
  33419. }
  33420. },
  33421. goia: {
  33422. height: math.unit(4, "meters"),
  33423. weight: math.unit(10800, "lb"),
  33424. name: "Goia",
  33425. image: {
  33426. source: "./media/characters/ryth/goia.svg",
  33427. extra: 745/640,
  33428. bottom: 107/852
  33429. }
  33430. },
  33431. goiaFront: {
  33432. height: math.unit(4, "meters"),
  33433. weight: math.unit(10800, "lb"),
  33434. name: "Goia (Front)",
  33435. image: {
  33436. source: "./media/characters/ryth/goia-front.svg",
  33437. extra: 750/586,
  33438. bottom: 114/864
  33439. }
  33440. },
  33441. goiaMaw: {
  33442. height: math.unit(5.55, "feet"),
  33443. name: "Goia Maw",
  33444. image: {
  33445. source: "./media/characters/ryth/goia-maw.svg"
  33446. }
  33447. },
  33448. goiaForepaw: {
  33449. height: math.unit(3.5, "feet"),
  33450. name: "Goia Forepaw",
  33451. image: {
  33452. source: "./media/characters/ryth/goia-forepaw.svg"
  33453. }
  33454. },
  33455. goiaHindpaw: {
  33456. height: math.unit(5.55, "feet"),
  33457. name: "Goia Hindpaw",
  33458. image: {
  33459. source: "./media/characters/ryth/goia-hindpaw.svg"
  33460. }
  33461. },
  33462. },
  33463. [
  33464. {
  33465. name: "Normal",
  33466. height: math.unit(4, "feet"),
  33467. default: true
  33468. },
  33469. ]
  33470. ))
  33471. characterMakers.push(() => makeCharacter(
  33472. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  33473. {
  33474. front: {
  33475. height: math.unit(7, "feet"),
  33476. weight: math.unit(180, "lb"),
  33477. name: "Front",
  33478. image: {
  33479. source: "./media/characters/necrolance/front.svg",
  33480. extra: 1062/947,
  33481. bottom: 41/1103
  33482. }
  33483. },
  33484. back: {
  33485. height: math.unit(7, "feet"),
  33486. weight: math.unit(180, "lb"),
  33487. name: "Back",
  33488. image: {
  33489. source: "./media/characters/necrolance/back.svg",
  33490. extra: 1045/984,
  33491. bottom: 14/1059
  33492. }
  33493. },
  33494. wing: {
  33495. height: math.unit(2.67, "feet"),
  33496. name: "Wing",
  33497. image: {
  33498. source: "./media/characters/necrolance/wing.svg"
  33499. }
  33500. },
  33501. },
  33502. [
  33503. {
  33504. name: "Normal",
  33505. height: math.unit(7, "feet"),
  33506. default: true
  33507. },
  33508. ]
  33509. ))
  33510. characterMakers.push(() => makeCharacter(
  33511. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  33512. {
  33513. front: {
  33514. height: math.unit(76, "meters"),
  33515. weight: math.unit(30000, "tons"),
  33516. name: "Front",
  33517. image: {
  33518. source: "./media/characters/tyler/front.svg",
  33519. extra: 1640/1640,
  33520. bottom: 114/1754
  33521. }
  33522. },
  33523. },
  33524. [
  33525. {
  33526. name: "Macro",
  33527. height: math.unit(76, "meters"),
  33528. default: true
  33529. },
  33530. ]
  33531. ))
  33532. characterMakers.push(() => makeCharacter(
  33533. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33534. {
  33535. front: {
  33536. height: math.unit(4 + 11/12, "feet"),
  33537. weight: math.unit(132, "lb"),
  33538. name: "Front",
  33539. image: {
  33540. source: "./media/characters/icey/front.svg",
  33541. extra: 2750/2550,
  33542. bottom: 33/2783
  33543. }
  33544. },
  33545. back: {
  33546. height: math.unit(4 + 11/12, "feet"),
  33547. weight: math.unit(132, "lb"),
  33548. name: "Back",
  33549. image: {
  33550. source: "./media/characters/icey/back.svg",
  33551. extra: 2624/2481,
  33552. bottom: 35/2659
  33553. }
  33554. },
  33555. },
  33556. [
  33557. {
  33558. name: "Normal",
  33559. height: math.unit(4 + 11/12, "feet"),
  33560. default: true
  33561. },
  33562. ]
  33563. ))
  33564. characterMakers.push(() => makeCharacter(
  33565. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33566. {
  33567. front: {
  33568. height: math.unit(100, "feet"),
  33569. weight: math.unit(0, "lb"),
  33570. name: "Front",
  33571. image: {
  33572. source: "./media/characters/smile/front.svg",
  33573. extra: 2983/2912,
  33574. bottom: 162/3145
  33575. }
  33576. },
  33577. back: {
  33578. height: math.unit(100, "feet"),
  33579. weight: math.unit(0, "lb"),
  33580. name: "Back",
  33581. image: {
  33582. source: "./media/characters/smile/back.svg",
  33583. extra: 3143/3031,
  33584. bottom: 91/3234
  33585. }
  33586. },
  33587. head: {
  33588. height: math.unit(26.3, "feet"),
  33589. weight: math.unit(0, "lb"),
  33590. name: "Head",
  33591. image: {
  33592. source: "./media/characters/smile/head.svg"
  33593. }
  33594. },
  33595. collar: {
  33596. height: math.unit(5.3, "feet"),
  33597. weight: math.unit(0, "lb"),
  33598. name: "Collar",
  33599. image: {
  33600. source: "./media/characters/smile/collar.svg"
  33601. }
  33602. },
  33603. },
  33604. [
  33605. {
  33606. name: "Macro",
  33607. height: math.unit(100, "feet"),
  33608. default: true
  33609. },
  33610. ]
  33611. ))
  33612. characterMakers.push(() => makeCharacter(
  33613. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33614. {
  33615. dragon: {
  33616. height: math.unit(26, "feet"),
  33617. weight: math.unit(36, "tons"),
  33618. name: "Dragon",
  33619. image: {
  33620. source: "./media/characters/arimphae/dragon.svg",
  33621. extra: 1574/983,
  33622. bottom: 357/1931
  33623. }
  33624. },
  33625. drake: {
  33626. height: math.unit(9, "feet"),
  33627. weight: math.unit(1.5, "tons"),
  33628. name: "Drake",
  33629. image: {
  33630. source: "./media/characters/arimphae/drake.svg",
  33631. extra: 1120/925,
  33632. bottom: 435/1555
  33633. }
  33634. },
  33635. },
  33636. [
  33637. {
  33638. name: "Small",
  33639. height: math.unit(26*5/9, "feet")
  33640. },
  33641. {
  33642. name: "Normal",
  33643. height: math.unit(26, "feet"),
  33644. default: true
  33645. },
  33646. ]
  33647. ))
  33648. characterMakers.push(() => makeCharacter(
  33649. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33650. {
  33651. front: {
  33652. height: math.unit(8 + 9/12, "feet"),
  33653. name: "Front",
  33654. image: {
  33655. source: "./media/characters/xander/front.svg",
  33656. extra: 1237/974,
  33657. bottom: 94/1331
  33658. }
  33659. },
  33660. },
  33661. [
  33662. {
  33663. name: "Normal",
  33664. height: math.unit(8 + 9/12, "feet"),
  33665. default: true
  33666. },
  33667. {
  33668. name: "Gaze Grabber",
  33669. height: math.unit(13 + 8/12, "feet")
  33670. },
  33671. {
  33672. name: "Jaw Dropper",
  33673. height: math.unit(27, "feet")
  33674. },
  33675. {
  33676. name: "Show Stopper",
  33677. height: math.unit(136, "feet")
  33678. },
  33679. {
  33680. name: "Superstar",
  33681. height: math.unit(1.9e6, "miles")
  33682. },
  33683. ]
  33684. ))
  33685. characterMakers.push(() => makeCharacter(
  33686. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33687. {
  33688. side: {
  33689. height: math.unit(2100, "feet"),
  33690. name: "Side",
  33691. image: {
  33692. source: "./media/characters/osiris/side.svg",
  33693. extra: 1105/939,
  33694. bottom: 167/1272
  33695. }
  33696. },
  33697. },
  33698. [
  33699. {
  33700. name: "Macro",
  33701. height: math.unit(2100, "feet"),
  33702. default: true
  33703. },
  33704. ]
  33705. ))
  33706. characterMakers.push(() => makeCharacter(
  33707. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33708. {
  33709. front: {
  33710. height: math.unit(6 + 8/12, "feet"),
  33711. weight: math.unit(225, "lb"),
  33712. name: "Front",
  33713. image: {
  33714. source: "./media/characters/rhys-londe/front.svg",
  33715. extra: 2258/2141,
  33716. bottom: 188/2446
  33717. }
  33718. },
  33719. back: {
  33720. height: math.unit(6 + 8/12, "feet"),
  33721. weight: math.unit(225, "lb"),
  33722. name: "Back",
  33723. image: {
  33724. source: "./media/characters/rhys-londe/back.svg",
  33725. extra: 2237/2137,
  33726. bottom: 63/2300
  33727. }
  33728. },
  33729. frontNsfw: {
  33730. height: math.unit(6 + 8/12, "feet"),
  33731. weight: math.unit(225, "lb"),
  33732. name: "Front (NSFW)",
  33733. image: {
  33734. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33735. extra: 2258/2141,
  33736. bottom: 188/2446
  33737. }
  33738. },
  33739. backNsfw: {
  33740. height: math.unit(6 + 8/12, "feet"),
  33741. weight: math.unit(225, "lb"),
  33742. name: "Back (NSFW)",
  33743. image: {
  33744. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33745. extra: 2237/2137,
  33746. bottom: 63/2300
  33747. }
  33748. },
  33749. dick: {
  33750. height: math.unit(30, "inches"),
  33751. name: "Dick",
  33752. image: {
  33753. source: "./media/characters/rhys-londe/dick.svg"
  33754. }
  33755. },
  33756. maw: {
  33757. height: math.unit(1.6, "feet"),
  33758. name: "Maw",
  33759. image: {
  33760. source: "./media/characters/rhys-londe/maw.svg"
  33761. }
  33762. },
  33763. },
  33764. [
  33765. {
  33766. name: "Normal",
  33767. height: math.unit(6 + 8/12, "feet"),
  33768. default: true
  33769. },
  33770. ]
  33771. ))
  33772. characterMakers.push(() => makeCharacter(
  33773. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33774. {
  33775. front: {
  33776. height: math.unit(3 + 10/12, "feet"),
  33777. weight: math.unit(90, "lb"),
  33778. name: "Front",
  33779. image: {
  33780. source: "./media/characters/taivas-ensim/front.svg",
  33781. extra: 1327/1216,
  33782. bottom: 96/1423
  33783. }
  33784. },
  33785. back: {
  33786. height: math.unit(3 + 10/12, "feet"),
  33787. weight: math.unit(90, "lb"),
  33788. name: "Back",
  33789. image: {
  33790. source: "./media/characters/taivas-ensim/back.svg",
  33791. extra: 1355/1247,
  33792. bottom: 11/1366
  33793. }
  33794. },
  33795. frontNsfw: {
  33796. height: math.unit(3 + 10/12, "feet"),
  33797. weight: math.unit(90, "lb"),
  33798. name: "Front (NSFW)",
  33799. image: {
  33800. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33801. extra: 1327/1216,
  33802. bottom: 96/1423
  33803. }
  33804. },
  33805. backNsfw: {
  33806. height: math.unit(3 + 10/12, "feet"),
  33807. weight: math.unit(90, "lb"),
  33808. name: "Back (NSFW)",
  33809. image: {
  33810. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33811. extra: 1355/1247,
  33812. bottom: 11/1366
  33813. }
  33814. },
  33815. },
  33816. [
  33817. {
  33818. name: "Normal",
  33819. height: math.unit(3 + 10/12, "feet"),
  33820. default: true
  33821. },
  33822. ]
  33823. ))
  33824. characterMakers.push(() => makeCharacter(
  33825. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33826. {
  33827. front: {
  33828. height: math.unit(9 + 6/12, "feet"),
  33829. weight: math.unit(940, "lb"),
  33830. name: "Front",
  33831. image: {
  33832. source: "./media/characters/byliss/front.svg",
  33833. extra: 1327/1290,
  33834. bottom: 82/1409
  33835. }
  33836. },
  33837. back: {
  33838. height: math.unit(9 + 6/12, "feet"),
  33839. weight: math.unit(940, "lb"),
  33840. name: "Back",
  33841. image: {
  33842. source: "./media/characters/byliss/back.svg",
  33843. extra: 1376/1349,
  33844. bottom: 9/1385
  33845. }
  33846. },
  33847. frontNsfw: {
  33848. height: math.unit(9 + 6/12, "feet"),
  33849. weight: math.unit(940, "lb"),
  33850. name: "Front (NSFW)",
  33851. image: {
  33852. source: "./media/characters/byliss/front-nsfw.svg",
  33853. extra: 1327/1290,
  33854. bottom: 82/1409
  33855. }
  33856. },
  33857. backNsfw: {
  33858. height: math.unit(9 + 6/12, "feet"),
  33859. weight: math.unit(940, "lb"),
  33860. name: "Back (NSFW)",
  33861. image: {
  33862. source: "./media/characters/byliss/back-nsfw.svg",
  33863. extra: 1376/1349,
  33864. bottom: 9/1385
  33865. }
  33866. },
  33867. },
  33868. [
  33869. {
  33870. name: "Normal",
  33871. height: math.unit(9 + 6/12, "feet"),
  33872. default: true
  33873. },
  33874. ]
  33875. ))
  33876. characterMakers.push(() => makeCharacter(
  33877. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33878. {
  33879. front: {
  33880. height: math.unit(5 + 2/12, "feet"),
  33881. weight: math.unit(200, "lb"),
  33882. name: "Front",
  33883. image: {
  33884. source: "./media/characters/noraly/front.svg",
  33885. extra: 4985/4773,
  33886. bottom: 150/5135
  33887. }
  33888. },
  33889. full: {
  33890. height: math.unit(5 + 2/12, "feet"),
  33891. weight: math.unit(164, "lb"),
  33892. name: "Full",
  33893. image: {
  33894. source: "./media/characters/noraly/full.svg",
  33895. extra: 1114/1059,
  33896. bottom: 35/1149
  33897. }
  33898. },
  33899. fuller: {
  33900. height: math.unit(5 + 2/12, "feet"),
  33901. weight: math.unit(230, "lb"),
  33902. name: "Fuller",
  33903. image: {
  33904. source: "./media/characters/noraly/fuller.svg",
  33905. extra: 1114/1059,
  33906. bottom: 35/1149
  33907. }
  33908. },
  33909. fullest: {
  33910. height: math.unit(5 + 2/12, "feet"),
  33911. weight: math.unit(300, "lb"),
  33912. name: "Fullest",
  33913. image: {
  33914. source: "./media/characters/noraly/fullest.svg",
  33915. extra: 1114/1059,
  33916. bottom: 35/1149
  33917. }
  33918. },
  33919. },
  33920. [
  33921. {
  33922. name: "Normal",
  33923. height: math.unit(5 + 2/12, "feet"),
  33924. default: true
  33925. },
  33926. ]
  33927. ))
  33928. characterMakers.push(() => makeCharacter(
  33929. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33930. {
  33931. front: {
  33932. height: math.unit(5 + 2/12, "feet"),
  33933. weight: math.unit(210, "lb"),
  33934. name: "Front",
  33935. image: {
  33936. source: "./media/characters/pera/front.svg",
  33937. extra: 1560/1531,
  33938. bottom: 165/1725
  33939. }
  33940. },
  33941. back: {
  33942. height: math.unit(5 + 2/12, "feet"),
  33943. weight: math.unit(210, "lb"),
  33944. name: "Back",
  33945. image: {
  33946. source: "./media/characters/pera/back.svg",
  33947. extra: 1523/1493,
  33948. bottom: 152/1675
  33949. }
  33950. },
  33951. dick: {
  33952. height: math.unit(2.4, "feet"),
  33953. name: "Dick",
  33954. image: {
  33955. source: "./media/characters/pera/dick.svg"
  33956. }
  33957. },
  33958. },
  33959. [
  33960. {
  33961. name: "Normal",
  33962. height: math.unit(5 + 2/12, "feet"),
  33963. default: true
  33964. },
  33965. ]
  33966. ))
  33967. characterMakers.push(() => makeCharacter(
  33968. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33969. {
  33970. front: {
  33971. height: math.unit(12, "feet"),
  33972. weight: math.unit(3200, "lb"),
  33973. name: "Front",
  33974. image: {
  33975. source: "./media/characters/julian/front.svg",
  33976. extra: 2962/2701,
  33977. bottom: 184/3146
  33978. }
  33979. },
  33980. maw: {
  33981. height: math.unit(5.35, "feet"),
  33982. name: "Maw",
  33983. image: {
  33984. source: "./media/characters/julian/maw.svg"
  33985. }
  33986. },
  33987. paw: {
  33988. height: math.unit(3.07, "feet"),
  33989. name: "Paw",
  33990. image: {
  33991. source: "./media/characters/julian/paw.svg"
  33992. }
  33993. },
  33994. },
  33995. [
  33996. {
  33997. name: "Default",
  33998. height: math.unit(12, "feet"),
  33999. default: true
  34000. },
  34001. {
  34002. name: "Big",
  34003. height: math.unit(50, "feet")
  34004. },
  34005. {
  34006. name: "Really Big",
  34007. height: math.unit(1, "mile")
  34008. },
  34009. {
  34010. name: "Extremely Big",
  34011. height: math.unit(100, "miles")
  34012. },
  34013. {
  34014. name: "Planet Hugger",
  34015. height: math.unit(200, "megameters")
  34016. },
  34017. {
  34018. name: "Unreasonably Big",
  34019. height: math.unit(1e300, "meters")
  34020. },
  34021. ]
  34022. ))
  34023. characterMakers.push(() => makeCharacter(
  34024. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  34025. {
  34026. solgooleo: {
  34027. height: math.unit(4, "meters"),
  34028. weight: math.unit(6000*1.5, "kg"),
  34029. volume: math.unit(6000, "liters"),
  34030. name: "Solgooleo",
  34031. image: {
  34032. source: "./media/characters/pi/solgooleo.svg",
  34033. extra: 388/331,
  34034. bottom: 29/417
  34035. }
  34036. },
  34037. },
  34038. [
  34039. {
  34040. name: "Normal",
  34041. height: math.unit(4, "meters"),
  34042. default: true
  34043. },
  34044. ]
  34045. ))
  34046. characterMakers.push(() => makeCharacter(
  34047. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  34048. {
  34049. front: {
  34050. height: math.unit(8, "feet"),
  34051. weight: math.unit(4, "tons"),
  34052. name: "Front",
  34053. image: {
  34054. source: "./media/characters/shaun/front.svg",
  34055. extra: 503/495,
  34056. bottom: 20/523
  34057. }
  34058. },
  34059. back: {
  34060. height: math.unit(8, "feet"),
  34061. weight: math.unit(4, "tons"),
  34062. name: "Back",
  34063. image: {
  34064. source: "./media/characters/shaun/back.svg",
  34065. extra: 487/480,
  34066. bottom: 20/507
  34067. }
  34068. },
  34069. },
  34070. [
  34071. {
  34072. name: "Lorg",
  34073. height: math.unit(8, "feet"),
  34074. default: true
  34075. },
  34076. ]
  34077. ))
  34078. characterMakers.push(() => makeCharacter(
  34079. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  34080. {
  34081. frontAnthro: {
  34082. height: math.unit(7, "feet"),
  34083. name: "Front",
  34084. image: {
  34085. source: "./media/characters/sini/front-anthro.svg",
  34086. extra: 726/678,
  34087. bottom: 35/761
  34088. },
  34089. form: "anthro",
  34090. default: true
  34091. },
  34092. backAnthro: {
  34093. height: math.unit(7, "feet"),
  34094. name: "Back",
  34095. image: {
  34096. source: "./media/characters/sini/back-anthro.svg",
  34097. extra: 743/701,
  34098. bottom: 12/755
  34099. },
  34100. form: "anthro",
  34101. },
  34102. frontAnthroNsfw: {
  34103. height: math.unit(7, "feet"),
  34104. name: "Front (NSFW)",
  34105. image: {
  34106. source: "./media/characters/sini/front-anthro-nsfw.svg",
  34107. extra: 726/678,
  34108. bottom: 35/761
  34109. },
  34110. form: "anthro"
  34111. },
  34112. backAnthroNsfw: {
  34113. height: math.unit(7, "feet"),
  34114. name: "Back (NSFW)",
  34115. image: {
  34116. source: "./media/characters/sini/back-anthro-nsfw.svg",
  34117. extra: 743/701,
  34118. bottom: 12/755
  34119. },
  34120. form: "anthro",
  34121. },
  34122. mawAnthro: {
  34123. height: math.unit(2.14, "feet"),
  34124. name: "Maw",
  34125. image: {
  34126. source: "./media/characters/sini/maw-anthro.svg"
  34127. },
  34128. form: "anthro"
  34129. },
  34130. dick: {
  34131. height: math.unit(1.45, "feet"),
  34132. name: "Dick",
  34133. image: {
  34134. source: "./media/characters/sini/dick-anthro.svg"
  34135. },
  34136. form: "anthro"
  34137. },
  34138. feral: {
  34139. height: math.unit(16, "feet"),
  34140. name: "Feral",
  34141. image: {
  34142. source: "./media/characters/sini/feral.svg",
  34143. extra: 814/605,
  34144. bottom: 11/825
  34145. },
  34146. form: "feral",
  34147. default: true
  34148. },
  34149. feralNsfw: {
  34150. height: math.unit(16, "feet"),
  34151. name: "Feral (NSFW)",
  34152. image: {
  34153. source: "./media/characters/sini/feral-nsfw.svg",
  34154. extra: 814/605,
  34155. bottom: 11/825
  34156. },
  34157. form: "feral"
  34158. },
  34159. mawFeral: {
  34160. height: math.unit(5.66, "feet"),
  34161. name: "Maw",
  34162. image: {
  34163. source: "./media/characters/sini/maw-feral.svg"
  34164. },
  34165. form: "feral",
  34166. },
  34167. pawFeral: {
  34168. height: math.unit(5.17, "feet"),
  34169. name: "Paw",
  34170. image: {
  34171. source: "./media/characters/sini/paw-feral.svg"
  34172. },
  34173. form: "feral",
  34174. },
  34175. rumpFeral: {
  34176. height: math.unit(13.11, "feet"),
  34177. name: "Rump",
  34178. image: {
  34179. source: "./media/characters/sini/rump-feral.svg"
  34180. },
  34181. form: "feral",
  34182. },
  34183. dickFeral: {
  34184. height: math.unit(1, "feet"),
  34185. name: "Dick",
  34186. image: {
  34187. source: "./media/characters/sini/dick-feral.svg"
  34188. },
  34189. form: "feral",
  34190. },
  34191. eyeFeral: {
  34192. height: math.unit(1.23, "feet"),
  34193. name: "Eye",
  34194. image: {
  34195. source: "./media/characters/sini/eye-feral.svg"
  34196. },
  34197. form: "feral",
  34198. },
  34199. },
  34200. [
  34201. {
  34202. name: "Normal",
  34203. height: math.unit(7, "feet"),
  34204. default: true,
  34205. form: "anthro"
  34206. },
  34207. {
  34208. name: "Normal",
  34209. height: math.unit(16, "feet"),
  34210. default: true,
  34211. form: "feral"
  34212. },
  34213. ],
  34214. {
  34215. "anthro": {
  34216. name: "Anthro",
  34217. default: true
  34218. },
  34219. "feral": {
  34220. name: "Feral",
  34221. }
  34222. }
  34223. ))
  34224. characterMakers.push(() => makeCharacter(
  34225. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  34226. {
  34227. side: {
  34228. height: math.unit(47.2, "meters"),
  34229. weight: math.unit(10000, "tons"),
  34230. name: "Side",
  34231. image: {
  34232. source: "./media/characters/raylldo/side.svg",
  34233. extra: 2363/642,
  34234. bottom: 221/2584
  34235. }
  34236. },
  34237. top: {
  34238. height: math.unit(240, "meters"),
  34239. weight: math.unit(10000, "tons"),
  34240. name: "Top",
  34241. image: {
  34242. source: "./media/characters/raylldo/top.svg"
  34243. }
  34244. },
  34245. bottom: {
  34246. height: math.unit(240, "meters"),
  34247. weight: math.unit(10000, "tons"),
  34248. name: "Bottom",
  34249. image: {
  34250. source: "./media/characters/raylldo/bottom.svg"
  34251. }
  34252. },
  34253. head: {
  34254. height: math.unit(38.6, "meters"),
  34255. name: "Head",
  34256. image: {
  34257. source: "./media/characters/raylldo/head.svg",
  34258. extra: 1335/1112,
  34259. bottom: 0/1335
  34260. }
  34261. },
  34262. maw: {
  34263. height: math.unit(16.37, "meters"),
  34264. name: "Maw",
  34265. image: {
  34266. source: "./media/characters/raylldo/maw.svg",
  34267. extra: 883/660,
  34268. bottom: 0/883
  34269. },
  34270. extraAttributes: {
  34271. preyCapacity: {
  34272. name: "Capacity",
  34273. power: 3,
  34274. type: "volume",
  34275. base: math.unit(1000, "people")
  34276. },
  34277. tongueSize: {
  34278. name: "Tongue Size",
  34279. power: 2,
  34280. type: "area",
  34281. base: math.unit(21, "m^2")
  34282. }
  34283. }
  34284. },
  34285. forepaw: {
  34286. height: math.unit(18, "meters"),
  34287. name: "Forepaw",
  34288. image: {
  34289. source: "./media/characters/raylldo/forepaw.svg"
  34290. }
  34291. },
  34292. hindpaw: {
  34293. height: math.unit(23, "meters"),
  34294. name: "Hindpaw",
  34295. image: {
  34296. source: "./media/characters/raylldo/hindpaw.svg"
  34297. }
  34298. },
  34299. genitals: {
  34300. height: math.unit(42, "meters"),
  34301. name: "Genitals",
  34302. image: {
  34303. source: "./media/characters/raylldo/genitals.svg"
  34304. }
  34305. },
  34306. },
  34307. [
  34308. {
  34309. name: "Normal",
  34310. height: math.unit(47.2, "meters"),
  34311. default: true
  34312. },
  34313. ]
  34314. ))
  34315. characterMakers.push(() => makeCharacter(
  34316. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  34317. {
  34318. anthroFront: {
  34319. height: math.unit(9, "feet"),
  34320. weight: math.unit(600, "lb"),
  34321. name: "Anthro (Front)",
  34322. image: {
  34323. source: "./media/characters/glint/anthro-front.svg",
  34324. extra: 1097/1018,
  34325. bottom: 28/1125
  34326. }
  34327. },
  34328. anthroBack: {
  34329. height: math.unit(9, "feet"),
  34330. weight: math.unit(600, "lb"),
  34331. name: "Anthro (Back)",
  34332. image: {
  34333. source: "./media/characters/glint/anthro-back.svg",
  34334. extra: 1154/997,
  34335. bottom: 36/1190
  34336. }
  34337. },
  34338. feral: {
  34339. height: math.unit(11, "feet"),
  34340. weight: math.unit(50000, "lb"),
  34341. name: "Feral",
  34342. image: {
  34343. source: "./media/characters/glint/feral.svg",
  34344. extra: 3035/1585,
  34345. bottom: 1169/4204
  34346. }
  34347. },
  34348. dickAnthro: {
  34349. height: math.unit(0.7, "meters"),
  34350. name: "Dick (Anthro)",
  34351. image: {
  34352. source: "./media/characters/glint/dick-anthro.svg"
  34353. }
  34354. },
  34355. dickFeral: {
  34356. height: math.unit(2.65, "meters"),
  34357. name: "Dick (Feral)",
  34358. image: {
  34359. source: "./media/characters/glint/dick-feral.svg"
  34360. }
  34361. },
  34362. slitHidden: {
  34363. height: math.unit(5.85, "meters"),
  34364. name: "Slit (Hidden)",
  34365. image: {
  34366. source: "./media/characters/glint/slit-hidden.svg"
  34367. }
  34368. },
  34369. slitErect: {
  34370. height: math.unit(5.85, "meters"),
  34371. name: "Slit (Erect)",
  34372. image: {
  34373. source: "./media/characters/glint/slit-erect.svg"
  34374. }
  34375. },
  34376. mawAnthro: {
  34377. height: math.unit(0.63, "meters"),
  34378. name: "Maw (Anthro)",
  34379. image: {
  34380. source: "./media/characters/glint/maw.svg"
  34381. }
  34382. },
  34383. mawFeral: {
  34384. height: math.unit(2.89, "meters"),
  34385. name: "Maw (Feral)",
  34386. image: {
  34387. source: "./media/characters/glint/maw.svg"
  34388. }
  34389. },
  34390. },
  34391. [
  34392. {
  34393. name: "Normal",
  34394. height: math.unit(9, "feet"),
  34395. default: true
  34396. },
  34397. ]
  34398. ))
  34399. characterMakers.push(() => makeCharacter(
  34400. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  34401. {
  34402. side: {
  34403. height: math.unit(15, "feet"),
  34404. weight: math.unit(5000, "kg"),
  34405. name: "Side",
  34406. image: {
  34407. source: "./media/characters/kairne/side.svg",
  34408. extra: 979/811,
  34409. bottom: 13/992
  34410. }
  34411. },
  34412. front: {
  34413. height: math.unit(15, "feet"),
  34414. weight: math.unit(5000, "kg"),
  34415. name: "Front",
  34416. image: {
  34417. source: "./media/characters/kairne/front.svg",
  34418. extra: 908/814,
  34419. bottom: 26/934
  34420. }
  34421. },
  34422. sideNsfw: {
  34423. height: math.unit(15, "feet"),
  34424. weight: math.unit(5000, "kg"),
  34425. name: "Side (NSFW)",
  34426. image: {
  34427. source: "./media/characters/kairne/side-nsfw.svg",
  34428. extra: 979/811,
  34429. bottom: 13/992
  34430. }
  34431. },
  34432. frontNsfw: {
  34433. height: math.unit(15, "feet"),
  34434. weight: math.unit(5000, "kg"),
  34435. name: "Front (NSFW)",
  34436. image: {
  34437. source: "./media/characters/kairne/front-nsfw.svg",
  34438. extra: 908/814,
  34439. bottom: 26/934
  34440. }
  34441. },
  34442. dickCaged: {
  34443. height: math.unit(0.65, "meters"),
  34444. name: "Dick-caged",
  34445. image: {
  34446. source: "./media/characters/kairne/dick-caged.svg"
  34447. }
  34448. },
  34449. dick: {
  34450. height: math.unit(0.79, "meters"),
  34451. name: "Dick",
  34452. image: {
  34453. source: "./media/characters/kairne/dick.svg"
  34454. }
  34455. },
  34456. genitals: {
  34457. height: math.unit(1.29, "meters"),
  34458. name: "Genitals",
  34459. image: {
  34460. source: "./media/characters/kairne/genitals.svg"
  34461. }
  34462. },
  34463. maw: {
  34464. height: math.unit(1.73, "meters"),
  34465. name: "Maw",
  34466. image: {
  34467. source: "./media/characters/kairne/maw.svg"
  34468. }
  34469. },
  34470. },
  34471. [
  34472. {
  34473. name: "Normal",
  34474. height: math.unit(15, "feet"),
  34475. default: true
  34476. },
  34477. ]
  34478. ))
  34479. characterMakers.push(() => makeCharacter(
  34480. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  34481. {
  34482. front: {
  34483. height: math.unit(5 + 8/12, "feet"),
  34484. weight: math.unit(139, "lb"),
  34485. name: "Front",
  34486. image: {
  34487. source: "./media/characters/biscuit-jackal/front.svg",
  34488. extra: 2106/1961,
  34489. bottom: 58/2164
  34490. }
  34491. },
  34492. back: {
  34493. height: math.unit(5 + 8/12, "feet"),
  34494. weight: math.unit(139, "lb"),
  34495. name: "Back",
  34496. image: {
  34497. source: "./media/characters/biscuit-jackal/back.svg",
  34498. extra: 2132/1976,
  34499. bottom: 57/2189
  34500. }
  34501. },
  34502. werejackal: {
  34503. height: math.unit(6 + 3/12, "feet"),
  34504. weight: math.unit(188, "lb"),
  34505. name: "Werejackal",
  34506. image: {
  34507. source: "./media/characters/biscuit-jackal/werejackal.svg",
  34508. extra: 2373/2178,
  34509. bottom: 53/2426
  34510. }
  34511. },
  34512. },
  34513. [
  34514. {
  34515. name: "Normal",
  34516. height: math.unit(5 + 8/12, "feet"),
  34517. default: true
  34518. },
  34519. ]
  34520. ))
  34521. characterMakers.push(() => makeCharacter(
  34522. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  34523. {
  34524. front: {
  34525. height: math.unit(140, "cm"),
  34526. weight: math.unit(45, "kg"),
  34527. name: "Front",
  34528. image: {
  34529. source: "./media/characters/tayra-white/front.svg",
  34530. extra: 2229/2192,
  34531. bottom: 75/2304
  34532. }
  34533. },
  34534. },
  34535. [
  34536. {
  34537. name: "Normal",
  34538. height: math.unit(140, "cm"),
  34539. default: true
  34540. },
  34541. ]
  34542. ))
  34543. characterMakers.push(() => makeCharacter(
  34544. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34545. {
  34546. front: {
  34547. height: math.unit(4 + 5/12, "feet"),
  34548. name: "Front",
  34549. image: {
  34550. source: "./media/characters/scoop/front.svg",
  34551. extra: 1257/1136,
  34552. bottom: 69/1326
  34553. }
  34554. },
  34555. back: {
  34556. height: math.unit(4 + 5/12, "feet"),
  34557. name: "Back",
  34558. image: {
  34559. source: "./media/characters/scoop/back.svg",
  34560. extra: 1321/1152,
  34561. bottom: 32/1353
  34562. }
  34563. },
  34564. maw: {
  34565. height: math.unit(0.68, "feet"),
  34566. name: "Maw",
  34567. image: {
  34568. source: "./media/characters/scoop/maw.svg"
  34569. }
  34570. },
  34571. },
  34572. [
  34573. {
  34574. name: "Really Small",
  34575. height: math.unit(1, "mm")
  34576. },
  34577. {
  34578. name: "Micro",
  34579. height: math.unit(1, "inch")
  34580. },
  34581. {
  34582. name: "Normal",
  34583. height: math.unit(4 + 5/12, "feet"),
  34584. default: true
  34585. },
  34586. {
  34587. name: "Macro",
  34588. height: math.unit(200, "feet")
  34589. },
  34590. {
  34591. name: "Megamacro",
  34592. height: math.unit(3240, "feet")
  34593. },
  34594. {
  34595. name: "Teramacro",
  34596. height: math.unit(2500, "miles")
  34597. },
  34598. ]
  34599. ))
  34600. characterMakers.push(() => makeCharacter(
  34601. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34602. {
  34603. front: {
  34604. height: math.unit(15 + 7/12, "feet"),
  34605. weight: math.unit(1150, "tons"),
  34606. name: "Front",
  34607. image: {
  34608. source: "./media/characters/saphinara/front.svg",
  34609. extra: 1837/1643,
  34610. bottom: 84/1921
  34611. },
  34612. form: "normal",
  34613. default: true
  34614. },
  34615. side: {
  34616. height: math.unit(15 + 7/12, "feet"),
  34617. weight: math.unit(1150, "tons"),
  34618. name: "Side",
  34619. image: {
  34620. source: "./media/characters/saphinara/side.svg",
  34621. extra: 605/547,
  34622. bottom: 6/611
  34623. },
  34624. form: "normal"
  34625. },
  34626. back: {
  34627. height: math.unit(15 + 7/12, "feet"),
  34628. weight: math.unit(1150, "tons"),
  34629. name: "Back",
  34630. image: {
  34631. source: "./media/characters/saphinara/back.svg",
  34632. extra: 591/531,
  34633. bottom: 13/604
  34634. },
  34635. form: "normal"
  34636. },
  34637. frontTail: {
  34638. height: math.unit(15 + 7/12, "feet"),
  34639. weight: math.unit(1150, "tons"),
  34640. name: "Front (Full Tail)",
  34641. image: {
  34642. source: "./media/characters/saphinara/front-tail.svg",
  34643. extra: 2256/1630,
  34644. bottom: 261/2517
  34645. },
  34646. form: "normal"
  34647. },
  34648. insides: {
  34649. height: math.unit(11.92, "feet"),
  34650. name: "Insides",
  34651. image: {
  34652. source: "./media/characters/saphinara/insides.svg"
  34653. },
  34654. form: "normal"
  34655. },
  34656. head: {
  34657. height: math.unit(4.17, "feet"),
  34658. name: "Head",
  34659. image: {
  34660. source: "./media/characters/saphinara/head.svg"
  34661. },
  34662. form: "normal"
  34663. },
  34664. tongue: {
  34665. height: math.unit(4.60, "feet"),
  34666. name: "Tongue",
  34667. image: {
  34668. source: "./media/characters/saphinara/tongue.svg"
  34669. },
  34670. form: "normal"
  34671. },
  34672. headEnraged: {
  34673. height: math.unit(5.55, "feet"),
  34674. name: "Head (Enraged)",
  34675. image: {
  34676. source: "./media/characters/saphinara/head-enraged.svg"
  34677. },
  34678. form: "normal"
  34679. },
  34680. wings: {
  34681. height: math.unit(11.95, "feet"),
  34682. name: "Wings",
  34683. image: {
  34684. source: "./media/characters/saphinara/wings.svg"
  34685. },
  34686. form: "normal"
  34687. },
  34688. feathers: {
  34689. height: math.unit(8.92, "feet"),
  34690. name: "Feathers",
  34691. image: {
  34692. source: "./media/characters/saphinara/feathers.svg"
  34693. },
  34694. form: "normal"
  34695. },
  34696. shackles: {
  34697. height: math.unit(2, "feet"),
  34698. name: "Shackles",
  34699. image: {
  34700. source: "./media/characters/saphinara/shackles.svg"
  34701. },
  34702. form: "normal"
  34703. },
  34704. eyes: {
  34705. height: math.unit(1.331, "feet"),
  34706. name: "Eyes",
  34707. image: {
  34708. source: "./media/characters/saphinara/eyes.svg"
  34709. },
  34710. form: "normal"
  34711. },
  34712. eyesEnraged: {
  34713. height: math.unit(1.331, "feet"),
  34714. name: "Eyes (Enraged)",
  34715. image: {
  34716. source: "./media/characters/saphinara/eyes-enraged.svg"
  34717. },
  34718. form: "normal"
  34719. },
  34720. trueFormSide: {
  34721. height: math.unit(200, "feet"),
  34722. weight: math.unit(1e7, "tons"),
  34723. name: "Side",
  34724. image: {
  34725. source: "./media/characters/saphinara/true-form-side.svg",
  34726. extra: 1399/770,
  34727. bottom: 97/1496
  34728. },
  34729. form: "true-form",
  34730. default: true
  34731. },
  34732. trueFormMaw: {
  34733. height: math.unit(71.5, "feet"),
  34734. name: "Maw",
  34735. image: {
  34736. source: "./media/characters/saphinara/true-form-maw.svg",
  34737. extra: 2302/1453,
  34738. bottom: 0/2302
  34739. },
  34740. form: "true-form"
  34741. },
  34742. meowberusSide: {
  34743. height: math.unit(75, "feet"),
  34744. weight: math.unit(180000, "kg"),
  34745. preyCapacity: math.unit(50000, "people"),
  34746. name: "Side",
  34747. image: {
  34748. source: "./media/characters/saphinara/meowberus-side.svg",
  34749. extra: 1400/711,
  34750. bottom: 126/1526
  34751. },
  34752. form: "meowberus",
  34753. extraAttributes: {
  34754. "pawArea": {
  34755. name: "Paw Size",
  34756. power: 2,
  34757. type: "area",
  34758. base: math.unit(35, "m^2")
  34759. }
  34760. }
  34761. },
  34762. },
  34763. [
  34764. {
  34765. name: "Normal",
  34766. height: math.unit(15 + 7/12, "feet"),
  34767. default: true,
  34768. form: "normal"
  34769. },
  34770. {
  34771. name: "Angry",
  34772. height: math.unit(30 + 6/12, "feet"),
  34773. form: "normal"
  34774. },
  34775. {
  34776. name: "Enraged",
  34777. height: math.unit(102 + 1/12, "feet"),
  34778. form: "normal"
  34779. },
  34780. {
  34781. name: "True",
  34782. height: math.unit(200, "feet"),
  34783. default: true,
  34784. form: "true-form"
  34785. },
  34786. {
  34787. name: "Normal",
  34788. height: math.unit(75, "feet"),
  34789. default: true,
  34790. form: "meowberus"
  34791. },
  34792. ],
  34793. {
  34794. "normal": {
  34795. name: "Normal",
  34796. default: true
  34797. },
  34798. "true-form": {
  34799. name: "True Form"
  34800. },
  34801. "meowberus": {
  34802. name: "Meowberus",
  34803. },
  34804. }
  34805. ))
  34806. characterMakers.push(() => makeCharacter(
  34807. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34808. {
  34809. front: {
  34810. height: math.unit(6 + 8/12, "feet"),
  34811. weight: math.unit(300, "lb"),
  34812. name: "Front",
  34813. image: {
  34814. source: "./media/characters/jrain/front.svg",
  34815. extra: 3039/2865,
  34816. bottom: 399/3438
  34817. }
  34818. },
  34819. back: {
  34820. height: math.unit(6 + 8/12, "feet"),
  34821. weight: math.unit(300, "lb"),
  34822. name: "Back",
  34823. image: {
  34824. source: "./media/characters/jrain/back.svg",
  34825. extra: 3089/2938,
  34826. bottom: 172/3261
  34827. }
  34828. },
  34829. head: {
  34830. height: math.unit(2.14, "feet"),
  34831. name: "Head",
  34832. image: {
  34833. source: "./media/characters/jrain/head.svg"
  34834. }
  34835. },
  34836. maw: {
  34837. height: math.unit(1.77, "feet"),
  34838. name: "Maw",
  34839. image: {
  34840. source: "./media/characters/jrain/maw.svg"
  34841. }
  34842. },
  34843. leftHand: {
  34844. height: math.unit(1.1, "feet"),
  34845. name: "Left Hand",
  34846. image: {
  34847. source: "./media/characters/jrain/left-hand.svg"
  34848. }
  34849. },
  34850. rightHand: {
  34851. height: math.unit(1.1, "feet"),
  34852. name: "Right Hand",
  34853. image: {
  34854. source: "./media/characters/jrain/right-hand.svg"
  34855. }
  34856. },
  34857. eye: {
  34858. height: math.unit(0.35, "feet"),
  34859. name: "Eye",
  34860. image: {
  34861. source: "./media/characters/jrain/eye.svg"
  34862. }
  34863. },
  34864. },
  34865. [
  34866. {
  34867. name: "Normal",
  34868. height: math.unit(6 + 8/12, "feet"),
  34869. default: true
  34870. },
  34871. {
  34872. name: "Casually Large",
  34873. height: math.unit(25, "feet")
  34874. },
  34875. {
  34876. name: "Giant",
  34877. height: math.unit(100, "feet")
  34878. },
  34879. {
  34880. name: "Kaiju",
  34881. height: math.unit(300, "feet")
  34882. },
  34883. ]
  34884. ))
  34885. characterMakers.push(() => makeCharacter(
  34886. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34887. {
  34888. dragon: {
  34889. height: math.unit(5, "meters"),
  34890. name: "Dragon",
  34891. image: {
  34892. source: "./media/characters/sabrina/dragon.svg",
  34893. extra: 3670 / 2365,
  34894. bottom: 333 / 4003
  34895. }
  34896. },
  34897. gryphon: {
  34898. height: math.unit(3, "meters"),
  34899. name: "Gryphon",
  34900. image: {
  34901. source: "./media/characters/sabrina/gryphon.svg",
  34902. extra: 1576 / 945,
  34903. bottom: 71 / 1647
  34904. }
  34905. },
  34906. snake: {
  34907. height: math.unit(12, "meters"),
  34908. name: "Snake",
  34909. image: {
  34910. source: "./media/characters/sabrina/snake.svg",
  34911. extra: 1758 / 1320,
  34912. bottom: 186 / 1944
  34913. }
  34914. },
  34915. collar: {
  34916. height: math.unit(1.86, "meters"),
  34917. name: "Collar",
  34918. image: {
  34919. source: "./media/characters/sabrina/collar.svg"
  34920. }
  34921. },
  34922. eye: {
  34923. height: math.unit(0.53, "meters"),
  34924. name: "Eye",
  34925. image: {
  34926. source: "./media/characters/sabrina/eye.svg"
  34927. }
  34928. },
  34929. foot: {
  34930. height: math.unit(1.86, "meters"),
  34931. name: "Foot",
  34932. image: {
  34933. source: "./media/characters/sabrina/foot.svg"
  34934. }
  34935. },
  34936. hand: {
  34937. height: math.unit(1.32, "meters"),
  34938. name: "Hand",
  34939. image: {
  34940. source: "./media/characters/sabrina/hand.svg"
  34941. }
  34942. },
  34943. head: {
  34944. height: math.unit(2.44, "meters"),
  34945. name: "Head",
  34946. image: {
  34947. source: "./media/characters/sabrina/head.svg"
  34948. }
  34949. },
  34950. headAngry: {
  34951. height: math.unit(2.44, "meters"),
  34952. name: "Head (Angry))",
  34953. image: {
  34954. source: "./media/characters/sabrina/head-angry.svg"
  34955. }
  34956. },
  34957. maw: {
  34958. height: math.unit(1.65, "meters"),
  34959. name: "Maw",
  34960. image: {
  34961. source: "./media/characters/sabrina/maw.svg"
  34962. }
  34963. },
  34964. spikes: {
  34965. height: math.unit(1.69, "meters"),
  34966. name: "Spikes",
  34967. image: {
  34968. source: "./media/characters/sabrina/spikes.svg"
  34969. }
  34970. },
  34971. stomach: {
  34972. height: math.unit(1.15, "meters"),
  34973. name: "Stomach",
  34974. image: {
  34975. source: "./media/characters/sabrina/stomach.svg"
  34976. }
  34977. },
  34978. tongue: {
  34979. height: math.unit(1.27, "meters"),
  34980. name: "Tongue",
  34981. image: {
  34982. source: "./media/characters/sabrina/tongue.svg"
  34983. }
  34984. },
  34985. wingDorsal: {
  34986. height: math.unit(4.85, "meters"),
  34987. name: "Wing (Dorsal)",
  34988. image: {
  34989. source: "./media/characters/sabrina/wing-dorsal.svg"
  34990. }
  34991. },
  34992. wingVentral: {
  34993. height: math.unit(4.85, "meters"),
  34994. name: "Wing (Ventral)",
  34995. image: {
  34996. source: "./media/characters/sabrina/wing-ventral.svg"
  34997. }
  34998. },
  34999. },
  35000. [
  35001. {
  35002. name: "Normal",
  35003. height: math.unit(5, "meters"),
  35004. default: true
  35005. },
  35006. ]
  35007. ))
  35008. characterMakers.push(() => makeCharacter(
  35009. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  35010. {
  35011. frontMaid: {
  35012. height: math.unit(5 + 5/12, "feet"),
  35013. weight: math.unit(130, "lb"),
  35014. name: "Front (Maid)",
  35015. image: {
  35016. source: "./media/characters/midnight-tales/front-maid.svg",
  35017. extra: 489/454,
  35018. bottom: 61/550
  35019. }
  35020. },
  35021. frontFormal: {
  35022. height: math.unit(5 + 5/12, "feet"),
  35023. weight: math.unit(130, "lb"),
  35024. name: "Front (Formal)",
  35025. image: {
  35026. source: "./media/characters/midnight-tales/front-formal.svg",
  35027. extra: 489/454,
  35028. bottom: 61/550
  35029. }
  35030. },
  35031. back: {
  35032. height: math.unit(5 + 5/12, "feet"),
  35033. weight: math.unit(130, "lb"),
  35034. name: "Back",
  35035. image: {
  35036. source: "./media/characters/midnight-tales/back.svg",
  35037. extra: 498/456,
  35038. bottom: 33/531
  35039. }
  35040. },
  35041. frontBeast: {
  35042. height: math.unit(40, "feet"),
  35043. weight: math.unit(64000, "lb"),
  35044. name: "Front (Beast)",
  35045. image: {
  35046. source: "./media/characters/midnight-tales/front-beast.svg",
  35047. extra: 927/860,
  35048. bottom: 53/980
  35049. }
  35050. },
  35051. backBeast: {
  35052. height: math.unit(40, "feet"),
  35053. weight: math.unit(64000, "lb"),
  35054. name: "Back (Beast)",
  35055. image: {
  35056. source: "./media/characters/midnight-tales/back-beast.svg",
  35057. extra: 929/855,
  35058. bottom: 16/945
  35059. }
  35060. },
  35061. footBeast: {
  35062. height: math.unit(6.7, "feet"),
  35063. name: "Foot (Beast)",
  35064. image: {
  35065. source: "./media/characters/midnight-tales/foot-beast.svg"
  35066. }
  35067. },
  35068. headBeast: {
  35069. height: math.unit(8, "feet"),
  35070. name: "Head (Beast)",
  35071. image: {
  35072. source: "./media/characters/midnight-tales/head-beast.svg"
  35073. }
  35074. },
  35075. },
  35076. [
  35077. {
  35078. name: "Normal",
  35079. height: math.unit(5 + 5 / 12, "feet"),
  35080. default: true
  35081. },
  35082. {
  35083. name: "Macro",
  35084. height: math.unit(25, "feet")
  35085. },
  35086. ]
  35087. ))
  35088. characterMakers.push(() => makeCharacter(
  35089. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  35090. {
  35091. front: {
  35092. height: math.unit(5 + 10/12, "feet"),
  35093. name: "Front",
  35094. image: {
  35095. source: "./media/characters/argon/front.svg",
  35096. extra: 2009/1935,
  35097. bottom: 118/2127
  35098. }
  35099. },
  35100. back: {
  35101. height: math.unit(5 + 10/12, "feet"),
  35102. name: "Back",
  35103. image: {
  35104. source: "./media/characters/argon/back.svg",
  35105. extra: 2047/1992,
  35106. bottom: 20/2067
  35107. }
  35108. },
  35109. frontDressed: {
  35110. height: math.unit(5 + 10/12, "feet"),
  35111. name: "Front (Dressed)",
  35112. image: {
  35113. source: "./media/characters/argon/front-dressed.svg",
  35114. extra: 2009/1935,
  35115. bottom: 118/2127
  35116. }
  35117. },
  35118. },
  35119. [
  35120. {
  35121. name: "Normal",
  35122. height: math.unit(5 + 10/12, "feet"),
  35123. default: true
  35124. },
  35125. ]
  35126. ))
  35127. characterMakers.push(() => makeCharacter(
  35128. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  35129. {
  35130. front: {
  35131. height: math.unit(8 + 6/12, "feet"),
  35132. weight: math.unit(1150, "lb"),
  35133. name: "Front",
  35134. image: {
  35135. source: "./media/characters/kichi/front.svg",
  35136. extra: 1267/1164,
  35137. bottom: 61/1328
  35138. }
  35139. },
  35140. back: {
  35141. height: math.unit(8 + 6/12, "feet"),
  35142. weight: math.unit(1150, "lb"),
  35143. name: "Back",
  35144. image: {
  35145. source: "./media/characters/kichi/back.svg",
  35146. extra: 1273/1166,
  35147. bottom: 33/1306
  35148. }
  35149. },
  35150. },
  35151. [
  35152. {
  35153. name: "Normal",
  35154. height: math.unit(8 + 6/12, "feet"),
  35155. default: true
  35156. },
  35157. ]
  35158. ))
  35159. characterMakers.push(() => makeCharacter(
  35160. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  35161. {
  35162. front: {
  35163. height: math.unit(6, "feet"),
  35164. weight: math.unit(210, "lb"),
  35165. name: "Front",
  35166. image: {
  35167. source: "./media/characters/manetel-greyscale/front.svg",
  35168. extra: 350/312,
  35169. bottom: 8/358
  35170. }
  35171. },
  35172. },
  35173. [
  35174. {
  35175. name: "Micro",
  35176. height: math.unit(2, "inches")
  35177. },
  35178. {
  35179. name: "Normal",
  35180. height: math.unit(6, "feet"),
  35181. default: true
  35182. },
  35183. {
  35184. name: "Minimacro",
  35185. height: math.unit(17, "feet")
  35186. },
  35187. {
  35188. name: "Macro",
  35189. height: math.unit(117, "feet")
  35190. },
  35191. ]
  35192. ))
  35193. characterMakers.push(() => makeCharacter(
  35194. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  35195. {
  35196. side: {
  35197. height: math.unit(5 + 1/12, "feet"),
  35198. weight: math.unit(418, "lb"),
  35199. name: "Side",
  35200. image: {
  35201. source: "./media/characters/softpurr/side.svg",
  35202. extra: 1993/1945,
  35203. bottom: 134/2127
  35204. }
  35205. },
  35206. front: {
  35207. height: math.unit(5 + 1/12, "feet"),
  35208. weight: math.unit(418, "lb"),
  35209. name: "Front",
  35210. image: {
  35211. source: "./media/characters/softpurr/front.svg",
  35212. extra: 1950/1856,
  35213. bottom: 174/2124
  35214. }
  35215. },
  35216. paw: {
  35217. height: math.unit(1, "feet"),
  35218. name: "Paw",
  35219. image: {
  35220. source: "./media/characters/softpurr/paw.svg"
  35221. }
  35222. },
  35223. },
  35224. [
  35225. {
  35226. name: "Normal",
  35227. height: math.unit(5 + 1/12, "feet"),
  35228. default: true
  35229. },
  35230. ]
  35231. ))
  35232. characterMakers.push(() => makeCharacter(
  35233. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  35234. {
  35235. front: {
  35236. height: math.unit(260, "meters"),
  35237. name: "Front",
  35238. image: {
  35239. source: "./media/characters/anahita/front.svg",
  35240. extra: 665/635,
  35241. bottom: 89/754
  35242. }
  35243. },
  35244. },
  35245. [
  35246. {
  35247. name: "Macro",
  35248. height: math.unit(260, "meters"),
  35249. default: true
  35250. },
  35251. ]
  35252. ))
  35253. characterMakers.push(() => makeCharacter(
  35254. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  35255. {
  35256. front: {
  35257. height: math.unit(4 + 10/12, "feet"),
  35258. weight: math.unit(160, "lb"),
  35259. name: "Front",
  35260. image: {
  35261. source: "./media/characters/chip-mouse/front.svg",
  35262. extra: 3528/3408,
  35263. bottom: 0/3528
  35264. }
  35265. },
  35266. frontNsfw: {
  35267. height: math.unit(4 + 10/12, "feet"),
  35268. weight: math.unit(160, "lb"),
  35269. name: "Front (NSFW)",
  35270. image: {
  35271. source: "./media/characters/chip-mouse/front-nsfw.svg",
  35272. extra: 3528/3408,
  35273. bottom: 0/3528
  35274. }
  35275. },
  35276. },
  35277. [
  35278. {
  35279. name: "Normal",
  35280. height: math.unit(4 + 10/12, "feet"),
  35281. default: true
  35282. },
  35283. ]
  35284. ))
  35285. characterMakers.push(() => makeCharacter(
  35286. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  35287. {
  35288. side: {
  35289. height: math.unit(10, "feet"),
  35290. weight: math.unit(14000, "lb"),
  35291. name: "Side",
  35292. image: {
  35293. source: "./media/characters/kremm/side.svg",
  35294. extra: 1390/1053,
  35295. bottom: 90/1480
  35296. }
  35297. },
  35298. gut: {
  35299. height: math.unit(5.8, "feet"),
  35300. name: "Gut",
  35301. image: {
  35302. source: "./media/characters/kremm/gut.svg"
  35303. }
  35304. },
  35305. ass: {
  35306. height: math.unit(6.1, "feet"),
  35307. name: "Ass",
  35308. image: {
  35309. source: "./media/characters/kremm/ass.svg"
  35310. }
  35311. },
  35312. jaws: {
  35313. height: math.unit(2.2, "feet"),
  35314. name: "Jaws",
  35315. image: {
  35316. source: "./media/characters/kremm/jaws.svg"
  35317. }
  35318. },
  35319. dick: {
  35320. height: math.unit(4.26, "feet"),
  35321. name: "Dick",
  35322. image: {
  35323. source: "./media/characters/kremm/dick.svg"
  35324. }
  35325. },
  35326. },
  35327. [
  35328. {
  35329. name: "Normal",
  35330. height: math.unit(10, "feet"),
  35331. default: true
  35332. },
  35333. ]
  35334. ))
  35335. characterMakers.push(() => makeCharacter(
  35336. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  35337. {
  35338. front: {
  35339. height: math.unit(30, "stories"),
  35340. name: "Front",
  35341. image: {
  35342. source: "./media/characters/kai/front.svg",
  35343. extra: 1892/1718,
  35344. bottom: 162/2054
  35345. }
  35346. },
  35347. },
  35348. [
  35349. {
  35350. name: "Macro",
  35351. height: math.unit(30, "stories"),
  35352. default: true
  35353. },
  35354. ]
  35355. ))
  35356. characterMakers.push(() => makeCharacter(
  35357. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  35358. {
  35359. front: {
  35360. height: math.unit(6 + 4/12, "feet"),
  35361. weight: math.unit(145, "lb"),
  35362. name: "Front",
  35363. image: {
  35364. source: "./media/characters/sykes/front.svg",
  35365. extra: 1321 / 1187,
  35366. bottom: 66 / 1387
  35367. }
  35368. },
  35369. back: {
  35370. height: math.unit(6 + 4/12, "feet"),
  35371. weight: math.unit(145, "lb"),
  35372. name: "Back",
  35373. image: {
  35374. source: "./media/characters/sykes/back.svg",
  35375. extra: 1326/1181,
  35376. bottom: 31/1357
  35377. }
  35378. },
  35379. traditionalOutfit: {
  35380. height: math.unit(6 + 4/12, "feet"),
  35381. weight: math.unit(145, "lb"),
  35382. name: "Traditional Outfit",
  35383. image: {
  35384. source: "./media/characters/sykes/traditional-outfit.svg",
  35385. extra: 1321 / 1187,
  35386. bottom: 66 / 1387
  35387. }
  35388. },
  35389. adventureOutfit: {
  35390. height: math.unit(6 + 4/12, "feet"),
  35391. weight: math.unit(145, "lb"),
  35392. name: "Adventure Outfit",
  35393. image: {
  35394. source: "./media/characters/sykes/adventure-outfit.svg",
  35395. extra: 1321 / 1187,
  35396. bottom: 66 / 1387
  35397. }
  35398. },
  35399. handLeft: {
  35400. height: math.unit(0.9, "feet"),
  35401. name: "Hand (Left)",
  35402. image: {
  35403. source: "./media/characters/sykes/hand-left.svg"
  35404. }
  35405. },
  35406. handRight: {
  35407. height: math.unit(0.839, "feet"),
  35408. name: "Hand (Right)",
  35409. image: {
  35410. source: "./media/characters/sykes/hand-right.svg"
  35411. }
  35412. },
  35413. leftFoot: {
  35414. height: math.unit(1.2, "feet"),
  35415. name: "Foot (Left)",
  35416. image: {
  35417. source: "./media/characters/sykes/foot-left.svg"
  35418. }
  35419. },
  35420. rightFoot: {
  35421. height: math.unit(1.2, "feet"),
  35422. name: "Foot (Right)",
  35423. image: {
  35424. source: "./media/characters/sykes/foot-right.svg"
  35425. }
  35426. },
  35427. maw: {
  35428. height: math.unit(1.93, "feet"),
  35429. name: "Maw",
  35430. image: {
  35431. source: "./media/characters/sykes/maw.svg"
  35432. }
  35433. },
  35434. teeth: {
  35435. height: math.unit(0.51, "feet"),
  35436. name: "Teeth",
  35437. image: {
  35438. source: "./media/characters/sykes/teeth.svg"
  35439. }
  35440. },
  35441. tongue: {
  35442. height: math.unit(2.13, "feet"),
  35443. name: "Tongue",
  35444. image: {
  35445. source: "./media/characters/sykes/tongue.svg"
  35446. }
  35447. },
  35448. uvula: {
  35449. height: math.unit(0.16, "feet"),
  35450. name: "Uvula",
  35451. image: {
  35452. source: "./media/characters/sykes/uvula.svg"
  35453. }
  35454. },
  35455. collar: {
  35456. height: math.unit(0.287, "feet"),
  35457. name: "Collar",
  35458. image: {
  35459. source: "./media/characters/sykes/collar.svg"
  35460. }
  35461. },
  35462. tail: {
  35463. height: math.unit(3.8, "feet"),
  35464. name: "Tail",
  35465. image: {
  35466. source: "./media/characters/sykes/tail.svg"
  35467. }
  35468. },
  35469. },
  35470. [
  35471. {
  35472. name: "Shrunken",
  35473. height: math.unit(5, "inches")
  35474. },
  35475. {
  35476. name: "Normal",
  35477. height: math.unit(6 + 4 / 12, "feet"),
  35478. default: true
  35479. },
  35480. {
  35481. name: "Big",
  35482. height: math.unit(15, "feet")
  35483. },
  35484. ]
  35485. ))
  35486. characterMakers.push(() => makeCharacter(
  35487. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  35488. {
  35489. front: {
  35490. height: math.unit(5 + 8/12, "feet"),
  35491. weight: math.unit(190, "lb"),
  35492. name: "Front",
  35493. image: {
  35494. source: "./media/characters/oven-otter/front.svg",
  35495. extra: 1809/1740,
  35496. bottom: 181/1990
  35497. }
  35498. },
  35499. back: {
  35500. height: math.unit(5 + 8/12, "feet"),
  35501. weight: math.unit(190, "lb"),
  35502. name: "Back",
  35503. image: {
  35504. source: "./media/characters/oven-otter/back.svg",
  35505. extra: 1709/1635,
  35506. bottom: 118/1827
  35507. }
  35508. },
  35509. hand: {
  35510. height: math.unit(1.07, "feet"),
  35511. name: "Hand",
  35512. image: {
  35513. source: "./media/characters/oven-otter/hand.svg"
  35514. }
  35515. },
  35516. beans: {
  35517. height: math.unit(1.74, "feet"),
  35518. name: "Beans",
  35519. image: {
  35520. source: "./media/characters/oven-otter/beans.svg"
  35521. }
  35522. },
  35523. },
  35524. [
  35525. {
  35526. name: "Micro",
  35527. height: math.unit(0.5, "inches")
  35528. },
  35529. {
  35530. name: "Normal",
  35531. height: math.unit(5 + 8/12, "feet"),
  35532. default: true
  35533. },
  35534. {
  35535. name: "Macro",
  35536. height: math.unit(250, "feet")
  35537. },
  35538. {
  35539. name: "Really High",
  35540. height: math.unit(420, "feet")
  35541. },
  35542. ]
  35543. ))
  35544. characterMakers.push(() => makeCharacter(
  35545. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  35546. {
  35547. front: {
  35548. height: math.unit(5, "meters"),
  35549. weight: math.unit(292000000000000, "kg"),
  35550. name: "Front",
  35551. image: {
  35552. source: "./media/characters/devourer/front.svg",
  35553. extra: 1800/1733,
  35554. bottom: 211/2011
  35555. }
  35556. },
  35557. maw: {
  35558. height: math.unit(1.1, "meter"),
  35559. name: "Maw",
  35560. image: {
  35561. source: "./media/characters/devourer/maw.svg"
  35562. }
  35563. },
  35564. },
  35565. [
  35566. {
  35567. name: "Small",
  35568. height: math.unit(3, "meters")
  35569. },
  35570. {
  35571. name: "Large",
  35572. height: math.unit(5, "meters"),
  35573. default: true
  35574. },
  35575. ]
  35576. ))
  35577. characterMakers.push(() => makeCharacter(
  35578. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35579. {
  35580. front: {
  35581. height: math.unit(6, "feet"),
  35582. weight: math.unit(400, "lb"),
  35583. name: "Front",
  35584. image: {
  35585. source: "./media/characters/ellarby/front.svg",
  35586. extra: 1909/1763,
  35587. bottom: 80/1989
  35588. }
  35589. },
  35590. back: {
  35591. height: math.unit(6, "feet"),
  35592. weight: math.unit(400, "lb"),
  35593. name: "Back",
  35594. image: {
  35595. source: "./media/characters/ellarby/back.svg",
  35596. extra: 1914/1784,
  35597. bottom: 172/2086
  35598. }
  35599. },
  35600. },
  35601. [
  35602. {
  35603. name: "Mischief",
  35604. height: math.unit(18, "inches")
  35605. },
  35606. {
  35607. name: "Trouble",
  35608. height: math.unit(12, "feet")
  35609. },
  35610. {
  35611. name: "Havoc",
  35612. height: math.unit(200, "feet"),
  35613. default: true
  35614. },
  35615. {
  35616. name: "Pandemonium",
  35617. height: math.unit(1, "mile")
  35618. },
  35619. {
  35620. name: "Catastrophe",
  35621. height: math.unit(100, "miles")
  35622. },
  35623. ]
  35624. ))
  35625. characterMakers.push(() => makeCharacter(
  35626. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35627. {
  35628. front: {
  35629. height: math.unit(4.7, "meters"),
  35630. weight: math.unit(6500, "kg"),
  35631. name: "Front",
  35632. image: {
  35633. source: "./media/characters/vex/front.svg",
  35634. extra: 1288/1140,
  35635. bottom: 100/1388
  35636. }
  35637. },
  35638. },
  35639. [
  35640. {
  35641. name: "Normal",
  35642. height: math.unit(4.7, "meters"),
  35643. default: true
  35644. },
  35645. ]
  35646. ))
  35647. characterMakers.push(() => makeCharacter(
  35648. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35649. {
  35650. normal: {
  35651. height: math.unit(6, "feet"),
  35652. weight: math.unit(350, "lb"),
  35653. name: "Normal",
  35654. image: {
  35655. source: "./media/characters/teshy/normal.svg",
  35656. extra: 1795/1735,
  35657. bottom: 16/1811
  35658. }
  35659. },
  35660. monsterFront: {
  35661. height: math.unit(12, "feet"),
  35662. weight: math.unit(4700, "lb"),
  35663. name: "Monster (Front)",
  35664. image: {
  35665. source: "./media/characters/teshy/monster-front.svg",
  35666. extra: 2042/2034,
  35667. bottom: 128/2170
  35668. }
  35669. },
  35670. monsterSide: {
  35671. height: math.unit(12, "feet"),
  35672. weight: math.unit(4700, "lb"),
  35673. name: "Monster (Side)",
  35674. image: {
  35675. source: "./media/characters/teshy/monster-side.svg",
  35676. extra: 2067/2056,
  35677. bottom: 70/2137
  35678. }
  35679. },
  35680. monsterBack: {
  35681. height: math.unit(12, "feet"),
  35682. weight: math.unit(4700, "lb"),
  35683. name: "Monster (Back)",
  35684. image: {
  35685. source: "./media/characters/teshy/monster-back.svg",
  35686. extra: 1921/1914,
  35687. bottom: 171/2092
  35688. }
  35689. },
  35690. },
  35691. [
  35692. {
  35693. name: "Normal",
  35694. height: math.unit(6, "feet"),
  35695. default: true
  35696. },
  35697. ]
  35698. ))
  35699. characterMakers.push(() => makeCharacter(
  35700. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35701. {
  35702. front: {
  35703. height: math.unit(6, "feet"),
  35704. name: "Front",
  35705. image: {
  35706. source: "./media/characters/ramey/front.svg",
  35707. extra: 790/787,
  35708. bottom: 27/817
  35709. }
  35710. },
  35711. },
  35712. [
  35713. {
  35714. name: "Normal",
  35715. height: math.unit(6, "feet"),
  35716. default: true
  35717. },
  35718. ]
  35719. ))
  35720. characterMakers.push(() => makeCharacter(
  35721. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35722. {
  35723. front: {
  35724. height: math.unit(5 + 5/12, "feet"),
  35725. weight: math.unit(120, "lb"),
  35726. name: "Front",
  35727. image: {
  35728. source: "./media/characters/phirae/front.svg",
  35729. extra: 2491/2436,
  35730. bottom: 38/2529
  35731. }
  35732. },
  35733. },
  35734. [
  35735. {
  35736. name: "Normal",
  35737. height: math.unit(5 + 5/12, "feet"),
  35738. default: true
  35739. },
  35740. ]
  35741. ))
  35742. characterMakers.push(() => makeCharacter(
  35743. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35744. {
  35745. front: {
  35746. height: math.unit(5 + 3/12, "feet"),
  35747. name: "Front",
  35748. image: {
  35749. source: "./media/characters/stagglas/front.svg",
  35750. extra: 962/882,
  35751. bottom: 53/1015
  35752. }
  35753. },
  35754. feral: {
  35755. height: math.unit(335, "cm"),
  35756. name: "Feral",
  35757. image: {
  35758. source: "./media/characters/stagglas/feral.svg",
  35759. extra: 1732/1090,
  35760. bottom: 48/1780
  35761. }
  35762. },
  35763. },
  35764. [
  35765. {
  35766. name: "Normal",
  35767. height: math.unit(5 + 3/12, "feet"),
  35768. default: true
  35769. },
  35770. ]
  35771. ))
  35772. characterMakers.push(() => makeCharacter(
  35773. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35774. {
  35775. front: {
  35776. height: math.unit(5 + 4/12, "feet"),
  35777. weight: math.unit(145, "lb"),
  35778. name: "Front",
  35779. image: {
  35780. source: "./media/characters/starra/front.svg",
  35781. extra: 1790/1691,
  35782. bottom: 91/1881
  35783. }
  35784. },
  35785. },
  35786. [
  35787. {
  35788. name: "Normal",
  35789. height: math.unit(5 + 4/12, "feet"),
  35790. default: true
  35791. },
  35792. ]
  35793. ))
  35794. characterMakers.push(() => makeCharacter(
  35795. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35796. {
  35797. front: {
  35798. height: math.unit(2.2, "meters"),
  35799. name: "Front",
  35800. image: {
  35801. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35802. extra: 1194/1005,
  35803. bottom: 25/1219
  35804. }
  35805. },
  35806. },
  35807. [
  35808. {
  35809. name: "Normal",
  35810. height: math.unit(2.2, "meters"),
  35811. default: true
  35812. },
  35813. ]
  35814. ))
  35815. characterMakers.push(() => makeCharacter(
  35816. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35817. {
  35818. side: {
  35819. height: math.unit(8 + 2/12, "feet"),
  35820. weight: math.unit(1240, "lb"),
  35821. name: "Side",
  35822. image: {
  35823. source: "./media/characters/mika-valentine/side.svg",
  35824. extra: 2670/2501,
  35825. bottom: 250/2920
  35826. }
  35827. },
  35828. },
  35829. [
  35830. {
  35831. name: "Normal",
  35832. height: math.unit(8 + 2/12, "feet"),
  35833. default: true
  35834. },
  35835. ]
  35836. ))
  35837. characterMakers.push(() => makeCharacter(
  35838. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35839. {
  35840. front: {
  35841. height: math.unit(7 + 2/12, "feet"),
  35842. name: "Front",
  35843. image: {
  35844. source: "./media/characters/xoltol/front.svg",
  35845. extra: 2212/2124,
  35846. bottom: 84/2296
  35847. }
  35848. },
  35849. side: {
  35850. height: math.unit(7 + 2/12, "feet"),
  35851. name: "Side",
  35852. image: {
  35853. source: "./media/characters/xoltol/side.svg",
  35854. extra: 2273/2197,
  35855. bottom: 26/2299
  35856. }
  35857. },
  35858. hand: {
  35859. height: math.unit(2.5, "feet"),
  35860. name: "Hand",
  35861. image: {
  35862. source: "./media/characters/xoltol/hand.svg"
  35863. }
  35864. },
  35865. },
  35866. [
  35867. {
  35868. name: "Small-ish",
  35869. height: math.unit(5 + 11/12, "feet")
  35870. },
  35871. {
  35872. name: "Normal",
  35873. height: math.unit(7 + 2/12, "feet")
  35874. },
  35875. {
  35876. name: "\"Macro\"",
  35877. height: math.unit(14 + 9/12, "feet"),
  35878. default: true
  35879. },
  35880. {
  35881. name: "Alternate Height",
  35882. height: math.unit(20, "feet")
  35883. },
  35884. {
  35885. name: "Actually Macro",
  35886. height: math.unit(100, "feet")
  35887. },
  35888. ]
  35889. ))
  35890. characterMakers.push(() => makeCharacter(
  35891. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35892. {
  35893. front: {
  35894. height: math.unit(5 + 2/12, "feet"),
  35895. name: "Front",
  35896. image: {
  35897. source: "./media/characters/kotetsu-redwood/front.svg",
  35898. extra: 1053/942,
  35899. bottom: 60/1113
  35900. }
  35901. },
  35902. },
  35903. [
  35904. {
  35905. name: "Normal",
  35906. height: math.unit(5 + 2/12, "feet"),
  35907. default: true
  35908. },
  35909. ]
  35910. ))
  35911. characterMakers.push(() => makeCharacter(
  35912. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35913. {
  35914. front: {
  35915. height: math.unit(2.4, "meters"),
  35916. weight: math.unit(125, "kg"),
  35917. name: "Front",
  35918. image: {
  35919. source: "./media/characters/lilith/front.svg",
  35920. extra: 1590/1513,
  35921. bottom: 203/1793
  35922. }
  35923. },
  35924. },
  35925. [
  35926. {
  35927. name: "Humanoid",
  35928. height: math.unit(2.4, "meters")
  35929. },
  35930. {
  35931. name: "Normal",
  35932. height: math.unit(6, "meters"),
  35933. default: true
  35934. },
  35935. {
  35936. name: "Largest",
  35937. height: math.unit(55, "meters")
  35938. },
  35939. ]
  35940. ))
  35941. characterMakers.push(() => makeCharacter(
  35942. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35943. {
  35944. front: {
  35945. height: math.unit(8 + 4/12, "feet"),
  35946. weight: math.unit(535, "lb"),
  35947. name: "Front",
  35948. image: {
  35949. source: "./media/characters/beh'kah-bolger/front.svg",
  35950. extra: 1660/1603,
  35951. bottom: 37/1697
  35952. }
  35953. },
  35954. },
  35955. [
  35956. {
  35957. name: "Normal",
  35958. height: math.unit(8 + 4/12, "feet"),
  35959. default: true
  35960. },
  35961. {
  35962. name: "Kaiju",
  35963. height: math.unit(250, "feet")
  35964. },
  35965. {
  35966. name: "Still Growing",
  35967. height: math.unit(10, "miles")
  35968. },
  35969. {
  35970. name: "Continental",
  35971. height: math.unit(5000, "miles")
  35972. },
  35973. {
  35974. name: "Final Form",
  35975. height: math.unit(2500000, "miles")
  35976. },
  35977. ]
  35978. ))
  35979. characterMakers.push(() => makeCharacter(
  35980. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35981. {
  35982. front: {
  35983. height: math.unit(7 + 2/12, "feet"),
  35984. weight: math.unit(230, "kg"),
  35985. name: "Front",
  35986. image: {
  35987. source: "./media/characters/tatyana-milewska/front.svg",
  35988. extra: 1199/1150,
  35989. bottom: 86/1285
  35990. }
  35991. },
  35992. },
  35993. [
  35994. {
  35995. name: "Normal",
  35996. height: math.unit(7 + 2/12, "feet"),
  35997. default: true
  35998. },
  35999. {
  36000. name: "Big",
  36001. height: math.unit(12, "feet")
  36002. },
  36003. {
  36004. name: "Minimacro",
  36005. height: math.unit(20, "feet")
  36006. },
  36007. {
  36008. name: "Macro",
  36009. height: math.unit(120, "feet")
  36010. },
  36011. ]
  36012. ))
  36013. characterMakers.push(() => makeCharacter(
  36014. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  36015. {
  36016. front: {
  36017. height: math.unit(7 + 8/12, "feet"),
  36018. weight: math.unit(152, "kg"),
  36019. name: "Front",
  36020. image: {
  36021. source: "./media/characters/helen-arri/front.svg",
  36022. extra: 440/423,
  36023. bottom: 14/454
  36024. }
  36025. },
  36026. back: {
  36027. height: math.unit(7 + 8/12, "feet"),
  36028. weight: math.unit(152, "kg"),
  36029. name: "Back",
  36030. image: {
  36031. source: "./media/characters/helen-arri/back.svg",
  36032. extra: 443/426,
  36033. bottom: 8/451
  36034. }
  36035. },
  36036. },
  36037. [
  36038. {
  36039. name: "Normal",
  36040. height: math.unit(7 + 8/12, "feet"),
  36041. default: true
  36042. },
  36043. {
  36044. name: "Big",
  36045. height: math.unit(14, "feet")
  36046. },
  36047. {
  36048. name: "Minimacro",
  36049. height: math.unit(24, "feet")
  36050. },
  36051. {
  36052. name: "Macro",
  36053. height: math.unit(140, "feet")
  36054. },
  36055. ]
  36056. ))
  36057. characterMakers.push(() => makeCharacter(
  36058. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  36059. {
  36060. front: {
  36061. height: math.unit(6, "meters"),
  36062. name: "Front",
  36063. image: {
  36064. source: "./media/characters/ehanu-rehu/front.svg",
  36065. extra: 1800/1800,
  36066. bottom: 59/1859
  36067. }
  36068. },
  36069. },
  36070. [
  36071. {
  36072. name: "Normal",
  36073. height: math.unit(6, "meters"),
  36074. default: true
  36075. },
  36076. ]
  36077. ))
  36078. characterMakers.push(() => makeCharacter(
  36079. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  36080. {
  36081. front: {
  36082. height: math.unit(7 + 3/12, "feet"),
  36083. name: "Front",
  36084. image: {
  36085. source: "./media/characters/renholder/front.svg",
  36086. extra: 3096/2960,
  36087. bottom: 250/3346
  36088. }
  36089. },
  36090. },
  36091. [
  36092. {
  36093. name: "Normal Bat",
  36094. height: math.unit(7 + 3/12, "feet"),
  36095. default: true
  36096. },
  36097. {
  36098. name: "Slightly Tall Bat",
  36099. height: math.unit(100, "feet")
  36100. },
  36101. {
  36102. name: "Big Bat",
  36103. height: math.unit(1000, "feet")
  36104. },
  36105. {
  36106. name: "City-Sized Bat",
  36107. height: math.unit(200000, "feet")
  36108. },
  36109. {
  36110. name: "Bigger Bat",
  36111. height: math.unit(10000, "miles")
  36112. },
  36113. {
  36114. name: "Solar Sized Bat",
  36115. height: math.unit(100, "AU")
  36116. },
  36117. {
  36118. name: "Galactic Bat",
  36119. height: math.unit(200000, "lightyears")
  36120. },
  36121. {
  36122. name: "Universally Known Bat",
  36123. height: math.unit(1, "universe")
  36124. },
  36125. ]
  36126. ))
  36127. characterMakers.push(() => makeCharacter(
  36128. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  36129. {
  36130. front: {
  36131. height: math.unit(6 + 11/12, "feet"),
  36132. weight: math.unit(250, "lb"),
  36133. name: "Front",
  36134. image: {
  36135. source: "./media/characters/cookiecat/front.svg",
  36136. extra: 893/827,
  36137. bottom: 14/907
  36138. }
  36139. },
  36140. },
  36141. [
  36142. {
  36143. name: "Micro",
  36144. height: math.unit(3, "inches")
  36145. },
  36146. {
  36147. name: "Normal",
  36148. height: math.unit(6 + 11/12, "feet"),
  36149. default: true
  36150. },
  36151. {
  36152. name: "Macro",
  36153. height: math.unit(100, "feet")
  36154. },
  36155. {
  36156. name: "Macro+",
  36157. height: math.unit(404, "feet")
  36158. },
  36159. {
  36160. name: "Megamacro",
  36161. height: math.unit(165, "miles")
  36162. },
  36163. {
  36164. name: "Planetary",
  36165. height: math.unit(4600, "miles")
  36166. },
  36167. ]
  36168. ))
  36169. characterMakers.push(() => makeCharacter(
  36170. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  36171. {
  36172. front: {
  36173. height: math.unit(10 + 3/12, "feet"),
  36174. weight: math.unit(1500, "lb"),
  36175. name: "Front",
  36176. image: {
  36177. source: "./media/characters/tux-kusanagi/front.svg",
  36178. extra: 944/840,
  36179. bottom: 39/983
  36180. }
  36181. },
  36182. back: {
  36183. height: math.unit(10 + 3/12, "feet"),
  36184. weight: math.unit(1500, "lb"),
  36185. name: "Back",
  36186. image: {
  36187. source: "./media/characters/tux-kusanagi/back.svg",
  36188. extra: 941/842,
  36189. bottom: 28/969
  36190. }
  36191. },
  36192. rump: {
  36193. height: math.unit(5.25, "feet"),
  36194. name: "Rump",
  36195. image: {
  36196. source: "./media/characters/tux-kusanagi/rump.svg"
  36197. }
  36198. },
  36199. beak: {
  36200. height: math.unit(1.54, "feet"),
  36201. name: "Beak",
  36202. image: {
  36203. source: "./media/characters/tux-kusanagi/beak.svg"
  36204. }
  36205. },
  36206. },
  36207. [
  36208. {
  36209. name: "Normal",
  36210. height: math.unit(10 + 3/12, "feet"),
  36211. default: true
  36212. },
  36213. ]
  36214. ))
  36215. characterMakers.push(() => makeCharacter(
  36216. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  36217. {
  36218. front: {
  36219. height: math.unit(58, "feet"),
  36220. weight: math.unit(200, "tons"),
  36221. name: "Front",
  36222. image: {
  36223. source: "./media/characters/uzarmazari/front.svg",
  36224. extra: 1575/1455,
  36225. bottom: 152/1727
  36226. }
  36227. },
  36228. back: {
  36229. height: math.unit(58, "feet"),
  36230. weight: math.unit(200, "tons"),
  36231. name: "Back",
  36232. image: {
  36233. source: "./media/characters/uzarmazari/back.svg",
  36234. extra: 1585/1510,
  36235. bottom: 157/1742
  36236. }
  36237. },
  36238. head: {
  36239. height: math.unit(26, "feet"),
  36240. name: "Head",
  36241. image: {
  36242. source: "./media/characters/uzarmazari/head.svg"
  36243. }
  36244. },
  36245. },
  36246. [
  36247. {
  36248. name: "Normal",
  36249. height: math.unit(58, "feet"),
  36250. default: true
  36251. },
  36252. ]
  36253. ))
  36254. characterMakers.push(() => makeCharacter(
  36255. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  36256. {
  36257. side: {
  36258. height: math.unit(15, "feet"),
  36259. name: "Side",
  36260. image: {
  36261. source: "./media/characters/akitu/side.svg",
  36262. extra: 1421/1321,
  36263. bottom: 157/1578
  36264. }
  36265. },
  36266. front: {
  36267. height: math.unit(15, "feet"),
  36268. name: "Front",
  36269. image: {
  36270. source: "./media/characters/akitu/front.svg",
  36271. extra: 1435/1326,
  36272. bottom: 232/1667
  36273. }
  36274. },
  36275. },
  36276. [
  36277. {
  36278. name: "Normal",
  36279. height: math.unit(15, "feet"),
  36280. default: true
  36281. },
  36282. ]
  36283. ))
  36284. characterMakers.push(() => makeCharacter(
  36285. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  36286. {
  36287. front: {
  36288. height: math.unit(10 + 8/12, "feet"),
  36289. name: "Front",
  36290. image: {
  36291. source: "./media/characters/azalie-croixland/front.svg",
  36292. extra: 1972/1856,
  36293. bottom: 31/2003
  36294. }
  36295. },
  36296. },
  36297. [
  36298. {
  36299. name: "Original Height",
  36300. height: math.unit(5 + 4/12, "feet")
  36301. },
  36302. {
  36303. name: "Normal Height",
  36304. height: math.unit(10 + 8/12, "feet"),
  36305. default: true
  36306. },
  36307. ]
  36308. ))
  36309. characterMakers.push(() => makeCharacter(
  36310. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  36311. {
  36312. side: {
  36313. height: math.unit(7 + 1/12, "feet"),
  36314. weight: math.unit(245, "lb"),
  36315. name: "Side",
  36316. image: {
  36317. source: "./media/characters/kavus-kazian/side.svg",
  36318. extra: 349/342,
  36319. bottom: 15/364
  36320. }
  36321. },
  36322. },
  36323. [
  36324. {
  36325. name: "Normal",
  36326. height: math.unit(7 + 1/12, "feet"),
  36327. default: true
  36328. },
  36329. ]
  36330. ))
  36331. characterMakers.push(() => makeCharacter(
  36332. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  36333. {
  36334. normalFront: {
  36335. height: math.unit(5 + 11/12, "feet"),
  36336. name: "Front",
  36337. image: {
  36338. source: "./media/characters/moonlight-rose/normal-front.svg",
  36339. extra: 1980/1825,
  36340. bottom: 18/1998
  36341. },
  36342. form: "normal",
  36343. default: true
  36344. },
  36345. normalBack: {
  36346. height: math.unit(5 + 11/12, "feet"),
  36347. name: "Back",
  36348. image: {
  36349. source: "./media/characters/moonlight-rose/normal-back.svg",
  36350. extra: 2010/1839,
  36351. bottom: 10/2020
  36352. },
  36353. form: "normal"
  36354. },
  36355. demonFront: {
  36356. height: math.unit(1.5, "earths"),
  36357. name: "Front",
  36358. image: {
  36359. source: "./media/characters/moonlight-rose/demon.svg",
  36360. extra: 1400/1294,
  36361. bottom: 45/1445
  36362. },
  36363. form: "demon",
  36364. default: true
  36365. },
  36366. terraFront: {
  36367. height: math.unit(1.5, "earths"),
  36368. name: "Front",
  36369. image: {
  36370. source: "./media/characters/moonlight-rose/terra.svg"
  36371. },
  36372. form: "terra",
  36373. default: true
  36374. },
  36375. jupiterFront: {
  36376. height: math.unit(69911*2, "km"),
  36377. name: "Front",
  36378. image: {
  36379. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  36380. extra: 1367/1286,
  36381. bottom: 55/1422
  36382. },
  36383. form: "jupiter",
  36384. default: true
  36385. },
  36386. neptuneFront: {
  36387. height: math.unit(24622*2, "feet"),
  36388. name: "Front",
  36389. image: {
  36390. source: "./media/characters/moonlight-rose/neptune-front.svg",
  36391. extra: 1851/1712,
  36392. bottom: 0/1851
  36393. },
  36394. form: "neptune",
  36395. default: true
  36396. },
  36397. },
  36398. [
  36399. {
  36400. name: "\"Natural\" Height",
  36401. height: math.unit(5 + 11/12, "feet"),
  36402. form: "normal"
  36403. },
  36404. {
  36405. name: "Smallest comfortable size",
  36406. height: math.unit(40, "meters"),
  36407. form: "normal"
  36408. },
  36409. {
  36410. name: "Common size",
  36411. height: math.unit(50, "km"),
  36412. form: "normal",
  36413. default: true
  36414. },
  36415. {
  36416. name: "Normal",
  36417. height: math.unit(1.5, "earths"),
  36418. form: "demon",
  36419. default: true
  36420. },
  36421. {
  36422. name: "Universal",
  36423. height: math.unit(15, "universes"),
  36424. form: "demon"
  36425. },
  36426. {
  36427. name: "Earth",
  36428. height: math.unit(1.5, "earths"),
  36429. form: "terra",
  36430. default: true
  36431. },
  36432. {
  36433. name: "Super Earth",
  36434. height: math.unit(67.5, "earths"),
  36435. form: "terra"
  36436. },
  36437. {
  36438. name: "Doesn't fit in a solar system...",
  36439. height: math.unit(1, "galaxy"),
  36440. form: "terra"
  36441. },
  36442. {
  36443. name: "Saturn",
  36444. height: math.unit(58232*2, "km"),
  36445. form: "jupiter"
  36446. },
  36447. {
  36448. name: "Jupiter",
  36449. height: math.unit(69911*2, "km"),
  36450. form: "jupiter",
  36451. default: true
  36452. },
  36453. {
  36454. name: "HD 100546 b",
  36455. height: math.unit(482938, "km"),
  36456. form: "jupiter"
  36457. },
  36458. {
  36459. name: "Enceladus",
  36460. height: math.unit(513*2, "km"),
  36461. form: "neptune"
  36462. },
  36463. {
  36464. name: "Europe",
  36465. height: math.unit(1560*2, "km"),
  36466. form: "neptune"
  36467. },
  36468. {
  36469. name: "Neptune",
  36470. height: math.unit(24622*2, "km"),
  36471. form: "neptune",
  36472. default: true
  36473. },
  36474. {
  36475. name: "CoRoT-9b",
  36476. height: math.unit(75067*2, "km"),
  36477. form: "neptune"
  36478. },
  36479. ],
  36480. {
  36481. "normal": {
  36482. name: "Normal",
  36483. default: true
  36484. },
  36485. "demon": {
  36486. name: "Demon"
  36487. },
  36488. "terra": {
  36489. name: "Terra"
  36490. },
  36491. "jupiter": {
  36492. name: "Jupiter"
  36493. },
  36494. "neptune": {
  36495. name: "Neptune"
  36496. }
  36497. }
  36498. ))
  36499. characterMakers.push(() => makeCharacter(
  36500. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  36501. {
  36502. front: {
  36503. height: math.unit(16, "feet"),
  36504. weight: math.unit(610, "kg"),
  36505. name: "Front",
  36506. image: {
  36507. source: "./media/characters/huckle/front.svg",
  36508. extra: 1731/1625,
  36509. bottom: 33/1764
  36510. }
  36511. },
  36512. back: {
  36513. height: math.unit(16, "feet"),
  36514. weight: math.unit(610, "kg"),
  36515. name: "Back",
  36516. image: {
  36517. source: "./media/characters/huckle/back.svg",
  36518. extra: 1738/1651,
  36519. bottom: 37/1775
  36520. }
  36521. },
  36522. laughing: {
  36523. height: math.unit(3.75, "feet"),
  36524. name: "Laughing",
  36525. image: {
  36526. source: "./media/characters/huckle/laughing.svg"
  36527. }
  36528. },
  36529. angry: {
  36530. height: math.unit(4.15, "feet"),
  36531. name: "Angry",
  36532. image: {
  36533. source: "./media/characters/huckle/angry.svg"
  36534. }
  36535. },
  36536. },
  36537. [
  36538. {
  36539. name: "Normal",
  36540. height: math.unit(16, "feet"),
  36541. default: true
  36542. },
  36543. {
  36544. name: "Mini Macro",
  36545. height: math.unit(463, "feet")
  36546. },
  36547. {
  36548. name: "Macro",
  36549. height: math.unit(1680, "meters")
  36550. },
  36551. {
  36552. name: "Mega Macro",
  36553. height: math.unit(175, "km")
  36554. },
  36555. {
  36556. name: "Terra Macro",
  36557. height: math.unit(32, "gigameters")
  36558. },
  36559. {
  36560. name: "Multiverse+",
  36561. height: math.unit(2.56e23, "yottameters")
  36562. },
  36563. ]
  36564. ))
  36565. characterMakers.push(() => makeCharacter(
  36566. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  36567. {
  36568. front: {
  36569. height: math.unit(6 + 9/12, "feet"),
  36570. weight: math.unit(280, "lb"),
  36571. name: "Front",
  36572. image: {
  36573. source: "./media/characters/candy/front.svg",
  36574. extra: 234/217,
  36575. bottom: 11/245
  36576. }
  36577. },
  36578. },
  36579. [
  36580. {
  36581. name: "Really Small",
  36582. height: math.unit(0.1, "nm")
  36583. },
  36584. {
  36585. name: "Micro",
  36586. height: math.unit(2, "inches")
  36587. },
  36588. {
  36589. name: "Normal",
  36590. height: math.unit(6 + 9/12, "feet"),
  36591. default: true
  36592. },
  36593. {
  36594. name: "Small Macro",
  36595. height: math.unit(69, "feet")
  36596. },
  36597. {
  36598. name: "Macro",
  36599. height: math.unit(160, "feet")
  36600. },
  36601. {
  36602. name: "Megamacro",
  36603. height: math.unit(22000, "miles")
  36604. },
  36605. {
  36606. name: "Gigamacro",
  36607. height: math.unit(50000, "miles")
  36608. },
  36609. ]
  36610. ))
  36611. characterMakers.push(() => makeCharacter(
  36612. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36613. {
  36614. front: {
  36615. height: math.unit(4, "feet"),
  36616. weight: math.unit(90, "lb"),
  36617. name: "Front",
  36618. image: {
  36619. source: "./media/characters/joey-mcdonald/front.svg",
  36620. extra: 1059/852,
  36621. bottom: 33/1092
  36622. }
  36623. },
  36624. back: {
  36625. height: math.unit(4, "feet"),
  36626. weight: math.unit(90, "lb"),
  36627. name: "Back",
  36628. image: {
  36629. source: "./media/characters/joey-mcdonald/back.svg",
  36630. extra: 1077/879,
  36631. bottom: 5/1082
  36632. }
  36633. },
  36634. frontKobold: {
  36635. height: math.unit(4, "feet"),
  36636. weight: math.unit(100, "lb"),
  36637. name: "Front-kobold",
  36638. image: {
  36639. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36640. extra: 1480/1367,
  36641. bottom: 0/1480
  36642. }
  36643. },
  36644. backKobold: {
  36645. height: math.unit(4, "feet"),
  36646. weight: math.unit(100, "lb"),
  36647. name: "Back-kobold",
  36648. image: {
  36649. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36650. extra: 1449/1361,
  36651. bottom: 0/1449
  36652. }
  36653. },
  36654. },
  36655. [
  36656. {
  36657. name: "Normal",
  36658. height: math.unit(4, "feet"),
  36659. default: true
  36660. },
  36661. ]
  36662. ))
  36663. characterMakers.push(() => makeCharacter(
  36664. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36665. {
  36666. front: {
  36667. height: math.unit(12 + 6/12, "feet"),
  36668. name: "Front",
  36669. image: {
  36670. source: "./media/characters/kass-lockheed/front.svg",
  36671. extra: 354/343,
  36672. bottom: 9/363
  36673. }
  36674. },
  36675. back: {
  36676. height: math.unit(12 + 6/12, "feet"),
  36677. name: "Back",
  36678. image: {
  36679. source: "./media/characters/kass-lockheed/back.svg",
  36680. extra: 364/352,
  36681. bottom: 3/367
  36682. }
  36683. },
  36684. dick: {
  36685. height: math.unit(3.12, "feet"),
  36686. name: "Dick",
  36687. image: {
  36688. source: "./media/characters/kass-lockheed/dick.svg"
  36689. }
  36690. },
  36691. head: {
  36692. height: math.unit(2.6, "feet"),
  36693. name: "Head",
  36694. image: {
  36695. source: "./media/characters/kass-lockheed/head.svg"
  36696. }
  36697. },
  36698. bleh: {
  36699. height: math.unit(2.85, "feet"),
  36700. name: "Bleh",
  36701. image: {
  36702. source: "./media/characters/kass-lockheed/bleh.svg"
  36703. }
  36704. },
  36705. smug: {
  36706. height: math.unit(2.85, "feet"),
  36707. name: "Smug",
  36708. image: {
  36709. source: "./media/characters/kass-lockheed/smug.svg"
  36710. }
  36711. },
  36712. },
  36713. [
  36714. {
  36715. name: "Normal",
  36716. height: math.unit(12 + 6/12, "feet"),
  36717. default: true
  36718. },
  36719. ]
  36720. ))
  36721. characterMakers.push(() => makeCharacter(
  36722. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36723. {
  36724. front: {
  36725. height: math.unit(6 + 2/12, "feet"),
  36726. name: "Front",
  36727. image: {
  36728. source: "./media/characters/taylor/front.svg",
  36729. extra: 639/495,
  36730. bottom: 12/651
  36731. }
  36732. },
  36733. },
  36734. [
  36735. {
  36736. name: "Normal",
  36737. height: math.unit(6 + 2/12, "feet"),
  36738. default: true
  36739. },
  36740. {
  36741. name: "Big",
  36742. height: math.unit(15, "feet")
  36743. },
  36744. {
  36745. name: "Lorg",
  36746. height: math.unit(80, "feet")
  36747. },
  36748. {
  36749. name: "Too Lorg",
  36750. height: math.unit(120, "feet")
  36751. },
  36752. ]
  36753. ))
  36754. characterMakers.push(() => makeCharacter(
  36755. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36756. {
  36757. front: {
  36758. height: math.unit(15, "feet"),
  36759. name: "Front",
  36760. image: {
  36761. source: "./media/characters/kaizer/front.svg",
  36762. extra: 1612/1436,
  36763. bottom: 43/1655
  36764. }
  36765. },
  36766. },
  36767. [
  36768. {
  36769. name: "Normal",
  36770. height: math.unit(15, "feet"),
  36771. default: true
  36772. },
  36773. ]
  36774. ))
  36775. characterMakers.push(() => makeCharacter(
  36776. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36777. {
  36778. front: {
  36779. height: math.unit(2, "feet"),
  36780. weight: math.unit(30, "lb"),
  36781. name: "Front",
  36782. image: {
  36783. source: "./media/characters/sandy/front.svg",
  36784. extra: 1439/1307,
  36785. bottom: 194/1633
  36786. }
  36787. },
  36788. },
  36789. [
  36790. {
  36791. name: "Normal",
  36792. height: math.unit(2, "feet"),
  36793. default: true
  36794. },
  36795. ]
  36796. ))
  36797. characterMakers.push(() => makeCharacter(
  36798. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36799. {
  36800. front: {
  36801. height: math.unit(3, "feet"),
  36802. name: "Front",
  36803. image: {
  36804. source: "./media/characters/mellvi/front.svg",
  36805. extra: 1831/1630,
  36806. bottom: 58/1889
  36807. }
  36808. },
  36809. },
  36810. [
  36811. {
  36812. name: "Normal",
  36813. height: math.unit(3, "feet"),
  36814. default: true
  36815. },
  36816. ]
  36817. ))
  36818. characterMakers.push(() => makeCharacter(
  36819. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36820. {
  36821. front: {
  36822. height: math.unit(5 + 11/12, "feet"),
  36823. weight: math.unit(200, "lb"),
  36824. name: "Front",
  36825. image: {
  36826. source: "./media/characters/shirou/front.svg",
  36827. extra: 2491/2383,
  36828. bottom: 189/2680
  36829. }
  36830. },
  36831. back: {
  36832. height: math.unit(5 + 11/12, "feet"),
  36833. weight: math.unit(200, "lb"),
  36834. name: "Back",
  36835. image: {
  36836. source: "./media/characters/shirou/back.svg",
  36837. extra: 2554/2450,
  36838. bottom: 76/2630
  36839. }
  36840. },
  36841. },
  36842. [
  36843. {
  36844. name: "Normal",
  36845. height: math.unit(5 + 11/12, "feet"),
  36846. default: true
  36847. },
  36848. ]
  36849. ))
  36850. characterMakers.push(() => makeCharacter(
  36851. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36852. {
  36853. front: {
  36854. height: math.unit(6 + 3/12, "feet"),
  36855. weight: math.unit(177, "lb"),
  36856. name: "Front",
  36857. image: {
  36858. source: "./media/characters/noryu/front.svg",
  36859. extra: 973/885,
  36860. bottom: 10/983
  36861. }
  36862. },
  36863. },
  36864. [
  36865. {
  36866. name: "Normal",
  36867. height: math.unit(6 + 3/12, "feet"),
  36868. default: true
  36869. },
  36870. ]
  36871. ))
  36872. characterMakers.push(() => makeCharacter(
  36873. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36874. {
  36875. front: {
  36876. height: math.unit(5 + 6/12, "feet"),
  36877. weight: math.unit(170, "lb"),
  36878. name: "Front",
  36879. image: {
  36880. source: "./media/characters/mevolas-rubenido/front.svg",
  36881. extra: 2109/1901,
  36882. bottom: 96/2205
  36883. }
  36884. },
  36885. },
  36886. [
  36887. {
  36888. name: "Normal",
  36889. height: math.unit(5 + 6/12, "feet"),
  36890. default: true
  36891. },
  36892. ]
  36893. ))
  36894. characterMakers.push(() => makeCharacter(
  36895. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36896. {
  36897. front: {
  36898. height: math.unit(100, "feet"),
  36899. name: "Front",
  36900. image: {
  36901. source: "./media/characters/dee/front.svg",
  36902. extra: 2153/2036,
  36903. bottom: 59/2212
  36904. }
  36905. },
  36906. back: {
  36907. height: math.unit(100, "feet"),
  36908. name: "Back",
  36909. image: {
  36910. source: "./media/characters/dee/back.svg",
  36911. extra: 2183/2058,
  36912. bottom: 75/2258
  36913. }
  36914. },
  36915. foot: {
  36916. height: math.unit(19.43, "feet"),
  36917. name: "Foot",
  36918. image: {
  36919. source: "./media/characters/dee/foot.svg"
  36920. }
  36921. },
  36922. hoof: {
  36923. height: math.unit(20.6, "feet"),
  36924. name: "Hoof",
  36925. image: {
  36926. source: "./media/characters/dee/hoof.svg"
  36927. }
  36928. },
  36929. },
  36930. [
  36931. {
  36932. name: "Macro",
  36933. height: math.unit(100, "feet"),
  36934. default: true
  36935. },
  36936. ]
  36937. ))
  36938. characterMakers.push(() => makeCharacter(
  36939. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36940. {
  36941. front: {
  36942. height: math.unit(5 + 6/12, "feet"),
  36943. name: "Front",
  36944. image: {
  36945. source: "./media/characters/teh/front.svg",
  36946. extra: 1002/847,
  36947. bottom: 62/1064
  36948. }
  36949. },
  36950. },
  36951. [
  36952. {
  36953. name: "Normal",
  36954. height: math.unit(5 + 6/12, "feet"),
  36955. default: true
  36956. },
  36957. ]
  36958. ))
  36959. characterMakers.push(() => makeCharacter(
  36960. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36961. {
  36962. side: {
  36963. height: math.unit(6 + 1/12, "feet"),
  36964. weight: math.unit(204, "lb"),
  36965. name: "Side",
  36966. image: {
  36967. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36968. extra: 974/775,
  36969. bottom: 169/1143
  36970. }
  36971. },
  36972. sitting: {
  36973. height: math.unit(6 + 2/12, "feet"),
  36974. weight: math.unit(204, "lb"),
  36975. name: "Sitting",
  36976. image: {
  36977. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36978. extra: 1175/964,
  36979. bottom: 378/1553
  36980. }
  36981. },
  36982. },
  36983. [
  36984. {
  36985. name: "Normal",
  36986. height: math.unit(6 + 1/12, "feet"),
  36987. default: true
  36988. },
  36989. ]
  36990. ))
  36991. characterMakers.push(() => makeCharacter(
  36992. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36993. {
  36994. front: {
  36995. height: math.unit(6, "inches"),
  36996. name: "Front",
  36997. image: {
  36998. source: "./media/characters/tululi/front.svg",
  36999. extra: 1997/1876,
  37000. bottom: 20/2017
  37001. }
  37002. },
  37003. },
  37004. [
  37005. {
  37006. name: "Normal",
  37007. height: math.unit(6, "inches"),
  37008. default: true
  37009. },
  37010. ]
  37011. ))
  37012. characterMakers.push(() => makeCharacter(
  37013. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  37014. {
  37015. front: {
  37016. height: math.unit(4 + 1/12, "feet"),
  37017. name: "Front",
  37018. image: {
  37019. source: "./media/characters/star/front.svg",
  37020. extra: 1493/1189,
  37021. bottom: 48/1541
  37022. }
  37023. },
  37024. },
  37025. [
  37026. {
  37027. name: "Normal",
  37028. height: math.unit(4 + 1/12, "feet"),
  37029. default: true
  37030. },
  37031. ]
  37032. ))
  37033. characterMakers.push(() => makeCharacter(
  37034. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  37035. {
  37036. front: {
  37037. height: math.unit(6 + 3/12, "feet"),
  37038. name: "Front",
  37039. image: {
  37040. source: "./media/characters/comet/front.svg",
  37041. extra: 1681/1462,
  37042. bottom: 26/1707
  37043. }
  37044. },
  37045. },
  37046. [
  37047. {
  37048. name: "Normal",
  37049. height: math.unit(6 + 3/12, "feet"),
  37050. default: true
  37051. },
  37052. ]
  37053. ))
  37054. characterMakers.push(() => makeCharacter(
  37055. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  37056. {
  37057. front: {
  37058. height: math.unit(950, "feet"),
  37059. name: "Front",
  37060. image: {
  37061. source: "./media/characters/vortex/front.svg",
  37062. extra: 1497/1434,
  37063. bottom: 56/1553
  37064. }
  37065. },
  37066. maw: {
  37067. height: math.unit(285, "feet"),
  37068. name: "Maw",
  37069. image: {
  37070. source: "./media/characters/vortex/maw.svg"
  37071. }
  37072. },
  37073. },
  37074. [
  37075. {
  37076. name: "Macro",
  37077. height: math.unit(950, "feet"),
  37078. default: true
  37079. },
  37080. ]
  37081. ))
  37082. characterMakers.push(() => makeCharacter(
  37083. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  37084. {
  37085. front: {
  37086. height: math.unit(600, "feet"),
  37087. weight: math.unit(0.02, "grams"),
  37088. name: "Front",
  37089. image: {
  37090. source: "./media/characters/doodle/front.svg",
  37091. extra: 1578/1413,
  37092. bottom: 37/1615
  37093. }
  37094. },
  37095. },
  37096. [
  37097. {
  37098. name: "Macro",
  37099. height: math.unit(600, "feet"),
  37100. default: true
  37101. },
  37102. ]
  37103. ))
  37104. characterMakers.push(() => makeCharacter(
  37105. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  37106. {
  37107. front: {
  37108. height: math.unit(6 + 6/12, "feet"),
  37109. name: "Front",
  37110. image: {
  37111. source: "./media/characters/jai/front.svg",
  37112. extra: 1645/1534,
  37113. bottom: 115/1760
  37114. }
  37115. },
  37116. },
  37117. [
  37118. {
  37119. name: "Normal",
  37120. height: math.unit(6 + 6/12, "feet"),
  37121. default: true
  37122. },
  37123. ]
  37124. ))
  37125. characterMakers.push(() => makeCharacter(
  37126. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  37127. {
  37128. front: {
  37129. height: math.unit(6 + 8/12, "feet"),
  37130. name: "Front",
  37131. image: {
  37132. source: "./media/characters/pixel/front.svg",
  37133. extra: 1900/1735,
  37134. bottom: 63/1963
  37135. }
  37136. },
  37137. },
  37138. [
  37139. {
  37140. name: "Normal",
  37141. height: math.unit(6 + 8/12, "feet"),
  37142. default: true
  37143. },
  37144. ]
  37145. ))
  37146. characterMakers.push(() => makeCharacter(
  37147. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  37148. {
  37149. back: {
  37150. height: math.unit(4 + 1/12, "feet"),
  37151. weight: math.unit(75, "lb"),
  37152. name: "Back",
  37153. image: {
  37154. source: "./media/characters/rhett/back.svg",
  37155. extra: 930/878,
  37156. bottom: 25/955
  37157. }
  37158. },
  37159. front: {
  37160. height: math.unit(4 + 1/12, "feet"),
  37161. weight: math.unit(75, "lb"),
  37162. name: "Front",
  37163. image: {
  37164. source: "./media/characters/rhett/front.svg",
  37165. extra: 1682/1586,
  37166. bottom: 92/1774
  37167. }
  37168. },
  37169. },
  37170. [
  37171. {
  37172. name: "Micro",
  37173. height: math.unit(8, "inches")
  37174. },
  37175. {
  37176. name: "Tiny",
  37177. height: math.unit(2, "feet")
  37178. },
  37179. {
  37180. name: "Normal",
  37181. height: math.unit(4 + 1/12, "feet"),
  37182. default: true
  37183. },
  37184. ]
  37185. ))
  37186. characterMakers.push(() => makeCharacter(
  37187. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  37188. {
  37189. front: {
  37190. height: math.unit(3 + 3/12, "feet"),
  37191. name: "Front",
  37192. image: {
  37193. source: "./media/characters/penny/front.svg",
  37194. extra: 1406/1311,
  37195. bottom: 26/1432
  37196. }
  37197. },
  37198. },
  37199. [
  37200. {
  37201. name: "Normal",
  37202. height: math.unit(3 + 3/12, "feet"),
  37203. default: true
  37204. },
  37205. ]
  37206. ))
  37207. characterMakers.push(() => makeCharacter(
  37208. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  37209. {
  37210. front: {
  37211. height: math.unit(4 + 11/12, "feet"),
  37212. name: "Front",
  37213. image: {
  37214. source: "./media/characters/monty/front.svg",
  37215. extra: 1479/1209,
  37216. bottom: 0/1479
  37217. }
  37218. },
  37219. },
  37220. [
  37221. {
  37222. name: "Normal",
  37223. height: math.unit(4 + 11/12, "feet"),
  37224. default: true
  37225. },
  37226. ]
  37227. ))
  37228. characterMakers.push(() => makeCharacter(
  37229. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  37230. {
  37231. front: {
  37232. height: math.unit(8 + 4/12, "feet"),
  37233. name: "Front",
  37234. image: {
  37235. source: "./media/characters/sterling/front.svg",
  37236. extra: 1420/1236,
  37237. bottom: 27/1447
  37238. }
  37239. },
  37240. },
  37241. [
  37242. {
  37243. name: "Normal",
  37244. height: math.unit(8 + 4/12, "feet"),
  37245. default: true
  37246. },
  37247. ]
  37248. ))
  37249. characterMakers.push(() => makeCharacter(
  37250. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  37251. {
  37252. front: {
  37253. height: math.unit(15, "feet"),
  37254. name: "Front",
  37255. image: {
  37256. source: "./media/characters/marble/front.svg",
  37257. extra: 973/937,
  37258. bottom: 32/1005
  37259. }
  37260. },
  37261. },
  37262. [
  37263. {
  37264. name: "Normal",
  37265. height: math.unit(15, "feet"),
  37266. default: true
  37267. },
  37268. ]
  37269. ))
  37270. characterMakers.push(() => makeCharacter(
  37271. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  37272. {
  37273. front: {
  37274. height: math.unit(3, "inches"),
  37275. name: "Front",
  37276. image: {
  37277. source: "./media/characters/powder/front.svg",
  37278. extra: 1504/1334,
  37279. bottom: 518/2022
  37280. }
  37281. },
  37282. },
  37283. [
  37284. {
  37285. name: "Normal",
  37286. height: math.unit(3, "inches"),
  37287. default: true
  37288. },
  37289. ]
  37290. ))
  37291. characterMakers.push(() => makeCharacter(
  37292. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  37293. {
  37294. front: {
  37295. height: math.unit(4 + 5/12, "feet"),
  37296. name: "Front",
  37297. image: {
  37298. source: "./media/characters/joey-raccoon/front.svg",
  37299. extra: 1273/1197,
  37300. bottom: 0/1273
  37301. }
  37302. },
  37303. },
  37304. [
  37305. {
  37306. name: "Normal",
  37307. height: math.unit(4 + 5/12, "feet"),
  37308. default: true
  37309. },
  37310. ]
  37311. ))
  37312. characterMakers.push(() => makeCharacter(
  37313. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  37314. {
  37315. front: {
  37316. height: math.unit(8 + 4/12, "feet"),
  37317. name: "Front",
  37318. image: {
  37319. source: "./media/characters/vick/front.svg",
  37320. extra: 2187/2118,
  37321. bottom: 47/2234
  37322. }
  37323. },
  37324. },
  37325. [
  37326. {
  37327. name: "Normal",
  37328. height: math.unit(8 + 4/12, "feet"),
  37329. default: true
  37330. },
  37331. ]
  37332. ))
  37333. characterMakers.push(() => makeCharacter(
  37334. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  37335. {
  37336. front: {
  37337. height: math.unit(5 + 5/12, "feet"),
  37338. name: "Front",
  37339. image: {
  37340. source: "./media/characters/mitsy/front.svg",
  37341. extra: 1842/1695,
  37342. bottom: 0/1842
  37343. }
  37344. },
  37345. },
  37346. [
  37347. {
  37348. name: "Normal",
  37349. height: math.unit(5 + 5/12, "feet"),
  37350. default: true
  37351. },
  37352. ]
  37353. ))
  37354. characterMakers.push(() => makeCharacter(
  37355. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  37356. {
  37357. front: {
  37358. height: math.unit(6 + 3/12, "feet"),
  37359. name: "Front",
  37360. image: {
  37361. source: "./media/characters/silvy/front.svg",
  37362. extra: 1995/1836,
  37363. bottom: 225/2220
  37364. }
  37365. },
  37366. },
  37367. [
  37368. {
  37369. name: "Normal",
  37370. height: math.unit(6 + 3/12, "feet"),
  37371. default: true
  37372. },
  37373. ]
  37374. ))
  37375. characterMakers.push(() => makeCharacter(
  37376. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  37377. {
  37378. front: {
  37379. height: math.unit(3 + 8/12, "feet"),
  37380. name: "Front",
  37381. image: {
  37382. source: "./media/characters/rodney/front.svg",
  37383. extra: 1956/1747,
  37384. bottom: 31/1987
  37385. }
  37386. },
  37387. frontDressed: {
  37388. height: math.unit(2.9, "feet"),
  37389. name: "Front (Dressed)",
  37390. image: {
  37391. source: "./media/characters/rodney/front-dressed.svg",
  37392. extra: 1382/1241,
  37393. bottom: 385/1767
  37394. }
  37395. },
  37396. },
  37397. [
  37398. {
  37399. name: "Normal",
  37400. height: math.unit(3 + 8/12, "feet"),
  37401. default: true
  37402. },
  37403. ]
  37404. ))
  37405. characterMakers.push(() => makeCharacter(
  37406. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  37407. {
  37408. front: {
  37409. height: math.unit(5 + 9/12, "feet"),
  37410. weight: math.unit(194, "lbs"),
  37411. name: "Front",
  37412. image: {
  37413. source: "./media/characters/zakail-sudekai/front.svg",
  37414. extra: 2696/2533,
  37415. bottom: 248/2944
  37416. }
  37417. },
  37418. maw: {
  37419. height: math.unit(1.35, "feet"),
  37420. name: "Maw",
  37421. image: {
  37422. source: "./media/characters/zakail-sudekai/maw.svg"
  37423. }
  37424. },
  37425. },
  37426. [
  37427. {
  37428. name: "Normal",
  37429. height: math.unit(5 + 9/12, "feet"),
  37430. default: true
  37431. },
  37432. ]
  37433. ))
  37434. characterMakers.push(() => makeCharacter(
  37435. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  37436. {
  37437. front: {
  37438. height: math.unit(8 + 4/12, "feet"),
  37439. weight: math.unit(1200, "lb"),
  37440. name: "Front",
  37441. image: {
  37442. source: "./media/characters/eleanor/front.svg",
  37443. extra: 1226/1192,
  37444. bottom: 52/1278
  37445. }
  37446. },
  37447. back: {
  37448. height: math.unit(8 + 4/12, "feet"),
  37449. weight: math.unit(1200, "lb"),
  37450. name: "Back",
  37451. image: {
  37452. source: "./media/characters/eleanor/back.svg",
  37453. extra: 1242/1184,
  37454. bottom: 60/1302
  37455. }
  37456. },
  37457. head: {
  37458. height: math.unit(2.62, "feet"),
  37459. name: "Head",
  37460. image: {
  37461. source: "./media/characters/eleanor/head.svg"
  37462. }
  37463. },
  37464. },
  37465. [
  37466. {
  37467. name: "Normal",
  37468. height: math.unit(8 + 4/12, "feet"),
  37469. default: true
  37470. },
  37471. ]
  37472. ))
  37473. characterMakers.push(() => makeCharacter(
  37474. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  37475. {
  37476. front: {
  37477. height: math.unit(8 + 4/12, "feet"),
  37478. weight: math.unit(750, "lb"),
  37479. name: "Front",
  37480. image: {
  37481. source: "./media/characters/tanya/front.svg",
  37482. extra: 1749/1615,
  37483. bottom: 33/1782
  37484. }
  37485. },
  37486. },
  37487. [
  37488. {
  37489. name: "Normal",
  37490. height: math.unit(8 + 4/12, "feet"),
  37491. default: true
  37492. },
  37493. ]
  37494. ))
  37495. characterMakers.push(() => makeCharacter(
  37496. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  37497. {
  37498. front: {
  37499. height: math.unit(5, "feet"),
  37500. weight: math.unit(225, "lb"),
  37501. name: "Front",
  37502. image: {
  37503. source: "./media/characters/cindy/front.svg",
  37504. extra: 1320/1250,
  37505. bottom: 42/1362
  37506. }
  37507. },
  37508. frontDressed: {
  37509. height: math.unit(5, "feet"),
  37510. weight: math.unit(225, "lb"),
  37511. name: "Front (Dressed)",
  37512. image: {
  37513. source: "./media/characters/cindy/front-dressed.svg",
  37514. extra: 1320/1250,
  37515. bottom: 42/1362
  37516. }
  37517. },
  37518. back: {
  37519. height: math.unit(5, "feet"),
  37520. weight: math.unit(225, "lb"),
  37521. name: "Back",
  37522. image: {
  37523. source: "./media/characters/cindy/back.svg",
  37524. extra: 1384/1346,
  37525. bottom: 14/1398
  37526. }
  37527. },
  37528. },
  37529. [
  37530. {
  37531. name: "Normal",
  37532. height: math.unit(5, "feet"),
  37533. default: true
  37534. },
  37535. ]
  37536. ))
  37537. characterMakers.push(() => makeCharacter(
  37538. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  37539. {
  37540. front: {
  37541. height: math.unit(6 + 9/12, "feet"),
  37542. weight: math.unit(440, "lb"),
  37543. name: "Front",
  37544. image: {
  37545. source: "./media/characters/wilbur-owen/front.svg",
  37546. extra: 1575/1448,
  37547. bottom: 72/1647
  37548. }
  37549. },
  37550. back: {
  37551. height: math.unit(6 + 9/12, "feet"),
  37552. weight: math.unit(440, "lb"),
  37553. name: "Back",
  37554. image: {
  37555. source: "./media/characters/wilbur-owen/back.svg",
  37556. extra: 1578/1445,
  37557. bottom: 36/1614
  37558. }
  37559. },
  37560. },
  37561. [
  37562. {
  37563. name: "Normal",
  37564. height: math.unit(6 + 9/12, "feet"),
  37565. default: true
  37566. },
  37567. ]
  37568. ))
  37569. characterMakers.push(() => makeCharacter(
  37570. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  37571. {
  37572. front: {
  37573. height: math.unit(6 + 5/12, "feet"),
  37574. weight: math.unit(650, "lb"),
  37575. name: "Front",
  37576. image: {
  37577. source: "./media/characters/keegan/front.svg",
  37578. extra: 2387/2198,
  37579. bottom: 33/2420
  37580. }
  37581. },
  37582. side: {
  37583. height: math.unit(6 + 5/12, "feet"),
  37584. weight: math.unit(650, "lb"),
  37585. name: "Side",
  37586. image: {
  37587. source: "./media/characters/keegan/side.svg",
  37588. extra: 2390/2202,
  37589. bottom: 47/2437
  37590. }
  37591. },
  37592. back: {
  37593. height: math.unit(6 + 5/12, "feet"),
  37594. weight: math.unit(650, "lb"),
  37595. name: "Back",
  37596. image: {
  37597. source: "./media/characters/keegan/back.svg",
  37598. extra: 2418/2268,
  37599. bottom: 15/2433
  37600. }
  37601. },
  37602. frontSfw: {
  37603. height: math.unit(6 + 5/12, "feet"),
  37604. weight: math.unit(650, "lb"),
  37605. name: "Front (SFW)",
  37606. image: {
  37607. source: "./media/characters/keegan/front-sfw.svg",
  37608. extra: 2387/2198,
  37609. bottom: 33/2420
  37610. }
  37611. },
  37612. beans: {
  37613. height: math.unit(1.85, "feet"),
  37614. name: "Beans",
  37615. image: {
  37616. source: "./media/characters/keegan/beans.svg"
  37617. }
  37618. },
  37619. },
  37620. [
  37621. {
  37622. name: "Normal",
  37623. height: math.unit(6 + 5/12, "feet"),
  37624. default: true
  37625. },
  37626. ]
  37627. ))
  37628. characterMakers.push(() => makeCharacter(
  37629. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37630. {
  37631. front: {
  37632. height: math.unit(9, "feet"),
  37633. name: "Front",
  37634. image: {
  37635. source: "./media/characters/colton/front.svg",
  37636. extra: 1589/1326,
  37637. bottom: 139/1728
  37638. }
  37639. },
  37640. },
  37641. [
  37642. {
  37643. name: "Normal",
  37644. height: math.unit(9, "feet"),
  37645. default: true
  37646. },
  37647. ]
  37648. ))
  37649. characterMakers.push(() => makeCharacter(
  37650. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37651. {
  37652. front: {
  37653. height: math.unit(2 + 9/12, "feet"),
  37654. name: "Front",
  37655. image: {
  37656. source: "./media/characters/bora/front.svg",
  37657. extra: 1265/1250,
  37658. bottom: 24/1289
  37659. }
  37660. },
  37661. },
  37662. [
  37663. {
  37664. name: "Normal",
  37665. height: math.unit(2 + 9/12, "feet"),
  37666. default: true
  37667. },
  37668. ]
  37669. ))
  37670. characterMakers.push(() => makeCharacter(
  37671. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37672. {
  37673. front: {
  37674. height: math.unit(8, "feet"),
  37675. name: "Front",
  37676. image: {
  37677. source: "./media/characters/myu-myu/front.svg",
  37678. extra: 1949/1857,
  37679. bottom: 90/2039
  37680. }
  37681. },
  37682. },
  37683. [
  37684. {
  37685. name: "Normal",
  37686. height: math.unit(8, "feet"),
  37687. default: true
  37688. },
  37689. {
  37690. name: "Big",
  37691. height: math.unit(15, "feet")
  37692. },
  37693. {
  37694. name: "BIG",
  37695. height: math.unit(25, "feet")
  37696. },
  37697. ]
  37698. ))
  37699. characterMakers.push(() => makeCharacter(
  37700. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37701. {
  37702. side: {
  37703. height: math.unit(7 + 5/12, "feet"),
  37704. weight: math.unit(2800, "lb"),
  37705. name: "Side",
  37706. image: {
  37707. source: "./media/characters/haloren/side.svg",
  37708. extra: 1793/409,
  37709. bottom: 59/1852
  37710. }
  37711. },
  37712. frontPaw: {
  37713. height: math.unit(2.36, "feet"),
  37714. name: "Front paw",
  37715. image: {
  37716. source: "./media/characters/haloren/front-paw.svg"
  37717. }
  37718. },
  37719. hindPaw: {
  37720. height: math.unit(3.18, "feet"),
  37721. name: "Hind paw",
  37722. image: {
  37723. source: "./media/characters/haloren/hind-paw.svg"
  37724. }
  37725. },
  37726. maw: {
  37727. height: math.unit(5.05, "feet"),
  37728. name: "Maw",
  37729. image: {
  37730. source: "./media/characters/haloren/maw.svg"
  37731. }
  37732. },
  37733. dick: {
  37734. height: math.unit(2.90, "feet"),
  37735. name: "Dick",
  37736. image: {
  37737. source: "./media/characters/haloren/dick.svg"
  37738. }
  37739. },
  37740. },
  37741. [
  37742. {
  37743. name: "Normal",
  37744. height: math.unit(7 + 5/12, "feet"),
  37745. default: true
  37746. },
  37747. {
  37748. name: "Enhanced",
  37749. height: math.unit(14 + 3/12, "feet")
  37750. },
  37751. ]
  37752. ))
  37753. characterMakers.push(() => makeCharacter(
  37754. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37755. {
  37756. front: {
  37757. height: math.unit(171, "cm"),
  37758. name: "Front",
  37759. image: {
  37760. source: "./media/characters/kimmy/front.svg",
  37761. extra: 1491/1435,
  37762. bottom: 53/1544
  37763. }
  37764. },
  37765. },
  37766. [
  37767. {
  37768. name: "Small",
  37769. height: math.unit(9, "cm")
  37770. },
  37771. {
  37772. name: "Normal",
  37773. height: math.unit(171, "cm"),
  37774. default: true
  37775. },
  37776. ]
  37777. ))
  37778. characterMakers.push(() => makeCharacter(
  37779. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37780. {
  37781. front: {
  37782. height: math.unit(8, "feet"),
  37783. weight: math.unit(300, "lb"),
  37784. name: "Front",
  37785. image: {
  37786. source: "./media/characters/galeboomer/front.svg",
  37787. extra: 4651/4415,
  37788. bottom: 162/4813
  37789. }
  37790. },
  37791. back: {
  37792. height: math.unit(8, "feet"),
  37793. weight: math.unit(300, "lb"),
  37794. name: "Back",
  37795. image: {
  37796. source: "./media/characters/galeboomer/back.svg",
  37797. extra: 4544/4314,
  37798. bottom: 16/4560
  37799. }
  37800. },
  37801. frontAlt: {
  37802. height: math.unit(8, "feet"),
  37803. weight: math.unit(300, "lb"),
  37804. name: "Front (Alt)",
  37805. image: {
  37806. source: "./media/characters/galeboomer/front-alt.svg",
  37807. extra: 4458/4228,
  37808. bottom: 68/4526
  37809. }
  37810. },
  37811. maw: {
  37812. height: math.unit(1.2, "feet"),
  37813. name: "Maw",
  37814. image: {
  37815. source: "./media/characters/galeboomer/maw.svg"
  37816. }
  37817. },
  37818. },
  37819. [
  37820. {
  37821. name: "Normal",
  37822. height: math.unit(8, "feet"),
  37823. default: true
  37824. },
  37825. ]
  37826. ))
  37827. characterMakers.push(() => makeCharacter(
  37828. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37829. {
  37830. front: {
  37831. height: math.unit(5 + 9/12, "feet"),
  37832. weight: math.unit(120, "lb"),
  37833. name: "Front",
  37834. image: {
  37835. source: "./media/characters/chyr/front.svg",
  37836. extra: 1323/1254,
  37837. bottom: 63/1386
  37838. }
  37839. },
  37840. back: {
  37841. height: math.unit(5 + 9/12, "feet"),
  37842. weight: math.unit(120, "lb"),
  37843. name: "Back",
  37844. image: {
  37845. source: "./media/characters/chyr/back.svg",
  37846. extra: 1323/1252,
  37847. bottom: 48/1371
  37848. }
  37849. },
  37850. },
  37851. [
  37852. {
  37853. name: "Normal",
  37854. height: math.unit(5 + 9/12, "feet"),
  37855. default: true
  37856. },
  37857. ]
  37858. ))
  37859. characterMakers.push(() => makeCharacter(
  37860. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37861. {
  37862. front: {
  37863. height: math.unit(7, "feet"),
  37864. weight: math.unit(310, "lb"),
  37865. name: "Front",
  37866. image: {
  37867. source: "./media/characters/solarus/front.svg",
  37868. extra: 2415/2021,
  37869. bottom: 103/2518
  37870. }
  37871. },
  37872. back: {
  37873. height: math.unit(7, "feet"),
  37874. weight: math.unit(310, "lb"),
  37875. name: "Back",
  37876. image: {
  37877. source: "./media/characters/solarus/back.svg",
  37878. extra: 2463/2089,
  37879. bottom: 79/2542
  37880. }
  37881. },
  37882. },
  37883. [
  37884. {
  37885. name: "Normal",
  37886. height: math.unit(7, "feet"),
  37887. default: true
  37888. },
  37889. ]
  37890. ))
  37891. characterMakers.push(() => makeCharacter(
  37892. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37893. {
  37894. front: {
  37895. height: math.unit(16, "feet"),
  37896. name: "Front",
  37897. image: {
  37898. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37899. extra: 1844/1780,
  37900. bottom: 58/1902
  37901. }
  37902. },
  37903. winterCoat: {
  37904. height: math.unit(16, "feet"),
  37905. name: "Winter Coat",
  37906. image: {
  37907. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37908. extra: 1807/1775,
  37909. bottom: 69/1876
  37910. }
  37911. },
  37912. },
  37913. [
  37914. {
  37915. name: "Normal",
  37916. height: math.unit(16, "feet"),
  37917. default: true
  37918. },
  37919. {
  37920. name: "Chicago Size",
  37921. height: math.unit(560, "feet")
  37922. },
  37923. ]
  37924. ))
  37925. characterMakers.push(() => makeCharacter(
  37926. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37927. {
  37928. front: {
  37929. height: math.unit(11 + 6/12, "feet"),
  37930. weight: math.unit(1366, "lb"),
  37931. name: "Front",
  37932. image: {
  37933. source: "./media/characters/lexor/front.svg",
  37934. extra: 1560/1481,
  37935. bottom: 211/1771
  37936. }
  37937. },
  37938. back: {
  37939. height: math.unit(11 + 6/12, "feet"),
  37940. weight: math.unit(1366, "lb"),
  37941. name: "Back",
  37942. image: {
  37943. source: "./media/characters/lexor/back.svg",
  37944. extra: 1614/1533,
  37945. bottom: 76/1690
  37946. }
  37947. },
  37948. maw: {
  37949. height: math.unit(3, "feet"),
  37950. name: "Maw",
  37951. image: {
  37952. source: "./media/characters/lexor/maw.svg"
  37953. }
  37954. },
  37955. dick: {
  37956. height: math.unit(2.59, "feet"),
  37957. name: "Dick",
  37958. image: {
  37959. source: "./media/characters/lexor/dick.svg"
  37960. }
  37961. },
  37962. },
  37963. [
  37964. {
  37965. name: "Normal",
  37966. height: math.unit(11 + 6/12, "feet"),
  37967. default: true
  37968. },
  37969. ]
  37970. ))
  37971. characterMakers.push(() => makeCharacter(
  37972. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37973. {
  37974. front: {
  37975. height: math.unit(5 + 8/12, "feet"),
  37976. name: "Front",
  37977. image: {
  37978. source: "./media/characters/magnum/front.svg",
  37979. extra: 942/855,
  37980. bottom: 26/968
  37981. }
  37982. },
  37983. },
  37984. [
  37985. {
  37986. name: "Normal",
  37987. height: math.unit(5 + 8/12, "feet"),
  37988. default: true
  37989. },
  37990. ]
  37991. ))
  37992. characterMakers.push(() => makeCharacter(
  37993. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37994. {
  37995. front: {
  37996. height: math.unit(18 + 4/12, "feet"),
  37997. weight: math.unit(1500, "kg"),
  37998. name: "Front",
  37999. image: {
  38000. source: "./media/characters/solas-sharpsman/front.svg",
  38001. extra: 1698/1589,
  38002. bottom: 0/1698
  38003. }
  38004. },
  38005. },
  38006. [
  38007. {
  38008. name: "Normal",
  38009. height: math.unit(18 + 4/12, "feet"),
  38010. default: true
  38011. },
  38012. ]
  38013. ))
  38014. characterMakers.push(() => makeCharacter(
  38015. { name: "October", species: ["tiger"], tags: ["anthro"] },
  38016. {
  38017. front: {
  38018. height: math.unit(5 + 5/12, "feet"),
  38019. weight: math.unit(180, "lb"),
  38020. name: "Front",
  38021. image: {
  38022. source: "./media/characters/october/front.svg",
  38023. extra: 1800/1650,
  38024. bottom: 0/1800
  38025. }
  38026. },
  38027. frontNsfw: {
  38028. height: math.unit(5 + 5/12, "feet"),
  38029. weight: math.unit(180, "lb"),
  38030. name: "Front (NSFW)",
  38031. image: {
  38032. source: "./media/characters/october/front-nsfw.svg",
  38033. extra: 1392/1307,
  38034. bottom: 42/1434
  38035. }
  38036. },
  38037. },
  38038. [
  38039. {
  38040. name: "Normal",
  38041. height: math.unit(5 + 5/12, "feet"),
  38042. default: true
  38043. },
  38044. ]
  38045. ))
  38046. characterMakers.push(() => makeCharacter(
  38047. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  38048. {
  38049. front: {
  38050. height: math.unit(8 + 6/12, "feet"),
  38051. name: "Front",
  38052. image: {
  38053. source: "./media/characters/essynkardi/front.svg",
  38054. extra: 1914/1846,
  38055. bottom: 22/1936
  38056. }
  38057. },
  38058. },
  38059. [
  38060. {
  38061. name: "Normal",
  38062. height: math.unit(8 + 6/12, "feet"),
  38063. default: true
  38064. },
  38065. ]
  38066. ))
  38067. characterMakers.push(() => makeCharacter(
  38068. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  38069. {
  38070. front: {
  38071. height: math.unit(6 + 6/12, "feet"),
  38072. weight: math.unit(7, "lb"),
  38073. name: "Front",
  38074. image: {
  38075. source: "./media/characters/icky/front.svg",
  38076. extra: 813/782,
  38077. bottom: 66/879
  38078. }
  38079. },
  38080. back: {
  38081. height: math.unit(6 + 6/12, "feet"),
  38082. weight: math.unit(7, "lb"),
  38083. name: "Back",
  38084. image: {
  38085. source: "./media/characters/icky/back.svg",
  38086. extra: 754/735,
  38087. bottom: 56/810
  38088. }
  38089. },
  38090. },
  38091. [
  38092. {
  38093. name: "Normal",
  38094. height: math.unit(6 + 6/12, "feet"),
  38095. default: true
  38096. },
  38097. ]
  38098. ))
  38099. characterMakers.push(() => makeCharacter(
  38100. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  38101. {
  38102. front: {
  38103. height: math.unit(15, "feet"),
  38104. name: "Front",
  38105. image: {
  38106. source: "./media/characters/rojas/front.svg",
  38107. extra: 1462/1408,
  38108. bottom: 95/1557
  38109. }
  38110. },
  38111. back: {
  38112. height: math.unit(15, "feet"),
  38113. name: "Back",
  38114. image: {
  38115. source: "./media/characters/rojas/back.svg",
  38116. extra: 1023/954,
  38117. bottom: 28/1051
  38118. }
  38119. },
  38120. },
  38121. [
  38122. {
  38123. name: "Normal",
  38124. height: math.unit(15, "feet"),
  38125. default: true
  38126. },
  38127. ]
  38128. ))
  38129. characterMakers.push(() => makeCharacter(
  38130. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  38131. {
  38132. frontHuman: {
  38133. height: math.unit(5 + 7/12, "feet"),
  38134. name: "Front (Human)",
  38135. image: {
  38136. source: "./media/characters/alek-dryagan/front-human.svg",
  38137. extra: 1687/1667,
  38138. bottom: 69/1756
  38139. }
  38140. },
  38141. backHuman: {
  38142. height: math.unit(5 + 7/12, "feet"),
  38143. name: "Back (Human)",
  38144. image: {
  38145. source: "./media/characters/alek-dryagan/back-human.svg",
  38146. extra: 1670/1649,
  38147. bottom: 65/1735
  38148. }
  38149. },
  38150. frontDemi: {
  38151. height: math.unit(65, "feet"),
  38152. name: "Front (Demi)",
  38153. image: {
  38154. source: "./media/characters/alek-dryagan/front-demi.svg",
  38155. extra: 1669/1642,
  38156. bottom: 49/1718
  38157. }
  38158. },
  38159. backDemi: {
  38160. height: math.unit(65, "feet"),
  38161. name: "Back (Demi)",
  38162. image: {
  38163. source: "./media/characters/alek-dryagan/back-demi.svg",
  38164. extra: 1658/1637,
  38165. bottom: 40/1698
  38166. }
  38167. },
  38168. mawHuman: {
  38169. height: math.unit(0.3, "feet"),
  38170. name: "Maw (Human)",
  38171. image: {
  38172. source: "./media/characters/alek-dryagan/maw-human.svg"
  38173. }
  38174. },
  38175. mawDemi: {
  38176. height: math.unit(3.8, "feet"),
  38177. name: "Maw (Demi)",
  38178. image: {
  38179. source: "./media/characters/alek-dryagan/maw-demi.svg"
  38180. }
  38181. },
  38182. },
  38183. [
  38184. {
  38185. name: "Normal",
  38186. height: math.unit(5 + 7/12, "feet"),
  38187. default: true
  38188. },
  38189. ]
  38190. ))
  38191. characterMakers.push(() => makeCharacter(
  38192. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  38193. {
  38194. frontHuman: {
  38195. height: math.unit(5 + 2/12, "feet"),
  38196. name: "Front (Human)",
  38197. image: {
  38198. source: "./media/characters/gen/front-human.svg",
  38199. extra: 1627/1538,
  38200. bottom: 71/1698
  38201. }
  38202. },
  38203. backHuman: {
  38204. height: math.unit(5 + 2/12, "feet"),
  38205. name: "Back (Human)",
  38206. image: {
  38207. source: "./media/characters/gen/back-human.svg",
  38208. extra: 1638/1548,
  38209. bottom: 69/1707
  38210. }
  38211. },
  38212. frontDemi: {
  38213. height: math.unit(5 + 2/12, "feet"),
  38214. name: "Front (Demi)",
  38215. image: {
  38216. source: "./media/characters/gen/front-demi.svg",
  38217. extra: 1627/1538,
  38218. bottom: 71/1698
  38219. }
  38220. },
  38221. backDemi: {
  38222. height: math.unit(5 + 2/12, "feet"),
  38223. name: "Back (Demi)",
  38224. image: {
  38225. source: "./media/characters/gen/back-demi.svg",
  38226. extra: 1638/1548,
  38227. bottom: 69/1707
  38228. }
  38229. },
  38230. },
  38231. [
  38232. {
  38233. name: "Normal",
  38234. height: math.unit(5 + 2/12, "feet"),
  38235. default: true
  38236. },
  38237. ]
  38238. ))
  38239. characterMakers.push(() => makeCharacter(
  38240. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  38241. {
  38242. frontImp: {
  38243. height: math.unit(1 + 11/12, "feet"),
  38244. name: "Front (Imp)",
  38245. image: {
  38246. source: "./media/characters/max-kobold/front-imp.svg",
  38247. extra: 1238/1134,
  38248. bottom: 81/1319
  38249. }
  38250. },
  38251. backImp: {
  38252. height: math.unit(1 + 11/12, "feet"),
  38253. name: "Back (Imp)",
  38254. image: {
  38255. source: "./media/characters/max-kobold/back-imp.svg",
  38256. extra: 1334/1175,
  38257. bottom: 34/1368
  38258. }
  38259. },
  38260. frontDemi: {
  38261. height: math.unit(5 + 9/12, "feet"),
  38262. name: "Front (Demi)",
  38263. image: {
  38264. source: "./media/characters/max-kobold/front-demi.svg",
  38265. extra: 1715/1685,
  38266. bottom: 54/1769
  38267. }
  38268. },
  38269. backDemi: {
  38270. height: math.unit(5 + 9/12, "feet"),
  38271. name: "Back (Demi)",
  38272. image: {
  38273. source: "./media/characters/max-kobold/back-demi.svg",
  38274. extra: 1752/1729,
  38275. bottom: 41/1793
  38276. }
  38277. },
  38278. handImp: {
  38279. height: math.unit(0.45, "feet"),
  38280. name: "Hand (Imp)",
  38281. image: {
  38282. source: "./media/characters/max-kobold/hand.svg"
  38283. }
  38284. },
  38285. pawImp: {
  38286. height: math.unit(0.46, "feet"),
  38287. name: "Paw (Imp)",
  38288. image: {
  38289. source: "./media/characters/max-kobold/paw.svg"
  38290. }
  38291. },
  38292. handDemi: {
  38293. height: math.unit(0.80, "feet"),
  38294. name: "Hand (Demi)",
  38295. image: {
  38296. source: "./media/characters/max-kobold/hand.svg"
  38297. }
  38298. },
  38299. pawDemi: {
  38300. height: math.unit(1.1, "feet"),
  38301. name: "Paw (Demi)",
  38302. image: {
  38303. source: "./media/characters/max-kobold/paw.svg"
  38304. }
  38305. },
  38306. headImp: {
  38307. height: math.unit(1.33, "feet"),
  38308. name: "Head (Imp)",
  38309. image: {
  38310. source: "./media/characters/max-kobold/head-imp.svg"
  38311. }
  38312. },
  38313. mawImp: {
  38314. height: math.unit(0.75, "feet"),
  38315. name: "Maw (Imp)",
  38316. image: {
  38317. source: "./media/characters/max-kobold/maw-imp.svg"
  38318. }
  38319. },
  38320. mawDemi: {
  38321. height: math.unit(0.42, "feet"),
  38322. name: "Maw (Demi)",
  38323. image: {
  38324. source: "./media/characters/max-kobold/maw-demi.svg"
  38325. }
  38326. },
  38327. },
  38328. [
  38329. {
  38330. name: "Normal",
  38331. height: math.unit(1 + 11/12, "feet"),
  38332. default: true
  38333. },
  38334. ]
  38335. ))
  38336. characterMakers.push(() => makeCharacter(
  38337. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  38338. {
  38339. front: {
  38340. height: math.unit(7 + 5/12, "feet"),
  38341. name: "Front",
  38342. image: {
  38343. source: "./media/characters/carbon/front.svg",
  38344. extra: 1754/1689,
  38345. bottom: 65/1819
  38346. }
  38347. },
  38348. back: {
  38349. height: math.unit(7 + 5/12, "feet"),
  38350. name: "Back",
  38351. image: {
  38352. source: "./media/characters/carbon/back.svg",
  38353. extra: 1762/1695,
  38354. bottom: 24/1786
  38355. }
  38356. },
  38357. frontGigantamax: {
  38358. height: math.unit(150, "feet"),
  38359. name: "Front (Gigantamax)",
  38360. image: {
  38361. source: "./media/characters/carbon/front-gigantamax.svg",
  38362. extra: 1826/1669,
  38363. bottom: 59/1885
  38364. }
  38365. },
  38366. backGigantamax: {
  38367. height: math.unit(150, "feet"),
  38368. name: "Back (Gigantamax)",
  38369. image: {
  38370. source: "./media/characters/carbon/back-gigantamax.svg",
  38371. extra: 1796/1653,
  38372. bottom: 53/1849
  38373. }
  38374. },
  38375. maw: {
  38376. height: math.unit(0.48, "feet"),
  38377. name: "Maw",
  38378. image: {
  38379. source: "./media/characters/carbon/maw.svg"
  38380. }
  38381. },
  38382. mawGigantamax: {
  38383. height: math.unit(7.5, "feet"),
  38384. name: "Maw (Gigantamax)",
  38385. image: {
  38386. source: "./media/characters/carbon/maw-gigantamax.svg"
  38387. }
  38388. },
  38389. },
  38390. [
  38391. {
  38392. name: "Normal",
  38393. height: math.unit(7 + 5/12, "feet"),
  38394. default: true
  38395. },
  38396. ]
  38397. ))
  38398. characterMakers.push(() => makeCharacter(
  38399. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  38400. {
  38401. front: {
  38402. height: math.unit(6, "feet"),
  38403. name: "Front",
  38404. image: {
  38405. source: "./media/characters/maverick/front.svg",
  38406. extra: 1672/1661,
  38407. bottom: 85/1757
  38408. }
  38409. },
  38410. back: {
  38411. height: math.unit(6, "feet"),
  38412. name: "Back",
  38413. image: {
  38414. source: "./media/characters/maverick/back.svg",
  38415. extra: 1642/1631,
  38416. bottom: 38/1680
  38417. }
  38418. },
  38419. },
  38420. [
  38421. {
  38422. name: "Normal",
  38423. height: math.unit(6, "feet"),
  38424. default: true
  38425. },
  38426. ]
  38427. ))
  38428. characterMakers.push(() => makeCharacter(
  38429. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  38430. {
  38431. front: {
  38432. height: math.unit(15, "feet"),
  38433. weight: math.unit(615, "lb"),
  38434. name: "Front",
  38435. image: {
  38436. source: "./media/characters/grockle/front.svg",
  38437. extra: 1535/1427,
  38438. bottom: 56/1591
  38439. }
  38440. },
  38441. },
  38442. [
  38443. {
  38444. name: "Normal",
  38445. height: math.unit(15, "feet"),
  38446. default: true
  38447. },
  38448. {
  38449. name: "Large",
  38450. height: math.unit(150, "feet")
  38451. },
  38452. {
  38453. name: "Macro",
  38454. height: math.unit(1876, "feet")
  38455. },
  38456. {
  38457. name: "Mega Macro",
  38458. height: math.unit(121940, "feet")
  38459. },
  38460. {
  38461. name: "Giga Macro",
  38462. height: math.unit(750, "km")
  38463. },
  38464. {
  38465. name: "Tera Macro",
  38466. height: math.unit(750000, "km")
  38467. },
  38468. {
  38469. name: "Galactic",
  38470. height: math.unit(1.4e5, "km")
  38471. },
  38472. {
  38473. name: "Godlike",
  38474. height: math.unit(9.8e280, "galaxies")
  38475. },
  38476. ]
  38477. ))
  38478. characterMakers.push(() => makeCharacter(
  38479. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  38480. {
  38481. front: {
  38482. height: math.unit(11, "meters"),
  38483. weight: math.unit(20, "tonnes"),
  38484. name: "Front",
  38485. image: {
  38486. source: "./media/characters/alistair/front.svg",
  38487. extra: 1265/1009,
  38488. bottom: 93/1358
  38489. }
  38490. },
  38491. },
  38492. [
  38493. {
  38494. name: "Normal",
  38495. height: math.unit(11, "meters"),
  38496. default: true
  38497. },
  38498. ]
  38499. ))
  38500. characterMakers.push(() => makeCharacter(
  38501. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  38502. {
  38503. front: {
  38504. height: math.unit(5 + 8/12, "feet"),
  38505. name: "Front",
  38506. image: {
  38507. source: "./media/characters/haruka/front.svg",
  38508. extra: 2012/1952,
  38509. bottom: 0/2012
  38510. }
  38511. },
  38512. },
  38513. [
  38514. {
  38515. name: "Normal",
  38516. height: math.unit(5 + 8/12, "feet"),
  38517. default: true
  38518. },
  38519. ]
  38520. ))
  38521. characterMakers.push(() => makeCharacter(
  38522. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  38523. {
  38524. back: {
  38525. height: math.unit(9, "feet"),
  38526. name: "Back",
  38527. image: {
  38528. source: "./media/characters/vivian-sylveon/back.svg",
  38529. extra: 1853/1714,
  38530. bottom: 0/1853
  38531. }
  38532. },
  38533. },
  38534. [
  38535. {
  38536. name: "Normal",
  38537. height: math.unit(9, "feet"),
  38538. default: true
  38539. },
  38540. {
  38541. name: "Macro",
  38542. height: math.unit(500, "feet")
  38543. },
  38544. {
  38545. name: "Megamacro",
  38546. height: math.unit(600, "miles")
  38547. },
  38548. {
  38549. name: "Gigamacro",
  38550. height: math.unit(30000, "miles")
  38551. },
  38552. ]
  38553. ))
  38554. characterMakers.push(() => makeCharacter(
  38555. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  38556. {
  38557. anthro: {
  38558. height: math.unit(5 + 10/12, "feet"),
  38559. weight: math.unit(100, "lb"),
  38560. name: "Anthro",
  38561. image: {
  38562. source: "./media/characters/daiki/anthro.svg",
  38563. extra: 1115/1027,
  38564. bottom: 69/1184
  38565. }
  38566. },
  38567. feral: {
  38568. height: math.unit(200, "feet"),
  38569. name: "Feral",
  38570. image: {
  38571. source: "./media/characters/daiki/feral.svg",
  38572. extra: 1256/313,
  38573. bottom: 39/1295
  38574. }
  38575. },
  38576. feralHead: {
  38577. height: math.unit(171, "feet"),
  38578. name: "Feral Head",
  38579. image: {
  38580. source: "./media/characters/daiki/feral-head.svg"
  38581. }
  38582. },
  38583. manaDragon: {
  38584. height: math.unit(170, "meters"),
  38585. name: "Mana-dragon",
  38586. image: {
  38587. source: "./media/characters/daiki/mana-dragon.svg",
  38588. extra: 763/420,
  38589. bottom: 97/860
  38590. }
  38591. },
  38592. },
  38593. [
  38594. {
  38595. name: "Normal",
  38596. height: math.unit(5 + 10/12, "feet"),
  38597. default: true
  38598. },
  38599. ]
  38600. ))
  38601. characterMakers.push(() => makeCharacter(
  38602. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38603. {
  38604. fullyEquippedFront: {
  38605. height: math.unit(3 + 1/12, "feet"),
  38606. weight: math.unit(24, "lb"),
  38607. name: "Fully Equipped (Front)",
  38608. image: {
  38609. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38610. extra: 687/605,
  38611. bottom: 18/705
  38612. }
  38613. },
  38614. fullyEquippedBack: {
  38615. height: math.unit(3 + 1/12, "feet"),
  38616. weight: math.unit(24, "lb"),
  38617. name: "Fully Equipped (Back)",
  38618. image: {
  38619. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38620. extra: 689/590,
  38621. bottom: 18/707
  38622. }
  38623. },
  38624. dailyWear: {
  38625. height: math.unit(3 + 1/12, "feet"),
  38626. weight: math.unit(24, "lb"),
  38627. name: "Daily Wear",
  38628. image: {
  38629. source: "./media/characters/tea-spot/daily-wear.svg",
  38630. extra: 701/620,
  38631. bottom: 21/722
  38632. }
  38633. },
  38634. maidWork: {
  38635. height: math.unit(3 + 1/12, "feet"),
  38636. weight: math.unit(24, "lb"),
  38637. name: "Maid Work",
  38638. image: {
  38639. source: "./media/characters/tea-spot/maid-work.svg",
  38640. extra: 693/609,
  38641. bottom: 15/708
  38642. }
  38643. },
  38644. },
  38645. [
  38646. {
  38647. name: "Normal",
  38648. height: math.unit(3 + 1/12, "feet"),
  38649. default: true
  38650. },
  38651. ]
  38652. ))
  38653. characterMakers.push(() => makeCharacter(
  38654. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38655. {
  38656. front: {
  38657. height: math.unit(175, "cm"),
  38658. weight: math.unit(75, "kg"),
  38659. name: "Front",
  38660. image: {
  38661. source: "./media/characters/chee/front.svg",
  38662. extra: 1796/1740,
  38663. bottom: 40/1836
  38664. }
  38665. },
  38666. },
  38667. [
  38668. {
  38669. name: "Micro-Micro",
  38670. height: math.unit(1, "nm")
  38671. },
  38672. {
  38673. name: "Micro-erst",
  38674. height: math.unit(1, "micrometer")
  38675. },
  38676. {
  38677. name: "Micro-er",
  38678. height: math.unit(1, "cm")
  38679. },
  38680. {
  38681. name: "Normal",
  38682. height: math.unit(175, "cm"),
  38683. default: true
  38684. },
  38685. {
  38686. name: "Macro",
  38687. height: math.unit(100, "m")
  38688. },
  38689. {
  38690. name: "Macro-er",
  38691. height: math.unit(1, "km")
  38692. },
  38693. {
  38694. name: "Macro-erst",
  38695. height: math.unit(10, "km")
  38696. },
  38697. {
  38698. name: "Macro-Macro",
  38699. height: math.unit(100, "km")
  38700. },
  38701. ]
  38702. ))
  38703. characterMakers.push(() => makeCharacter(
  38704. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38705. {
  38706. front: {
  38707. height: math.unit(11 + 9/12, "feet"),
  38708. weight: math.unit(935, "lb"),
  38709. name: "Front",
  38710. image: {
  38711. source: "./media/characters/kingsley/front.svg",
  38712. extra: 1803/1674,
  38713. bottom: 127/1930
  38714. }
  38715. },
  38716. frontNude: {
  38717. height: math.unit(11 + 9/12, "feet"),
  38718. weight: math.unit(935, "lb"),
  38719. name: "Front (Nude)",
  38720. image: {
  38721. source: "./media/characters/kingsley/front-nude.svg",
  38722. extra: 1803/1674,
  38723. bottom: 127/1930
  38724. }
  38725. },
  38726. },
  38727. [
  38728. {
  38729. name: "Normal",
  38730. height: math.unit(11 + 9/12, "feet"),
  38731. default: true
  38732. },
  38733. ]
  38734. ))
  38735. characterMakers.push(() => makeCharacter(
  38736. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38737. {
  38738. side: {
  38739. height: math.unit(9, "feet"),
  38740. name: "Side",
  38741. image: {
  38742. source: "./media/characters/rymel/side.svg",
  38743. extra: 792/469,
  38744. bottom: 121/913
  38745. }
  38746. },
  38747. maw: {
  38748. height: math.unit(2.4, "meters"),
  38749. name: "Maw",
  38750. image: {
  38751. source: "./media/characters/rymel/maw.svg"
  38752. }
  38753. },
  38754. },
  38755. [
  38756. {
  38757. name: "House Drake",
  38758. height: math.unit(2, "feet")
  38759. },
  38760. {
  38761. name: "Reduced",
  38762. height: math.unit(4.5, "feet")
  38763. },
  38764. {
  38765. name: "Normal",
  38766. height: math.unit(9, "feet"),
  38767. default: true
  38768. },
  38769. ]
  38770. ))
  38771. characterMakers.push(() => makeCharacter(
  38772. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38773. {
  38774. front: {
  38775. height: math.unit(1.74, "meters"),
  38776. weight: math.unit(55, "kg"),
  38777. name: "Front",
  38778. image: {
  38779. source: "./media/characters/rubus/front.svg",
  38780. extra: 1894/1742,
  38781. bottom: 44/1938
  38782. }
  38783. },
  38784. },
  38785. [
  38786. {
  38787. name: "Normal",
  38788. height: math.unit(1.74, "meters"),
  38789. default: true
  38790. },
  38791. ]
  38792. ))
  38793. characterMakers.push(() => makeCharacter(
  38794. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38795. {
  38796. front: {
  38797. height: math.unit(5 + 2/12, "feet"),
  38798. weight: math.unit(112, "lb"),
  38799. name: "Front",
  38800. image: {
  38801. source: "./media/characters/cassie-kingston/front.svg",
  38802. extra: 1438/1390,
  38803. bottom: 47/1485
  38804. }
  38805. },
  38806. },
  38807. [
  38808. {
  38809. name: "Normal",
  38810. height: math.unit(5 + 2/12, "feet"),
  38811. default: true
  38812. },
  38813. {
  38814. name: "Macro",
  38815. height: math.unit(128, "feet")
  38816. },
  38817. {
  38818. name: "Megamacro",
  38819. height: math.unit(2.56, "miles")
  38820. },
  38821. ]
  38822. ))
  38823. characterMakers.push(() => makeCharacter(
  38824. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38825. {
  38826. front: {
  38827. height: math.unit(7, "feet"),
  38828. name: "Front",
  38829. image: {
  38830. source: "./media/characters/fox/front.svg",
  38831. extra: 1798/1703,
  38832. bottom: 55/1853
  38833. }
  38834. },
  38835. back: {
  38836. height: math.unit(7, "feet"),
  38837. name: "Back",
  38838. image: {
  38839. source: "./media/characters/fox/back.svg",
  38840. extra: 1748/1649,
  38841. bottom: 32/1780
  38842. }
  38843. },
  38844. head: {
  38845. height: math.unit(1.95, "feet"),
  38846. name: "Head",
  38847. image: {
  38848. source: "./media/characters/fox/head.svg"
  38849. }
  38850. },
  38851. dick: {
  38852. height: math.unit(1.33, "feet"),
  38853. name: "Dick",
  38854. image: {
  38855. source: "./media/characters/fox/dick.svg"
  38856. }
  38857. },
  38858. foot: {
  38859. height: math.unit(1, "feet"),
  38860. name: "Foot",
  38861. image: {
  38862. source: "./media/characters/fox/foot.svg"
  38863. }
  38864. },
  38865. paw: {
  38866. height: math.unit(0.92, "feet"),
  38867. name: "Paw",
  38868. image: {
  38869. source: "./media/characters/fox/paw.svg"
  38870. }
  38871. },
  38872. },
  38873. [
  38874. {
  38875. name: "Small",
  38876. height: math.unit(3, "inches")
  38877. },
  38878. {
  38879. name: "\"Realistic\"",
  38880. height: math.unit(7, "feet")
  38881. },
  38882. {
  38883. name: "Normal",
  38884. height: math.unit(150, "feet"),
  38885. default: true
  38886. },
  38887. {
  38888. name: "BIG",
  38889. height: math.unit(1200, "feet")
  38890. },
  38891. {
  38892. name: "👀",
  38893. height: math.unit(5, "miles")
  38894. },
  38895. {
  38896. name: "👀👀👀",
  38897. height: math.unit(64, "miles")
  38898. },
  38899. ]
  38900. ))
  38901. characterMakers.push(() => makeCharacter(
  38902. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38903. {
  38904. front: {
  38905. height: math.unit(625, "feet"),
  38906. name: "Front",
  38907. image: {
  38908. source: "./media/characters/asonja-rossa/front.svg",
  38909. extra: 1833/1686,
  38910. bottom: 24/1857
  38911. }
  38912. },
  38913. back: {
  38914. height: math.unit(625, "feet"),
  38915. name: "Back",
  38916. image: {
  38917. source: "./media/characters/asonja-rossa/back.svg",
  38918. extra: 1852/1753,
  38919. bottom: 26/1878
  38920. }
  38921. },
  38922. },
  38923. [
  38924. {
  38925. name: "Macro",
  38926. height: math.unit(625, "feet"),
  38927. default: true
  38928. },
  38929. ]
  38930. ))
  38931. characterMakers.push(() => makeCharacter(
  38932. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38933. {
  38934. side: {
  38935. height: math.unit(8, "feet"),
  38936. name: "Side",
  38937. image: {
  38938. source: "./media/characters/rezukii/side.svg",
  38939. extra: 979/542,
  38940. bottom: 87/1066
  38941. }
  38942. },
  38943. sitting: {
  38944. height: math.unit(14.6, "feet"),
  38945. name: "Sitting",
  38946. image: {
  38947. source: "./media/characters/rezukii/sitting.svg",
  38948. extra: 1023/813,
  38949. bottom: 45/1068
  38950. }
  38951. },
  38952. },
  38953. [
  38954. {
  38955. name: "Tiny",
  38956. height: math.unit(2, "feet")
  38957. },
  38958. {
  38959. name: "Smol",
  38960. height: math.unit(4, "feet")
  38961. },
  38962. {
  38963. name: "Normal",
  38964. height: math.unit(8, "feet"),
  38965. default: true
  38966. },
  38967. {
  38968. name: "Big",
  38969. height: math.unit(12, "feet")
  38970. },
  38971. {
  38972. name: "Macro",
  38973. height: math.unit(30, "feet")
  38974. },
  38975. ]
  38976. ))
  38977. characterMakers.push(() => makeCharacter(
  38978. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38979. {
  38980. front: {
  38981. height: math.unit(14, "feet"),
  38982. weight: math.unit(9.5, "tonnes"),
  38983. name: "Front",
  38984. image: {
  38985. source: "./media/characters/dawnheart/front.svg",
  38986. extra: 2792/2675,
  38987. bottom: 64/2856
  38988. }
  38989. },
  38990. },
  38991. [
  38992. {
  38993. name: "Normal",
  38994. height: math.unit(14, "feet"),
  38995. default: true
  38996. },
  38997. ]
  38998. ))
  38999. characterMakers.push(() => makeCharacter(
  39000. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  39001. {
  39002. front: {
  39003. height: math.unit(1.7, "m"),
  39004. name: "Front",
  39005. image: {
  39006. source: "./media/characters/gladi/front.svg",
  39007. extra: 1460/1362,
  39008. bottom: 19/1479
  39009. }
  39010. },
  39011. back: {
  39012. height: math.unit(1.7, "m"),
  39013. name: "Back",
  39014. image: {
  39015. source: "./media/characters/gladi/back.svg",
  39016. extra: 1459/1357,
  39017. bottom: 12/1471
  39018. }
  39019. },
  39020. feral: {
  39021. height: math.unit(2.05, "m"),
  39022. name: "Feral",
  39023. image: {
  39024. source: "./media/characters/gladi/feral.svg",
  39025. extra: 821/557,
  39026. bottom: 91/912
  39027. }
  39028. },
  39029. },
  39030. [
  39031. {
  39032. name: "Shortest",
  39033. height: math.unit(70, "cm")
  39034. },
  39035. {
  39036. name: "Normal",
  39037. height: math.unit(1.7, "m")
  39038. },
  39039. {
  39040. name: "Macro",
  39041. height: math.unit(10, "m"),
  39042. default: true
  39043. },
  39044. {
  39045. name: "Tallest",
  39046. height: math.unit(200, "m")
  39047. },
  39048. ]
  39049. ))
  39050. characterMakers.push(() => makeCharacter(
  39051. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  39052. {
  39053. front: {
  39054. height: math.unit(5 + 7/12, "feet"),
  39055. weight: math.unit(2, "tons"),
  39056. name: "Front",
  39057. image: {
  39058. source: "./media/characters/erdno/front.svg",
  39059. extra: 1234/1129,
  39060. bottom: 35/1269
  39061. }
  39062. },
  39063. angled: {
  39064. height: math.unit(5 + 7/12, "feet"),
  39065. weight: math.unit(2, "tons"),
  39066. name: "Angled",
  39067. image: {
  39068. source: "./media/characters/erdno/angled.svg",
  39069. extra: 1185/1139,
  39070. bottom: 36/1221
  39071. }
  39072. },
  39073. side: {
  39074. height: math.unit(5 + 7/12, "feet"),
  39075. weight: math.unit(2, "tons"),
  39076. name: "Side",
  39077. image: {
  39078. source: "./media/characters/erdno/side.svg",
  39079. extra: 1191/1144,
  39080. bottom: 40/1231
  39081. }
  39082. },
  39083. back: {
  39084. height: math.unit(5 + 7/12, "feet"),
  39085. weight: math.unit(2, "tons"),
  39086. name: "Back",
  39087. image: {
  39088. source: "./media/characters/erdno/back.svg",
  39089. extra: 1202/1146,
  39090. bottom: 17/1219
  39091. }
  39092. },
  39093. frontNsfw: {
  39094. height: math.unit(5 + 7/12, "feet"),
  39095. weight: math.unit(2, "tons"),
  39096. name: "Front (NSFW)",
  39097. image: {
  39098. source: "./media/characters/erdno/front-nsfw.svg",
  39099. extra: 1234/1129,
  39100. bottom: 35/1269
  39101. }
  39102. },
  39103. angledNsfw: {
  39104. height: math.unit(5 + 7/12, "feet"),
  39105. weight: math.unit(2, "tons"),
  39106. name: "Angled (NSFW)",
  39107. image: {
  39108. source: "./media/characters/erdno/angled-nsfw.svg",
  39109. extra: 1185/1139,
  39110. bottom: 36/1221
  39111. }
  39112. },
  39113. sideNsfw: {
  39114. height: math.unit(5 + 7/12, "feet"),
  39115. weight: math.unit(2, "tons"),
  39116. name: "Side (NSFW)",
  39117. image: {
  39118. source: "./media/characters/erdno/side-nsfw.svg",
  39119. extra: 1191/1144,
  39120. bottom: 40/1231
  39121. }
  39122. },
  39123. backNsfw: {
  39124. height: math.unit(5 + 7/12, "feet"),
  39125. weight: math.unit(2, "tons"),
  39126. name: "Back (NSFW)",
  39127. image: {
  39128. source: "./media/characters/erdno/back-nsfw.svg",
  39129. extra: 1202/1146,
  39130. bottom: 17/1219
  39131. }
  39132. },
  39133. frontHyper: {
  39134. height: math.unit(5 + 7/12, "feet"),
  39135. weight: math.unit(2, "tons"),
  39136. name: "Front (Hyper)",
  39137. image: {
  39138. source: "./media/characters/erdno/front-hyper.svg",
  39139. extra: 1298/1136,
  39140. bottom: 35/1333
  39141. }
  39142. },
  39143. },
  39144. [
  39145. {
  39146. name: "Normal",
  39147. height: math.unit(5 + 7/12, "feet"),
  39148. default: true
  39149. },
  39150. {
  39151. name: "Big",
  39152. height: math.unit(5.7, "meters")
  39153. },
  39154. {
  39155. name: "Macro",
  39156. height: math.unit(5.7, "kilometers")
  39157. },
  39158. {
  39159. name: "Megamacro",
  39160. height: math.unit(5.7, "earths")
  39161. },
  39162. ]
  39163. ))
  39164. characterMakers.push(() => makeCharacter(
  39165. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  39166. {
  39167. front: {
  39168. height: math.unit(5 + 10/12, "feet"),
  39169. weight: math.unit(150, "lb"),
  39170. name: "Front",
  39171. image: {
  39172. source: "./media/characters/jamie/front.svg",
  39173. extra: 1908/1768,
  39174. bottom: 19/1927
  39175. }
  39176. },
  39177. },
  39178. [
  39179. {
  39180. name: "Minimum",
  39181. height: math.unit(2, "cm")
  39182. },
  39183. {
  39184. name: "Micro",
  39185. height: math.unit(3, "inches")
  39186. },
  39187. {
  39188. name: "Normal",
  39189. height: math.unit(5 + 10/12, "feet"),
  39190. default: true
  39191. },
  39192. {
  39193. name: "Macro",
  39194. height: math.unit(150, "feet")
  39195. },
  39196. {
  39197. name: "Megamacro",
  39198. height: math.unit(10000, "m")
  39199. },
  39200. ]
  39201. ))
  39202. characterMakers.push(() => makeCharacter(
  39203. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  39204. {
  39205. front: {
  39206. height: math.unit(2, "meters"),
  39207. weight: math.unit(100, "kg"),
  39208. name: "Front",
  39209. image: {
  39210. source: "./media/characters/shiron/front.svg",
  39211. extra: 2103/1985,
  39212. bottom: 98/2201
  39213. }
  39214. },
  39215. back: {
  39216. height: math.unit(2, "meters"),
  39217. weight: math.unit(100, "kg"),
  39218. name: "Back",
  39219. image: {
  39220. source: "./media/characters/shiron/back.svg",
  39221. extra: 2110/2015,
  39222. bottom: 89/2199
  39223. }
  39224. },
  39225. hand: {
  39226. height: math.unit(0.96, "feet"),
  39227. name: "Hand",
  39228. image: {
  39229. source: "./media/characters/shiron/hand.svg"
  39230. }
  39231. },
  39232. foot: {
  39233. height: math.unit(1.464, "feet"),
  39234. name: "Foot",
  39235. image: {
  39236. source: "./media/characters/shiron/foot.svg"
  39237. }
  39238. },
  39239. },
  39240. [
  39241. {
  39242. name: "Normal",
  39243. height: math.unit(2, "meters")
  39244. },
  39245. {
  39246. name: "Macro",
  39247. height: math.unit(500, "meters"),
  39248. default: true
  39249. },
  39250. {
  39251. name: "Megamacro",
  39252. height: math.unit(20, "km")
  39253. },
  39254. ]
  39255. ))
  39256. characterMakers.push(() => makeCharacter(
  39257. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  39258. {
  39259. front: {
  39260. height: math.unit(6, "feet"),
  39261. name: "Front",
  39262. image: {
  39263. source: "./media/characters/sam/front.svg",
  39264. extra: 849/826,
  39265. bottom: 19/868
  39266. }
  39267. },
  39268. },
  39269. [
  39270. {
  39271. name: "Normal",
  39272. height: math.unit(6, "feet"),
  39273. default: true
  39274. },
  39275. ]
  39276. ))
  39277. characterMakers.push(() => makeCharacter(
  39278. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  39279. {
  39280. front: {
  39281. height: math.unit(8 + 4/12, "feet"),
  39282. weight: math.unit(122, "kg"),
  39283. name: "Front",
  39284. image: {
  39285. source: "./media/characters/namori-kurogawa/front.svg",
  39286. extra: 1894/1576,
  39287. bottom: 34/1928
  39288. }
  39289. },
  39290. },
  39291. [
  39292. {
  39293. name: "Normal",
  39294. height: math.unit(8 + 4/12, "feet"),
  39295. default: true
  39296. },
  39297. ]
  39298. ))
  39299. characterMakers.push(() => makeCharacter(
  39300. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  39301. {
  39302. front: {
  39303. height: math.unit(9, "feet"),
  39304. weight: math.unit(621, "lb"),
  39305. name: "Front",
  39306. image: {
  39307. source: "./media/characters/unmru/front.svg",
  39308. extra: 1853/1747,
  39309. bottom: 73/1926
  39310. }
  39311. },
  39312. side: {
  39313. height: math.unit(9, "feet"),
  39314. weight: math.unit(621, "lb"),
  39315. name: "Side",
  39316. image: {
  39317. source: "./media/characters/unmru/side.svg",
  39318. extra: 1781/1671,
  39319. bottom: 127/1908
  39320. }
  39321. },
  39322. back: {
  39323. height: math.unit(9, "feet"),
  39324. weight: math.unit(621, "lb"),
  39325. name: "Back",
  39326. image: {
  39327. source: "./media/characters/unmru/back.svg",
  39328. extra: 1894/1765,
  39329. bottom: 75/1969
  39330. }
  39331. },
  39332. dick: {
  39333. height: math.unit(3, "feet"),
  39334. weight: math.unit(35, "lb"),
  39335. name: "Dick",
  39336. image: {
  39337. source: "./media/characters/unmru/dick.svg"
  39338. }
  39339. },
  39340. },
  39341. [
  39342. {
  39343. name: "Normal",
  39344. height: math.unit(9, "feet")
  39345. },
  39346. {
  39347. name: "Natural",
  39348. height: math.unit(27, "feet"),
  39349. default: true
  39350. },
  39351. {
  39352. name: "Giant",
  39353. height: math.unit(90, "feet")
  39354. },
  39355. {
  39356. name: "Kaiju",
  39357. height: math.unit(270, "feet")
  39358. },
  39359. {
  39360. name: "Macro",
  39361. height: math.unit(900, "feet")
  39362. },
  39363. {
  39364. name: "Macro+",
  39365. height: math.unit(2700, "feet")
  39366. },
  39367. {
  39368. name: "Megamacro",
  39369. height: math.unit(9000, "feet")
  39370. },
  39371. {
  39372. name: "City-Crushing",
  39373. height: math.unit(27000, "feet")
  39374. },
  39375. {
  39376. name: "Mountain-Mashing",
  39377. height: math.unit(90000, "feet")
  39378. },
  39379. {
  39380. name: "Earth-Eclipsing",
  39381. height: math.unit(2.7e8, "feet")
  39382. },
  39383. {
  39384. name: "Sol-Swallowing",
  39385. height: math.unit(9e10, "feet")
  39386. },
  39387. {
  39388. name: "Majoris-Munching",
  39389. height: math.unit(2.7e13, "feet")
  39390. },
  39391. ]
  39392. ))
  39393. characterMakers.push(() => makeCharacter(
  39394. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  39395. {
  39396. front: {
  39397. height: math.unit(1, "inch"),
  39398. name: "Front",
  39399. image: {
  39400. source: "./media/characters/squeaks-mouse/front.svg",
  39401. extra: 352/308,
  39402. bottom: 25/377
  39403. }
  39404. },
  39405. },
  39406. [
  39407. {
  39408. name: "Micro",
  39409. height: math.unit(1, "inch"),
  39410. default: true
  39411. },
  39412. ]
  39413. ))
  39414. characterMakers.push(() => makeCharacter(
  39415. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  39416. {
  39417. side: {
  39418. height: math.unit(35, "feet"),
  39419. name: "Side",
  39420. image: {
  39421. source: "./media/characters/sayko/side.svg",
  39422. extra: 1697/1021,
  39423. bottom: 82/1779
  39424. }
  39425. },
  39426. head: {
  39427. height: math.unit(16, "feet"),
  39428. name: "Head",
  39429. image: {
  39430. source: "./media/characters/sayko/head.svg"
  39431. }
  39432. },
  39433. forepaw: {
  39434. height: math.unit(7.85, "feet"),
  39435. name: "Forepaw",
  39436. image: {
  39437. source: "./media/characters/sayko/forepaw.svg"
  39438. }
  39439. },
  39440. hindpaw: {
  39441. height: math.unit(8.8, "feet"),
  39442. name: "Hindpaw",
  39443. image: {
  39444. source: "./media/characters/sayko/hindpaw.svg"
  39445. }
  39446. },
  39447. },
  39448. [
  39449. {
  39450. name: "Normal",
  39451. height: math.unit(35, "feet"),
  39452. default: true
  39453. },
  39454. {
  39455. name: "Colossus",
  39456. height: math.unit(100, "meters")
  39457. },
  39458. {
  39459. name: "\"Small\" Deity",
  39460. height: math.unit(1, "km")
  39461. },
  39462. {
  39463. name: "\"Large\" Deity",
  39464. height: math.unit(15, "km")
  39465. },
  39466. ]
  39467. ))
  39468. characterMakers.push(() => makeCharacter(
  39469. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  39470. {
  39471. front: {
  39472. height: math.unit(6, "feet"),
  39473. weight: math.unit(250, "lb"),
  39474. name: "Front",
  39475. image: {
  39476. source: "./media/characters/mukiro/front.svg",
  39477. extra: 1368/1310,
  39478. bottom: 34/1402
  39479. }
  39480. },
  39481. },
  39482. [
  39483. {
  39484. name: "Normal",
  39485. height: math.unit(6, "feet"),
  39486. default: true
  39487. },
  39488. ]
  39489. ))
  39490. characterMakers.push(() => makeCharacter(
  39491. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  39492. {
  39493. front: {
  39494. height: math.unit(12 + 4/12, "feet"),
  39495. name: "Front",
  39496. image: {
  39497. source: "./media/characters/zeph-the-tiger-god/front.svg",
  39498. extra: 1346/1311,
  39499. bottom: 65/1411
  39500. }
  39501. },
  39502. },
  39503. [
  39504. {
  39505. name: "Base",
  39506. height: math.unit(12 + 4/12, "feet"),
  39507. default: true
  39508. },
  39509. {
  39510. name: "Macro",
  39511. height: math.unit(150, "feet")
  39512. },
  39513. {
  39514. name: "Mega",
  39515. height: math.unit(2, "miles")
  39516. },
  39517. {
  39518. name: "Demi God",
  39519. height: math.unit(4, "AU")
  39520. },
  39521. {
  39522. name: "God Size",
  39523. height: math.unit(1, "universe")
  39524. },
  39525. ]
  39526. ))
  39527. characterMakers.push(() => makeCharacter(
  39528. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  39529. {
  39530. front: {
  39531. height: math.unit(3 + 3/12, "feet"),
  39532. weight: math.unit(88, "lb"),
  39533. name: "Front",
  39534. image: {
  39535. source: "./media/characters/trey/front.svg",
  39536. extra: 1815/1509,
  39537. bottom: 60/1875
  39538. }
  39539. },
  39540. },
  39541. [
  39542. {
  39543. name: "Normal",
  39544. height: math.unit(3 + 3/12, "feet"),
  39545. default: true
  39546. },
  39547. ]
  39548. ))
  39549. characterMakers.push(() => makeCharacter(
  39550. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  39551. {
  39552. front: {
  39553. height: math.unit(4, "meters"),
  39554. name: "Front",
  39555. image: {
  39556. source: "./media/characters/adelonda/front.svg",
  39557. extra: 1077/982,
  39558. bottom: 39/1116
  39559. }
  39560. },
  39561. back: {
  39562. height: math.unit(4, "meters"),
  39563. name: "Back",
  39564. image: {
  39565. source: "./media/characters/adelonda/back.svg",
  39566. extra: 1105/1003,
  39567. bottom: 25/1130
  39568. }
  39569. },
  39570. feral: {
  39571. height: math.unit(40/1.5, "meters"),
  39572. name: "Feral",
  39573. image: {
  39574. source: "./media/characters/adelonda/feral.svg",
  39575. extra: 597/271,
  39576. bottom: 387/984
  39577. }
  39578. },
  39579. },
  39580. [
  39581. {
  39582. name: "Normal",
  39583. height: math.unit(4, "meters"),
  39584. default: true
  39585. },
  39586. ]
  39587. ))
  39588. characterMakers.push(() => makeCharacter(
  39589. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39590. {
  39591. front: {
  39592. height: math.unit(8 + 4/12, "feet"),
  39593. weight: math.unit(670, "lb"),
  39594. name: "Front",
  39595. image: {
  39596. source: "./media/characters/acadiel/front.svg",
  39597. extra: 1901/1595,
  39598. bottom: 142/2043
  39599. }
  39600. },
  39601. },
  39602. [
  39603. {
  39604. name: "Normal",
  39605. height: math.unit(8 + 4/12, "feet"),
  39606. default: true
  39607. },
  39608. {
  39609. name: "Macro",
  39610. height: math.unit(200, "feet")
  39611. },
  39612. ]
  39613. ))
  39614. characterMakers.push(() => makeCharacter(
  39615. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39616. {
  39617. front: {
  39618. height: math.unit(6 + 2/12, "feet"),
  39619. weight: math.unit(185, "lb"),
  39620. name: "Front",
  39621. image: {
  39622. source: "./media/characters/kayne-ein/front.svg",
  39623. extra: 1780/1560,
  39624. bottom: 81/1861
  39625. }
  39626. },
  39627. },
  39628. [
  39629. {
  39630. name: "Normal",
  39631. height: math.unit(6 + 2/12, "feet"),
  39632. default: true
  39633. },
  39634. {
  39635. name: "Transformation Stage",
  39636. height: math.unit(15, "feet")
  39637. },
  39638. {
  39639. name: "Macro",
  39640. height: math.unit(150, "feet")
  39641. },
  39642. {
  39643. name: "Earth's Shadow",
  39644. height: math.unit(6200, "miles")
  39645. },
  39646. {
  39647. name: "Universal Demon",
  39648. height: math.unit(28e9, "parsecs")
  39649. },
  39650. {
  39651. name: "Multiverse God",
  39652. height: math.unit(3, "multiverses")
  39653. },
  39654. ]
  39655. ))
  39656. characterMakers.push(() => makeCharacter(
  39657. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39658. {
  39659. front: {
  39660. height: math.unit(5 + 5/12, "feet"),
  39661. name: "Front",
  39662. image: {
  39663. source: "./media/characters/fawn/front.svg",
  39664. extra: 1873/1731,
  39665. bottom: 95/1968
  39666. }
  39667. },
  39668. back: {
  39669. height: math.unit(5 + 5/12, "feet"),
  39670. name: "Back",
  39671. image: {
  39672. source: "./media/characters/fawn/back.svg",
  39673. extra: 1813/1700,
  39674. bottom: 14/1827
  39675. }
  39676. },
  39677. hoof: {
  39678. height: math.unit(1.45, "feet"),
  39679. name: "Hoof",
  39680. image: {
  39681. source: "./media/characters/fawn/hoof.svg"
  39682. }
  39683. },
  39684. },
  39685. [
  39686. {
  39687. name: "Normal",
  39688. height: math.unit(5 + 5/12, "feet"),
  39689. default: true
  39690. },
  39691. ]
  39692. ))
  39693. characterMakers.push(() => makeCharacter(
  39694. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39695. {
  39696. front: {
  39697. height: math.unit(2 + 5/12, "feet"),
  39698. name: "Front",
  39699. image: {
  39700. source: "./media/characters/orion/front.svg",
  39701. extra: 1366/1304,
  39702. bottom: 43/1409
  39703. }
  39704. },
  39705. paw: {
  39706. height: math.unit(0.52, "feet"),
  39707. name: "Paw",
  39708. image: {
  39709. source: "./media/characters/orion/paw.svg"
  39710. }
  39711. },
  39712. },
  39713. [
  39714. {
  39715. name: "Normal",
  39716. height: math.unit(2 + 5/12, "feet"),
  39717. default: true
  39718. },
  39719. ]
  39720. ))
  39721. characterMakers.push(() => makeCharacter(
  39722. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39723. {
  39724. front: {
  39725. height: math.unit(5 + 10/12, "feet"),
  39726. name: "Front",
  39727. image: {
  39728. source: "./media/characters/vera/front.svg",
  39729. extra: 1680/1575,
  39730. bottom: 49/1729
  39731. }
  39732. },
  39733. back: {
  39734. height: math.unit(5 + 10/12, "feet"),
  39735. name: "Back",
  39736. image: {
  39737. source: "./media/characters/vera/back.svg",
  39738. extra: 1700/1588,
  39739. bottom: 18/1718
  39740. }
  39741. },
  39742. arcanine: {
  39743. height: math.unit(6 + 8/12, "feet"),
  39744. name: "Arcanine",
  39745. image: {
  39746. source: "./media/characters/vera/arcanine.svg",
  39747. extra: 1590/1511,
  39748. bottom: 71/1661
  39749. }
  39750. },
  39751. maw: {
  39752. height: math.unit(0.82, "feet"),
  39753. name: "Maw",
  39754. image: {
  39755. source: "./media/characters/vera/maw.svg"
  39756. }
  39757. },
  39758. mawArcanine: {
  39759. height: math.unit(0.97, "feet"),
  39760. name: "Maw (Arcanine)",
  39761. image: {
  39762. source: "./media/characters/vera/maw-arcanine.svg"
  39763. }
  39764. },
  39765. paw: {
  39766. height: math.unit(0.75, "feet"),
  39767. name: "Paw",
  39768. image: {
  39769. source: "./media/characters/vera/paw.svg"
  39770. }
  39771. },
  39772. pawprint: {
  39773. height: math.unit(0.52, "feet"),
  39774. name: "Pawprint",
  39775. image: {
  39776. source: "./media/characters/vera/pawprint.svg"
  39777. }
  39778. },
  39779. },
  39780. [
  39781. {
  39782. name: "Normal",
  39783. height: math.unit(5 + 10/12, "feet"),
  39784. default: true
  39785. },
  39786. {
  39787. name: "Macro",
  39788. height: math.unit(75, "feet")
  39789. },
  39790. ]
  39791. ))
  39792. characterMakers.push(() => makeCharacter(
  39793. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39794. {
  39795. front: {
  39796. height: math.unit(4, "feet"),
  39797. weight: math.unit(40, "lb"),
  39798. name: "Front",
  39799. image: {
  39800. source: "./media/characters/orvan-rabbit/front.svg",
  39801. extra: 1896/1642,
  39802. bottom: 29/1925
  39803. }
  39804. },
  39805. },
  39806. [
  39807. {
  39808. name: "Normal",
  39809. height: math.unit(4, "feet"),
  39810. default: true
  39811. },
  39812. ]
  39813. ))
  39814. characterMakers.push(() => makeCharacter(
  39815. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39816. {
  39817. front: {
  39818. height: math.unit(6, "feet"),
  39819. weight: math.unit(168, "lb"),
  39820. name: "Front",
  39821. image: {
  39822. source: "./media/characters/lisa/front.svg",
  39823. extra: 2065/1867,
  39824. bottom: 46/2111
  39825. }
  39826. },
  39827. back: {
  39828. height: math.unit(6, "feet"),
  39829. weight: math.unit(168, "lb"),
  39830. name: "Back",
  39831. image: {
  39832. source: "./media/characters/lisa/back.svg",
  39833. extra: 1982/1838,
  39834. bottom: 29/2011
  39835. }
  39836. },
  39837. maw: {
  39838. height: math.unit(0.81, "feet"),
  39839. name: "Maw",
  39840. image: {
  39841. source: "./media/characters/lisa/maw.svg"
  39842. }
  39843. },
  39844. paw: {
  39845. height: math.unit(0.9, "feet"),
  39846. name: "Paw",
  39847. image: {
  39848. source: "./media/characters/lisa/paw.svg"
  39849. }
  39850. },
  39851. caribousune: {
  39852. height: math.unit(7 + 2/12, "feet"),
  39853. weight: math.unit(268, "lb"),
  39854. name: "Caribousune",
  39855. image: {
  39856. source: "./media/characters/lisa/caribousune.svg",
  39857. extra: 1843/1633,
  39858. bottom: 29/1872
  39859. }
  39860. },
  39861. frontCaribousune: {
  39862. height: math.unit(7 + 2/12, "feet"),
  39863. weight: math.unit(268, "lb"),
  39864. name: "Front (Caribousune)",
  39865. image: {
  39866. source: "./media/characters/lisa/front-caribousune.svg",
  39867. extra: 1818/1638,
  39868. bottom: 52/1870
  39869. }
  39870. },
  39871. sideCaribousune: {
  39872. height: math.unit(7 + 2/12, "feet"),
  39873. weight: math.unit(268, "lb"),
  39874. name: "Side (Caribousune)",
  39875. image: {
  39876. source: "./media/characters/lisa/side-caribousune.svg",
  39877. extra: 1851/1635,
  39878. bottom: 16/1867
  39879. }
  39880. },
  39881. backCaribousune: {
  39882. height: math.unit(7 + 2/12, "feet"),
  39883. weight: math.unit(268, "lb"),
  39884. name: "Back (Caribousune)",
  39885. image: {
  39886. source: "./media/characters/lisa/back-caribousune.svg",
  39887. extra: 1801/1604,
  39888. bottom: 44/1845
  39889. }
  39890. },
  39891. caribou: {
  39892. height: math.unit(7 + 2/12, "feet"),
  39893. weight: math.unit(268, "lb"),
  39894. name: "Caribou",
  39895. image: {
  39896. source: "./media/characters/lisa/caribou.svg",
  39897. extra: 1843/1633,
  39898. bottom: 29/1872
  39899. }
  39900. },
  39901. frontCaribou: {
  39902. height: math.unit(7 + 2/12, "feet"),
  39903. weight: math.unit(268, "lb"),
  39904. name: "Front (Caribou)",
  39905. image: {
  39906. source: "./media/characters/lisa/front-caribou.svg",
  39907. extra: 1818/1638,
  39908. bottom: 52/1870
  39909. }
  39910. },
  39911. sideCaribou: {
  39912. height: math.unit(7 + 2/12, "feet"),
  39913. weight: math.unit(268, "lb"),
  39914. name: "Side (Caribou)",
  39915. image: {
  39916. source: "./media/characters/lisa/side-caribou.svg",
  39917. extra: 1851/1635,
  39918. bottom: 16/1867
  39919. }
  39920. },
  39921. backCaribou: {
  39922. height: math.unit(7 + 2/12, "feet"),
  39923. weight: math.unit(268, "lb"),
  39924. name: "Back (Caribou)",
  39925. image: {
  39926. source: "./media/characters/lisa/back-caribou.svg",
  39927. extra: 1801/1604,
  39928. bottom: 44/1845
  39929. }
  39930. },
  39931. mawCaribou: {
  39932. height: math.unit(1.45, "feet"),
  39933. name: "Maw (Caribou)",
  39934. image: {
  39935. source: "./media/characters/lisa/maw-caribou.svg"
  39936. }
  39937. },
  39938. mawCaribousune: {
  39939. height: math.unit(1.45, "feet"),
  39940. name: "Maw (Caribousune)",
  39941. image: {
  39942. source: "./media/characters/lisa/maw-caribousune.svg"
  39943. }
  39944. },
  39945. pawCaribousune: {
  39946. height: math.unit(1.61, "feet"),
  39947. name: "Paw (Caribou)",
  39948. image: {
  39949. source: "./media/characters/lisa/paw-caribousune.svg"
  39950. }
  39951. },
  39952. },
  39953. [
  39954. {
  39955. name: "Normal",
  39956. height: math.unit(6, "feet")
  39957. },
  39958. {
  39959. name: "God Size",
  39960. height: math.unit(72, "feet"),
  39961. default: true
  39962. },
  39963. {
  39964. name: "Towering",
  39965. height: math.unit(288, "feet")
  39966. },
  39967. {
  39968. name: "City Size",
  39969. height: math.unit(48384, "feet")
  39970. },
  39971. {
  39972. name: "Continental",
  39973. height: math.unit(4200, "miles")
  39974. },
  39975. {
  39976. name: "Planet Eater",
  39977. height: math.unit(42, "earths")
  39978. },
  39979. {
  39980. name: "Star Swallower",
  39981. height: math.unit(42, "solarradii")
  39982. },
  39983. {
  39984. name: "System Swallower",
  39985. height: math.unit(84000, "AU")
  39986. },
  39987. {
  39988. name: "Galaxy Gobbler",
  39989. height: math.unit(42, "galaxies")
  39990. },
  39991. {
  39992. name: "Universe Devourer",
  39993. height: math.unit(42, "universes")
  39994. },
  39995. {
  39996. name: "Multiverse Muncher",
  39997. height: math.unit(42, "multiverses")
  39998. },
  39999. ]
  40000. ))
  40001. characterMakers.push(() => makeCharacter(
  40002. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  40003. {
  40004. front: {
  40005. height: math.unit(36, "feet"),
  40006. name: "Front",
  40007. image: {
  40008. source: "./media/characters/shadow-rat/front.svg",
  40009. extra: 1845/1758,
  40010. bottom: 83/1928
  40011. }
  40012. },
  40013. },
  40014. [
  40015. {
  40016. name: "Macro",
  40017. height: math.unit(36, "feet"),
  40018. default: true
  40019. },
  40020. ]
  40021. ))
  40022. characterMakers.push(() => makeCharacter(
  40023. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  40024. {
  40025. side: {
  40026. height: math.unit(8, "feet"),
  40027. weight: math.unit(2630, "lb"),
  40028. name: "Side",
  40029. image: {
  40030. source: "./media/characters/torallia/side.svg",
  40031. extra: 2164/2021,
  40032. bottom: 371/2535
  40033. }
  40034. },
  40035. },
  40036. [
  40037. {
  40038. name: "Mortal Interaction",
  40039. height: math.unit(8, "feet")
  40040. },
  40041. {
  40042. name: "Natural",
  40043. height: math.unit(24, "feet"),
  40044. default: true
  40045. },
  40046. {
  40047. name: "Giant",
  40048. height: math.unit(80, "feet")
  40049. },
  40050. {
  40051. name: "Kaiju",
  40052. height: math.unit(240, "feet")
  40053. },
  40054. {
  40055. name: "Macro",
  40056. height: math.unit(800, "feet")
  40057. },
  40058. {
  40059. name: "Macro+",
  40060. height: math.unit(2400, "feet")
  40061. },
  40062. {
  40063. name: "Macro++",
  40064. height: math.unit(8000, "feet")
  40065. },
  40066. {
  40067. name: "City-Crushing",
  40068. height: math.unit(24000, "feet")
  40069. },
  40070. {
  40071. name: "Mountain-Mashing",
  40072. height: math.unit(80000, "feet")
  40073. },
  40074. {
  40075. name: "District Demolisher",
  40076. height: math.unit(240000, "feet")
  40077. },
  40078. {
  40079. name: "Tri-County Terror",
  40080. height: math.unit(800000, "feet")
  40081. },
  40082. {
  40083. name: "State Smasher",
  40084. height: math.unit(2.4e6, "feet")
  40085. },
  40086. {
  40087. name: "Nation Nemesis",
  40088. height: math.unit(8e6, "feet")
  40089. },
  40090. {
  40091. name: "Continent Cracker",
  40092. height: math.unit(2.4e7, "feet")
  40093. },
  40094. {
  40095. name: "Planet-Pillaging",
  40096. height: math.unit(8e7, "feet")
  40097. },
  40098. {
  40099. name: "Earth-Eclipsing",
  40100. height: math.unit(2.4e8, "feet")
  40101. },
  40102. {
  40103. name: "Jovian-Jostling",
  40104. height: math.unit(8e8, "feet")
  40105. },
  40106. {
  40107. name: "Gas Giant Gulper",
  40108. height: math.unit(2.4e9, "feet")
  40109. },
  40110. {
  40111. name: "Astral Annihilator",
  40112. height: math.unit(8e9, "feet")
  40113. },
  40114. {
  40115. name: "Celestial Conqueror",
  40116. height: math.unit(2.4e10, "feet")
  40117. },
  40118. {
  40119. name: "Sol-Swallowing",
  40120. height: math.unit(8e10, "feet")
  40121. },
  40122. {
  40123. name: "Hunter of the Heavens",
  40124. height: math.unit(2.4e13, "feet")
  40125. },
  40126. ]
  40127. ))
  40128. characterMakers.push(() => makeCharacter(
  40129. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  40130. {
  40131. front: {
  40132. height: math.unit(6 + 8/12, "feet"),
  40133. weight: math.unit(250, "kilograms"),
  40134. volume: math.unit(28, "liters"),
  40135. name: "Front",
  40136. image: {
  40137. source: "./media/characters/rebecca-pawlson/front.svg",
  40138. extra: 1737/1596,
  40139. bottom: 107/1844
  40140. }
  40141. },
  40142. back: {
  40143. height: math.unit(6 + 8/12, "feet"),
  40144. weight: math.unit(250, "kilograms"),
  40145. volume: math.unit(28, "liters"),
  40146. name: "Back",
  40147. image: {
  40148. source: "./media/characters/rebecca-pawlson/back.svg",
  40149. extra: 1702/1523,
  40150. bottom: 86/1788
  40151. }
  40152. },
  40153. },
  40154. [
  40155. {
  40156. name: "Normal",
  40157. height: math.unit(6 + 8/12, "feet")
  40158. },
  40159. {
  40160. name: "Mini Macro",
  40161. height: math.unit(10, "feet"),
  40162. default: true
  40163. },
  40164. {
  40165. name: "Macro",
  40166. height: math.unit(100, "feet")
  40167. },
  40168. {
  40169. name: "Mega Macro",
  40170. height: math.unit(2500, "feet")
  40171. },
  40172. {
  40173. name: "Giga Macro",
  40174. height: math.unit(50, "miles")
  40175. },
  40176. ]
  40177. ))
  40178. characterMakers.push(() => makeCharacter(
  40179. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  40180. {
  40181. front: {
  40182. height: math.unit(7 + 6/12, "feet"),
  40183. weight: math.unit(600, "lb"),
  40184. name: "Front",
  40185. image: {
  40186. source: "./media/characters/moxie-nova/front.svg",
  40187. extra: 1734/1652,
  40188. bottom: 41/1775
  40189. }
  40190. },
  40191. },
  40192. [
  40193. {
  40194. name: "Normal",
  40195. height: math.unit(7 + 6/12, "feet"),
  40196. default: true
  40197. },
  40198. ]
  40199. ))
  40200. characterMakers.push(() => makeCharacter(
  40201. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  40202. {
  40203. goat: {
  40204. height: math.unit(4, "feet"),
  40205. weight: math.unit(180, "lb"),
  40206. name: "Goat",
  40207. image: {
  40208. source: "./media/characters/tiffany/goat.svg",
  40209. extra: 1845/1595,
  40210. bottom: 106/1951
  40211. }
  40212. },
  40213. front: {
  40214. height: math.unit(5, "feet"),
  40215. weight: math.unit(150, "lb"),
  40216. name: "Foxcoon",
  40217. image: {
  40218. source: "./media/characters/tiffany/foxcoon.svg",
  40219. extra: 1941/1845,
  40220. bottom: 58/1999
  40221. }
  40222. },
  40223. },
  40224. [
  40225. {
  40226. name: "Normal",
  40227. height: math.unit(5, "feet"),
  40228. default: true
  40229. },
  40230. ]
  40231. ))
  40232. characterMakers.push(() => makeCharacter(
  40233. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  40234. {
  40235. front: {
  40236. height: math.unit(8, "feet"),
  40237. weight: math.unit(300, "lb"),
  40238. name: "Front",
  40239. image: {
  40240. source: "./media/characters/raxinath/front.svg",
  40241. extra: 1407/1309,
  40242. bottom: 39/1446
  40243. }
  40244. },
  40245. back: {
  40246. height: math.unit(8, "feet"),
  40247. weight: math.unit(300, "lb"),
  40248. name: "Back",
  40249. image: {
  40250. source: "./media/characters/raxinath/back.svg",
  40251. extra: 1405/1315,
  40252. bottom: 9/1414
  40253. }
  40254. },
  40255. },
  40256. [
  40257. {
  40258. name: "Speck",
  40259. height: math.unit(0.5, "nm")
  40260. },
  40261. {
  40262. name: "Micro",
  40263. height: math.unit(3, "inches")
  40264. },
  40265. {
  40266. name: "Kobold",
  40267. height: math.unit(3, "feet")
  40268. },
  40269. {
  40270. name: "Normal",
  40271. height: math.unit(8, "feet"),
  40272. default: true
  40273. },
  40274. {
  40275. name: "Giant",
  40276. height: math.unit(50, "feet")
  40277. },
  40278. {
  40279. name: "Macro",
  40280. height: math.unit(1000, "feet")
  40281. },
  40282. {
  40283. name: "Megamacro",
  40284. height: math.unit(1, "mile")
  40285. },
  40286. ]
  40287. ))
  40288. characterMakers.push(() => makeCharacter(
  40289. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  40290. {
  40291. front: {
  40292. height: math.unit(10, "feet"),
  40293. weight: math.unit(1442, "lb"),
  40294. name: "Front",
  40295. image: {
  40296. source: "./media/characters/mal-dragon/front.svg",
  40297. extra: 1515/1444,
  40298. bottom: 113/1628
  40299. }
  40300. },
  40301. back: {
  40302. height: math.unit(10, "feet"),
  40303. weight: math.unit(1442, "lb"),
  40304. name: "Back",
  40305. image: {
  40306. source: "./media/characters/mal-dragon/back.svg",
  40307. extra: 1527/1434,
  40308. bottom: 25/1552
  40309. }
  40310. },
  40311. },
  40312. [
  40313. {
  40314. name: "Mortal Interaction",
  40315. height: math.unit(10, "feet"),
  40316. default: true
  40317. },
  40318. {
  40319. name: "Large",
  40320. height: math.unit(30, "feet")
  40321. },
  40322. {
  40323. name: "Kaiju",
  40324. height: math.unit(300, "feet")
  40325. },
  40326. {
  40327. name: "Megamacro",
  40328. height: math.unit(10000, "feet")
  40329. },
  40330. {
  40331. name: "Continent Cracker",
  40332. height: math.unit(30000000, "feet")
  40333. },
  40334. {
  40335. name: "Sol-Swallowing",
  40336. height: math.unit(1e11, "feet")
  40337. },
  40338. {
  40339. name: "Light Universal",
  40340. height: math.unit(5, "universes")
  40341. },
  40342. {
  40343. name: "Universe Atoms",
  40344. height: math.unit(1.829e9, "universes")
  40345. },
  40346. {
  40347. name: "Light Multiversal",
  40348. height: math.unit(5, "multiverses")
  40349. },
  40350. {
  40351. name: "Multiverse Atoms",
  40352. height: math.unit(1.829e9, "multiverses")
  40353. },
  40354. {
  40355. name: "Fabric of Time",
  40356. height: math.unit(1e262, "multiverses")
  40357. },
  40358. ]
  40359. ))
  40360. characterMakers.push(() => makeCharacter(
  40361. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  40362. {
  40363. front: {
  40364. height: math.unit(9, "feet"),
  40365. weight: math.unit(1050, "lb"),
  40366. name: "Front",
  40367. image: {
  40368. source: "./media/characters/tabitha/front.svg",
  40369. extra: 2083/1994,
  40370. bottom: 68/2151
  40371. }
  40372. },
  40373. },
  40374. [
  40375. {
  40376. name: "Baseline",
  40377. height: math.unit(9, "feet"),
  40378. default: true
  40379. },
  40380. {
  40381. name: "Giant",
  40382. height: math.unit(90, "feet")
  40383. },
  40384. {
  40385. name: "Macro",
  40386. height: math.unit(900, "feet")
  40387. },
  40388. {
  40389. name: "Megamacro",
  40390. height: math.unit(9000, "feet")
  40391. },
  40392. {
  40393. name: "City-Crushing",
  40394. height: math.unit(27000, "feet")
  40395. },
  40396. {
  40397. name: "Mountain-Mashing",
  40398. height: math.unit(90000, "feet")
  40399. },
  40400. {
  40401. name: "Nation Nemesis",
  40402. height: math.unit(9e6, "feet")
  40403. },
  40404. {
  40405. name: "Continent Cracker",
  40406. height: math.unit(27e6, "feet")
  40407. },
  40408. {
  40409. name: "Earth-Eclipsing",
  40410. height: math.unit(2.7e8, "feet")
  40411. },
  40412. {
  40413. name: "Gas Giant Gulper",
  40414. height: math.unit(2.7e9, "feet")
  40415. },
  40416. {
  40417. name: "Sol-Swallowing",
  40418. height: math.unit(9e10, "feet")
  40419. },
  40420. {
  40421. name: "Galaxy Gulper",
  40422. height: math.unit(9, "galaxies")
  40423. },
  40424. {
  40425. name: "Cosmos Churner",
  40426. height: math.unit(9, "universes")
  40427. },
  40428. ]
  40429. ))
  40430. characterMakers.push(() => makeCharacter(
  40431. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  40432. {
  40433. front: {
  40434. height: math.unit(160, "cm"),
  40435. weight: math.unit(55, "kg"),
  40436. name: "Front",
  40437. image: {
  40438. source: "./media/characters/tow/front.svg",
  40439. extra: 1751/1722,
  40440. bottom: 74/1825
  40441. }
  40442. },
  40443. },
  40444. [
  40445. {
  40446. name: "Norm",
  40447. height: math.unit(160, "cm")
  40448. },
  40449. {
  40450. name: "Casual",
  40451. height: math.unit(3200, "m"),
  40452. default: true
  40453. },
  40454. {
  40455. name: "Show-Off",
  40456. height: math.unit(160, "km")
  40457. },
  40458. ]
  40459. ))
  40460. characterMakers.push(() => makeCharacter(
  40461. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  40462. {
  40463. front: {
  40464. height: math.unit(7 + 11/12, "feet"),
  40465. weight: math.unit(342.8, "lb"),
  40466. name: "Front",
  40467. image: {
  40468. source: "./media/characters/vivian-orca-dragon/front.svg",
  40469. extra: 1890/1865,
  40470. bottom: 28/1918
  40471. }
  40472. },
  40473. },
  40474. [
  40475. {
  40476. name: "Micro",
  40477. height: math.unit(5, "inches")
  40478. },
  40479. {
  40480. name: "Normal",
  40481. height: math.unit(7 + 11/12, "feet"),
  40482. default: true
  40483. },
  40484. {
  40485. name: "Macro",
  40486. height: math.unit(395 + 7/12, "feet")
  40487. },
  40488. ]
  40489. ))
  40490. characterMakers.push(() => makeCharacter(
  40491. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  40492. {
  40493. side: {
  40494. height: math.unit(10, "feet"),
  40495. weight: math.unit(1442, "lb"),
  40496. name: "Side",
  40497. image: {
  40498. source: "./media/characters/lotherakon/side.svg",
  40499. extra: 1604/1497,
  40500. bottom: 89/1693
  40501. }
  40502. },
  40503. },
  40504. [
  40505. {
  40506. name: "Mortal Interaction",
  40507. height: math.unit(10, "feet")
  40508. },
  40509. {
  40510. name: "Large",
  40511. height: math.unit(30, "feet"),
  40512. default: true
  40513. },
  40514. {
  40515. name: "Giant",
  40516. height: math.unit(100, "feet")
  40517. },
  40518. {
  40519. name: "Kaiju",
  40520. height: math.unit(300, "feet")
  40521. },
  40522. {
  40523. name: "Macro",
  40524. height: math.unit(1000, "feet")
  40525. },
  40526. {
  40527. name: "Macro+",
  40528. height: math.unit(3000, "feet")
  40529. },
  40530. {
  40531. name: "Megamacro",
  40532. height: math.unit(10000, "feet")
  40533. },
  40534. {
  40535. name: "City-Crushing",
  40536. height: math.unit(30000, "feet")
  40537. },
  40538. {
  40539. name: "Continent Cracker",
  40540. height: math.unit(30e6, "feet")
  40541. },
  40542. {
  40543. name: "Earth Eclipsing",
  40544. height: math.unit(3e8, "feet")
  40545. },
  40546. {
  40547. name: "Gas Giant Gulper",
  40548. height: math.unit(3e9, "feet")
  40549. },
  40550. {
  40551. name: "Sol-Swallowing",
  40552. height: math.unit(1e11, "feet")
  40553. },
  40554. {
  40555. name: "System Swallower",
  40556. height: math.unit(3e14, "feet")
  40557. },
  40558. {
  40559. name: "Galaxy Gulper",
  40560. height: math.unit(10, "galaxies")
  40561. },
  40562. {
  40563. name: "Light Universal",
  40564. height: math.unit(5, "universes")
  40565. },
  40566. {
  40567. name: "Universe Palm",
  40568. height: math.unit(20, "universes")
  40569. },
  40570. {
  40571. name: "Light Multiversal",
  40572. height: math.unit(5, "multiverses")
  40573. },
  40574. {
  40575. name: "Multiverse Palm",
  40576. height: math.unit(20, "multiverses")
  40577. },
  40578. {
  40579. name: "Inferno Incarnate",
  40580. height: math.unit(1e7, "multiverses")
  40581. },
  40582. ]
  40583. ))
  40584. characterMakers.push(() => makeCharacter(
  40585. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40586. {
  40587. front: {
  40588. height: math.unit(8, "feet"),
  40589. weight: math.unit(1200, "lb"),
  40590. name: "Front",
  40591. image: {
  40592. source: "./media/characters/malithee/front.svg",
  40593. extra: 1675/1640,
  40594. bottom: 162/1837
  40595. }
  40596. },
  40597. },
  40598. [
  40599. {
  40600. name: "Mortal Interaction",
  40601. height: math.unit(8, "feet"),
  40602. default: true
  40603. },
  40604. {
  40605. name: "Large",
  40606. height: math.unit(24, "feet")
  40607. },
  40608. {
  40609. name: "Kaiju",
  40610. height: math.unit(240, "feet")
  40611. },
  40612. {
  40613. name: "Megamacro",
  40614. height: math.unit(8000, "feet")
  40615. },
  40616. {
  40617. name: "Continent Cracker",
  40618. height: math.unit(24e6, "feet")
  40619. },
  40620. {
  40621. name: "Earth-Eclipsing",
  40622. height: math.unit(2.4e8, "feet")
  40623. },
  40624. {
  40625. name: "Sol-Swallowing",
  40626. height: math.unit(8e10, "feet")
  40627. },
  40628. {
  40629. name: "Galaxy Gulper",
  40630. height: math.unit(8, "galaxies")
  40631. },
  40632. {
  40633. name: "Light Universal",
  40634. height: math.unit(4, "universes")
  40635. },
  40636. {
  40637. name: "Universe Atoms",
  40638. height: math.unit(1.829e9, "universes")
  40639. },
  40640. {
  40641. name: "Light Multiversal",
  40642. height: math.unit(4, "multiverses")
  40643. },
  40644. {
  40645. name: "Multiverse Atoms",
  40646. height: math.unit(1.829e9, "multiverses")
  40647. },
  40648. {
  40649. name: "Nigh-Omnipresence",
  40650. height: math.unit(8e261, "multiverses")
  40651. },
  40652. ]
  40653. ))
  40654. characterMakers.push(() => makeCharacter(
  40655. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40656. {
  40657. front: {
  40658. height: math.unit(10, "feet"),
  40659. weight: math.unit(1500, "lb"),
  40660. name: "Front",
  40661. image: {
  40662. source: "./media/characters/miles-thestia/front.svg",
  40663. extra: 1812/1727,
  40664. bottom: 86/1898
  40665. }
  40666. },
  40667. back: {
  40668. height: math.unit(10, "feet"),
  40669. weight: math.unit(1500, "lb"),
  40670. name: "Back",
  40671. image: {
  40672. source: "./media/characters/miles-thestia/back.svg",
  40673. extra: 1799/1690,
  40674. bottom: 47/1846
  40675. }
  40676. },
  40677. frontNsfw: {
  40678. height: math.unit(10, "feet"),
  40679. weight: math.unit(1500, "lb"),
  40680. name: "Front (NSFW)",
  40681. image: {
  40682. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40683. extra: 1812/1727,
  40684. bottom: 86/1898
  40685. }
  40686. },
  40687. },
  40688. [
  40689. {
  40690. name: "Mini-Macro",
  40691. height: math.unit(10, "feet"),
  40692. default: true
  40693. },
  40694. ]
  40695. ))
  40696. characterMakers.push(() => makeCharacter(
  40697. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40698. {
  40699. front: {
  40700. height: math.unit(25, "feet"),
  40701. name: "Front",
  40702. image: {
  40703. source: "./media/characters/titan-s-wulf/front.svg",
  40704. extra: 1560/1484,
  40705. bottom: 76/1636
  40706. }
  40707. },
  40708. },
  40709. [
  40710. {
  40711. name: "Smallest",
  40712. height: math.unit(25, "feet"),
  40713. default: true
  40714. },
  40715. {
  40716. name: "Normal",
  40717. height: math.unit(200, "feet")
  40718. },
  40719. {
  40720. name: "Macro",
  40721. height: math.unit(200000, "feet")
  40722. },
  40723. {
  40724. name: "Multiversal Original",
  40725. height: math.unit(10000, "multiverses")
  40726. },
  40727. ]
  40728. ))
  40729. characterMakers.push(() => makeCharacter(
  40730. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40731. {
  40732. front: {
  40733. height: math.unit(8, "feet"),
  40734. weight: math.unit(553, "lb"),
  40735. name: "Front",
  40736. image: {
  40737. source: "./media/characters/tawendeh/front.svg",
  40738. extra: 2365/2268,
  40739. bottom: 83/2448
  40740. }
  40741. },
  40742. frontClothed: {
  40743. height: math.unit(8, "feet"),
  40744. weight: math.unit(553, "lb"),
  40745. name: "Front (Clothed)",
  40746. image: {
  40747. source: "./media/characters/tawendeh/front-clothed.svg",
  40748. extra: 2365/2268,
  40749. bottom: 83/2448
  40750. }
  40751. },
  40752. back: {
  40753. height: math.unit(8, "feet"),
  40754. weight: math.unit(553, "lb"),
  40755. name: "Back",
  40756. image: {
  40757. source: "./media/characters/tawendeh/back.svg",
  40758. extra: 2397/2294,
  40759. bottom: 42/2439
  40760. }
  40761. },
  40762. },
  40763. [
  40764. {
  40765. name: "Mortal Interaction",
  40766. height: math.unit(8, "feet"),
  40767. default: true
  40768. },
  40769. {
  40770. name: "Giant",
  40771. height: math.unit(80, "feet")
  40772. },
  40773. {
  40774. name: "Macro",
  40775. height: math.unit(800, "feet")
  40776. },
  40777. {
  40778. name: "Megamacro",
  40779. height: math.unit(8000, "feet")
  40780. },
  40781. {
  40782. name: "City-Crushing",
  40783. height: math.unit(24000, "feet")
  40784. },
  40785. {
  40786. name: "Mountain-Mashing",
  40787. height: math.unit(80000, "feet")
  40788. },
  40789. {
  40790. name: "Nation Nemesis",
  40791. height: math.unit(8e6, "feet")
  40792. },
  40793. {
  40794. name: "Continent Cracker",
  40795. height: math.unit(24e6, "feet")
  40796. },
  40797. {
  40798. name: "Earth-Eclipsing",
  40799. height: math.unit(2.4e8, "feet")
  40800. },
  40801. {
  40802. name: "Gas Giant Gulper",
  40803. height: math.unit(2.4e9, "feet")
  40804. },
  40805. {
  40806. name: "Sol-Swallowing",
  40807. height: math.unit(8e10, "feet")
  40808. },
  40809. {
  40810. name: "Galaxy Gulper",
  40811. height: math.unit(8, "galaxies")
  40812. },
  40813. {
  40814. name: "Cosmos Churner",
  40815. height: math.unit(8, "universes")
  40816. },
  40817. {
  40818. name: "Omnipotent Otter",
  40819. height: math.unit(80, "universes")
  40820. },
  40821. ]
  40822. ))
  40823. characterMakers.push(() => makeCharacter(
  40824. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40825. {
  40826. front: {
  40827. height: math.unit(2.6, "meters"),
  40828. weight: math.unit(900, "kg"),
  40829. name: "Front",
  40830. image: {
  40831. source: "./media/characters/neesha/front.svg",
  40832. extra: 1803/1653,
  40833. bottom: 128/1931
  40834. }
  40835. },
  40836. },
  40837. [
  40838. {
  40839. name: "Normal",
  40840. height: math.unit(2.6, "meters"),
  40841. default: true
  40842. },
  40843. {
  40844. name: "Macro",
  40845. height: math.unit(50, "meters")
  40846. },
  40847. ]
  40848. ))
  40849. characterMakers.push(() => makeCharacter(
  40850. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40851. {
  40852. front: {
  40853. height: math.unit(5, "feet"),
  40854. weight: math.unit(185, "lb"),
  40855. name: "Front",
  40856. image: {
  40857. source: "./media/characters/kyera/front.svg",
  40858. extra: 1875/1790,
  40859. bottom: 96/1971
  40860. }
  40861. },
  40862. },
  40863. [
  40864. {
  40865. name: "Normal",
  40866. height: math.unit(5, "feet"),
  40867. default: true
  40868. },
  40869. ]
  40870. ))
  40871. characterMakers.push(() => makeCharacter(
  40872. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40873. {
  40874. front: {
  40875. height: math.unit(7 + 6/12, "feet"),
  40876. weight: math.unit(540, "lb"),
  40877. name: "Front",
  40878. image: {
  40879. source: "./media/characters/yuko/front.svg",
  40880. extra: 1282/1222,
  40881. bottom: 101/1383
  40882. }
  40883. },
  40884. frontClothed: {
  40885. height: math.unit(7 + 6/12, "feet"),
  40886. weight: math.unit(540, "lb"),
  40887. name: "Front (Clothed)",
  40888. image: {
  40889. source: "./media/characters/yuko/front-clothed.svg",
  40890. extra: 1282/1222,
  40891. bottom: 101/1383
  40892. }
  40893. },
  40894. },
  40895. [
  40896. {
  40897. name: "Normal",
  40898. height: math.unit(7 + 6/12, "feet"),
  40899. default: true
  40900. },
  40901. {
  40902. name: "Macro",
  40903. height: math.unit(26 + 9/12, "feet")
  40904. },
  40905. {
  40906. name: "Megamacro",
  40907. height: math.unit(300, "feet")
  40908. },
  40909. {
  40910. name: "Gigamacro",
  40911. height: math.unit(5000, "feet")
  40912. },
  40913. {
  40914. name: "Planetary",
  40915. height: math.unit(10000, "miles")
  40916. },
  40917. ]
  40918. ))
  40919. characterMakers.push(() => makeCharacter(
  40920. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40921. {
  40922. front: {
  40923. height: math.unit(8 + 2/12, "feet"),
  40924. weight: math.unit(600, "lb"),
  40925. name: "Front",
  40926. image: {
  40927. source: "./media/characters/deam-nitrel/front.svg",
  40928. extra: 1308/1234,
  40929. bottom: 125/1433
  40930. }
  40931. },
  40932. },
  40933. [
  40934. {
  40935. name: "Normal",
  40936. height: math.unit(8 + 2/12, "feet"),
  40937. default: true
  40938. },
  40939. ]
  40940. ))
  40941. characterMakers.push(() => makeCharacter(
  40942. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40943. {
  40944. front: {
  40945. height: math.unit(6.1, "feet"),
  40946. weight: math.unit(180, "lb"),
  40947. name: "Front",
  40948. image: {
  40949. source: "./media/characters/skyress/front.svg",
  40950. extra: 1045/915,
  40951. bottom: 28/1073
  40952. }
  40953. },
  40954. maw: {
  40955. height: math.unit(1, "feet"),
  40956. name: "Maw",
  40957. image: {
  40958. source: "./media/characters/skyress/maw.svg"
  40959. }
  40960. },
  40961. },
  40962. [
  40963. {
  40964. name: "Normal",
  40965. height: math.unit(6.1, "feet"),
  40966. default: true
  40967. },
  40968. {
  40969. name: "Macro",
  40970. height: math.unit(200, "feet")
  40971. },
  40972. ]
  40973. ))
  40974. characterMakers.push(() => makeCharacter(
  40975. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40976. {
  40977. front: {
  40978. height: math.unit(4 + 2/12, "feet"),
  40979. weight: math.unit(40, "kg"),
  40980. name: "Front",
  40981. image: {
  40982. source: "./media/characters/amethyst-jones/front.svg",
  40983. extra: 1220/1150,
  40984. bottom: 101/1321
  40985. }
  40986. },
  40987. },
  40988. [
  40989. {
  40990. name: "Normal",
  40991. height: math.unit(4 + 2/12, "feet"),
  40992. default: true
  40993. },
  40994. ]
  40995. ))
  40996. characterMakers.push(() => makeCharacter(
  40997. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40998. {
  40999. front: {
  41000. height: math.unit(1.7, "m"),
  41001. weight: math.unit(135, "lb"),
  41002. name: "Front",
  41003. image: {
  41004. source: "./media/characters/jade/front.svg",
  41005. extra: 1818/1767,
  41006. bottom: 32/1850
  41007. }
  41008. },
  41009. back: {
  41010. height: math.unit(1.7, "m"),
  41011. weight: math.unit(135, "lb"),
  41012. name: "Back",
  41013. image: {
  41014. source: "./media/characters/jade/back.svg",
  41015. extra: 1869/1809,
  41016. bottom: 35/1904
  41017. }
  41018. },
  41019. hand: {
  41020. height: math.unit(0.24, "m"),
  41021. name: "Hand",
  41022. image: {
  41023. source: "./media/characters/jade/hand.svg"
  41024. }
  41025. },
  41026. foot: {
  41027. height: math.unit(0.263, "m"),
  41028. name: "Foot",
  41029. image: {
  41030. source: "./media/characters/jade/foot.svg"
  41031. }
  41032. },
  41033. dick: {
  41034. height: math.unit(0.47, "m"),
  41035. name: "Dick",
  41036. image: {
  41037. source: "./media/characters/jade/dick.svg"
  41038. }
  41039. },
  41040. },
  41041. [
  41042. {
  41043. name: "Micro",
  41044. height: math.unit(22, "cm")
  41045. },
  41046. {
  41047. name: "Normal",
  41048. height: math.unit(1.7, "m"),
  41049. default: true
  41050. },
  41051. {
  41052. name: "Macro",
  41053. height: math.unit(152, "m")
  41054. },
  41055. ]
  41056. ))
  41057. characterMakers.push(() => makeCharacter(
  41058. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  41059. {
  41060. front: {
  41061. height: math.unit(100, "miles"),
  41062. weight: math.unit(20000, "tons"),
  41063. name: "Front",
  41064. image: {
  41065. source: "./media/characters/cookie/front.svg",
  41066. extra: 1125/1070,
  41067. bottom: 30/1155
  41068. }
  41069. },
  41070. },
  41071. [
  41072. {
  41073. name: "Big",
  41074. height: math.unit(50, "feet")
  41075. },
  41076. {
  41077. name: "Macro",
  41078. height: math.unit(100, "miles"),
  41079. default: true
  41080. },
  41081. {
  41082. name: "Megamacro",
  41083. height: math.unit(90000, "miles")
  41084. },
  41085. ]
  41086. ))
  41087. characterMakers.push(() => makeCharacter(
  41088. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  41089. {
  41090. front: {
  41091. height: math.unit(6, "feet"),
  41092. weight: math.unit(145, "lb"),
  41093. name: "Front",
  41094. image: {
  41095. source: "./media/characters/farzian/front.svg",
  41096. extra: 1902/1693,
  41097. bottom: 108/2010
  41098. }
  41099. },
  41100. },
  41101. [
  41102. {
  41103. name: "Macro",
  41104. height: math.unit(500, "feet"),
  41105. default: true
  41106. },
  41107. ]
  41108. ))
  41109. characterMakers.push(() => makeCharacter(
  41110. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  41111. {
  41112. front: {
  41113. height: math.unit(3 + 6/12, "feet"),
  41114. weight: math.unit(50, "lb"),
  41115. name: "Front",
  41116. image: {
  41117. source: "./media/characters/kimberly-tilson/front.svg",
  41118. extra: 1400/1322,
  41119. bottom: 36/1436
  41120. }
  41121. },
  41122. back: {
  41123. height: math.unit(3 + 6/12, "feet"),
  41124. weight: math.unit(50, "lb"),
  41125. name: "Back",
  41126. image: {
  41127. source: "./media/characters/kimberly-tilson/back.svg",
  41128. extra: 1370/1307,
  41129. bottom: 20/1390
  41130. }
  41131. },
  41132. },
  41133. [
  41134. {
  41135. name: "Normal",
  41136. height: math.unit(3 + 6/12, "feet"),
  41137. default: true
  41138. },
  41139. ]
  41140. ))
  41141. characterMakers.push(() => makeCharacter(
  41142. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  41143. {
  41144. front: {
  41145. height: math.unit(1148, "feet"),
  41146. weight: math.unit(34057, "lb"),
  41147. name: "Front",
  41148. image: {
  41149. source: "./media/characters/harthos/front.svg",
  41150. extra: 1391/1339,
  41151. bottom: 13/1404
  41152. }
  41153. },
  41154. },
  41155. [
  41156. {
  41157. name: "Macro",
  41158. height: math.unit(1148, "feet"),
  41159. default: true
  41160. },
  41161. ]
  41162. ))
  41163. characterMakers.push(() => makeCharacter(
  41164. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  41165. {
  41166. front: {
  41167. height: math.unit(15, "feet"),
  41168. name: "Front",
  41169. image: {
  41170. source: "./media/characters/hypatia/front.svg",
  41171. extra: 1653/1591,
  41172. bottom: 79/1732
  41173. }
  41174. },
  41175. },
  41176. [
  41177. {
  41178. name: "Normal",
  41179. height: math.unit(15, "feet")
  41180. },
  41181. {
  41182. name: "Small",
  41183. height: math.unit(300, "feet")
  41184. },
  41185. {
  41186. name: "Macro",
  41187. height: math.unit(2500, "feet"),
  41188. default: true
  41189. },
  41190. {
  41191. name: "Mega Macro",
  41192. height: math.unit(1500, "miles")
  41193. },
  41194. {
  41195. name: "Giga Macro",
  41196. height: math.unit(1.5e6, "miles")
  41197. },
  41198. ]
  41199. ))
  41200. characterMakers.push(() => makeCharacter(
  41201. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  41202. {
  41203. front: {
  41204. height: math.unit(6, "feet"),
  41205. weight: math.unit(200, "lb"),
  41206. name: "Front",
  41207. image: {
  41208. source: "./media/characters/wulver/front.svg",
  41209. extra: 1724/1632,
  41210. bottom: 130/1854
  41211. }
  41212. },
  41213. frontNsfw: {
  41214. height: math.unit(6, "feet"),
  41215. weight: math.unit(200, "lb"),
  41216. name: "Front (NSFW)",
  41217. image: {
  41218. source: "./media/characters/wulver/front-nsfw.svg",
  41219. extra: 1724/1632,
  41220. bottom: 130/1854
  41221. }
  41222. },
  41223. },
  41224. [
  41225. {
  41226. name: "Human-Sized",
  41227. height: math.unit(6, "feet")
  41228. },
  41229. {
  41230. name: "Normal",
  41231. height: math.unit(4, "meters"),
  41232. default: true
  41233. },
  41234. {
  41235. name: "Large",
  41236. height: math.unit(6, "m")
  41237. },
  41238. ]
  41239. ))
  41240. characterMakers.push(() => makeCharacter(
  41241. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  41242. {
  41243. front: {
  41244. height: math.unit(7, "feet"),
  41245. name: "Front",
  41246. image: {
  41247. source: "./media/characters/maru/front.svg",
  41248. extra: 1595/1570,
  41249. bottom: 0/1595
  41250. }
  41251. },
  41252. },
  41253. [
  41254. {
  41255. name: "Normal",
  41256. height: math.unit(7, "feet"),
  41257. default: true
  41258. },
  41259. {
  41260. name: "Macro",
  41261. height: math.unit(700, "feet")
  41262. },
  41263. {
  41264. name: "Mega Macro",
  41265. height: math.unit(25, "miles")
  41266. },
  41267. ]
  41268. ))
  41269. characterMakers.push(() => makeCharacter(
  41270. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  41271. {
  41272. front: {
  41273. height: math.unit(6, "feet"),
  41274. weight: math.unit(170, "lb"),
  41275. name: "Front",
  41276. image: {
  41277. source: "./media/characters/xenon/front.svg",
  41278. extra: 1376/1305,
  41279. bottom: 56/1432
  41280. }
  41281. },
  41282. back: {
  41283. height: math.unit(6, "feet"),
  41284. weight: math.unit(170, "lb"),
  41285. name: "Back",
  41286. image: {
  41287. source: "./media/characters/xenon/back.svg",
  41288. extra: 1328/1259,
  41289. bottom: 95/1423
  41290. }
  41291. },
  41292. maw: {
  41293. height: math.unit(0.52, "feet"),
  41294. name: "Maw",
  41295. image: {
  41296. source: "./media/characters/xenon/maw.svg"
  41297. }
  41298. },
  41299. hand: {
  41300. height: math.unit(0.82, "feet"),
  41301. name: "Hand",
  41302. image: {
  41303. source: "./media/characters/xenon/hand.svg"
  41304. }
  41305. },
  41306. foot: {
  41307. height: math.unit(1.13, "feet"),
  41308. name: "Foot",
  41309. image: {
  41310. source: "./media/characters/xenon/foot.svg"
  41311. }
  41312. },
  41313. },
  41314. [
  41315. {
  41316. name: "Micro",
  41317. height: math.unit(0.8, "inches")
  41318. },
  41319. {
  41320. name: "Normal",
  41321. height: math.unit(6, "feet")
  41322. },
  41323. {
  41324. name: "Macro",
  41325. height: math.unit(50, "feet"),
  41326. default: true
  41327. },
  41328. {
  41329. name: "Macro+",
  41330. height: math.unit(250, "feet")
  41331. },
  41332. {
  41333. name: "Megamacro",
  41334. height: math.unit(1500, "feet")
  41335. },
  41336. ]
  41337. ))
  41338. characterMakers.push(() => makeCharacter(
  41339. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  41340. {
  41341. front: {
  41342. height: math.unit(7 + 5/12, "feet"),
  41343. name: "Front",
  41344. image: {
  41345. source: "./media/characters/zane/front.svg",
  41346. extra: 1260/1203,
  41347. bottom: 94/1354
  41348. }
  41349. },
  41350. back: {
  41351. height: math.unit(5.05, "feet"),
  41352. name: "Back",
  41353. image: {
  41354. source: "./media/characters/zane/back.svg",
  41355. extra: 893/829,
  41356. bottom: 30/923
  41357. }
  41358. },
  41359. werewolf: {
  41360. height: math.unit(11, "feet"),
  41361. name: "Werewolf",
  41362. image: {
  41363. source: "./media/characters/zane/werewolf.svg",
  41364. extra: 1383/1323,
  41365. bottom: 89/1472
  41366. }
  41367. },
  41368. foot: {
  41369. height: math.unit(1.46, "feet"),
  41370. name: "Foot",
  41371. image: {
  41372. source: "./media/characters/zane/foot.svg"
  41373. }
  41374. },
  41375. footFront: {
  41376. height: math.unit(0.784, "feet"),
  41377. name: "Foot (Front)",
  41378. image: {
  41379. source: "./media/characters/zane/foot-front.svg"
  41380. }
  41381. },
  41382. dick: {
  41383. height: math.unit(1.95, "feet"),
  41384. name: "Dick",
  41385. image: {
  41386. source: "./media/characters/zane/dick.svg"
  41387. }
  41388. },
  41389. dickWerewolf: {
  41390. height: math.unit(3.77, "feet"),
  41391. name: "Dick (Werewolf)",
  41392. image: {
  41393. source: "./media/characters/zane/dick.svg"
  41394. }
  41395. },
  41396. },
  41397. [
  41398. {
  41399. name: "Normal",
  41400. height: math.unit(7 + 5/12, "feet"),
  41401. default: true
  41402. },
  41403. ]
  41404. ))
  41405. characterMakers.push(() => makeCharacter(
  41406. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  41407. {
  41408. front: {
  41409. height: math.unit(6 + 2/12, "feet"),
  41410. weight: math.unit(284, "lb"),
  41411. name: "Front",
  41412. image: {
  41413. source: "./media/characters/benni-desparque/front.svg",
  41414. extra: 1353/1126,
  41415. bottom: 69/1422
  41416. }
  41417. },
  41418. },
  41419. [
  41420. {
  41421. name: "Civilian",
  41422. height: math.unit(6 + 2/12, "feet")
  41423. },
  41424. {
  41425. name: "Normal",
  41426. height: math.unit(98, "feet"),
  41427. default: true
  41428. },
  41429. {
  41430. name: "Kaiju Fighter",
  41431. height: math.unit(268, "feet")
  41432. },
  41433. ]
  41434. ))
  41435. characterMakers.push(() => makeCharacter(
  41436. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  41437. {
  41438. front: {
  41439. height: math.unit(5, "feet"),
  41440. weight: math.unit(105, "lb"),
  41441. name: "Front",
  41442. image: {
  41443. source: "./media/characters/maxine/front.svg",
  41444. extra: 1386/1250,
  41445. bottom: 71/1457
  41446. }
  41447. },
  41448. },
  41449. [
  41450. {
  41451. name: "Normal",
  41452. height: math.unit(5, "feet"),
  41453. default: true
  41454. },
  41455. ]
  41456. ))
  41457. characterMakers.push(() => makeCharacter(
  41458. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  41459. {
  41460. front: {
  41461. height: math.unit(11 + 7/12, "feet"),
  41462. weight: math.unit(9576, "lb"),
  41463. name: "Front",
  41464. image: {
  41465. source: "./media/characters/scaly/front.svg",
  41466. extra: 888/867,
  41467. bottom: 36/924
  41468. }
  41469. },
  41470. },
  41471. [
  41472. {
  41473. name: "Normal",
  41474. height: math.unit(11 + 7/12, "feet"),
  41475. default: true
  41476. },
  41477. ]
  41478. ))
  41479. characterMakers.push(() => makeCharacter(
  41480. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  41481. {
  41482. front: {
  41483. height: math.unit(6 + 3/12, "feet"),
  41484. name: "Front",
  41485. image: {
  41486. source: "./media/characters/saelria/front.svg",
  41487. extra: 1243/1138,
  41488. bottom: 46/1289
  41489. }
  41490. },
  41491. },
  41492. [
  41493. {
  41494. name: "Micro",
  41495. height: math.unit(6, "inches"),
  41496. },
  41497. {
  41498. name: "Normal",
  41499. height: math.unit(6 + 3/12, "feet"),
  41500. default: true
  41501. },
  41502. {
  41503. name: "Macro",
  41504. height: math.unit(25, "feet")
  41505. },
  41506. ]
  41507. ))
  41508. characterMakers.push(() => makeCharacter(
  41509. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  41510. {
  41511. front: {
  41512. height: math.unit(80, "meters"),
  41513. weight: math.unit(7000, "tonnes"),
  41514. name: "Front",
  41515. image: {
  41516. source: "./media/characters/tef/front.svg",
  41517. extra: 2036/1991,
  41518. bottom: 54/2090
  41519. }
  41520. },
  41521. back: {
  41522. height: math.unit(80, "meters"),
  41523. weight: math.unit(7000, "tonnes"),
  41524. name: "Back",
  41525. image: {
  41526. source: "./media/characters/tef/back.svg",
  41527. extra: 2036/1991,
  41528. bottom: 54/2090
  41529. }
  41530. },
  41531. },
  41532. [
  41533. {
  41534. name: "Macro",
  41535. height: math.unit(80, "meters"),
  41536. default: true
  41537. },
  41538. ]
  41539. ))
  41540. characterMakers.push(() => makeCharacter(
  41541. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  41542. {
  41543. front: {
  41544. height: math.unit(13, "feet"),
  41545. weight: math.unit(6, "tons"),
  41546. name: "Front",
  41547. image: {
  41548. source: "./media/characters/rover/front.svg",
  41549. extra: 1233/1156,
  41550. bottom: 50/1283
  41551. }
  41552. },
  41553. back: {
  41554. height: math.unit(13, "feet"),
  41555. weight: math.unit(6, "tons"),
  41556. name: "Back",
  41557. image: {
  41558. source: "./media/characters/rover/back.svg",
  41559. extra: 1327/1258,
  41560. bottom: 39/1366
  41561. }
  41562. },
  41563. },
  41564. [
  41565. {
  41566. name: "Normal",
  41567. height: math.unit(13, "feet"),
  41568. default: true
  41569. },
  41570. {
  41571. name: "Macro",
  41572. height: math.unit(1300, "feet")
  41573. },
  41574. {
  41575. name: "Megamacro",
  41576. height: math.unit(1300, "miles")
  41577. },
  41578. {
  41579. name: "Gigamacro",
  41580. height: math.unit(1300000, "miles")
  41581. },
  41582. ]
  41583. ))
  41584. characterMakers.push(() => makeCharacter(
  41585. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41586. {
  41587. front: {
  41588. height: math.unit(6, "feet"),
  41589. weight: math.unit(150, "lb"),
  41590. name: "Front",
  41591. image: {
  41592. source: "./media/characters/ariz/front.svg",
  41593. extra: 1401/1346,
  41594. bottom: 5/1406
  41595. }
  41596. },
  41597. },
  41598. [
  41599. {
  41600. name: "Normal",
  41601. height: math.unit(10, "feet"),
  41602. default: true
  41603. },
  41604. ]
  41605. ))
  41606. characterMakers.push(() => makeCharacter(
  41607. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41608. {
  41609. front: {
  41610. height: math.unit(6, "feet"),
  41611. weight: math.unit(140, "lb"),
  41612. name: "Front",
  41613. image: {
  41614. source: "./media/characters/sigrun/front.svg",
  41615. extra: 1418/1359,
  41616. bottom: 27/1445
  41617. }
  41618. },
  41619. },
  41620. [
  41621. {
  41622. name: "Macro",
  41623. height: math.unit(35, "feet"),
  41624. default: true
  41625. },
  41626. ]
  41627. ))
  41628. characterMakers.push(() => makeCharacter(
  41629. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41630. {
  41631. front: {
  41632. height: math.unit(6, "feet"),
  41633. weight: math.unit(150, "lb"),
  41634. name: "Front",
  41635. image: {
  41636. source: "./media/characters/numin/front.svg",
  41637. extra: 1433/1388,
  41638. bottom: 12/1445
  41639. }
  41640. },
  41641. },
  41642. [
  41643. {
  41644. name: "Macro",
  41645. height: math.unit(21.5, "km"),
  41646. default: true
  41647. },
  41648. ]
  41649. ))
  41650. characterMakers.push(() => makeCharacter(
  41651. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41652. {
  41653. front: {
  41654. height: math.unit(6, "feet"),
  41655. weight: math.unit(463, "lb"),
  41656. name: "Front",
  41657. image: {
  41658. source: "./media/characters/melwa/front.svg",
  41659. extra: 1307/1248,
  41660. bottom: 93/1400
  41661. }
  41662. },
  41663. },
  41664. [
  41665. {
  41666. name: "Macro",
  41667. height: math.unit(50, "meters"),
  41668. default: true
  41669. },
  41670. ]
  41671. ))
  41672. characterMakers.push(() => makeCharacter(
  41673. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41674. {
  41675. front: {
  41676. height: math.unit(325, "feet"),
  41677. name: "Front",
  41678. image: {
  41679. source: "./media/characters/zorkaiju/front.svg",
  41680. extra: 1955/1814,
  41681. bottom: 40/1995
  41682. }
  41683. },
  41684. frontExtended: {
  41685. height: math.unit(325, "feet"),
  41686. name: "Front (Extended)",
  41687. image: {
  41688. source: "./media/characters/zorkaiju/front-extended.svg",
  41689. extra: 1955/1814,
  41690. bottom: 40/1995
  41691. }
  41692. },
  41693. side: {
  41694. height: math.unit(325, "feet"),
  41695. name: "Side",
  41696. image: {
  41697. source: "./media/characters/zorkaiju/side.svg",
  41698. extra: 1495/1396,
  41699. bottom: 17/1512
  41700. }
  41701. },
  41702. sideExtended: {
  41703. height: math.unit(325, "feet"),
  41704. name: "Side (Extended)",
  41705. image: {
  41706. source: "./media/characters/zorkaiju/side-extended.svg",
  41707. extra: 1495/1396,
  41708. bottom: 17/1512
  41709. }
  41710. },
  41711. back: {
  41712. height: math.unit(325, "feet"),
  41713. name: "Back",
  41714. image: {
  41715. source: "./media/characters/zorkaiju/back.svg",
  41716. extra: 1959/1821,
  41717. bottom: 31/1990
  41718. }
  41719. },
  41720. backExtended: {
  41721. height: math.unit(325, "feet"),
  41722. name: "Back (Extended)",
  41723. image: {
  41724. source: "./media/characters/zorkaiju/back-extended.svg",
  41725. extra: 1959/1821,
  41726. bottom: 31/1990
  41727. }
  41728. },
  41729. hand: {
  41730. height: math.unit(58.4, "feet"),
  41731. name: "Hand",
  41732. image: {
  41733. source: "./media/characters/zorkaiju/hand.svg"
  41734. }
  41735. },
  41736. handExtended: {
  41737. height: math.unit(61.4, "feet"),
  41738. name: "Hand (Extended)",
  41739. image: {
  41740. source: "./media/characters/zorkaiju/hand-extended.svg"
  41741. }
  41742. },
  41743. foot: {
  41744. height: math.unit(95, "feet"),
  41745. name: "Foot",
  41746. image: {
  41747. source: "./media/characters/zorkaiju/foot.svg"
  41748. }
  41749. },
  41750. leftArm: {
  41751. height: math.unit(59, "feet"),
  41752. name: "Left Arm",
  41753. image: {
  41754. source: "./media/characters/zorkaiju/left-arm.svg"
  41755. }
  41756. },
  41757. rightArm: {
  41758. height: math.unit(59, "feet"),
  41759. name: "Right Arm",
  41760. image: {
  41761. source: "./media/characters/zorkaiju/right-arm.svg"
  41762. }
  41763. },
  41764. leftArmExtended: {
  41765. height: math.unit(59 * 1.033546, "feet"),
  41766. name: "Left Arm (Extended)",
  41767. image: {
  41768. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  41769. }
  41770. },
  41771. rightArmExtended: {
  41772. height: math.unit(59 * 1.0496, "feet"),
  41773. name: "Right Arm (Extended)",
  41774. image: {
  41775. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  41776. }
  41777. },
  41778. tail: {
  41779. height: math.unit(104, "feet"),
  41780. name: "Tail",
  41781. image: {
  41782. source: "./media/characters/zorkaiju/tail.svg"
  41783. }
  41784. },
  41785. tailExtended: {
  41786. height: math.unit(104, "feet"),
  41787. name: "Tail (Extended)",
  41788. image: {
  41789. source: "./media/characters/zorkaiju/tail-extended.svg"
  41790. }
  41791. },
  41792. tailBottom: {
  41793. height: math.unit(104, "feet"),
  41794. name: "Tail Bottom",
  41795. image: {
  41796. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41797. }
  41798. },
  41799. crystal: {
  41800. height: math.unit(27.54, "feet"),
  41801. name: "Crystal",
  41802. image: {
  41803. source: "./media/characters/zorkaiju/crystal.svg"
  41804. }
  41805. },
  41806. },
  41807. [
  41808. {
  41809. name: "Kaiju",
  41810. height: math.unit(325, "feet"),
  41811. default: true
  41812. },
  41813. ]
  41814. ))
  41815. characterMakers.push(() => makeCharacter(
  41816. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41817. {
  41818. front: {
  41819. height: math.unit(6 + 1/12, "feet"),
  41820. weight: math.unit(115, "lb"),
  41821. name: "Front",
  41822. image: {
  41823. source: "./media/characters/bailey-belfry/front.svg",
  41824. extra: 1240/1121,
  41825. bottom: 101/1341
  41826. }
  41827. },
  41828. },
  41829. [
  41830. {
  41831. name: "Normal",
  41832. height: math.unit(6 + 1/12, "feet"),
  41833. default: true
  41834. },
  41835. ]
  41836. ))
  41837. characterMakers.push(() => makeCharacter(
  41838. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41839. {
  41840. side: {
  41841. height: math.unit(4, "meters"),
  41842. weight: math.unit(250, "kg"),
  41843. name: "Side",
  41844. image: {
  41845. source: "./media/characters/blacky/side.svg",
  41846. extra: 1027/919,
  41847. bottom: 43/1070
  41848. }
  41849. },
  41850. maw: {
  41851. height: math.unit(1, "meters"),
  41852. name: "Maw",
  41853. image: {
  41854. source: "./media/characters/blacky/maw.svg"
  41855. }
  41856. },
  41857. paw: {
  41858. height: math.unit(1, "meters"),
  41859. name: "Paw",
  41860. image: {
  41861. source: "./media/characters/blacky/paw.svg"
  41862. }
  41863. },
  41864. },
  41865. [
  41866. {
  41867. name: "Normal",
  41868. height: math.unit(4, "meters"),
  41869. default: true
  41870. },
  41871. ]
  41872. ))
  41873. characterMakers.push(() => makeCharacter(
  41874. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41875. {
  41876. front: {
  41877. height: math.unit(170, "cm"),
  41878. weight: math.unit(66, "kg"),
  41879. name: "Front",
  41880. image: {
  41881. source: "./media/characters/thux-ei/front.svg",
  41882. extra: 1109/1011,
  41883. bottom: 8/1117
  41884. }
  41885. },
  41886. },
  41887. [
  41888. {
  41889. name: "Normal",
  41890. height: math.unit(170, "cm"),
  41891. default: true
  41892. },
  41893. ]
  41894. ))
  41895. characterMakers.push(() => makeCharacter(
  41896. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41897. {
  41898. front: {
  41899. height: math.unit(5, "feet"),
  41900. weight: math.unit(120, "lb"),
  41901. name: "Front",
  41902. image: {
  41903. source: "./media/characters/roxanne-voltaire/front.svg",
  41904. extra: 1901/1779,
  41905. bottom: 53/1954
  41906. }
  41907. },
  41908. },
  41909. [
  41910. {
  41911. name: "Normal",
  41912. height: math.unit(5, "feet"),
  41913. default: true
  41914. },
  41915. {
  41916. name: "Giant",
  41917. height: math.unit(50, "feet")
  41918. },
  41919. {
  41920. name: "Titan",
  41921. height: math.unit(500, "feet")
  41922. },
  41923. {
  41924. name: "Macro",
  41925. height: math.unit(5000, "feet")
  41926. },
  41927. {
  41928. name: "Megamacro",
  41929. height: math.unit(50000, "feet")
  41930. },
  41931. {
  41932. name: "Gigamacro",
  41933. height: math.unit(500000, "feet")
  41934. },
  41935. {
  41936. name: "Teramacro",
  41937. height: math.unit(5e6, "feet")
  41938. },
  41939. ]
  41940. ))
  41941. characterMakers.push(() => makeCharacter(
  41942. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41943. {
  41944. front: {
  41945. height: math.unit(6 + 2/12, "feet"),
  41946. name: "Front",
  41947. image: {
  41948. source: "./media/characters/squeaks/front.svg",
  41949. extra: 1823/1768,
  41950. bottom: 138/1961
  41951. }
  41952. },
  41953. },
  41954. [
  41955. {
  41956. name: "Micro",
  41957. height: math.unit(0.5, "inches")
  41958. },
  41959. {
  41960. name: "Normal",
  41961. height: math.unit(6 + 2/12, "feet"),
  41962. default: true
  41963. },
  41964. {
  41965. name: "Macro",
  41966. height: math.unit(600, "feet")
  41967. },
  41968. ]
  41969. ))
  41970. characterMakers.push(() => makeCharacter(
  41971. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41972. {
  41973. front: {
  41974. height: math.unit(1.72, "meters"),
  41975. name: "Front",
  41976. image: {
  41977. source: "./media/characters/archinger/front.svg",
  41978. extra: 1861/1675,
  41979. bottom: 125/1986
  41980. }
  41981. },
  41982. back: {
  41983. height: math.unit(1.72, "meters"),
  41984. name: "Back",
  41985. image: {
  41986. source: "./media/characters/archinger/back.svg",
  41987. extra: 1844/1701,
  41988. bottom: 104/1948
  41989. }
  41990. },
  41991. cock: {
  41992. height: math.unit(0.59, "feet"),
  41993. name: "Cock",
  41994. image: {
  41995. source: "./media/characters/archinger/cock.svg"
  41996. }
  41997. },
  41998. },
  41999. [
  42000. {
  42001. name: "Normal",
  42002. height: math.unit(1.72, "meters"),
  42003. default: true
  42004. },
  42005. {
  42006. name: "Macro",
  42007. height: math.unit(84, "meters")
  42008. },
  42009. {
  42010. name: "Macro+",
  42011. height: math.unit(112, "meters")
  42012. },
  42013. {
  42014. name: "Macro++",
  42015. height: math.unit(960, "meters")
  42016. },
  42017. {
  42018. name: "Macro+++",
  42019. height: math.unit(4, "km")
  42020. },
  42021. {
  42022. name: "Macro++++",
  42023. height: math.unit(48, "km")
  42024. },
  42025. {
  42026. name: "Macro+++++",
  42027. height: math.unit(4500, "km")
  42028. },
  42029. ]
  42030. ))
  42031. characterMakers.push(() => makeCharacter(
  42032. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  42033. {
  42034. front: {
  42035. height: math.unit(5 + 5/12, "feet"),
  42036. name: "Front",
  42037. image: {
  42038. source: "./media/characters/alsnapz/front.svg",
  42039. extra: 1157/1065,
  42040. bottom: 42/1199
  42041. }
  42042. },
  42043. },
  42044. [
  42045. {
  42046. name: "Normal",
  42047. height: math.unit(5 + 5/12, "feet"),
  42048. default: true
  42049. },
  42050. ]
  42051. ))
  42052. characterMakers.push(() => makeCharacter(
  42053. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  42054. {
  42055. side: {
  42056. height: math.unit(3.2, "earths"),
  42057. name: "Side",
  42058. image: {
  42059. source: "./media/characters/mag/side.svg",
  42060. extra: 1331/1008,
  42061. bottom: 52/1383
  42062. }
  42063. },
  42064. wing: {
  42065. height: math.unit(1.94, "earths"),
  42066. name: "Wing",
  42067. image: {
  42068. source: "./media/characters/mag/wing.svg"
  42069. }
  42070. },
  42071. dick: {
  42072. height: math.unit(1.8, "earths"),
  42073. name: "Dick",
  42074. image: {
  42075. source: "./media/characters/mag/dick.svg"
  42076. }
  42077. },
  42078. ass: {
  42079. height: math.unit(1.33, "earths"),
  42080. name: "Ass",
  42081. image: {
  42082. source: "./media/characters/mag/ass.svg"
  42083. }
  42084. },
  42085. head: {
  42086. height: math.unit(1.1, "earths"),
  42087. name: "Head",
  42088. image: {
  42089. source: "./media/characters/mag/head.svg"
  42090. }
  42091. },
  42092. maw: {
  42093. height: math.unit(1.62, "earths"),
  42094. name: "Maw",
  42095. image: {
  42096. source: "./media/characters/mag/maw.svg"
  42097. }
  42098. },
  42099. },
  42100. [
  42101. {
  42102. name: "Small",
  42103. height: math.unit(162, "feet")
  42104. },
  42105. {
  42106. name: "Normal",
  42107. height: math.unit(3.2, "earths"),
  42108. default: true
  42109. },
  42110. ]
  42111. ))
  42112. characterMakers.push(() => makeCharacter(
  42113. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  42114. {
  42115. front: {
  42116. height: math.unit(512, "feet"),
  42117. weight: math.unit(63509, "tonnes"),
  42118. name: "Front",
  42119. image: {
  42120. source: "./media/characters/vorrel-harroc/front.svg",
  42121. extra: 1075/1063,
  42122. bottom: 62/1137
  42123. }
  42124. },
  42125. },
  42126. [
  42127. {
  42128. name: "Normal",
  42129. height: math.unit(10, "feet")
  42130. },
  42131. {
  42132. name: "Macro",
  42133. height: math.unit(512, "feet"),
  42134. default: true
  42135. },
  42136. {
  42137. name: "Megamacro",
  42138. height: math.unit(256, "miles")
  42139. },
  42140. {
  42141. name: "Gigamacro",
  42142. height: math.unit(4096, "miles")
  42143. },
  42144. ]
  42145. ))
  42146. characterMakers.push(() => makeCharacter(
  42147. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  42148. {
  42149. side: {
  42150. height: math.unit(50, "feet"),
  42151. name: "Side",
  42152. image: {
  42153. source: "./media/characters/froimar/side.svg",
  42154. extra: 855/638,
  42155. bottom: 99/954
  42156. }
  42157. },
  42158. },
  42159. [
  42160. {
  42161. name: "Macro",
  42162. height: math.unit(50, "feet"),
  42163. default: true
  42164. },
  42165. ]
  42166. ))
  42167. characterMakers.push(() => makeCharacter(
  42168. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  42169. {
  42170. front: {
  42171. height: math.unit(210, "miles"),
  42172. name: "Front",
  42173. image: {
  42174. source: "./media/characters/timothy/front.svg",
  42175. extra: 1007/943,
  42176. bottom: 62/1069
  42177. }
  42178. },
  42179. frontSkirt: {
  42180. height: math.unit(210, "miles"),
  42181. name: "Front (Skirt)",
  42182. image: {
  42183. source: "./media/characters/timothy/front-skirt.svg",
  42184. extra: 1007/943,
  42185. bottom: 62/1069
  42186. }
  42187. },
  42188. frontCoat: {
  42189. height: math.unit(210, "miles"),
  42190. name: "Front (Coat)",
  42191. image: {
  42192. source: "./media/characters/timothy/front-coat.svg",
  42193. extra: 1007/943,
  42194. bottom: 62/1069
  42195. }
  42196. },
  42197. },
  42198. [
  42199. {
  42200. name: "Macro",
  42201. height: math.unit(210, "miles"),
  42202. default: true
  42203. },
  42204. {
  42205. name: "Megamacro",
  42206. height: math.unit(210000, "miles")
  42207. },
  42208. ]
  42209. ))
  42210. characterMakers.push(() => makeCharacter(
  42211. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  42212. {
  42213. front: {
  42214. height: math.unit(188, "feet"),
  42215. name: "Front",
  42216. image: {
  42217. source: "./media/characters/pyotr/front.svg",
  42218. extra: 1912/1826,
  42219. bottom: 18/1930
  42220. }
  42221. },
  42222. },
  42223. [
  42224. {
  42225. name: "Macro",
  42226. height: math.unit(188, "feet"),
  42227. default: true
  42228. },
  42229. {
  42230. name: "Megamacro",
  42231. height: math.unit(8, "miles")
  42232. },
  42233. ]
  42234. ))
  42235. characterMakers.push(() => makeCharacter(
  42236. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  42237. {
  42238. side: {
  42239. height: math.unit(10, "feet"),
  42240. weight: math.unit(4500, "lb"),
  42241. name: "Side",
  42242. image: {
  42243. source: "./media/characters/ackart/side.svg",
  42244. extra: 1776/1668,
  42245. bottom: 116/1892
  42246. }
  42247. },
  42248. },
  42249. [
  42250. {
  42251. name: "Normal",
  42252. height: math.unit(10, "feet"),
  42253. default: true
  42254. },
  42255. ]
  42256. ))
  42257. characterMakers.push(() => makeCharacter(
  42258. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  42259. {
  42260. side: {
  42261. height: math.unit(21, "feet"),
  42262. name: "Side",
  42263. image: {
  42264. source: "./media/characters/nolow/side.svg",
  42265. extra: 1484/1434,
  42266. bottom: 85/1569
  42267. }
  42268. },
  42269. sideErect: {
  42270. height: math.unit(21, "feet"),
  42271. name: "Side-erect",
  42272. image: {
  42273. source: "./media/characters/nolow/side-erect.svg",
  42274. extra: 1484/1434,
  42275. bottom: 85/1569
  42276. }
  42277. },
  42278. },
  42279. [
  42280. {
  42281. name: "Regular",
  42282. height: math.unit(12, "feet")
  42283. },
  42284. {
  42285. name: "Big Chee",
  42286. height: math.unit(21, "feet"),
  42287. default: true
  42288. },
  42289. ]
  42290. ))
  42291. characterMakers.push(() => makeCharacter(
  42292. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  42293. {
  42294. front: {
  42295. height: math.unit(7, "feet"),
  42296. weight: math.unit(250, "lb"),
  42297. name: "Front",
  42298. image: {
  42299. source: "./media/characters/nines/front.svg",
  42300. extra: 1741/1607,
  42301. bottom: 41/1782
  42302. }
  42303. },
  42304. side: {
  42305. height: math.unit(7, "feet"),
  42306. weight: math.unit(250, "lb"),
  42307. name: "Side",
  42308. image: {
  42309. source: "./media/characters/nines/side.svg",
  42310. extra: 1854/1735,
  42311. bottom: 93/1947
  42312. }
  42313. },
  42314. back: {
  42315. height: math.unit(7, "feet"),
  42316. weight: math.unit(250, "lb"),
  42317. name: "Back",
  42318. image: {
  42319. source: "./media/characters/nines/back.svg",
  42320. extra: 1748/1615,
  42321. bottom: 20/1768
  42322. }
  42323. },
  42324. },
  42325. [
  42326. {
  42327. name: "Megamacro",
  42328. height: math.unit(99, "km"),
  42329. default: true
  42330. },
  42331. ]
  42332. ))
  42333. characterMakers.push(() => makeCharacter(
  42334. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  42335. {
  42336. front: {
  42337. height: math.unit(5 + 10/12, "feet"),
  42338. weight: math.unit(210, "lb"),
  42339. name: "Front",
  42340. image: {
  42341. source: "./media/characters/zenith/front.svg",
  42342. extra: 1531/1452,
  42343. bottom: 198/1729
  42344. }
  42345. },
  42346. back: {
  42347. height: math.unit(5 + 10/12, "feet"),
  42348. weight: math.unit(210, "lb"),
  42349. name: "Back",
  42350. image: {
  42351. source: "./media/characters/zenith/back.svg",
  42352. extra: 1571/1487,
  42353. bottom: 75/1646
  42354. }
  42355. },
  42356. },
  42357. [
  42358. {
  42359. name: "Normal",
  42360. height: math.unit(5 + 10/12, "feet"),
  42361. default: true
  42362. }
  42363. ]
  42364. ))
  42365. characterMakers.push(() => makeCharacter(
  42366. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  42367. {
  42368. front: {
  42369. height: math.unit(4, "feet"),
  42370. weight: math.unit(60, "lb"),
  42371. name: "Front",
  42372. image: {
  42373. source: "./media/characters/jasper/front.svg",
  42374. extra: 1450/1379,
  42375. bottom: 19/1469
  42376. }
  42377. },
  42378. },
  42379. [
  42380. {
  42381. name: "Normal",
  42382. height: math.unit(4, "feet"),
  42383. default: true
  42384. },
  42385. ]
  42386. ))
  42387. characterMakers.push(() => makeCharacter(
  42388. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  42389. {
  42390. front: {
  42391. height: math.unit(6 + 5/12, "feet"),
  42392. weight: math.unit(290, "lb"),
  42393. name: "Front",
  42394. image: {
  42395. source: "./media/characters/tiberius-thyben/front.svg",
  42396. extra: 757/739,
  42397. bottom: 39/796
  42398. }
  42399. },
  42400. },
  42401. [
  42402. {
  42403. name: "Micro",
  42404. height: math.unit(1.5, "inches")
  42405. },
  42406. {
  42407. name: "Normal",
  42408. height: math.unit(6 + 5/12, "feet"),
  42409. default: true
  42410. },
  42411. {
  42412. name: "Macro",
  42413. height: math.unit(300, "feet")
  42414. },
  42415. ]
  42416. ))
  42417. characterMakers.push(() => makeCharacter(
  42418. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  42419. {
  42420. front: {
  42421. height: math.unit(5 + 6/12, "feet"),
  42422. weight: math.unit(60, "kg"),
  42423. name: "Front",
  42424. image: {
  42425. source: "./media/characters/sabre/front.svg",
  42426. extra: 738/671,
  42427. bottom: 27/765
  42428. }
  42429. },
  42430. },
  42431. [
  42432. {
  42433. name: "Teeny",
  42434. height: math.unit(2, "inches")
  42435. },
  42436. {
  42437. name: "Smol",
  42438. height: math.unit(8, "inches")
  42439. },
  42440. {
  42441. name: "Normal",
  42442. height: math.unit(5 + 6/12, "feet"),
  42443. default: true
  42444. },
  42445. {
  42446. name: "Mini-Macro",
  42447. height: math.unit(15, "feet")
  42448. },
  42449. {
  42450. name: "Macro",
  42451. height: math.unit(50, "feet")
  42452. },
  42453. ]
  42454. ))
  42455. characterMakers.push(() => makeCharacter(
  42456. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  42457. {
  42458. front: {
  42459. height: math.unit(6 + 4/12, "feet"),
  42460. weight: math.unit(170, "lb"),
  42461. name: "Front",
  42462. image: {
  42463. source: "./media/characters/charlie/front.svg",
  42464. extra: 1348/1228,
  42465. bottom: 15/1363
  42466. }
  42467. },
  42468. },
  42469. [
  42470. {
  42471. name: "Macro",
  42472. height: math.unit(1700, "meters"),
  42473. default: true
  42474. },
  42475. {
  42476. name: "MegaMacro",
  42477. height: math.unit(20400, "meters")
  42478. },
  42479. ]
  42480. ))
  42481. characterMakers.push(() => makeCharacter(
  42482. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  42483. {
  42484. front: {
  42485. height: math.unit(6 + 3/12, "feet"),
  42486. weight: math.unit(185, "lb"),
  42487. name: "Front",
  42488. image: {
  42489. source: "./media/characters/susan-grant/front.svg",
  42490. extra: 1351/1327,
  42491. bottom: 26/1377
  42492. }
  42493. },
  42494. },
  42495. [
  42496. {
  42497. name: "Normal",
  42498. height: math.unit(6 + 3/12, "feet"),
  42499. default: true
  42500. },
  42501. {
  42502. name: "Macro",
  42503. height: math.unit(225, "feet")
  42504. },
  42505. {
  42506. name: "Macro+",
  42507. height: math.unit(900, "feet")
  42508. },
  42509. {
  42510. name: "MegaMacro",
  42511. height: math.unit(14400, "feet")
  42512. },
  42513. ]
  42514. ))
  42515. characterMakers.push(() => makeCharacter(
  42516. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  42517. {
  42518. front: {
  42519. height: math.unit(5 + 4/12, "feet"),
  42520. weight: math.unit(110, "lb"),
  42521. name: "Front",
  42522. image: {
  42523. source: "./media/characters/axel-isanov/front.svg",
  42524. extra: 1096/1065,
  42525. bottom: 13/1109
  42526. }
  42527. },
  42528. },
  42529. [
  42530. {
  42531. name: "Normal",
  42532. height: math.unit(5 + 4/12, "feet"),
  42533. default: true
  42534. },
  42535. ]
  42536. ))
  42537. characterMakers.push(() => makeCharacter(
  42538. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  42539. {
  42540. front: {
  42541. height: math.unit(9, "feet"),
  42542. weight: math.unit(467, "lb"),
  42543. name: "Front",
  42544. image: {
  42545. source: "./media/characters/necahual/front.svg",
  42546. extra: 920/873,
  42547. bottom: 26/946
  42548. }
  42549. },
  42550. back: {
  42551. height: math.unit(9, "feet"),
  42552. weight: math.unit(467, "lb"),
  42553. name: "Back",
  42554. image: {
  42555. source: "./media/characters/necahual/back.svg",
  42556. extra: 930/884,
  42557. bottom: 16/946
  42558. }
  42559. },
  42560. frontUnderwear: {
  42561. height: math.unit(9, "feet"),
  42562. weight: math.unit(467, "lb"),
  42563. name: "Front (Underwear)",
  42564. image: {
  42565. source: "./media/characters/necahual/front-underwear.svg",
  42566. extra: 920/873,
  42567. bottom: 26/946
  42568. }
  42569. },
  42570. frontDressed: {
  42571. height: math.unit(9, "feet"),
  42572. weight: math.unit(467, "lb"),
  42573. name: "Front (Dressed)",
  42574. image: {
  42575. source: "./media/characters/necahual/front-dressed.svg",
  42576. extra: 920/873,
  42577. bottom: 26/946
  42578. }
  42579. },
  42580. },
  42581. [
  42582. {
  42583. name: "Comprsesed",
  42584. height: math.unit(9, "feet")
  42585. },
  42586. {
  42587. name: "Natural",
  42588. height: math.unit(15, "feet"),
  42589. default: true
  42590. },
  42591. {
  42592. name: "Boosted",
  42593. height: math.unit(50, "feet")
  42594. },
  42595. {
  42596. name: "Boosted+",
  42597. height: math.unit(150, "feet")
  42598. },
  42599. {
  42600. name: "Max",
  42601. height: math.unit(500, "feet")
  42602. },
  42603. ]
  42604. ))
  42605. characterMakers.push(() => makeCharacter(
  42606. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42607. {
  42608. front: {
  42609. height: math.unit(22 + 1/12, "feet"),
  42610. weight: math.unit(3200, "lb"),
  42611. name: "Front",
  42612. image: {
  42613. source: "./media/characters/theo-acacia/front.svg",
  42614. extra: 1796/1741,
  42615. bottom: 83/1879
  42616. }
  42617. },
  42618. frontUnderwear: {
  42619. height: math.unit(22 + 1/12, "feet"),
  42620. weight: math.unit(3200, "lb"),
  42621. name: "Front (Underwear)",
  42622. image: {
  42623. source: "./media/characters/theo-acacia/front-underwear.svg",
  42624. extra: 1796/1741,
  42625. bottom: 83/1879
  42626. }
  42627. },
  42628. frontNude: {
  42629. height: math.unit(22 + 1/12, "feet"),
  42630. weight: math.unit(3200, "lb"),
  42631. name: "Front (Nude)",
  42632. image: {
  42633. source: "./media/characters/theo-acacia/front-nude.svg",
  42634. extra: 1796/1741,
  42635. bottom: 83/1879
  42636. }
  42637. },
  42638. },
  42639. [
  42640. {
  42641. name: "Normal",
  42642. height: math.unit(22 + 1/12, "feet"),
  42643. default: true
  42644. },
  42645. ]
  42646. ))
  42647. characterMakers.push(() => makeCharacter(
  42648. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42649. {
  42650. front: {
  42651. height: math.unit(20, "feet"),
  42652. name: "Front",
  42653. image: {
  42654. source: "./media/characters/astra/front.svg",
  42655. extra: 1850/1714,
  42656. bottom: 106/1956
  42657. }
  42658. },
  42659. frontUndressed: {
  42660. height: math.unit(20, "feet"),
  42661. name: "Front (Undressed)",
  42662. image: {
  42663. source: "./media/characters/astra/front-undressed.svg",
  42664. extra: 1926/1749,
  42665. bottom: 0/1926
  42666. }
  42667. },
  42668. hand: {
  42669. height: math.unit(1.53, "feet"),
  42670. name: "Hand",
  42671. image: {
  42672. source: "./media/characters/astra/hand.svg"
  42673. }
  42674. },
  42675. paw: {
  42676. height: math.unit(1.53, "feet"),
  42677. name: "Paw",
  42678. image: {
  42679. source: "./media/characters/astra/paw.svg"
  42680. }
  42681. },
  42682. },
  42683. [
  42684. {
  42685. name: "Smallest",
  42686. height: math.unit(20, "feet")
  42687. },
  42688. {
  42689. name: "Normal",
  42690. height: math.unit(1e9, "miles"),
  42691. default: true
  42692. },
  42693. {
  42694. name: "Larger",
  42695. height: math.unit(5, "multiverses")
  42696. },
  42697. {
  42698. name: "Largest",
  42699. height: math.unit(1e9, "multiverses")
  42700. },
  42701. ]
  42702. ))
  42703. characterMakers.push(() => makeCharacter(
  42704. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42705. {
  42706. front: {
  42707. height: math.unit(8, "feet"),
  42708. name: "Front",
  42709. image: {
  42710. source: "./media/characters/breanna/front.svg",
  42711. extra: 1912/1632,
  42712. bottom: 33/1945
  42713. }
  42714. },
  42715. },
  42716. [
  42717. {
  42718. name: "Smallest",
  42719. height: math.unit(8, "feet")
  42720. },
  42721. {
  42722. name: "Normal",
  42723. height: math.unit(1, "mile"),
  42724. default: true
  42725. },
  42726. {
  42727. name: "Maximum",
  42728. height: math.unit(1500000000000, "lightyears")
  42729. },
  42730. ]
  42731. ))
  42732. characterMakers.push(() => makeCharacter(
  42733. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42734. {
  42735. front: {
  42736. height: math.unit(5 + 11/12, "feet"),
  42737. weight: math.unit(155, "lb"),
  42738. name: "Front",
  42739. image: {
  42740. source: "./media/characters/cai/front.svg",
  42741. extra: 1823/1702,
  42742. bottom: 32/1855
  42743. }
  42744. },
  42745. back: {
  42746. height: math.unit(5 + 11/12, "feet"),
  42747. weight: math.unit(155, "lb"),
  42748. name: "Back",
  42749. image: {
  42750. source: "./media/characters/cai/back.svg",
  42751. extra: 1809/1708,
  42752. bottom: 31/1840
  42753. }
  42754. },
  42755. },
  42756. [
  42757. {
  42758. name: "Normal",
  42759. height: math.unit(5 + 11/12, "feet"),
  42760. default: true
  42761. },
  42762. {
  42763. name: "Big",
  42764. height: math.unit(15, "feet")
  42765. },
  42766. {
  42767. name: "Macro",
  42768. height: math.unit(200, "feet")
  42769. },
  42770. ]
  42771. ))
  42772. characterMakers.push(() => makeCharacter(
  42773. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42774. {
  42775. front: {
  42776. height: math.unit(5 + 6/12, "feet"),
  42777. weight: math.unit(160, "lb"),
  42778. name: "Front",
  42779. image: {
  42780. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42781. extra: 1227/1174,
  42782. bottom: 37/1264
  42783. }
  42784. },
  42785. },
  42786. [
  42787. {
  42788. name: "Macro",
  42789. height: math.unit(444, "meters"),
  42790. default: true
  42791. },
  42792. ]
  42793. ))
  42794. characterMakers.push(() => makeCharacter(
  42795. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42796. {
  42797. front: {
  42798. height: math.unit(18 + 7/12, "feet"),
  42799. name: "Front",
  42800. image: {
  42801. source: "./media/characters/rex/front.svg",
  42802. extra: 1941/1807,
  42803. bottom: 66/2007
  42804. }
  42805. },
  42806. back: {
  42807. height: math.unit(18 + 7/12, "feet"),
  42808. name: "Back",
  42809. image: {
  42810. source: "./media/characters/rex/back.svg",
  42811. extra: 1937/1822,
  42812. bottom: 42/1979
  42813. }
  42814. },
  42815. boot: {
  42816. height: math.unit(3.45, "feet"),
  42817. name: "Boot",
  42818. image: {
  42819. source: "./media/characters/rex/boot.svg"
  42820. }
  42821. },
  42822. paw: {
  42823. height: math.unit(4.17, "feet"),
  42824. name: "Paw",
  42825. image: {
  42826. source: "./media/characters/rex/paw.svg"
  42827. }
  42828. },
  42829. head: {
  42830. height: math.unit(6.728, "feet"),
  42831. name: "Head",
  42832. image: {
  42833. source: "./media/characters/rex/head.svg"
  42834. }
  42835. },
  42836. },
  42837. [
  42838. {
  42839. name: "Nano",
  42840. height: math.unit(18 + 7/12, "feet")
  42841. },
  42842. {
  42843. name: "Micro",
  42844. height: math.unit(1.5, "megameters")
  42845. },
  42846. {
  42847. name: "Normal",
  42848. height: math.unit(440, "megameters"),
  42849. default: true
  42850. },
  42851. {
  42852. name: "Macro",
  42853. height: math.unit(2.5, "gigameters")
  42854. },
  42855. {
  42856. name: "Gigamacro",
  42857. height: math.unit(2, "galaxies")
  42858. },
  42859. ]
  42860. ))
  42861. characterMakers.push(() => makeCharacter(
  42862. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42863. {
  42864. side: {
  42865. height: math.unit(32, "feet"),
  42866. weight: math.unit(250000, "lb"),
  42867. name: "Side",
  42868. image: {
  42869. source: "./media/characters/silverwing/side.svg",
  42870. extra: 1100/1019,
  42871. bottom: 204/1304
  42872. }
  42873. },
  42874. },
  42875. [
  42876. {
  42877. name: "Normal",
  42878. height: math.unit(32, "feet"),
  42879. default: true
  42880. },
  42881. ]
  42882. ))
  42883. characterMakers.push(() => makeCharacter(
  42884. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42885. {
  42886. front: {
  42887. height: math.unit(6 + 6/12, "feet"),
  42888. weight: math.unit(350, "lb"),
  42889. name: "Front",
  42890. image: {
  42891. source: "./media/characters/tristan-hawthorne/front.svg",
  42892. extra: 1159/1124,
  42893. bottom: 37/1196
  42894. },
  42895. form: "labrador",
  42896. default: true
  42897. },
  42898. skunkFront: {
  42899. height: math.unit(4 + 6/12, "feet"),
  42900. weight: math.unit(120, "lb"),
  42901. name: "Front",
  42902. image: {
  42903. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42904. extra: 1609/1551,
  42905. bottom: 169/1778
  42906. },
  42907. form: "skunk",
  42908. default: true
  42909. },
  42910. },
  42911. [
  42912. {
  42913. name: "Normal",
  42914. height: math.unit(6 + 6/12, "feet"),
  42915. form: "labrador",
  42916. default: true
  42917. },
  42918. {
  42919. name: "Normal",
  42920. height: math.unit(4 + 6/12, "feet"),
  42921. form: "skunk",
  42922. default: true
  42923. },
  42924. ],
  42925. {
  42926. "labrador": {
  42927. name: "Labrador",
  42928. default: true
  42929. },
  42930. "skunk": {
  42931. name: "Skunk"
  42932. }
  42933. }
  42934. ))
  42935. characterMakers.push(() => makeCharacter(
  42936. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42937. {
  42938. front: {
  42939. height: math.unit(5 + 11/12, "feet"),
  42940. weight: math.unit(190, "lb"),
  42941. name: "Front",
  42942. image: {
  42943. source: "./media/characters/mizu/front.svg",
  42944. extra: 1988/1788,
  42945. bottom: 14/2002
  42946. }
  42947. },
  42948. },
  42949. [
  42950. {
  42951. name: "Normal",
  42952. height: math.unit(5 + 11/12, "feet"),
  42953. default: true
  42954. },
  42955. ]
  42956. ))
  42957. characterMakers.push(() => makeCharacter(
  42958. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42959. {
  42960. front: {
  42961. height: math.unit(1.7, "feet"),
  42962. weight: math.unit(50, "lb"),
  42963. name: "Front",
  42964. image: {
  42965. source: "./media/characters/dechroma/front.svg",
  42966. extra: 1095/859,
  42967. bottom: 64/1159
  42968. }
  42969. },
  42970. },
  42971. [
  42972. {
  42973. name: "Normal",
  42974. height: math.unit(1.7, "feet"),
  42975. default: true
  42976. },
  42977. ]
  42978. ))
  42979. characterMakers.push(() => makeCharacter(
  42980. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42981. {
  42982. side: {
  42983. height: math.unit(30, "feet"),
  42984. name: "Side",
  42985. image: {
  42986. source: "./media/characters/veluren-thanazel/side.svg",
  42987. extra: 1611/633,
  42988. bottom: 118/1729
  42989. }
  42990. },
  42991. front: {
  42992. height: math.unit(30, "feet"),
  42993. name: "Front",
  42994. image: {
  42995. source: "./media/characters/veluren-thanazel/front.svg",
  42996. extra: 1486/636,
  42997. bottom: 238/1724
  42998. }
  42999. },
  43000. head: {
  43001. height: math.unit(21.4, "feet"),
  43002. name: "Head",
  43003. image: {
  43004. source: "./media/characters/veluren-thanazel/head.svg"
  43005. }
  43006. },
  43007. genitals: {
  43008. height: math.unit(19.4, "feet"),
  43009. name: "Genitals",
  43010. image: {
  43011. source: "./media/characters/veluren-thanazel/genitals.svg"
  43012. }
  43013. },
  43014. },
  43015. [
  43016. {
  43017. name: "Social",
  43018. height: math.unit(6, "feet")
  43019. },
  43020. {
  43021. name: "Play",
  43022. height: math.unit(12, "feet")
  43023. },
  43024. {
  43025. name: "True",
  43026. height: math.unit(30, "feet"),
  43027. default: true
  43028. },
  43029. ]
  43030. ))
  43031. characterMakers.push(() => makeCharacter(
  43032. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  43033. {
  43034. front: {
  43035. height: math.unit(7 + 6/12, "feet"),
  43036. weight: math.unit(500, "kg"),
  43037. name: "Front",
  43038. image: {
  43039. source: "./media/characters/arcturas/front.svg",
  43040. extra: 1700/1500,
  43041. bottom: 145/1845
  43042. }
  43043. },
  43044. },
  43045. [
  43046. {
  43047. name: "Normal",
  43048. height: math.unit(7 + 6/12, "feet"),
  43049. default: true
  43050. },
  43051. ]
  43052. ))
  43053. characterMakers.push(() => makeCharacter(
  43054. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  43055. {
  43056. side: {
  43057. height: math.unit(6, "feet"),
  43058. weight: math.unit(2, "tons"),
  43059. name: "Side",
  43060. image: {
  43061. source: "./media/characters/vitaen/side.svg",
  43062. extra: 1157/617,
  43063. bottom: 122/1279
  43064. }
  43065. },
  43066. },
  43067. [
  43068. {
  43069. name: "Normal",
  43070. height: math.unit(6, "feet"),
  43071. default: true
  43072. },
  43073. ]
  43074. ))
  43075. characterMakers.push(() => makeCharacter(
  43076. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  43077. {
  43078. front: {
  43079. height: math.unit(19, "feet"),
  43080. name: "Front",
  43081. image: {
  43082. source: "./media/characters/fia-dreamweaver/front.svg",
  43083. extra: 1630/1504,
  43084. bottom: 25/1655
  43085. }
  43086. },
  43087. },
  43088. [
  43089. {
  43090. name: "Normal",
  43091. height: math.unit(19, "feet"),
  43092. default: true
  43093. },
  43094. ]
  43095. ))
  43096. characterMakers.push(() => makeCharacter(
  43097. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  43098. {
  43099. front: {
  43100. height: math.unit(5 + 4/12, "feet"),
  43101. name: "Front",
  43102. image: {
  43103. source: "./media/characters/artan/front.svg",
  43104. extra: 1618/1535,
  43105. bottom: 46/1664
  43106. }
  43107. },
  43108. back: {
  43109. height: math.unit(5 + 4/12, "feet"),
  43110. name: "Back",
  43111. image: {
  43112. source: "./media/characters/artan/back.svg",
  43113. extra: 1618/1543,
  43114. bottom: 31/1649
  43115. }
  43116. },
  43117. },
  43118. [
  43119. {
  43120. name: "Normal",
  43121. height: math.unit(5 + 4/12, "feet"),
  43122. default: true
  43123. },
  43124. ]
  43125. ))
  43126. characterMakers.push(() => makeCharacter(
  43127. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  43128. {
  43129. side: {
  43130. height: math.unit(182, "cm"),
  43131. weight: math.unit(1000, "lb"),
  43132. name: "Side",
  43133. image: {
  43134. source: "./media/characters/silver-dragon/side.svg",
  43135. extra: 710/287,
  43136. bottom: 88/798
  43137. }
  43138. },
  43139. },
  43140. [
  43141. {
  43142. name: "Normal",
  43143. height: math.unit(182, "cm"),
  43144. default: true
  43145. },
  43146. ]
  43147. ))
  43148. characterMakers.push(() => makeCharacter(
  43149. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  43150. {
  43151. side: {
  43152. height: math.unit(6 + 6/12, "feet"),
  43153. weight: math.unit(1.5, "tons"),
  43154. name: "Side",
  43155. image: {
  43156. source: "./media/characters/zephyr/side.svg",
  43157. extra: 1433/586,
  43158. bottom: 109/1542
  43159. }
  43160. },
  43161. },
  43162. [
  43163. {
  43164. name: "Normal",
  43165. height: math.unit(6 + 6/12, "feet"),
  43166. default: true
  43167. },
  43168. ]
  43169. ))
  43170. characterMakers.push(() => makeCharacter(
  43171. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  43172. {
  43173. side: {
  43174. height: math.unit(1, "feet"),
  43175. name: "Side",
  43176. image: {
  43177. source: "./media/characters/vixye/side.svg",
  43178. extra: 632/541,
  43179. bottom: 0/632
  43180. }
  43181. },
  43182. },
  43183. [
  43184. {
  43185. name: "Normal",
  43186. height: math.unit(1, "feet"),
  43187. default: true
  43188. },
  43189. {
  43190. name: "True",
  43191. height: math.unit(1e15, "multiverses")
  43192. },
  43193. ]
  43194. ))
  43195. characterMakers.push(() => makeCharacter(
  43196. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  43197. {
  43198. front: {
  43199. height: math.unit(8 + 2/12, "feet"),
  43200. weight: math.unit(650, "lb"),
  43201. name: "Front",
  43202. image: {
  43203. source: "./media/characters/darla-mac-lochlainn/front.svg",
  43204. extra: 1174/1137,
  43205. bottom: 82/1256
  43206. }
  43207. },
  43208. back: {
  43209. height: math.unit(8 + 2/12, "feet"),
  43210. weight: math.unit(650, "lb"),
  43211. name: "Back",
  43212. image: {
  43213. source: "./media/characters/darla-mac-lochlainn/back.svg",
  43214. extra: 1204/1157,
  43215. bottom: 46/1250
  43216. }
  43217. },
  43218. },
  43219. [
  43220. {
  43221. name: "Wildform",
  43222. height: math.unit(8 + 2/12, "feet"),
  43223. default: true
  43224. },
  43225. ]
  43226. ))
  43227. characterMakers.push(() => makeCharacter(
  43228. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  43229. {
  43230. front: {
  43231. height: math.unit(18, "feet"),
  43232. name: "Front",
  43233. image: {
  43234. source: "./media/characters/cyphin/front.svg",
  43235. extra: 970/886,
  43236. bottom: 42/1012
  43237. }
  43238. },
  43239. back: {
  43240. height: math.unit(18, "feet"),
  43241. name: "Back",
  43242. image: {
  43243. source: "./media/characters/cyphin/back.svg",
  43244. extra: 1009/894,
  43245. bottom: 24/1033
  43246. }
  43247. },
  43248. head: {
  43249. height: math.unit(5.05, "feet"),
  43250. name: "Head",
  43251. image: {
  43252. source: "./media/characters/cyphin/head.svg"
  43253. }
  43254. },
  43255. tailbud: {
  43256. height: math.unit(5, "feet"),
  43257. name: "Tailbud",
  43258. image: {
  43259. source: "./media/characters/cyphin/tailbud.svg"
  43260. }
  43261. },
  43262. },
  43263. [
  43264. ]
  43265. ))
  43266. characterMakers.push(() => makeCharacter(
  43267. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  43268. {
  43269. side: {
  43270. height: math.unit(10, "feet"),
  43271. weight: math.unit(6, "tons"),
  43272. name: "Side",
  43273. image: {
  43274. source: "./media/characters/raijin/side.svg",
  43275. extra: 1529/613,
  43276. bottom: 337/1866
  43277. }
  43278. },
  43279. },
  43280. [
  43281. {
  43282. name: "Normal",
  43283. height: math.unit(10, "feet"),
  43284. default: true
  43285. },
  43286. ]
  43287. ))
  43288. characterMakers.push(() => makeCharacter(
  43289. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  43290. {
  43291. side: {
  43292. height: math.unit(9, "feet"),
  43293. name: "Side",
  43294. image: {
  43295. source: "./media/characters/nilghais/side.svg",
  43296. extra: 1047/744,
  43297. bottom: 91/1138
  43298. }
  43299. },
  43300. head: {
  43301. height: math.unit(3.14, "feet"),
  43302. name: "Head",
  43303. image: {
  43304. source: "./media/characters/nilghais/head.svg"
  43305. }
  43306. },
  43307. mouth: {
  43308. height: math.unit(4.6, "feet"),
  43309. name: "Mouth",
  43310. image: {
  43311. source: "./media/characters/nilghais/mouth.svg"
  43312. }
  43313. },
  43314. wings: {
  43315. height: math.unit(24, "feet"),
  43316. name: "Wings",
  43317. image: {
  43318. source: "./media/characters/nilghais/wings.svg"
  43319. }
  43320. },
  43321. ass: {
  43322. height: math.unit(6.12, "feet"),
  43323. name: "Ass",
  43324. image: {
  43325. source: "./media/characters/nilghais/ass.svg"
  43326. }
  43327. },
  43328. },
  43329. [
  43330. {
  43331. name: "Normal",
  43332. height: math.unit(9, "feet"),
  43333. default: true
  43334. },
  43335. ]
  43336. ))
  43337. characterMakers.push(() => makeCharacter(
  43338. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  43339. {
  43340. regular: {
  43341. height: math.unit(16 + 2/12, "feet"),
  43342. weight: math.unit(2300, "lb"),
  43343. name: "Regular",
  43344. image: {
  43345. source: "./media/characters/zolgar/regular.svg",
  43346. extra: 1246/1004,
  43347. bottom: 124/1370
  43348. }
  43349. },
  43350. boxers: {
  43351. height: math.unit(16 + 2/12, "feet"),
  43352. weight: math.unit(2300, "lb"),
  43353. name: "Boxers",
  43354. image: {
  43355. source: "./media/characters/zolgar/boxers.svg",
  43356. extra: 1246/1004,
  43357. bottom: 124/1370
  43358. }
  43359. },
  43360. armored: {
  43361. height: math.unit(16 + 2/12, "feet"),
  43362. weight: math.unit(2300, "lb"),
  43363. name: "Armored",
  43364. image: {
  43365. source: "./media/characters/zolgar/armored.svg",
  43366. extra: 1246/1004,
  43367. bottom: 124/1370
  43368. }
  43369. },
  43370. goth: {
  43371. height: math.unit(16 + 2/12, "feet"),
  43372. weight: math.unit(2300, "lb"),
  43373. name: "Goth",
  43374. image: {
  43375. source: "./media/characters/zolgar/goth.svg",
  43376. extra: 1246/1004,
  43377. bottom: 124/1370
  43378. }
  43379. },
  43380. },
  43381. [
  43382. {
  43383. name: "Shrunken Down",
  43384. height: math.unit(9 + 2/12, "feet")
  43385. },
  43386. {
  43387. name: "Normal",
  43388. height: math.unit(16 + 2/12, "feet"),
  43389. default: true
  43390. },
  43391. ]
  43392. ))
  43393. characterMakers.push(() => makeCharacter(
  43394. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  43395. {
  43396. front: {
  43397. height: math.unit(6, "feet"),
  43398. weight: math.unit(168, "lb"),
  43399. name: "Front",
  43400. image: {
  43401. source: "./media/characters/luca/front.svg",
  43402. extra: 841/667,
  43403. bottom: 102/943
  43404. }
  43405. },
  43406. },
  43407. [
  43408. {
  43409. name: "Normal",
  43410. height: math.unit(6, "feet"),
  43411. default: true
  43412. },
  43413. ]
  43414. ))
  43415. characterMakers.push(() => makeCharacter(
  43416. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  43417. {
  43418. side: {
  43419. height: math.unit(7 + 3/12, "feet"),
  43420. weight: math.unit(312, "lb"),
  43421. name: "Side",
  43422. image: {
  43423. source: "./media/characters/zezo/side.svg",
  43424. extra: 1192/1067,
  43425. bottom: 63/1255
  43426. }
  43427. },
  43428. },
  43429. [
  43430. {
  43431. name: "Normal",
  43432. height: math.unit(7 + 3/12, "feet"),
  43433. default: true
  43434. },
  43435. ]
  43436. ))
  43437. characterMakers.push(() => makeCharacter(
  43438. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  43439. {
  43440. front: {
  43441. height: math.unit(5 + 5/12, "feet"),
  43442. weight: math.unit(170, "lb"),
  43443. name: "Front",
  43444. image: {
  43445. source: "./media/characters/mayso/front.svg",
  43446. extra: 1215/1108,
  43447. bottom: 16/1231
  43448. }
  43449. },
  43450. },
  43451. [
  43452. {
  43453. name: "Normal",
  43454. height: math.unit(5 + 5/12, "feet"),
  43455. default: true
  43456. },
  43457. ]
  43458. ))
  43459. characterMakers.push(() => makeCharacter(
  43460. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  43461. {
  43462. front: {
  43463. height: math.unit(4 + 3/12, "feet"),
  43464. weight: math.unit(80, "lb"),
  43465. name: "Front",
  43466. image: {
  43467. source: "./media/characters/hess/front.svg",
  43468. extra: 1200/1123,
  43469. bottom: 16/1216
  43470. }
  43471. },
  43472. },
  43473. [
  43474. {
  43475. name: "Normal",
  43476. height: math.unit(4 + 3/12, "feet"),
  43477. default: true
  43478. },
  43479. ]
  43480. ))
  43481. characterMakers.push(() => makeCharacter(
  43482. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  43483. {
  43484. front: {
  43485. height: math.unit(1.9, "meters"),
  43486. name: "Front",
  43487. image: {
  43488. source: "./media/characters/ashgar/front.svg",
  43489. extra: 1177/1146,
  43490. bottom: 99/1276
  43491. }
  43492. },
  43493. back: {
  43494. height: math.unit(1.9, "meters"),
  43495. name: "Back",
  43496. image: {
  43497. source: "./media/characters/ashgar/back.svg",
  43498. extra: 1201/1183,
  43499. bottom: 53/1254
  43500. }
  43501. },
  43502. feral: {
  43503. height: math.unit(1.4, "meters"),
  43504. name: "Feral",
  43505. image: {
  43506. source: "./media/characters/ashgar/feral.svg",
  43507. extra: 370/345,
  43508. bottom: 45/415
  43509. }
  43510. },
  43511. },
  43512. [
  43513. {
  43514. name: "Normal",
  43515. height: math.unit(1.9, "meters"),
  43516. default: true
  43517. },
  43518. ]
  43519. ))
  43520. characterMakers.push(() => makeCharacter(
  43521. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  43522. {
  43523. regular: {
  43524. height: math.unit(6, "feet"),
  43525. weight: math.unit(220, "lb"),
  43526. name: "Regular",
  43527. image: {
  43528. source: "./media/characters/phillip/regular.svg",
  43529. extra: 1373/1277,
  43530. bottom: 75/1448
  43531. }
  43532. },
  43533. dressed: {
  43534. height: math.unit(6, "feet"),
  43535. weight: math.unit(220, "lb"),
  43536. name: "Dressed",
  43537. image: {
  43538. source: "./media/characters/phillip/dressed.svg",
  43539. extra: 1373/1277,
  43540. bottom: 75/1448
  43541. }
  43542. },
  43543. paw: {
  43544. height: math.unit(1.44, "feet"),
  43545. name: "Paw",
  43546. image: {
  43547. source: "./media/characters/phillip/paw.svg"
  43548. }
  43549. },
  43550. },
  43551. [
  43552. {
  43553. name: "Normal",
  43554. height: math.unit(6, "feet"),
  43555. default: true
  43556. },
  43557. ]
  43558. ))
  43559. characterMakers.push(() => makeCharacter(
  43560. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  43561. {
  43562. side: {
  43563. height: math.unit(42, "feet"),
  43564. name: "Side",
  43565. image: {
  43566. source: "./media/characters/uvula/side.svg",
  43567. extra: 683/586,
  43568. bottom: 60/743
  43569. }
  43570. },
  43571. front: {
  43572. height: math.unit(42, "feet"),
  43573. name: "Front",
  43574. image: {
  43575. source: "./media/characters/uvula/front.svg",
  43576. extra: 705/613,
  43577. bottom: 54/759
  43578. }
  43579. },
  43580. maw: {
  43581. height: math.unit(23.5, "feet"),
  43582. name: "Maw",
  43583. image: {
  43584. source: "./media/characters/uvula/maw.svg"
  43585. }
  43586. },
  43587. },
  43588. [
  43589. {
  43590. name: "Original Size",
  43591. height: math.unit(14, "inches")
  43592. },
  43593. {
  43594. name: "Human Size",
  43595. height: math.unit(6, "feet")
  43596. },
  43597. {
  43598. name: "Big",
  43599. height: math.unit(42, "feet"),
  43600. default: true
  43601. },
  43602. {
  43603. name: "Bigger",
  43604. height: math.unit(100, "feet")
  43605. },
  43606. ]
  43607. ))
  43608. characterMakers.push(() => makeCharacter(
  43609. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43610. {
  43611. front: {
  43612. height: math.unit(5 + 11/12, "feet"),
  43613. name: "Front",
  43614. image: {
  43615. source: "./media/characters/lannah/front.svg",
  43616. extra: 1208/1113,
  43617. bottom: 97/1305
  43618. }
  43619. },
  43620. },
  43621. [
  43622. {
  43623. name: "Normal",
  43624. height: math.unit(5 + 11/12, "feet"),
  43625. default: true
  43626. },
  43627. ]
  43628. ))
  43629. characterMakers.push(() => makeCharacter(
  43630. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43631. {
  43632. front: {
  43633. height: math.unit(6 + 3/12, "feet"),
  43634. weight: math.unit(3.5, "tons"),
  43635. name: "Front",
  43636. image: {
  43637. source: "./media/characters/emberflame/front.svg",
  43638. extra: 1198/672,
  43639. bottom: 82/1280
  43640. }
  43641. },
  43642. side: {
  43643. height: math.unit(6 + 3/12, "feet"),
  43644. weight: math.unit(3.5, "tons"),
  43645. name: "Side",
  43646. image: {
  43647. source: "./media/characters/emberflame/side.svg",
  43648. extra: 938/527,
  43649. bottom: 56/994
  43650. }
  43651. },
  43652. },
  43653. [
  43654. {
  43655. name: "Normal",
  43656. height: math.unit(6 + 3/12, "feet"),
  43657. default: true
  43658. },
  43659. ]
  43660. ))
  43661. characterMakers.push(() => makeCharacter(
  43662. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43663. {
  43664. side: {
  43665. height: math.unit(17.5, "feet"),
  43666. weight: math.unit(35, "tons"),
  43667. name: "Side",
  43668. image: {
  43669. source: "./media/characters/sophie-ambrose/side.svg",
  43670. extra: 1573/1242,
  43671. bottom: 71/1644
  43672. }
  43673. },
  43674. maw: {
  43675. height: math.unit(7.4, "feet"),
  43676. name: "Maw",
  43677. image: {
  43678. source: "./media/characters/sophie-ambrose/maw.svg"
  43679. }
  43680. },
  43681. },
  43682. [
  43683. {
  43684. name: "Normal",
  43685. height: math.unit(17.5, "feet"),
  43686. default: true
  43687. },
  43688. ]
  43689. ))
  43690. characterMakers.push(() => makeCharacter(
  43691. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43692. {
  43693. front: {
  43694. height: math.unit(280, "feet"),
  43695. weight: math.unit(550, "tons"),
  43696. name: "Front",
  43697. image: {
  43698. source: "./media/characters/king-mugi/front.svg",
  43699. extra: 1102/947,
  43700. bottom: 104/1206
  43701. }
  43702. },
  43703. },
  43704. [
  43705. {
  43706. name: "King Mugi",
  43707. height: math.unit(280, "feet"),
  43708. default: true
  43709. },
  43710. ]
  43711. ))
  43712. characterMakers.push(() => makeCharacter(
  43713. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43714. {
  43715. front: {
  43716. height: math.unit(64, "meters"),
  43717. name: "Front",
  43718. image: {
  43719. source: "./media/characters/nova-fox/front.svg",
  43720. extra: 1310/1246,
  43721. bottom: 65/1375
  43722. }
  43723. },
  43724. },
  43725. [
  43726. {
  43727. name: "Macro",
  43728. height: math.unit(64, "meters"),
  43729. default: true
  43730. },
  43731. ]
  43732. ))
  43733. characterMakers.push(() => makeCharacter(
  43734. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43735. {
  43736. front: {
  43737. height: math.unit(6 + 3/12, "feet"),
  43738. weight: math.unit(170, "lb"),
  43739. name: "Front",
  43740. image: {
  43741. source: "./media/characters/sam-bat/front.svg",
  43742. extra: 1601/1411,
  43743. bottom: 125/1726
  43744. }
  43745. },
  43746. back: {
  43747. height: math.unit(6 + 3/12, "feet"),
  43748. weight: math.unit(170, "lb"),
  43749. name: "Back",
  43750. image: {
  43751. source: "./media/characters/sam-bat/back.svg",
  43752. extra: 1577/1405,
  43753. bottom: 58/1635
  43754. }
  43755. },
  43756. },
  43757. [
  43758. {
  43759. name: "Normal",
  43760. height: math.unit(6 + 3/12, "feet"),
  43761. default: true
  43762. },
  43763. ]
  43764. ))
  43765. characterMakers.push(() => makeCharacter(
  43766. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43767. {
  43768. front: {
  43769. height: math.unit(59, "feet"),
  43770. weight: math.unit(40000, "lb"),
  43771. name: "Front",
  43772. image: {
  43773. source: "./media/characters/inari/front.svg",
  43774. extra: 1884/1350,
  43775. bottom: 95/1979
  43776. }
  43777. },
  43778. },
  43779. [
  43780. {
  43781. name: "Gigantamax",
  43782. height: math.unit(59, "feet"),
  43783. default: true
  43784. },
  43785. ]
  43786. ))
  43787. characterMakers.push(() => makeCharacter(
  43788. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43789. {
  43790. front: {
  43791. height: math.unit(5 + 8/12, "feet"),
  43792. name: "Front",
  43793. image: {
  43794. source: "./media/characters/elizabeth/front.svg",
  43795. extra: 1395/1298,
  43796. bottom: 54/1449
  43797. }
  43798. },
  43799. mouth: {
  43800. height: math.unit(1.97, "feet"),
  43801. name: "Mouth",
  43802. image: {
  43803. source: "./media/characters/elizabeth/mouth.svg"
  43804. }
  43805. },
  43806. foot: {
  43807. height: math.unit(1.17, "feet"),
  43808. name: "Foot",
  43809. image: {
  43810. source: "./media/characters/elizabeth/foot.svg"
  43811. }
  43812. },
  43813. },
  43814. [
  43815. {
  43816. name: "Normal",
  43817. height: math.unit(5 + 8/12, "feet"),
  43818. default: true
  43819. },
  43820. {
  43821. name: "Minimacro",
  43822. height: math.unit(18, "feet")
  43823. },
  43824. {
  43825. name: "Macro",
  43826. height: math.unit(180, "feet")
  43827. },
  43828. ]
  43829. ))
  43830. characterMakers.push(() => makeCharacter(
  43831. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43832. {
  43833. front: {
  43834. height: math.unit(5 + 2/12, "feet"),
  43835. name: "Front",
  43836. image: {
  43837. source: "./media/characters/october-gossamer/front.svg",
  43838. extra: 505/454,
  43839. bottom: 7/512
  43840. }
  43841. },
  43842. back: {
  43843. height: math.unit(5 + 2/12, "feet"),
  43844. name: "Back",
  43845. image: {
  43846. source: "./media/characters/october-gossamer/back.svg",
  43847. extra: 501/454,
  43848. bottom: 11/512
  43849. }
  43850. },
  43851. },
  43852. [
  43853. {
  43854. name: "Normal",
  43855. height: math.unit(5 + 2/12, "feet"),
  43856. default: true
  43857. },
  43858. ]
  43859. ))
  43860. characterMakers.push(() => makeCharacter(
  43861. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43862. {
  43863. front: {
  43864. height: math.unit(5, "feet"),
  43865. name: "Front",
  43866. image: {
  43867. source: "./media/characters/epiglottis/front.svg",
  43868. extra: 923/849,
  43869. bottom: 17/940
  43870. }
  43871. },
  43872. },
  43873. [
  43874. {
  43875. name: "Original Size",
  43876. height: math.unit(10, "inches")
  43877. },
  43878. {
  43879. name: "Human Size",
  43880. height: math.unit(5, "feet"),
  43881. default: true
  43882. },
  43883. {
  43884. name: "Big",
  43885. height: math.unit(25, "feet")
  43886. },
  43887. {
  43888. name: "Bigger",
  43889. height: math.unit(50, "feet")
  43890. },
  43891. {
  43892. name: "oh lawd",
  43893. height: math.unit(75, "feet")
  43894. },
  43895. ]
  43896. ))
  43897. characterMakers.push(() => makeCharacter(
  43898. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43899. {
  43900. front: {
  43901. height: math.unit(2 + 4/12, "feet"),
  43902. weight: math.unit(60, "lb"),
  43903. name: "Front",
  43904. image: {
  43905. source: "./media/characters/lerm/front.svg",
  43906. extra: 796/790,
  43907. bottom: 79/875
  43908. }
  43909. },
  43910. },
  43911. [
  43912. {
  43913. name: "Normal",
  43914. height: math.unit(2 + 4/12, "feet"),
  43915. default: true
  43916. },
  43917. ]
  43918. ))
  43919. characterMakers.push(() => makeCharacter(
  43920. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43921. {
  43922. front: {
  43923. height: math.unit(5.5, "feet"),
  43924. weight: math.unit(130, "lb"),
  43925. name: "Front",
  43926. image: {
  43927. source: "./media/characters/xena-nebadon/front.svg",
  43928. extra: 1828/1730,
  43929. bottom: 79/1907
  43930. }
  43931. },
  43932. },
  43933. [
  43934. {
  43935. name: "Tiny Puppy",
  43936. height: math.unit(3, "inches")
  43937. },
  43938. {
  43939. name: "Normal",
  43940. height: math.unit(5.5, "feet"),
  43941. default: true
  43942. },
  43943. {
  43944. name: "Lotta Lady",
  43945. height: math.unit(12, "feet")
  43946. },
  43947. {
  43948. name: "Pretty Big",
  43949. height: math.unit(100, "feet")
  43950. },
  43951. {
  43952. name: "Big",
  43953. height: math.unit(500, "feet")
  43954. },
  43955. {
  43956. name: "Skyscraper Toys",
  43957. height: math.unit(2500, "feet")
  43958. },
  43959. {
  43960. name: "Plane Catcher",
  43961. height: math.unit(8, "miles")
  43962. },
  43963. {
  43964. name: "Planet Toys",
  43965. height: math.unit(15, "earths")
  43966. },
  43967. {
  43968. name: "Stardust",
  43969. height: math.unit(0.25, "galaxies")
  43970. },
  43971. {
  43972. name: "Snacks",
  43973. height: math.unit(70, "universes")
  43974. },
  43975. ]
  43976. ))
  43977. characterMakers.push(() => makeCharacter(
  43978. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43979. {
  43980. front: {
  43981. height: math.unit(1.6, "meters"),
  43982. weight: math.unit(60, "kg"),
  43983. name: "Front",
  43984. image: {
  43985. source: "./media/characters/bounty/front.svg",
  43986. extra: 1426/1308,
  43987. bottom: 15/1441
  43988. }
  43989. },
  43990. back: {
  43991. height: math.unit(1.6, "meters"),
  43992. weight: math.unit(60, "kg"),
  43993. name: "Back",
  43994. image: {
  43995. source: "./media/characters/bounty/back.svg",
  43996. extra: 1417/1307,
  43997. bottom: 8/1425
  43998. }
  43999. },
  44000. },
  44001. [
  44002. {
  44003. name: "Normal",
  44004. height: math.unit(1.6, "meters"),
  44005. default: true
  44006. },
  44007. {
  44008. name: "Macro",
  44009. height: math.unit(300, "meters")
  44010. },
  44011. ]
  44012. ))
  44013. characterMakers.push(() => makeCharacter(
  44014. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  44015. {
  44016. front: {
  44017. height: math.unit(2 + 8/12, "feet"),
  44018. weight: math.unit(15, "lb"),
  44019. name: "Front",
  44020. image: {
  44021. source: "./media/characters/mochi/front.svg",
  44022. extra: 1022/852,
  44023. bottom: 435/1457
  44024. }
  44025. },
  44026. back: {
  44027. height: math.unit(2 + 8/12, "feet"),
  44028. weight: math.unit(15, "lb"),
  44029. name: "Back",
  44030. image: {
  44031. source: "./media/characters/mochi/back.svg",
  44032. extra: 1335/1119,
  44033. bottom: 39/1374
  44034. }
  44035. },
  44036. bird: {
  44037. height: math.unit(2 + 8/12, "feet"),
  44038. weight: math.unit(15, "lb"),
  44039. name: "Bird",
  44040. image: {
  44041. source: "./media/characters/mochi/bird.svg",
  44042. extra: 1251/1113,
  44043. bottom: 178/1429
  44044. }
  44045. },
  44046. kaiju: {
  44047. height: math.unit(154, "feet"),
  44048. weight: math.unit(1e7, "lb"),
  44049. name: "Kaiju",
  44050. image: {
  44051. source: "./media/characters/mochi/kaiju.svg",
  44052. extra: 460/324,
  44053. bottom: 40/500
  44054. }
  44055. },
  44056. head: {
  44057. height: math.unit(1.21, "feet"),
  44058. name: "Head",
  44059. image: {
  44060. source: "./media/characters/mochi/head.svg"
  44061. }
  44062. },
  44063. alternateTail: {
  44064. height: math.unit(2 + 8/12, "feet"),
  44065. weight: math.unit(45, "lb"),
  44066. name: "Alternate Tail",
  44067. image: {
  44068. source: "./media/characters/mochi/alternate-tail.svg",
  44069. extra: 139/76,
  44070. bottom: 45/184
  44071. }
  44072. },
  44073. },
  44074. [
  44075. {
  44076. name: "Micro",
  44077. height: math.unit(2, "inches")
  44078. },
  44079. {
  44080. name: "Normal",
  44081. height: math.unit(2 + 8/12, "feet"),
  44082. default: true
  44083. },
  44084. {
  44085. name: "Macro",
  44086. height: math.unit(106, "feet")
  44087. },
  44088. ]
  44089. ))
  44090. characterMakers.push(() => makeCharacter(
  44091. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  44092. {
  44093. front: {
  44094. height: math.unit(5.67, "feet"),
  44095. weight: math.unit(135, "lb"),
  44096. name: "Front",
  44097. image: {
  44098. source: "./media/characters/sarel/front.svg",
  44099. extra: 865/788,
  44100. bottom: 97/962
  44101. }
  44102. },
  44103. back: {
  44104. height: math.unit(5.67, "feet"),
  44105. weight: math.unit(135, "lb"),
  44106. name: "Back",
  44107. image: {
  44108. source: "./media/characters/sarel/back.svg",
  44109. extra: 857/777,
  44110. bottom: 32/889
  44111. }
  44112. },
  44113. chozoan: {
  44114. height: math.unit(5.67, "feet"),
  44115. weight: math.unit(135, "lb"),
  44116. name: "Chozoan",
  44117. image: {
  44118. source: "./media/characters/sarel/chozoan.svg",
  44119. extra: 865/788,
  44120. bottom: 97/962
  44121. }
  44122. },
  44123. current: {
  44124. height: math.unit(5.67, "feet"),
  44125. weight: math.unit(135, "lb"),
  44126. name: "Current",
  44127. image: {
  44128. source: "./media/characters/sarel/current.svg",
  44129. extra: 865/788,
  44130. bottom: 97/962
  44131. }
  44132. },
  44133. head: {
  44134. height: math.unit(1.77, "feet"),
  44135. name: "Head",
  44136. image: {
  44137. source: "./media/characters/sarel/head.svg"
  44138. }
  44139. },
  44140. claws: {
  44141. height: math.unit(1.8, "feet"),
  44142. name: "Claws",
  44143. image: {
  44144. source: "./media/characters/sarel/claws.svg"
  44145. }
  44146. },
  44147. clawsAlt: {
  44148. height: math.unit(1.8, "feet"),
  44149. name: "Claws-alt",
  44150. image: {
  44151. source: "./media/characters/sarel/claws-alt.svg"
  44152. }
  44153. },
  44154. },
  44155. [
  44156. {
  44157. name: "Normal",
  44158. height: math.unit(5.67, "feet"),
  44159. default: true
  44160. },
  44161. ]
  44162. ))
  44163. characterMakers.push(() => makeCharacter(
  44164. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  44165. {
  44166. front: {
  44167. height: math.unit(5500, "feet"),
  44168. name: "Front",
  44169. image: {
  44170. source: "./media/characters/alyonia/front.svg",
  44171. extra: 1200/1135,
  44172. bottom: 29/1229
  44173. }
  44174. },
  44175. back: {
  44176. height: math.unit(5500, "feet"),
  44177. name: "Back",
  44178. image: {
  44179. source: "./media/characters/alyonia/back.svg",
  44180. extra: 1205/1138,
  44181. bottom: 10/1215
  44182. }
  44183. },
  44184. },
  44185. [
  44186. {
  44187. name: "Small",
  44188. height: math.unit(10, "feet")
  44189. },
  44190. {
  44191. name: "Macro",
  44192. height: math.unit(500, "feet")
  44193. },
  44194. {
  44195. name: "Mega Macro",
  44196. height: math.unit(5500, "feet"),
  44197. default: true
  44198. },
  44199. {
  44200. name: "Mega Macro+",
  44201. height: math.unit(500000, "feet")
  44202. },
  44203. {
  44204. name: "Giga Macro",
  44205. height: math.unit(3000, "miles")
  44206. },
  44207. {
  44208. name: "Tera Macro",
  44209. height: math.unit(2.8e6, "miles")
  44210. },
  44211. {
  44212. name: "Galactic",
  44213. height: math.unit(120000, "lightyears")
  44214. },
  44215. ]
  44216. ))
  44217. characterMakers.push(() => makeCharacter(
  44218. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  44219. {
  44220. werewolf: {
  44221. height: math.unit(8, "feet"),
  44222. weight: math.unit(425, "lb"),
  44223. name: "Werewolf",
  44224. image: {
  44225. source: "./media/characters/autumn/werewolf.svg",
  44226. extra: 2154/2031,
  44227. bottom: 160/2314
  44228. }
  44229. },
  44230. human: {
  44231. height: math.unit(5 + 8/12, "feet"),
  44232. weight: math.unit(150, "lb"),
  44233. name: "Human",
  44234. image: {
  44235. source: "./media/characters/autumn/human.svg",
  44236. extra: 1200/1149,
  44237. bottom: 30/1230
  44238. }
  44239. },
  44240. },
  44241. [
  44242. {
  44243. name: "Normal",
  44244. height: math.unit(8, "feet"),
  44245. default: true
  44246. },
  44247. ]
  44248. ))
  44249. characterMakers.push(() => makeCharacter(
  44250. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  44251. {
  44252. front: {
  44253. height: math.unit(8 + 5/12, "feet"),
  44254. weight: math.unit(825, "lb"),
  44255. name: "Front",
  44256. image: {
  44257. source: "./media/characters/cobalt-charizard/front.svg",
  44258. extra: 1268/1155,
  44259. bottom: 122/1390
  44260. }
  44261. },
  44262. side: {
  44263. height: math.unit(8 + 5/12, "feet"),
  44264. weight: math.unit(825, "lb"),
  44265. name: "Side",
  44266. image: {
  44267. source: "./media/characters/cobalt-charizard/side.svg",
  44268. extra: 1348/1257,
  44269. bottom: 58/1406
  44270. }
  44271. },
  44272. gMax: {
  44273. height: math.unit(134 + 11/12, "feet"),
  44274. name: "G-Max",
  44275. image: {
  44276. source: "./media/characters/cobalt-charizard/g-max.svg",
  44277. extra: 1835/1541,
  44278. bottom: 151/1986
  44279. }
  44280. },
  44281. },
  44282. [
  44283. {
  44284. name: "Normal",
  44285. height: math.unit(8 + 5/12, "feet"),
  44286. default: true
  44287. },
  44288. ]
  44289. ))
  44290. characterMakers.push(() => makeCharacter(
  44291. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  44292. {
  44293. front: {
  44294. height: math.unit(6 + 3/12, "feet"),
  44295. weight: math.unit(210, "lb"),
  44296. name: "Front",
  44297. image: {
  44298. source: "./media/characters/stella/front.svg",
  44299. extra: 3549/3335,
  44300. bottom: 51/3600
  44301. }
  44302. },
  44303. },
  44304. [
  44305. {
  44306. name: "Normal",
  44307. height: math.unit(6 + 3/12, "feet"),
  44308. default: true
  44309. },
  44310. ]
  44311. ))
  44312. characterMakers.push(() => makeCharacter(
  44313. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  44314. {
  44315. front: {
  44316. height: math.unit(5, "feet"),
  44317. weight: math.unit(90, "lb"),
  44318. name: "Front",
  44319. image: {
  44320. source: "./media/characters/riley-bishop/front.svg",
  44321. extra: 1450/1428,
  44322. bottom: 152/1602
  44323. }
  44324. },
  44325. },
  44326. [
  44327. {
  44328. name: "Normal",
  44329. height: math.unit(5, "feet"),
  44330. default: true
  44331. },
  44332. ]
  44333. ))
  44334. characterMakers.push(() => makeCharacter(
  44335. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  44336. {
  44337. side: {
  44338. height: math.unit(8 + 2/12, "feet"),
  44339. weight: math.unit(500, "kg"),
  44340. name: "Side",
  44341. image: {
  44342. source: "./media/characters/theo-arcanine/side.svg",
  44343. extra: 1342/1074,
  44344. bottom: 111/1453
  44345. }
  44346. },
  44347. },
  44348. [
  44349. {
  44350. name: "Normal",
  44351. height: math.unit(8 + 2/12, "feet"),
  44352. default: true
  44353. },
  44354. ]
  44355. ))
  44356. characterMakers.push(() => makeCharacter(
  44357. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  44358. {
  44359. front: {
  44360. height: math.unit(4, "feet"),
  44361. name: "Front",
  44362. image: {
  44363. source: "./media/characters/kali/front.svg",
  44364. extra: 1921/1357,
  44365. bottom: 70/1991
  44366. }
  44367. },
  44368. },
  44369. [
  44370. {
  44371. name: "Normal",
  44372. height: math.unit(4, "feet"),
  44373. default: true
  44374. },
  44375. {
  44376. name: "Macro",
  44377. height: math.unit(32, "meters")
  44378. },
  44379. {
  44380. name: "Macro+",
  44381. height: math.unit(150, "meters")
  44382. },
  44383. {
  44384. name: "Megamacro",
  44385. height: math.unit(7500, "meters")
  44386. },
  44387. {
  44388. name: "Megamacro+",
  44389. height: math.unit(80, "kilometers")
  44390. },
  44391. ]
  44392. ))
  44393. characterMakers.push(() => makeCharacter(
  44394. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  44395. {
  44396. side: {
  44397. height: math.unit(5 + 11/12, "feet"),
  44398. weight: math.unit(236, "lb"),
  44399. name: "Side",
  44400. image: {
  44401. source: "./media/characters/gapp/side.svg",
  44402. extra: 775/340,
  44403. bottom: 58/833
  44404. }
  44405. },
  44406. mouth: {
  44407. height: math.unit(2.98, "feet"),
  44408. name: "Mouth",
  44409. image: {
  44410. source: "./media/characters/gapp/mouth.svg"
  44411. }
  44412. },
  44413. },
  44414. [
  44415. {
  44416. name: "Normal",
  44417. height: math.unit(5 + 1/12, "feet"),
  44418. default: true
  44419. },
  44420. ]
  44421. ))
  44422. characterMakers.push(() => makeCharacter(
  44423. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  44424. {
  44425. front: {
  44426. height: math.unit(6, "feet"),
  44427. name: "Front",
  44428. image: {
  44429. source: "./media/characters/persephone/front.svg",
  44430. extra: 1895/1717,
  44431. bottom: 96/1991
  44432. }
  44433. },
  44434. back: {
  44435. height: math.unit(6, "feet"),
  44436. name: "Back",
  44437. image: {
  44438. source: "./media/characters/persephone/back.svg",
  44439. extra: 1868/1679,
  44440. bottom: 26/1894
  44441. }
  44442. },
  44443. casual: {
  44444. height: math.unit(6, "feet"),
  44445. name: "Casual",
  44446. image: {
  44447. source: "./media/characters/persephone/casual.svg",
  44448. extra: 1713/1541,
  44449. bottom: 76/1789
  44450. }
  44451. },
  44452. },
  44453. [
  44454. {
  44455. name: "Human Size",
  44456. height: math.unit(6, "feet")
  44457. },
  44458. {
  44459. name: "Big Steppy",
  44460. height: math.unit(600, "meters"),
  44461. default: true
  44462. },
  44463. {
  44464. name: "Galaxy Brain",
  44465. height: math.unit(1, "zettameter")
  44466. },
  44467. ]
  44468. ))
  44469. characterMakers.push(() => makeCharacter(
  44470. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  44471. {
  44472. front: {
  44473. height: math.unit(1.85, "meters"),
  44474. name: "Front",
  44475. image: {
  44476. source: "./media/characters/riley-foxthing/front.svg",
  44477. extra: 1495/1354,
  44478. bottom: 122/1617
  44479. }
  44480. },
  44481. frontAlt: {
  44482. height: math.unit(1.85, "meters"),
  44483. name: "Front (Alt)",
  44484. image: {
  44485. source: "./media/characters/riley-foxthing/front-alt.svg",
  44486. extra: 1572/1389,
  44487. bottom: 116/1688
  44488. }
  44489. },
  44490. },
  44491. [
  44492. {
  44493. name: "Normal Sized",
  44494. height: math.unit(1.85, "meters"),
  44495. default: true
  44496. },
  44497. {
  44498. name: "Quite Sizable",
  44499. height: math.unit(5, "meters")
  44500. },
  44501. {
  44502. name: "Rather Large",
  44503. height: math.unit(20, "meters")
  44504. },
  44505. {
  44506. name: "Macro",
  44507. height: math.unit(450, "meters")
  44508. },
  44509. {
  44510. name: "Giga",
  44511. height: math.unit(5, "km")
  44512. },
  44513. ]
  44514. ))
  44515. characterMakers.push(() => makeCharacter(
  44516. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  44517. {
  44518. front: {
  44519. height: math.unit(6, "feet"),
  44520. weight: math.unit(200, "lb"),
  44521. name: "Front",
  44522. image: {
  44523. source: "./media/characters/blizzard/front.svg",
  44524. extra: 1136/990,
  44525. bottom: 136/1272
  44526. }
  44527. },
  44528. back: {
  44529. height: math.unit(6, "feet"),
  44530. weight: math.unit(200, "lb"),
  44531. name: "Back",
  44532. image: {
  44533. source: "./media/characters/blizzard/back.svg",
  44534. extra: 1175/1034,
  44535. bottom: 97/1272
  44536. }
  44537. },
  44538. sitting: {
  44539. height: math.unit(3.725, "feet"),
  44540. weight: math.unit(200, "lb"),
  44541. name: "Sitting",
  44542. image: {
  44543. source: "./media/characters/blizzard/sitting.svg",
  44544. extra: 581/485,
  44545. bottom: 90/671
  44546. }
  44547. },
  44548. frontWizard: {
  44549. height: math.unit(7.9, "feet"),
  44550. weight: math.unit(200, "lb"),
  44551. name: "Front (Wizard)",
  44552. image: {
  44553. source: "./media/characters/blizzard/front-wizard.svg"
  44554. }
  44555. },
  44556. backWizard: {
  44557. height: math.unit(7.9, "feet"),
  44558. weight: math.unit(200, "lb"),
  44559. name: "Back (Wizard)",
  44560. image: {
  44561. source: "./media/characters/blizzard/back-wizard.svg"
  44562. }
  44563. },
  44564. frontNsfw: {
  44565. height: math.unit(6, "feet"),
  44566. weight: math.unit(200, "lb"),
  44567. name: "Front (NSFW)",
  44568. image: {
  44569. source: "./media/characters/blizzard/front-nsfw.svg",
  44570. extra: 1136/990,
  44571. bottom: 136/1272
  44572. }
  44573. },
  44574. backNsfw: {
  44575. height: math.unit(6, "feet"),
  44576. weight: math.unit(200, "lb"),
  44577. name: "Back (NSFW)",
  44578. image: {
  44579. source: "./media/characters/blizzard/back-nsfw.svg",
  44580. extra: 1175/1034,
  44581. bottom: 97/1272
  44582. }
  44583. },
  44584. sittingNsfw: {
  44585. height: math.unit(3.725, "feet"),
  44586. weight: math.unit(200, "lb"),
  44587. name: "Sitting (NSFW)",
  44588. image: {
  44589. source: "./media/characters/blizzard/sitting-nsfw.svg",
  44590. extra: 581/485,
  44591. bottom: 90/671
  44592. }
  44593. },
  44594. wizardFrontNsfw: {
  44595. height: math.unit(7.9, "feet"),
  44596. weight: math.unit(200, "lb"),
  44597. name: "Wizard (Front, NSFW)",
  44598. image: {
  44599. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44600. }
  44601. },
  44602. },
  44603. [
  44604. {
  44605. name: "Normal",
  44606. height: math.unit(6, "feet"),
  44607. default: true
  44608. },
  44609. ]
  44610. ))
  44611. characterMakers.push(() => makeCharacter(
  44612. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44613. {
  44614. front: {
  44615. height: math.unit(5 + 2/12, "feet"),
  44616. name: "Front",
  44617. image: {
  44618. source: "./media/characters/lumi/front.svg",
  44619. extra: 1328/1268,
  44620. bottom: 103/1431
  44621. }
  44622. },
  44623. back: {
  44624. height: math.unit(5 + 2/12, "feet"),
  44625. name: "Back",
  44626. image: {
  44627. source: "./media/characters/lumi/back.svg",
  44628. extra: 1381/1327,
  44629. bottom: 43/1424
  44630. }
  44631. },
  44632. },
  44633. [
  44634. {
  44635. name: "Normal",
  44636. height: math.unit(5 + 2/12, "feet"),
  44637. default: true
  44638. },
  44639. ]
  44640. ))
  44641. characterMakers.push(() => makeCharacter(
  44642. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44643. {
  44644. front: {
  44645. height: math.unit(5 + 9/12, "feet"),
  44646. name: "Front",
  44647. image: {
  44648. source: "./media/characters/aliya-cotton/front.svg",
  44649. extra: 577/564,
  44650. bottom: 29/606
  44651. }
  44652. },
  44653. },
  44654. [
  44655. {
  44656. name: "Normal",
  44657. height: math.unit(5 + 9/12, "feet"),
  44658. default: true
  44659. },
  44660. ]
  44661. ))
  44662. characterMakers.push(() => makeCharacter(
  44663. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44664. {
  44665. front: {
  44666. height: math.unit(2.7, "meters"),
  44667. weight: math.unit(25000, "lb"),
  44668. name: "Front",
  44669. image: {
  44670. source: "./media/characters/noah-luxray/front.svg",
  44671. extra: 1644/825,
  44672. bottom: 339/1983
  44673. }
  44674. },
  44675. side: {
  44676. height: math.unit(2.97, "meters"),
  44677. weight: math.unit(25000, "lb"),
  44678. name: "Side",
  44679. image: {
  44680. source: "./media/characters/noah-luxray/side.svg",
  44681. extra: 1319/650,
  44682. bottom: 163/1482
  44683. }
  44684. },
  44685. dick: {
  44686. height: math.unit(7.4, "feet"),
  44687. weight: math.unit(2500, "lb"),
  44688. name: "Dick",
  44689. image: {
  44690. source: "./media/characters/noah-luxray/dick.svg"
  44691. }
  44692. },
  44693. dickAlt: {
  44694. height: math.unit(10.83, "feet"),
  44695. weight: math.unit(2500, "lb"),
  44696. name: "Dick-alt",
  44697. image: {
  44698. source: "./media/characters/noah-luxray/dick-alt.svg"
  44699. }
  44700. },
  44701. },
  44702. [
  44703. {
  44704. name: "BIG",
  44705. height: math.unit(2.7, "meters"),
  44706. default: true
  44707. },
  44708. ]
  44709. ))
  44710. characterMakers.push(() => makeCharacter(
  44711. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44712. {
  44713. standing: {
  44714. height: math.unit(183, "cm"),
  44715. weight: math.unit(68, "kg"),
  44716. name: "Standing",
  44717. image: {
  44718. source: "./media/characters/arion/standing.svg",
  44719. extra: 1869/1807,
  44720. bottom: 93/1962
  44721. }
  44722. },
  44723. reclining: {
  44724. height: math.unit(70.5, "cm"),
  44725. weight: math.unit(68, "lb"),
  44726. name: "Reclining",
  44727. image: {
  44728. source: "./media/characters/arion/reclining.svg",
  44729. extra: 937/870,
  44730. bottom: 63/1000
  44731. }
  44732. },
  44733. },
  44734. [
  44735. {
  44736. name: "Colossus Size, Low",
  44737. height: math.unit(33, "meters"),
  44738. default: true
  44739. },
  44740. {
  44741. name: "Colossus Size, Mid",
  44742. height: math.unit(52, "meters")
  44743. },
  44744. {
  44745. name: "Colossus Size, High",
  44746. height: math.unit(60, "meters")
  44747. },
  44748. {
  44749. name: "Titan Size, Low",
  44750. height: math.unit(91, "meters"),
  44751. },
  44752. {
  44753. name: "Titan Size, Mid",
  44754. height: math.unit(122, "meters")
  44755. },
  44756. {
  44757. name: "Titan Size, High",
  44758. height: math.unit(162, "meters")
  44759. },
  44760. ]
  44761. ))
  44762. characterMakers.push(() => makeCharacter(
  44763. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44764. {
  44765. front: {
  44766. height: math.unit(53, "meters"),
  44767. name: "Front",
  44768. image: {
  44769. source: "./media/characters/stellar-marbey/front.svg",
  44770. extra: 1913/1805,
  44771. bottom: 92/2005
  44772. }
  44773. },
  44774. back: {
  44775. height: math.unit(53, "meters"),
  44776. name: "Back",
  44777. image: {
  44778. source: "./media/characters/stellar-marbey/back.svg",
  44779. extra: 1960/1851,
  44780. bottom: 28/1988
  44781. }
  44782. },
  44783. mouth: {
  44784. height: math.unit(3.5, "meters"),
  44785. name: "Mouth",
  44786. image: {
  44787. source: "./media/characters/stellar-marbey/mouth.svg"
  44788. }
  44789. },
  44790. },
  44791. [
  44792. {
  44793. name: "Macro",
  44794. height: math.unit(53, "meters"),
  44795. default: true
  44796. },
  44797. ]
  44798. ))
  44799. characterMakers.push(() => makeCharacter(
  44800. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44801. {
  44802. front: {
  44803. height: math.unit(8 + 1/12, "feet"),
  44804. weight: math.unit(233, "lb"),
  44805. name: "Front",
  44806. image: {
  44807. source: "./media/characters/matsu/front.svg",
  44808. extra: 832/772,
  44809. bottom: 40/872
  44810. }
  44811. },
  44812. back: {
  44813. height: math.unit(8 + 1/12, "feet"),
  44814. weight: math.unit(233, "lb"),
  44815. name: "Back",
  44816. image: {
  44817. source: "./media/characters/matsu/back.svg",
  44818. extra: 839/780,
  44819. bottom: 47/886
  44820. }
  44821. },
  44822. },
  44823. [
  44824. {
  44825. name: "Normal",
  44826. height: math.unit(8 + 1/12, "feet"),
  44827. default: true
  44828. },
  44829. ]
  44830. ))
  44831. characterMakers.push(() => makeCharacter(
  44832. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44833. {
  44834. front: {
  44835. height: math.unit(4, "feet"),
  44836. weight: math.unit(148, "lb"),
  44837. name: "Front",
  44838. image: {
  44839. source: "./media/characters/thiz/front.svg",
  44840. extra: 1913/1748,
  44841. bottom: 62/1975
  44842. }
  44843. },
  44844. },
  44845. [
  44846. {
  44847. name: "Normal",
  44848. height: math.unit(4, "feet"),
  44849. default: true
  44850. },
  44851. ]
  44852. ))
  44853. characterMakers.push(() => makeCharacter(
  44854. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44855. {
  44856. front: {
  44857. height: math.unit(7 + 6/12, "feet"),
  44858. weight: math.unit(267, "lb"),
  44859. name: "Front",
  44860. image: {
  44861. source: "./media/characters/marcel/front.svg",
  44862. extra: 1221/1096,
  44863. bottom: 76/1297
  44864. }
  44865. },
  44866. },
  44867. [
  44868. {
  44869. name: "Normal",
  44870. height: math.unit(7 + 6/12, "feet"),
  44871. default: true
  44872. },
  44873. ]
  44874. ))
  44875. characterMakers.push(() => makeCharacter(
  44876. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44877. {
  44878. side: {
  44879. height: math.unit(42, "meters"),
  44880. name: "Side",
  44881. image: {
  44882. source: "./media/characters/flake/side.svg",
  44883. extra: 1525/1306,
  44884. bottom: 209/1734
  44885. }
  44886. },
  44887. },
  44888. [
  44889. {
  44890. name: "Normal",
  44891. height: math.unit(42, "meters"),
  44892. default: true
  44893. },
  44894. ]
  44895. ))
  44896. characterMakers.push(() => makeCharacter(
  44897. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44898. {
  44899. dressed: {
  44900. height: math.unit(6 + 4/12, "feet"),
  44901. weight: math.unit(520, "lb"),
  44902. name: "Dressed",
  44903. image: {
  44904. source: "./media/characters/someonne/dressed.svg",
  44905. extra: 1020/1010,
  44906. bottom: 178/1198
  44907. }
  44908. },
  44909. undressed: {
  44910. height: math.unit(6 + 4/12, "feet"),
  44911. weight: math.unit(520, "lb"),
  44912. name: "Undressed",
  44913. image: {
  44914. source: "./media/characters/someonne/undressed.svg",
  44915. extra: 1019/1014,
  44916. bottom: 169/1188
  44917. }
  44918. },
  44919. },
  44920. [
  44921. {
  44922. name: "Normal",
  44923. height: math.unit(6 + 4/12, "feet"),
  44924. default: true
  44925. },
  44926. ]
  44927. ))
  44928. characterMakers.push(() => makeCharacter(
  44929. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44930. {
  44931. front: {
  44932. height: math.unit(3, "feet"),
  44933. weight: math.unit(30, "lb"),
  44934. name: "Front",
  44935. image: {
  44936. source: "./media/characters/till/front.svg",
  44937. extra: 892/823,
  44938. bottom: 55/947
  44939. }
  44940. },
  44941. },
  44942. [
  44943. {
  44944. name: "Normal",
  44945. height: math.unit(3, "feet"),
  44946. default: true
  44947. },
  44948. ]
  44949. ))
  44950. characterMakers.push(() => makeCharacter(
  44951. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44952. {
  44953. front: {
  44954. height: math.unit(9 + 8/12, "feet"),
  44955. weight: math.unit(800, "lb"),
  44956. name: "Front",
  44957. image: {
  44958. source: "./media/characters/sydney-heki/front.svg",
  44959. extra: 1360/1300,
  44960. bottom: 22/1382
  44961. }
  44962. },
  44963. back: {
  44964. height: math.unit(9 + 8/12, "feet"),
  44965. weight: math.unit(800, "lb"),
  44966. name: "Back",
  44967. image: {
  44968. source: "./media/characters/sydney-heki/back.svg",
  44969. extra: 1356/1293,
  44970. bottom: 12/1368
  44971. }
  44972. },
  44973. frontDressed: {
  44974. height: math.unit(9 + 8/12, "feet"),
  44975. weight: math.unit(800, "lb"),
  44976. name: "Front-dressed",
  44977. image: {
  44978. source: "./media/characters/sydney-heki/front-dressed.svg",
  44979. extra: 1360/1300,
  44980. bottom: 22/1382
  44981. }
  44982. },
  44983. },
  44984. [
  44985. {
  44986. name: "Normal",
  44987. height: math.unit(9 + 8/12, "feet"),
  44988. default: true
  44989. },
  44990. {
  44991. name: "Macro",
  44992. height: math.unit(500, "feet")
  44993. },
  44994. {
  44995. name: "Megamacro",
  44996. height: math.unit(3.6, "miles")
  44997. },
  44998. ]
  44999. ))
  45000. characterMakers.push(() => makeCharacter(
  45001. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  45002. {
  45003. front: {
  45004. height: math.unit(200, "cm"),
  45005. weight: math.unit(250, "lb"),
  45006. name: "Front",
  45007. image: {
  45008. source: "./media/characters/fowler-karlsson/front.svg",
  45009. extra: 897/845,
  45010. bottom: 123/1020
  45011. }
  45012. },
  45013. back: {
  45014. height: math.unit(200, "cm"),
  45015. weight: math.unit(250, "lb"),
  45016. name: "Back",
  45017. image: {
  45018. source: "./media/characters/fowler-karlsson/back.svg",
  45019. extra: 999/944,
  45020. bottom: 26/1025
  45021. }
  45022. },
  45023. dick: {
  45024. height: math.unit(1.92, "feet"),
  45025. weight: math.unit(150, "lb"),
  45026. name: "Dick",
  45027. image: {
  45028. source: "./media/characters/fowler-karlsson/dick.svg"
  45029. }
  45030. },
  45031. },
  45032. [
  45033. {
  45034. name: "Normal",
  45035. height: math.unit(200, "cm"),
  45036. default: true
  45037. },
  45038. {
  45039. name: "Smaller Macro",
  45040. height: math.unit(90, "m")
  45041. },
  45042. {
  45043. name: "Macro",
  45044. height: math.unit(150, "m")
  45045. },
  45046. {
  45047. name: "Bigger Macro",
  45048. height: math.unit(300, "m")
  45049. },
  45050. ]
  45051. ))
  45052. characterMakers.push(() => makeCharacter(
  45053. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  45054. {
  45055. side: {
  45056. height: math.unit(8 + 2/12, "feet"),
  45057. weight: math.unit(1, "tonne"),
  45058. name: "Side",
  45059. image: {
  45060. source: "./media/characters/rylide/side.svg",
  45061. extra: 1318/1034,
  45062. bottom: 106/1424
  45063. }
  45064. },
  45065. sitting: {
  45066. height: math.unit(303, "cm"),
  45067. weight: math.unit(1, "tonne"),
  45068. name: "Sitting",
  45069. image: {
  45070. source: "./media/characters/rylide/sitting.svg",
  45071. extra: 1303/1103,
  45072. bottom: 36/1339
  45073. }
  45074. },
  45075. },
  45076. [
  45077. {
  45078. name: "Normal",
  45079. height: math.unit(8 + 2/12, "feet"),
  45080. default: true
  45081. },
  45082. ]
  45083. ))
  45084. characterMakers.push(() => makeCharacter(
  45085. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  45086. {
  45087. front: {
  45088. height: math.unit(5 + 10/12, "feet"),
  45089. weight: math.unit(160, "lb"),
  45090. name: "Front",
  45091. image: {
  45092. source: "./media/characters/pudask/front.svg",
  45093. extra: 1616/1590,
  45094. bottom: 161/1777
  45095. }
  45096. },
  45097. },
  45098. [
  45099. {
  45100. name: "Ferret Height",
  45101. height: math.unit(2 + 5/12, "feet")
  45102. },
  45103. {
  45104. name: "Canon Height",
  45105. height: math.unit(5 + 10/12, "feet"),
  45106. default: true
  45107. },
  45108. ]
  45109. ))
  45110. characterMakers.push(() => makeCharacter(
  45111. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  45112. {
  45113. front: {
  45114. height: math.unit(3 + 6/12, "feet"),
  45115. weight: math.unit(60, "lb"),
  45116. name: "Front",
  45117. image: {
  45118. source: "./media/characters/ramita/front.svg",
  45119. extra: 1402/1232,
  45120. bottom: 62/1464
  45121. }
  45122. },
  45123. dressed: {
  45124. height: math.unit(3 + 6/12, "feet"),
  45125. weight: math.unit(60, "lb"),
  45126. name: "Dressed",
  45127. image: {
  45128. source: "./media/characters/ramita/dressed.svg",
  45129. extra: 1534/1249,
  45130. bottom: 50/1584
  45131. }
  45132. },
  45133. },
  45134. [
  45135. {
  45136. name: "Normal",
  45137. height: math.unit(3 + 6/12, "feet"),
  45138. default: true
  45139. },
  45140. ]
  45141. ))
  45142. characterMakers.push(() => makeCharacter(
  45143. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  45144. {
  45145. front: {
  45146. height: math.unit(8, "feet"),
  45147. name: "Front",
  45148. image: {
  45149. source: "./media/characters/ark/front.svg",
  45150. extra: 772/693,
  45151. bottom: 45/817
  45152. }
  45153. },
  45154. },
  45155. [
  45156. {
  45157. name: "Normal",
  45158. height: math.unit(8, "feet"),
  45159. default: true
  45160. },
  45161. ]
  45162. ))
  45163. characterMakers.push(() => makeCharacter(
  45164. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  45165. {
  45166. front: {
  45167. height: math.unit(6, "feet"),
  45168. weight: math.unit(250, "lb"),
  45169. volume: math.unit(5/8, "gallons"),
  45170. name: "Front",
  45171. image: {
  45172. source: "./media/characters/ludwig-horn/front.svg",
  45173. extra: 1782/1635,
  45174. bottom: 96/1878
  45175. }
  45176. },
  45177. back: {
  45178. height: math.unit(6, "feet"),
  45179. weight: math.unit(250, "lb"),
  45180. volume: math.unit(5/8, "gallons"),
  45181. name: "Back",
  45182. image: {
  45183. source: "./media/characters/ludwig-horn/back.svg",
  45184. extra: 1874/1729,
  45185. bottom: 27/1901
  45186. }
  45187. },
  45188. dick: {
  45189. height: math.unit(1.05, "feet"),
  45190. weight: math.unit(15, "lb"),
  45191. volume: math.unit(5/8, "gallons"),
  45192. name: "Dick",
  45193. image: {
  45194. source: "./media/characters/ludwig-horn/dick.svg"
  45195. }
  45196. },
  45197. },
  45198. [
  45199. {
  45200. name: "Small",
  45201. height: math.unit(6, "feet")
  45202. },
  45203. {
  45204. name: "Typical",
  45205. height: math.unit(12, "feet"),
  45206. default: true
  45207. },
  45208. {
  45209. name: "Building",
  45210. height: math.unit(80, "feet")
  45211. },
  45212. {
  45213. name: "Town",
  45214. height: math.unit(800, "feet")
  45215. },
  45216. {
  45217. name: "Kingdom",
  45218. height: math.unit(80000, "feet")
  45219. },
  45220. {
  45221. name: "Planet",
  45222. height: math.unit(8000000, "feet")
  45223. },
  45224. {
  45225. name: "Universe",
  45226. height: math.unit(8000000000, "feet")
  45227. },
  45228. {
  45229. name: "Transcended",
  45230. height: math.unit(8e27, "feet")
  45231. },
  45232. ]
  45233. ))
  45234. characterMakers.push(() => makeCharacter(
  45235. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  45236. {
  45237. front: {
  45238. height: math.unit(5, "feet"),
  45239. weight: math.unit(50, "kg"),
  45240. name: "Front",
  45241. image: {
  45242. source: "./media/characters/biot-avery/front.svg",
  45243. extra: 1295/1232,
  45244. bottom: 86/1381
  45245. }
  45246. },
  45247. },
  45248. [
  45249. {
  45250. name: "Normal",
  45251. height: math.unit(5, "feet"),
  45252. default: true
  45253. },
  45254. ]
  45255. ))
  45256. characterMakers.push(() => makeCharacter(
  45257. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  45258. {
  45259. front: {
  45260. height: math.unit(6, "feet"),
  45261. name: "Front",
  45262. image: {
  45263. source: "./media/characters/kitsune-kiro/front.svg",
  45264. extra: 1270/1158,
  45265. bottom: 42/1312
  45266. }
  45267. },
  45268. frontAlt: {
  45269. height: math.unit(6, "feet"),
  45270. name: "Front-alt",
  45271. image: {
  45272. source: "./media/characters/kitsune-kiro/front-alt.svg",
  45273. extra: 1130/1081,
  45274. bottom: 36/1166
  45275. }
  45276. },
  45277. },
  45278. [
  45279. {
  45280. name: "Smol",
  45281. height: math.unit(3, "feet")
  45282. },
  45283. {
  45284. name: "Normal",
  45285. height: math.unit(6, "feet"),
  45286. default: true
  45287. },
  45288. ]
  45289. ))
  45290. characterMakers.push(() => makeCharacter(
  45291. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  45292. {
  45293. front: {
  45294. height: math.unit(6, "feet"),
  45295. weight: math.unit(125, "lb"),
  45296. name: "Front",
  45297. image: {
  45298. source: "./media/characters/jack-thatcher/front.svg",
  45299. extra: 1474/1370,
  45300. bottom: 26/1500
  45301. }
  45302. },
  45303. back: {
  45304. height: math.unit(6, "feet"),
  45305. weight: math.unit(125, "lb"),
  45306. name: "Back",
  45307. image: {
  45308. source: "./media/characters/jack-thatcher/back.svg",
  45309. extra: 1489/1384,
  45310. bottom: 18/1507
  45311. }
  45312. },
  45313. },
  45314. [
  45315. {
  45316. name: "Normal",
  45317. height: math.unit(6, "feet"),
  45318. default: true
  45319. },
  45320. {
  45321. name: "Macro",
  45322. height: math.unit(75, "feet")
  45323. },
  45324. {
  45325. name: "Macro-er",
  45326. height: math.unit(250, "feet")
  45327. },
  45328. ]
  45329. ))
  45330. characterMakers.push(() => makeCharacter(
  45331. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  45332. {
  45333. front: {
  45334. height: math.unit(7, "feet"),
  45335. weight: math.unit(110, "kg"),
  45336. name: "Front",
  45337. image: {
  45338. source: "./media/characters/max-hyper/front.svg",
  45339. extra: 1969/1881,
  45340. bottom: 49/2018
  45341. }
  45342. },
  45343. },
  45344. [
  45345. {
  45346. name: "Normal",
  45347. height: math.unit(7, "feet"),
  45348. default: true
  45349. },
  45350. ]
  45351. ))
  45352. characterMakers.push(() => makeCharacter(
  45353. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  45354. {
  45355. front: {
  45356. height: math.unit(5 + 5/12, "feet"),
  45357. weight: math.unit(160, "lb"),
  45358. name: "Front",
  45359. image: {
  45360. source: "./media/characters/spook/front.svg",
  45361. extra: 794/791,
  45362. bottom: 54/848
  45363. }
  45364. },
  45365. back: {
  45366. height: math.unit(5 + 5/12, "feet"),
  45367. weight: math.unit(160, "lb"),
  45368. name: "Back",
  45369. image: {
  45370. source: "./media/characters/spook/back.svg",
  45371. extra: 812/798,
  45372. bottom: 32/844
  45373. }
  45374. },
  45375. },
  45376. [
  45377. {
  45378. name: "Normal",
  45379. height: math.unit(5 + 5/12, "feet"),
  45380. default: true
  45381. },
  45382. ]
  45383. ))
  45384. characterMakers.push(() => makeCharacter(
  45385. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  45386. {
  45387. front: {
  45388. height: math.unit(18, "feet"),
  45389. name: "Front",
  45390. image: {
  45391. source: "./media/characters/xeaduulix/front.svg",
  45392. extra: 1380/1166,
  45393. bottom: 110/1490
  45394. }
  45395. },
  45396. back: {
  45397. height: math.unit(18, "feet"),
  45398. name: "Back",
  45399. image: {
  45400. source: "./media/characters/xeaduulix/back.svg",
  45401. extra: 1592/1170,
  45402. bottom: 128/1720
  45403. }
  45404. },
  45405. frontNsfw: {
  45406. height: math.unit(18, "feet"),
  45407. name: "Front (NSFW)",
  45408. image: {
  45409. source: "./media/characters/xeaduulix/front-nsfw.svg",
  45410. extra: 1380/1166,
  45411. bottom: 110/1490
  45412. }
  45413. },
  45414. backNsfw: {
  45415. height: math.unit(18, "feet"),
  45416. name: "Back (NSFW)",
  45417. image: {
  45418. source: "./media/characters/xeaduulix/back-nsfw.svg",
  45419. extra: 1592/1170,
  45420. bottom: 128/1720
  45421. }
  45422. },
  45423. },
  45424. [
  45425. {
  45426. name: "Normal",
  45427. height: math.unit(18, "feet"),
  45428. default: true
  45429. },
  45430. ]
  45431. ))
  45432. characterMakers.push(() => makeCharacter(
  45433. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  45434. {
  45435. spreadWings: {
  45436. height: math.unit(20, "feet"),
  45437. name: "Spread Wings",
  45438. image: {
  45439. source: "./media/characters/fledge/spread-wings.svg",
  45440. extra: 693/635,
  45441. bottom: 26/719
  45442. }
  45443. },
  45444. front: {
  45445. height: math.unit(20, "feet"),
  45446. name: "Front",
  45447. image: {
  45448. source: "./media/characters/fledge/front.svg",
  45449. extra: 684/637,
  45450. bottom: 18/702
  45451. }
  45452. },
  45453. frontAlt: {
  45454. height: math.unit(20, "feet"),
  45455. name: "Front (Alt)",
  45456. image: {
  45457. source: "./media/characters/fledge/front-alt.svg",
  45458. extra: 708/664,
  45459. bottom: 13/721
  45460. }
  45461. },
  45462. back: {
  45463. height: math.unit(20, "feet"),
  45464. name: "Back",
  45465. image: {
  45466. source: "./media/characters/fledge/back.svg",
  45467. extra: 718/634,
  45468. bottom: 22/740
  45469. }
  45470. },
  45471. head: {
  45472. height: math.unit(5.55, "feet"),
  45473. name: "Head",
  45474. image: {
  45475. source: "./media/characters/fledge/head.svg"
  45476. }
  45477. },
  45478. headAlt: {
  45479. height: math.unit(5.1, "feet"),
  45480. name: "Head (Alt)",
  45481. image: {
  45482. source: "./media/characters/fledge/head-alt.svg"
  45483. }
  45484. },
  45485. },
  45486. [
  45487. {
  45488. name: "Small",
  45489. height: math.unit(6 + 2/12, "feet")
  45490. },
  45491. {
  45492. name: "Big",
  45493. height: math.unit(20, "feet"),
  45494. default: true
  45495. },
  45496. {
  45497. name: "Giant",
  45498. height: math.unit(100, "feet")
  45499. },
  45500. {
  45501. name: "Macro",
  45502. height: math.unit(200, "feet")
  45503. },
  45504. ]
  45505. ))
  45506. characterMakers.push(() => makeCharacter(
  45507. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  45508. {
  45509. front: {
  45510. height: math.unit(1, "meter"),
  45511. name: "Front",
  45512. image: {
  45513. source: "./media/characters/atlas-morenai/front.svg",
  45514. extra: 1275/1043,
  45515. bottom: 19/1294
  45516. }
  45517. },
  45518. back: {
  45519. height: math.unit(1, "meter"),
  45520. name: "Back",
  45521. image: {
  45522. source: "./media/characters/atlas-morenai/back.svg",
  45523. extra: 1141/1001,
  45524. bottom: 25/1166
  45525. }
  45526. },
  45527. },
  45528. [
  45529. {
  45530. name: "Normal",
  45531. height: math.unit(1, "meter"),
  45532. default: true
  45533. },
  45534. {
  45535. name: "Magic-Infused",
  45536. height: math.unit(5, "meters")
  45537. },
  45538. ]
  45539. ))
  45540. characterMakers.push(() => makeCharacter(
  45541. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  45542. {
  45543. front: {
  45544. height: math.unit(5, "meters"),
  45545. name: "Front",
  45546. image: {
  45547. source: "./media/characters/cintia/front.svg",
  45548. extra: 1312/1228,
  45549. bottom: 38/1350
  45550. }
  45551. },
  45552. back: {
  45553. height: math.unit(5, "meters"),
  45554. name: "Back",
  45555. image: {
  45556. source: "./media/characters/cintia/back.svg",
  45557. extra: 1260/1166,
  45558. bottom: 98/1358
  45559. }
  45560. },
  45561. frontDick: {
  45562. height: math.unit(5, "meters"),
  45563. name: "Front (Dick)",
  45564. image: {
  45565. source: "./media/characters/cintia/front-dick.svg",
  45566. extra: 1312/1228,
  45567. bottom: 38/1350
  45568. }
  45569. },
  45570. backDick: {
  45571. height: math.unit(5, "meters"),
  45572. name: "Back (Dick)",
  45573. image: {
  45574. source: "./media/characters/cintia/back-dick.svg",
  45575. extra: 1260/1166,
  45576. bottom: 98/1358
  45577. }
  45578. },
  45579. bust: {
  45580. height: math.unit(1.97, "meters"),
  45581. name: "Bust",
  45582. image: {
  45583. source: "./media/characters/cintia/bust.svg",
  45584. extra: 617/565,
  45585. bottom: 0/617
  45586. }
  45587. },
  45588. },
  45589. [
  45590. {
  45591. name: "Normal",
  45592. height: math.unit(5, "meters"),
  45593. default: true
  45594. },
  45595. ]
  45596. ))
  45597. characterMakers.push(() => makeCharacter(
  45598. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45599. {
  45600. side: {
  45601. height: math.unit(100, "feet"),
  45602. name: "Side",
  45603. image: {
  45604. source: "./media/characters/denora/side.svg",
  45605. extra: 875/803,
  45606. bottom: 9/884
  45607. }
  45608. },
  45609. },
  45610. [
  45611. {
  45612. name: "Standard",
  45613. height: math.unit(100, "feet"),
  45614. default: true
  45615. },
  45616. {
  45617. name: "Grand",
  45618. height: math.unit(1000, "feet")
  45619. },
  45620. {
  45621. name: "Conquering",
  45622. height: math.unit(10000, "feet")
  45623. },
  45624. ]
  45625. ))
  45626. characterMakers.push(() => makeCharacter(
  45627. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45628. {
  45629. dressed: {
  45630. height: math.unit(8 + 5/12, "feet"),
  45631. weight: math.unit(700, "lb"),
  45632. name: "Dressed",
  45633. image: {
  45634. source: "./media/characters/kiva/dressed.svg",
  45635. extra: 1102/1055,
  45636. bottom: 60/1162
  45637. }
  45638. },
  45639. nude: {
  45640. height: math.unit(8 + 5/12, "feet"),
  45641. weight: math.unit(700, "lb"),
  45642. name: "Nude",
  45643. image: {
  45644. source: "./media/characters/kiva/nude.svg",
  45645. extra: 1102/1055,
  45646. bottom: 60/1162
  45647. }
  45648. },
  45649. },
  45650. [
  45651. {
  45652. name: "Base Height",
  45653. height: math.unit(8 + 5/12, "feet"),
  45654. default: true
  45655. },
  45656. {
  45657. name: "Macro",
  45658. height: math.unit(100, "feet")
  45659. },
  45660. {
  45661. name: "Max",
  45662. height: math.unit(3280, "feet")
  45663. },
  45664. ]
  45665. ))
  45666. characterMakers.push(() => makeCharacter(
  45667. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45668. {
  45669. front: {
  45670. height: math.unit(6 + 8/12, "feet"),
  45671. weight: math.unit(250, "lb"),
  45672. name: "Front",
  45673. image: {
  45674. source: "./media/characters/ztragon/front.svg",
  45675. extra: 1825/1684,
  45676. bottom: 98/1923
  45677. }
  45678. },
  45679. },
  45680. [
  45681. {
  45682. name: "Normal",
  45683. height: math.unit(6 + 8/12, "feet"),
  45684. default: true
  45685. },
  45686. {
  45687. name: "Macro",
  45688. height: math.unit(80, "feet")
  45689. },
  45690. ]
  45691. ))
  45692. characterMakers.push(() => makeCharacter(
  45693. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45694. {
  45695. front: {
  45696. height: math.unit(10.4, "feet"),
  45697. weight: math.unit(2, "tons"),
  45698. name: "Front",
  45699. image: {
  45700. source: "./media/characters/yesenia/front.svg",
  45701. extra: 1479/1474,
  45702. bottom: 233/1712
  45703. }
  45704. },
  45705. },
  45706. [
  45707. {
  45708. name: "Normal",
  45709. height: math.unit(10.4, "feet"),
  45710. default: true
  45711. },
  45712. ]
  45713. ))
  45714. characterMakers.push(() => makeCharacter(
  45715. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45716. {
  45717. normal: {
  45718. height: math.unit(6 + 1/12, "feet"),
  45719. weight: math.unit(180, "lb"),
  45720. name: "Normal",
  45721. image: {
  45722. source: "./media/characters/leanne-lycheborne/normal.svg",
  45723. extra: 1748/1660,
  45724. bottom: 98/1846
  45725. }
  45726. },
  45727. were: {
  45728. height: math.unit(12, "feet"),
  45729. weight: math.unit(1600, "lb"),
  45730. name: "Were",
  45731. image: {
  45732. source: "./media/characters/leanne-lycheborne/were.svg",
  45733. extra: 1485/1432,
  45734. bottom: 66/1551
  45735. }
  45736. },
  45737. },
  45738. [
  45739. {
  45740. name: "Normal",
  45741. height: math.unit(6 + 1/12, "feet"),
  45742. default: true
  45743. },
  45744. ]
  45745. ))
  45746. characterMakers.push(() => makeCharacter(
  45747. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45748. {
  45749. side: {
  45750. height: math.unit(13, "feet"),
  45751. name: "Side",
  45752. image: {
  45753. source: "./media/characters/kira-tyler/side.svg",
  45754. extra: 693/393,
  45755. bottom: 58/751
  45756. }
  45757. },
  45758. },
  45759. [
  45760. {
  45761. name: "Normal",
  45762. height: math.unit(13, "feet"),
  45763. default: true
  45764. },
  45765. ]
  45766. ))
  45767. characterMakers.push(() => makeCharacter(
  45768. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45769. {
  45770. front: {
  45771. height: math.unit(10.3, "feet"),
  45772. weight: math.unit(150, "lb"),
  45773. name: "Front",
  45774. image: {
  45775. source: "./media/characters/blaze/front.svg",
  45776. extra: 1378/1286,
  45777. bottom: 172/1550
  45778. }
  45779. },
  45780. },
  45781. [
  45782. {
  45783. name: "Normal",
  45784. height: math.unit(10.3, "feet"),
  45785. default: true
  45786. },
  45787. ]
  45788. ))
  45789. characterMakers.push(() => makeCharacter(
  45790. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45791. {
  45792. side: {
  45793. height: math.unit(2, "meters"),
  45794. weight: math.unit(400, "kg"),
  45795. name: "Side",
  45796. image: {
  45797. source: "./media/characters/anu/side.svg",
  45798. extra: 506/394,
  45799. bottom: 18/524
  45800. }
  45801. },
  45802. },
  45803. [
  45804. {
  45805. name: "Humanoid",
  45806. height: math.unit(2, "meters")
  45807. },
  45808. {
  45809. name: "Normal",
  45810. height: math.unit(5, "meters"),
  45811. default: true
  45812. },
  45813. ]
  45814. ))
  45815. characterMakers.push(() => makeCharacter(
  45816. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45817. {
  45818. front: {
  45819. height: math.unit(5 + 5/12, "feet"),
  45820. weight: math.unit(170, "lb"),
  45821. name: "Front",
  45822. image: {
  45823. source: "./media/characters/synx-the-lynx/front.svg",
  45824. extra: 1893/1745,
  45825. bottom: 17/1910
  45826. }
  45827. },
  45828. side: {
  45829. height: math.unit(5 + 5/12, "feet"),
  45830. weight: math.unit(170, "lb"),
  45831. name: "Side",
  45832. image: {
  45833. source: "./media/characters/synx-the-lynx/side.svg",
  45834. extra: 1884/1740,
  45835. bottom: 39/1923
  45836. }
  45837. },
  45838. back: {
  45839. height: math.unit(5 + 5/12, "feet"),
  45840. weight: math.unit(170, "lb"),
  45841. name: "Back",
  45842. image: {
  45843. source: "./media/characters/synx-the-lynx/back.svg",
  45844. extra: 1903/1755,
  45845. bottom: 14/1917
  45846. }
  45847. },
  45848. },
  45849. [
  45850. {
  45851. name: "Normal",
  45852. height: math.unit(5 + 5/12, "feet"),
  45853. default: true
  45854. },
  45855. ]
  45856. ))
  45857. characterMakers.push(() => makeCharacter(
  45858. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45859. {
  45860. back: {
  45861. height: math.unit(15, "feet"),
  45862. name: "Back",
  45863. image: {
  45864. source: "./media/characters/nadezda-fex/back.svg",
  45865. extra: 1695/1481,
  45866. bottom: 25/1720
  45867. }
  45868. },
  45869. },
  45870. [
  45871. {
  45872. name: "Normal",
  45873. height: math.unit(15, "feet"),
  45874. default: true
  45875. },
  45876. {
  45877. name: "Macro",
  45878. height: math.unit(2.5, "miles")
  45879. },
  45880. {
  45881. name: "Goddess",
  45882. height: math.unit(2, "multiverses")
  45883. },
  45884. ]
  45885. ))
  45886. characterMakers.push(() => makeCharacter(
  45887. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45888. {
  45889. front: {
  45890. height: math.unit(216, "cm"),
  45891. name: "Front",
  45892. image: {
  45893. source: "./media/characters/lev/front.svg",
  45894. extra: 1728/1670,
  45895. bottom: 82/1810
  45896. }
  45897. },
  45898. back: {
  45899. height: math.unit(216, "cm"),
  45900. name: "Back",
  45901. image: {
  45902. source: "./media/characters/lev/back.svg",
  45903. extra: 1738/1675,
  45904. bottom: 24/1762
  45905. }
  45906. },
  45907. dressed: {
  45908. height: math.unit(216, "cm"),
  45909. name: "Dressed",
  45910. image: {
  45911. source: "./media/characters/lev/dressed.svg",
  45912. extra: 1397/1351,
  45913. bottom: 73/1470
  45914. }
  45915. },
  45916. head: {
  45917. height: math.unit(0.51, "meter"),
  45918. name: "Head",
  45919. image: {
  45920. source: "./media/characters/lev/head.svg"
  45921. }
  45922. },
  45923. },
  45924. [
  45925. {
  45926. name: "Normal",
  45927. height: math.unit(216, "cm"),
  45928. default: true
  45929. },
  45930. {
  45931. name: "Relatively Macro",
  45932. height: math.unit(80, "meters")
  45933. },
  45934. {
  45935. name: "Megamacro",
  45936. height: math.unit(21600, "meters")
  45937. },
  45938. {
  45939. name: "Megamacro+",
  45940. height: math.unit(64800, "meters")
  45941. },
  45942. ]
  45943. ))
  45944. characterMakers.push(() => makeCharacter(
  45945. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45946. {
  45947. front: {
  45948. height: math.unit(2, "meters"),
  45949. weight: math.unit(80, "kg"),
  45950. name: "Front",
  45951. image: {
  45952. source: "./media/characters/moka/front.svg",
  45953. extra: 1337/1255,
  45954. bottom: 58/1395
  45955. }
  45956. },
  45957. },
  45958. [
  45959. {
  45960. name: "Micro",
  45961. height: math.unit(15, "cm")
  45962. },
  45963. {
  45964. name: "Normal",
  45965. height: math.unit(2, "meters"),
  45966. default: true
  45967. },
  45968. {
  45969. name: "Macro",
  45970. height: math.unit(20, "meters"),
  45971. },
  45972. ]
  45973. ))
  45974. characterMakers.push(() => makeCharacter(
  45975. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45976. {
  45977. front: {
  45978. height: math.unit(9, "feet"),
  45979. weight: math.unit(240, "lb"),
  45980. name: "Front",
  45981. image: {
  45982. source: "./media/characters/kuzco/front.svg",
  45983. extra: 1593/1487,
  45984. bottom: 32/1625
  45985. }
  45986. },
  45987. side: {
  45988. height: math.unit(9, "feet"),
  45989. weight: math.unit(240, "lb"),
  45990. name: "Side",
  45991. image: {
  45992. source: "./media/characters/kuzco/side.svg",
  45993. extra: 1575/1485,
  45994. bottom: 30/1605
  45995. }
  45996. },
  45997. back: {
  45998. height: math.unit(9, "feet"),
  45999. weight: math.unit(240, "lb"),
  46000. name: "Back",
  46001. image: {
  46002. source: "./media/characters/kuzco/back.svg",
  46003. extra: 1603/1514,
  46004. bottom: 14/1617
  46005. }
  46006. },
  46007. },
  46008. [
  46009. {
  46010. name: "Normal",
  46011. height: math.unit(9, "feet"),
  46012. default: true
  46013. },
  46014. ]
  46015. ))
  46016. characterMakers.push(() => makeCharacter(
  46017. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  46018. {
  46019. side: {
  46020. height: math.unit(2, "meters"),
  46021. weight: math.unit(300, "kg"),
  46022. name: "Side",
  46023. image: {
  46024. source: "./media/characters/ceruleus/side.svg",
  46025. extra: 1068/974,
  46026. bottom: 126/1194
  46027. }
  46028. },
  46029. },
  46030. [
  46031. {
  46032. name: "Normal",
  46033. height: math.unit(16, "meters"),
  46034. default: true
  46035. },
  46036. ]
  46037. ))
  46038. characterMakers.push(() => makeCharacter(
  46039. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  46040. {
  46041. front: {
  46042. height: math.unit(9, "feet"),
  46043. weight: math.unit(500, "kg"),
  46044. name: "Front",
  46045. image: {
  46046. source: "./media/characters/acouya/front.svg",
  46047. extra: 1660/1473,
  46048. bottom: 28/1688
  46049. }
  46050. },
  46051. },
  46052. [
  46053. {
  46054. name: "Normal",
  46055. height: math.unit(9, "feet"),
  46056. default: true
  46057. },
  46058. ]
  46059. ))
  46060. characterMakers.push(() => makeCharacter(
  46061. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  46062. {
  46063. front: {
  46064. height: math.unit(5 + 6/12, "feet"),
  46065. weight: math.unit(195, "lb"),
  46066. name: "Front",
  46067. image: {
  46068. source: "./media/characters/vant/front.svg",
  46069. extra: 1396/1320,
  46070. bottom: 20/1416
  46071. }
  46072. },
  46073. back: {
  46074. height: math.unit(5 + 6/12, "feet"),
  46075. weight: math.unit(195, "lb"),
  46076. name: "Back",
  46077. image: {
  46078. source: "./media/characters/vant/back.svg",
  46079. extra: 1396/1320,
  46080. bottom: 20/1416
  46081. }
  46082. },
  46083. maw: {
  46084. height: math.unit(0.75, "feet"),
  46085. name: "Maw",
  46086. image: {
  46087. source: "./media/characters/vant/maw.svg"
  46088. }
  46089. },
  46090. paw: {
  46091. height: math.unit(1.07, "feet"),
  46092. name: "Paw",
  46093. image: {
  46094. source: "./media/characters/vant/paw.svg"
  46095. }
  46096. },
  46097. },
  46098. [
  46099. {
  46100. name: "Micro",
  46101. height: math.unit(0.25, "inches")
  46102. },
  46103. {
  46104. name: "Normal",
  46105. height: math.unit(5 + 6/12, "feet"),
  46106. default: true
  46107. },
  46108. {
  46109. name: "Macro",
  46110. height: math.unit(75, "feet")
  46111. },
  46112. ]
  46113. ))
  46114. characterMakers.push(() => makeCharacter(
  46115. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  46116. {
  46117. front: {
  46118. height: math.unit(30, "meters"),
  46119. weight: math.unit(363, "tons"),
  46120. name: "Front",
  46121. image: {
  46122. source: "./media/characters/ahra/front.svg",
  46123. extra: 1914/1814,
  46124. bottom: 46/1960
  46125. }
  46126. },
  46127. },
  46128. [
  46129. {
  46130. name: "Macro",
  46131. height: math.unit(30, "meters"),
  46132. default: true
  46133. },
  46134. ]
  46135. ))
  46136. characterMakers.push(() => makeCharacter(
  46137. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  46138. {
  46139. undressed: {
  46140. height: math.unit(2, "m"),
  46141. weight: math.unit(250, "kg"),
  46142. name: "Undressed",
  46143. image: {
  46144. source: "./media/characters/coriander/undressed.svg",
  46145. extra: 1757/1606,
  46146. bottom: 107/1864
  46147. }
  46148. },
  46149. dressed: {
  46150. height: math.unit(2, "m"),
  46151. weight: math.unit(250, "kg"),
  46152. name: "Dressed",
  46153. image: {
  46154. source: "./media/characters/coriander/dressed.svg",
  46155. extra: 1757/1606,
  46156. bottom: 107/1864
  46157. }
  46158. },
  46159. },
  46160. [
  46161. {
  46162. name: "Normal",
  46163. height: math.unit(4, "meters"),
  46164. default: true
  46165. },
  46166. {
  46167. name: "XL",
  46168. height: math.unit(6, "meters")
  46169. },
  46170. {
  46171. name: "XXL",
  46172. height: math.unit(8, "meters")
  46173. },
  46174. ]
  46175. ))
  46176. characterMakers.push(() => makeCharacter(
  46177. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  46178. {
  46179. front: {
  46180. height: math.unit(6, "feet"),
  46181. name: "Front",
  46182. image: {
  46183. source: "./media/characters/syrinx/front.svg",
  46184. extra: 1557/1259,
  46185. bottom: 171/1728
  46186. }
  46187. },
  46188. },
  46189. [
  46190. {
  46191. name: "Normal",
  46192. height: math.unit(6 + 3/12, "feet"),
  46193. default: true
  46194. },
  46195. ]
  46196. ))
  46197. characterMakers.push(() => makeCharacter(
  46198. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  46199. {
  46200. front: {
  46201. height: math.unit(11 + 6/12, "feet"),
  46202. weight: math.unit(1.5, "tons"),
  46203. name: "Front",
  46204. image: {
  46205. source: "./media/characters/bor/front.svg",
  46206. extra: 1189/1109,
  46207. bottom: 170/1359
  46208. }
  46209. },
  46210. },
  46211. [
  46212. {
  46213. name: "Normal",
  46214. height: math.unit(11 + 6/12, "feet"),
  46215. default: true
  46216. },
  46217. {
  46218. name: "Macro",
  46219. height: math.unit(32 + 9/12, "feet")
  46220. },
  46221. ]
  46222. ))
  46223. characterMakers.push(() => makeCharacter(
  46224. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  46225. {
  46226. anthro: {
  46227. height: math.unit(9, "feet"),
  46228. weight: math.unit(2076, "lb"),
  46229. name: "Anthro",
  46230. image: {
  46231. source: "./media/characters/abacus/anthro.svg",
  46232. extra: 1540/1494,
  46233. bottom: 233/1773
  46234. }
  46235. },
  46236. pigeon: {
  46237. height: math.unit(1, "feet"),
  46238. name: "Pigeon",
  46239. image: {
  46240. source: "./media/characters/abacus/pigeon.svg",
  46241. extra: 528/525,
  46242. bottom: 46/574
  46243. }
  46244. },
  46245. },
  46246. [
  46247. {
  46248. name: "Normal",
  46249. height: math.unit(9, "feet"),
  46250. default: true
  46251. },
  46252. ]
  46253. ))
  46254. characterMakers.push(() => makeCharacter(
  46255. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  46256. {
  46257. side: {
  46258. height: math.unit(6, "feet"),
  46259. name: "Side",
  46260. image: {
  46261. source: "./media/characters/delkhan/side.svg",
  46262. extra: 1884/1786,
  46263. bottom: 308/2192
  46264. }
  46265. },
  46266. head: {
  46267. height: math.unit(3.38, "feet"),
  46268. name: "Head",
  46269. image: {
  46270. source: "./media/characters/delkhan/head.svg"
  46271. }
  46272. },
  46273. },
  46274. [
  46275. {
  46276. name: "Normal",
  46277. height: math.unit(72, "feet"),
  46278. default: true
  46279. },
  46280. {
  46281. name: "Giant",
  46282. height: math.unit(172, "feet")
  46283. },
  46284. ]
  46285. ))
  46286. characterMakers.push(() => makeCharacter(
  46287. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  46288. {
  46289. standing: {
  46290. height: math.unit(6, "feet"),
  46291. name: "Standing",
  46292. image: {
  46293. source: "./media/characters/euchidat/standing.svg",
  46294. extra: 1612/1553,
  46295. bottom: 116/1728
  46296. }
  46297. },
  46298. leaning: {
  46299. height: math.unit(6, "feet"),
  46300. name: "Leaning",
  46301. image: {
  46302. source: "./media/characters/euchidat/leaning.svg",
  46303. extra: 1719/1674,
  46304. bottom: 27/1746
  46305. }
  46306. },
  46307. },
  46308. [
  46309. {
  46310. name: "Normal",
  46311. height: math.unit(175, "feet"),
  46312. default: true
  46313. },
  46314. {
  46315. name: "Megamacro",
  46316. height: math.unit(190, "miles")
  46317. },
  46318. {
  46319. name: "Gigamacro",
  46320. height: math.unit(190000, "miles")
  46321. },
  46322. ]
  46323. ))
  46324. characterMakers.push(() => makeCharacter(
  46325. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  46326. {
  46327. front: {
  46328. height: math.unit(6, "feet"),
  46329. weight: math.unit(150, "lb"),
  46330. name: "Front",
  46331. image: {
  46332. source: "./media/characters/rebecca-stack/front.svg",
  46333. extra: 1256/1201,
  46334. bottom: 18/1274
  46335. }
  46336. },
  46337. },
  46338. [
  46339. {
  46340. name: "Normal",
  46341. height: math.unit(5 + 8/12, "feet"),
  46342. default: true
  46343. },
  46344. {
  46345. name: "Demolitionist",
  46346. height: math.unit(200, "feet")
  46347. },
  46348. {
  46349. name: "Out of Control",
  46350. height: math.unit(2, "miles")
  46351. },
  46352. {
  46353. name: "Giga",
  46354. height: math.unit(7200, "miles")
  46355. },
  46356. ]
  46357. ))
  46358. characterMakers.push(() => makeCharacter(
  46359. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  46360. {
  46361. front: {
  46362. height: math.unit(6, "feet"),
  46363. weight: math.unit(150, "lb"),
  46364. name: "Front",
  46365. image: {
  46366. source: "./media/characters/jenny-cartwright/front.svg",
  46367. extra: 1384/1376,
  46368. bottom: 58/1442
  46369. }
  46370. },
  46371. },
  46372. [
  46373. {
  46374. name: "Normal",
  46375. height: math.unit(6 + 7/12, "feet"),
  46376. default: true
  46377. },
  46378. {
  46379. name: "Librarian",
  46380. height: math.unit(55, "feet")
  46381. },
  46382. {
  46383. name: "Sightseer",
  46384. height: math.unit(50, "miles")
  46385. },
  46386. {
  46387. name: "Giga",
  46388. height: math.unit(30000, "miles")
  46389. },
  46390. ]
  46391. ))
  46392. characterMakers.push(() => makeCharacter(
  46393. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  46394. {
  46395. nude: {
  46396. height: math.unit(8, "feet"),
  46397. weight: math.unit(225, "lb"),
  46398. name: "Nude",
  46399. image: {
  46400. source: "./media/characters/marvy/nude.svg",
  46401. extra: 1900/1683,
  46402. bottom: 89/1989
  46403. }
  46404. },
  46405. dressed: {
  46406. height: math.unit(8, "feet"),
  46407. weight: math.unit(225, "lb"),
  46408. name: "Dressed",
  46409. image: {
  46410. source: "./media/characters/marvy/dressed.svg",
  46411. extra: 1900/1683,
  46412. bottom: 89/1989
  46413. }
  46414. },
  46415. head: {
  46416. height: math.unit(2.85, "feet"),
  46417. name: "Head",
  46418. image: {
  46419. source: "./media/characters/marvy/head.svg"
  46420. }
  46421. },
  46422. },
  46423. [
  46424. {
  46425. name: "Normal",
  46426. height: math.unit(8, "feet"),
  46427. default: true
  46428. },
  46429. ]
  46430. ))
  46431. characterMakers.push(() => makeCharacter(
  46432. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  46433. {
  46434. front: {
  46435. height: math.unit(8, "feet"),
  46436. weight: math.unit(250, "lb"),
  46437. name: "Front",
  46438. image: {
  46439. source: "./media/characters/leah/front.svg",
  46440. extra: 1257/1149,
  46441. bottom: 109/1366
  46442. }
  46443. },
  46444. },
  46445. [
  46446. {
  46447. name: "Normal",
  46448. height: math.unit(8, "feet"),
  46449. default: true
  46450. },
  46451. {
  46452. name: "Minimacro",
  46453. height: math.unit(40, "feet")
  46454. },
  46455. {
  46456. name: "Macro",
  46457. height: math.unit(124, "feet")
  46458. },
  46459. {
  46460. name: "Megamacro",
  46461. height: math.unit(850, "feet")
  46462. },
  46463. ]
  46464. ))
  46465. characterMakers.push(() => makeCharacter(
  46466. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  46467. {
  46468. side: {
  46469. height: math.unit(13 + 6/12, "feet"),
  46470. weight: math.unit(3200, "lb"),
  46471. name: "Side",
  46472. image: {
  46473. source: "./media/characters/alvir/side.svg",
  46474. extra: 896/589,
  46475. bottom: 26/922
  46476. }
  46477. },
  46478. },
  46479. [
  46480. {
  46481. name: "Normal",
  46482. height: math.unit(13 + 6/12, "feet"),
  46483. default: true
  46484. },
  46485. ]
  46486. ))
  46487. characterMakers.push(() => makeCharacter(
  46488. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  46489. {
  46490. front: {
  46491. height: math.unit(5 + 4/12, "feet"),
  46492. weight: math.unit(236, "lb"),
  46493. name: "Front",
  46494. image: {
  46495. source: "./media/characters/zaina-khalil/front.svg",
  46496. extra: 1533/1485,
  46497. bottom: 94/1627
  46498. }
  46499. },
  46500. side: {
  46501. height: math.unit(5 + 4/12, "feet"),
  46502. weight: math.unit(236, "lb"),
  46503. name: "Side",
  46504. image: {
  46505. source: "./media/characters/zaina-khalil/side.svg",
  46506. extra: 1537/1498,
  46507. bottom: 66/1603
  46508. }
  46509. },
  46510. back: {
  46511. height: math.unit(5 + 4/12, "feet"),
  46512. weight: math.unit(236, "lb"),
  46513. name: "Back",
  46514. image: {
  46515. source: "./media/characters/zaina-khalil/back.svg",
  46516. extra: 1546/1494,
  46517. bottom: 89/1635
  46518. }
  46519. },
  46520. },
  46521. [
  46522. {
  46523. name: "Normal",
  46524. height: math.unit(5 + 4/12, "feet"),
  46525. default: true
  46526. },
  46527. ]
  46528. ))
  46529. characterMakers.push(() => makeCharacter(
  46530. { name: "Terry", species: ["husky"], tags: ["taur"] },
  46531. {
  46532. side: {
  46533. height: math.unit(12, "feet"),
  46534. weight: math.unit(4000, "lb"),
  46535. name: "Side",
  46536. image: {
  46537. source: "./media/characters/terry/side.svg",
  46538. extra: 1518/1439,
  46539. bottom: 149/1667
  46540. }
  46541. },
  46542. },
  46543. [
  46544. {
  46545. name: "Normal",
  46546. height: math.unit(12, "feet"),
  46547. default: true
  46548. },
  46549. ]
  46550. ))
  46551. characterMakers.push(() => makeCharacter(
  46552. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  46553. {
  46554. front: {
  46555. height: math.unit(12, "feet"),
  46556. weight: math.unit(1500, "lb"),
  46557. name: "Front",
  46558. image: {
  46559. source: "./media/characters/kahea/front.svg",
  46560. extra: 1722/1617,
  46561. bottom: 179/1901
  46562. }
  46563. },
  46564. },
  46565. [
  46566. {
  46567. name: "Normal",
  46568. height: math.unit(12, "feet"),
  46569. default: true
  46570. },
  46571. ]
  46572. ))
  46573. characterMakers.push(() => makeCharacter(
  46574. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  46575. {
  46576. demonFront: {
  46577. height: math.unit(36, "feet"),
  46578. name: "Front",
  46579. image: {
  46580. source: "./media/characters/alex-xuria/demon-front.svg",
  46581. extra: 1705/1673,
  46582. bottom: 198/1903
  46583. },
  46584. form: "demon",
  46585. default: true
  46586. },
  46587. demonBack: {
  46588. height: math.unit(36, "feet"),
  46589. name: "Back",
  46590. image: {
  46591. source: "./media/characters/alex-xuria/demon-back.svg",
  46592. extra: 1725/1693,
  46593. bottom: 70/1795
  46594. },
  46595. form: "demon"
  46596. },
  46597. demonHead: {
  46598. height: math.unit(2.14, "meters"),
  46599. name: "Head",
  46600. image: {
  46601. source: "./media/characters/alex-xuria/demon-head.svg"
  46602. },
  46603. form: "demon"
  46604. },
  46605. demonHand: {
  46606. height: math.unit(1.61, "meters"),
  46607. name: "Hand",
  46608. image: {
  46609. source: "./media/characters/alex-xuria/demon-hand.svg"
  46610. },
  46611. form: "demon"
  46612. },
  46613. demonPaw: {
  46614. height: math.unit(1.35, "meters"),
  46615. name: "Paw",
  46616. image: {
  46617. source: "./media/characters/alex-xuria/demon-paw.svg"
  46618. },
  46619. form: "demon"
  46620. },
  46621. demonFoot: {
  46622. height: math.unit(2.2, "meters"),
  46623. name: "Foot",
  46624. image: {
  46625. source: "./media/characters/alex-xuria/demon-foot.svg"
  46626. },
  46627. form: "demon"
  46628. },
  46629. demonCock: {
  46630. height: math.unit(1.74, "meters"),
  46631. name: "Cock",
  46632. image: {
  46633. source: "./media/characters/alex-xuria/demon-cock.svg"
  46634. },
  46635. form: "demon"
  46636. },
  46637. demonTailClosed: {
  46638. height: math.unit(1.47, "meters"),
  46639. name: "Tail (Closed)",
  46640. image: {
  46641. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46642. },
  46643. form: "demon"
  46644. },
  46645. demonTailOpen: {
  46646. height: math.unit(2.85, "meters"),
  46647. name: "Tail (Open)",
  46648. image: {
  46649. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46650. },
  46651. form: "demon"
  46652. },
  46653. incubusFront: {
  46654. height: math.unit(12, "feet"),
  46655. name: "Front",
  46656. image: {
  46657. source: "./media/characters/alex-xuria/incubus-front.svg",
  46658. extra: 1754/1677,
  46659. bottom: 125/1879
  46660. },
  46661. form: "incubus",
  46662. default: true
  46663. },
  46664. incubusBack: {
  46665. height: math.unit(12, "feet"),
  46666. name: "Back",
  46667. image: {
  46668. source: "./media/characters/alex-xuria/incubus-back.svg",
  46669. extra: 1702/1647,
  46670. bottom: 30/1732
  46671. },
  46672. form: "incubus"
  46673. },
  46674. incubusHead: {
  46675. height: math.unit(3.45, "feet"),
  46676. name: "Head",
  46677. image: {
  46678. source: "./media/characters/alex-xuria/incubus-head.svg"
  46679. },
  46680. form: "incubus"
  46681. },
  46682. rabbitFront: {
  46683. height: math.unit(6, "feet"),
  46684. name: "Front",
  46685. image: {
  46686. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46687. extra: 1369/1349,
  46688. bottom: 45/1414
  46689. },
  46690. form: "rabbit",
  46691. default: true
  46692. },
  46693. rabbitSide: {
  46694. height: math.unit(6, "feet"),
  46695. name: "Side",
  46696. image: {
  46697. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46698. extra: 1370/1356,
  46699. bottom: 37/1407
  46700. },
  46701. form: "rabbit"
  46702. },
  46703. rabbitBack: {
  46704. height: math.unit(6, "feet"),
  46705. name: "Back",
  46706. image: {
  46707. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46708. extra: 1375/1358,
  46709. bottom: 43/1418
  46710. },
  46711. form: "rabbit"
  46712. },
  46713. },
  46714. [
  46715. {
  46716. name: "Normal",
  46717. height: math.unit(6, "feet"),
  46718. default: true,
  46719. form: "rabbit"
  46720. },
  46721. {
  46722. name: "Incubus",
  46723. height: math.unit(12, "feet"),
  46724. default: true,
  46725. form: "incubus"
  46726. },
  46727. {
  46728. name: "Demon",
  46729. height: math.unit(36, "feet"),
  46730. default: true,
  46731. form: "demon"
  46732. }
  46733. ],
  46734. {
  46735. "demon": {
  46736. name: "Demon",
  46737. default: true
  46738. },
  46739. "incubus": {
  46740. name: "Incubus",
  46741. },
  46742. "rabbit": {
  46743. name: "Rabbit"
  46744. }
  46745. }
  46746. ))
  46747. characterMakers.push(() => makeCharacter(
  46748. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46749. {
  46750. front: {
  46751. height: math.unit(7 + 5/12, "feet"),
  46752. weight: math.unit(510, "lb"),
  46753. name: "Front",
  46754. image: {
  46755. source: "./media/characters/syrup/front.svg",
  46756. extra: 932/916,
  46757. bottom: 26/958
  46758. }
  46759. },
  46760. },
  46761. [
  46762. {
  46763. name: "Normal",
  46764. height: math.unit(7 + 5/12, "feet"),
  46765. default: true
  46766. },
  46767. {
  46768. name: "Big",
  46769. height: math.unit(50, "feet")
  46770. },
  46771. {
  46772. name: "Macro",
  46773. height: math.unit(300, "feet")
  46774. },
  46775. {
  46776. name: "Megamacro",
  46777. height: math.unit(1, "mile")
  46778. },
  46779. ]
  46780. ))
  46781. characterMakers.push(() => makeCharacter(
  46782. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46783. {
  46784. front: {
  46785. height: math.unit(6 + 9/12, "feet"),
  46786. name: "Front",
  46787. image: {
  46788. source: "./media/characters/zeimne/front.svg",
  46789. extra: 1969/1806,
  46790. bottom: 53/2022
  46791. }
  46792. },
  46793. },
  46794. [
  46795. {
  46796. name: "Normal",
  46797. height: math.unit(6 + 9/12, "feet"),
  46798. default: true
  46799. },
  46800. {
  46801. name: "Giant",
  46802. height: math.unit(550, "feet")
  46803. },
  46804. {
  46805. name: "Mega",
  46806. height: math.unit(3, "miles")
  46807. },
  46808. {
  46809. name: "Giga",
  46810. height: math.unit(250, "miles")
  46811. },
  46812. {
  46813. name: "Tera",
  46814. height: math.unit(1, "AU")
  46815. },
  46816. ]
  46817. ))
  46818. characterMakers.push(() => makeCharacter(
  46819. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46820. {
  46821. front: {
  46822. height: math.unit(5 + 2/12, "feet"),
  46823. name: "Front",
  46824. image: {
  46825. source: "./media/characters/grar/front.svg",
  46826. extra: 1331/1119,
  46827. bottom: 60/1391
  46828. }
  46829. },
  46830. back: {
  46831. height: math.unit(5 + 2/12, "feet"),
  46832. name: "Back",
  46833. image: {
  46834. source: "./media/characters/grar/back.svg",
  46835. extra: 1385/1169,
  46836. bottom: 23/1408
  46837. }
  46838. },
  46839. },
  46840. [
  46841. {
  46842. name: "Normal",
  46843. height: math.unit(5 + 2/12, "feet"),
  46844. default: true
  46845. },
  46846. ]
  46847. ))
  46848. characterMakers.push(() => makeCharacter(
  46849. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46850. {
  46851. front: {
  46852. height: math.unit(13 + 7/12, "feet"),
  46853. weight: math.unit(2200, "lb"),
  46854. name: "Front",
  46855. image: {
  46856. source: "./media/characters/endraya/front.svg",
  46857. extra: 1289/1215,
  46858. bottom: 50/1339
  46859. }
  46860. },
  46861. nude: {
  46862. height: math.unit(13 + 7/12, "feet"),
  46863. weight: math.unit(2200, "lb"),
  46864. name: "Nude",
  46865. image: {
  46866. source: "./media/characters/endraya/nude.svg",
  46867. extra: 1247/1171,
  46868. bottom: 40/1287
  46869. }
  46870. },
  46871. head: {
  46872. height: math.unit(2.6, "feet"),
  46873. name: "Head",
  46874. image: {
  46875. source: "./media/characters/endraya/head.svg"
  46876. }
  46877. },
  46878. slit: {
  46879. height: math.unit(3.4, "feet"),
  46880. name: "Slit",
  46881. image: {
  46882. source: "./media/characters/endraya/slit.svg"
  46883. }
  46884. },
  46885. },
  46886. [
  46887. {
  46888. name: "Normal",
  46889. height: math.unit(13 + 7/12, "feet"),
  46890. default: true
  46891. },
  46892. {
  46893. name: "Macro",
  46894. height: math.unit(200, "feet")
  46895. },
  46896. ]
  46897. ))
  46898. characterMakers.push(() => makeCharacter(
  46899. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46900. {
  46901. front: {
  46902. height: math.unit(1.81, "meters"),
  46903. weight: math.unit(69, "kg"),
  46904. name: "Front",
  46905. image: {
  46906. source: "./media/characters/rodryana/front.svg",
  46907. extra: 2002/1921,
  46908. bottom: 53/2055
  46909. }
  46910. },
  46911. back: {
  46912. height: math.unit(1.81, "meters"),
  46913. weight: math.unit(69, "kg"),
  46914. name: "Back",
  46915. image: {
  46916. source: "./media/characters/rodryana/back.svg",
  46917. extra: 1993/1926,
  46918. bottom: 48/2041
  46919. }
  46920. },
  46921. maw: {
  46922. height: math.unit(0.19769417475, "meters"),
  46923. name: "Maw",
  46924. image: {
  46925. source: "./media/characters/rodryana/maw.svg"
  46926. }
  46927. },
  46928. slit: {
  46929. height: math.unit(0.31631067961, "meters"),
  46930. name: "Slit",
  46931. image: {
  46932. source: "./media/characters/rodryana/slit.svg"
  46933. }
  46934. },
  46935. },
  46936. [
  46937. {
  46938. name: "Normal",
  46939. height: math.unit(1.81, "meters")
  46940. },
  46941. {
  46942. name: "Mini Macro",
  46943. height: math.unit(181, "meters")
  46944. },
  46945. {
  46946. name: "Macro",
  46947. height: math.unit(452, "meters"),
  46948. default: true
  46949. },
  46950. {
  46951. name: "Mega Macro",
  46952. height: math.unit(1.375, "km")
  46953. },
  46954. {
  46955. name: "Giga Macro",
  46956. height: math.unit(13.575, "km")
  46957. },
  46958. ]
  46959. ))
  46960. characterMakers.push(() => makeCharacter(
  46961. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46962. {
  46963. front: {
  46964. height: math.unit(6, "feet"),
  46965. weight: math.unit(1000, "lb"),
  46966. name: "Front",
  46967. image: {
  46968. source: "./media/characters/asaya/front.svg",
  46969. extra: 1460/1200,
  46970. bottom: 71/1531
  46971. }
  46972. },
  46973. },
  46974. [
  46975. {
  46976. name: "Normal",
  46977. height: math.unit(8, "km"),
  46978. default: true
  46979. },
  46980. ]
  46981. ))
  46982. characterMakers.push(() => makeCharacter(
  46983. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46984. {
  46985. front: {
  46986. height: math.unit(3.5, "meters"),
  46987. name: "Front",
  46988. image: {
  46989. source: "./media/characters/sarzu-and-israz/front.svg",
  46990. extra: 1570/1558,
  46991. bottom: 150/1720
  46992. },
  46993. },
  46994. back: {
  46995. height: math.unit(3.5, "meters"),
  46996. name: "Back",
  46997. image: {
  46998. source: "./media/characters/sarzu-and-israz/back.svg",
  46999. extra: 1523/1509,
  47000. bottom: 132/1655
  47001. },
  47002. },
  47003. frontFemale: {
  47004. height: math.unit(3.5, "meters"),
  47005. name: "Front (Female)",
  47006. image: {
  47007. source: "./media/characters/sarzu-and-israz/front-female.svg",
  47008. extra: 1570/1558,
  47009. bottom: 150/1720
  47010. },
  47011. },
  47012. frontHerm: {
  47013. height: math.unit(3.5, "meters"),
  47014. name: "Front (Herm)",
  47015. image: {
  47016. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  47017. extra: 1570/1558,
  47018. bottom: 150/1720
  47019. },
  47020. },
  47021. },
  47022. [
  47023. {
  47024. name: "Normal",
  47025. height: math.unit(3.5, "meters"),
  47026. default: true,
  47027. },
  47028. {
  47029. name: "Macro",
  47030. height: math.unit(65.5, "meters"),
  47031. },
  47032. ],
  47033. ))
  47034. characterMakers.push(() => makeCharacter(
  47035. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  47036. {
  47037. front: {
  47038. height: math.unit(6, "feet"),
  47039. weight: math.unit(250, "lb"),
  47040. name: "Front",
  47041. image: {
  47042. source: "./media/characters/zenimma/front.svg",
  47043. extra: 1346/1320,
  47044. bottom: 58/1404
  47045. }
  47046. },
  47047. back: {
  47048. height: math.unit(6, "feet"),
  47049. weight: math.unit(250, "lb"),
  47050. name: "Back",
  47051. image: {
  47052. source: "./media/characters/zenimma/back.svg",
  47053. extra: 1324/1308,
  47054. bottom: 44/1368
  47055. }
  47056. },
  47057. dick: {
  47058. height: math.unit(1.44, "feet"),
  47059. name: "Dick",
  47060. image: {
  47061. source: "./media/characters/zenimma/dick.svg"
  47062. }
  47063. },
  47064. },
  47065. [
  47066. {
  47067. name: "Canon Height",
  47068. height: math.unit(66, "miles"),
  47069. default: true
  47070. },
  47071. ]
  47072. ))
  47073. characterMakers.push(() => makeCharacter(
  47074. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  47075. {
  47076. nude: {
  47077. height: math.unit(6, "feet"),
  47078. weight: math.unit(150, "lb"),
  47079. name: "Nude",
  47080. image: {
  47081. source: "./media/characters/shavon/nude.svg",
  47082. extra: 1242/1096,
  47083. bottom: 98/1340
  47084. }
  47085. },
  47086. dressed: {
  47087. height: math.unit(6, "feet"),
  47088. weight: math.unit(150, "lb"),
  47089. name: "Dressed",
  47090. image: {
  47091. source: "./media/characters/shavon/dressed.svg",
  47092. extra: 1242/1096,
  47093. bottom: 98/1340
  47094. }
  47095. },
  47096. },
  47097. [
  47098. {
  47099. name: "Macro",
  47100. height: math.unit(255, "feet"),
  47101. default: true
  47102. },
  47103. ]
  47104. ))
  47105. characterMakers.push(() => makeCharacter(
  47106. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  47107. {
  47108. front: {
  47109. height: math.unit(6, "feet"),
  47110. name: "Front",
  47111. image: {
  47112. source: "./media/characters/steph/front.svg",
  47113. extra: 1430/1330,
  47114. bottom: 54/1484
  47115. }
  47116. },
  47117. },
  47118. [
  47119. {
  47120. name: "Normal",
  47121. height: math.unit(6, "feet"),
  47122. default: true
  47123. },
  47124. ]
  47125. ))
  47126. characterMakers.push(() => makeCharacter(
  47127. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  47128. {
  47129. front: {
  47130. height: math.unit(9, "feet"),
  47131. weight: math.unit(400, "lb"),
  47132. name: "Front",
  47133. image: {
  47134. source: "./media/characters/kil'aman/front.svg",
  47135. extra: 1210/1159,
  47136. bottom: 109/1319
  47137. }
  47138. },
  47139. head: {
  47140. height: math.unit(2.14, "feet"),
  47141. name: "Head",
  47142. image: {
  47143. source: "./media/characters/kil'aman/head.svg"
  47144. }
  47145. },
  47146. maw: {
  47147. height: math.unit(1.21, "feet"),
  47148. name: "Maw",
  47149. image: {
  47150. source: "./media/characters/kil'aman/maw.svg"
  47151. }
  47152. },
  47153. foot: {
  47154. height: math.unit(1.7, "feet"),
  47155. name: "Foot",
  47156. image: {
  47157. source: "./media/characters/kil'aman/foot.svg"
  47158. }
  47159. },
  47160. dick: {
  47161. height: math.unit(2.1, "feet"),
  47162. name: "Dick",
  47163. image: {
  47164. source: "./media/characters/kil'aman/dick.svg"
  47165. }
  47166. },
  47167. },
  47168. [
  47169. {
  47170. name: "Normal",
  47171. height: math.unit(9, "feet")
  47172. },
  47173. {
  47174. name: "Canon Height",
  47175. height: math.unit(10, "miles"),
  47176. default: true
  47177. },
  47178. {
  47179. name: "Maximum",
  47180. height: math.unit(6e9, "miles")
  47181. },
  47182. ]
  47183. ))
  47184. characterMakers.push(() => makeCharacter(
  47185. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  47186. {
  47187. front: {
  47188. height: math.unit(90, "feet"),
  47189. weight: math.unit(675000, "lb"),
  47190. name: "Front",
  47191. image: {
  47192. source: "./media/characters/qadan/front.svg",
  47193. extra: 1012/1004,
  47194. bottom: 78/1090
  47195. }
  47196. },
  47197. back: {
  47198. height: math.unit(90, "feet"),
  47199. weight: math.unit(675000, "lb"),
  47200. name: "Back",
  47201. image: {
  47202. source: "./media/characters/qadan/back.svg",
  47203. extra: 1042/1031,
  47204. bottom: 55/1097
  47205. }
  47206. },
  47207. armored: {
  47208. height: math.unit(90, "feet"),
  47209. weight: math.unit(675000, "lb"),
  47210. name: "Armored",
  47211. image: {
  47212. source: "./media/characters/qadan/armored.svg",
  47213. extra: 1047/1037,
  47214. bottom: 48/1095
  47215. }
  47216. },
  47217. },
  47218. [
  47219. {
  47220. name: "Normal",
  47221. height: math.unit(90, "feet"),
  47222. default: true
  47223. },
  47224. ]
  47225. ))
  47226. characterMakers.push(() => makeCharacter(
  47227. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  47228. {
  47229. front: {
  47230. height: math.unit(6, "feet"),
  47231. weight: math.unit(225, "lb"),
  47232. name: "Front",
  47233. image: {
  47234. source: "./media/characters/brooke/front.svg",
  47235. extra: 1050/1010,
  47236. bottom: 66/1116
  47237. }
  47238. },
  47239. back: {
  47240. height: math.unit(6, "feet"),
  47241. weight: math.unit(225, "lb"),
  47242. name: "Back",
  47243. image: {
  47244. source: "./media/characters/brooke/back.svg",
  47245. extra: 1053/1013,
  47246. bottom: 41/1094
  47247. }
  47248. },
  47249. dressed: {
  47250. height: math.unit(6, "feet"),
  47251. weight: math.unit(225, "lb"),
  47252. name: "Dressed",
  47253. image: {
  47254. source: "./media/characters/brooke/dressed.svg",
  47255. extra: 1050/1010,
  47256. bottom: 66/1116
  47257. }
  47258. },
  47259. },
  47260. [
  47261. {
  47262. name: "Canon Height",
  47263. height: math.unit(500, "miles"),
  47264. default: true
  47265. },
  47266. ]
  47267. ))
  47268. characterMakers.push(() => makeCharacter(
  47269. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  47270. {
  47271. front: {
  47272. height: math.unit(6 + 2/12, "feet"),
  47273. weight: math.unit(210, "lb"),
  47274. name: "Front",
  47275. image: {
  47276. source: "./media/characters/wubs/front.svg",
  47277. extra: 1345/1325,
  47278. bottom: 70/1415
  47279. }
  47280. },
  47281. back: {
  47282. height: math.unit(6 + 2/12, "feet"),
  47283. weight: math.unit(210, "lb"),
  47284. name: "Back",
  47285. image: {
  47286. source: "./media/characters/wubs/back.svg",
  47287. extra: 1296/1275,
  47288. bottom: 58/1354
  47289. }
  47290. },
  47291. },
  47292. [
  47293. {
  47294. name: "Normal",
  47295. height: math.unit(6 + 2/12, "feet"),
  47296. default: true
  47297. },
  47298. {
  47299. name: "Macro",
  47300. height: math.unit(1000, "feet")
  47301. },
  47302. {
  47303. name: "Megamacro",
  47304. height: math.unit(1, "mile")
  47305. },
  47306. ]
  47307. ))
  47308. characterMakers.push(() => makeCharacter(
  47309. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  47310. {
  47311. front: {
  47312. height: math.unit(4, "feet"),
  47313. weight: math.unit(120, "lb"),
  47314. name: "Front",
  47315. image: {
  47316. source: "./media/characters/blue/front.svg",
  47317. extra: 1636/1525,
  47318. bottom: 43/1679
  47319. }
  47320. },
  47321. back: {
  47322. height: math.unit(4, "feet"),
  47323. weight: math.unit(120, "lb"),
  47324. name: "Back",
  47325. image: {
  47326. source: "./media/characters/blue/back.svg",
  47327. extra: 1660/1560,
  47328. bottom: 57/1717
  47329. }
  47330. },
  47331. paws: {
  47332. height: math.unit(0.826, "feet"),
  47333. name: "Paws",
  47334. image: {
  47335. source: "./media/characters/blue/paws.svg"
  47336. }
  47337. },
  47338. },
  47339. [
  47340. {
  47341. name: "Micro",
  47342. height: math.unit(3, "inches")
  47343. },
  47344. {
  47345. name: "Normal",
  47346. height: math.unit(4, "feet"),
  47347. default: true
  47348. },
  47349. {
  47350. name: "Femenine Form",
  47351. height: math.unit(14, "feet")
  47352. },
  47353. {
  47354. name: "Werebat Form",
  47355. height: math.unit(18, "feet")
  47356. },
  47357. ]
  47358. ))
  47359. characterMakers.push(() => makeCharacter(
  47360. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  47361. {
  47362. female: {
  47363. height: math.unit(7 + 4/12, "feet"),
  47364. weight: math.unit(243, "lb"),
  47365. name: "Female",
  47366. image: {
  47367. source: "./media/characters/kaya/female.svg",
  47368. extra: 975/898,
  47369. bottom: 34/1009
  47370. }
  47371. },
  47372. herm: {
  47373. height: math.unit(7 + 4/12, "feet"),
  47374. weight: math.unit(243, "lb"),
  47375. name: "Herm",
  47376. image: {
  47377. source: "./media/characters/kaya/herm.svg",
  47378. extra: 975/898,
  47379. bottom: 34/1009
  47380. }
  47381. },
  47382. },
  47383. [
  47384. {
  47385. name: "Normal",
  47386. height: math.unit(7 + 4/12, "feet"),
  47387. default: true
  47388. },
  47389. ]
  47390. ))
  47391. characterMakers.push(() => makeCharacter(
  47392. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  47393. {
  47394. female: {
  47395. height: math.unit(9 + 4/12, "feet"),
  47396. weight: math.unit(398, "lb"),
  47397. name: "Female",
  47398. image: {
  47399. source: "./media/characters/kassandra/female.svg",
  47400. extra: 908/839,
  47401. bottom: 61/969
  47402. }
  47403. },
  47404. intersex: {
  47405. height: math.unit(9 + 4/12, "feet"),
  47406. weight: math.unit(398, "lb"),
  47407. name: "Intersex",
  47408. image: {
  47409. source: "./media/characters/kassandra/intersex.svg",
  47410. extra: 908/839,
  47411. bottom: 61/969
  47412. }
  47413. },
  47414. },
  47415. [
  47416. {
  47417. name: "Normal",
  47418. height: math.unit(9 + 4/12, "feet"),
  47419. default: true
  47420. },
  47421. ]
  47422. ))
  47423. characterMakers.push(() => makeCharacter(
  47424. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  47425. {
  47426. front: {
  47427. height: math.unit(3, "meters"),
  47428. name: "Front",
  47429. image: {
  47430. source: "./media/characters/amy/front.svg",
  47431. extra: 1380/1343,
  47432. bottom: 70/1450
  47433. }
  47434. },
  47435. back: {
  47436. height: math.unit(3, "meters"),
  47437. name: "Back",
  47438. image: {
  47439. source: "./media/characters/amy/back.svg",
  47440. extra: 1380/1347,
  47441. bottom: 66/1446
  47442. }
  47443. },
  47444. },
  47445. [
  47446. {
  47447. name: "Normal",
  47448. height: math.unit(3, "meters"),
  47449. default: true
  47450. },
  47451. ]
  47452. ))
  47453. characterMakers.push(() => makeCharacter(
  47454. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  47455. {
  47456. side: {
  47457. height: math.unit(47, "cm"),
  47458. weight: math.unit(10.8, "kg"),
  47459. name: "Side",
  47460. image: {
  47461. source: "./media/characters/alphaschakal/side.svg",
  47462. extra: 1058/568,
  47463. bottom: 62/1120
  47464. }
  47465. },
  47466. back: {
  47467. height: math.unit(78, "cm"),
  47468. weight: math.unit(10.8, "kg"),
  47469. name: "Back",
  47470. image: {
  47471. source: "./media/characters/alphaschakal/back.svg",
  47472. extra: 1102/942,
  47473. bottom: 185/1287
  47474. }
  47475. },
  47476. head: {
  47477. height: math.unit(28, "cm"),
  47478. name: "Head",
  47479. image: {
  47480. source: "./media/characters/alphaschakal/head.svg",
  47481. extra: 696/508,
  47482. bottom: 0/696
  47483. }
  47484. },
  47485. paw: {
  47486. height: math.unit(16, "cm"),
  47487. name: "Paw",
  47488. image: {
  47489. source: "./media/characters/alphaschakal/paw.svg"
  47490. }
  47491. },
  47492. },
  47493. [
  47494. {
  47495. name: "Normal",
  47496. height: math.unit(47, "cm"),
  47497. default: true
  47498. },
  47499. {
  47500. name: "Macro",
  47501. height: math.unit(340, "cm")
  47502. },
  47503. ]
  47504. ))
  47505. characterMakers.push(() => makeCharacter(
  47506. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  47507. {
  47508. front: {
  47509. height: math.unit(36, "earths"),
  47510. name: "Front",
  47511. image: {
  47512. source: "./media/characters/ecobyss/front.svg",
  47513. extra: 1282/1215,
  47514. bottom: 11/1293
  47515. }
  47516. },
  47517. back: {
  47518. height: math.unit(36, "earths"),
  47519. name: "Back",
  47520. image: {
  47521. source: "./media/characters/ecobyss/back.svg",
  47522. extra: 1291/1222,
  47523. bottom: 8/1299
  47524. }
  47525. },
  47526. },
  47527. [
  47528. {
  47529. name: "Normal",
  47530. height: math.unit(36, "earths"),
  47531. default: true
  47532. },
  47533. ]
  47534. ))
  47535. characterMakers.push(() => makeCharacter(
  47536. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  47537. {
  47538. front: {
  47539. height: math.unit(12, "feet"),
  47540. name: "Front",
  47541. image: {
  47542. source: "./media/characters/vasuk/front.svg",
  47543. extra: 1326/1207,
  47544. bottom: 64/1390
  47545. }
  47546. },
  47547. },
  47548. [
  47549. {
  47550. name: "Normal",
  47551. height: math.unit(12, "feet"),
  47552. default: true
  47553. },
  47554. ]
  47555. ))
  47556. characterMakers.push(() => makeCharacter(
  47557. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  47558. {
  47559. side: {
  47560. height: math.unit(100, "feet"),
  47561. name: "Side",
  47562. image: {
  47563. source: "./media/characters/linneaus/side.svg",
  47564. extra: 987/807,
  47565. bottom: 47/1034
  47566. }
  47567. },
  47568. },
  47569. [
  47570. {
  47571. name: "Macro",
  47572. height: math.unit(100, "feet"),
  47573. default: true
  47574. },
  47575. ]
  47576. ))
  47577. characterMakers.push(() => makeCharacter(
  47578. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  47579. {
  47580. front: {
  47581. height: math.unit(8, "feet"),
  47582. weight: math.unit(1200, "lb"),
  47583. name: "Front",
  47584. image: {
  47585. source: "./media/characters/nyterious-daligdig/front.svg",
  47586. extra: 1284/1094,
  47587. bottom: 84/1368
  47588. }
  47589. },
  47590. back: {
  47591. height: math.unit(8, "feet"),
  47592. weight: math.unit(1200, "lb"),
  47593. name: "Back",
  47594. image: {
  47595. source: "./media/characters/nyterious-daligdig/back.svg",
  47596. extra: 1301/1121,
  47597. bottom: 129/1430
  47598. }
  47599. },
  47600. mouth: {
  47601. height: math.unit(1.464, "feet"),
  47602. name: "Mouth",
  47603. image: {
  47604. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47605. }
  47606. },
  47607. },
  47608. [
  47609. {
  47610. name: "Small",
  47611. height: math.unit(8, "feet"),
  47612. default: true
  47613. },
  47614. {
  47615. name: "Normal",
  47616. height: math.unit(15, "feet")
  47617. },
  47618. {
  47619. name: "Macro",
  47620. height: math.unit(90, "feet")
  47621. },
  47622. ]
  47623. ))
  47624. characterMakers.push(() => makeCharacter(
  47625. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47626. {
  47627. front: {
  47628. height: math.unit(7 + 4/12, "feet"),
  47629. weight: math.unit(252, "lb"),
  47630. name: "Front",
  47631. image: {
  47632. source: "./media/characters/bandel/front.svg",
  47633. extra: 1946/1775,
  47634. bottom: 26/1972
  47635. }
  47636. },
  47637. back: {
  47638. height: math.unit(7 + 4/12, "feet"),
  47639. weight: math.unit(252, "lb"),
  47640. name: "Back",
  47641. image: {
  47642. source: "./media/characters/bandel/back.svg",
  47643. extra: 1940/1770,
  47644. bottom: 25/1965
  47645. }
  47646. },
  47647. maw: {
  47648. height: math.unit(2.15, "feet"),
  47649. name: "Maw",
  47650. image: {
  47651. source: "./media/characters/bandel/maw.svg"
  47652. }
  47653. },
  47654. stomach: {
  47655. height: math.unit(1.95, "feet"),
  47656. name: "Stomach",
  47657. image: {
  47658. source: "./media/characters/bandel/stomach.svg"
  47659. }
  47660. },
  47661. },
  47662. [
  47663. {
  47664. name: "Normal",
  47665. height: math.unit(7 + 4/12, "feet"),
  47666. default: true
  47667. },
  47668. ]
  47669. ))
  47670. characterMakers.push(() => makeCharacter(
  47671. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47672. {
  47673. front: {
  47674. height: math.unit(10 + 5/12, "feet"),
  47675. weight: math.unit(773.5, "kg"),
  47676. name: "Front",
  47677. image: {
  47678. source: "./media/characters/zed/front.svg",
  47679. extra: 987/941,
  47680. bottom: 52/1039
  47681. }
  47682. },
  47683. },
  47684. [
  47685. {
  47686. name: "Short",
  47687. height: math.unit(5 + 4/12, "feet")
  47688. },
  47689. {
  47690. name: "Average",
  47691. height: math.unit(10 + 5/12, "feet"),
  47692. default: true
  47693. },
  47694. {
  47695. name: "Mini-Macro",
  47696. height: math.unit(24 + 9/12, "feet")
  47697. },
  47698. {
  47699. name: "Macro",
  47700. height: math.unit(249, "feet")
  47701. },
  47702. {
  47703. name: "Mega-Macro",
  47704. height: math.unit(12490, "feet")
  47705. },
  47706. {
  47707. name: "Giga-Macro",
  47708. height: math.unit(24.9, "miles")
  47709. },
  47710. {
  47711. name: "Tera-Macro",
  47712. height: math.unit(24900, "miles")
  47713. },
  47714. {
  47715. name: "Cosmic Scale",
  47716. height: math.unit(38.9, "lightyears")
  47717. },
  47718. {
  47719. name: "Universal Scale",
  47720. height: math.unit(138e12, "lightyears")
  47721. },
  47722. ]
  47723. ))
  47724. characterMakers.push(() => makeCharacter(
  47725. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47726. {
  47727. front: {
  47728. height: math.unit(1561, "inches"),
  47729. name: "Front",
  47730. image: {
  47731. source: "./media/characters/ivan/front.svg",
  47732. extra: 1126/1071,
  47733. bottom: 26/1152
  47734. }
  47735. },
  47736. back: {
  47737. height: math.unit(1561, "inches"),
  47738. name: "Back",
  47739. image: {
  47740. source: "./media/characters/ivan/back.svg",
  47741. extra: 1134/1079,
  47742. bottom: 30/1164
  47743. }
  47744. },
  47745. },
  47746. [
  47747. {
  47748. name: "Normal",
  47749. height: math.unit(1561, "inches"),
  47750. default: true
  47751. },
  47752. ]
  47753. ))
  47754. characterMakers.push(() => makeCharacter(
  47755. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47756. {
  47757. front: {
  47758. height: math.unit(5 + 7/12, "feet"),
  47759. weight: math.unit(150, "lb"),
  47760. name: "Front",
  47761. image: {
  47762. source: "./media/characters/robin-arctic-hare/front.svg",
  47763. extra: 1148/974,
  47764. bottom: 20/1168
  47765. }
  47766. },
  47767. },
  47768. [
  47769. {
  47770. name: "Normal",
  47771. height: math.unit(5 + 7/12, "feet"),
  47772. default: true
  47773. },
  47774. ]
  47775. ))
  47776. characterMakers.push(() => makeCharacter(
  47777. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47778. {
  47779. side: {
  47780. height: math.unit(5, "feet"),
  47781. name: "Side",
  47782. image: {
  47783. source: "./media/characters/birch/side.svg",
  47784. extra: 985/796,
  47785. bottom: 111/1096
  47786. }
  47787. },
  47788. },
  47789. [
  47790. {
  47791. name: "Normal",
  47792. height: math.unit(5, "feet"),
  47793. default: true
  47794. },
  47795. ]
  47796. ))
  47797. characterMakers.push(() => makeCharacter(
  47798. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47799. {
  47800. front: {
  47801. height: math.unit(4, "feet"),
  47802. name: "Front",
  47803. image: {
  47804. source: "./media/characters/rasp/front.svg",
  47805. extra: 561/478,
  47806. bottom: 74/635
  47807. }
  47808. },
  47809. },
  47810. [
  47811. {
  47812. name: "Normal",
  47813. height: math.unit(4, "feet"),
  47814. default: true
  47815. },
  47816. ]
  47817. ))
  47818. characterMakers.push(() => makeCharacter(
  47819. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47820. {
  47821. front: {
  47822. height: math.unit(4 + 6/12, "feet"),
  47823. name: "Front",
  47824. image: {
  47825. source: "./media/characters/agatha/front.svg",
  47826. extra: 947/933,
  47827. bottom: 42/989
  47828. }
  47829. },
  47830. back: {
  47831. height: math.unit(4 + 6/12, "feet"),
  47832. name: "Back",
  47833. image: {
  47834. source: "./media/characters/agatha/back.svg",
  47835. extra: 935/922,
  47836. bottom: 48/983
  47837. }
  47838. },
  47839. },
  47840. [
  47841. {
  47842. name: "Normal",
  47843. height: math.unit(4 + 6 /12, "feet"),
  47844. default: true
  47845. },
  47846. {
  47847. name: "Max Size",
  47848. height: math.unit(500, "feet")
  47849. },
  47850. ]
  47851. ))
  47852. characterMakers.push(() => makeCharacter(
  47853. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47854. {
  47855. side: {
  47856. height: math.unit(30, "feet"),
  47857. name: "Side",
  47858. image: {
  47859. source: "./media/characters/roggy/side.svg",
  47860. extra: 909/643,
  47861. bottom: 63/972
  47862. }
  47863. },
  47864. lounging: {
  47865. height: math.unit(20, "feet"),
  47866. name: "Lounging",
  47867. image: {
  47868. source: "./media/characters/roggy/lounging.svg",
  47869. extra: 643/479,
  47870. bottom: 145/788
  47871. }
  47872. },
  47873. handpaw: {
  47874. height: math.unit(13.1, "feet"),
  47875. name: "Handpaw",
  47876. image: {
  47877. source: "./media/characters/roggy/handpaw.svg"
  47878. }
  47879. },
  47880. footpaw: {
  47881. height: math.unit(15.8, "feet"),
  47882. name: "Footpaw",
  47883. image: {
  47884. source: "./media/characters/roggy/footpaw.svg"
  47885. }
  47886. },
  47887. },
  47888. [
  47889. {
  47890. name: "Menacing",
  47891. height: math.unit(30, "feet"),
  47892. default: true
  47893. },
  47894. ]
  47895. ))
  47896. characterMakers.push(() => makeCharacter(
  47897. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47898. {
  47899. front: {
  47900. height: math.unit(5 + 7/12, "feet"),
  47901. weight: math.unit(135, "lb"),
  47902. name: "Front",
  47903. image: {
  47904. source: "./media/characters/naomi/front.svg",
  47905. extra: 1209/1154,
  47906. bottom: 129/1338
  47907. }
  47908. },
  47909. back: {
  47910. height: math.unit(5 + 7/12, "feet"),
  47911. weight: math.unit(135, "lb"),
  47912. name: "Back",
  47913. image: {
  47914. source: "./media/characters/naomi/back.svg",
  47915. extra: 1252/1190,
  47916. bottom: 23/1275
  47917. }
  47918. },
  47919. },
  47920. [
  47921. {
  47922. name: "Normal",
  47923. height: math.unit(5 + 7 /12, "feet"),
  47924. default: true
  47925. },
  47926. ]
  47927. ))
  47928. characterMakers.push(() => makeCharacter(
  47929. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47930. {
  47931. side: {
  47932. height: math.unit(35, "meters"),
  47933. name: "Side",
  47934. image: {
  47935. source: "./media/characters/kimpi/side.svg",
  47936. extra: 419/382,
  47937. bottom: 63/482
  47938. }
  47939. },
  47940. hand: {
  47941. height: math.unit(8.96, "meters"),
  47942. name: "Hand",
  47943. image: {
  47944. source: "./media/characters/kimpi/hand.svg"
  47945. }
  47946. },
  47947. },
  47948. [
  47949. {
  47950. name: "Normal",
  47951. height: math.unit(35, "meters"),
  47952. default: true
  47953. },
  47954. ]
  47955. ))
  47956. characterMakers.push(() => makeCharacter(
  47957. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47958. {
  47959. front: {
  47960. height: math.unit(4 + 4/12, "feet"),
  47961. name: "Front",
  47962. image: {
  47963. source: "./media/characters/pepper-purrloin/front.svg",
  47964. extra: 1141/1024,
  47965. bottom: 21/1162
  47966. }
  47967. },
  47968. },
  47969. [
  47970. {
  47971. name: "Normal",
  47972. height: math.unit(4 + 4/12, "feet"),
  47973. default: true
  47974. },
  47975. ]
  47976. ))
  47977. characterMakers.push(() => makeCharacter(
  47978. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47979. {
  47980. front: {
  47981. height: math.unit(6 + 2/12, "feet"),
  47982. name: "Front",
  47983. image: {
  47984. source: "./media/characters/raphael/front.svg",
  47985. extra: 1101/962,
  47986. bottom: 59/1160
  47987. }
  47988. },
  47989. },
  47990. [
  47991. {
  47992. name: "Normal",
  47993. height: math.unit(6 + 2/12, "feet"),
  47994. default: true
  47995. },
  47996. ]
  47997. ))
  47998. characterMakers.push(() => makeCharacter(
  47999. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  48000. {
  48001. front: {
  48002. height: math.unit(6, "feet"),
  48003. weight: math.unit(150, "lb"),
  48004. name: "Front",
  48005. image: {
  48006. source: "./media/characters/victor-williams/front.svg",
  48007. extra: 1894/1825,
  48008. bottom: 67/1961
  48009. }
  48010. },
  48011. },
  48012. [
  48013. {
  48014. name: "Normal",
  48015. height: math.unit(6, "feet"),
  48016. default: true
  48017. },
  48018. ]
  48019. ))
  48020. characterMakers.push(() => makeCharacter(
  48021. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  48022. {
  48023. front: {
  48024. height: math.unit(5 + 8/12, "feet"),
  48025. weight: math.unit(150, "lb"),
  48026. name: "Front",
  48027. image: {
  48028. source: "./media/characters/rachel/front.svg",
  48029. extra: 1902/1787,
  48030. bottom: 46/1948
  48031. }
  48032. },
  48033. },
  48034. [
  48035. {
  48036. name: "Base Height",
  48037. height: math.unit(5 + 8/12, "feet"),
  48038. default: true
  48039. },
  48040. {
  48041. name: "Macro",
  48042. height: math.unit(200, "feet")
  48043. },
  48044. {
  48045. name: "Mega Macro",
  48046. height: math.unit(1, "mile")
  48047. },
  48048. {
  48049. name: "Giga Macro",
  48050. height: math.unit(1500, "miles")
  48051. },
  48052. {
  48053. name: "Tera Macro",
  48054. height: math.unit(8000, "miles")
  48055. },
  48056. {
  48057. name: "Tera Macro+",
  48058. height: math.unit(2e5, "miles")
  48059. },
  48060. ]
  48061. ))
  48062. characterMakers.push(() => makeCharacter(
  48063. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  48064. {
  48065. front: {
  48066. height: math.unit(6.5, "feet"),
  48067. name: "Front",
  48068. image: {
  48069. source: "./media/characters/svetlana-rozovskaya/front.svg",
  48070. extra: 860/819,
  48071. bottom: 307/1167
  48072. }
  48073. },
  48074. back: {
  48075. height: math.unit(6.5, "feet"),
  48076. name: "Back",
  48077. image: {
  48078. source: "./media/characters/svetlana-rozovskaya/back.svg",
  48079. extra: 880/837,
  48080. bottom: 395/1275
  48081. }
  48082. },
  48083. sleeping: {
  48084. height: math.unit(2.79, "feet"),
  48085. name: "Sleeping",
  48086. image: {
  48087. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  48088. extra: 465/383,
  48089. bottom: 263/728
  48090. }
  48091. },
  48092. maw: {
  48093. height: math.unit(2.52, "feet"),
  48094. name: "Maw",
  48095. image: {
  48096. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  48097. }
  48098. },
  48099. },
  48100. [
  48101. {
  48102. name: "Normal",
  48103. height: math.unit(6.5, "feet"),
  48104. default: true
  48105. },
  48106. ]
  48107. ))
  48108. characterMakers.push(() => makeCharacter(
  48109. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  48110. {
  48111. front: {
  48112. height: math.unit(5, "feet"),
  48113. name: "Front",
  48114. image: {
  48115. source: "./media/characters/nova-nerium/front.svg",
  48116. extra: 1548/1392,
  48117. bottom: 374/1922
  48118. }
  48119. },
  48120. back: {
  48121. height: math.unit(5, "feet"),
  48122. name: "Back",
  48123. image: {
  48124. source: "./media/characters/nova-nerium/back.svg",
  48125. extra: 1658/1468,
  48126. bottom: 257/1915
  48127. }
  48128. },
  48129. },
  48130. [
  48131. {
  48132. name: "Normal",
  48133. height: math.unit(5, "feet"),
  48134. default: true
  48135. },
  48136. ]
  48137. ))
  48138. characterMakers.push(() => makeCharacter(
  48139. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  48140. {
  48141. front: {
  48142. height: math.unit(5 + 4/12, "feet"),
  48143. name: "Front",
  48144. image: {
  48145. source: "./media/characters/ashe-pyriph/front.svg",
  48146. extra: 1935/1747,
  48147. bottom: 60/1995
  48148. }
  48149. },
  48150. },
  48151. [
  48152. {
  48153. name: "Normal",
  48154. height: math.unit(5 + 4/12, "feet"),
  48155. default: true
  48156. },
  48157. ]
  48158. ))
  48159. characterMakers.push(() => makeCharacter(
  48160. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  48161. {
  48162. front: {
  48163. height: math.unit(8.7, "feet"),
  48164. name: "Front",
  48165. image: {
  48166. source: "./media/characters/flicker-wisp/front.svg",
  48167. extra: 1835/1613,
  48168. bottom: 449/2284
  48169. }
  48170. },
  48171. side: {
  48172. height: math.unit(8.7, "feet"),
  48173. name: "Side",
  48174. image: {
  48175. source: "./media/characters/flicker-wisp/side.svg",
  48176. extra: 1841/1642,
  48177. bottom: 336/2177
  48178. },
  48179. default: true
  48180. },
  48181. maw: {
  48182. height: math.unit(3.35, "feet"),
  48183. name: "Maw",
  48184. image: {
  48185. source: "./media/characters/flicker-wisp/maw.svg",
  48186. extra: 2338/1506,
  48187. bottom: 0/2338
  48188. }
  48189. },
  48190. ovipositor: {
  48191. height: math.unit(4.95, "feet"),
  48192. name: "Ovipositor",
  48193. image: {
  48194. source: "./media/characters/flicker-wisp/ovipositor.svg"
  48195. }
  48196. },
  48197. egg: {
  48198. height: math.unit(0.385, "feet"),
  48199. weight: math.unit(2, "lb"),
  48200. name: "Egg",
  48201. image: {
  48202. source: "./media/characters/flicker-wisp/egg.svg"
  48203. }
  48204. },
  48205. },
  48206. [
  48207. {
  48208. name: "Normal",
  48209. height: math.unit(8.7, "feet"),
  48210. default: true
  48211. },
  48212. ]
  48213. ))
  48214. characterMakers.push(() => makeCharacter(
  48215. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  48216. {
  48217. side: {
  48218. height: math.unit(11, "feet"),
  48219. name: "Side",
  48220. image: {
  48221. source: "./media/characters/faefnul/side.svg",
  48222. extra: 1100/1007,
  48223. bottom: 0/1100
  48224. }
  48225. },
  48226. },
  48227. [
  48228. {
  48229. name: "Normal",
  48230. height: math.unit(11, "feet"),
  48231. default: true
  48232. },
  48233. ]
  48234. ))
  48235. characterMakers.push(() => makeCharacter(
  48236. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  48237. {
  48238. front: {
  48239. height: math.unit(6 + 2/12, "feet"),
  48240. name: "Front",
  48241. image: {
  48242. source: "./media/characters/shady/front.svg",
  48243. extra: 502/461,
  48244. bottom: 9/511
  48245. }
  48246. },
  48247. kneeling: {
  48248. height: math.unit(4.6, "feet"),
  48249. name: "Kneeling",
  48250. image: {
  48251. source: "./media/characters/shady/kneeling.svg",
  48252. extra: 1328/1219,
  48253. bottom: 117/1445
  48254. }
  48255. },
  48256. maw: {
  48257. height: math.unit(2, "feet"),
  48258. name: "Maw",
  48259. image: {
  48260. source: "./media/characters/shady/maw.svg"
  48261. }
  48262. },
  48263. },
  48264. [
  48265. {
  48266. name: "Nano",
  48267. height: math.unit(1, "mm")
  48268. },
  48269. {
  48270. name: "Micro",
  48271. height: math.unit(12, "mm")
  48272. },
  48273. {
  48274. name: "Tiny",
  48275. height: math.unit(3, "inches")
  48276. },
  48277. {
  48278. name: "Normal",
  48279. height: math.unit(6 + 2/12, "feet"),
  48280. default: true
  48281. },
  48282. {
  48283. name: "Big",
  48284. height: math.unit(15, "feet")
  48285. },
  48286. {
  48287. name: "Macro",
  48288. height: math.unit(150, "feet")
  48289. },
  48290. {
  48291. name: "Titanic",
  48292. height: math.unit(500, "feet")
  48293. },
  48294. ]
  48295. ))
  48296. characterMakers.push(() => makeCharacter(
  48297. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  48298. {
  48299. front: {
  48300. height: math.unit(12, "feet"),
  48301. name: "Front",
  48302. image: {
  48303. source: "./media/characters/fenrir/front.svg",
  48304. extra: 968/875,
  48305. bottom: 22/990
  48306. }
  48307. },
  48308. },
  48309. [
  48310. {
  48311. name: "Big",
  48312. height: math.unit(12, "feet"),
  48313. default: true
  48314. },
  48315. ]
  48316. ))
  48317. characterMakers.push(() => makeCharacter(
  48318. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  48319. {
  48320. front: {
  48321. height: math.unit(5 + 4/12, "feet"),
  48322. name: "Front",
  48323. image: {
  48324. source: "./media/characters/makar/front.svg",
  48325. extra: 1181/1112,
  48326. bottom: 78/1259
  48327. }
  48328. },
  48329. },
  48330. [
  48331. {
  48332. name: "Normal",
  48333. height: math.unit(5 + 4/12, "feet"),
  48334. default: true
  48335. },
  48336. ]
  48337. ))
  48338. characterMakers.push(() => makeCharacter(
  48339. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  48340. {
  48341. front: {
  48342. height: math.unit(5 + 7/12, "feet"),
  48343. name: "Front",
  48344. image: {
  48345. source: "./media/characters/callow/front.svg",
  48346. extra: 1482/1304,
  48347. bottom: 23/1505
  48348. }
  48349. },
  48350. back: {
  48351. height: math.unit(5 + 7/12, "feet"),
  48352. name: "Back",
  48353. image: {
  48354. source: "./media/characters/callow/back.svg",
  48355. extra: 1484/1296,
  48356. bottom: 25/1509
  48357. }
  48358. },
  48359. },
  48360. [
  48361. {
  48362. name: "Micro",
  48363. height: math.unit(3, "inches"),
  48364. default: true
  48365. },
  48366. {
  48367. name: "Normal",
  48368. height: math.unit(5 + 7/12, "feet")
  48369. },
  48370. ]
  48371. ))
  48372. characterMakers.push(() => makeCharacter(
  48373. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  48374. {
  48375. front: {
  48376. height: math.unit(6 + 2/12, "feet"),
  48377. name: "Front",
  48378. image: {
  48379. source: "./media/characters/natel/front.svg",
  48380. extra: 1833/1692,
  48381. bottom: 166/1999
  48382. }
  48383. },
  48384. },
  48385. [
  48386. {
  48387. name: "Normal",
  48388. height: math.unit(6 + 2/12, "feet"),
  48389. default: true
  48390. },
  48391. ]
  48392. ))
  48393. characterMakers.push(() => makeCharacter(
  48394. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  48395. {
  48396. front: {
  48397. height: math.unit(1.75, "meters"),
  48398. name: "Front",
  48399. image: {
  48400. source: "./media/characters/misu/front.svg",
  48401. extra: 1690/1558,
  48402. bottom: 234/1924
  48403. }
  48404. },
  48405. back: {
  48406. height: math.unit(1.75, "meters"),
  48407. name: "Back",
  48408. image: {
  48409. source: "./media/characters/misu/back.svg",
  48410. extra: 1762/1618,
  48411. bottom: 146/1908
  48412. }
  48413. },
  48414. frontNude: {
  48415. height: math.unit(1.75, "meters"),
  48416. name: "Front (Nude)",
  48417. image: {
  48418. source: "./media/characters/misu/front-nude.svg",
  48419. extra: 1690/1558,
  48420. bottom: 234/1924
  48421. }
  48422. },
  48423. backNude: {
  48424. height: math.unit(1.75, "meters"),
  48425. name: "Back (Nude)",
  48426. image: {
  48427. source: "./media/characters/misu/back-nude.svg",
  48428. extra: 1762/1618,
  48429. bottom: 146/1908
  48430. }
  48431. },
  48432. frontErect: {
  48433. height: math.unit(1.75, "meters"),
  48434. name: "Front (Erect)",
  48435. image: {
  48436. source: "./media/characters/misu/front-erect.svg",
  48437. extra: 1690/1558,
  48438. bottom: 234/1924
  48439. }
  48440. },
  48441. maw: {
  48442. height: math.unit(0.47, "meters"),
  48443. name: "Maw",
  48444. image: {
  48445. source: "./media/characters/misu/maw.svg"
  48446. }
  48447. },
  48448. head: {
  48449. height: math.unit(0.35, "meters"),
  48450. name: "Head",
  48451. image: {
  48452. source: "./media/characters/misu/head.svg"
  48453. }
  48454. },
  48455. rear: {
  48456. height: math.unit(0.47, "meters"),
  48457. name: "Rear",
  48458. image: {
  48459. source: "./media/characters/misu/rear.svg"
  48460. }
  48461. },
  48462. },
  48463. [
  48464. {
  48465. name: "Normal",
  48466. height: math.unit(1.75, "meters")
  48467. },
  48468. {
  48469. name: "Not good for the people",
  48470. height: math.unit(42, "meters")
  48471. },
  48472. {
  48473. name: "Not good for the neighborhood",
  48474. height: math.unit(135, "meters")
  48475. },
  48476. {
  48477. name: "Bit bigger problem",
  48478. height: math.unit(380, "meters"),
  48479. default: true
  48480. },
  48481. {
  48482. name: "Not good for the city",
  48483. height: math.unit(1.5, "km")
  48484. },
  48485. {
  48486. name: "Not good for the county",
  48487. height: math.unit(5.5, "km")
  48488. },
  48489. {
  48490. name: "Not good for the state",
  48491. height: math.unit(25, "km")
  48492. },
  48493. {
  48494. name: "Not good for the country",
  48495. height: math.unit(125, "km")
  48496. },
  48497. {
  48498. name: "Not good for the continent",
  48499. height: math.unit(2100, "km")
  48500. },
  48501. {
  48502. name: "Not good for the planet",
  48503. height: math.unit(35000, "km")
  48504. },
  48505. {
  48506. name: "Just no",
  48507. height: math.unit(8.5e18, "km")
  48508. },
  48509. ]
  48510. ))
  48511. characterMakers.push(() => makeCharacter(
  48512. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  48513. {
  48514. front: {
  48515. height: math.unit(6.5, "feet"),
  48516. name: "Front",
  48517. image: {
  48518. source: "./media/characters/poppy/front.svg",
  48519. extra: 1878/1812,
  48520. bottom: 43/1921
  48521. }
  48522. },
  48523. feet: {
  48524. height: math.unit(1.06, "feet"),
  48525. name: "Feet",
  48526. image: {
  48527. source: "./media/characters/poppy/feet.svg",
  48528. extra: 1083/1083,
  48529. bottom: 87/1170
  48530. }
  48531. },
  48532. },
  48533. [
  48534. {
  48535. name: "Human",
  48536. height: math.unit(6.5, "feet")
  48537. },
  48538. {
  48539. name: "Default",
  48540. height: math.unit(300, "feet"),
  48541. default: true
  48542. },
  48543. {
  48544. name: "Huge",
  48545. height: math.unit(850, "feet")
  48546. },
  48547. {
  48548. name: "Mega",
  48549. height: math.unit(8000, "feet")
  48550. },
  48551. {
  48552. name: "Giga",
  48553. height: math.unit(300, "miles")
  48554. },
  48555. ]
  48556. ))
  48557. characterMakers.push(() => makeCharacter(
  48558. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  48559. {
  48560. bipedal: {
  48561. height: math.unit(7, "feet"),
  48562. name: "Bipedal",
  48563. image: {
  48564. source: "./media/characters/zener/bipedal.svg",
  48565. extra: 874/805,
  48566. bottom: 109/983
  48567. }
  48568. },
  48569. quadrupedal: {
  48570. height: math.unit(4.64, "feet"),
  48571. name: "Quadrupedal",
  48572. image: {
  48573. source: "./media/characters/zener/quadrupedal.svg",
  48574. extra: 638/507,
  48575. bottom: 190/828
  48576. }
  48577. },
  48578. cock: {
  48579. height: math.unit(18, "inches"),
  48580. name: "Cock",
  48581. image: {
  48582. source: "./media/characters/zener/cock.svg"
  48583. }
  48584. },
  48585. },
  48586. [
  48587. {
  48588. name: "Normal",
  48589. height: math.unit(7, "feet"),
  48590. default: true
  48591. },
  48592. ]
  48593. ))
  48594. characterMakers.push(() => makeCharacter(
  48595. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48596. {
  48597. nude: {
  48598. height: math.unit(5 + 6/12, "feet"),
  48599. name: "Nude",
  48600. image: {
  48601. source: "./media/characters/charlie-dog/nude.svg",
  48602. extra: 768/734,
  48603. bottom: 26/794
  48604. }
  48605. },
  48606. dressed: {
  48607. height: math.unit(5 + 6/12, "feet"),
  48608. name: "Dressed",
  48609. image: {
  48610. source: "./media/characters/charlie-dog/dressed.svg",
  48611. extra: 768/734,
  48612. bottom: 26/794
  48613. }
  48614. },
  48615. },
  48616. [
  48617. {
  48618. name: "Normal",
  48619. height: math.unit(5 + 6/12, "feet"),
  48620. default: true
  48621. },
  48622. ]
  48623. ))
  48624. characterMakers.push(() => makeCharacter(
  48625. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48626. {
  48627. front: {
  48628. height: math.unit(6 + 4/12, "feet"),
  48629. name: "Front",
  48630. image: {
  48631. source: "./media/characters/ir'istrasz/front.svg",
  48632. extra: 1014/977,
  48633. bottom: 65/1079
  48634. }
  48635. },
  48636. back: {
  48637. height: math.unit(6 + 4/12, "feet"),
  48638. name: "Back",
  48639. image: {
  48640. source: "./media/characters/ir'istrasz/back.svg",
  48641. extra: 1024/992,
  48642. bottom: 34/1058
  48643. }
  48644. },
  48645. },
  48646. [
  48647. {
  48648. name: "Normal",
  48649. height: math.unit(6 + 4/12, "feet"),
  48650. default: true
  48651. },
  48652. ]
  48653. ))
  48654. characterMakers.push(() => makeCharacter(
  48655. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48656. {
  48657. front: {
  48658. height: math.unit(5 + 8/12, "feet"),
  48659. name: "Front",
  48660. image: {
  48661. source: "./media/characters/dee-ditto/front.svg",
  48662. extra: 1874/1785,
  48663. bottom: 68/1942
  48664. }
  48665. },
  48666. back: {
  48667. height: math.unit(5 + 8/12, "feet"),
  48668. name: "Back",
  48669. image: {
  48670. source: "./media/characters/dee-ditto/back.svg",
  48671. extra: 1870/1783,
  48672. bottom: 77/1947
  48673. }
  48674. },
  48675. },
  48676. [
  48677. {
  48678. name: "Normal",
  48679. height: math.unit(5 + 8/12, "feet"),
  48680. default: true
  48681. },
  48682. ]
  48683. ))
  48684. characterMakers.push(() => makeCharacter(
  48685. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48686. {
  48687. front: {
  48688. height: math.unit(7 + 6/12, "feet"),
  48689. name: "Front",
  48690. image: {
  48691. source: "./media/characters/fey/front.svg",
  48692. extra: 995/979,
  48693. bottom: 30/1025
  48694. }
  48695. },
  48696. back: {
  48697. height: math.unit(7 + 6/12, "feet"),
  48698. name: "Back",
  48699. image: {
  48700. source: "./media/characters/fey/back.svg",
  48701. extra: 1079/1008,
  48702. bottom: 5/1084
  48703. }
  48704. },
  48705. dressed: {
  48706. height: math.unit(7 + 6/12, "feet"),
  48707. name: "Dressed",
  48708. image: {
  48709. source: "./media/characters/fey/dressed.svg",
  48710. extra: 995/979,
  48711. bottom: 30/1025
  48712. }
  48713. },
  48714. },
  48715. [
  48716. {
  48717. name: "Normal",
  48718. height: math.unit(7 + 6/12, "feet"),
  48719. default: true
  48720. },
  48721. ]
  48722. ))
  48723. characterMakers.push(() => makeCharacter(
  48724. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48725. {
  48726. standing: {
  48727. height: math.unit(17, "feet"),
  48728. name: "Standing",
  48729. image: {
  48730. source: "./media/characters/aster/standing.svg",
  48731. extra: 1798/1598,
  48732. bottom: 117/1915
  48733. }
  48734. },
  48735. },
  48736. [
  48737. {
  48738. name: "Normal",
  48739. height: math.unit(17, "feet"),
  48740. default: true
  48741. },
  48742. {
  48743. name: "Homewrecker",
  48744. height: math.unit(95, "feet")
  48745. },
  48746. {
  48747. name: "Planet Devourer",
  48748. height: math.unit(1008000, "miles")
  48749. },
  48750. ]
  48751. ))
  48752. characterMakers.push(() => makeCharacter(
  48753. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48754. {
  48755. front: {
  48756. height: math.unit(6 + 5/12, "feet"),
  48757. weight: math.unit(265, "lb"),
  48758. name: "Front",
  48759. image: {
  48760. source: "./media/characters/devon-childs/front.svg",
  48761. extra: 1795/1721,
  48762. bottom: 41/1836
  48763. }
  48764. },
  48765. side: {
  48766. height: math.unit(6 + 5/12, "feet"),
  48767. weight: math.unit(265, "lb"),
  48768. name: "Side",
  48769. image: {
  48770. source: "./media/characters/devon-childs/side.svg",
  48771. extra: 1812/1738,
  48772. bottom: 30/1842
  48773. }
  48774. },
  48775. back: {
  48776. height: math.unit(6 + 5/12, "feet"),
  48777. weight: math.unit(265, "lb"),
  48778. name: "Back",
  48779. image: {
  48780. source: "./media/characters/devon-childs/back.svg",
  48781. extra: 1808/1735,
  48782. bottom: 23/1831
  48783. }
  48784. },
  48785. hand: {
  48786. height: math.unit(1.464, "feet"),
  48787. name: "Hand",
  48788. image: {
  48789. source: "./media/characters/devon-childs/hand.svg"
  48790. }
  48791. },
  48792. foot: {
  48793. height: math.unit(1.6, "feet"),
  48794. name: "Foot",
  48795. image: {
  48796. source: "./media/characters/devon-childs/foot.svg"
  48797. }
  48798. },
  48799. },
  48800. [
  48801. {
  48802. name: "Micro",
  48803. height: math.unit(7, "cm")
  48804. },
  48805. {
  48806. name: "Normal",
  48807. height: math.unit(6 + 5/12, "feet"),
  48808. default: true
  48809. },
  48810. {
  48811. name: "Macro",
  48812. height: math.unit(154, "feet")
  48813. },
  48814. ]
  48815. ))
  48816. characterMakers.push(() => makeCharacter(
  48817. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48818. {
  48819. front: {
  48820. height: math.unit(6, "feet"),
  48821. weight: math.unit(180, "lb"),
  48822. name: "Front",
  48823. image: {
  48824. source: "./media/characters/lydemox-vir/front.svg",
  48825. extra: 1632/1435,
  48826. bottom: 58/1690
  48827. }
  48828. },
  48829. frontSFW: {
  48830. height: math.unit(6, "feet"),
  48831. weight: math.unit(180, "lb"),
  48832. name: "Front (SFW)",
  48833. image: {
  48834. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48835. extra: 1632/1435,
  48836. bottom: 58/1690
  48837. }
  48838. },
  48839. back: {
  48840. height: math.unit(6, "feet"),
  48841. weight: math.unit(180, "lb"),
  48842. name: "Back",
  48843. image: {
  48844. source: "./media/characters/lydemox-vir/back.svg",
  48845. extra: 1593/1408,
  48846. bottom: 31/1624
  48847. }
  48848. },
  48849. paw: {
  48850. height: math.unit(1.85, "feet"),
  48851. name: "Paw",
  48852. image: {
  48853. source: "./media/characters/lydemox-vir/paw.svg"
  48854. }
  48855. },
  48856. dick: {
  48857. height: math.unit(1.8, "feet"),
  48858. name: "Dick",
  48859. image: {
  48860. source: "./media/characters/lydemox-vir/dick.svg"
  48861. }
  48862. },
  48863. },
  48864. [
  48865. {
  48866. name: "Macro",
  48867. height: math.unit(100, "feet"),
  48868. default: true
  48869. },
  48870. {
  48871. name: "Teramacro",
  48872. height: math.unit(1, "earth")
  48873. },
  48874. {
  48875. name: "Planetary",
  48876. height: math.unit(20, "earths")
  48877. },
  48878. ]
  48879. ))
  48880. characterMakers.push(() => makeCharacter(
  48881. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48882. {
  48883. front: {
  48884. height: math.unit(15 + 8/12, "feet"),
  48885. weight: math.unit(1237, "kg"),
  48886. name: "Front",
  48887. image: {
  48888. source: "./media/characters/mia/front.svg",
  48889. extra: 1573/1446,
  48890. bottom: 58/1631
  48891. }
  48892. },
  48893. },
  48894. [
  48895. {
  48896. name: "Small",
  48897. height: math.unit(9 + 5/12, "feet")
  48898. },
  48899. {
  48900. name: "Normal",
  48901. height: math.unit(15 + 8/12, "feet"),
  48902. default: true
  48903. },
  48904. ]
  48905. ))
  48906. characterMakers.push(() => makeCharacter(
  48907. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48908. {
  48909. front: {
  48910. height: math.unit(10 + 6/12, "feet"),
  48911. weight: math.unit(1.3, "tons"),
  48912. name: "Front",
  48913. image: {
  48914. source: "./media/characters/mr-graves/front.svg",
  48915. extra: 1779/1695,
  48916. bottom: 198/1977
  48917. }
  48918. },
  48919. },
  48920. [
  48921. {
  48922. name: "Normal",
  48923. height: math.unit(10 + 6 /12, "feet"),
  48924. default: true
  48925. },
  48926. ]
  48927. ))
  48928. characterMakers.push(() => makeCharacter(
  48929. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48930. {
  48931. dressedFront: {
  48932. height: math.unit(5 + 8/12, "feet"),
  48933. weight: math.unit(125, "lb"),
  48934. name: "Dressed (Front)",
  48935. image: {
  48936. source: "./media/characters/jess/dressed-front.svg",
  48937. extra: 1176/1152,
  48938. bottom: 42/1218
  48939. }
  48940. },
  48941. dressedSide: {
  48942. height: math.unit(5 + 8/12, "feet"),
  48943. weight: math.unit(125, "lb"),
  48944. name: "Dressed (Side)",
  48945. image: {
  48946. source: "./media/characters/jess/dressed-side.svg",
  48947. extra: 1204/1190,
  48948. bottom: 6/1210
  48949. }
  48950. },
  48951. nudeFront: {
  48952. height: math.unit(5 + 8/12, "feet"),
  48953. weight: math.unit(125, "lb"),
  48954. name: "Nude (Front)",
  48955. image: {
  48956. source: "./media/characters/jess/nude-front.svg",
  48957. extra: 1176/1152,
  48958. bottom: 42/1218
  48959. }
  48960. },
  48961. nudeSide: {
  48962. height: math.unit(5 + 8/12, "feet"),
  48963. weight: math.unit(125, "lb"),
  48964. name: "Nude (Side)",
  48965. image: {
  48966. source: "./media/characters/jess/nude-side.svg",
  48967. extra: 1204/1190,
  48968. bottom: 6/1210
  48969. }
  48970. },
  48971. organsFront: {
  48972. height: math.unit(2.83799342105, "feet"),
  48973. name: "Organs (Front)",
  48974. image: {
  48975. source: "./media/characters/jess/organs-front.svg"
  48976. }
  48977. },
  48978. organsSide: {
  48979. height: math.unit(2.64225290474, "feet"),
  48980. name: "Organs (Side)",
  48981. image: {
  48982. source: "./media/characters/jess/organs-side.svg"
  48983. }
  48984. },
  48985. digestiveTractFront: {
  48986. height: math.unit(2.8106580871, "feet"),
  48987. name: "Digestive Tract (Front)",
  48988. image: {
  48989. source: "./media/characters/jess/digestive-tract-front.svg"
  48990. }
  48991. },
  48992. digestiveTractSide: {
  48993. height: math.unit(2.54365045014, "feet"),
  48994. name: "Digestive Tract (Side)",
  48995. image: {
  48996. source: "./media/characters/jess/digestive-tract-side.svg"
  48997. }
  48998. },
  48999. respiratorySystemFront: {
  49000. height: math.unit(1.11196233456, "feet"),
  49001. name: "Respiratory System (Front)",
  49002. image: {
  49003. source: "./media/characters/jess/respiratory-system-front.svg"
  49004. }
  49005. },
  49006. respiratorySystemSide: {
  49007. height: math.unit(0.89327966297, "feet"),
  49008. name: "Respiratory System (Side)",
  49009. image: {
  49010. source: "./media/characters/jess/respiratory-system-side.svg"
  49011. }
  49012. },
  49013. urinaryTractFront: {
  49014. height: math.unit(1.16126356186, "feet"),
  49015. name: "Urinary Tract (Front)",
  49016. image: {
  49017. source: "./media/characters/jess/urinary-tract-front.svg"
  49018. }
  49019. },
  49020. urinaryTractSide: {
  49021. height: math.unit(1.20910039627, "feet"),
  49022. name: "Urinary Tract (Side)",
  49023. image: {
  49024. source: "./media/characters/jess/urinary-tract-side.svg"
  49025. }
  49026. },
  49027. reproductiveOrgansFront: {
  49028. height: math.unit(0.48422591566, "feet"),
  49029. name: "Reproductive Organs (Front)",
  49030. image: {
  49031. source: "./media/characters/jess/reproductive-organs-front.svg"
  49032. }
  49033. },
  49034. reproductiveOrgansSide: {
  49035. height: math.unit(0.61553314481, "feet"),
  49036. name: "Reproductive Organs (Side)",
  49037. image: {
  49038. source: "./media/characters/jess/reproductive-organs-side.svg"
  49039. }
  49040. },
  49041. breastsFront: {
  49042. height: math.unit(0.47690395121, "feet"),
  49043. name: "Breasts (Front)",
  49044. image: {
  49045. source: "./media/characters/jess/breasts-front.svg"
  49046. }
  49047. },
  49048. breastsSide: {
  49049. height: math.unit(0.30556998307, "feet"),
  49050. name: "Breasts (Side)",
  49051. image: {
  49052. source: "./media/characters/jess/breasts-side.svg"
  49053. }
  49054. },
  49055. heartFront: {
  49056. height: math.unit(0.53011022622, "feet"),
  49057. name: "Heart (Front)",
  49058. image: {
  49059. source: "./media/characters/jess/heart-front.svg"
  49060. }
  49061. },
  49062. heartSide: {
  49063. height: math.unit(0.51790695213, "feet"),
  49064. name: "Heart (Side)",
  49065. image: {
  49066. source: "./media/characters/jess/heart-side.svg"
  49067. }
  49068. },
  49069. earsAndNoseFront: {
  49070. height: math.unit(0.29385483995, "feet"),
  49071. name: "Ears and Nose (Front)",
  49072. image: {
  49073. source: "./media/characters/jess/ears-and-nose-front.svg"
  49074. }
  49075. },
  49076. earsAndNoseSide: {
  49077. height: math.unit(0.18109658741, "feet"),
  49078. name: "Ears and Nose (Side)",
  49079. image: {
  49080. source: "./media/characters/jess/ears-and-nose-side.svg"
  49081. }
  49082. },
  49083. },
  49084. [
  49085. {
  49086. name: "Normal",
  49087. height: math.unit(5 + 8/12, "feet"),
  49088. default: true
  49089. },
  49090. ]
  49091. ))
  49092. characterMakers.push(() => makeCharacter(
  49093. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  49094. {
  49095. front: {
  49096. height: math.unit(6, "feet"),
  49097. weight: math.unit(6.64467e-7, "grams"),
  49098. name: "Front",
  49099. image: {
  49100. source: "./media/characters/wimpering/front.svg",
  49101. extra: 597/587,
  49102. bottom: 34/631
  49103. }
  49104. },
  49105. },
  49106. [
  49107. {
  49108. name: "Micro",
  49109. height: math.unit(0.4, "mm"),
  49110. default: true
  49111. },
  49112. ]
  49113. ))
  49114. characterMakers.push(() => makeCharacter(
  49115. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  49116. {
  49117. front: {
  49118. height: math.unit(5 + 2/12, "feet"),
  49119. weight: math.unit(110, "lb"),
  49120. name: "Front",
  49121. image: {
  49122. source: "./media/characters/keltre/front.svg",
  49123. extra: 1099/1057,
  49124. bottom: 22/1121
  49125. }
  49126. },
  49127. back: {
  49128. height: math.unit(5 + 2/12, "feet"),
  49129. weight: math.unit(110, "lb"),
  49130. name: "Back",
  49131. image: {
  49132. source: "./media/characters/keltre/back.svg",
  49133. extra: 1095/1053,
  49134. bottom: 17/1112
  49135. }
  49136. },
  49137. dressed: {
  49138. height: math.unit(5 + 2/12, "feet"),
  49139. weight: math.unit(110, "lb"),
  49140. name: "Dressed",
  49141. image: {
  49142. source: "./media/characters/keltre/dressed.svg",
  49143. extra: 1099/1057,
  49144. bottom: 22/1121
  49145. }
  49146. },
  49147. winter: {
  49148. height: math.unit(5 + 2/12, "feet"),
  49149. weight: math.unit(110, "lb"),
  49150. name: "Winter",
  49151. image: {
  49152. source: "./media/characters/keltre/winter.svg",
  49153. extra: 1099/1057,
  49154. bottom: 22/1121
  49155. }
  49156. },
  49157. head: {
  49158. height: math.unit(1.61 * 0.86, "feet"),
  49159. name: "Head",
  49160. image: {
  49161. source: "./media/characters/keltre/head.svg",
  49162. extra: 534/421,
  49163. bottom: 0/534
  49164. }
  49165. },
  49166. hand: {
  49167. height: math.unit(1.3 * 0.86, "feet"),
  49168. name: "Hand",
  49169. image: {
  49170. source: "./media/characters/keltre/hand.svg"
  49171. }
  49172. },
  49173. foot: {
  49174. height: math.unit(1.8 * 0.86, "feet"),
  49175. name: "Foot",
  49176. image: {
  49177. source: "./media/characters/keltre/foot.svg"
  49178. }
  49179. },
  49180. },
  49181. [
  49182. {
  49183. name: "Fine",
  49184. height: math.unit(1, "inch")
  49185. },
  49186. {
  49187. name: "Dimnutive",
  49188. height: math.unit(4, "inches")
  49189. },
  49190. {
  49191. name: "Tiny",
  49192. height: math.unit(1, "foot")
  49193. },
  49194. {
  49195. name: "Small",
  49196. height: math.unit(3, "feet")
  49197. },
  49198. {
  49199. name: "Normal",
  49200. height: math.unit(5 + 2/12, "feet"),
  49201. default: true
  49202. },
  49203. ]
  49204. ))
  49205. characterMakers.push(() => makeCharacter(
  49206. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  49207. {
  49208. front: {
  49209. height: math.unit(6 + 2/12, "feet"),
  49210. name: "Front",
  49211. image: {
  49212. source: "./media/characters/nox/front.svg",
  49213. extra: 1917/1830,
  49214. bottom: 74/1991
  49215. }
  49216. },
  49217. back: {
  49218. height: math.unit(6 + 2/12, "feet"),
  49219. name: "Back",
  49220. image: {
  49221. source: "./media/characters/nox/back.svg",
  49222. extra: 1896/1815,
  49223. bottom: 21/1917
  49224. }
  49225. },
  49226. head: {
  49227. height: math.unit(1.1, "feet"),
  49228. name: "Head",
  49229. image: {
  49230. source: "./media/characters/nox/head.svg",
  49231. extra: 874/704,
  49232. bottom: 0/874
  49233. }
  49234. },
  49235. tattoo: {
  49236. height: math.unit(0.729, "feet"),
  49237. name: "Tattoo",
  49238. image: {
  49239. source: "./media/characters/nox/tattoo.svg"
  49240. }
  49241. },
  49242. },
  49243. [
  49244. {
  49245. name: "Normal",
  49246. height: math.unit(6 + 2/12, "feet")
  49247. },
  49248. {
  49249. name: "Gigamacro",
  49250. height: math.unit(2, "earths"),
  49251. default: true
  49252. },
  49253. {
  49254. name: "Cosmic",
  49255. height: math.unit(867, "yottameters")
  49256. },
  49257. ]
  49258. ))
  49259. characterMakers.push(() => makeCharacter(
  49260. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  49261. {
  49262. front: {
  49263. height: math.unit(6, "feet"),
  49264. weight: math.unit(150, "lb"),
  49265. name: "Front",
  49266. image: {
  49267. source: "./media/characters/caspian/front.svg",
  49268. extra: 1443/1359,
  49269. bottom: 0/1443
  49270. }
  49271. },
  49272. back: {
  49273. height: math.unit(6, "feet"),
  49274. weight: math.unit(150, "lb"),
  49275. name: "Back",
  49276. image: {
  49277. source: "./media/characters/caspian/back.svg",
  49278. extra: 1379/1309,
  49279. bottom: 0/1379
  49280. }
  49281. },
  49282. head: {
  49283. height: math.unit(0.9, "feet"),
  49284. name: "Head",
  49285. image: {
  49286. source: "./media/characters/caspian/head.svg",
  49287. extra: 692/492,
  49288. bottom: 0/692
  49289. }
  49290. },
  49291. headAlt: {
  49292. height: math.unit(0.95, "feet"),
  49293. name: "Head (Alt)",
  49294. image: {
  49295. source: "./media/characters/caspian/head-alt.svg",
  49296. extra: 668/508,
  49297. bottom: 0/668
  49298. }
  49299. },
  49300. hand: {
  49301. height: math.unit(0.8, "feet"),
  49302. name: "Hand",
  49303. image: {
  49304. source: "./media/characters/caspian/hand.svg"
  49305. }
  49306. },
  49307. paw: {
  49308. height: math.unit(0.95, "feet"),
  49309. name: "Paw",
  49310. image: {
  49311. source: "./media/characters/caspian/paw.svg"
  49312. }
  49313. },
  49314. },
  49315. [
  49316. {
  49317. name: "Normal",
  49318. height: math.unit(162, "feet"),
  49319. default: true
  49320. },
  49321. ]
  49322. ))
  49323. characterMakers.push(() => makeCharacter(
  49324. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  49325. {
  49326. front: {
  49327. height: math.unit(6, "feet"),
  49328. name: "Front",
  49329. image: {
  49330. source: "./media/characters/myra-aisling/front.svg",
  49331. extra: 1268/1166,
  49332. bottom: 73/1341
  49333. }
  49334. },
  49335. back: {
  49336. height: math.unit(6, "feet"),
  49337. name: "Back",
  49338. image: {
  49339. source: "./media/characters/myra-aisling/back.svg",
  49340. extra: 1249/1149,
  49341. bottom: 79/1328
  49342. }
  49343. },
  49344. dressed: {
  49345. height: math.unit(6, "feet"),
  49346. name: "Dressed",
  49347. image: {
  49348. source: "./media/characters/myra-aisling/dressed.svg",
  49349. extra: 1290/1189,
  49350. bottom: 47/1337
  49351. }
  49352. },
  49353. hand: {
  49354. height: math.unit(1.1, "feet"),
  49355. name: "Hand",
  49356. image: {
  49357. source: "./media/characters/myra-aisling/hand.svg"
  49358. }
  49359. },
  49360. paw: {
  49361. height: math.unit(1.23, "feet"),
  49362. name: "Paw",
  49363. image: {
  49364. source: "./media/characters/myra-aisling/paw.svg"
  49365. }
  49366. },
  49367. },
  49368. [
  49369. {
  49370. name: "Normal",
  49371. height: math.unit(160, "feet"),
  49372. default: true
  49373. },
  49374. ]
  49375. ))
  49376. characterMakers.push(() => makeCharacter(
  49377. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  49378. {
  49379. front: {
  49380. height: math.unit(6, "feet"),
  49381. name: "Front",
  49382. image: {
  49383. source: "./media/characters/tenley-sidero/front.svg",
  49384. extra: 1365/1276,
  49385. bottom: 47/1412
  49386. }
  49387. },
  49388. back: {
  49389. height: math.unit(6, "feet"),
  49390. name: "Back",
  49391. image: {
  49392. source: "./media/characters/tenley-sidero/back.svg",
  49393. extra: 1383/1283,
  49394. bottom: 35/1418
  49395. }
  49396. },
  49397. dressed: {
  49398. height: math.unit(6, "feet"),
  49399. name: "Dressed",
  49400. image: {
  49401. source: "./media/characters/tenley-sidero/dressed.svg",
  49402. extra: 1364/1275,
  49403. bottom: 42/1406
  49404. }
  49405. },
  49406. head: {
  49407. height: math.unit(1.47, "feet"),
  49408. name: "Head",
  49409. image: {
  49410. source: "./media/characters/tenley-sidero/head.svg",
  49411. extra: 610/490,
  49412. bottom: 0/610
  49413. }
  49414. },
  49415. },
  49416. [
  49417. {
  49418. name: "Normal",
  49419. height: math.unit(154, "feet"),
  49420. default: true
  49421. },
  49422. ]
  49423. ))
  49424. characterMakers.push(() => makeCharacter(
  49425. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  49426. {
  49427. front: {
  49428. height: math.unit(5, "inches"),
  49429. name: "Front",
  49430. image: {
  49431. source: "./media/characters/mallory/front.svg",
  49432. extra: 1919/1678,
  49433. bottom: 29/1948
  49434. }
  49435. },
  49436. hand: {
  49437. height: math.unit(0.73, "inches"),
  49438. name: "Hand",
  49439. image: {
  49440. source: "./media/characters/mallory/hand.svg"
  49441. }
  49442. },
  49443. paw: {
  49444. height: math.unit(0.68, "inches"),
  49445. name: "Paw",
  49446. image: {
  49447. source: "./media/characters/mallory/paw.svg"
  49448. }
  49449. },
  49450. },
  49451. [
  49452. {
  49453. name: "Small",
  49454. height: math.unit(5, "inches"),
  49455. default: true
  49456. },
  49457. ]
  49458. ))
  49459. characterMakers.push(() => makeCharacter(
  49460. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  49461. {
  49462. naked: {
  49463. height: math.unit(6, "feet"),
  49464. name: "Naked",
  49465. image: {
  49466. source: "./media/characters/mab/naked.svg",
  49467. extra: 1855/1757,
  49468. bottom: 208/2063
  49469. }
  49470. },
  49471. outside: {
  49472. height: math.unit(6, "feet"),
  49473. name: "Outside",
  49474. image: {
  49475. source: "./media/characters/mab/outside.svg",
  49476. extra: 1855/1757,
  49477. bottom: 208/2063
  49478. }
  49479. },
  49480. party: {
  49481. height: math.unit(6, "feet"),
  49482. name: "Party",
  49483. image: {
  49484. source: "./media/characters/mab/party.svg",
  49485. extra: 1855/1757,
  49486. bottom: 208/2063
  49487. }
  49488. },
  49489. },
  49490. [
  49491. {
  49492. name: "Normal",
  49493. height: math.unit(165, "feet"),
  49494. default: true
  49495. },
  49496. ]
  49497. ))
  49498. characterMakers.push(() => makeCharacter(
  49499. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  49500. {
  49501. front: {
  49502. height: math.unit(12, "feet"),
  49503. weight: math.unit(20000, "lb"),
  49504. name: "Front",
  49505. image: {
  49506. source: "./media/characters/winter/front.svg",
  49507. extra: 1286/943,
  49508. bottom: 112/1398
  49509. }
  49510. },
  49511. frontNsfw: {
  49512. height: math.unit(12, "feet"),
  49513. weight: math.unit(20000, "lb"),
  49514. name: "Front (NSFW)",
  49515. image: {
  49516. source: "./media/characters/winter/front-nsfw.svg",
  49517. extra: 1286/943,
  49518. bottom: 112/1398
  49519. }
  49520. },
  49521. dick: {
  49522. height: math.unit(3.79, "feet"),
  49523. name: "Dick",
  49524. image: {
  49525. source: "./media/characters/winter/dick.svg"
  49526. }
  49527. },
  49528. },
  49529. [
  49530. {
  49531. name: "Big",
  49532. height: math.unit(12, "feet"),
  49533. default: true
  49534. },
  49535. ]
  49536. ))
  49537. characterMakers.push(() => makeCharacter(
  49538. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  49539. {
  49540. front: {
  49541. height: math.unit(4.1, "inches"),
  49542. name: "Front",
  49543. image: {
  49544. source: "./media/characters/alto/front.svg",
  49545. extra: 736/627,
  49546. bottom: 90/826
  49547. }
  49548. },
  49549. },
  49550. [
  49551. {
  49552. name: "Normal",
  49553. height: math.unit(4.1, "inches"),
  49554. default: true
  49555. },
  49556. ]
  49557. ))
  49558. characterMakers.push(() => makeCharacter(
  49559. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  49560. {
  49561. sitting: {
  49562. height: math.unit(3, "feet"),
  49563. name: "Sitting",
  49564. image: {
  49565. source: "./media/characters/ratstrid-v/sitting.svg",
  49566. extra: 355/310,
  49567. bottom: 136/491
  49568. }
  49569. },
  49570. },
  49571. [
  49572. {
  49573. name: "Normal",
  49574. height: math.unit(3, "feet"),
  49575. default: true
  49576. },
  49577. ]
  49578. ))
  49579. characterMakers.push(() => makeCharacter(
  49580. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  49581. {
  49582. back: {
  49583. height: math.unit(6, "feet"),
  49584. weight: math.unit(350, "lb"),
  49585. name: "Back",
  49586. image: {
  49587. source: "./media/characters/siz/back.svg",
  49588. extra: 1449/1274,
  49589. bottom: 13/1462
  49590. }
  49591. },
  49592. },
  49593. [
  49594. {
  49595. name: "Over-Overcompressed",
  49596. height: math.unit(8, "feet")
  49597. },
  49598. {
  49599. name: "Overcompressed",
  49600. height: math.unit(32, "feet")
  49601. },
  49602. {
  49603. name: "Compressed",
  49604. height: math.unit(128, "feet"),
  49605. default: true
  49606. },
  49607. {
  49608. name: "Half-Compressed",
  49609. height: math.unit(512, "feet")
  49610. },
  49611. {
  49612. name: "Quarter-Compressed",
  49613. height: math.unit(2048, "feet")
  49614. },
  49615. {
  49616. name: "Uncompressed?",
  49617. height: math.unit(8192, "feet")
  49618. },
  49619. ]
  49620. ))
  49621. characterMakers.push(() => makeCharacter(
  49622. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  49623. {
  49624. front: {
  49625. height: math.unit(5 + 9/12, "feet"),
  49626. weight: math.unit(150, "lb"),
  49627. name: "Front",
  49628. image: {
  49629. source: "./media/characters/ven/front.svg",
  49630. extra: 1372/1320,
  49631. bottom: 73/1445
  49632. }
  49633. },
  49634. side: {
  49635. height: math.unit(5 + 9/12, "feet"),
  49636. weight: math.unit(1150, "lb"),
  49637. name: "Side",
  49638. image: {
  49639. source: "./media/characters/ven/side.svg",
  49640. extra: 1119/1070,
  49641. bottom: 42/1161
  49642. },
  49643. default: true
  49644. },
  49645. },
  49646. [
  49647. {
  49648. name: "Normal",
  49649. height: math.unit(5 + 9/12, "feet"),
  49650. default: true
  49651. },
  49652. ]
  49653. ))
  49654. characterMakers.push(() => makeCharacter(
  49655. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  49656. {
  49657. front: {
  49658. height: math.unit(12, "feet"),
  49659. weight: math.unit(1000, "kg"),
  49660. name: "Front",
  49661. image: {
  49662. source: "./media/characters/maple/front.svg",
  49663. extra: 1193/1081,
  49664. bottom: 22/1215
  49665. }
  49666. },
  49667. },
  49668. [
  49669. {
  49670. name: "Compressed",
  49671. height: math.unit(7, "feet")
  49672. },
  49673. {
  49674. name: "Normal",
  49675. height: math.unit(12, "feet"),
  49676. default: true
  49677. },
  49678. ]
  49679. ))
  49680. characterMakers.push(() => makeCharacter(
  49681. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  49682. {
  49683. front: {
  49684. height: math.unit(9, "feet"),
  49685. weight: math.unit(1500, "lb"),
  49686. name: "Front",
  49687. image: {
  49688. source: "./media/characters/nora/front.svg",
  49689. extra: 1348/1286,
  49690. bottom: 218/1566
  49691. }
  49692. },
  49693. erect: {
  49694. height: math.unit(9, "feet"),
  49695. weight: math.unit(11500, "lb"),
  49696. name: "Erect",
  49697. image: {
  49698. source: "./media/characters/nora/erect.svg",
  49699. extra: 1488/1433,
  49700. bottom: 133/1621
  49701. }
  49702. },
  49703. },
  49704. [
  49705. {
  49706. name: "Normal",
  49707. height: math.unit(9, "feet"),
  49708. default: true
  49709. },
  49710. ]
  49711. ))
  49712. characterMakers.push(() => makeCharacter(
  49713. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  49714. {
  49715. front: {
  49716. height: math.unit(25, "feet"),
  49717. weight: math.unit(27500, "lb"),
  49718. name: "Front",
  49719. image: {
  49720. source: "./media/characters/north-caudin/front.svg",
  49721. extra: 1184/1082,
  49722. bottom: 23/1207
  49723. }
  49724. },
  49725. },
  49726. [
  49727. {
  49728. name: "Compressed",
  49729. height: math.unit(10, "feet")
  49730. },
  49731. {
  49732. name: "Normal",
  49733. height: math.unit(25, "feet"),
  49734. default: true
  49735. },
  49736. ]
  49737. ))
  49738. characterMakers.push(() => makeCharacter(
  49739. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  49740. {
  49741. front: {
  49742. height: math.unit(9, "feet"),
  49743. weight: math.unit(1250, "lb"),
  49744. name: "Front",
  49745. image: {
  49746. source: "./media/characters/merrian/front.svg",
  49747. extra: 2393/2304,
  49748. bottom: 40/2433
  49749. }
  49750. },
  49751. },
  49752. [
  49753. {
  49754. name: "Normal",
  49755. height: math.unit(9, "feet"),
  49756. default: true
  49757. },
  49758. ]
  49759. ))
  49760. characterMakers.push(() => makeCharacter(
  49761. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  49762. {
  49763. front: {
  49764. height: math.unit(9, "feet"),
  49765. weight: math.unit(1000, "lb"),
  49766. name: "Front",
  49767. image: {
  49768. source: "./media/characters/hazel/front.svg",
  49769. extra: 2351/2298,
  49770. bottom: 38/2389
  49771. }
  49772. },
  49773. },
  49774. [
  49775. {
  49776. name: "Normal",
  49777. height: math.unit(9, "feet"),
  49778. default: true
  49779. },
  49780. ]
  49781. ))
  49782. characterMakers.push(() => makeCharacter(
  49783. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  49784. {
  49785. front: {
  49786. height: math.unit(13, "feet"),
  49787. weight: math.unit(3200, "lb"),
  49788. name: "Front",
  49789. image: {
  49790. source: "./media/characters/emma/front.svg",
  49791. extra: 2263/2029,
  49792. bottom: 68/2331
  49793. }
  49794. },
  49795. },
  49796. [
  49797. {
  49798. name: "Normal",
  49799. height: math.unit(13, "feet"),
  49800. default: true
  49801. },
  49802. ]
  49803. ))
  49804. characterMakers.push(() => makeCharacter(
  49805. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  49806. {
  49807. front: {
  49808. height: math.unit(11 + 9/12, "feet"),
  49809. weight: math.unit(2500, "lb"),
  49810. name: "Front",
  49811. image: {
  49812. source: "./media/characters/ilumina/front.svg",
  49813. extra: 2248/2209,
  49814. bottom: 164/2412
  49815. }
  49816. },
  49817. },
  49818. [
  49819. {
  49820. name: "Normal",
  49821. height: math.unit(11 + 9/12, "feet"),
  49822. default: true
  49823. },
  49824. ]
  49825. ))
  49826. characterMakers.push(() => makeCharacter(
  49827. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  49828. {
  49829. front: {
  49830. height: math.unit(8 + 10/12, "feet"),
  49831. weight: math.unit(1350, "lb"),
  49832. name: "Front",
  49833. image: {
  49834. source: "./media/characters/moonshine/front.svg",
  49835. extra: 2395/2288,
  49836. bottom: 40/2435
  49837. }
  49838. },
  49839. },
  49840. [
  49841. {
  49842. name: "Normal",
  49843. height: math.unit(8 + 10/12, "feet"),
  49844. default: true
  49845. },
  49846. ]
  49847. ))
  49848. characterMakers.push(() => makeCharacter(
  49849. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  49850. {
  49851. front: {
  49852. height: math.unit(14, "feet"),
  49853. weight: math.unit(3400, "lb"),
  49854. name: "Front",
  49855. image: {
  49856. source: "./media/characters/aletia/front.svg",
  49857. extra: 1185/1052,
  49858. bottom: 21/1206
  49859. }
  49860. },
  49861. },
  49862. [
  49863. {
  49864. name: "Compressed",
  49865. height: math.unit(8, "feet")
  49866. },
  49867. {
  49868. name: "Normal",
  49869. height: math.unit(14, "feet"),
  49870. default: true
  49871. },
  49872. ]
  49873. ))
  49874. characterMakers.push(() => makeCharacter(
  49875. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  49876. {
  49877. front: {
  49878. height: math.unit(17, "feet"),
  49879. weight: math.unit(6500, "lb"),
  49880. name: "Front",
  49881. image: {
  49882. source: "./media/characters/deidra/front.svg",
  49883. extra: 1201/1081,
  49884. bottom: 16/1217
  49885. }
  49886. },
  49887. },
  49888. [
  49889. {
  49890. name: "Compressed",
  49891. height: math.unit(9 + 6/12, "feet")
  49892. },
  49893. {
  49894. name: "Normal",
  49895. height: math.unit(17, "feet"),
  49896. default: true
  49897. },
  49898. ]
  49899. ))
  49900. characterMakers.push(() => makeCharacter(
  49901. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  49902. {
  49903. front: {
  49904. height: math.unit(7 + 4/12, "feet"),
  49905. weight: math.unit(280, "lb"),
  49906. name: "Front",
  49907. image: {
  49908. source: "./media/characters/freki-yrmori/front.svg",
  49909. extra: 1286/1182,
  49910. bottom: 29/1315
  49911. }
  49912. },
  49913. maw: {
  49914. height: math.unit(0.9, "feet"),
  49915. name: "Maw",
  49916. image: {
  49917. source: "./media/characters/freki-yrmori/maw.svg"
  49918. }
  49919. },
  49920. },
  49921. [
  49922. {
  49923. name: "Normal",
  49924. height: math.unit(7 + 4/12, "feet"),
  49925. default: true
  49926. },
  49927. {
  49928. name: "Macro",
  49929. height: math.unit(38.5, "meters")
  49930. },
  49931. ]
  49932. ))
  49933. characterMakers.push(() => makeCharacter(
  49934. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  49935. {
  49936. side: {
  49937. height: math.unit(47.2, "meters"),
  49938. weight: math.unit(10000, "tons"),
  49939. name: "Side",
  49940. image: {
  49941. source: "./media/characters/aetherios/side.svg",
  49942. extra: 2363/642,
  49943. bottom: 221/2584
  49944. }
  49945. },
  49946. top: {
  49947. height: math.unit(240, "meters"),
  49948. weight: math.unit(10000, "tons"),
  49949. name: "Top",
  49950. image: {
  49951. source: "./media/characters/aetherios/top.svg"
  49952. }
  49953. },
  49954. bottom: {
  49955. height: math.unit(240, "meters"),
  49956. weight: math.unit(10000, "tons"),
  49957. name: "Bottom",
  49958. image: {
  49959. source: "./media/characters/aetherios/bottom.svg"
  49960. }
  49961. },
  49962. head: {
  49963. height: math.unit(38.6, "meters"),
  49964. name: "Head",
  49965. image: {
  49966. source: "./media/characters/aetherios/head.svg",
  49967. extra: 1335/1112,
  49968. bottom: 0/1335
  49969. }
  49970. },
  49971. front: {
  49972. height: math.unit(29, "meters"),
  49973. name: "Front",
  49974. image: {
  49975. source: "./media/characters/aetherios/front.svg",
  49976. extra: 1266/953,
  49977. bottom: 158/1424
  49978. }
  49979. },
  49980. maw: {
  49981. height: math.unit(16.37, "meters"),
  49982. name: "Maw",
  49983. image: {
  49984. source: "./media/characters/aetherios/maw.svg",
  49985. extra: 748/637,
  49986. bottom: 0/748
  49987. },
  49988. extraAttributes: {
  49989. preyCapacity: {
  49990. name: "Capacity",
  49991. power: 3,
  49992. type: "volume",
  49993. base: math.unit(1000, "people")
  49994. },
  49995. tongueSize: {
  49996. name: "Tongue Size",
  49997. power: 2,
  49998. type: "area",
  49999. base: math.unit(21, "m^2")
  50000. }
  50001. }
  50002. },
  50003. forepaw: {
  50004. height: math.unit(18, "meters"),
  50005. name: "Forepaw",
  50006. image: {
  50007. source: "./media/characters/aetherios/forepaw.svg"
  50008. }
  50009. },
  50010. hindpaw: {
  50011. height: math.unit(23, "meters"),
  50012. name: "Hindpaw",
  50013. image: {
  50014. source: "./media/characters/aetherios/hindpaw.svg"
  50015. }
  50016. },
  50017. genitals: {
  50018. height: math.unit(42, "meters"),
  50019. name: "Genitals",
  50020. image: {
  50021. source: "./media/characters/aetherios/genitals.svg"
  50022. }
  50023. },
  50024. },
  50025. [
  50026. {
  50027. name: "Normal",
  50028. height: math.unit(47.2, "meters"),
  50029. default: true
  50030. },
  50031. {
  50032. name: "Macro",
  50033. height: math.unit(160, "meters")
  50034. },
  50035. {
  50036. name: "Mega",
  50037. height: math.unit(1.87, "km")
  50038. },
  50039. {
  50040. name: "Giga",
  50041. height: math.unit(40000, "km")
  50042. },
  50043. {
  50044. name: "Stellar",
  50045. height: math.unit(158000000, "km")
  50046. },
  50047. {
  50048. name: "Cosmic",
  50049. height: math.unit(9.46e12, "km")
  50050. },
  50051. ]
  50052. ))
  50053. characterMakers.push(() => makeCharacter(
  50054. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  50055. {
  50056. front: {
  50057. height: math.unit(5 + 4/12, "feet"),
  50058. weight: math.unit(80, "lb"),
  50059. name: "Front",
  50060. image: {
  50061. source: "./media/characters/mizu-gieeg/front.svg",
  50062. extra: 850/709,
  50063. bottom: 52/902
  50064. }
  50065. },
  50066. back: {
  50067. height: math.unit(5 + 4/12, "feet"),
  50068. weight: math.unit(80, "lb"),
  50069. name: "Back",
  50070. image: {
  50071. source: "./media/characters/mizu-gieeg/back.svg",
  50072. extra: 882/745,
  50073. bottom: 25/907
  50074. }
  50075. },
  50076. },
  50077. [
  50078. {
  50079. name: "Normal",
  50080. height: math.unit(5 + 4/12, "feet"),
  50081. default: true
  50082. },
  50083. ]
  50084. ))
  50085. characterMakers.push(() => makeCharacter(
  50086. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  50087. {
  50088. front: {
  50089. height: math.unit(6, "feet"),
  50090. name: "Front",
  50091. image: {
  50092. source: "./media/characters/roselle-st-papier/front.svg",
  50093. extra: 1430/1280,
  50094. bottom: 37/1467
  50095. }
  50096. },
  50097. back: {
  50098. height: math.unit(6, "feet"),
  50099. name: "Back",
  50100. image: {
  50101. source: "./media/characters/roselle-st-papier/back.svg",
  50102. extra: 1491/1296,
  50103. bottom: 23/1514
  50104. }
  50105. },
  50106. ear: {
  50107. height: math.unit(1.26, "feet"),
  50108. name: "Ear",
  50109. image: {
  50110. source: "./media/characters/roselle-st-papier/ear.svg"
  50111. }
  50112. },
  50113. },
  50114. [
  50115. {
  50116. name: "Normal",
  50117. height: math.unit(150, "feet"),
  50118. default: true
  50119. },
  50120. ]
  50121. ))
  50122. characterMakers.push(() => makeCharacter(
  50123. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  50124. {
  50125. front: {
  50126. height: math.unit(1, "inches"),
  50127. name: "Front",
  50128. image: {
  50129. source: "./media/characters/valargent/front.svg",
  50130. extra: 1825/1694,
  50131. bottom: 62/1887
  50132. }
  50133. },
  50134. back: {
  50135. height: math.unit(1, "inches"),
  50136. name: "Back",
  50137. image: {
  50138. source: "./media/characters/valargent/back.svg",
  50139. extra: 1775/1682,
  50140. bottom: 88/1863
  50141. }
  50142. },
  50143. },
  50144. [
  50145. {
  50146. name: "Micro",
  50147. height: math.unit(1, "inch"),
  50148. default: true
  50149. },
  50150. ]
  50151. ))
  50152. characterMakers.push(() => makeCharacter(
  50153. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  50154. {
  50155. front: {
  50156. height: math.unit(3.4, "meters"),
  50157. name: "Front",
  50158. image: {
  50159. source: "./media/characters/zarina/front.svg",
  50160. extra: 1733/1425,
  50161. bottom: 93/1826
  50162. }
  50163. },
  50164. squatting: {
  50165. height: math.unit(2.14, "meters"),
  50166. name: "Squatting",
  50167. image: {
  50168. source: "./media/characters/zarina/squatting.svg",
  50169. extra: 1073/788,
  50170. bottom: 63/1136
  50171. }
  50172. },
  50173. back: {
  50174. height: math.unit(2.14, "meters"),
  50175. name: "Back",
  50176. image: {
  50177. source: "./media/characters/zarina/back.svg",
  50178. extra: 1128/885,
  50179. bottom: 0/1128
  50180. }
  50181. },
  50182. },
  50183. [
  50184. {
  50185. name: "Normal",
  50186. height: math.unit(3.4, "meters"),
  50187. default: true
  50188. },
  50189. {
  50190. name: "Big",
  50191. height: math.unit(5, "meters")
  50192. },
  50193. {
  50194. name: "Macro",
  50195. height: math.unit(110, "meters")
  50196. },
  50197. ]
  50198. ))
  50199. characterMakers.push(() => makeCharacter(
  50200. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  50201. {
  50202. front: {
  50203. height: math.unit(7, "feet"),
  50204. name: "Front",
  50205. image: {
  50206. source: "./media/characters/ventus-astro-fox/front.svg",
  50207. extra: 1792/1623,
  50208. bottom: 28/1820
  50209. }
  50210. },
  50211. back: {
  50212. height: math.unit(7, "feet"),
  50213. name: "Back",
  50214. image: {
  50215. source: "./media/characters/ventus-astro-fox/back.svg",
  50216. extra: 1789/1620,
  50217. bottom: 31/1820
  50218. }
  50219. },
  50220. outfit: {
  50221. height: math.unit(7, "feet"),
  50222. name: "Outfit",
  50223. image: {
  50224. source: "./media/characters/ventus-astro-fox/outfit.svg",
  50225. extra: 1054/925,
  50226. bottom: 15/1069
  50227. }
  50228. },
  50229. head: {
  50230. height: math.unit(1.12, "feet"),
  50231. name: "Head",
  50232. image: {
  50233. source: "./media/characters/ventus-astro-fox/head.svg",
  50234. extra: 866/504,
  50235. bottom: 0/866
  50236. }
  50237. },
  50238. hand: {
  50239. height: math.unit(1, "feet"),
  50240. name: "Hand",
  50241. image: {
  50242. source: "./media/characters/ventus-astro-fox/hand.svg"
  50243. }
  50244. },
  50245. paw: {
  50246. height: math.unit(1.5, "feet"),
  50247. name: "Paw",
  50248. image: {
  50249. source: "./media/characters/ventus-astro-fox/paw.svg"
  50250. }
  50251. },
  50252. },
  50253. [
  50254. {
  50255. name: "Normal",
  50256. height: math.unit(7, "feet"),
  50257. default: true
  50258. },
  50259. {
  50260. name: "Macro",
  50261. height: math.unit(200, "feet")
  50262. },
  50263. {
  50264. name: "Cosmic",
  50265. height: math.unit(3, "universes")
  50266. },
  50267. ]
  50268. ))
  50269. characterMakers.push(() => makeCharacter(
  50270. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  50271. {
  50272. front: {
  50273. height: math.unit(3, "meters"),
  50274. weight: math.unit(7000, "lb"),
  50275. name: "Front",
  50276. image: {
  50277. source: "./media/characters/core-t/front.svg",
  50278. extra: 5729/4941,
  50279. bottom: 1129/6858
  50280. }
  50281. },
  50282. },
  50283. [
  50284. {
  50285. name: "Big",
  50286. height: math.unit(3, "meters"),
  50287. default: true
  50288. },
  50289. ]
  50290. ))
  50291. characterMakers.push(() => makeCharacter(
  50292. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  50293. {
  50294. normal: {
  50295. height: math.unit(6 + 6/12, "feet"),
  50296. weight: math.unit(275, "lb"),
  50297. name: "Front",
  50298. image: {
  50299. source: "./media/characters/cadbunny/normal.svg",
  50300. extra: 1129/947,
  50301. bottom: 93/1222
  50302. },
  50303. default: true,
  50304. form: "normal"
  50305. },
  50306. gigantamax: {
  50307. height: math.unit(26, "feet"),
  50308. weight: math.unit(16000, "lb"),
  50309. name: "Front",
  50310. image: {
  50311. source: "./media/characters/cadbunny/gigantamax.svg",
  50312. extra: 1133/944,
  50313. bottom: 90/1223
  50314. },
  50315. default: true,
  50316. form: "gigantamax"
  50317. },
  50318. },
  50319. [
  50320. {
  50321. name: "Normal",
  50322. height: math.unit(6 + 6/12, "feet"),
  50323. default: true,
  50324. form: "normal"
  50325. },
  50326. {
  50327. name: "Small",
  50328. height: math.unit(26, "feet"),
  50329. default: true,
  50330. form: "gigantamax"
  50331. },
  50332. {
  50333. name: "Large",
  50334. height: math.unit(78, "feet"),
  50335. form: "gigantamax"
  50336. },
  50337. ],
  50338. {
  50339. "normal": {
  50340. name: "Normal",
  50341. default: true
  50342. },
  50343. "gigantamax": {
  50344. name: "Gigantamax"
  50345. }
  50346. }
  50347. ))
  50348. characterMakers.push(() => makeCharacter(
  50349. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  50350. {
  50351. anthroFront: {
  50352. height: math.unit(8, "feet"),
  50353. weight: math.unit(300, "lb"),
  50354. name: "Front",
  50355. image: {
  50356. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  50357. extra: 1272/1176,
  50358. bottom: 53/1325
  50359. },
  50360. form: "anthro",
  50361. default: true
  50362. },
  50363. feralSide: {
  50364. height: math.unit(4, "feet"),
  50365. weight: math.unit(250, "lb"),
  50366. name: "Side",
  50367. image: {
  50368. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  50369. extra: 731/621,
  50370. bottom: 0/731
  50371. },
  50372. form: "feral",
  50373. default: true
  50374. },
  50375. },
  50376. [
  50377. {
  50378. name: "Regular",
  50379. height: math.unit(8, "feet"),
  50380. form: "anthro"
  50381. },
  50382. {
  50383. name: "Macro",
  50384. height: math.unit(250, "feet"),
  50385. form: "anthro",
  50386. default: true
  50387. },
  50388. {
  50389. name: "Regular",
  50390. height: math.unit(4, "feet"),
  50391. form: "feral"
  50392. },
  50393. {
  50394. name: "Macro",
  50395. height: math.unit(125, "feet"),
  50396. form: "feral",
  50397. default: true
  50398. },
  50399. ],
  50400. {
  50401. "anthro": {
  50402. name: "Anthro",
  50403. default: true
  50404. },
  50405. "feral": {
  50406. name: "Feral",
  50407. },
  50408. }
  50409. ))
  50410. characterMakers.push(() => makeCharacter(
  50411. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  50412. {
  50413. front: {
  50414. height: math.unit(11 + 10/12, "feet"),
  50415. weight: math.unit(1587, "kg"),
  50416. name: "Front",
  50417. image: {
  50418. source: "./media/characters/maple-javira-dragon/front.svg",
  50419. extra: 1136/744,
  50420. bottom: 73/1209
  50421. }
  50422. },
  50423. side: {
  50424. height: math.unit(11 + 10/12, "feet"),
  50425. weight: math.unit(1587, "kg"),
  50426. name: "Side",
  50427. image: {
  50428. source: "./media/characters/maple-javira-dragon/side.svg",
  50429. extra: 712/505,
  50430. bottom: 17/729
  50431. }
  50432. },
  50433. head: {
  50434. height: math.unit(8.05, "feet"),
  50435. name: "Head",
  50436. image: {
  50437. source: "./media/characters/maple-javira-dragon/head.svg",
  50438. extra: 1420/1344,
  50439. bottom: 0/1420
  50440. }
  50441. },
  50442. },
  50443. [
  50444. {
  50445. name: "Normal",
  50446. height: math.unit(11 + 10/12, "feet"),
  50447. default: true
  50448. },
  50449. ]
  50450. ))
  50451. characterMakers.push(() => makeCharacter(
  50452. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  50453. {
  50454. front: {
  50455. height: math.unit(117, "cm"),
  50456. weight: math.unit(50, "kg"),
  50457. name: "Front",
  50458. image: {
  50459. source: "./media/characters/sonia-wyverntail/front.svg",
  50460. extra: 708/592,
  50461. bottom: 25/733
  50462. }
  50463. },
  50464. },
  50465. [
  50466. {
  50467. name: "Normal",
  50468. height: math.unit(117, "cm"),
  50469. default: true
  50470. },
  50471. ]
  50472. ))
  50473. characterMakers.push(() => makeCharacter(
  50474. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  50475. {
  50476. front: {
  50477. height: math.unit(6 + 5/12, "feet"),
  50478. name: "Front",
  50479. image: {
  50480. source: "./media/characters/micah/front.svg",
  50481. extra: 1758/1546,
  50482. bottom: 214/1972
  50483. }
  50484. },
  50485. },
  50486. [
  50487. {
  50488. name: "Normal",
  50489. height: math.unit(6 + 5/12, "feet"),
  50490. default: true
  50491. },
  50492. ]
  50493. ))
  50494. characterMakers.push(() => makeCharacter(
  50495. { name: "Zarya", species: ["raccoon"], tags: ["anthro"] },
  50496. {
  50497. front: {
  50498. height: math.unit(5 + 10/12, "feet"),
  50499. weight: math.unit(220, "lb"),
  50500. name: "Front",
  50501. image: {
  50502. source: "./media/characters/zarya/front.svg",
  50503. extra: 593/572,
  50504. bottom: 50/643
  50505. }
  50506. },
  50507. back: {
  50508. height: math.unit(5 + 10/12, "feet"),
  50509. weight: math.unit(220, "lb"),
  50510. name: "Back",
  50511. image: {
  50512. source: "./media/characters/zarya/back.svg",
  50513. extra: 603/582,
  50514. bottom: 38/641
  50515. }
  50516. },
  50517. },
  50518. [
  50519. {
  50520. name: "Normal",
  50521. height: math.unit(5 + 10/12, "feet"),
  50522. default: true
  50523. },
  50524. ]
  50525. ))
  50526. characterMakers.push(() => makeCharacter(
  50527. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  50528. {
  50529. front: {
  50530. height: math.unit(7.5, "feet"),
  50531. name: "Front",
  50532. image: {
  50533. source: "./media/characters/sven-hatisson/front.svg",
  50534. extra: 917/857,
  50535. bottom: 42/959
  50536. }
  50537. },
  50538. back: {
  50539. height: math.unit(7.5, "feet"),
  50540. name: "Back",
  50541. image: {
  50542. source: "./media/characters/sven-hatisson/back.svg",
  50543. extra: 903/856,
  50544. bottom: 15/918
  50545. }
  50546. },
  50547. },
  50548. [
  50549. {
  50550. name: "Base Height",
  50551. height: math.unit(7.5, "feet")
  50552. },
  50553. {
  50554. name: "Usual Height",
  50555. height: math.unit(13.5, "feet"),
  50556. default: true
  50557. },
  50558. {
  50559. name: "Smaller Macro",
  50560. height: math.unit(85, "feet")
  50561. },
  50562. {
  50563. name: "Moderate Macro",
  50564. height: math.unit(320, "feet")
  50565. },
  50566. {
  50567. name: "Large Macro",
  50568. height: math.unit(1000, "feet")
  50569. },
  50570. {
  50571. name: "Largest Size",
  50572. height: math.unit(2, "miles")
  50573. },
  50574. ]
  50575. ))
  50576. characterMakers.push(() => makeCharacter(
  50577. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  50578. {
  50579. side: {
  50580. height: math.unit(1.8, "meters"),
  50581. weight: math.unit(275, "kg"),
  50582. name: "Side",
  50583. image: {
  50584. source: "./media/characters/terra/side.svg",
  50585. extra: 1273/1147,
  50586. bottom: 0/1273
  50587. }
  50588. },
  50589. },
  50590. [
  50591. {
  50592. name: "Normal",
  50593. height: math.unit(16.2, "meters"),
  50594. default: true
  50595. },
  50596. ]
  50597. ))
  50598. characterMakers.push(() => makeCharacter(
  50599. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  50600. {
  50601. borzoiFront: {
  50602. height: math.unit(6 + 9/12, "feet"),
  50603. name: "Front",
  50604. image: {
  50605. source: "./media/characters/rae/borzoi-front.svg",
  50606. extra: 1161/1098,
  50607. bottom: 31/1192
  50608. },
  50609. form: "borzoi",
  50610. default: true
  50611. },
  50612. werewolfFront: {
  50613. height: math.unit(8 + 7/12, "feet"),
  50614. name: "Front",
  50615. image: {
  50616. source: "./media/characters/rae/werewolf-front.svg",
  50617. extra: 1411/1334,
  50618. bottom: 127/1538
  50619. },
  50620. form: "werewolf",
  50621. default: true
  50622. },
  50623. },
  50624. [
  50625. {
  50626. name: "Normal",
  50627. height: math.unit(6 + 9/12, "feet"),
  50628. default: true,
  50629. form: "borzoi"
  50630. },
  50631. {
  50632. name: "Normal",
  50633. height: math.unit(8 + 7/12, "feet"),
  50634. default: true,
  50635. form: "werewolf"
  50636. },
  50637. ],
  50638. {
  50639. "borzoi": {
  50640. name: "Borzoi",
  50641. default: true
  50642. },
  50643. "werewolf": {
  50644. name: "Werewolf",
  50645. },
  50646. }
  50647. ))
  50648. characterMakers.push(() => makeCharacter(
  50649. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  50650. {
  50651. front: {
  50652. height: math.unit(8 + 7/12, "feet"),
  50653. weight: math.unit(482, "lb"),
  50654. name: "Front",
  50655. image: {
  50656. source: "./media/characters/kit/front.svg",
  50657. extra: 1247/1103,
  50658. bottom: 41/1288
  50659. }
  50660. },
  50661. back: {
  50662. height: math.unit(8 + 7/12, "feet"),
  50663. weight: math.unit(482, "lb"),
  50664. name: "Back",
  50665. image: {
  50666. source: "./media/characters/kit/back.svg",
  50667. extra: 1252/1123,
  50668. bottom: 21/1273
  50669. }
  50670. },
  50671. paw: {
  50672. height: math.unit(1.46, "feet"),
  50673. name: "Paw",
  50674. image: {
  50675. source: "./media/characters/kit/paw.svg"
  50676. }
  50677. },
  50678. },
  50679. [
  50680. {
  50681. name: "Normal",
  50682. height: math.unit(2.61, "meters"),
  50683. default: true
  50684. },
  50685. {
  50686. name: "\"Tall\"",
  50687. height: math.unit(8.21, "meters")
  50688. },
  50689. {
  50690. name: "Tall",
  50691. height: math.unit(19.6, "meters")
  50692. },
  50693. {
  50694. name: "Very Tall",
  50695. height: math.unit(57.91, "meters")
  50696. },
  50697. {
  50698. name: "Semi-Macro",
  50699. height: math.unit(138.64, "meters")
  50700. },
  50701. {
  50702. name: "Macro",
  50703. height: math.unit(831.99, "meters")
  50704. },
  50705. {
  50706. name: "EX-Macro",
  50707. height: math.unit(96451121, "meters")
  50708. },
  50709. {
  50710. name: "S1-Omnipotent",
  50711. height: math.unit(4.42074e+9, "meters")
  50712. },
  50713. {
  50714. name: "S2-Omnipotent",
  50715. height: math.unit(9.42074e+17, "meters")
  50716. },
  50717. {
  50718. name: "Omnipotent",
  50719. height: math.unit(4.23112e+24, "meters")
  50720. },
  50721. {
  50722. name: "Hypergod",
  50723. height: math.unit(5.05176e+27, "meters")
  50724. },
  50725. {
  50726. name: "Hypergod-EX",
  50727. height: math.unit(9.45532e+49, "meters")
  50728. },
  50729. {
  50730. name: "Hypergod-SP",
  50731. height: math.unit(9.45532e+195, "meters")
  50732. },
  50733. ]
  50734. ))
  50735. characterMakers.push(() => makeCharacter(
  50736. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  50737. {
  50738. side: {
  50739. height: math.unit(0.6, "meters"),
  50740. weight: math.unit(24, "kg"),
  50741. name: "Side",
  50742. image: {
  50743. source: "./media/characters/celeste/side.svg",
  50744. extra: 810/517,
  50745. bottom: 53/863
  50746. }
  50747. },
  50748. },
  50749. [
  50750. {
  50751. name: "Velociraptor",
  50752. height: math.unit(0.6, "meters"),
  50753. default: true
  50754. },
  50755. {
  50756. name: "Utahraptor",
  50757. height: math.unit(1.8, "meters")
  50758. },
  50759. {
  50760. name: "Gallimimus",
  50761. height: math.unit(4.0, "meters")
  50762. },
  50763. {
  50764. name: "Large",
  50765. height: math.unit(20, "meters")
  50766. },
  50767. {
  50768. name: "Planetary",
  50769. height: math.unit(50, "megameters")
  50770. },
  50771. {
  50772. name: "Stellar",
  50773. height: math.unit(1.5, "gigameters")
  50774. },
  50775. {
  50776. name: "Galactic",
  50777. height: math.unit(100, "exameters")
  50778. },
  50779. ]
  50780. ))
  50781. characterMakers.push(() => makeCharacter(
  50782. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  50783. {
  50784. front: {
  50785. height: math.unit(6, "feet"),
  50786. weight: math.unit(210, "lb"),
  50787. name: "Front",
  50788. image: {
  50789. source: "./media/characters/glacia/front.svg",
  50790. extra: 958/901,
  50791. bottom: 45/1003
  50792. }
  50793. },
  50794. },
  50795. [
  50796. {
  50797. name: "Macro",
  50798. height: math.unit(1000, "meters"),
  50799. default: true
  50800. },
  50801. ]
  50802. ))
  50803. characterMakers.push(() => makeCharacter(
  50804. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  50805. {
  50806. front: {
  50807. height: math.unit(4, "meters"),
  50808. name: "Front",
  50809. image: {
  50810. source: "./media/characters/giri/front.svg",
  50811. extra: 966/894,
  50812. bottom: 21/987
  50813. }
  50814. },
  50815. },
  50816. [
  50817. {
  50818. name: "Normal",
  50819. height: math.unit(4, "meters"),
  50820. default: true
  50821. },
  50822. ]
  50823. ))
  50824. characterMakers.push(() => makeCharacter(
  50825. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  50826. {
  50827. back: {
  50828. height: math.unit(4, "feet"),
  50829. weight: math.unit(37, "lb"),
  50830. name: "Back",
  50831. image: {
  50832. source: "./media/characters/tin/back.svg",
  50833. extra: 845/780,
  50834. bottom: 28/873
  50835. }
  50836. },
  50837. },
  50838. [
  50839. {
  50840. name: "Normal",
  50841. height: math.unit(4, "feet"),
  50842. default: true
  50843. },
  50844. ]
  50845. ))
  50846. characterMakers.push(() => makeCharacter(
  50847. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  50848. {
  50849. front: {
  50850. height: math.unit(25, "feet"),
  50851. name: "Front",
  50852. image: {
  50853. source: "./media/characters/cadenza-vivace/front.svg",
  50854. extra: 1842/1578,
  50855. bottom: 30/1872
  50856. }
  50857. },
  50858. },
  50859. [
  50860. {
  50861. name: "Macro",
  50862. height: math.unit(25, "feet"),
  50863. default: true
  50864. },
  50865. ]
  50866. ))
  50867. characterMakers.push(() => makeCharacter(
  50868. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  50869. {
  50870. front: {
  50871. height: math.unit(10, "feet"),
  50872. weight: math.unit(625, "kg"),
  50873. name: "Front",
  50874. image: {
  50875. source: "./media/characters/zain/front.svg",
  50876. extra: 1682/1498,
  50877. bottom: 223/1905
  50878. }
  50879. },
  50880. back: {
  50881. height: math.unit(10, "feet"),
  50882. weight: math.unit(625, "kg"),
  50883. name: "Back",
  50884. image: {
  50885. source: "./media/characters/zain/back.svg",
  50886. extra: 1814/1657,
  50887. bottom: 152/1966
  50888. }
  50889. },
  50890. head: {
  50891. height: math.unit(10, "feet"),
  50892. weight: math.unit(625, "kg"),
  50893. name: "Head",
  50894. image: {
  50895. source: "./media/characters/zain/head.svg",
  50896. extra: 1059/762,
  50897. bottom: 0/1059
  50898. }
  50899. },
  50900. },
  50901. [
  50902. {
  50903. name: "Normal",
  50904. height: math.unit(10, "feet"),
  50905. default: true
  50906. },
  50907. ]
  50908. ))
  50909. characterMakers.push(() => makeCharacter(
  50910. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  50911. {
  50912. front: {
  50913. height: math.unit(6 + 5/12, "feet"),
  50914. weight: math.unit(750, "lb"),
  50915. name: "Front",
  50916. image: {
  50917. source: "./media/characters/ruchex/front.svg",
  50918. extra: 877/820,
  50919. bottom: 17/894
  50920. },
  50921. extraAttributes: {
  50922. "width": {
  50923. name: "Width",
  50924. power: 1,
  50925. type: "length",
  50926. base: math.unit(4.757, "feet")
  50927. },
  50928. }
  50929. },
  50930. },
  50931. [
  50932. {
  50933. name: "Normal",
  50934. height: math.unit(6 + 5/12, "feet"),
  50935. default: true
  50936. },
  50937. ]
  50938. ))
  50939. characterMakers.push(() => makeCharacter(
  50940. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  50941. {
  50942. dressedFront: {
  50943. height: math.unit(191, "cm"),
  50944. weight: math.unit(80, "kg"),
  50945. name: "Front",
  50946. image: {
  50947. source: "./media/characters/buster/dressed-front.svg",
  50948. extra: 1022/973,
  50949. bottom: 69/1091
  50950. }
  50951. },
  50952. dressedBack: {
  50953. height: math.unit(191, "cm"),
  50954. weight: math.unit(80, "kg"),
  50955. name: "Back",
  50956. image: {
  50957. source: "./media/characters/buster/dressed-back.svg",
  50958. extra: 1018/970,
  50959. bottom: 55/1073
  50960. }
  50961. },
  50962. nudeFront: {
  50963. height: math.unit(191, "cm"),
  50964. weight: math.unit(80, "kg"),
  50965. name: "Front (Nude)",
  50966. image: {
  50967. source: "./media/characters/buster/nude-front.svg",
  50968. extra: 1022/973,
  50969. bottom: 69/1091
  50970. }
  50971. },
  50972. nudeBack: {
  50973. height: math.unit(191, "cm"),
  50974. weight: math.unit(80, "kg"),
  50975. name: "Back (Nude)",
  50976. image: {
  50977. source: "./media/characters/buster/nude-back.svg",
  50978. extra: 1018/970,
  50979. bottom: 55/1073
  50980. }
  50981. },
  50982. dick: {
  50983. height: math.unit(2.59, "feet"),
  50984. name: "Dick",
  50985. image: {
  50986. source: "./media/characters/buster/dick.svg"
  50987. }
  50988. },
  50989. ass: {
  50990. height: math.unit(1.2, "feet"),
  50991. name: "Ass",
  50992. image: {
  50993. source: "./media/characters/buster/ass.svg"
  50994. }
  50995. },
  50996. },
  50997. [
  50998. {
  50999. name: "Normal",
  51000. height: math.unit(191, "cm"),
  51001. default: true
  51002. },
  51003. ]
  51004. ))
  51005. characterMakers.push(() => makeCharacter(
  51006. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  51007. {
  51008. side: {
  51009. height: math.unit(8.1, "feet"),
  51010. weight: math.unit(3500, "lb"),
  51011. name: "Side",
  51012. image: {
  51013. source: "./media/characters/sonya/side.svg",
  51014. extra: 1730/1317,
  51015. bottom: 86/1816
  51016. }
  51017. },
  51018. },
  51019. [
  51020. {
  51021. name: "Normal",
  51022. height: math.unit(8.1, "feet"),
  51023. default: true
  51024. },
  51025. ]
  51026. ))
  51027. characterMakers.push(() => makeCharacter(
  51028. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  51029. {
  51030. front: {
  51031. height: math.unit(6, "feet"),
  51032. weight: math.unit(150, "lb"),
  51033. name: "Front",
  51034. image: {
  51035. source: "./media/characters/cadence-andrysiak/front.svg",
  51036. extra: 1164/1121,
  51037. bottom: 60/1224
  51038. }
  51039. },
  51040. back: {
  51041. height: math.unit(6, "feet"),
  51042. weight: math.unit(150, "lb"),
  51043. name: "Back",
  51044. image: {
  51045. source: "./media/characters/cadence-andrysiak/back.svg",
  51046. extra: 1200/1165,
  51047. bottom: 9/1209
  51048. }
  51049. },
  51050. dressed: {
  51051. height: math.unit(6, "feet"),
  51052. weight: math.unit(150, "lb"),
  51053. name: "Dressed",
  51054. image: {
  51055. source: "./media/characters/cadence-andrysiak/dressed.svg",
  51056. extra: 1164/1121,
  51057. bottom: 60/1224
  51058. }
  51059. },
  51060. },
  51061. [
  51062. {
  51063. name: "Micro",
  51064. height: math.unit(1, "mm")
  51065. },
  51066. {
  51067. name: "Normal",
  51068. height: math.unit(6, "feet"),
  51069. default: true
  51070. },
  51071. ]
  51072. ))
  51073. characterMakers.push(() => makeCharacter(
  51074. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  51075. {
  51076. front: {
  51077. height: math.unit(60, "inches"),
  51078. weight: math.unit(16, "lb"),
  51079. preyCapacity: math.unit(80, "liters"),
  51080. name: "Front",
  51081. image: {
  51082. source: "./media/characters/penny-lynx/front.svg",
  51083. extra: 1959/1769,
  51084. bottom: 49/2008
  51085. }
  51086. },
  51087. },
  51088. [
  51089. {
  51090. name: "Nokia",
  51091. height: math.unit(2, "inches")
  51092. },
  51093. {
  51094. name: "Desktop",
  51095. height: math.unit(24, "inches")
  51096. },
  51097. {
  51098. name: "TV",
  51099. height: math.unit(60, "inches")
  51100. },
  51101. {
  51102. name: "Jumbotron",
  51103. height: math.unit(12, "feet")
  51104. },
  51105. {
  51106. name: "Billboard",
  51107. height: math.unit(48, "feet"),
  51108. default: true
  51109. },
  51110. {
  51111. name: "IMAX",
  51112. height: math.unit(96, "feet")
  51113. },
  51114. {
  51115. name: "SINGULARITY",
  51116. height: math.unit(864938, "miles")
  51117. },
  51118. ]
  51119. ))
  51120. characterMakers.push(() => makeCharacter(
  51121. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  51122. {
  51123. front: {
  51124. height: math.unit(5 + 4/12, "feet"),
  51125. weight: math.unit(230, "lb"),
  51126. name: "Front",
  51127. image: {
  51128. source: "./media/characters/sukebe/front.svg",
  51129. extra: 2130/2038,
  51130. bottom: 90/2220
  51131. }
  51132. },
  51133. back: {
  51134. height: math.unit(3.48, "feet"),
  51135. weight: math.unit(230, "lb"),
  51136. name: "Back",
  51137. image: {
  51138. source: "./media/characters/sukebe/back.svg",
  51139. extra: 1670/1604,
  51140. bottom: 0/1670
  51141. }
  51142. },
  51143. },
  51144. [
  51145. {
  51146. name: "Normal",
  51147. height: math.unit(5 + 4/12, "feet"),
  51148. default: true
  51149. },
  51150. ]
  51151. ))
  51152. characterMakers.push(() => makeCharacter(
  51153. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  51154. {
  51155. front: {
  51156. height: math.unit(6, "feet"),
  51157. name: "Front",
  51158. image: {
  51159. source: "./media/characters/nylla/front.svg",
  51160. extra: 1868/1699,
  51161. bottom: 97/1965
  51162. }
  51163. },
  51164. back: {
  51165. height: math.unit(6, "feet"),
  51166. name: "Back",
  51167. image: {
  51168. source: "./media/characters/nylla/back.svg",
  51169. extra: 1889/1712,
  51170. bottom: 93/1982
  51171. }
  51172. },
  51173. frontNsfw: {
  51174. height: math.unit(6, "feet"),
  51175. name: "Front (NSFW)",
  51176. image: {
  51177. source: "./media/characters/nylla/front-nsfw.svg",
  51178. extra: 1868/1699,
  51179. bottom: 97/1965
  51180. },
  51181. extraAttributes: {
  51182. "dickLength": {
  51183. name: "Dick Length",
  51184. power: 1,
  51185. type: "length",
  51186. base: math.unit(1.4, "feet")
  51187. },
  51188. "cumVolume": {
  51189. name: "Cum Volume",
  51190. power: 3,
  51191. type: "volume",
  51192. base: math.unit(100, "mL")
  51193. },
  51194. }
  51195. },
  51196. backNsfw: {
  51197. height: math.unit(6, "feet"),
  51198. name: "Back (NSFW)",
  51199. image: {
  51200. source: "./media/characters/nylla/back-nsfw.svg",
  51201. extra: 1889/1712,
  51202. bottom: 93/1982
  51203. }
  51204. },
  51205. maw: {
  51206. height: math.unit(2.10, "feet"),
  51207. name: "Maw",
  51208. image: {
  51209. source: "./media/characters/nylla/maw.svg"
  51210. }
  51211. },
  51212. paws: {
  51213. height: math.unit(2.06, "feet"),
  51214. name: "Paws",
  51215. image: {
  51216. source: "./media/characters/nylla/paws.svg"
  51217. }
  51218. },
  51219. muzzle: {
  51220. height: math.unit(0.61, "feet"),
  51221. name: "Muzzle",
  51222. image: {
  51223. source: "./media/characters/nylla/muzzle.svg"
  51224. }
  51225. },
  51226. sheath: {
  51227. height: math.unit(1.305, "feet"),
  51228. name: "Sheath",
  51229. image: {
  51230. source: "./media/characters/nylla/sheath.svg"
  51231. }
  51232. },
  51233. },
  51234. [
  51235. {
  51236. name: "Micro",
  51237. height: math.unit(7.5, "inches")
  51238. },
  51239. {
  51240. name: "Normal",
  51241. height: math.unit(7, "feet"),
  51242. default: true
  51243. },
  51244. {
  51245. name: "Macro",
  51246. height: math.unit(60, "feet")
  51247. },
  51248. {
  51249. name: "Mega",
  51250. height: math.unit(200, "feet")
  51251. },
  51252. ]
  51253. ))
  51254. characterMakers.push(() => makeCharacter(
  51255. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  51256. {
  51257. front: {
  51258. height: math.unit(10, "feet"),
  51259. weight: math.unit(2300, "lb"),
  51260. name: "Front",
  51261. image: {
  51262. source: "./media/characters/hunt3r/front.svg",
  51263. extra: 1909/1742,
  51264. bottom: 46/1955
  51265. }
  51266. },
  51267. },
  51268. [
  51269. {
  51270. name: "Normal",
  51271. height: math.unit(10, "feet"),
  51272. default: true
  51273. },
  51274. ]
  51275. ))
  51276. characterMakers.push(() => makeCharacter(
  51277. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  51278. {
  51279. dressed: {
  51280. height: math.unit(11, "feet"),
  51281. weight: math.unit(18500, "lb"),
  51282. preyCapacity: math.unit(9, "people"),
  51283. name: "Dressed",
  51284. image: {
  51285. source: "./media/characters/cylphis/dressed.svg",
  51286. extra: 1028/1003,
  51287. bottom: 75/1103
  51288. },
  51289. },
  51290. undressed: {
  51291. height: math.unit(11, "feet"),
  51292. weight: math.unit(18500, "lb"),
  51293. preyCapacity: math.unit(9, "people"),
  51294. name: "Undressed",
  51295. image: {
  51296. source: "./media/characters/cylphis/undressed.svg",
  51297. extra: 1028/1003,
  51298. bottom: 75/1103
  51299. }
  51300. },
  51301. full: {
  51302. height: math.unit(11, "feet"),
  51303. weight: math.unit(18500 + 150*9, "lb"),
  51304. preyCapacity: math.unit(9, "people"),
  51305. name: "Full",
  51306. image: {
  51307. source: "./media/characters/cylphis/full.svg",
  51308. extra: 1028/1003,
  51309. bottom: 75/1103
  51310. }
  51311. },
  51312. },
  51313. [
  51314. {
  51315. name: "Small",
  51316. height: math.unit(8, "feet")
  51317. },
  51318. {
  51319. name: "Normal",
  51320. height: math.unit(11, "feet"),
  51321. default: true
  51322. },
  51323. ]
  51324. ))
  51325. characterMakers.push(() => makeCharacter(
  51326. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  51327. {
  51328. front: {
  51329. height: math.unit(2 + 7/12, "feet"),
  51330. name: "Front",
  51331. image: {
  51332. source: "./media/characters/orishan/front.svg",
  51333. extra: 1058/1023,
  51334. bottom: 23/1081
  51335. }
  51336. },
  51337. back: {
  51338. height: math.unit(2 + 7/12, "feet"),
  51339. name: "Back",
  51340. image: {
  51341. source: "./media/characters/orishan/back.svg",
  51342. extra: 1058/1023,
  51343. bottom: 23/1081
  51344. }
  51345. },
  51346. },
  51347. [
  51348. {
  51349. name: "Micro",
  51350. height: math.unit(2, "cm")
  51351. },
  51352. {
  51353. name: "Normal",
  51354. height: math.unit(2 + 7/12, "feet"),
  51355. default: true
  51356. },
  51357. ]
  51358. ))
  51359. characterMakers.push(() => makeCharacter(
  51360. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  51361. {
  51362. front: {
  51363. height: math.unit(3, "meters"),
  51364. weight: math.unit(508, "kg"),
  51365. name: "Front",
  51366. image: {
  51367. source: "./media/characters/seranis/front.svg",
  51368. extra: 1478/1454,
  51369. bottom: 41/1519
  51370. }
  51371. },
  51372. },
  51373. [
  51374. {
  51375. name: "Normal",
  51376. height: math.unit(3, "meters"),
  51377. default: true
  51378. },
  51379. {
  51380. name: "Macro",
  51381. height: math.unit(108, "meters")
  51382. },
  51383. {
  51384. name: "Megamacro",
  51385. height: math.unit(1250, "meters")
  51386. },
  51387. ]
  51388. ))
  51389. characterMakers.push(() => makeCharacter(
  51390. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  51391. {
  51392. undressed: {
  51393. height: math.unit(5 + 3/12, "feet"),
  51394. name: "Undressed",
  51395. image: {
  51396. source: "./media/characters/ankou/undressed.svg",
  51397. extra: 1301/1213,
  51398. bottom: 87/1388
  51399. }
  51400. },
  51401. dressed: {
  51402. height: math.unit(5 + 3/12, "feet"),
  51403. name: "Dressed",
  51404. image: {
  51405. source: "./media/characters/ankou/dressed.svg",
  51406. extra: 1301/1213,
  51407. bottom: 87/1388
  51408. }
  51409. },
  51410. head: {
  51411. height: math.unit(1.61, "feet"),
  51412. name: "Head",
  51413. image: {
  51414. source: "./media/characters/ankou/head.svg"
  51415. }
  51416. },
  51417. },
  51418. [
  51419. {
  51420. name: "Normal",
  51421. height: math.unit(5 + 3/12, "feet"),
  51422. default: true
  51423. },
  51424. ]
  51425. ))
  51426. characterMakers.push(() => makeCharacter(
  51427. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  51428. {
  51429. side: {
  51430. height: math.unit(6 + 3/12, "feet"),
  51431. weight: math.unit(200, "kg"),
  51432. name: "Side",
  51433. image: {
  51434. source: "./media/characters/juniper-skunktaur/side.svg",
  51435. extra: 1574/1229,
  51436. bottom: 38/1612
  51437. }
  51438. },
  51439. front: {
  51440. height: math.unit(6 + 3/12, "feet"),
  51441. weight: math.unit(200, "kg"),
  51442. name: "Front",
  51443. image: {
  51444. source: "./media/characters/juniper-skunktaur/front.svg",
  51445. extra: 1337/1278,
  51446. bottom: 22/1359
  51447. }
  51448. },
  51449. back: {
  51450. height: math.unit(6 + 3/12, "feet"),
  51451. weight: math.unit(200, "kg"),
  51452. name: "Back",
  51453. image: {
  51454. source: "./media/characters/juniper-skunktaur/back.svg",
  51455. extra: 1618/1273,
  51456. bottom: 13/1631
  51457. }
  51458. },
  51459. top: {
  51460. height: math.unit(2.62, "feet"),
  51461. weight: math.unit(200, "kg"),
  51462. name: "Top",
  51463. image: {
  51464. source: "./media/characters/juniper-skunktaur/top.svg"
  51465. }
  51466. },
  51467. },
  51468. [
  51469. {
  51470. name: "Normal",
  51471. height: math.unit(6 + 3/12, "feet"),
  51472. default: true
  51473. },
  51474. ]
  51475. ))
  51476. characterMakers.push(() => makeCharacter(
  51477. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  51478. {
  51479. front: {
  51480. height: math.unit(20.5, "feet"),
  51481. name: "Front",
  51482. image: {
  51483. source: "./media/characters/rei/front.svg",
  51484. extra: 1349/1195,
  51485. bottom: 31/1380
  51486. }
  51487. },
  51488. back: {
  51489. height: math.unit(20.5, "feet"),
  51490. name: "Back",
  51491. image: {
  51492. source: "./media/characters/rei/back.svg",
  51493. extra: 1358/1204,
  51494. bottom: 22/1380
  51495. }
  51496. },
  51497. pawsDigi: {
  51498. height: math.unit(3.45, "feet"),
  51499. name: "Paws (Digi)",
  51500. image: {
  51501. source: "./media/characters/rei/paws-digi.svg"
  51502. }
  51503. },
  51504. pawsPlanti: {
  51505. height: math.unit(3.45, "feet"),
  51506. name: "Paws (Planti)",
  51507. image: {
  51508. source: "./media/characters/rei/paws-planti.svg"
  51509. }
  51510. },
  51511. },
  51512. [
  51513. {
  51514. name: "Normal",
  51515. height: math.unit(20.5, "feet"),
  51516. default: true
  51517. },
  51518. ]
  51519. ))
  51520. characterMakers.push(() => makeCharacter(
  51521. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  51522. {
  51523. front: {
  51524. height: math.unit(5 + 11/12, "feet"),
  51525. name: "Front",
  51526. image: {
  51527. source: "./media/characters/carina/front.svg",
  51528. extra: 1720/1449,
  51529. bottom: 14/1734
  51530. }
  51531. },
  51532. back: {
  51533. height: math.unit(5 + 11/12, "feet"),
  51534. name: "Back",
  51535. image: {
  51536. source: "./media/characters/carina/back.svg",
  51537. extra: 1493/1445,
  51538. bottom: 17/1510
  51539. }
  51540. },
  51541. paw: {
  51542. height: math.unit(0.92, "feet"),
  51543. name: "Paw",
  51544. image: {
  51545. source: "./media/characters/carina/paw.svg"
  51546. }
  51547. },
  51548. },
  51549. [
  51550. {
  51551. name: "Normal",
  51552. height: math.unit(5 + 11/12, "feet"),
  51553. default: true
  51554. },
  51555. ]
  51556. ))
  51557. characterMakers.push(() => makeCharacter(
  51558. { name: "Maya", species: ["cat"], tags: ["anthro"] },
  51559. {
  51560. front: {
  51561. height: math.unit(4.88, "meters"),
  51562. name: "Front",
  51563. image: {
  51564. source: "./media/characters/maya/front.svg",
  51565. extra: 1222/1145,
  51566. bottom: 57/1279
  51567. }
  51568. },
  51569. },
  51570. [
  51571. {
  51572. name: "Normal",
  51573. height: math.unit(4.88, "meters"),
  51574. default: true
  51575. },
  51576. {
  51577. name: "Macro",
  51578. height: math.unit(38.1, "meters")
  51579. },
  51580. {
  51581. name: "Macro+",
  51582. height: math.unit(152.4, "meters")
  51583. },
  51584. {
  51585. name: "Macro++",
  51586. height: math.unit(16.09, "km")
  51587. },
  51588. {
  51589. name: "Mega-macro",
  51590. height: math.unit(700, "megameters")
  51591. },
  51592. ]
  51593. ))
  51594. characterMakers.push(() => makeCharacter(
  51595. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  51596. {
  51597. front: {
  51598. height: math.unit(6 + 2/12, "feet"),
  51599. weight: math.unit(500, "lb"),
  51600. preyCapacity: math.unit(4, "people"),
  51601. name: "Front",
  51602. image: {
  51603. source: "./media/characters/yepir/front.svg"
  51604. }
  51605. },
  51606. side: {
  51607. height: math.unit(6 + 2/12, "feet"),
  51608. weight: math.unit(500, "lb"),
  51609. preyCapacity: math.unit(4, "people"),
  51610. name: "Side",
  51611. image: {
  51612. source: "./media/characters/yepir/side.svg"
  51613. }
  51614. },
  51615. paw: {
  51616. height: math.unit(1.05, "feet"),
  51617. name: "Paw",
  51618. image: {
  51619. source: "./media/characters/yepir/paw.svg"
  51620. }
  51621. },
  51622. },
  51623. [
  51624. {
  51625. name: "Normal",
  51626. height: math.unit(6 + 2/12, "feet"),
  51627. default: true
  51628. },
  51629. ]
  51630. ))
  51631. characterMakers.push(() => makeCharacter(
  51632. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  51633. {
  51634. front: {
  51635. height: math.unit(5 + 4/12, "feet"),
  51636. name: "Front",
  51637. image: {
  51638. source: "./media/characters/russec/front.svg",
  51639. extra: 1926/1626,
  51640. bottom: 72/1998
  51641. }
  51642. },
  51643. back: {
  51644. height: math.unit(5 + 4/12, "feet"),
  51645. name: "Back",
  51646. image: {
  51647. source: "./media/characters/russec/back.svg",
  51648. extra: 1910/1591,
  51649. bottom: 48/1958
  51650. }
  51651. },
  51652. },
  51653. [
  51654. {
  51655. name: "Small",
  51656. height: math.unit(5 + 4/12, "feet")
  51657. },
  51658. {
  51659. name: "Normal",
  51660. height: math.unit(72, "feet"),
  51661. default: true
  51662. },
  51663. ]
  51664. ))
  51665. characterMakers.push(() => makeCharacter(
  51666. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  51667. {
  51668. side: {
  51669. height: math.unit(12, "feet"),
  51670. name: "Side",
  51671. image: {
  51672. source: "./media/characters/cianus/side.svg",
  51673. extra: 808/526,
  51674. bottom: 61/869
  51675. }
  51676. },
  51677. },
  51678. [
  51679. {
  51680. name: "Normal",
  51681. height: math.unit(12, "feet"),
  51682. default: true
  51683. },
  51684. ]
  51685. ))
  51686. characterMakers.push(() => makeCharacter(
  51687. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  51688. {
  51689. front: {
  51690. height: math.unit(9 + 6/12, "feet"),
  51691. weight: math.unit(300, "lb"),
  51692. name: "Front",
  51693. image: {
  51694. source: "./media/characters/ahab/front.svg",
  51695. extra: 1897/1868,
  51696. bottom: 121/2018
  51697. }
  51698. },
  51699. frontNsfw: {
  51700. height: math.unit(9 + 6/12, "feet"),
  51701. weight: math.unit(300, "lb"),
  51702. name: "Front-nsfw",
  51703. image: {
  51704. source: "./media/characters/ahab/front-nsfw.svg",
  51705. extra: 1897/1868,
  51706. bottom: 121/2018
  51707. }
  51708. },
  51709. },
  51710. [
  51711. {
  51712. name: "Normal",
  51713. height: math.unit(9 + 6/12, "feet")
  51714. },
  51715. {
  51716. name: "Macro",
  51717. height: math.unit(657, "feet"),
  51718. default: true
  51719. },
  51720. ]
  51721. ))
  51722. characterMakers.push(() => makeCharacter(
  51723. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  51724. {
  51725. front: {
  51726. height: math.unit(2.69, "meters"),
  51727. weight: math.unit(132, "kg"),
  51728. name: "Front",
  51729. image: {
  51730. source: "./media/characters/aarkus/front.svg",
  51731. extra: 1400/1231,
  51732. bottom: 34/1434
  51733. }
  51734. },
  51735. back: {
  51736. height: math.unit(2.69, "meters"),
  51737. weight: math.unit(132, "kg"),
  51738. name: "Back",
  51739. image: {
  51740. source: "./media/characters/aarkus/back.svg",
  51741. extra: 1381/1218,
  51742. bottom: 30/1411
  51743. }
  51744. },
  51745. frontNsfw: {
  51746. height: math.unit(2.69, "meters"),
  51747. weight: math.unit(132, "kg"),
  51748. name: "Front (NSFW)",
  51749. image: {
  51750. source: "./media/characters/aarkus/front-nsfw.svg",
  51751. extra: 1400/1231,
  51752. bottom: 34/1434
  51753. }
  51754. },
  51755. foot: {
  51756. height: math.unit(1.45, "feet"),
  51757. name: "Foot",
  51758. image: {
  51759. source: "./media/characters/aarkus/foot.svg"
  51760. }
  51761. },
  51762. head: {
  51763. height: math.unit(2.85, "feet"),
  51764. name: "Head",
  51765. image: {
  51766. source: "./media/characters/aarkus/head.svg"
  51767. }
  51768. },
  51769. headAlt: {
  51770. height: math.unit(3.07, "feet"),
  51771. name: "Head (Alt)",
  51772. image: {
  51773. source: "./media/characters/aarkus/head-alt.svg"
  51774. }
  51775. },
  51776. mouth: {
  51777. height: math.unit(1.25, "feet"),
  51778. name: "Mouth",
  51779. image: {
  51780. source: "./media/characters/aarkus/mouth.svg"
  51781. }
  51782. },
  51783. dick: {
  51784. height: math.unit(1.77, "feet"),
  51785. name: "Dick",
  51786. image: {
  51787. source: "./media/characters/aarkus/dick.svg"
  51788. }
  51789. },
  51790. },
  51791. [
  51792. {
  51793. name: "Normal",
  51794. height: math.unit(2.69, "meters"),
  51795. default: true
  51796. },
  51797. {
  51798. name: "Macro",
  51799. height: math.unit(269, "meters")
  51800. },
  51801. {
  51802. name: "Macro+",
  51803. height: math.unit(672.5, "meters")
  51804. },
  51805. {
  51806. name: "Megamacro",
  51807. height: math.unit(2.017, "meters")
  51808. },
  51809. ]
  51810. ))
  51811. characterMakers.push(() => makeCharacter(
  51812. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  51813. {
  51814. front: {
  51815. height: math.unit(23.47, "cm"),
  51816. weight: math.unit(600, "grams"),
  51817. name: "Front",
  51818. image: {
  51819. source: "./media/characters/diode/front.svg",
  51820. extra: 1778/1396,
  51821. bottom: 95/1873
  51822. }
  51823. },
  51824. side: {
  51825. height: math.unit(23.47, "cm"),
  51826. weight: math.unit(600, "grams"),
  51827. name: "Side",
  51828. image: {
  51829. source: "./media/characters/diode/side.svg",
  51830. extra: 1831/1404,
  51831. bottom: 86/1917
  51832. }
  51833. },
  51834. wings: {
  51835. height: math.unit(0.683, "feet"),
  51836. name: "Wings",
  51837. image: {
  51838. source: "./media/characters/diode/wings.svg"
  51839. }
  51840. },
  51841. },
  51842. [
  51843. {
  51844. name: "Normal",
  51845. height: math.unit(23.47, "cm"),
  51846. default: true
  51847. },
  51848. ]
  51849. ))
  51850. characterMakers.push(() => makeCharacter(
  51851. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  51852. {
  51853. front: {
  51854. height: math.unit(6 + 3/12, "feet"),
  51855. weight: math.unit(250, "lb"),
  51856. name: "Front",
  51857. image: {
  51858. source: "./media/characters/reika/front.svg",
  51859. extra: 1120/1078,
  51860. bottom: 86/1206
  51861. }
  51862. },
  51863. },
  51864. [
  51865. {
  51866. name: "Normal",
  51867. height: math.unit(6 + 3/12, "feet"),
  51868. default: true
  51869. },
  51870. ]
  51871. ))
  51872. characterMakers.push(() => makeCharacter(
  51873. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  51874. {
  51875. front: {
  51876. height: math.unit(16 + 8/12, "feet"),
  51877. weight: math.unit(9000, "lb"),
  51878. name: "Front",
  51879. image: {
  51880. source: "./media/characters/lokuto-takama/front.svg",
  51881. extra: 1774/1632,
  51882. bottom: 147/1921
  51883. },
  51884. extraAttributes: {
  51885. "bustWidth": {
  51886. name: "Bust Width",
  51887. power: 1,
  51888. type: "length",
  51889. base: math.unit(2.4, "meters")
  51890. },
  51891. "breastWeight": {
  51892. name: "Breast Weight",
  51893. power: 3,
  51894. type: "mass",
  51895. base: math.unit(1000, "kg")
  51896. },
  51897. }
  51898. },
  51899. },
  51900. [
  51901. {
  51902. name: "Normal",
  51903. height: math.unit(16 + 8/12, "feet"),
  51904. default: true
  51905. },
  51906. ]
  51907. ))
  51908. characterMakers.push(() => makeCharacter(
  51909. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  51910. {
  51911. front: {
  51912. height: math.unit(10, "cm"),
  51913. weight: math.unit(850, "grams"),
  51914. name: "Front",
  51915. image: {
  51916. source: "./media/characters/owak-bone/front.svg",
  51917. extra: 1965/1801,
  51918. bottom: 31/1996
  51919. }
  51920. },
  51921. },
  51922. [
  51923. {
  51924. name: "Normal",
  51925. height: math.unit(10, "cm"),
  51926. default: true
  51927. },
  51928. ]
  51929. ))
  51930. characterMakers.push(() => makeCharacter(
  51931. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  51932. {
  51933. front: {
  51934. height: math.unit(2 + 6/12, "feet"),
  51935. weight: math.unit(9, "lb"),
  51936. name: "Front",
  51937. image: {
  51938. source: "./media/characters/muffin/front.svg",
  51939. extra: 1220/1195,
  51940. bottom: 84/1304
  51941. }
  51942. },
  51943. },
  51944. [
  51945. {
  51946. name: "Normal",
  51947. height: math.unit(2 + 6/12, "feet"),
  51948. default: true
  51949. },
  51950. ]
  51951. ))
  51952. characterMakers.push(() => makeCharacter(
  51953. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  51954. {
  51955. front: {
  51956. height: math.unit(7, "feet"),
  51957. name: "Front",
  51958. image: {
  51959. source: "./media/characters/chimera/front.svg",
  51960. extra: 1752/1614,
  51961. bottom: 68/1820
  51962. }
  51963. },
  51964. },
  51965. [
  51966. {
  51967. name: "Normal",
  51968. height: math.unit(7, "feet")
  51969. },
  51970. {
  51971. name: "Gigamacro",
  51972. height: math.unit(2.9, "gigameters"),
  51973. default: true
  51974. },
  51975. {
  51976. name: "Universal",
  51977. height: math.unit(1.56e26, "yottameters")
  51978. },
  51979. ]
  51980. ))
  51981. characterMakers.push(() => makeCharacter(
  51982. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  51983. {
  51984. front: {
  51985. height: math.unit(3, "feet"),
  51986. weight: math.unit(20, "lb"),
  51987. name: "Front",
  51988. image: {
  51989. source: "./media/characters/kit-fennec-fox/front.svg",
  51990. extra: 1027/932,
  51991. bottom: 16/1043
  51992. }
  51993. },
  51994. back: {
  51995. height: math.unit(3, "feet"),
  51996. weight: math.unit(20, "lb"),
  51997. name: "Back",
  51998. image: {
  51999. source: "./media/characters/kit-fennec-fox/back.svg",
  52000. extra: 1027/932,
  52001. bottom: 16/1043
  52002. }
  52003. },
  52004. },
  52005. [
  52006. {
  52007. name: "Normal",
  52008. height: math.unit(3, "feet"),
  52009. default: true
  52010. },
  52011. ]
  52012. ))
  52013. characterMakers.push(() => makeCharacter(
  52014. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  52015. {
  52016. front: {
  52017. height: math.unit(167, "cm"),
  52018. name: "Front",
  52019. image: {
  52020. source: "./media/characters/blue-otter/front.svg",
  52021. extra: 1951/1920,
  52022. bottom: 31/1982
  52023. }
  52024. },
  52025. },
  52026. [
  52027. {
  52028. name: "Otter-Sized",
  52029. height: math.unit(100, "cm")
  52030. },
  52031. {
  52032. name: "Normal",
  52033. height: math.unit(167, "cm"),
  52034. default: true
  52035. },
  52036. ]
  52037. ))
  52038. characterMakers.push(() => makeCharacter(
  52039. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  52040. {
  52041. front: {
  52042. height: math.unit(4 + 4/12, "feet"),
  52043. name: "Front",
  52044. image: {
  52045. source: "./media/characters/maverick-leopard-gecko/front.svg",
  52046. extra: 1072/1067,
  52047. bottom: 117/1189
  52048. }
  52049. },
  52050. back: {
  52051. height: math.unit(4 + 4/12, "feet"),
  52052. name: "Back",
  52053. image: {
  52054. source: "./media/characters/maverick-leopard-gecko/back.svg",
  52055. extra: 1135/1129,
  52056. bottom: 57/1192
  52057. }
  52058. },
  52059. head: {
  52060. height: math.unit(1.77, "feet"),
  52061. name: "Head",
  52062. image: {
  52063. source: "./media/characters/maverick-leopard-gecko/head.svg"
  52064. }
  52065. },
  52066. },
  52067. [
  52068. {
  52069. name: "Normal",
  52070. height: math.unit(4 + 4/12, "feet"),
  52071. default: true
  52072. },
  52073. ]
  52074. ))
  52075. characterMakers.push(() => makeCharacter(
  52076. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  52077. {
  52078. front: {
  52079. height: math.unit(2, "inches"),
  52080. name: "Front",
  52081. image: {
  52082. source: "./media/characters/carley-hartford/front.svg",
  52083. extra: 1035/988,
  52084. bottom: 23/1058
  52085. }
  52086. },
  52087. back: {
  52088. height: math.unit(2, "inches"),
  52089. name: "Back",
  52090. image: {
  52091. source: "./media/characters/carley-hartford/back.svg",
  52092. extra: 1035/988,
  52093. bottom: 23/1058
  52094. }
  52095. },
  52096. dressed: {
  52097. height: math.unit(2, "inches"),
  52098. name: "Dressed",
  52099. image: {
  52100. source: "./media/characters/carley-hartford/dressed.svg",
  52101. extra: 651/620,
  52102. bottom: 0/651
  52103. }
  52104. },
  52105. },
  52106. [
  52107. {
  52108. name: "Micro",
  52109. height: math.unit(2, "inches"),
  52110. default: true
  52111. },
  52112. {
  52113. name: "Macro",
  52114. height: math.unit(6 + 3/12, "feet")
  52115. },
  52116. ]
  52117. ))
  52118. characterMakers.push(() => makeCharacter(
  52119. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  52120. {
  52121. front: {
  52122. height: math.unit(2 + 3/12, "feet"),
  52123. weight: math.unit(15 + 7/16, "lb"),
  52124. name: "Front",
  52125. image: {
  52126. source: "./media/characters/duke/front.svg",
  52127. extra: 910/815,
  52128. bottom: 30/940
  52129. }
  52130. },
  52131. },
  52132. [
  52133. {
  52134. name: "Normal",
  52135. height: math.unit(2 + 3/12, "feet"),
  52136. default: true
  52137. },
  52138. ]
  52139. ))
  52140. characterMakers.push(() => makeCharacter(
  52141. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  52142. {
  52143. front: {
  52144. height: math.unit(5 + 4/12, "feet"),
  52145. weight: math.unit(156, "lb"),
  52146. name: "Front",
  52147. image: {
  52148. source: "./media/characters/dein/front.svg",
  52149. extra: 855/815,
  52150. bottom: 48/903
  52151. }
  52152. },
  52153. side: {
  52154. height: math.unit(5 + 4/12, "feet"),
  52155. weight: math.unit(156, "lb"),
  52156. name: "side",
  52157. image: {
  52158. source: "./media/characters/dein/side.svg",
  52159. extra: 846/803,
  52160. bottom: 25/871
  52161. }
  52162. },
  52163. maw: {
  52164. height: math.unit(1.45, "feet"),
  52165. name: "Maw",
  52166. image: {
  52167. source: "./media/characters/dein/maw.svg"
  52168. }
  52169. },
  52170. },
  52171. [
  52172. {
  52173. name: "Ferret Sized",
  52174. height: math.unit(2 + 5/12, "feet")
  52175. },
  52176. {
  52177. name: "Normal",
  52178. height: math.unit(5 + 4/12, "feet"),
  52179. default: true
  52180. },
  52181. ]
  52182. ))
  52183. //characters
  52184. function makeCharacters() {
  52185. const results = [];
  52186. characterMakers.forEach(character => {
  52187. results.push(character());
  52188. });
  52189. return results;
  52190. }